blob: 0658badb0ab0f434367848d13732ca70f0054672 [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 */
Michal Vasko03ff5a72019-09-11 13:49:33 +020014#define _GNU_SOURCE
Radek Krejcif8dc59a2020-11-25 13:47:44 +010015#define _POSIX_C_SOURCE 200809L /* strdup, strndup */
Michal Vasko03ff5a72019-09-11 13:49:33 +020016
17/* needed by libmath functions isfinite(), isinf(), isnan(), signbit(), ... */
18#define _ISOC99_SOURCE
Radek Krejcib1646a92018-11-02 16:08:26 +010019
Radek Krejci535ea9f2020-05-29 16:01:05 +020020#include "xpath.h"
Radek Krejcib1646a92018-11-02 16:08:26 +010021
Radek Krejci535ea9f2020-05-29 16:01:05 +020022#include <assert.h>
Radek Krejcib1646a92018-11-02 16:08:26 +010023#include <ctype.h>
Radek Krejci535ea9f2020-05-29 16:01:05 +020024#include <errno.h>
Radek Krejci535ea9f2020-05-29 16:01:05 +020025#include <math.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020026#include <stdint.h>
Radek Krejcib1646a92018-11-02 16:08:26 +010027#include <stdio.h>
28#include <stdlib.h>
Radek Krejcib1646a92018-11-02 16:08:26 +010029#include <string.h>
Radek Krejcib1646a92018-11-02 16:08:26 +010030
Radek Krejci535ea9f2020-05-29 16:01:05 +020031#include "common.h"
Michal Vasko5aa44c02020-06-29 11:47:02 +020032#include "compat.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020033#include "context.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020034#include "dict.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020035#include "hash_table.h"
Radek Krejci47fab892020-11-05 17:02:41 +010036#include "out.h"
Radek Krejci7931b192020-06-25 17:05:03 +020037#include "parser_data.h"
Michal Vasko004d3152020-06-11 19:59:22 +020038#include "path.h"
Michal Vasko03ff5a72019-09-11 13:49:33 +020039#include "plugins_types.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020040#include "printer_data.h"
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020041#include "schema_compile_node.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020042#include "tree.h"
Radek Krejci77114102021-03-10 15:21:57 +010043#include "tree_data.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020044#include "tree_data_internal.h"
Radek Krejci859a15a2021-03-05 20:56:59 +010045#include "tree_edit.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020046#include "tree_schema_internal.h"
47#include "xml.h"
Michal Vasko03ff5a72019-09-11 13:49:33 +020048
Michal Vasko004d3152020-06-11 19:59:22 +020049static LY_ERR reparse_or_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx);
Michal Vasko40308e72020-10-20 16:38:40 +020050static LY_ERR eval_expr_select(const struct lyxp_expr *exp, uint16_t *tok_idx, enum lyxp_expr_type etype,
51 struct lyxp_set *set, uint32_t options);
Michal Vasko03ff5a72019-09-11 13:49:33 +020052
53/**
54 * @brief Print the type of an XPath \p set.
55 *
56 * @param[in] set Set to use.
57 * @return Set type string.
58 */
59static const char *
60print_set_type(struct lyxp_set *set)
61{
62 switch (set->type) {
Michal Vasko03ff5a72019-09-11 13:49:33 +020063 case LYXP_SET_NODE_SET:
64 return "node set";
65 case LYXP_SET_SCNODE_SET:
66 return "schema node set";
67 case LYXP_SET_BOOLEAN:
68 return "boolean";
69 case LYXP_SET_NUMBER:
70 return "number";
71 case LYXP_SET_STRING:
72 return "string";
73 }
74
75 return NULL;
76}
77
Michal Vasko24cddf82020-06-01 08:17:01 +020078const char *
79lyxp_print_token(enum lyxp_token tok)
Michal Vasko03ff5a72019-09-11 13:49:33 +020080{
81 switch (tok) {
82 case LYXP_TOKEN_PAR1:
83 return "(";
84 case LYXP_TOKEN_PAR2:
85 return ")";
86 case LYXP_TOKEN_BRACK1:
87 return "[";
88 case LYXP_TOKEN_BRACK2:
89 return "]";
90 case LYXP_TOKEN_DOT:
91 return ".";
92 case LYXP_TOKEN_DDOT:
93 return "..";
94 case LYXP_TOKEN_AT:
95 return "@";
96 case LYXP_TOKEN_COMMA:
97 return ",";
98 case LYXP_TOKEN_NAMETEST:
99 return "NameTest";
100 case LYXP_TOKEN_NODETYPE:
101 return "NodeType";
102 case LYXP_TOKEN_FUNCNAME:
103 return "FunctionName";
Michal Vasko3e48bf32020-06-01 08:39:07 +0200104 case LYXP_TOKEN_OPER_LOG:
Michal Vasko03ff5a72019-09-11 13:49:33 +0200105 return "Operator(Logic)";
Michal Vasko3e48bf32020-06-01 08:39:07 +0200106 case LYXP_TOKEN_OPER_EQUAL:
107 return "Operator(Equal)";
108 case LYXP_TOKEN_OPER_NEQUAL:
109 return "Operator(Non-equal)";
110 case LYXP_TOKEN_OPER_COMP:
Michal Vasko03ff5a72019-09-11 13:49:33 +0200111 return "Operator(Comparison)";
Michal Vasko3e48bf32020-06-01 08:39:07 +0200112 case LYXP_TOKEN_OPER_MATH:
Michal Vasko03ff5a72019-09-11 13:49:33 +0200113 return "Operator(Math)";
Michal Vasko3e48bf32020-06-01 08:39:07 +0200114 case LYXP_TOKEN_OPER_UNI:
Michal Vasko03ff5a72019-09-11 13:49:33 +0200115 return "Operator(Union)";
Michal Vasko3e48bf32020-06-01 08:39:07 +0200116 case LYXP_TOKEN_OPER_PATH:
Michal Vasko03ff5a72019-09-11 13:49:33 +0200117 return "Operator(Path)";
Michal Vasko3e48bf32020-06-01 08:39:07 +0200118 case LYXP_TOKEN_OPER_RPATH:
Michal Vasko14676352020-05-29 11:35:55 +0200119 return "Operator(Recursive Path)";
Michal Vasko03ff5a72019-09-11 13:49:33 +0200120 case LYXP_TOKEN_LITERAL:
121 return "Literal";
122 case LYXP_TOKEN_NUMBER:
123 return "Number";
124 default:
125 LOGINT(NULL);
126 return "";
127 }
128}
129
130/**
131 * @brief Print the whole expression \p exp to debug output.
132 *
133 * @param[in] exp Expression to use.
134 */
135static void
Michal Vasko40308e72020-10-20 16:38:40 +0200136print_expr_struct_debug(const struct lyxp_expr *exp)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200137{
Radek Krejcif13b87b2020-12-01 22:02:17 +0100138#define MSG_BUFFER_SIZE 128
139 char tmp[MSG_BUFFER_SIZE];
Michal Vasko1fdd8fa2021-01-08 09:21:45 +0100140 uint32_t i, j;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200141
Radek Krejci52b6d512020-10-12 12:33:17 +0200142 if (!exp || (ly_ll < LY_LLDBG)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200143 return;
144 }
145
146 LOGDBG(LY_LDGXPATH, "expression \"%s\":", exp->expr);
147 for (i = 0; i < exp->used; ++i) {
Michal Vasko24cddf82020-06-01 08:17:01 +0200148 sprintf(tmp, "\ttoken %s, in expression \"%.*s\"", lyxp_print_token(exp->tokens[i]), exp->tok_len[i],
Michal Vasko69730152020-10-09 16:30:07 +0200149 &exp->expr[exp->tok_pos[i]]);
Michal Vasko23049552021-03-04 15:57:44 +0100150 if (exp->repeat && exp->repeat[i]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200151 sprintf(tmp + strlen(tmp), " (repeat %d", exp->repeat[i][0]);
152 for (j = 1; exp->repeat[i][j]; ++j) {
153 sprintf(tmp + strlen(tmp), ", %d", exp->repeat[i][j]);
154 }
155 strcat(tmp, ")");
156 }
157 LOGDBG(LY_LDGXPATH, tmp);
158 }
Radek Krejcif13b87b2020-12-01 22:02:17 +0100159#undef MSG_BUFFER_SIZE
Michal Vasko03ff5a72019-09-11 13:49:33 +0200160}
161
162#ifndef NDEBUG
163
164/**
165 * @brief Print XPath set content to debug output.
166 *
167 * @param[in] set Set to print.
168 */
169static void
170print_set_debug(struct lyxp_set *set)
171{
172 uint32_t i;
173 char *str;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200174 struct lyxp_set_node *item;
175 struct lyxp_set_scnode *sitem;
176
Radek Krejci52b6d512020-10-12 12:33:17 +0200177 if (ly_ll < LY_LLDBG) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200178 return;
179 }
180
181 switch (set->type) {
182 case LYXP_SET_NODE_SET:
183 LOGDBG(LY_LDGXPATH, "set NODE SET:");
184 for (i = 0; i < set->used; ++i) {
185 item = &set->val.nodes[i];
186
187 switch (item->type) {
Michal Vasko2caefc12019-11-14 16:07:56 +0100188 case LYXP_NODE_NONE:
189 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): NONE", i + 1, item->pos);
190 break;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200191 case LYXP_NODE_ROOT:
192 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ROOT", i + 1, item->pos);
193 break;
194 case LYXP_NODE_ROOT_CONFIG:
195 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ROOT CONFIG", i + 1, item->pos);
196 break;
197 case LYXP_NODE_ELEM:
Michal Vasko9e685082021-01-29 14:49:09 +0100198 if ((item->node->schema->nodetype == LYS_LIST) && (lyd_child(item->node)->schema->nodetype == LYS_LEAF)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200199 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ELEM %s (1st child val: %s)", i + 1, item->pos,
Michal Vasko69730152020-10-09 16:30:07 +0200200 item->node->schema->name, LYD_CANON_VALUE(lyd_child(item->node)));
Michal Vasko9e685082021-01-29 14:49:09 +0100201 } else if (item->node->schema->nodetype == LYS_LEAFLIST) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200202 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ELEM %s (val: %s)", i + 1, item->pos,
Michal Vasko69730152020-10-09 16:30:07 +0200203 item->node->schema->name, LYD_CANON_VALUE(item->node));
Michal Vasko03ff5a72019-09-11 13:49:33 +0200204 } else {
205 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ELEM %s", i + 1, item->pos, item->node->schema->name);
206 }
207 break;
208 case LYXP_NODE_TEXT:
209 if (item->node->schema->nodetype & LYS_ANYDATA) {
210 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): TEXT <%s>", i + 1, item->pos,
Michal Vasko69730152020-10-09 16:30:07 +0200211 item->node->schema->nodetype == LYS_ANYXML ? "anyxml" : "anydata");
Michal Vasko03ff5a72019-09-11 13:49:33 +0200212 } else {
Michal Vaskob7be7a82020-08-20 09:09:04 +0200213 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): TEXT %s", i + 1, item->pos, LYD_CANON_VALUE(item->node));
Michal Vasko03ff5a72019-09-11 13:49:33 +0200214 }
215 break;
Michal Vasko9f96a052020-03-10 09:41:45 +0100216 case LYXP_NODE_META:
217 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 +0200218 set->val.meta[i].meta->value);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200219 break;
220 }
221 }
222 break;
223
224 case LYXP_SET_SCNODE_SET:
225 LOGDBG(LY_LDGXPATH, "set SCNODE SET:");
226 for (i = 0; i < set->used; ++i) {
227 sitem = &set->val.scnodes[i];
228
229 switch (sitem->type) {
230 case LYXP_NODE_ROOT:
231 LOGDBG(LY_LDGXPATH, "\t%d (%u): ROOT", i + 1, sitem->in_ctx);
232 break;
233 case LYXP_NODE_ROOT_CONFIG:
234 LOGDBG(LY_LDGXPATH, "\t%d (%u): ROOT CONFIG", i + 1, sitem->in_ctx);
235 break;
236 case LYXP_NODE_ELEM:
237 LOGDBG(LY_LDGXPATH, "\t%d (%u): ELEM %s", i + 1, sitem->in_ctx, sitem->scnode->name);
238 break;
239 default:
240 LOGINT(NULL);
241 break;
242 }
243 }
244 break;
245
Michal Vasko03ff5a72019-09-11 13:49:33 +0200246 case LYXP_SET_BOOLEAN:
247 LOGDBG(LY_LDGXPATH, "set BOOLEAN");
Michal Vasko004d3152020-06-11 19:59:22 +0200248 LOGDBG(LY_LDGXPATH, "\t%s", (set->val.bln ? "true" : "false"));
Michal Vasko03ff5a72019-09-11 13:49:33 +0200249 break;
250
251 case LYXP_SET_STRING:
252 LOGDBG(LY_LDGXPATH, "set STRING");
253 LOGDBG(LY_LDGXPATH, "\t%s", set->val.str);
254 break;
255
256 case LYXP_SET_NUMBER:
257 LOGDBG(LY_LDGXPATH, "set NUMBER");
258
259 if (isnan(set->val.num)) {
260 str = strdup("NaN");
261 } else if ((set->val.num == 0) || (set->val.num == -0.0f)) {
262 str = strdup("0");
263 } else if (isinf(set->val.num) && !signbit(set->val.num)) {
264 str = strdup("Infinity");
265 } else if (isinf(set->val.num) && signbit(set->val.num)) {
266 str = strdup("-Infinity");
267 } else if ((long long)set->val.num == set->val.num) {
268 if (asprintf(&str, "%lld", (long long)set->val.num) == -1) {
269 str = NULL;
270 }
271 } else {
272 if (asprintf(&str, "%03.1Lf", set->val.num) == -1) {
273 str = NULL;
274 }
275 }
276 LY_CHECK_ERR_RET(!str, LOGMEM(NULL), );
277
278 LOGDBG(LY_LDGXPATH, "\t%s", str);
279 free(str);
280 }
281}
282
283#endif
284
285/**
286 * @brief Realloc the string \p str.
287 *
288 * @param[in] ctx libyang context for logging.
289 * @param[in] needed How much free space is required.
290 * @param[in,out] str Pointer to the string to use.
291 * @param[in,out] used Used bytes in \p str.
292 * @param[in,out] size Allocated bytes in \p str.
293 * @return LY_ERR
294 */
295static LY_ERR
Michal Vasko52927e22020-03-16 17:26:14 +0100296cast_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 +0200297{
298 if (*size - *used < needed) {
299 do {
300 if ((UINT16_MAX - *size) < LYXP_STRING_CAST_SIZE_STEP) {
301 LOGERR(ctx, LY_EINVAL, "XPath string length limit (%u) reached.", UINT16_MAX);
302 return LY_EINVAL;
303 }
304 *size += LYXP_STRING_CAST_SIZE_STEP;
305 } while (*size - *used < needed);
306 *str = ly_realloc(*str, *size * sizeof(char));
307 LY_CHECK_ERR_RET(!(*str), LOGMEM(ctx), LY_EMEM);
308 }
309
310 return LY_SUCCESS;
311}
312
313/**
314 * @brief Cast nodes recursively to one string @p str.
315 *
316 * @param[in] node Node to cast.
317 * @param[in] fake_cont Whether to put the data into a "fake" container.
318 * @param[in] root_type Type of the XPath root.
319 * @param[in] indent Current indent.
320 * @param[in,out] str Resulting string.
321 * @param[in,out] used Used bytes in @p str.
322 * @param[in,out] size Allocated bytes in @p str.
323 * @return LY_ERR
324 */
325static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +0200326cast_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 +0200327 uint16_t *used, uint16_t *size)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200328{
Radek Krejci7f769d72020-07-11 23:13:56 +0200329 char *buf, *line, *ptr = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200330 const char *value_str;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200331 const struct lyd_node *child;
Michal Vasko60ea6352020-06-29 13:39:39 +0200332 struct lyd_node *tree;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200333 struct lyd_node_any *any;
334 LY_ERR rc;
335
336 if ((root_type == LYXP_NODE_ROOT_CONFIG) && (node->schema->flags & LYS_CONFIG_R)) {
337 return LY_SUCCESS;
338 }
339
340 if (fake_cont) {
Michal Vaskob7be7a82020-08-20 09:09:04 +0200341 rc = cast_string_realloc(LYD_CTX(node), 1, str, used, size);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200342 LY_CHECK_RET(rc);
343 strcpy(*str + (*used - 1), "\n");
344 ++(*used);
345
346 ++indent;
347 }
348
349 switch (node->schema->nodetype) {
350 case LYS_CONTAINER:
351 case LYS_LIST:
352 case LYS_RPC:
353 case LYS_NOTIF:
Michal Vaskob7be7a82020-08-20 09:09:04 +0200354 rc = cast_string_realloc(LYD_CTX(node), 1, str, used, size);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200355 LY_CHECK_RET(rc);
356 strcpy(*str + (*used - 1), "\n");
357 ++(*used);
358
Radek Krejcia1c1e542020-09-29 16:06:52 +0200359 for (child = lyd_child(node); child; child = child->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200360 rc = cast_string_recursive(child, 0, root_type, indent + 1, str, used, size);
361 LY_CHECK_RET(rc);
362 }
363
364 break;
365
366 case LYS_LEAF:
367 case LYS_LEAFLIST:
Michal Vaskob7be7a82020-08-20 09:09:04 +0200368 value_str = LYD_CANON_VALUE(node);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200369
370 /* print indent */
Michal Vaskob7be7a82020-08-20 09:09:04 +0200371 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 +0200372 memset(*str + (*used - 1), ' ', indent * 2);
373 *used += indent * 2;
374
375 /* print value */
376 if (*used == 1) {
377 sprintf(*str + (*used - 1), "%s", value_str);
378 *used += strlen(value_str);
379 } else {
380 sprintf(*str + (*used - 1), "%s\n", value_str);
381 *used += strlen(value_str) + 1;
382 }
Michal Vasko03ff5a72019-09-11 13:49:33 +0200383
384 break;
385
386 case LYS_ANYXML:
387 case LYS_ANYDATA:
388 any = (struct lyd_node_any *)node;
389 if (!(void *)any->value.tree) {
390 /* no content */
391 buf = strdup("");
Michal Vaskob7be7a82020-08-20 09:09:04 +0200392 LY_CHECK_ERR_RET(!buf, LOGMEM(LYD_CTX(node)), LY_EMEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200393 } else {
Radek Krejci241f6b52020-05-21 18:13:49 +0200394 struct ly_out *out;
Radek Krejcia5bba312020-01-09 15:41:20 +0100395
Michal Vasko60ea6352020-06-29 13:39:39 +0200396 if (any->value_type == LYD_ANYDATA_LYB) {
397 /* try to parse it into a data tree */
Michal Vaskob7be7a82020-08-20 09:09:04 +0200398 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 +0200399 /* successfully parsed */
400 free(any->value.mem);
401 any->value.tree = tree;
402 any->value_type = LYD_ANYDATA_DATATREE;
403 }
Radek Krejci7931b192020-06-25 17:05:03 +0200404 /* error is covered by the following switch where LYD_ANYDATA_LYB causes failure */
Michal Vasko60ea6352020-06-29 13:39:39 +0200405 }
406
Michal Vasko03ff5a72019-09-11 13:49:33 +0200407 switch (any->value_type) {
408 case LYD_ANYDATA_STRING:
409 case LYD_ANYDATA_XML:
410 case LYD_ANYDATA_JSON:
411 buf = strdup(any->value.json);
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 break;
414 case LYD_ANYDATA_DATATREE:
Radek Krejci84ce7b12020-06-11 17:28:25 +0200415 LY_CHECK_RET(ly_out_new_memory(&buf, 0, &out));
Michal Vasko3a41dff2020-07-15 14:30:28 +0200416 rc = lyd_print_all(out, any->value.tree, LYD_XML, 0);
Radek Krejci241f6b52020-05-21 18:13:49 +0200417 ly_out_free(out, NULL, 0);
Radek Krejcia5bba312020-01-09 15:41:20 +0100418 LY_CHECK_RET(rc < 0, -rc);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200419 break;
Michal Vasko60ea6352020-06-29 13:39:39 +0200420 case LYD_ANYDATA_LYB:
Michal Vaskob7be7a82020-08-20 09:09:04 +0200421 LOGERR(LYD_CTX(node), LY_EINVAL, "Cannot convert LYB anydata into string.");
Michal Vasko60ea6352020-06-29 13:39:39 +0200422 return LY_EINVAL;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200423 }
424 }
425
426 line = strtok_r(buf, "\n", &ptr);
427 do {
Michal Vaskob7be7a82020-08-20 09:09:04 +0200428 rc = cast_string_realloc(LYD_CTX(node), indent * 2 + strlen(line) + 1, str, used, size);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200429 if (rc != LY_SUCCESS) {
430 free(buf);
431 return rc;
432 }
433 memset(*str + (*used - 1), ' ', indent * 2);
434 *used += indent * 2;
435
436 strcpy(*str + (*used - 1), line);
437 *used += strlen(line);
438
439 strcpy(*str + (*used - 1), "\n");
440 *used += 1;
441 } while ((line = strtok_r(NULL, "\n", &ptr)));
442
443 free(buf);
444 break;
445
446 default:
Michal Vaskob7be7a82020-08-20 09:09:04 +0200447 LOGINT_RET(LYD_CTX(node));
Michal Vasko03ff5a72019-09-11 13:49:33 +0200448 }
449
450 if (fake_cont) {
Michal Vaskob7be7a82020-08-20 09:09:04 +0200451 rc = cast_string_realloc(LYD_CTX(node), 1, str, used, size);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200452 LY_CHECK_RET(rc);
453 strcpy(*str + (*used - 1), "\n");
454 ++(*used);
455
456 --indent;
457 }
458
459 return LY_SUCCESS;
460}
461
462/**
463 * @brief Cast an element into a string.
464 *
465 * @param[in] node Node to cast.
466 * @param[in] fake_cont Whether to put the data into a "fake" container.
467 * @param[in] root_type Type of the XPath root.
468 * @param[out] str Element cast to dynamically-allocated string.
469 * @return LY_ERR
470 */
471static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +0200472cast_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 +0200473{
474 uint16_t used, size;
475 LY_ERR rc;
476
477 *str = malloc(LYXP_STRING_CAST_SIZE_START * sizeof(char));
Michal Vaskob7be7a82020-08-20 09:09:04 +0200478 LY_CHECK_ERR_RET(!*str, LOGMEM(LYD_CTX(node)), LY_EMEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200479 (*str)[0] = '\0';
480 used = 1;
481 size = LYXP_STRING_CAST_SIZE_START;
482
483 rc = cast_string_recursive(node, fake_cont, root_type, 0, str, &used, &size);
484 if (rc != LY_SUCCESS) {
485 free(*str);
486 return rc;
487 }
488
489 if (size > used) {
490 *str = ly_realloc(*str, used * sizeof(char));
Michal Vaskob7be7a82020-08-20 09:09:04 +0200491 LY_CHECK_ERR_RET(!*str, LOGMEM(LYD_CTX(node)), LY_EMEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200492 }
493 return LY_SUCCESS;
494}
495
496/**
497 * @brief Cast a LYXP_SET_NODE_SET set into a string.
498 * Context position aware.
499 *
500 * @param[in] set Set to cast.
Michal Vasko03ff5a72019-09-11 13:49:33 +0200501 * @param[out] str Cast dynamically-allocated string.
502 * @return LY_ERR
503 */
504static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +0100505cast_node_set_to_string(struct lyxp_set *set, char **str)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200506{
Michal Vaskoaa677062021-03-09 13:52:53 +0100507 if (!set->used) {
508 *str = strdup("");
509 if (!*str) {
510 LOGMEM_RET(set->ctx);
511 }
512 return LY_SUCCESS;
513 }
514
Michal Vasko03ff5a72019-09-11 13:49:33 +0200515 switch (set->val.nodes[0].type) {
Michal Vasko2caefc12019-11-14 16:07:56 +0100516 case LYXP_NODE_NONE:
517 /* invalid */
518 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200519 case LYXP_NODE_ROOT:
520 case LYXP_NODE_ROOT_CONFIG:
Michal Vasko5e0e6eb2019-11-06 15:47:50 +0100521 return cast_string_elem(set->val.nodes[0].node, 1, set->root_type, str);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200522 case LYXP_NODE_ELEM:
523 case LYXP_NODE_TEXT:
Michal Vasko5e0e6eb2019-11-06 15:47:50 +0100524 return cast_string_elem(set->val.nodes[0].node, 0, set->root_type, str);
Michal Vasko9f96a052020-03-10 09:41:45 +0100525 case LYXP_NODE_META:
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200526 *str = strdup(set->val.meta[0].meta->value.canonical);
527 if (!*str) {
528 LOGMEM_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200529 }
530 return LY_SUCCESS;
531 }
532
533 LOGINT_RET(set->ctx);
534}
535
536/**
537 * @brief Cast a string into an XPath number.
538 *
539 * @param[in] str String to use.
540 * @return Cast number.
541 */
542static long double
543cast_string_to_number(const char *str)
544{
545 long double num;
546 char *ptr;
547
548 errno = 0;
549 num = strtold(str, &ptr);
550 if (errno || *ptr) {
551 num = NAN;
552 }
553 return num;
554}
555
556/**
557 * @brief Callback for checking value equality.
558 *
Michal Vasko62524a92021-02-26 10:08:50 +0100559 * Implementation of ::lyht_value_equal_cb.
Radek Krejci857189e2020-09-01 13:26:36 +0200560 *
Michal Vasko03ff5a72019-09-11 13:49:33 +0200561 * @param[in] val1_p First value.
562 * @param[in] val2_p Second value.
563 * @param[in] mod Whether hash table is being modified.
564 * @param[in] cb_data Callback data.
Radek Krejci857189e2020-09-01 13:26:36 +0200565 * @return Boolean value whether values are equal or not.
Michal Vasko03ff5a72019-09-11 13:49:33 +0200566 */
Radek Krejci857189e2020-09-01 13:26:36 +0200567static ly_bool
568set_values_equal_cb(void *val1_p, void *val2_p, ly_bool UNUSED(mod), void *UNUSED(cb_data))
Michal Vasko03ff5a72019-09-11 13:49:33 +0200569{
570 struct lyxp_set_hash_node *val1, *val2;
571
572 val1 = (struct lyxp_set_hash_node *)val1_p;
573 val2 = (struct lyxp_set_hash_node *)val2_p;
574
575 if ((val1->node == val2->node) && (val1->type == val2->type)) {
576 return 1;
577 }
578
579 return 0;
580}
581
582/**
583 * @brief Insert node and its hash into set.
584 *
585 * @param[in] set et to insert to.
586 * @param[in] node Node with hash.
587 * @param[in] type Node type.
588 */
589static void
590set_insert_node_hash(struct lyxp_set *set, struct lyd_node *node, enum lyxp_node_type type)
591{
Radek Krejci1deb5be2020-08-26 16:43:36 +0200592 LY_ERR r;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200593 uint32_t i, hash;
594 struct lyxp_set_hash_node hnode;
595
596 if (!set->ht && (set->used >= LYD_HT_MIN_ITEMS)) {
597 /* create hash table and add all the nodes */
598 set->ht = lyht_new(1, sizeof(struct lyxp_set_hash_node), set_values_equal_cb, NULL, 1);
599 for (i = 0; i < set->used; ++i) {
600 hnode.node = set->val.nodes[i].node;
601 hnode.type = set->val.nodes[i].type;
602
603 hash = dict_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node);
604 hash = dict_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type);
605 hash = dict_hash_multi(hash, NULL, 0);
606
607 r = lyht_insert(set->ht, &hnode, hash, NULL);
608 assert(!r);
609 (void)r;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200610
Michal Vasko9d6befd2019-12-11 14:56:56 +0100611 if (hnode.node == node) {
612 /* it was just added, do not add it twice */
613 node = NULL;
614 }
615 }
616 }
617
618 if (set->ht && node) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200619 /* add the new node into hash table */
620 hnode.node = node;
621 hnode.type = 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;
630 }
631}
632
633/**
634 * @brief Remove node and its hash from set.
635 *
636 * @param[in] set Set to remove from.
637 * @param[in] node Node to remove.
638 * @param[in] type Node type.
639 */
640static void
641set_remove_node_hash(struct lyxp_set *set, struct lyd_node *node, enum lyxp_node_type type)
642{
Radek Krejci1deb5be2020-08-26 16:43:36 +0200643 LY_ERR r;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200644 struct lyxp_set_hash_node hnode;
645 uint32_t hash;
646
647 if (set->ht) {
648 hnode.node = node;
649 hnode.type = type;
650
651 hash = dict_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node);
652 hash = dict_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type);
653 hash = dict_hash_multi(hash, NULL, 0);
654
655 r = lyht_remove(set->ht, &hnode, hash);
656 assert(!r);
657 (void)r;
658
659 if (!set->ht->used) {
660 lyht_free(set->ht);
661 set->ht = NULL;
662 }
663 }
664}
665
666/**
667 * @brief Check whether node is in set based on its hash.
668 *
669 * @param[in] set Set to search in.
670 * @param[in] node Node to search for.
671 * @param[in] type Node type.
672 * @param[in] skip_idx Index in @p set to skip.
673 * @return LY_ERR
674 */
675static LY_ERR
676set_dup_node_hash_check(const struct lyxp_set *set, struct lyd_node *node, enum lyxp_node_type type, int skip_idx)
677{
678 struct lyxp_set_hash_node hnode, *match_p;
679 uint32_t hash;
680
681 hnode.node = node;
682 hnode.type = type;
683
684 hash = dict_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node);
685 hash = dict_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type);
686 hash = dict_hash_multi(hash, NULL, 0);
687
688 if (!lyht_find(set->ht, &hnode, hash, (void **)&match_p)) {
689 if ((skip_idx > -1) && (set->val.nodes[skip_idx].node == match_p->node) && (set->val.nodes[skip_idx].type == match_p->type)) {
690 /* we found it on the index that should be skipped, find another */
691 hnode = *match_p;
692 if (lyht_find_next(set->ht, &hnode, hash, (void **)&match_p)) {
693 /* none other found */
694 return LY_SUCCESS;
695 }
696 }
697
698 return LY_EEXIST;
699 }
700
701 /* not found */
702 return LY_SUCCESS;
703}
704
Michal Vaskod3678892020-05-21 10:06:58 +0200705void
706lyxp_set_free_content(struct lyxp_set *set)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200707{
708 if (!set) {
709 return;
710 }
711
712 if (set->type == LYXP_SET_NODE_SET) {
713 free(set->val.nodes);
714 lyht_free(set->ht);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200715 } else if (set->type == LYXP_SET_SCNODE_SET) {
716 free(set->val.scnodes);
Michal Vaskod3678892020-05-21 10:06:58 +0200717 lyht_free(set->ht);
718 } else {
719 if (set->type == LYXP_SET_STRING) {
720 free(set->val.str);
721 }
722 set->type = LYXP_SET_NODE_SET;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200723 }
Michal Vaskod3678892020-05-21 10:06:58 +0200724
725 set->val.nodes = NULL;
726 set->used = 0;
727 set->size = 0;
728 set->ht = NULL;
729 set->ctx_pos = 0;
730 set->ctx_pos = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200731}
732
Michal Vasko5e0e6eb2019-11-06 15:47:50 +0100733/**
734 * @brief Free dynamically-allocated set.
735 *
736 * @param[in] set Set to free.
737 */
738static void
Michal Vasko03ff5a72019-09-11 13:49:33 +0200739lyxp_set_free(struct lyxp_set *set)
740{
741 if (!set) {
742 return;
743 }
744
Michal Vaskod3678892020-05-21 10:06:58 +0200745 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200746 free(set);
747}
748
749/**
750 * @brief Initialize set context.
751 *
752 * @param[in] new Set to initialize.
753 * @param[in] set Arbitrary initialized set.
754 */
755static void
Michal Vasko4c7763f2020-07-27 17:40:37 +0200756set_init(struct lyxp_set *new, const struct lyxp_set *set)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200757{
758 memset(new, 0, sizeof *new);
Michal Vasko02a77382019-09-12 11:47:35 +0200759 if (set) {
760 new->ctx = set->ctx;
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200761 new->cur_node = set->cur_node;
Michal Vasko588112f2019-12-10 14:51:53 +0100762 new->root_type = set->root_type;
Michal Vasko6b26e742020-07-17 15:02:10 +0200763 new->context_op = set->context_op;
Michal Vaskof03ed032020-03-04 13:31:44 +0100764 new->tree = set->tree;
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200765 new->cur_mod = set->cur_mod;
Michal Vasko02a77382019-09-12 11:47:35 +0200766 new->format = set->format;
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200767 new->prefix_data = set->prefix_data;
Michal Vasko02a77382019-09-12 11:47:35 +0200768 }
Michal Vasko03ff5a72019-09-11 13:49:33 +0200769}
770
771/**
772 * @brief Create a deep copy of a set.
773 *
774 * @param[in] set Set to copy.
775 * @return Copy of @p set.
776 */
777static struct lyxp_set *
778set_copy(struct lyxp_set *set)
779{
780 struct lyxp_set *ret;
Michal Vasko1fdd8fa2021-01-08 09:21:45 +0100781 uint32_t i;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200782
783 if (!set) {
784 return NULL;
785 }
786
787 ret = malloc(sizeof *ret);
788 LY_CHECK_ERR_RET(!ret, LOGMEM(set->ctx), NULL);
789 set_init(ret, set);
790
791 if (set->type == LYXP_SET_SCNODE_SET) {
792 ret->type = set->type;
793
794 for (i = 0; i < set->used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +0100795 if ((set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) ||
796 (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_START)) {
Radek Krejciaa6b53f2020-08-27 15:19:03 +0200797 uint32_t idx;
798 LY_CHECK_ERR_RET(lyxp_set_scnode_insert_node(ret, set->val.scnodes[i].scnode, set->val.scnodes[i].type, &idx),
799 lyxp_set_free(ret), NULL);
Michal Vasko3f27c522020-01-06 08:37:49 +0100800 /* coverity seems to think scnodes can be NULL */
Radek Krejciaa6b53f2020-08-27 15:19:03 +0200801 if (!ret->val.scnodes) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200802 lyxp_set_free(ret);
803 return NULL;
804 }
Michal Vaskoba716542019-12-16 10:01:58 +0100805 ret->val.scnodes[idx].in_ctx = set->val.scnodes[i].in_ctx;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200806 }
807 }
808 } else if (set->type == LYXP_SET_NODE_SET) {
809 ret->type = set->type;
810 ret->val.nodes = malloc(set->used * sizeof *ret->val.nodes);
811 LY_CHECK_ERR_RET(!ret->val.nodes, LOGMEM(set->ctx); free(ret), NULL);
812 memcpy(ret->val.nodes, set->val.nodes, set->used * sizeof *ret->val.nodes);
813
814 ret->used = ret->size = set->used;
815 ret->ctx_pos = set->ctx_pos;
816 ret->ctx_size = set->ctx_size;
Michal Vasko4a04e542021-02-01 08:58:30 +0100817 if (set->ht) {
818 ret->ht = lyht_dup(set->ht);
819 }
Michal Vasko03ff5a72019-09-11 13:49:33 +0200820 } else {
Radek Krejci0f969882020-08-21 16:56:47 +0200821 memcpy(ret, set, sizeof *ret);
822 if (set->type == LYXP_SET_STRING) {
823 ret->val.str = strdup(set->val.str);
824 LY_CHECK_ERR_RET(!ret->val.str, LOGMEM(set->ctx); free(ret), NULL);
825 }
Michal Vasko03ff5a72019-09-11 13:49:33 +0200826 }
827
828 return ret;
829}
830
831/**
832 * @brief Fill XPath set with a string. Any current data are disposed of.
833 *
834 * @param[in] set Set to fill.
835 * @param[in] string String to fill into \p set.
836 * @param[in] str_len Length of \p string. 0 is a valid value!
837 */
838static void
839set_fill_string(struct lyxp_set *set, const char *string, uint16_t str_len)
840{
Michal Vaskod3678892020-05-21 10:06:58 +0200841 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200842
843 set->type = LYXP_SET_STRING;
844 if ((str_len == 0) && (string[0] != '\0')) {
845 string = "";
846 }
847 set->val.str = strndup(string, str_len);
848}
849
850/**
851 * @brief Fill XPath set with a number. Any current data are disposed of.
852 *
853 * @param[in] set Set to fill.
854 * @param[in] number Number to fill into \p set.
855 */
856static void
857set_fill_number(struct lyxp_set *set, long double number)
858{
Michal Vaskod3678892020-05-21 10:06:58 +0200859 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200860
861 set->type = LYXP_SET_NUMBER;
862 set->val.num = number;
863}
864
865/**
866 * @brief Fill XPath set with a boolean. Any current data are disposed of.
867 *
868 * @param[in] set Set to fill.
869 * @param[in] boolean Boolean to fill into \p set.
870 */
871static void
Radek Krejci857189e2020-09-01 13:26:36 +0200872set_fill_boolean(struct lyxp_set *set, ly_bool boolean)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200873{
Michal Vaskod3678892020-05-21 10:06:58 +0200874 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200875
876 set->type = LYXP_SET_BOOLEAN;
Michal Vasko004d3152020-06-11 19:59:22 +0200877 set->val.bln = boolean;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200878}
879
880/**
881 * @brief Fill XPath set with the value from another set (deep assign).
882 * Any current data are disposed of.
883 *
884 * @param[in] trg Set to fill.
885 * @param[in] src Source set to copy into \p trg.
886 */
887static void
Michal Vasko4c7763f2020-07-27 17:40:37 +0200888set_fill_set(struct lyxp_set *trg, const struct lyxp_set *src)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200889{
890 if (!trg || !src) {
891 return;
892 }
893
894 if (trg->type == LYXP_SET_NODE_SET) {
895 free(trg->val.nodes);
896 } else if (trg->type == LYXP_SET_STRING) {
897 free(trg->val.str);
898 }
899 set_init(trg, src);
900
901 if (src->type == LYXP_SET_SCNODE_SET) {
902 trg->type = LYXP_SET_SCNODE_SET;
903 trg->used = src->used;
904 trg->size = src->used;
905
906 trg->val.scnodes = ly_realloc(trg->val.scnodes, trg->size * sizeof *trg->val.scnodes);
907 LY_CHECK_ERR_RET(!trg->val.scnodes, LOGMEM(src->ctx); memset(trg, 0, sizeof *trg), );
908 memcpy(trg->val.scnodes, src->val.scnodes, src->used * sizeof *src->val.scnodes);
909 } else if (src->type == LYXP_SET_BOOLEAN) {
Michal Vasko004d3152020-06-11 19:59:22 +0200910 set_fill_boolean(trg, src->val.bln);
Michal Vasko44f3d2c2020-08-24 09:49:38 +0200911 } else if (src->type == LYXP_SET_NUMBER) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200912 set_fill_number(trg, src->val.num);
913 } else if (src->type == LYXP_SET_STRING) {
914 set_fill_string(trg, src->val.str, strlen(src->val.str));
915 } else {
916 if (trg->type == LYXP_SET_NODE_SET) {
917 free(trg->val.nodes);
918 } else if (trg->type == LYXP_SET_STRING) {
919 free(trg->val.str);
920 }
921
Michal Vaskod3678892020-05-21 10:06:58 +0200922 assert(src->type == LYXP_SET_NODE_SET);
923
924 trg->type = LYXP_SET_NODE_SET;
925 trg->used = src->used;
926 trg->size = src->used;
927 trg->ctx_pos = src->ctx_pos;
928 trg->ctx_size = src->ctx_size;
929
930 trg->val.nodes = malloc(trg->used * sizeof *trg->val.nodes);
931 LY_CHECK_ERR_RET(!trg->val.nodes, LOGMEM(src->ctx); memset(trg, 0, sizeof *trg), );
932 memcpy(trg->val.nodes, src->val.nodes, src->used * sizeof *src->val.nodes);
933 if (src->ht) {
934 trg->ht = lyht_dup(src->ht);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200935 } else {
Michal Vaskod3678892020-05-21 10:06:58 +0200936 trg->ht = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200937 }
938 }
939}
940
941/**
942 * @brief Clear context of all schema nodes.
943 *
944 * @param[in] set Set to clear.
945 */
946static void
947set_scnode_clear_ctx(struct lyxp_set *set)
948{
949 uint32_t i;
950
951 for (i = 0; i < set->used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +0100952 if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) {
953 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM;
954 } else if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_START) {
955 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_START_USED;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200956 }
957 }
958}
959
960/**
961 * @brief Remove a node from a set. Removing last node changes
962 * set into LYXP_SET_EMPTY. Context position aware.
963 *
964 * @param[in] set Set to use.
965 * @param[in] idx Index from @p set of the node to be removed.
966 */
967static void
968set_remove_node(struct lyxp_set *set, uint32_t idx)
969{
970 assert(set && (set->type == LYXP_SET_NODE_SET));
971 assert(idx < set->used);
972
973 set_remove_node_hash(set, set->val.nodes[idx].node, set->val.nodes[idx].type);
974
975 --set->used;
976 if (set->used) {
977 memmove(&set->val.nodes[idx], &set->val.nodes[idx + 1],
978 (set->used - idx) * sizeof *set->val.nodes);
979 } else {
Michal Vaskod3678892020-05-21 10:06:58 +0200980 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200981 }
982}
983
984/**
Michal Vasko2caefc12019-11-14 16:07:56 +0100985 * @brief Remove a node from a set by setting its type to LYXP_NODE_NONE.
Michal Vasko57eab132019-09-24 11:46:26 +0200986 *
987 * @param[in] set Set to use.
988 * @param[in] idx Index from @p set of the node to be removed.
989 */
990static void
Michal Vasko2caefc12019-11-14 16:07:56 +0100991set_remove_node_none(struct lyxp_set *set, uint32_t idx)
Michal Vasko57eab132019-09-24 11:46:26 +0200992{
993 assert(set && (set->type == LYXP_SET_NODE_SET));
994 assert(idx < set->used);
995
Michal Vasko2caefc12019-11-14 16:07:56 +0100996 if (set->val.nodes[idx].type == LYXP_NODE_ELEM) {
997 set_remove_node_hash(set, set->val.nodes[idx].node, set->val.nodes[idx].type);
998 }
999 set->val.nodes[idx].type = LYXP_NODE_NONE;
Michal Vasko57eab132019-09-24 11:46:26 +02001000}
1001
1002/**
Michal Vasko2caefc12019-11-14 16:07:56 +01001003 * @brief Remove all LYXP_NODE_NONE nodes from a set. Removing last node changes
Michal Vasko57eab132019-09-24 11:46:26 +02001004 * set into LYXP_SET_EMPTY. Context position aware.
1005 *
1006 * @param[in] set Set to consolidate.
1007 */
1008static void
Michal Vasko2caefc12019-11-14 16:07:56 +01001009set_remove_nodes_none(struct lyxp_set *set)
Michal Vasko57eab132019-09-24 11:46:26 +02001010{
Michal Vasko1fdd8fa2021-01-08 09:21:45 +01001011 uint32_t i, orig_used, end = 0;
1012 int64_t start;
Michal Vasko57eab132019-09-24 11:46:26 +02001013
Michal Vaskod3678892020-05-21 10:06:58 +02001014 assert(set);
Michal Vasko57eab132019-09-24 11:46:26 +02001015
1016 orig_used = set->used;
1017 set->used = 0;
Michal Vaskod989ba02020-08-24 10:59:24 +02001018 for (i = 0; i < orig_used; ) {
Michal Vasko57eab132019-09-24 11:46:26 +02001019 start = -1;
1020 do {
Michal Vasko2caefc12019-11-14 16:07:56 +01001021 if ((set->val.nodes[i].type != LYXP_NODE_NONE) && (start == -1)) {
Michal Vasko57eab132019-09-24 11:46:26 +02001022 start = i;
Michal Vasko2caefc12019-11-14 16:07:56 +01001023 } else if ((start > -1) && (set->val.nodes[i].type == LYXP_NODE_NONE)) {
Michal Vasko57eab132019-09-24 11:46:26 +02001024 end = i;
1025 ++i;
1026 break;
1027 }
1028
1029 ++i;
1030 if (i == orig_used) {
1031 end = i;
1032 }
1033 } while (i < orig_used);
1034
1035 if (start > -1) {
1036 /* move the whole chunk of valid nodes together */
1037 if (set->used != (unsigned)start) {
1038 memmove(&set->val.nodes[set->used], &set->val.nodes[start], (end - start) * sizeof *set->val.nodes);
1039 }
1040 set->used += end - start;
1041 }
1042 }
Michal Vasko57eab132019-09-24 11:46:26 +02001043}
1044
1045/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02001046 * @brief Check for duplicates in a node set.
1047 *
1048 * @param[in] set Set to check.
1049 * @param[in] node Node to look for in @p set.
1050 * @param[in] node_type Type of @p node.
1051 * @param[in] skip_idx Index from @p set to skip.
1052 * @return LY_ERR
1053 */
1054static LY_ERR
1055set_dup_node_check(const struct lyxp_set *set, const struct lyd_node *node, enum lyxp_node_type node_type, int skip_idx)
1056{
1057 uint32_t i;
1058
Michal Vasko2caefc12019-11-14 16:07:56 +01001059 if (set->ht && node) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001060 return set_dup_node_hash_check(set, (struct lyd_node *)node, node_type, skip_idx);
1061 }
1062
1063 for (i = 0; i < set->used; ++i) {
1064 if ((skip_idx > -1) && (i == (unsigned)skip_idx)) {
1065 continue;
1066 }
1067
1068 if ((set->val.nodes[i].node == node) && (set->val.nodes[i].type == node_type)) {
1069 return LY_EEXIST;
1070 }
1071 }
1072
1073 return LY_SUCCESS;
1074}
1075
Radek Krejci857189e2020-09-01 13:26:36 +02001076ly_bool
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001077lyxp_set_scnode_contains(struct lyxp_set *set, const struct lysc_node *node, enum lyxp_node_type node_type, int skip_idx,
1078 uint32_t *index_p)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001079{
1080 uint32_t i;
1081
1082 for (i = 0; i < set->used; ++i) {
1083 if ((skip_idx > -1) && (i == (unsigned)skip_idx)) {
1084 continue;
1085 }
1086
1087 if ((set->val.scnodes[i].scnode == node) && (set->val.scnodes[i].type == node_type)) {
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001088 if (index_p) {
1089 *index_p = i;
1090 }
1091 return 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001092 }
1093 }
1094
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001095 return 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001096}
1097
Michal Vaskoecd62de2019-11-13 12:35:11 +01001098void
1099lyxp_set_scnode_merge(struct lyxp_set *set1, struct lyxp_set *set2)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001100{
1101 uint32_t orig_used, i, j;
1102
Michal Vaskod3678892020-05-21 10:06:58 +02001103 assert((set1->type == LYXP_SET_SCNODE_SET) && (set2->type == LYXP_SET_SCNODE_SET));
Michal Vasko03ff5a72019-09-11 13:49:33 +02001104
Michal Vaskod3678892020-05-21 10:06:58 +02001105 if (!set2->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001106 return;
1107 }
1108
Michal Vaskod3678892020-05-21 10:06:58 +02001109 if (!set1->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001110 memcpy(set1, set2, sizeof *set1);
1111 return;
1112 }
1113
1114 if (set1->used + set2->used > set1->size) {
1115 set1->size = set1->used + set2->used;
1116 set1->val.scnodes = ly_realloc(set1->val.scnodes, set1->size * sizeof *set1->val.scnodes);
1117 LY_CHECK_ERR_RET(!set1->val.scnodes, LOGMEM(set1->ctx), );
1118 }
1119
1120 orig_used = set1->used;
1121
1122 for (i = 0; i < set2->used; ++i) {
1123 for (j = 0; j < orig_used; ++j) {
1124 /* detect duplicities */
1125 if (set1->val.scnodes[j].scnode == set2->val.scnodes[i].scnode) {
1126 break;
1127 }
1128 }
1129
Michal Vasko0587bce2020-12-10 12:19:21 +01001130 if (j < orig_used) {
1131 /* node is there, but update its status if needed */
1132 if (set1->val.scnodes[j].in_ctx == LYXP_SET_SCNODE_START_USED) {
1133 set1->val.scnodes[j].in_ctx = set2->val.scnodes[i].in_ctx;
1134 }
1135 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001136 memcpy(&set1->val.scnodes[set1->used], &set2->val.scnodes[i], sizeof *set2->val.scnodes);
1137 ++set1->used;
1138 }
1139 }
1140
Michal Vaskod3678892020-05-21 10:06:58 +02001141 lyxp_set_free_content(set2);
1142 set2->type = LYXP_SET_SCNODE_SET;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001143}
1144
1145/**
1146 * @brief Insert a node into a set. Context position aware.
1147 *
1148 * @param[in] set Set to use.
1149 * @param[in] node Node to insert to @p set.
1150 * @param[in] pos Sort position of @p node. If left 0, it is filled just before sorting.
1151 * @param[in] node_type Node type of @p node.
1152 * @param[in] idx Index in @p set to insert into.
1153 */
1154static void
1155set_insert_node(struct lyxp_set *set, const struct lyd_node *node, uint32_t pos, enum lyxp_node_type node_type, uint32_t idx)
1156{
Michal Vaskod3678892020-05-21 10:06:58 +02001157 assert(set && (set->type == LYXP_SET_NODE_SET));
Michal Vasko03ff5a72019-09-11 13:49:33 +02001158
Michal Vaskod3678892020-05-21 10:06:58 +02001159 if (!set->size) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001160 /* first item */
1161 if (idx) {
1162 /* no real harm done, but it is a bug */
1163 LOGINT(set->ctx);
1164 idx = 0;
1165 }
1166 set->val.nodes = malloc(LYXP_SET_SIZE_START * sizeof *set->val.nodes);
1167 LY_CHECK_ERR_RET(!set->val.nodes, LOGMEM(set->ctx), );
1168 set->type = LYXP_SET_NODE_SET;
1169 set->used = 0;
1170 set->size = LYXP_SET_SIZE_START;
1171 set->ctx_pos = 1;
1172 set->ctx_size = 1;
1173 set->ht = NULL;
1174 } else {
1175 /* not an empty set */
1176 if (set->used == set->size) {
1177
1178 /* set is full */
1179 set->val.nodes = ly_realloc(set->val.nodes, (set->size + LYXP_SET_SIZE_STEP) * sizeof *set->val.nodes);
1180 LY_CHECK_ERR_RET(!set->val.nodes, LOGMEM(set->ctx), );
1181 set->size += LYXP_SET_SIZE_STEP;
1182 }
1183
1184 if (idx > set->used) {
1185 LOGINT(set->ctx);
1186 idx = set->used;
1187 }
1188
1189 /* make space for the new node */
1190 if (idx < set->used) {
1191 memmove(&set->val.nodes[idx + 1], &set->val.nodes[idx], (set->used - idx) * sizeof *set->val.nodes);
1192 }
1193 }
1194
1195 /* finally assign the value */
1196 set->val.nodes[idx].node = (struct lyd_node *)node;
1197 set->val.nodes[idx].type = node_type;
1198 set->val.nodes[idx].pos = pos;
1199 ++set->used;
1200
Michal Vasko2caefc12019-11-14 16:07:56 +01001201 if (set->val.nodes[idx].type == LYXP_NODE_ELEM) {
1202 set_insert_node_hash(set, (struct lyd_node *)node, node_type);
1203 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02001204}
1205
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001206LY_ERR
1207lyxp_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 +02001208{
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001209 uint32_t index;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001210
1211 assert(set->type == LYXP_SET_SCNODE_SET);
1212
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001213 if (lyxp_set_scnode_contains(set, node, node_type, -1, &index)) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01001214 set->val.scnodes[index].in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001215 } else {
1216 if (set->used == set->size) {
1217 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 +02001218 LY_CHECK_ERR_RET(!set->val.scnodes, LOGMEM(set->ctx), LY_EMEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001219 set->size += LYXP_SET_SIZE_STEP;
1220 }
1221
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001222 index = set->used;
1223 set->val.scnodes[index].scnode = (struct lysc_node *)node;
1224 set->val.scnodes[index].type = node_type;
Radek Krejcif13b87b2020-12-01 22:02:17 +01001225 set->val.scnodes[index].in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001226 ++set->used;
1227 }
1228
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001229 if (index_p) {
1230 *index_p = index;
1231 }
1232
1233 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001234}
1235
1236/**
1237 * @brief Replace a node in a set with another. Context position aware.
1238 *
1239 * @param[in] set Set to use.
1240 * @param[in] node Node to insert to @p set.
1241 * @param[in] pos Sort position of @p node. If left 0, it is filled just before sorting.
1242 * @param[in] node_type Node type of @p node.
1243 * @param[in] idx Index in @p set of the node to replace.
1244 */
1245static void
1246set_replace_node(struct lyxp_set *set, const struct lyd_node *node, uint32_t pos, enum lyxp_node_type node_type, uint32_t idx)
1247{
1248 assert(set && (idx < set->used));
1249
Michal Vasko2caefc12019-11-14 16:07:56 +01001250 if (set->val.nodes[idx].type == LYXP_NODE_ELEM) {
1251 set_remove_node_hash(set, set->val.nodes[idx].node, set->val.nodes[idx].type);
1252 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02001253 set->val.nodes[idx].node = (struct lyd_node *)node;
1254 set->val.nodes[idx].type = node_type;
1255 set->val.nodes[idx].pos = pos;
Michal Vasko2caefc12019-11-14 16:07:56 +01001256 if (set->val.nodes[idx].type == LYXP_NODE_ELEM) {
1257 set_insert_node_hash(set, set->val.nodes[idx].node, set->val.nodes[idx].type);
1258 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02001259}
1260
1261/**
1262 * @brief Set all nodes with ctx 1 to a new unique context value.
1263 *
1264 * @param[in] set Set to modify.
1265 * @return New context value.
1266 */
Michal Vasko5c4e5892019-11-14 12:31:38 +01001267static int32_t
Michal Vasko03ff5a72019-09-11 13:49:33 +02001268set_scnode_new_in_ctx(struct lyxp_set *set)
1269{
Michal Vasko5c4e5892019-11-14 12:31:38 +01001270 uint32_t i;
1271 int32_t ret_ctx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001272
1273 assert(set->type == LYXP_SET_SCNODE_SET);
1274
Radek Krejcif13b87b2020-12-01 22:02:17 +01001275 ret_ctx = LYXP_SET_SCNODE_ATOM_PRED_CTX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001276retry:
1277 for (i = 0; i < set->used; ++i) {
1278 if (set->val.scnodes[i].in_ctx >= ret_ctx) {
1279 ret_ctx = set->val.scnodes[i].in_ctx + 1;
1280 goto retry;
1281 }
1282 }
1283 for (i = 0; i < set->used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01001284 if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001285 set->val.scnodes[i].in_ctx = ret_ctx;
1286 }
1287 }
1288
1289 return ret_ctx;
1290}
1291
1292/**
1293 * @brief Get unique @p node position in the data.
1294 *
1295 * @param[in] node Node to find.
1296 * @param[in] node_type Node type of @p node.
1297 * @param[in] root Root node.
1298 * @param[in] root_type Type of the XPath @p root node.
1299 * @param[in] prev Node that we think is before @p node in DFS from @p root. Can optionally
1300 * be used to increase efficiency and start the DFS from this node.
1301 * @param[in] prev_pos Node @p prev position. Optional, but must be set if @p prev is set.
1302 * @return Node position.
1303 */
1304static uint32_t
1305get_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 +02001306 enum lyxp_node_type root_type, const struct lyd_node **prev, uint32_t *prev_pos)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001307{
Michal Vasko56daf732020-08-10 10:57:18 +02001308 const struct lyd_node *elem = NULL, *top_sibling;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001309 uint32_t pos = 1;
Michal Vaskofb6c9dd2020-11-18 18:18:47 +01001310 ly_bool found = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001311
1312 assert(prev && prev_pos && !root->prev->next);
1313
1314 if ((node_type == LYXP_NODE_ROOT) || (node_type == LYXP_NODE_ROOT_CONFIG)) {
1315 return 0;
1316 }
1317
1318 if (*prev) {
1319 /* start from the previous element instead from the root */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001320 pos = *prev_pos;
Michal Vaskofb6c9dd2020-11-18 18:18:47 +01001321 for (top_sibling = *prev; top_sibling->parent; top_sibling = lyd_parent(top_sibling)) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02001322 goto dfs_search;
1323 }
1324
Michal Vaskofb6c9dd2020-11-18 18:18:47 +01001325 LY_LIST_FOR(root, top_sibling) {
Michal Vasko56daf732020-08-10 10:57:18 +02001326 LYD_TREE_DFS_BEGIN(top_sibling, elem) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001327dfs_search:
Michal Vasko56daf732020-08-10 10:57:18 +02001328 if (*prev && !elem) {
1329 /* resume previous DFS */
1330 elem = LYD_TREE_DFS_next = (struct lyd_node *)*prev;
1331 LYD_TREE_DFS_continue = 0;
1332 }
1333
Michal Vasko03ff5a72019-09-11 13:49:33 +02001334 if ((root_type == LYXP_NODE_ROOT_CONFIG) && (elem->schema->flags & LYS_CONFIG_R)) {
Michal Vasko56daf732020-08-10 10:57:18 +02001335 /* skip */
1336 LYD_TREE_DFS_continue = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001337 } else {
Michal Vasko56daf732020-08-10 10:57:18 +02001338 if (elem == node) {
Michal Vaskofb6c9dd2020-11-18 18:18:47 +01001339 found = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001340 break;
1341 }
Michal Vasko56daf732020-08-10 10:57:18 +02001342 ++pos;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001343 }
Michal Vasko56daf732020-08-10 10:57:18 +02001344
1345 LYD_TREE_DFS_END(top_sibling, elem);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001346 }
1347
1348 /* node found */
Michal Vaskofb6c9dd2020-11-18 18:18:47 +01001349 if (found) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001350 break;
1351 }
1352 }
1353
Michal Vaskofb6c9dd2020-11-18 18:18:47 +01001354 if (!found) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001355 if (!(*prev)) {
1356 /* we went from root and failed to find it, cannot be */
Michal Vaskob7be7a82020-08-20 09:09:04 +02001357 LOGINT(LYD_CTX(node));
Michal Vasko03ff5a72019-09-11 13:49:33 +02001358 return 0;
1359 } else {
Michal Vasko56daf732020-08-10 10:57:18 +02001360 /* start the search again from the beginning */
1361 *prev = root;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001362
Michal Vasko56daf732020-08-10 10:57:18 +02001363 top_sibling = root;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001364 pos = 1;
1365 goto dfs_search;
1366 }
1367 }
1368
1369 /* remember the last found node for next time */
1370 *prev = node;
1371 *prev_pos = pos;
1372
1373 return pos;
1374}
1375
1376/**
1377 * @brief Assign (fill) missing node positions.
1378 *
1379 * @param[in] set Set to fill positions in.
1380 * @param[in] root Context root node.
1381 * @param[in] root_type Context root type.
1382 * @return LY_ERR
1383 */
1384static LY_ERR
1385set_assign_pos(struct lyxp_set *set, const struct lyd_node *root, enum lyxp_node_type root_type)
1386{
1387 const struct lyd_node *prev = NULL, *tmp_node;
1388 uint32_t i, tmp_pos = 0;
1389
1390 for (i = 0; i < set->used; ++i) {
1391 if (!set->val.nodes[i].pos) {
1392 tmp_node = NULL;
1393 switch (set->val.nodes[i].type) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001394 case LYXP_NODE_META:
1395 tmp_node = set->val.meta[i].meta->parent;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001396 if (!tmp_node) {
1397 LOGINT_RET(root->schema->module->ctx);
1398 }
Radek Krejcif13b87b2020-12-01 22:02:17 +01001399 /* fall through */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001400 case LYXP_NODE_ELEM:
1401 case LYXP_NODE_TEXT:
1402 if (!tmp_node) {
1403 tmp_node = set->val.nodes[i].node;
1404 }
1405 set->val.nodes[i].pos = get_node_pos(tmp_node, set->val.nodes[i].type, root, root_type, &prev, &tmp_pos);
1406 break;
1407 default:
1408 /* all roots have position 0 */
1409 break;
1410 }
1411 }
1412 }
1413
1414 return LY_SUCCESS;
1415}
1416
1417/**
Michal Vasko9f96a052020-03-10 09:41:45 +01001418 * @brief Get unique @p meta position in the parent metadata.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001419 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001420 * @param[in] meta Metadata to use.
1421 * @return Metadata position.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001422 */
1423static uint16_t
Michal Vasko9f96a052020-03-10 09:41:45 +01001424get_meta_pos(struct lyd_meta *meta)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001425{
1426 uint16_t pos = 0;
Michal Vasko9f96a052020-03-10 09:41:45 +01001427 struct lyd_meta *meta2;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001428
Michal Vasko9f96a052020-03-10 09:41:45 +01001429 for (meta2 = meta->parent->meta; meta2 && (meta2 != meta); meta2 = meta2->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001430 ++pos;
1431 }
1432
Michal Vasko9f96a052020-03-10 09:41:45 +01001433 assert(meta2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001434 return pos;
1435}
1436
1437/**
1438 * @brief Compare 2 nodes in respect to XPath document order.
1439 *
1440 * @param[in] item1 1st node.
1441 * @param[in] item2 2nd node.
1442 * @return If 1st > 2nd returns 1, 1st == 2nd returns 0, and 1st < 2nd returns -1.
1443 */
1444static int
1445set_sort_compare(struct lyxp_set_node *item1, struct lyxp_set_node *item2)
1446{
Michal Vasko9f96a052020-03-10 09:41:45 +01001447 uint32_t meta_pos1 = 0, meta_pos2 = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001448
1449 if (item1->pos < item2->pos) {
1450 return -1;
1451 }
1452
1453 if (item1->pos > item2->pos) {
1454 return 1;
1455 }
1456
1457 /* node positions are equal, the fun case */
1458
1459 /* 1st ELEM - == - 2nd TEXT, 1st TEXT - == - 2nd ELEM */
1460 /* special case since text nodes are actually saved as their parents */
1461 if ((item1->node == item2->node) && (item1->type != item2->type)) {
1462 if (item1->type == LYXP_NODE_ELEM) {
1463 assert(item2->type == LYXP_NODE_TEXT);
1464 return -1;
1465 } else {
1466 assert((item1->type == LYXP_NODE_TEXT) && (item2->type == LYXP_NODE_ELEM));
1467 return 1;
1468 }
1469 }
1470
Michal Vasko9f96a052020-03-10 09:41:45 +01001471 /* we need meta positions now */
1472 if (item1->type == LYXP_NODE_META) {
1473 meta_pos1 = get_meta_pos((struct lyd_meta *)item1->node);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001474 }
Michal Vasko9f96a052020-03-10 09:41:45 +01001475 if (item2->type == LYXP_NODE_META) {
1476 meta_pos2 = get_meta_pos((struct lyd_meta *)item2->node);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001477 }
1478
Michal Vasko9f96a052020-03-10 09:41:45 +01001479 /* 1st ROOT - 2nd ROOT, 1st ELEM - 2nd ELEM, 1st TEXT - 2nd TEXT, 1st META - =pos= - 2nd META */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001480 /* check for duplicates */
1481 if (item1->node == item2->node) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001482 assert((item1->type == item2->type) && ((item1->type != LYXP_NODE_META) || (meta_pos1 == meta_pos2)));
Michal Vasko03ff5a72019-09-11 13:49:33 +02001483 return 0;
1484 }
1485
Michal Vasko9f96a052020-03-10 09:41:45 +01001486 /* 1st ELEM - 2nd TEXT, 1st ELEM - any pos - 2nd META */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001487 /* elem is always first, 2nd node is after it */
1488 if (item1->type == LYXP_NODE_ELEM) {
1489 assert(item2->type != LYXP_NODE_ELEM);
1490 return -1;
1491 }
1492
Michal Vasko9f96a052020-03-10 09:41:45 +01001493 /* 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 +02001494 /* 2nd is before 1st */
Michal Vasko69730152020-10-09 16:30:07 +02001495 if (((item1->type == LYXP_NODE_TEXT) &&
1496 ((item2->type == LYXP_NODE_ELEM) || (item2->type == LYXP_NODE_META))) ||
1497 ((item1->type == LYXP_NODE_META) && (item2->type == LYXP_NODE_ELEM)) ||
1498 (((item1->type == LYXP_NODE_META) && (item2->type == LYXP_NODE_META)) &&
1499 (meta_pos1 > meta_pos2))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001500 return 1;
1501 }
1502
Michal Vasko9f96a052020-03-10 09:41:45 +01001503 /* 1st META - any pos - 2nd TEXT, 1st META <pos< - 2nd META */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001504 /* 2nd is after 1st */
1505 return -1;
1506}
1507
1508/**
1509 * @brief Set cast for comparisons.
1510 *
1511 * @param[in] trg Target set to cast source into.
1512 * @param[in] src Source set.
1513 * @param[in] type Target set type.
1514 * @param[in] src_idx Source set node index.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001515 * @return LY_ERR
1516 */
1517static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001518set_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 +02001519{
1520 assert(src->type == LYXP_SET_NODE_SET);
1521
1522 set_init(trg, src);
1523
1524 /* insert node into target set */
1525 set_insert_node(trg, src->val.nodes[src_idx].node, src->val.nodes[src_idx].pos, src->val.nodes[src_idx].type, 0);
1526
1527 /* cast target set appropriately */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001528 return lyxp_set_cast(trg, type);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001529}
1530
Michal Vasko4c7763f2020-07-27 17:40:37 +02001531/**
1532 * @brief Set content canonization for comparisons.
1533 *
1534 * @param[in] trg Target set to put the canononized source into.
1535 * @param[in] src Source set.
1536 * @param[in] xp_node Source XPath node/meta to use for canonization.
1537 * @return LY_ERR
1538 */
1539static LY_ERR
1540set_comp_canonize(struct lyxp_set *trg, const struct lyxp_set *src, const struct lyxp_set_node *xp_node)
1541{
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001542 const struct lysc_type *type = NULL;
Michal Vasko4c7763f2020-07-27 17:40:37 +02001543 struct lyd_value val;
1544 struct ly_err_item *err = NULL;
1545 char *str, *ptr;
Michal Vasko4c7763f2020-07-27 17:40:37 +02001546 LY_ERR rc;
1547
1548 /* is there anything to canonize even? */
1549 if ((src->type == LYXP_SET_NUMBER) || (src->type == LYXP_SET_STRING)) {
1550 /* do we have a type to use for canonization? */
1551 if ((xp_node->type == LYXP_NODE_ELEM) && (xp_node->node->schema->nodetype & LYD_NODE_TERM)) {
1552 type = ((struct lyd_node_term *)xp_node->node)->value.realtype;
1553 } else if (xp_node->type == LYXP_NODE_META) {
1554 type = ((struct lyd_meta *)xp_node->node)->value.realtype;
1555 }
1556 }
1557 if (!type) {
1558 goto fill;
1559 }
1560
1561 if (src->type == LYXP_SET_NUMBER) {
1562 /* canonize number */
1563 if (asprintf(&str, "%Lf", src->val.num) == -1) {
1564 LOGMEM(src->ctx);
1565 return LY_EMEM;
1566 }
1567 } else {
1568 /* canonize string */
1569 str = strdup(src->val.str);
1570 }
1571
1572 /* ignore errors, the value may not satisfy schema constraints */
Radek Krejci0b013302021-03-29 15:22:32 +02001573 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 +01001574 LYD_HINT_DATA, xp_node->node->schema, &val, NULL, &err);
Michal Vasko4c7763f2020-07-27 17:40:37 +02001575 ly_err_free(err);
1576 if (rc) {
1577 /* invalid value */
Radek IÅ¡a48460222021-03-02 15:18:32 +01001578 /* function store automaticaly dealloc value when fail */
Michal Vasko4c7763f2020-07-27 17:40:37 +02001579 goto fill;
1580 }
1581
Michal Vasko4c7763f2020-07-27 17:40:37 +02001582 /* use the canonized value */
1583 set_init(trg, src);
1584 trg->type = src->type;
1585 if (src->type == LYXP_SET_NUMBER) {
Michal Vasko0fdb0d92020-11-06 17:25:50 +01001586 trg->val.num = strtold(val.canonical, &ptr);
Michal Vasko4c7763f2020-07-27 17:40:37 +02001587 LY_CHECK_ERR_RET(ptr[0], LOGINT(src->ctx), LY_EINT);
1588 } else {
Michal Vasko0fdb0d92020-11-06 17:25:50 +01001589 trg->val.str = strdup(val.canonical);
Michal Vasko4c7763f2020-07-27 17:40:37 +02001590 }
1591 type->plugin->free(src->ctx, &val);
1592 return LY_SUCCESS;
1593
1594fill:
1595 /* no canonization needed/possible */
1596 set_fill_set(trg, src);
1597 return LY_SUCCESS;
1598}
1599
Michal Vasko03ff5a72019-09-11 13:49:33 +02001600#ifndef NDEBUG
1601
1602/**
1603 * @brief Bubble sort @p set into XPath document order.
1604 * Context position aware. Unused in the 'Release' build target.
1605 *
1606 * @param[in] set Set to sort.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001607 * @return How many times the whole set was traversed - 1 (if set was sorted, returns 0).
1608 */
1609static int
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001610set_sort(struct lyxp_set *set)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001611{
1612 uint32_t i, j;
Radek Krejci1deb5be2020-08-26 16:43:36 +02001613 int ret = 0, cmp;
Radek Krejci857189e2020-09-01 13:26:36 +02001614 ly_bool inverted, change;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001615 const struct lyd_node *root;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001616 struct lyxp_set_node item;
1617 struct lyxp_set_hash_node hnode;
1618 uint64_t hash;
1619
Michal Vasko3cf8fbf2020-05-27 15:21:21 +02001620 if ((set->type != LYXP_SET_NODE_SET) || (set->used < 2)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001621 return 0;
1622 }
1623
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001624 /* find first top-level node to be used as anchor for positions */
Michal Vasko9e685082021-01-29 14:49:09 +01001625 for (root = set->cur_node; root->parent; root = lyd_parent(root)) {}
Michal Vaskod989ba02020-08-24 10:59:24 +02001626 for ( ; root->prev->next; root = root->prev) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02001627
1628 /* fill positions */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001629 if (set_assign_pos(set, root, set->root_type)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001630 return -1;
1631 }
1632
1633 LOGDBG(LY_LDGXPATH, "SORT BEGIN");
1634 print_set_debug(set);
1635
1636 for (i = 0; i < set->used; ++i) {
1637 inverted = 0;
1638 change = 0;
1639
1640 for (j = 1; j < set->used - i; ++j) {
1641 /* compare node positions */
1642 if (inverted) {
1643 cmp = set_sort_compare(&set->val.nodes[j], &set->val.nodes[j - 1]);
1644 } else {
1645 cmp = set_sort_compare(&set->val.nodes[j - 1], &set->val.nodes[j]);
1646 }
1647
1648 /* swap if needed */
1649 if ((inverted && (cmp < 0)) || (!inverted && (cmp > 0))) {
1650 change = 1;
1651
1652 item = set->val.nodes[j - 1];
1653 set->val.nodes[j - 1] = set->val.nodes[j];
1654 set->val.nodes[j] = item;
1655 } else {
1656 /* whether node_pos1 should be smaller than node_pos2 or the other way around */
1657 inverted = !inverted;
1658 }
1659 }
1660
1661 ++ret;
1662
1663 if (!change) {
1664 break;
1665 }
1666 }
1667
1668 LOGDBG(LY_LDGXPATH, "SORT END %d", ret);
1669 print_set_debug(set);
1670
1671 /* check node hashes */
1672 if (set->used >= LYD_HT_MIN_ITEMS) {
1673 assert(set->ht);
1674 for (i = 0; i < set->used; ++i) {
1675 hnode.node = set->val.nodes[i].node;
1676 hnode.type = set->val.nodes[i].type;
1677
1678 hash = dict_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node);
1679 hash = dict_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type);
1680 hash = dict_hash_multi(hash, NULL, 0);
1681
1682 assert(!lyht_find(set->ht, &hnode, hash, NULL));
1683 }
1684 }
1685
1686 return ret - 1;
1687}
1688
1689/**
1690 * @brief Remove duplicate entries in a sorted node set.
1691 *
1692 * @param[in] set Sorted set to check.
1693 * @return LY_ERR (LY_EEXIST if some duplicates are found)
1694 */
1695static LY_ERR
1696set_sorted_dup_node_clean(struct lyxp_set *set)
1697{
1698 uint32_t i = 0;
1699 LY_ERR ret = LY_SUCCESS;
1700
1701 if (set->used > 1) {
1702 while (i < set->used - 1) {
Michal Vasko69730152020-10-09 16:30:07 +02001703 if ((set->val.nodes[i].node == set->val.nodes[i + 1].node) &&
1704 (set->val.nodes[i].type == set->val.nodes[i + 1].type)) {
Michal Vasko2caefc12019-11-14 16:07:56 +01001705 set_remove_node_none(set, i + 1);
Michal Vasko57eab132019-09-24 11:46:26 +02001706 ret = LY_EEXIST;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001707 }
Michal Vasko57eab132019-09-24 11:46:26 +02001708 ++i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001709 }
1710 }
1711
Michal Vasko2caefc12019-11-14 16:07:56 +01001712 set_remove_nodes_none(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001713 return ret;
1714}
1715
1716#endif
1717
1718/**
1719 * @brief Merge 2 sorted sets into one.
1720 *
1721 * @param[in,out] trg Set to merge into. Duplicates are removed.
1722 * @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 +02001723 * @return LY_ERR
1724 */
1725static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001726set_sorted_merge(struct lyxp_set *trg, struct lyxp_set *src)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001727{
1728 uint32_t i, j, k, count, dup_count;
1729 int cmp;
1730 const struct lyd_node *root;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001731
Michal Vaskod3678892020-05-21 10:06:58 +02001732 if ((trg->type != LYXP_SET_NODE_SET) || (src->type != LYXP_SET_NODE_SET)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001733 return LY_EINVAL;
1734 }
1735
Michal Vaskod3678892020-05-21 10:06:58 +02001736 if (!src->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001737 return LY_SUCCESS;
Michal Vaskod3678892020-05-21 10:06:58 +02001738 } else if (!trg->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001739 set_fill_set(trg, src);
Michal Vaskod3678892020-05-21 10:06:58 +02001740 lyxp_set_free_content(src);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001741 return LY_SUCCESS;
1742 }
1743
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001744 /* find first top-level node to be used as anchor for positions */
Michal Vasko9e685082021-01-29 14:49:09 +01001745 for (root = trg->cur_node; root->parent; root = lyd_parent(root)) {}
Michal Vaskod989ba02020-08-24 10:59:24 +02001746 for ( ; root->prev->next; root = root->prev) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02001747
1748 /* fill positions */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001749 if (set_assign_pos(trg, root, trg->root_type) || set_assign_pos(src, root, src->root_type)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001750 return LY_EINT;
1751 }
1752
1753#ifndef NDEBUG
1754 LOGDBG(LY_LDGXPATH, "MERGE target");
1755 print_set_debug(trg);
1756 LOGDBG(LY_LDGXPATH, "MERGE source");
1757 print_set_debug(src);
1758#endif
1759
1760 /* make memory for the merge (duplicates are not detected yet, so space
1761 * will likely be wasted on them, too bad) */
1762 if (trg->size - trg->used < src->used) {
1763 trg->size = trg->used + src->used;
1764
1765 trg->val.nodes = ly_realloc(trg->val.nodes, trg->size * sizeof *trg->val.nodes);
1766 LY_CHECK_ERR_RET(!trg->val.nodes, LOGMEM(src->ctx), LY_EMEM);
1767 }
1768
1769 i = 0;
1770 j = 0;
1771 count = 0;
1772 dup_count = 0;
1773 do {
1774 cmp = set_sort_compare(&src->val.nodes[i], &trg->val.nodes[j]);
1775 if (!cmp) {
1776 if (!count) {
1777 /* duplicate, just skip it */
1778 ++i;
1779 ++j;
1780 } else {
1781 /* we are copying something already, so let's copy the duplicate too,
1782 * we are hoping that afterwards there are some more nodes to
1783 * copy and this way we can copy them all together */
1784 ++count;
1785 ++dup_count;
1786 ++i;
1787 ++j;
1788 }
1789 } else if (cmp < 0) {
1790 /* inserting src node into trg, just remember it for now */
1791 ++count;
1792 ++i;
1793
1794 /* insert the hash now */
1795 set_insert_node_hash(trg, src->val.nodes[i - 1].node, src->val.nodes[i - 1].type);
1796 } else if (count) {
1797copy_nodes:
1798 /* time to actually copy the nodes, we have found the largest block of nodes */
1799 memmove(&trg->val.nodes[j + (count - dup_count)],
1800 &trg->val.nodes[j],
1801 (trg->used - j) * sizeof *trg->val.nodes);
1802 memcpy(&trg->val.nodes[j - dup_count], &src->val.nodes[i - count], count * sizeof *src->val.nodes);
1803
1804 trg->used += count - dup_count;
1805 /* do not change i, except the copying above, we are basically doing exactly what is in the else branch below */
1806 j += count - dup_count;
1807
1808 count = 0;
1809 dup_count = 0;
1810 } else {
1811 ++j;
1812 }
1813 } while ((i < src->used) && (j < trg->used));
1814
1815 if ((i < src->used) || count) {
1816 /* insert all the hashes first */
1817 for (k = i; k < src->used; ++k) {
1818 set_insert_node_hash(trg, src->val.nodes[k].node, src->val.nodes[k].type);
1819 }
1820
1821 /* loop ended, but we need to copy something at trg end */
1822 count += src->used - i;
1823 i = src->used;
1824 goto copy_nodes;
1825 }
1826
1827 /* we are inserting hashes before the actual node insert, which causes
1828 * situations when there were initially not enough items for a hash table,
1829 * but even after some were inserted, hash table was not created (during
1830 * insertion the number of items is not updated yet) */
1831 if (!trg->ht && (trg->used >= LYD_HT_MIN_ITEMS)) {
1832 set_insert_node_hash(trg, NULL, 0);
1833 }
1834
1835#ifndef NDEBUG
1836 LOGDBG(LY_LDGXPATH, "MERGE result");
1837 print_set_debug(trg);
1838#endif
1839
Michal Vaskod3678892020-05-21 10:06:58 +02001840 lyxp_set_free_content(src);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001841 return LY_SUCCESS;
1842}
1843
1844/*
1845 * (re)parse functions
1846 *
1847 * Parse functions parse the expression into
1848 * tokens (syntactic analysis).
1849 *
1850 * Reparse functions perform semantic analysis
1851 * (do not save the result, just a check) of
1852 * the expression and fill repeat indices.
1853 */
1854
Michal Vasko14676352020-05-29 11:35:55 +02001855LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02001856lyxp_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 +02001857{
Michal Vasko004d3152020-06-11 19:59:22 +02001858 if (exp->used == tok_idx) {
Michal Vasko14676352020-05-29 11:35:55 +02001859 if (ctx) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001860 LOGVAL(ctx, LY_VCODE_XP_EOF);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001861 }
Michal Vasko14676352020-05-29 11:35:55 +02001862 return LY_EINCOMPLETE;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001863 }
1864
Michal Vasko004d3152020-06-11 19:59:22 +02001865 if (want_tok && (exp->tokens[tok_idx] != want_tok)) {
Michal Vasko14676352020-05-29 11:35:55 +02001866 if (ctx) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001867 LOGVAL(ctx, LY_VCODE_XP_INTOK2, lyxp_print_token(exp->tokens[tok_idx]),
Michal Vasko0b468e62020-10-19 09:33:04 +02001868 &exp->expr[exp->tok_pos[tok_idx]], lyxp_print_token(want_tok));
Michal Vasko03ff5a72019-09-11 13:49:33 +02001869 }
Michal Vasko14676352020-05-29 11:35:55 +02001870 return LY_ENOT;
1871 }
1872
1873 return LY_SUCCESS;
1874}
1875
Michal Vasko004d3152020-06-11 19:59:22 +02001876LY_ERR
1877lyxp_next_token(const struct ly_ctx *ctx, const struct lyxp_expr *exp, uint16_t *tok_idx, enum lyxp_token want_tok)
1878{
1879 LY_CHECK_RET(lyxp_check_token(ctx, exp, *tok_idx, want_tok));
1880
1881 /* skip the token */
1882 ++(*tok_idx);
1883
1884 return LY_SUCCESS;
1885}
1886
Michal Vasko14676352020-05-29 11:35:55 +02001887/* just like lyxp_check_token() but tests for 2 tokens */
1888static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02001889exp_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 +02001890 enum lyxp_token want_tok2)
Michal Vasko14676352020-05-29 11:35:55 +02001891{
Michal Vasko004d3152020-06-11 19:59:22 +02001892 if (exp->used == tok_idx) {
Michal Vasko14676352020-05-29 11:35:55 +02001893 if (ctx) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001894 LOGVAL(ctx, LY_VCODE_XP_EOF);
Michal Vasko14676352020-05-29 11:35:55 +02001895 }
1896 return LY_EINCOMPLETE;
1897 }
1898
Michal Vasko004d3152020-06-11 19:59:22 +02001899 if ((exp->tokens[tok_idx] != want_tok1) && (exp->tokens[tok_idx] != want_tok2)) {
Michal Vasko14676352020-05-29 11:35:55 +02001900 if (ctx) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001901 LOGVAL(ctx, LY_VCODE_XP_INTOK, lyxp_print_token(exp->tokens[tok_idx]),
Michal Vasko0b468e62020-10-19 09:33:04 +02001902 &exp->expr[exp->tok_pos[tok_idx]]);
Michal Vasko14676352020-05-29 11:35:55 +02001903 }
1904 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001905 }
1906
1907 return LY_SUCCESS;
1908}
1909
1910/**
1911 * @brief Stack operation push on the repeat array.
1912 *
1913 * @param[in] exp Expression to use.
Michal Vasko004d3152020-06-11 19:59:22 +02001914 * @param[in] tok_idx Position in the expresion \p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001915 * @param[in] repeat_op_idx Index from \p exp of the operator token. This value is pushed.
1916 */
1917static void
Michal Vasko004d3152020-06-11 19:59:22 +02001918exp_repeat_push(struct lyxp_expr *exp, uint16_t tok_idx, uint16_t repeat_op_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001919{
1920 uint16_t i;
1921
Michal Vasko004d3152020-06-11 19:59:22 +02001922 if (exp->repeat[tok_idx]) {
Radek Krejci1e008d22020-08-17 11:37:37 +02001923 for (i = 0; exp->repeat[tok_idx][i]; ++i) {}
Michal Vasko004d3152020-06-11 19:59:22 +02001924 exp->repeat[tok_idx] = realloc(exp->repeat[tok_idx], (i + 2) * sizeof *exp->repeat[tok_idx]);
1925 LY_CHECK_ERR_RET(!exp->repeat[tok_idx], LOGMEM(NULL), );
1926 exp->repeat[tok_idx][i] = repeat_op_idx;
1927 exp->repeat[tok_idx][i + 1] = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001928 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02001929 exp->repeat[tok_idx] = calloc(2, sizeof *exp->repeat[tok_idx]);
1930 LY_CHECK_ERR_RET(!exp->repeat[tok_idx], LOGMEM(NULL), );
1931 exp->repeat[tok_idx][0] = repeat_op_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001932 }
1933}
1934
1935/**
1936 * @brief Reparse Predicate. Logs directly on error.
1937 *
1938 * [7] Predicate ::= '[' Expr ']'
1939 *
1940 * @param[in] ctx Context for logging.
1941 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02001942 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001943 * @return LY_ERR
1944 */
1945static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02001946reparse_predicate(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001947{
1948 LY_ERR rc;
1949
Michal Vasko004d3152020-06-11 19:59:22 +02001950 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_BRACK1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001951 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02001952 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001953
Michal Vasko004d3152020-06-11 19:59:22 +02001954 rc = reparse_or_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001955 LY_CHECK_RET(rc);
1956
Michal Vasko004d3152020-06-11 19:59:22 +02001957 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_BRACK2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001958 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02001959 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001960
1961 return LY_SUCCESS;
1962}
1963
1964/**
1965 * @brief Reparse RelativeLocationPath. Logs directly on error.
1966 *
1967 * [4] RelativeLocationPath ::= Step | RelativeLocationPath '/' Step | RelativeLocationPath '//' Step
1968 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
1969 * [6] NodeTest ::= NameTest | NodeType '(' ')'
1970 *
1971 * @param[in] ctx Context for logging.
1972 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02001973 * @param[in] tok_idx Position in the expression \p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001974 * @return LY_ERR (LY_EINCOMPLETE on forward reference)
1975 */
1976static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02001977reparse_relative_location_path(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001978{
1979 LY_ERR rc;
1980
Michal Vasko004d3152020-06-11 19:59:22 +02001981 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001982 LY_CHECK_RET(rc);
1983
1984 goto step;
1985 do {
1986 /* '/' or '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02001987 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001988
Michal Vasko004d3152020-06-11 19:59:22 +02001989 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001990 LY_CHECK_RET(rc);
1991step:
1992 /* Step */
Michal Vasko004d3152020-06-11 19:59:22 +02001993 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001994 case LYXP_TOKEN_DOT:
Michal Vasko004d3152020-06-11 19:59:22 +02001995 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001996 break;
1997
1998 case LYXP_TOKEN_DDOT:
Michal Vasko004d3152020-06-11 19:59:22 +02001999 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002000 break;
2001
2002 case LYXP_TOKEN_AT:
Michal Vasko004d3152020-06-11 19:59:22 +02002003 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002004
Michal Vasko004d3152020-06-11 19:59:22 +02002005 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002006 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002007 if ((exp->tokens[*tok_idx] != LYXP_TOKEN_NAMETEST) && (exp->tokens[*tok_idx] != LYXP_TOKEN_NODETYPE)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01002008 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 +02002009 return LY_EVALID;
2010 }
Radek Krejci0f969882020-08-21 16:56:47 +02002011 /* fall through */
Michal Vasko03ff5a72019-09-11 13:49:33 +02002012 case LYXP_TOKEN_NAMETEST:
Michal Vasko004d3152020-06-11 19:59:22 +02002013 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002014 goto reparse_predicate;
2015 break;
2016
2017 case LYXP_TOKEN_NODETYPE:
Michal Vasko004d3152020-06-11 19:59:22 +02002018 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002019
2020 /* '(' */
Michal Vasko004d3152020-06-11 19:59:22 +02002021 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002022 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002023 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002024
2025 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02002026 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002027 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002028 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002029
2030reparse_predicate:
2031 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02002032 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
2033 rc = reparse_predicate(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002034 LY_CHECK_RET(rc);
2035 }
2036 break;
2037 default:
Radek Krejci2efc45b2020-12-22 16:25:44 +01002038 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 +02002039 return LY_EVALID;
2040 }
Michal Vasko004d3152020-06-11 19:59:22 +02002041 } while (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH));
Michal Vasko03ff5a72019-09-11 13:49:33 +02002042
2043 return LY_SUCCESS;
2044}
2045
2046/**
2047 * @brief Reparse AbsoluteLocationPath. Logs directly on error.
2048 *
2049 * [3] AbsoluteLocationPath ::= '/' RelativeLocationPath? | '//' RelativeLocationPath
2050 *
2051 * @param[in] ctx Context for logging.
2052 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002053 * @param[in] tok_idx Position in the expression \p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002054 * @return LY_ERR
2055 */
2056static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02002057reparse_absolute_location_path(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002058{
2059 LY_ERR rc;
2060
Michal Vasko004d3152020-06-11 19:59:22 +02002061 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 +02002062
2063 /* '/' RelativeLocationPath? */
Michal Vasko004d3152020-06-11 19:59:22 +02002064 if (exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_PATH) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002065 /* '/' */
Michal Vasko004d3152020-06-11 19:59:22 +02002066 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002067
Michal Vasko004d3152020-06-11 19:59:22 +02002068 if (lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_NONE)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002069 return LY_SUCCESS;
2070 }
Michal Vasko004d3152020-06-11 19:59:22 +02002071 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002072 case LYXP_TOKEN_DOT:
2073 case LYXP_TOKEN_DDOT:
2074 case LYXP_TOKEN_AT:
2075 case LYXP_TOKEN_NAMETEST:
2076 case LYXP_TOKEN_NODETYPE:
Michal Vasko004d3152020-06-11 19:59:22 +02002077 rc = reparse_relative_location_path(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002078 LY_CHECK_RET(rc);
Radek Krejci0f969882020-08-21 16:56:47 +02002079 /* fall through */
Michal Vasko03ff5a72019-09-11 13:49:33 +02002080 default:
2081 break;
2082 }
2083
Michal Vasko03ff5a72019-09-11 13:49:33 +02002084 } else {
Radek Krejcif6a11002020-08-21 13:29:07 +02002085 /* '//' RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02002086 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002087
Michal Vasko004d3152020-06-11 19:59:22 +02002088 rc = reparse_relative_location_path(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002089 LY_CHECK_RET(rc);
2090 }
2091
2092 return LY_SUCCESS;
2093}
2094
2095/**
2096 * @brief Reparse FunctionCall. Logs directly on error.
2097 *
2098 * [9] FunctionCall ::= FunctionName '(' ( Expr ( ',' Expr )* )? ')'
2099 *
2100 * @param[in] ctx Context for logging.
2101 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002102 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002103 * @return LY_ERR
2104 */
2105static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02002106reparse_function_call(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002107{
Radek Krejci1deb5be2020-08-26 16:43:36 +02002108 int8_t min_arg_count = -1;
2109 uint32_t arg_count, max_arg_count = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002110 uint16_t func_tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002111 LY_ERR rc;
2112
Michal Vasko004d3152020-06-11 19:59:22 +02002113 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_FUNCNAME);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002114 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002115 func_tok_idx = *tok_idx;
2116 switch (exp->tok_len[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002117 case 3:
Michal Vasko004d3152020-06-11 19:59:22 +02002118 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "not", 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002119 min_arg_count = 1;
2120 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002121 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "sum", 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002122 min_arg_count = 1;
2123 max_arg_count = 1;
2124 }
2125 break;
2126 case 4:
Michal Vasko004d3152020-06-11 19:59:22 +02002127 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "lang", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002128 min_arg_count = 1;
2129 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002130 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "last", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002131 min_arg_count = 0;
2132 max_arg_count = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002133 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "name", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002134 min_arg_count = 0;
2135 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002136 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "true", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002137 min_arg_count = 0;
2138 max_arg_count = 0;
2139 }
2140 break;
2141 case 5:
Michal Vasko004d3152020-06-11 19:59:22 +02002142 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "count", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002143 min_arg_count = 1;
2144 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002145 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "false", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002146 min_arg_count = 0;
2147 max_arg_count = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002148 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "floor", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002149 min_arg_count = 1;
2150 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002151 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "round", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002152 min_arg_count = 1;
2153 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002154 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "deref", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002155 min_arg_count = 1;
2156 max_arg_count = 1;
2157 }
2158 break;
2159 case 6:
Michal Vasko004d3152020-06-11 19:59:22 +02002160 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "concat", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002161 min_arg_count = 2;
Radek Krejci1deb5be2020-08-26 16:43:36 +02002162 max_arg_count = UINT32_MAX;
Michal Vasko004d3152020-06-11 19:59:22 +02002163 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "number", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002164 min_arg_count = 0;
2165 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002166 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002167 min_arg_count = 0;
2168 max_arg_count = 1;
2169 }
2170 break;
2171 case 7:
Michal Vasko004d3152020-06-11 19:59:22 +02002172 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "boolean", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002173 min_arg_count = 1;
2174 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002175 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "ceiling", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002176 min_arg_count = 1;
2177 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002178 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "current", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002179 min_arg_count = 0;
2180 max_arg_count = 0;
2181 }
2182 break;
2183 case 8:
Michal Vasko004d3152020-06-11 19:59:22 +02002184 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "contains", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002185 min_arg_count = 2;
2186 max_arg_count = 2;
Michal Vasko004d3152020-06-11 19:59:22 +02002187 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "position", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002188 min_arg_count = 0;
2189 max_arg_count = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002190 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "re-match", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002191 min_arg_count = 2;
2192 max_arg_count = 2;
2193 }
2194 break;
2195 case 9:
Michal Vasko004d3152020-06-11 19:59:22 +02002196 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring", 9)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002197 min_arg_count = 2;
2198 max_arg_count = 3;
Michal Vasko004d3152020-06-11 19:59:22 +02002199 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "translate", 9)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002200 min_arg_count = 3;
2201 max_arg_count = 3;
2202 }
2203 break;
2204 case 10:
Michal Vasko004d3152020-06-11 19:59:22 +02002205 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "local-name", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002206 min_arg_count = 0;
2207 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002208 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "enum-value", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002209 min_arg_count = 1;
2210 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002211 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "bit-is-set", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002212 min_arg_count = 2;
2213 max_arg_count = 2;
2214 }
2215 break;
2216 case 11:
Michal Vasko004d3152020-06-11 19:59:22 +02002217 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "starts-with", 11)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002218 min_arg_count = 2;
2219 max_arg_count = 2;
2220 }
2221 break;
2222 case 12:
Michal Vasko004d3152020-06-11 19:59:22 +02002223 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from", 12)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002224 min_arg_count = 2;
2225 max_arg_count = 2;
2226 }
2227 break;
2228 case 13:
Michal Vasko004d3152020-06-11 19:59:22 +02002229 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "namespace-uri", 13)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002230 min_arg_count = 0;
2231 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002232 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string-length", 13)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002233 min_arg_count = 0;
2234 max_arg_count = 1;
2235 }
2236 break;
2237 case 15:
Michal Vasko004d3152020-06-11 19:59:22 +02002238 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "normalize-space", 15)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002239 min_arg_count = 0;
2240 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002241 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-after", 15)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002242 min_arg_count = 2;
2243 max_arg_count = 2;
2244 }
2245 break;
2246 case 16:
Michal Vasko004d3152020-06-11 19:59:22 +02002247 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-before", 16)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002248 min_arg_count = 2;
2249 max_arg_count = 2;
2250 }
2251 break;
2252 case 20:
Michal Vasko004d3152020-06-11 19:59:22 +02002253 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from-or-self", 20)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002254 min_arg_count = 2;
2255 max_arg_count = 2;
2256 }
2257 break;
2258 }
2259 if (min_arg_count == -1) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01002260 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 +02002261 return LY_EINVAL;
2262 }
Michal Vasko004d3152020-06-11 19:59:22 +02002263 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002264
2265 /* '(' */
Michal Vasko004d3152020-06-11 19:59:22 +02002266 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002267 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002268 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002269
2270 /* ( Expr ( ',' Expr )* )? */
2271 arg_count = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002272 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002273 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002274 if (exp->tokens[*tok_idx] != LYXP_TOKEN_PAR2) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002275 ++arg_count;
Michal Vasko004d3152020-06-11 19:59:22 +02002276 rc = reparse_or_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002277 LY_CHECK_RET(rc);
2278 }
Michal Vasko004d3152020-06-11 19:59:22 +02002279 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_COMMA)) {
2280 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002281
2282 ++arg_count;
Michal Vasko004d3152020-06-11 19:59:22 +02002283 rc = reparse_or_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002284 LY_CHECK_RET(rc);
2285 }
2286
2287 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02002288 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002289 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002290 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002291
Radek Krejci857189e2020-09-01 13:26:36 +02002292 if ((arg_count < (uint32_t)min_arg_count) || (arg_count > max_arg_count)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01002293 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 +02002294 return LY_EVALID;
2295 }
2296
2297 return LY_SUCCESS;
2298}
2299
2300/**
2301 * @brief Reparse PathExpr. Logs directly on error.
2302 *
2303 * [10] PathExpr ::= LocationPath | PrimaryExpr Predicate*
2304 * | PrimaryExpr Predicate* '/' RelativeLocationPath
2305 * | PrimaryExpr Predicate* '//' RelativeLocationPath
2306 * [2] LocationPath ::= RelativeLocationPath | AbsoluteLocationPath
2307 * [8] PrimaryExpr ::= '(' Expr ')' | Literal | Number | FunctionCall
2308 *
2309 * @param[in] ctx Context for logging.
2310 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002311 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002312 * @return LY_ERR
2313 */
2314static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02002315reparse_path_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002316{
2317 LY_ERR rc;
2318
Michal Vasko004d3152020-06-11 19:59:22 +02002319 if (lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE)) {
Michal Vasko14676352020-05-29 11:35:55 +02002320 return LY_EVALID;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002321 }
2322
Michal Vasko004d3152020-06-11 19:59:22 +02002323 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002324 case LYXP_TOKEN_PAR1:
2325 /* '(' Expr ')' Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02002326 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002327
Michal Vasko004d3152020-06-11 19:59:22 +02002328 rc = reparse_or_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002329 LY_CHECK_RET(rc);
2330
Michal Vasko004d3152020-06-11 19:59:22 +02002331 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002332 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002333 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002334 goto predicate;
2335 break;
2336 case LYXP_TOKEN_DOT:
2337 case LYXP_TOKEN_DDOT:
2338 case LYXP_TOKEN_AT:
2339 case LYXP_TOKEN_NAMETEST:
2340 case LYXP_TOKEN_NODETYPE:
2341 /* RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02002342 rc = reparse_relative_location_path(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002343 LY_CHECK_RET(rc);
2344 break;
2345 case LYXP_TOKEN_FUNCNAME:
2346 /* FunctionCall */
Michal Vasko004d3152020-06-11 19:59:22 +02002347 rc = reparse_function_call(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002348 LY_CHECK_RET(rc);
2349 goto predicate;
2350 break;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002351 case LYXP_TOKEN_OPER_PATH:
2352 case LYXP_TOKEN_OPER_RPATH:
Michal Vasko03ff5a72019-09-11 13:49:33 +02002353 /* AbsoluteLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02002354 rc = reparse_absolute_location_path(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002355 LY_CHECK_RET(rc);
2356 break;
2357 case LYXP_TOKEN_LITERAL:
2358 /* Literal */
Michal Vasko004d3152020-06-11 19:59:22 +02002359 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002360 goto predicate;
2361 break;
2362 case LYXP_TOKEN_NUMBER:
2363 /* Number */
Michal Vasko004d3152020-06-11 19:59:22 +02002364 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002365 goto predicate;
2366 break;
2367 default:
Radek Krejci2efc45b2020-12-22 16:25:44 +01002368 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 +02002369 return LY_EVALID;
2370 }
2371
2372 return LY_SUCCESS;
2373
2374predicate:
2375 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02002376 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
2377 rc = reparse_predicate(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002378 LY_CHECK_RET(rc);
2379 }
2380
2381 /* ('/' or '//') RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02002382 if (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002383
2384 /* '/' or '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02002385 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002386
Michal Vasko004d3152020-06-11 19:59:22 +02002387 rc = reparse_relative_location_path(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002388 LY_CHECK_RET(rc);
2389 }
2390
2391 return LY_SUCCESS;
2392}
2393
2394/**
2395 * @brief Reparse UnaryExpr. Logs directly on error.
2396 *
2397 * [17] UnaryExpr ::= UnionExpr | '-' UnaryExpr
2398 * [18] UnionExpr ::= PathExpr | UnionExpr '|' PathExpr
2399 *
2400 * @param[in] ctx Context for logging.
2401 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002402 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002403 * @return LY_ERR
2404 */
2405static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02002406reparse_unary_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002407{
2408 uint16_t prev_exp;
2409 LY_ERR rc;
2410
2411 /* ('-')* */
Michal Vasko004d3152020-06-11 19:59:22 +02002412 prev_exp = *tok_idx;
Michal Vasko69730152020-10-09 16:30:07 +02002413 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_MATH) &&
2414 (exp->expr[exp->tok_pos[*tok_idx]] == '-')) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002415 exp_repeat_push(exp, prev_exp, LYXP_EXPR_UNARY);
Michal Vasko004d3152020-06-11 19:59:22 +02002416 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002417 }
2418
2419 /* PathExpr */
Michal Vasko004d3152020-06-11 19:59:22 +02002420 prev_exp = *tok_idx;
2421 rc = reparse_path_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002422 LY_CHECK_RET(rc);
2423
2424 /* ('|' PathExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002425 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_UNI)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002426 exp_repeat_push(exp, prev_exp, LYXP_EXPR_UNION);
Michal Vasko004d3152020-06-11 19:59:22 +02002427 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002428
Michal Vasko004d3152020-06-11 19:59:22 +02002429 rc = reparse_path_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002430 LY_CHECK_RET(rc);
2431 }
2432
2433 return LY_SUCCESS;
2434}
2435
2436/**
2437 * @brief Reparse AdditiveExpr. Logs directly on error.
2438 *
2439 * [15] AdditiveExpr ::= MultiplicativeExpr
2440 * | AdditiveExpr '+' MultiplicativeExpr
2441 * | AdditiveExpr '-' MultiplicativeExpr
2442 * [16] MultiplicativeExpr ::= UnaryExpr
2443 * | MultiplicativeExpr '*' UnaryExpr
2444 * | MultiplicativeExpr 'div' UnaryExpr
2445 * | MultiplicativeExpr 'mod' UnaryExpr
2446 *
2447 * @param[in] ctx Context for logging.
2448 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002449 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002450 * @return LY_ERR
2451 */
2452static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02002453reparse_additive_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002454{
2455 uint16_t prev_add_exp, prev_mul_exp;
2456 LY_ERR rc;
2457
Michal Vasko004d3152020-06-11 19:59:22 +02002458 prev_add_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002459 goto reparse_multiplicative_expr;
2460
2461 /* ('+' / '-' MultiplicativeExpr)* */
Michal Vasko69730152020-10-09 16:30:07 +02002462 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_MATH) &&
2463 ((exp->expr[exp->tok_pos[*tok_idx]] == '+') || (exp->expr[exp->tok_pos[*tok_idx]] == '-'))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002464 exp_repeat_push(exp, prev_add_exp, LYXP_EXPR_ADDITIVE);
Michal Vasko004d3152020-06-11 19:59:22 +02002465 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002466
2467reparse_multiplicative_expr:
2468 /* UnaryExpr */
Michal Vasko004d3152020-06-11 19:59:22 +02002469 prev_mul_exp = *tok_idx;
2470 rc = reparse_unary_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002471 LY_CHECK_RET(rc);
2472
2473 /* ('*' / 'div' / 'mod' UnaryExpr)* */
Michal Vasko69730152020-10-09 16:30:07 +02002474 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_MATH) &&
2475 ((exp->expr[exp->tok_pos[*tok_idx]] == '*') || (exp->tok_len[*tok_idx] == 3))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002476 exp_repeat_push(exp, prev_mul_exp, LYXP_EXPR_MULTIPLICATIVE);
Michal Vasko004d3152020-06-11 19:59:22 +02002477 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002478
Michal Vasko004d3152020-06-11 19:59:22 +02002479 rc = reparse_unary_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002480 LY_CHECK_RET(rc);
2481 }
2482 }
2483
2484 return LY_SUCCESS;
2485}
2486
2487/**
2488 * @brief Reparse EqualityExpr. Logs directly on error.
2489 *
2490 * [13] EqualityExpr ::= RelationalExpr | EqualityExpr '=' RelationalExpr
2491 * | EqualityExpr '!=' RelationalExpr
2492 * [14] RelationalExpr ::= AdditiveExpr
2493 * | RelationalExpr '<' AdditiveExpr
2494 * | RelationalExpr '>' AdditiveExpr
2495 * | RelationalExpr '<=' AdditiveExpr
2496 * | RelationalExpr '>=' AdditiveExpr
2497 *
2498 * @param[in] ctx Context for logging.
2499 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002500 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002501 * @return LY_ERR
2502 */
2503static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02002504reparse_equality_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002505{
2506 uint16_t prev_eq_exp, prev_rel_exp;
2507 LY_ERR rc;
2508
Michal Vasko004d3152020-06-11 19:59:22 +02002509 prev_eq_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002510 goto reparse_additive_expr;
2511
2512 /* ('=' / '!=' RelationalExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002513 while (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_EQUAL, LYXP_TOKEN_OPER_NEQUAL)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002514 exp_repeat_push(exp, prev_eq_exp, LYXP_EXPR_EQUALITY);
Michal Vasko004d3152020-06-11 19:59:22 +02002515 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002516
2517reparse_additive_expr:
2518 /* AdditiveExpr */
Michal Vasko004d3152020-06-11 19:59:22 +02002519 prev_rel_exp = *tok_idx;
2520 rc = reparse_additive_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002521 LY_CHECK_RET(rc);
2522
2523 /* ('<' / '>' / '<=' / '>=' AdditiveExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002524 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_COMP)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002525 exp_repeat_push(exp, prev_rel_exp, LYXP_EXPR_RELATIONAL);
Michal Vasko004d3152020-06-11 19:59:22 +02002526 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002527
Michal Vasko004d3152020-06-11 19:59:22 +02002528 rc = reparse_additive_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002529 LY_CHECK_RET(rc);
2530 }
2531 }
2532
2533 return LY_SUCCESS;
2534}
2535
2536/**
2537 * @brief Reparse OrExpr. Logs directly on error.
2538 *
2539 * [11] OrExpr ::= AndExpr | OrExpr 'or' AndExpr
2540 * [12] AndExpr ::= EqualityExpr | AndExpr 'and' EqualityExpr
2541 *
2542 * @param[in] ctx Context for logging.
2543 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002544 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002545 * @return LY_ERR
2546 */
2547static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02002548reparse_or_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002549{
2550 uint16_t prev_or_exp, prev_and_exp;
2551 LY_ERR rc;
2552
Michal Vasko004d3152020-06-11 19:59:22 +02002553 prev_or_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002554 goto reparse_equality_expr;
2555
2556 /* ('or' AndExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002557 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 +02002558 exp_repeat_push(exp, prev_or_exp, LYXP_EXPR_OR);
Michal Vasko004d3152020-06-11 19:59:22 +02002559 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002560
2561reparse_equality_expr:
2562 /* EqualityExpr */
Michal Vasko004d3152020-06-11 19:59:22 +02002563 prev_and_exp = *tok_idx;
2564 rc = reparse_equality_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002565 LY_CHECK_RET(rc);
2566
2567 /* ('and' EqualityExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002568 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 +02002569 exp_repeat_push(exp, prev_and_exp, LYXP_EXPR_AND);
Michal Vasko004d3152020-06-11 19:59:22 +02002570 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002571
Michal Vasko004d3152020-06-11 19:59:22 +02002572 rc = reparse_equality_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002573 LY_CHECK_RET(rc);
2574 }
2575 }
2576
2577 return LY_SUCCESS;
2578}
Radek Krejcib1646a92018-11-02 16:08:26 +01002579
2580/**
2581 * @brief Parse NCName.
2582 *
2583 * @param[in] ncname Name to parse.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002584 * @return Length of @p ncname valid bytes.
Radek Krejcib1646a92018-11-02 16:08:26 +01002585 */
Radek Krejcid4270262019-01-07 15:07:25 +01002586static long int
Radek Krejcib1646a92018-11-02 16:08:26 +01002587parse_ncname(const char *ncname)
2588{
Radek Krejci1deb5be2020-08-26 16:43:36 +02002589 uint32_t uc;
Radek Krejcid4270262019-01-07 15:07:25 +01002590 size_t size;
2591 long int len = 0;
Radek Krejcib1646a92018-11-02 16:08:26 +01002592
2593 LY_CHECK_RET(ly_getutf8(&ncname, &uc, &size), 0);
2594 if (!is_xmlqnamestartchar(uc) || (uc == ':')) {
2595 return len;
2596 }
2597
2598 do {
2599 len += size;
Radek Krejci9a564c92019-01-07 14:53:57 +01002600 if (!*ncname) {
2601 break;
2602 }
Radek Krejcid4270262019-01-07 15:07:25 +01002603 LY_CHECK_RET(ly_getutf8(&ncname, &uc, &size), -len);
Radek Krejcib1646a92018-11-02 16:08:26 +01002604 } while (is_xmlqnamechar(uc) && (uc != ':'));
2605
2606 return len;
2607}
2608
2609/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02002610 * @brief Add @p token into the expression @p exp.
Radek Krejcib1646a92018-11-02 16:08:26 +01002611 *
Michal Vasko03ff5a72019-09-11 13:49:33 +02002612 * @param[in] ctx Context for logging.
Radek Krejcib1646a92018-11-02 16:08:26 +01002613 * @param[in] exp Expression to use.
2614 * @param[in] token Token to add.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002615 * @param[in] tok_pos Token position in the XPath expression.
Radek Krejcib1646a92018-11-02 16:08:26 +01002616 * @param[in] tok_len Token length in the XPath expression.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002617 * @return LY_ERR
Radek Krejcib1646a92018-11-02 16:08:26 +01002618 */
2619static LY_ERR
Michal Vasko14676352020-05-29 11:35:55 +02002620exp_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 +01002621{
2622 uint32_t prev;
2623
2624 if (exp->used == exp->size) {
2625 prev = exp->size;
2626 exp->size += LYXP_EXPR_SIZE_STEP;
2627 if (prev > exp->size) {
2628 LOGINT(ctx);
2629 return LY_EINT;
2630 }
2631
2632 exp->tokens = ly_realloc(exp->tokens, exp->size * sizeof *exp->tokens);
2633 LY_CHECK_ERR_RET(!exp->tokens, LOGMEM(ctx), LY_EMEM);
2634 exp->tok_pos = ly_realloc(exp->tok_pos, exp->size * sizeof *exp->tok_pos);
2635 LY_CHECK_ERR_RET(!exp->tok_pos, LOGMEM(ctx), LY_EMEM);
2636 exp->tok_len = ly_realloc(exp->tok_len, exp->size * sizeof *exp->tok_len);
2637 LY_CHECK_ERR_RET(!exp->tok_len, LOGMEM(ctx), LY_EMEM);
2638 }
2639
2640 exp->tokens[exp->used] = token;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002641 exp->tok_pos[exp->used] = tok_pos;
Radek Krejcib1646a92018-11-02 16:08:26 +01002642 exp->tok_len[exp->used] = tok_len;
2643 ++exp->used;
2644 return LY_SUCCESS;
2645}
2646
2647void
Michal Vasko14676352020-05-29 11:35:55 +02002648lyxp_expr_free(const struct ly_ctx *ctx, struct lyxp_expr *expr)
Radek Krejcib1646a92018-11-02 16:08:26 +01002649{
2650 uint16_t i;
2651
2652 if (!expr) {
2653 return;
2654 }
2655
2656 lydict_remove(ctx, expr->expr);
2657 free(expr->tokens);
2658 free(expr->tok_pos);
2659 free(expr->tok_len);
2660 if (expr->repeat) {
2661 for (i = 0; i < expr->used; ++i) {
2662 free(expr->repeat[i]);
2663 }
2664 }
2665 free(expr->repeat);
2666 free(expr);
2667}
2668
Radek Krejcif03a9e22020-09-18 20:09:31 +02002669LY_ERR
2670lyxp_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 +01002671{
Radek Krejcif03a9e22020-09-18 20:09:31 +02002672 LY_ERR ret = LY_SUCCESS;
2673 struct lyxp_expr *expr;
Radek Krejcid4270262019-01-07 15:07:25 +01002674 size_t parsed = 0, tok_len;
Radek Krejcib1646a92018-11-02 16:08:26 +01002675 enum lyxp_token tok_type;
Radek Krejci857189e2020-09-01 13:26:36 +02002676 ly_bool prev_function_check = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002677 uint16_t tok_idx = 0;
Radek Krejcib1646a92018-11-02 16:08:26 +01002678
Radek Krejcif03a9e22020-09-18 20:09:31 +02002679 assert(expr_p);
2680
2681 if (!expr_str[0]) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01002682 LOGVAL(ctx, LY_VCODE_XP_EOF);
Radek Krejcif03a9e22020-09-18 20:09:31 +02002683 return LY_EVALID;
Michal Vasko004d3152020-06-11 19:59:22 +02002684 }
2685
2686 if (!expr_len) {
Radek Krejcif03a9e22020-09-18 20:09:31 +02002687 expr_len = strlen(expr_str);
Michal Vasko004d3152020-06-11 19:59:22 +02002688 }
2689 if (expr_len > UINT16_MAX) {
Michal Vasko623ac7b2021-04-09 12:44:23 +02002690 LOGVAL(ctx, LYVE_XPATH, "XPath expression cannot be longer than %u characters.", UINT16_MAX);
Radek Krejcif03a9e22020-09-18 20:09:31 +02002691 return LY_EVALID;
Radek Krejcib1646a92018-11-02 16:08:26 +01002692 }
2693
2694 /* init lyxp_expr structure */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002695 expr = calloc(1, sizeof *expr);
2696 LY_CHECK_ERR_GOTO(!expr, LOGMEM(ctx); ret = LY_EMEM, error);
2697 LY_CHECK_GOTO(ret = lydict_insert(ctx, expr_str, expr_len, &expr->expr), error);
2698 expr->used = 0;
2699 expr->size = LYXP_EXPR_SIZE_START;
2700 expr->tokens = malloc(expr->size * sizeof *expr->tokens);
2701 LY_CHECK_ERR_GOTO(!expr->tokens, LOGMEM(ctx); ret = LY_EMEM, error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002702
Radek Krejcif03a9e22020-09-18 20:09:31 +02002703 expr->tok_pos = malloc(expr->size * sizeof *expr->tok_pos);
2704 LY_CHECK_ERR_GOTO(!expr->tok_pos, LOGMEM(ctx); ret = LY_EMEM, error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002705
Radek Krejcif03a9e22020-09-18 20:09:31 +02002706 expr->tok_len = malloc(expr->size * sizeof *expr->tok_len);
2707 LY_CHECK_ERR_GOTO(!expr->tok_len, LOGMEM(ctx); ret = LY_EMEM, error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002708
Michal Vasko004d3152020-06-11 19:59:22 +02002709 /* make expr 0-terminated */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002710 expr_str = expr->expr;
Michal Vasko004d3152020-06-11 19:59:22 +02002711
Radek Krejcif03a9e22020-09-18 20:09:31 +02002712 while (is_xmlws(expr_str[parsed])) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002713 ++parsed;
2714 }
2715
2716 do {
Radek Krejcif03a9e22020-09-18 20:09:31 +02002717 if (expr_str[parsed] == '(') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002718
2719 /* '(' */
2720 tok_len = 1;
2721 tok_type = LYXP_TOKEN_PAR1;
2722
Radek Krejcif03a9e22020-09-18 20:09:31 +02002723 if (prev_function_check && expr->used && (expr->tokens[expr->used - 1] == LYXP_TOKEN_NAMETEST)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002724 /* it is a NodeType/FunctionName after all */
Michal Vasko69730152020-10-09 16:30:07 +02002725 if (((expr->tok_len[expr->used - 1] == 4) &&
2726 (!strncmp(&expr_str[expr->tok_pos[expr->used - 1]], "node", 4) ||
2727 !strncmp(&expr_str[expr->tok_pos[expr->used - 1]], "text", 4))) ||
2728 ((expr->tok_len[expr->used - 1] == 7) &&
2729 !strncmp(&expr_str[expr->tok_pos[expr->used - 1]], "comment", 7))) {
Radek Krejcif03a9e22020-09-18 20:09:31 +02002730 expr->tokens[expr->used - 1] = LYXP_TOKEN_NODETYPE;
Radek Krejcib1646a92018-11-02 16:08:26 +01002731 } else {
Radek Krejcif03a9e22020-09-18 20:09:31 +02002732 expr->tokens[expr->used - 1] = LYXP_TOKEN_FUNCNAME;
Radek Krejcib1646a92018-11-02 16:08:26 +01002733 }
2734 prev_function_check = 0;
2735 }
2736
Radek Krejcif03a9e22020-09-18 20:09:31 +02002737 } else if (expr_str[parsed] == ')') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002738
2739 /* ')' */
2740 tok_len = 1;
2741 tok_type = LYXP_TOKEN_PAR2;
2742
Radek Krejcif03a9e22020-09-18 20:09:31 +02002743 } else if (expr_str[parsed] == '[') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002744
2745 /* '[' */
2746 tok_len = 1;
2747 tok_type = LYXP_TOKEN_BRACK1;
2748
Radek Krejcif03a9e22020-09-18 20:09:31 +02002749 } else if (expr_str[parsed] == ']') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002750
2751 /* ']' */
2752 tok_len = 1;
2753 tok_type = LYXP_TOKEN_BRACK2;
2754
Radek Krejcif03a9e22020-09-18 20:09:31 +02002755 } else if (!strncmp(&expr_str[parsed], "..", 2)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002756
2757 /* '..' */
2758 tok_len = 2;
2759 tok_type = LYXP_TOKEN_DDOT;
2760
Radek Krejcif03a9e22020-09-18 20:09:31 +02002761 } else if ((expr_str[parsed] == '.') && (!isdigit(expr_str[parsed + 1]))) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002762
2763 /* '.' */
2764 tok_len = 1;
2765 tok_type = LYXP_TOKEN_DOT;
2766
Radek Krejcif03a9e22020-09-18 20:09:31 +02002767 } else if (expr_str[parsed] == '@') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002768
2769 /* '@' */
2770 tok_len = 1;
2771 tok_type = LYXP_TOKEN_AT;
2772
Radek Krejcif03a9e22020-09-18 20:09:31 +02002773 } else if (expr_str[parsed] == ',') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002774
2775 /* ',' */
2776 tok_len = 1;
2777 tok_type = LYXP_TOKEN_COMMA;
2778
Radek Krejcif03a9e22020-09-18 20:09:31 +02002779 } else if (expr_str[parsed] == '\'') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002780
2781 /* Literal with ' */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002782 for (tok_len = 1; (expr_str[parsed + tok_len] != '\0') && (expr_str[parsed + tok_len] != '\''); ++tok_len) {}
2783 LY_CHECK_ERR_GOTO(expr_str[parsed + tok_len] == '\0',
Radek Krejci2efc45b2020-12-22 16:25:44 +01002784 LOGVAL(ctx, LY_VCODE_XP_EOE, expr_str[parsed], &expr_str[parsed]); ret = LY_EVALID,
Michal Vasko69730152020-10-09 16:30:07 +02002785 error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002786 ++tok_len;
2787 tok_type = LYXP_TOKEN_LITERAL;
2788
Radek Krejcif03a9e22020-09-18 20:09:31 +02002789 } else if (expr_str[parsed] == '\"') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002790
2791 /* Literal with " */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002792 for (tok_len = 1; (expr_str[parsed + tok_len] != '\0') && (expr_str[parsed + tok_len] != '\"'); ++tok_len) {}
2793 LY_CHECK_ERR_GOTO(expr_str[parsed + tok_len] == '\0',
Radek Krejci2efc45b2020-12-22 16:25:44 +01002794 LOGVAL(ctx, LY_VCODE_XP_EOE, expr_str[parsed], &expr_str[parsed]); ret = LY_EVALID,
Michal Vasko69730152020-10-09 16:30:07 +02002795 error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002796 ++tok_len;
2797 tok_type = LYXP_TOKEN_LITERAL;
2798
Radek Krejcif03a9e22020-09-18 20:09:31 +02002799 } else if ((expr_str[parsed] == '.') || (isdigit(expr_str[parsed]))) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002800
2801 /* Number */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002802 for (tok_len = 0; isdigit(expr_str[parsed + tok_len]); ++tok_len) {}
2803 if (expr_str[parsed + tok_len] == '.') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002804 ++tok_len;
Radek Krejcif03a9e22020-09-18 20:09:31 +02002805 for ( ; isdigit(expr_str[parsed + tok_len]); ++tok_len) {}
Radek Krejcib1646a92018-11-02 16:08:26 +01002806 }
2807 tok_type = LYXP_TOKEN_NUMBER;
2808
Radek Krejcif03a9e22020-09-18 20:09:31 +02002809 } else if (expr_str[parsed] == '/') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002810
2811 /* Operator '/', '//' */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002812 if (!strncmp(&expr_str[parsed], "//", 2)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002813 tok_len = 2;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002814 tok_type = LYXP_TOKEN_OPER_RPATH;
Radek Krejcib1646a92018-11-02 16:08:26 +01002815 } else {
2816 tok_len = 1;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002817 tok_type = LYXP_TOKEN_OPER_PATH;
Radek Krejcib1646a92018-11-02 16:08:26 +01002818 }
Radek Krejcib1646a92018-11-02 16:08:26 +01002819
Radek Krejcif03a9e22020-09-18 20:09:31 +02002820 } else if (!strncmp(&expr_str[parsed], "!=", 2)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002821
Michal Vasko3e48bf32020-06-01 08:39:07 +02002822 /* Operator '!=' */
Radek Krejcib1646a92018-11-02 16:08:26 +01002823 tok_len = 2;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002824 tok_type = LYXP_TOKEN_OPER_NEQUAL;
2825
Radek Krejcif03a9e22020-09-18 20:09:31 +02002826 } else if (!strncmp(&expr_str[parsed], "<=", 2) || !strncmp(&expr_str[parsed], ">=", 2)) {
Michal Vasko3e48bf32020-06-01 08:39:07 +02002827
2828 /* Operator '<=', '>=' */
2829 tok_len = 2;
2830 tok_type = LYXP_TOKEN_OPER_COMP;
Radek Krejcib1646a92018-11-02 16:08:26 +01002831
Radek Krejcif03a9e22020-09-18 20:09:31 +02002832 } else if (expr_str[parsed] == '|') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002833
2834 /* Operator '|' */
2835 tok_len = 1;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002836 tok_type = LYXP_TOKEN_OPER_UNI;
Radek Krejcib1646a92018-11-02 16:08:26 +01002837
Radek Krejcif03a9e22020-09-18 20:09:31 +02002838 } else if ((expr_str[parsed] == '+') || (expr_str[parsed] == '-')) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002839
2840 /* Operator '+', '-' */
2841 tok_len = 1;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002842 tok_type = LYXP_TOKEN_OPER_MATH;
Radek Krejcib1646a92018-11-02 16:08:26 +01002843
Radek Krejcif03a9e22020-09-18 20:09:31 +02002844 } else if (expr_str[parsed] == '=') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002845
Michal Vasko3e48bf32020-06-01 08:39:07 +02002846 /* Operator '=' */
Radek Krejcib1646a92018-11-02 16:08:26 +01002847 tok_len = 1;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002848 tok_type = LYXP_TOKEN_OPER_EQUAL;
2849
Radek Krejcif03a9e22020-09-18 20:09:31 +02002850 } else if ((expr_str[parsed] == '<') || (expr_str[parsed] == '>')) {
Michal Vasko3e48bf32020-06-01 08:39:07 +02002851
2852 /* Operator '<', '>' */
2853 tok_len = 1;
2854 tok_type = LYXP_TOKEN_OPER_COMP;
Radek Krejcib1646a92018-11-02 16:08:26 +01002855
Michal Vasko69730152020-10-09 16:30:07 +02002856 } else if (expr->used && (expr->tokens[expr->used - 1] != LYXP_TOKEN_AT) &&
2857 (expr->tokens[expr->used - 1] != LYXP_TOKEN_PAR1) &&
2858 (expr->tokens[expr->used - 1] != LYXP_TOKEN_BRACK1) &&
2859 (expr->tokens[expr->used - 1] != LYXP_TOKEN_COMMA) &&
2860 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_LOG) &&
2861 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_EQUAL) &&
2862 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_NEQUAL) &&
2863 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_COMP) &&
2864 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_MATH) &&
2865 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_UNI) &&
2866 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_PATH) &&
2867 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_RPATH)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002868
2869 /* Operator '*', 'or', 'and', 'mod', or 'div' */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002870 if (expr_str[parsed] == '*') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002871 tok_len = 1;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002872 tok_type = LYXP_TOKEN_OPER_MATH;
Radek Krejcib1646a92018-11-02 16:08:26 +01002873
Radek Krejcif03a9e22020-09-18 20:09:31 +02002874 } else if (!strncmp(&expr_str[parsed], "or", 2)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002875 tok_len = 2;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002876 tok_type = LYXP_TOKEN_OPER_LOG;
Radek Krejcib1646a92018-11-02 16:08:26 +01002877
Radek Krejcif03a9e22020-09-18 20:09:31 +02002878 } else if (!strncmp(&expr_str[parsed], "and", 3)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002879 tok_len = 3;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002880 tok_type = LYXP_TOKEN_OPER_LOG;
Radek Krejcib1646a92018-11-02 16:08:26 +01002881
Radek Krejcif03a9e22020-09-18 20:09:31 +02002882 } else if (!strncmp(&expr_str[parsed], "mod", 3) || !strncmp(&expr_str[parsed], "div", 3)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002883 tok_len = 3;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002884 tok_type = LYXP_TOKEN_OPER_MATH;
Radek Krejcib1646a92018-11-02 16:08:26 +01002885
2886 } else if (prev_function_check) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01002887 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 +02002888 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 +02002889 ret = LY_EVALID;
Radek Krejcib1646a92018-11-02 16:08:26 +01002890 goto error;
2891 } else {
Radek Krejci2efc45b2020-12-22 16:25:44 +01002892 LOGVAL(ctx, LY_VCODE_XP_INEXPR, parsed + 1, expr_str);
Radek Krejcif03a9e22020-09-18 20:09:31 +02002893 ret = LY_EVALID;
Radek Krejcib1646a92018-11-02 16:08:26 +01002894 goto error;
2895 }
Radek Krejcif03a9e22020-09-18 20:09:31 +02002896 } else if (expr_str[parsed] == '*') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002897
2898 /* NameTest '*' */
2899 tok_len = 1;
2900 tok_type = LYXP_TOKEN_NAMETEST;
2901
2902 } else {
2903
2904 /* NameTest (NCName ':' '*' | QName) or NodeType/FunctionName */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002905 long int ncname_len = parse_ncname(&expr_str[parsed]);
2906 LY_CHECK_ERR_GOTO(ncname_len < 0,
Radek Krejci2efc45b2020-12-22 16:25:44 +01002907 LOGVAL(ctx, LY_VCODE_XP_INEXPR, parsed - ncname_len + 1, expr_str); ret = LY_EVALID,
Michal Vasko69730152020-10-09 16:30:07 +02002908 error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002909 tok_len = ncname_len;
2910
Radek Krejcif03a9e22020-09-18 20:09:31 +02002911 if (expr_str[parsed + tok_len] == ':') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002912 ++tok_len;
Radek Krejcif03a9e22020-09-18 20:09:31 +02002913 if (expr_str[parsed + tok_len] == '*') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002914 ++tok_len;
2915 } else {
Radek Krejcif03a9e22020-09-18 20:09:31 +02002916 ncname_len = parse_ncname(&expr_str[parsed + tok_len]);
2917 LY_CHECK_ERR_GOTO(ncname_len < 0,
Radek Krejci2efc45b2020-12-22 16:25:44 +01002918 LOGVAL(ctx, LY_VCODE_XP_INEXPR, parsed - ncname_len + 1, expr_str); ret = LY_EVALID,
Michal Vasko69730152020-10-09 16:30:07 +02002919 error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002920 tok_len += ncname_len;
2921 }
2922 /* remove old flag to prevent ambiguities */
2923 prev_function_check = 0;
2924 tok_type = LYXP_TOKEN_NAMETEST;
2925 } else {
2926 /* there is no prefix so it can still be NodeType/FunctionName, we can't finally decide now */
2927 prev_function_check = 1;
2928 tok_type = LYXP_TOKEN_NAMETEST;
2929 }
2930 }
2931
2932 /* store the token, move on to the next one */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002933 LY_CHECK_GOTO(ret = exp_add_token(ctx, expr, tok_type, parsed, tok_len), error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002934 parsed += tok_len;
Radek Krejcif03a9e22020-09-18 20:09:31 +02002935 while (is_xmlws(expr_str[parsed])) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002936 ++parsed;
2937 }
2938
Radek Krejcif03a9e22020-09-18 20:09:31 +02002939 } while (expr_str[parsed]);
Radek Krejcib1646a92018-11-02 16:08:26 +01002940
Michal Vasko004d3152020-06-11 19:59:22 +02002941 if (reparse) {
2942 /* prealloc repeat */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002943 expr->repeat = calloc(expr->size, sizeof *expr->repeat);
2944 LY_CHECK_ERR_GOTO(!expr->repeat, LOGMEM(ctx); ret = LY_EMEM, error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002945
Michal Vasko004d3152020-06-11 19:59:22 +02002946 /* fill repeat */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002947 LY_CHECK_ERR_GOTO(reparse_or_expr(ctx, expr, &tok_idx), ret = LY_EVALID, error);
2948 if (expr->used > tok_idx) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01002949 LOGVAL(ctx, LYVE_XPATH, "Unparsed characters \"%s\" left at the end of an XPath expression.",
Michal Vasko69730152020-10-09 16:30:07 +02002950 &expr->expr[expr->tok_pos[tok_idx]]);
Radek Krejcif03a9e22020-09-18 20:09:31 +02002951 ret = LY_EVALID;
Michal Vasko004d3152020-06-11 19:59:22 +02002952 goto error;
2953 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02002954 }
2955
Radek Krejcif03a9e22020-09-18 20:09:31 +02002956 print_expr_struct_debug(expr);
2957 *expr_p = expr;
2958 return LY_SUCCESS;
Radek Krejcib1646a92018-11-02 16:08:26 +01002959
2960error:
Radek Krejcif03a9e22020-09-18 20:09:31 +02002961 lyxp_expr_free(ctx, expr);
2962 return ret;
Radek Krejcib1646a92018-11-02 16:08:26 +01002963}
2964
Michal Vasko1734be92020-09-22 08:55:10 +02002965LY_ERR
2966lyxp_expr_dup(const struct ly_ctx *ctx, const struct lyxp_expr *exp, struct lyxp_expr **dup_p)
Michal Vasko004d3152020-06-11 19:59:22 +02002967{
Michal Vasko1734be92020-09-22 08:55:10 +02002968 LY_ERR ret = LY_SUCCESS;
2969 struct lyxp_expr *dup = NULL;
Michal Vasko004d3152020-06-11 19:59:22 +02002970 uint32_t i, j;
2971
Michal Vasko7f45cf22020-10-01 12:49:44 +02002972 if (!exp) {
2973 goto cleanup;
2974 }
2975
Michal Vasko004d3152020-06-11 19:59:22 +02002976 dup = calloc(1, sizeof *dup);
Michal Vasko1734be92020-09-22 08:55:10 +02002977 LY_CHECK_ERR_GOTO(!dup, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02002978
2979 dup->tokens = malloc(exp->used * sizeof *dup->tokens);
Michal Vasko1734be92020-09-22 08:55:10 +02002980 LY_CHECK_ERR_GOTO(!dup->tokens, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02002981 memcpy(dup->tokens, exp->tokens, exp->used * sizeof *dup->tokens);
2982
2983 dup->tok_pos = malloc(exp->used * sizeof *dup->tok_pos);
Michal Vasko1734be92020-09-22 08:55:10 +02002984 LY_CHECK_ERR_GOTO(!dup->tok_pos, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02002985 memcpy(dup->tok_pos, exp->tok_pos, exp->used * sizeof *dup->tok_pos);
2986
2987 dup->tok_len = malloc(exp->used * sizeof *dup->tok_len);
Michal Vasko1734be92020-09-22 08:55:10 +02002988 LY_CHECK_ERR_GOTO(!dup->tok_len, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02002989 memcpy(dup->tok_len, exp->tok_len, exp->used * sizeof *dup->tok_len);
2990
2991 dup->repeat = malloc(exp->used * sizeof *dup->repeat);
Michal Vasko1734be92020-09-22 08:55:10 +02002992 LY_CHECK_ERR_GOTO(!dup->repeat, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02002993 for (i = 0; i < exp->used; ++i) {
2994 if (!exp->repeat[i]) {
2995 dup->repeat[i] = NULL;
2996 } else {
Radek Krejci1e008d22020-08-17 11:37:37 +02002997 for (j = 0; exp->repeat[i][j]; ++j) {}
Michal Vasko004d3152020-06-11 19:59:22 +02002998 /* the ending 0 as well */
2999 ++j;
3000
Michal Vasko99c71642020-07-03 13:33:36 +02003001 dup->repeat[i] = malloc(j * sizeof **dup->repeat);
Michal Vasko1734be92020-09-22 08:55:10 +02003002 LY_CHECK_ERR_GOTO(!dup->repeat[i], LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02003003 memcpy(dup->repeat[i], exp->repeat[i], j * sizeof **dup->repeat);
3004 dup->repeat[i][j - 1] = 0;
3005 }
3006 }
3007
3008 dup->used = exp->used;
3009 dup->size = exp->used;
Michal Vasko1734be92020-09-22 08:55:10 +02003010 LY_CHECK_GOTO(ret = lydict_insert(ctx, exp->expr, 0, &dup->expr), cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02003011
Michal Vasko1734be92020-09-22 08:55:10 +02003012cleanup:
3013 if (ret) {
3014 lyxp_expr_free(ctx, dup);
3015 } else {
3016 *dup_p = dup;
3017 }
3018 return ret;
Michal Vasko004d3152020-06-11 19:59:22 +02003019}
3020
Michal Vasko03ff5a72019-09-11 13:49:33 +02003021/*
3022 * warn functions
3023 *
3024 * Warn functions check specific reasonable conditions for schema XPath
3025 * and print a warning if they are not satisfied.
3026 */
3027
3028/**
3029 * @brief Get the last-added schema node that is currently in the context.
3030 *
3031 * @param[in] set Set to search in.
3032 * @return Last-added schema context node, NULL if no node is in context.
3033 */
3034static struct lysc_node *
3035warn_get_scnode_in_ctx(struct lyxp_set *set)
3036{
3037 uint32_t i;
3038
3039 if (!set || (set->type != LYXP_SET_SCNODE_SET)) {
3040 return NULL;
3041 }
3042
3043 i = set->used;
3044 do {
3045 --i;
Radek Krejcif13b87b2020-12-01 22:02:17 +01003046 if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003047 /* if there are more, simply return the first found (last added) */
3048 return set->val.scnodes[i].scnode;
3049 }
3050 } while (i);
3051
3052 return NULL;
3053}
3054
3055/**
3056 * @brief Test whether a type is numeric - integer type or decimal64.
3057 *
3058 * @param[in] type Type to test.
Radek Krejci857189e2020-09-01 13:26:36 +02003059 * @return Boolean value whether @p type is numeric type or not.
Michal Vasko03ff5a72019-09-11 13:49:33 +02003060 */
Radek Krejci857189e2020-09-01 13:26:36 +02003061static ly_bool
Michal Vasko03ff5a72019-09-11 13:49:33 +02003062warn_is_numeric_type(struct lysc_type *type)
3063{
3064 struct lysc_type_union *uni;
Radek Krejci857189e2020-09-01 13:26:36 +02003065 ly_bool ret;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003066 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003067
3068 switch (type->basetype) {
3069 case LY_TYPE_DEC64:
3070 case LY_TYPE_INT8:
3071 case LY_TYPE_UINT8:
3072 case LY_TYPE_INT16:
3073 case LY_TYPE_UINT16:
3074 case LY_TYPE_INT32:
3075 case LY_TYPE_UINT32:
3076 case LY_TYPE_INT64:
3077 case LY_TYPE_UINT64:
3078 return 1;
3079 case LY_TYPE_UNION:
3080 uni = (struct lysc_type_union *)type;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003081 LY_ARRAY_FOR(uni->types, u) {
3082 ret = warn_is_numeric_type(uni->types[u]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003083 if (ret) {
3084 /* found a suitable type */
Radek Krejci857189e2020-09-01 13:26:36 +02003085 return ret;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003086 }
3087 }
3088 /* did not find any suitable type */
3089 return 0;
3090 case LY_TYPE_LEAFREF:
3091 return warn_is_numeric_type(((struct lysc_type_leafref *)type)->realtype);
3092 default:
3093 return 0;
3094 }
3095}
3096
3097/**
3098 * @brief Test whether a type is string-like - no integers, decimal64 or binary.
3099 *
3100 * @param[in] type Type to test.
Radek Krejci857189e2020-09-01 13:26:36 +02003101 * @return Boolean value whether @p type's basetype is string type or not.
Michal Vasko03ff5a72019-09-11 13:49:33 +02003102 */
Radek Krejci857189e2020-09-01 13:26:36 +02003103static ly_bool
Michal Vasko03ff5a72019-09-11 13:49:33 +02003104warn_is_string_type(struct lysc_type *type)
3105{
3106 struct lysc_type_union *uni;
Radek Krejci857189e2020-09-01 13:26:36 +02003107 ly_bool ret;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003108 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003109
3110 switch (type->basetype) {
3111 case LY_TYPE_BITS:
3112 case LY_TYPE_ENUM:
3113 case LY_TYPE_IDENT:
3114 case LY_TYPE_INST:
3115 case LY_TYPE_STRING:
3116 return 1;
3117 case LY_TYPE_UNION:
3118 uni = (struct lysc_type_union *)type;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003119 LY_ARRAY_FOR(uni->types, u) {
3120 ret = warn_is_string_type(uni->types[u]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003121 if (ret) {
3122 /* found a suitable type */
Radek Krejci857189e2020-09-01 13:26:36 +02003123 return ret;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003124 }
3125 }
3126 /* did not find any suitable type */
3127 return 0;
3128 case LY_TYPE_LEAFREF:
3129 return warn_is_string_type(((struct lysc_type_leafref *)type)->realtype);
3130 default:
3131 return 0;
3132 }
3133}
3134
3135/**
3136 * @brief Test whether a type is one specific type.
3137 *
3138 * @param[in] type Type to test.
3139 * @param[in] base Expected type.
Radek Krejci857189e2020-09-01 13:26:36 +02003140 * @return Boolean value whether the given @p type is of the specific basetype @p base.
Michal Vasko03ff5a72019-09-11 13:49:33 +02003141 */
Radek Krejci857189e2020-09-01 13:26:36 +02003142static ly_bool
Michal Vasko03ff5a72019-09-11 13:49:33 +02003143warn_is_specific_type(struct lysc_type *type, LY_DATA_TYPE base)
3144{
3145 struct lysc_type_union *uni;
Radek Krejci857189e2020-09-01 13:26:36 +02003146 ly_bool ret;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003147 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003148
3149 if (type->basetype == base) {
3150 return 1;
3151 } else if (type->basetype == LY_TYPE_UNION) {
3152 uni = (struct lysc_type_union *)type;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003153 LY_ARRAY_FOR(uni->types, u) {
3154 ret = warn_is_specific_type(uni->types[u], base);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003155 if (ret) {
3156 /* found a suitable type */
Radek Krejci857189e2020-09-01 13:26:36 +02003157 return ret;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003158 }
3159 }
3160 /* did not find any suitable type */
3161 return 0;
3162 } else if (type->basetype == LY_TYPE_LEAFREF) {
3163 return warn_is_specific_type(((struct lysc_type_leafref *)type)->realtype, base);
3164 }
3165
3166 return 0;
3167}
3168
3169/**
3170 * @brief Get next type of a (union) type.
3171 *
3172 * @param[in] type Base type.
3173 * @param[in] prev_type Previously returned type.
3174 * @return Next type or NULL.
3175 */
3176static struct lysc_type *
3177warn_is_equal_type_next_type(struct lysc_type *type, struct lysc_type *prev_type)
3178{
3179 struct lysc_type_union *uni;
Radek Krejci857189e2020-09-01 13:26:36 +02003180 ly_bool found = 0;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003181 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003182
3183 switch (type->basetype) {
3184 case LY_TYPE_UNION:
3185 uni = (struct lysc_type_union *)type;
3186 if (!prev_type) {
3187 return uni->types[0];
3188 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003189 LY_ARRAY_FOR(uni->types, u) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003190 if (found) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003191 return uni->types[u];
Michal Vasko03ff5a72019-09-11 13:49:33 +02003192 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003193 if (prev_type == uni->types[u]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003194 found = 1;
3195 }
3196 }
3197 return NULL;
3198 default:
3199 if (prev_type) {
3200 assert(type == prev_type);
3201 return NULL;
3202 } else {
3203 return type;
3204 }
3205 }
3206}
3207
3208/**
3209 * @brief Test whether 2 types have a common type.
3210 *
3211 * @param[in] type1 First type.
3212 * @param[in] type2 Second type.
3213 * @return 1 if they do, 0 otherwise.
3214 */
3215static int
3216warn_is_equal_type(struct lysc_type *type1, struct lysc_type *type2)
3217{
3218 struct lysc_type *t1, *rt1, *t2, *rt2;
3219
3220 t1 = NULL;
3221 while ((t1 = warn_is_equal_type_next_type(type1, t1))) {
3222 if (t1->basetype == LY_TYPE_LEAFREF) {
3223 rt1 = ((struct lysc_type_leafref *)t1)->realtype;
3224 } else {
3225 rt1 = t1;
3226 }
3227
3228 t2 = NULL;
3229 while ((t2 = warn_is_equal_type_next_type(type2, t2))) {
3230 if (t2->basetype == LY_TYPE_LEAFREF) {
3231 rt2 = ((struct lysc_type_leafref *)t2)->realtype;
3232 } else {
3233 rt2 = t2;
3234 }
3235
3236 if (rt2->basetype == rt1->basetype) {
3237 /* match found */
3238 return 1;
3239 }
3240 }
3241 }
3242
3243 return 0;
3244}
3245
3246/**
3247 * @brief Check both operands of comparison operators.
3248 *
3249 * @param[in] ctx Context for errors.
3250 * @param[in] set1 First operand set.
3251 * @param[in] set2 Second operand set.
3252 * @param[in] numbers_only Whether accept only numbers or other types are fine too (for '=' and '!=').
3253 * @param[in] expr Start of the expression to print with the warning.
3254 * @param[in] tok_pos Token position.
3255 */
3256static void
Radek Krejci857189e2020-09-01 13:26:36 +02003257warn_operands(struct ly_ctx *ctx, struct lyxp_set *set1, struct lyxp_set *set2, ly_bool numbers_only, const char *expr, uint16_t tok_pos)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003258{
3259 struct lysc_node_leaf *node1, *node2;
Radek Krejci857189e2020-09-01 13:26:36 +02003260 ly_bool leaves = 1, warning = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003261
3262 node1 = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(set1);
3263 node2 = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(set2);
3264
3265 if (!node1 && !node2) {
3266 /* no node-sets involved, nothing to do */
3267 return;
3268 }
3269
3270 if (node1) {
3271 if (!(node1->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3272 LOGWRN(ctx, "Node type %s \"%s\" used as operand.", lys_nodetype2str(node1->nodetype), node1->name);
3273 warning = 1;
3274 leaves = 0;
3275 } else if (numbers_only && !warn_is_numeric_type(node1->type)) {
3276 LOGWRN(ctx, "Node \"%s\" is not of a numeric type, but used where it was expected.", node1->name);
3277 warning = 1;
3278 }
3279 }
3280
3281 if (node2) {
3282 if (!(node2->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3283 LOGWRN(ctx, "Node type %s \"%s\" used as operand.", lys_nodetype2str(node2->nodetype), node2->name);
3284 warning = 1;
3285 leaves = 0;
3286 } else if (numbers_only && !warn_is_numeric_type(node2->type)) {
3287 LOGWRN(ctx, "Node \"%s\" is not of a numeric type, but used where it was expected.", node2->name);
3288 warning = 1;
3289 }
3290 }
3291
3292 if (node1 && node2 && leaves && !numbers_only) {
Michal Vasko69730152020-10-09 16:30:07 +02003293 if ((warn_is_numeric_type(node1->type) && !warn_is_numeric_type(node2->type)) ||
3294 (!warn_is_numeric_type(node1->type) && warn_is_numeric_type(node2->type)) ||
3295 (!warn_is_numeric_type(node1->type) && !warn_is_numeric_type(node2->type) &&
3296 !warn_is_equal_type(node1->type, node2->type))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003297 LOGWRN(ctx, "Incompatible types of operands \"%s\" and \"%s\" for comparison.", node1->name, node2->name);
3298 warning = 1;
3299 }
3300 }
3301
3302 if (warning) {
3303 LOGWRN(ctx, "Previous warning generated by XPath subexpression[%u] \"%.20s\".", tok_pos, expr + tok_pos);
3304 }
3305}
3306
3307/**
3308 * @brief Check that a value is valid for a leaf. If not applicable, does nothing.
3309 *
3310 * @param[in] exp Parsed XPath expression.
3311 * @param[in] set Set with the leaf/leaf-list.
3312 * @param[in] val_exp Index of the value (literal/number) in @p exp.
3313 * @param[in] equal_exp Index of the start of the equality expression in @p exp.
3314 * @param[in] last_equal_exp Index of the end of the equality expression in @p exp.
3315 */
3316static void
Michal Vasko40308e72020-10-20 16:38:40 +02003317warn_equality_value(const struct lyxp_expr *exp, struct lyxp_set *set, uint16_t val_exp, uint16_t equal_exp,
3318 uint16_t last_equal_exp)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003319{
3320 struct lysc_node *scnode;
3321 struct lysc_type *type;
3322 char *value;
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003323 struct lyd_value storage;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003324 LY_ERR rc;
3325 struct ly_err_item *err = NULL;
3326
Michal Vasko69730152020-10-09 16:30:07 +02003327 if ((scnode = warn_get_scnode_in_ctx(set)) && (scnode->nodetype & (LYS_LEAF | LYS_LEAFLIST)) &&
3328 ((exp->tokens[val_exp] == LYXP_TOKEN_LITERAL) || (exp->tokens[val_exp] == LYXP_TOKEN_NUMBER))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003329 /* check that the node can have the specified value */
3330 if (exp->tokens[val_exp] == LYXP_TOKEN_LITERAL) {
3331 value = strndup(exp->expr + exp->tok_pos[val_exp] + 1, exp->tok_len[val_exp] - 2);
3332 } else {
3333 value = strndup(exp->expr + exp->tok_pos[val_exp], exp->tok_len[val_exp]);
3334 }
3335 if (!value) {
3336 LOGMEM(set->ctx);
3337 return;
3338 }
3339
3340 if ((((struct lysc_node_leaf *)scnode)->type->basetype == LY_TYPE_IDENT) && !strchr(value, ':')) {
3341 LOGWRN(set->ctx, "Identityref \"%s\" comparison with identity \"%s\" without prefix, consider adding"
Michal Vasko69730152020-10-09 16:30:07 +02003342 " a prefix or best using \"derived-from(-or-self)()\" functions.", scnode->name, value);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003343 LOGWRN(set->ctx, "Previous warning generated by XPath subexpression[%u] \"%.*s\".", exp->tok_pos[equal_exp],
Radek Krejci0f969882020-08-21 16:56:47 +02003344 (exp->tok_pos[last_equal_exp] - exp->tok_pos[equal_exp]) + exp->tok_len[last_equal_exp],
Michal Vasko69730152020-10-09 16:30:07 +02003345 exp->expr + exp->tok_pos[equal_exp]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003346 }
3347
3348 type = ((struct lysc_node_leaf *)scnode)->type;
3349 if (type->basetype != LY_TYPE_IDENT) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02003350 rc = type->plugin->store(set->ctx, type, value, strlen(value), 0, set->format, set->prefix_data,
Michal Vasko405cc9e2020-12-01 12:01:27 +01003351 LYD_HINT_DATA, scnode, &storage, NULL, &err);
Michal Vaskobf42e832020-11-23 16:59:42 +01003352 if (rc == LY_EINCOMPLETE) {
3353 rc = LY_SUCCESS;
3354 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02003355
3356 if (err) {
3357 LOGWRN(set->ctx, "Invalid value \"%s\" which does not fit the type (%s).", value, err->msg);
3358 ly_err_free(err);
3359 } else if (rc != LY_SUCCESS) {
3360 LOGWRN(set->ctx, "Invalid value \"%s\" which does not fit the type.", value);
3361 }
3362 if (rc != LY_SUCCESS) {
3363 LOGWRN(set->ctx, "Previous warning generated by XPath subexpression[%u] \"%.*s\".", exp->tok_pos[equal_exp],
Radek Krejci0f969882020-08-21 16:56:47 +02003364 (exp->tok_pos[last_equal_exp] - exp->tok_pos[equal_exp]) + exp->tok_len[last_equal_exp],
Michal Vasko69730152020-10-09 16:30:07 +02003365 exp->expr + exp->tok_pos[equal_exp]);
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003366 } else {
3367 type->plugin->free(set->ctx, &storage);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003368 }
3369 }
3370 free(value);
3371 }
3372}
3373
3374/*
3375 * XPath functions
3376 */
3377
3378/**
3379 * @brief Execute the YANG 1.1 bit-is-set(node-set, string) function. Returns LYXP_SET_BOOLEAN
3380 * depending on whether the first node bit value from the second argument is set.
3381 *
3382 * @param[in] args Array of arguments.
3383 * @param[in] arg_count Count of elements in @p args.
3384 * @param[in,out] set Context and result set at the same time.
3385 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003386 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003387 */
3388static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003389xpath_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 +02003390{
3391 struct lyd_node_term *leaf;
3392 struct lysc_node_leaf *sleaf;
3393 struct lysc_type_bits *bits;
3394 LY_ERR rc = LY_SUCCESS;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003395 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003396
3397 if (options & LYXP_SCNODE_ALL) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003398 if (args[0]->type != LYXP_SET_SCNODE_SET) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003399 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko5676f4e2021-04-06 17:14:45 +02003400 } else if ((sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3401 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3402 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
3403 sleaf->name);
3404 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_BITS)) {
3405 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"bits\".", __func__, sleaf->name);
3406 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02003407 }
3408
3409 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
3410 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003411 LOGWRN(set->ctx, "Argument #2 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
3412 sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003413 } else if (!warn_is_string_type(sleaf->type)) {
3414 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003415 }
3416 }
3417 set_scnode_clear_ctx(set);
3418 return rc;
3419 }
3420
Michal Vaskod3678892020-05-21 10:06:58 +02003421 if (args[0]->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01003422 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 +02003423 return LY_EVALID;
3424 }
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003425 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003426 LY_CHECK_RET(rc);
3427
3428 set_fill_boolean(set, 0);
Michal Vaskod3678892020-05-21 10:06:58 +02003429 if (args[0]->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003430 leaf = (struct lyd_node_term *)args[0]->val.nodes[0].node;
Michal Vasko69730152020-10-09 16:30:07 +02003431 if ((leaf->schema->nodetype & (LYS_LEAF | LYS_LEAFLIST)) &&
3432 (((struct lysc_node_leaf *)leaf->schema)->type->basetype == LY_TYPE_BITS)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003433 bits = (struct lysc_type_bits *)((struct lysc_node_leaf *)leaf->schema)->type;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003434 LY_ARRAY_FOR(bits->bits, u) {
3435 if (!strcmp(bits->bits[u].name, args[1]->val.str)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003436 set_fill_boolean(set, 1);
3437 break;
3438 }
3439 }
3440 }
3441 }
3442
3443 return LY_SUCCESS;
3444}
3445
3446/**
3447 * @brief Execute the XPath boolean(object) function. Returns LYXP_SET_BOOLEAN
3448 * with the argument converted to boolean.
3449 *
3450 * @param[in] args Array of arguments.
3451 * @param[in] arg_count Count of elements in @p args.
3452 * @param[in,out] set Context and result set at the same time.
3453 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003454 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003455 */
3456static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003457xpath_boolean(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003458{
3459 LY_ERR rc;
3460
3461 if (options & LYXP_SCNODE_ALL) {
3462 set_scnode_clear_ctx(set);
3463 return LY_SUCCESS;
3464 }
3465
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003466 rc = lyxp_set_cast(args[0], LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003467 LY_CHECK_RET(rc);
3468 set_fill_set(set, args[0]);
3469
3470 return LY_SUCCESS;
3471}
3472
3473/**
3474 * @brief Execute the XPath ceiling(number) function. Returns LYXP_SET_NUMBER
3475 * with the first argument rounded up to the nearest integer.
3476 *
3477 * @param[in] args Array of arguments.
3478 * @param[in] arg_count Count of elements in @p args.
3479 * @param[in,out] set Context and result set at the same time.
3480 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003481 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003482 */
3483static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003484xpath_ceiling(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003485{
3486 struct lysc_node_leaf *sleaf;
3487 LY_ERR rc = LY_SUCCESS;
3488
3489 if (options & LYXP_SCNODE_ALL) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003490 if (args[0]->type != LYXP_SET_SCNODE_SET) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003491 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko5676f4e2021-04-06 17:14:45 +02003492 } else if ((sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3493 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3494 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
3495 sleaf->name);
3496 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_DEC64)) {
3497 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"decimal64\".", __func__, sleaf->name);
3498 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02003499 }
3500 set_scnode_clear_ctx(set);
3501 return rc;
3502 }
3503
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003504 rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003505 LY_CHECK_RET(rc);
3506 if ((long long)args[0]->val.num != args[0]->val.num) {
3507 set_fill_number(set, ((long long)args[0]->val.num) + 1);
3508 } else {
3509 set_fill_number(set, args[0]->val.num);
3510 }
3511
3512 return LY_SUCCESS;
3513}
3514
3515/**
3516 * @brief Execute the XPath concat(string, string, string*) function.
3517 * Returns LYXP_SET_STRING with the concatenation of all the arguments.
3518 *
3519 * @param[in] args Array of arguments.
3520 * @param[in] arg_count Count of elements in @p args.
3521 * @param[in,out] set Context and result set at the same time.
3522 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003523 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003524 */
3525static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003526xpath_concat(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003527{
3528 uint16_t i;
3529 char *str = NULL;
3530 size_t used = 1;
3531 LY_ERR rc = LY_SUCCESS;
3532 struct lysc_node_leaf *sleaf;
3533
3534 if (options & LYXP_SCNODE_ALL) {
3535 for (i = 0; i < arg_count; ++i) {
3536 if ((args[i]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[i]))) {
3537 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3538 LOGWRN(set->ctx, "Argument #%u of %s is a %s node \"%s\".",
Michal Vasko69730152020-10-09 16:30:07 +02003539 i + 1, __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003540 } else if (!warn_is_string_type(sleaf->type)) {
Radek Krejci70124c82020-08-14 22:17:03 +02003541 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 +02003542 }
3543 }
3544 }
3545 set_scnode_clear_ctx(set);
3546 return rc;
3547 }
3548
3549 for (i = 0; i < arg_count; ++i) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003550 rc = lyxp_set_cast(args[i], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003551 if (rc != LY_SUCCESS) {
3552 free(str);
3553 return rc;
3554 }
3555
3556 str = ly_realloc(str, (used + strlen(args[i]->val.str)) * sizeof(char));
3557 LY_CHECK_ERR_RET(!str, LOGMEM(set->ctx), LY_EMEM);
3558 strcpy(str + used - 1, args[i]->val.str);
3559 used += strlen(args[i]->val.str);
3560 }
3561
3562 /* free, kind of */
Michal Vaskod3678892020-05-21 10:06:58 +02003563 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003564 set->type = LYXP_SET_STRING;
3565 set->val.str = str;
3566
3567 return LY_SUCCESS;
3568}
3569
3570/**
3571 * @brief Execute the XPath contains(string, string) function.
3572 * Returns LYXP_SET_BOOLEAN whether the second argument can
3573 * be found in the first or not.
3574 *
3575 * @param[in] args Array of arguments.
3576 * @param[in] arg_count Count of elements in @p args.
3577 * @param[in,out] set Context and result set at the same time.
3578 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003579 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003580 */
3581static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003582xpath_contains(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003583{
3584 struct lysc_node_leaf *sleaf;
3585 LY_ERR rc = LY_SUCCESS;
3586
3587 if (options & LYXP_SCNODE_ALL) {
3588 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3589 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003590 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
3591 sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003592 } else if (!warn_is_string_type(sleaf->type)) {
3593 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003594 }
3595 }
3596
3597 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
3598 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003599 LOGWRN(set->ctx, "Argument #2 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
3600 sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003601 } else if (!warn_is_string_type(sleaf->type)) {
3602 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003603 }
3604 }
3605 set_scnode_clear_ctx(set);
3606 return rc;
3607 }
3608
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003609 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003610 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003611 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003612 LY_CHECK_RET(rc);
3613
3614 if (strstr(args[0]->val.str, args[1]->val.str)) {
3615 set_fill_boolean(set, 1);
3616 } else {
3617 set_fill_boolean(set, 0);
3618 }
3619
3620 return LY_SUCCESS;
3621}
3622
3623/**
3624 * @brief Execute the XPath count(node-set) function. Returns LYXP_SET_NUMBER
3625 * with the size of the node-set from the argument.
3626 *
3627 * @param[in] args Array of arguments.
3628 * @param[in] arg_count Count of elements in @p args.
3629 * @param[in,out] set Context and result set at the same time.
3630 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003631 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003632 */
3633static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003634xpath_count(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003635{
Michal Vasko03ff5a72019-09-11 13:49:33 +02003636 LY_ERR rc = LY_SUCCESS;
3637
3638 if (options & LYXP_SCNODE_ALL) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003639 if (args[0]->type != LYXP_SET_SCNODE_SET) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003640 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003641 }
3642 set_scnode_clear_ctx(set);
3643 return rc;
3644 }
3645
Michal Vasko03ff5a72019-09-11 13:49:33 +02003646 if (args[0]->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01003647 LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "count(node-set)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02003648 return LY_EVALID;
3649 }
3650
3651 set_fill_number(set, args[0]->used);
3652 return LY_SUCCESS;
3653}
3654
3655/**
3656 * @brief Execute the XPath current() function. Returns LYXP_SET_NODE_SET
3657 * with the context with the intial node.
3658 *
3659 * @param[in] args Array of arguments.
3660 * @param[in] arg_count Count of elements in @p args.
3661 * @param[in,out] set Context and result set at the same time.
3662 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003663 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003664 */
3665static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003666xpath_current(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003667{
3668 if (arg_count || args) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01003669 LOGVAL(set->ctx, LY_VCODE_XP_INARGCOUNT, arg_count, "current()");
Michal Vasko03ff5a72019-09-11 13:49:33 +02003670 return LY_EVALID;
3671 }
3672
3673 if (options & LYXP_SCNODE_ALL) {
3674 set_scnode_clear_ctx(set);
3675
Michal Vasko5d24f6c2020-10-13 13:49:06 +02003676 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, set->cur_scnode, LYXP_NODE_ELEM, NULL));
Michal Vasko03ff5a72019-09-11 13:49:33 +02003677 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02003678 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003679
3680 /* position is filled later */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02003681 set_insert_node(set, set->cur_node, 0, LYXP_NODE_ELEM, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003682 }
3683
3684 return LY_SUCCESS;
3685}
3686
3687/**
3688 * @brief Execute the YANG 1.1 deref(node-set) function. Returns LYXP_SET_NODE_SET with either
3689 * leafref or instance-identifier target node(s).
3690 *
3691 * @param[in] args Array of arguments.
3692 * @param[in] arg_count Count of elements in @p args.
3693 * @param[in,out] set Context and result set at the same time.
3694 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003695 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003696 */
3697static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003698xpath_deref(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003699{
3700 struct lyd_node_term *leaf;
Michal Vasko42e497c2020-01-06 08:38:25 +01003701 struct lysc_node_leaf *sleaf = NULL;
Michal Vasko004d3152020-06-11 19:59:22 +02003702 struct lysc_type_leafref *lref;
Michal Vaskoae9e4cb2019-09-25 08:43:05 +02003703 const struct lysc_node *target;
Michal Vasko004d3152020-06-11 19:59:22 +02003704 struct ly_path *p;
3705 struct lyd_node *node;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003706 char *errmsg = NULL;
Michal Vasko00cbf532020-06-15 13:58:47 +02003707 uint8_t oper;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003708 LY_ERR rc = LY_SUCCESS;
3709
3710 if (options & LYXP_SCNODE_ALL) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003711 if (args[0]->type != LYXP_SET_SCNODE_SET) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003712 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko5676f4e2021-04-06 17:14:45 +02003713 } else if ((sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3714 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3715 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
3716 sleaf->name);
3717 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_LEAFREF) && !warn_is_specific_type(sleaf->type, LY_TYPE_INST)) {
3718 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"leafref\" nor \"instance-identifier\".",
3719 __func__, sleaf->name);
3720 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02003721 }
3722 set_scnode_clear_ctx(set);
Michal Vasko42e497c2020-01-06 08:38:25 +01003723 if (sleaf && (sleaf->type->basetype == LY_TYPE_LEAFREF)) {
Michal Vasko004d3152020-06-11 19:59:22 +02003724 lref = (struct lysc_type_leafref *)sleaf->type;
Michal Vaskod1e53b92021-01-28 13:11:06 +01003725 oper = (sleaf->flags & LYS_IS_OUTPUT) ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT;
Michal Vasko004d3152020-06-11 19:59:22 +02003726
3727 /* it was already evaluated on schema, it must succeed */
Radek Krejcid5d37432021-03-12 13:46:40 +01003728 rc = ly_path_compile(set->ctx, lref->cur_mod, &sleaf->node, NULL, lref->path, LY_PATH_LREF_TRUE, oper,
Michal Vasko14ed9cd2021-01-28 14:16:25 +01003729 LY_PATH_TARGET_MANY, LY_PREF_SCHEMA_RESOLVED, lref->prefixes, NULL, &p);
Michal Vasko004d3152020-06-11 19:59:22 +02003730 assert(!rc);
3731
3732 /* get the target node */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003733 target = p[LY_ARRAY_COUNT(p) - 1].node;
Michal Vasko004d3152020-06-11 19:59:22 +02003734 ly_path_free(set->ctx, p);
3735
Radek Krejciaa6b53f2020-08-27 15:19:03 +02003736 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, target, LYXP_NODE_ELEM, NULL));
Michal Vaskoae9e4cb2019-09-25 08:43:05 +02003737 }
3738
Michal Vasko03ff5a72019-09-11 13:49:33 +02003739 return rc;
3740 }
3741
Michal Vaskod3678892020-05-21 10:06:58 +02003742 if (args[0]->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01003743 LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "deref(node-set)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02003744 return LY_EVALID;
3745 }
3746
Michal Vaskod3678892020-05-21 10:06:58 +02003747 lyxp_set_free_content(set);
3748 if (args[0]->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003749 leaf = (struct lyd_node_term *)args[0]->val.nodes[0].node;
3750 sleaf = (struct lysc_node_leaf *)leaf->schema;
3751 if (sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST)) {
3752 if (sleaf->type->basetype == LY_TYPE_LEAFREF) {
3753 /* find leafref target */
Radek Krejci0b013302021-03-29 15:22:32 +02003754 if (lyplg_type_resolve_leafref((struct lysc_type_leafref *)sleaf->type, &leaf->node, &leaf->value, set->tree,
Michal Vasko9e685082021-01-29 14:49:09 +01003755 &node, &errmsg)) {
Michal Vasko004d3152020-06-11 19:59:22 +02003756 LOGERR(set->ctx, LY_EVALID, errmsg);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003757 free(errmsg);
Michal Vasko004d3152020-06-11 19:59:22 +02003758 return LY_EVALID;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003759 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02003760 } else {
3761 assert(sleaf->type->basetype == LY_TYPE_INST);
Michal Vasko004d3152020-06-11 19:59:22 +02003762 if (ly_path_eval(leaf->value.target, set->tree, &node)) {
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003763 LOGERR(set->ctx, LY_EVALID, "Invalid instance-identifier \"%s\" value - required instance not found.",
Michal Vasko69730152020-10-09 16:30:07 +02003764 LYD_CANON_VALUE(leaf));
Michal Vasko03ff5a72019-09-11 13:49:33 +02003765 return LY_EVALID;
3766 }
3767 }
Michal Vasko004d3152020-06-11 19:59:22 +02003768
3769 /* insert it */
3770 set_insert_node(set, node, 0, LYXP_NODE_ELEM, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003771 }
3772 }
3773
3774 return LY_SUCCESS;
3775}
3776
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003777static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003778xpath_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 +02003779{
Michal Vasko1fdd8fa2021-01-08 09:21:45 +01003780 uint32_t i;
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003781 LY_ARRAY_COUNT_TYPE u;
3782 struct lyd_node_term *leaf;
3783 struct lysc_node_leaf *sleaf;
3784 struct lyd_meta *meta;
3785 struct lyd_value data = {0}, *val;
3786 struct ly_err_item *err = NULL;
3787 LY_ERR rc = LY_SUCCESS;
Radek Krejci857189e2020-09-01 13:26:36 +02003788 ly_bool found;
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003789
3790 if (options & LYXP_SCNODE_ALL) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003791 if (args[0]->type != LYXP_SET_SCNODE_SET) {
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003792 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", func);
Michal Vasko5676f4e2021-04-06 17:14:45 +02003793 } else if ((sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3794 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3795 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", func, lys_nodetype2str(sleaf->nodetype),
3796 sleaf->name);
3797 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_IDENT)) {
3798 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"identityref\".", func, sleaf->name);
3799 }
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003800 }
3801
3802 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
3803 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3804 LOGWRN(set->ctx, "Argument #2 of %s is a %s node \"%s\".", func, lys_nodetype2str(sleaf->nodetype),
Michal Vasko69730152020-10-09 16:30:07 +02003805 sleaf->name);
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003806 } else if (!warn_is_string_type(sleaf->type)) {
3807 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", func, sleaf->name);
3808 }
3809 }
3810 set_scnode_clear_ctx(set);
3811 return rc;
3812 }
3813
3814 if (args[0]->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01003815 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 +02003816 return LY_EVALID;
3817 }
3818 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
3819 LY_CHECK_RET(rc);
3820
3821 set_fill_boolean(set, 0);
3822 found = 0;
3823 for (i = 0; i < args[0]->used; ++i) {
3824 if ((args[0]->val.nodes[i].type != LYXP_NODE_ELEM) && (args[0]->val.nodes[i].type != LYXP_NODE_META)) {
3825 continue;
3826 }
3827
3828 if (args[0]->val.nodes[i].type == LYXP_NODE_ELEM) {
3829 leaf = (struct lyd_node_term *)args[0]->val.nodes[i].node;
3830 sleaf = (struct lysc_node_leaf *)leaf->schema;
3831 val = &leaf->value;
3832 if (!(sleaf->nodetype & LYD_NODE_TERM) || (leaf->value.realtype->basetype != LY_TYPE_IDENT)) {
3833 /* uninteresting */
3834 continue;
3835 }
3836
3837 /* store args[1] as ident */
3838 rc = val->realtype->plugin->store(set->ctx, val->realtype, args[1]->val.str, strlen(args[1]->val.str),
Michal Vasko405cc9e2020-12-01 12:01:27 +01003839 0, set->format, set->prefix_data, LYD_HINT_DATA, leaf->schema, &data, NULL, &err);
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003840 } else {
3841 meta = args[0]->val.meta[i].meta;
3842 val = &meta->value;
3843 if (val->realtype->basetype != LY_TYPE_IDENT) {
3844 /* uninteresting */
3845 continue;
3846 }
3847
3848 /* store args[1] as ident */
Michal Vaskofeca4fb2020-10-05 08:58:40 +02003849 rc = val->realtype->plugin->store(set->ctx, val->realtype, args[1]->val.str, strlen(args[1]->val.str), 0,
Michal Vasko405cc9e2020-12-01 12:01:27 +01003850 set->format, set->prefix_data, LYD_HINT_DATA, meta->parent->schema, &data, NULL, &err);
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003851 }
3852
3853 if (err) {
Michal Vasko177d0ed2020-11-23 16:43:03 +01003854 ly_err_print(set->ctx, err);
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003855 ly_err_free(err);
3856 }
3857 LY_CHECK_RET(rc);
3858
3859 /* finally check the identity itself */
3860 if (self_match && (data.ident == val->ident)) {
3861 set_fill_boolean(set, 1);
3862 found = 1;
3863 }
3864 if (!found) {
3865 LY_ARRAY_FOR(data.ident->derived, u) {
3866 if (data.ident->derived[u] == val->ident) {
3867 set_fill_boolean(set, 1);
3868 found = 1;
3869 break;
3870 }
3871 }
3872 }
3873
3874 /* free temporary value */
3875 val->realtype->plugin->free(set->ctx, &data);
3876 if (found) {
3877 break;
3878 }
3879 }
3880
3881 return LY_SUCCESS;
3882}
3883
Michal Vasko03ff5a72019-09-11 13:49:33 +02003884/**
3885 * @brief Execute the YANG 1.1 derived-from(node-set, string) function. Returns LYXP_SET_BOOLEAN depending
3886 * on whether the first argument nodes contain a node of an identity derived from the second
3887 * argument identity.
3888 *
3889 * @param[in] args Array of arguments.
3890 * @param[in] arg_count Count of elements in @p args.
3891 * @param[in,out] set Context and result set at the same time.
3892 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003893 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003894 */
3895static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003896xpath_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 +02003897{
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003898 return xpath_derived_(args, set, options, 0, __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003899}
3900
3901/**
3902 * @brief Execute the YANG 1.1 derived-from-or-self(node-set, string) function. Returns LYXP_SET_BOOLEAN depending
3903 * on whether the first argument nodes contain a node of an identity that either is or is derived from
3904 * the second argument identity.
3905 *
3906 * @param[in] args Array of arguments.
3907 * @param[in] arg_count Count of elements in @p args.
3908 * @param[in,out] set Context and result set at the same time.
3909 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003910 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003911 */
3912static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003913xpath_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 +02003914{
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003915 return xpath_derived_(args, set, options, 1, __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003916}
3917
3918/**
3919 * @brief Execute the YANG 1.1 enum-value(node-set) function. Returns LYXP_SET_NUMBER
3920 * with the integer value of the first node's enum value, otherwise NaN.
3921 *
3922 * @param[in] args Array of arguments.
3923 * @param[in] arg_count Count of elements in @p args.
3924 * @param[in,out] set Context and result set at the same time.
3925 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003926 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003927 */
3928static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003929xpath_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 +02003930{
3931 struct lyd_node_term *leaf;
3932 struct lysc_node_leaf *sleaf;
3933 LY_ERR rc = LY_SUCCESS;
3934
3935 if (options & LYXP_SCNODE_ALL) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003936 if (args[0]->type != LYXP_SET_SCNODE_SET) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003937 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko5676f4e2021-04-06 17:14:45 +02003938 } else if ((sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3939 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3940 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
3941 sleaf->name);
3942 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_ENUM)) {
3943 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"enumeration\".", __func__, sleaf->name);
3944 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02003945 }
3946 set_scnode_clear_ctx(set);
3947 return rc;
3948 }
3949
Michal Vaskod3678892020-05-21 10:06:58 +02003950 if (args[0]->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01003951 LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "enum-value(node-set)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02003952 return LY_EVALID;
3953 }
3954
3955 set_fill_number(set, NAN);
Michal Vaskod3678892020-05-21 10:06:58 +02003956 if (args[0]->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003957 leaf = (struct lyd_node_term *)args[0]->val.nodes[0].node;
3958 sleaf = (struct lysc_node_leaf *)leaf->schema;
3959 if ((sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST)) && (sleaf->type->basetype == LY_TYPE_ENUM)) {
3960 set_fill_number(set, leaf->value.enum_item->value);
3961 }
3962 }
3963
3964 return LY_SUCCESS;
3965}
3966
3967/**
3968 * @brief Execute the XPath false() function. Returns LYXP_SET_BOOLEAN
3969 * with false value.
3970 *
3971 * @param[in] args Array of arguments.
3972 * @param[in] arg_count Count of elements in @p args.
3973 * @param[in,out] set Context and result set at the same time.
3974 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003975 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003976 */
3977static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003978xpath_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 +02003979{
3980 if (options & LYXP_SCNODE_ALL) {
3981 set_scnode_clear_ctx(set);
3982 return LY_SUCCESS;
3983 }
3984
3985 set_fill_boolean(set, 0);
3986 return LY_SUCCESS;
3987}
3988
3989/**
3990 * @brief Execute the XPath floor(number) function. Returns LYXP_SET_NUMBER
3991 * with the first argument floored (truncated).
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_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 +02004001{
4002 LY_ERR rc;
4003
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004004 rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004005 LY_CHECK_RET(rc);
4006 if (isfinite(args[0]->val.num)) {
4007 set_fill_number(set, (long long)args[0]->val.num);
4008 }
4009
4010 return LY_SUCCESS;
4011}
4012
4013/**
4014 * @brief Execute the XPath lang(string) function. Returns LYXP_SET_BOOLEAN
4015 * whether the language of the text matches the one from the argument.
4016 *
4017 * @param[in] args Array of arguments.
4018 * @param[in] arg_count Count of elements in @p args.
4019 * @param[in,out] set Context and result set at the same time.
4020 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004021 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004022 */
4023static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004024xpath_lang(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004025{
4026 const struct lyd_node *node;
4027 struct lysc_node_leaf *sleaf;
Michal Vasko9f96a052020-03-10 09:41:45 +01004028 struct lyd_meta *meta = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004029 const char *val;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004030 LY_ERR rc = LY_SUCCESS;
4031
4032 if (options & LYXP_SCNODE_ALL) {
4033 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4034 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4035 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 +02004036 } else if (!warn_is_string_type(sleaf->type)) {
4037 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004038 }
4039 }
4040 set_scnode_clear_ctx(set);
4041 return rc;
4042 }
4043
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004044 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004045 LY_CHECK_RET(rc);
4046
Michal Vasko03ff5a72019-09-11 13:49:33 +02004047 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004048 LOGVAL(set->ctx, LY_VCODE_XP_INCTX, print_set_type(set), "lang(string)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004049 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004050 } else if (!set->used) {
4051 set_fill_boolean(set, 0);
4052 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004053 }
4054
4055 switch (set->val.nodes[0].type) {
4056 case LYXP_NODE_ELEM:
4057 case LYXP_NODE_TEXT:
4058 node = set->val.nodes[0].node;
4059 break;
Michal Vasko9f96a052020-03-10 09:41:45 +01004060 case LYXP_NODE_META:
4061 node = set->val.meta[0].meta->parent;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004062 break;
4063 default:
4064 /* nothing to do with roots */
4065 set_fill_boolean(set, 0);
4066 return LY_SUCCESS;
4067 }
4068
Michal Vasko9f96a052020-03-10 09:41:45 +01004069 /* find lang metadata */
Michal Vasko9e685082021-01-29 14:49:09 +01004070 for ( ; node; node = lyd_parent(node)) {
Michal Vasko9f96a052020-03-10 09:41:45 +01004071 for (meta = node->meta; meta; meta = meta->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004072 /* annotations */
Michal Vasko9f96a052020-03-10 09:41:45 +01004073 if (meta->name && !strcmp(meta->name, "lang") && !strcmp(meta->annotation->module->name, "xml")) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004074 break;
4075 }
4076 }
4077
Michal Vasko9f96a052020-03-10 09:41:45 +01004078 if (meta) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004079 break;
4080 }
4081 }
4082
4083 /* compare languages */
Michal Vasko9f96a052020-03-10 09:41:45 +01004084 if (!meta) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004085 set_fill_boolean(set, 0);
4086 } else {
Radek Krejci1deb5be2020-08-26 16:43:36 +02004087 uint64_t i;
4088
Michal Vaskoba99a3e2020-08-18 15:50:05 +02004089 val = meta->value.canonical;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004090 for (i = 0; args[0]->val.str[i]; ++i) {
4091 if (tolower(args[0]->val.str[i]) != tolower(val[i])) {
4092 set_fill_boolean(set, 0);
4093 break;
4094 }
4095 }
4096 if (!args[0]->val.str[i]) {
4097 if (!val[i] || (val[i] == '-')) {
4098 set_fill_boolean(set, 1);
4099 } else {
4100 set_fill_boolean(set, 0);
4101 }
4102 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02004103 }
4104
4105 return LY_SUCCESS;
4106}
4107
4108/**
4109 * @brief Execute the XPath last() function. Returns LYXP_SET_NUMBER
4110 * with the context size.
4111 *
4112 * @param[in] args Array of arguments.
4113 * @param[in] arg_count Count of elements in @p args.
4114 * @param[in,out] set Context and result set at the same time.
4115 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004116 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004117 */
4118static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004119xpath_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 +02004120{
4121 if (options & LYXP_SCNODE_ALL) {
4122 set_scnode_clear_ctx(set);
4123 return LY_SUCCESS;
4124 }
4125
Michal Vasko03ff5a72019-09-11 13:49:33 +02004126 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004127 LOGVAL(set->ctx, LY_VCODE_XP_INCTX, print_set_type(set), "last()");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004128 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004129 } else if (!set->used) {
4130 set_fill_number(set, 0);
4131 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004132 }
4133
4134 set_fill_number(set, set->ctx_size);
4135 return LY_SUCCESS;
4136}
4137
4138/**
4139 * @brief Execute the XPath local-name(node-set?) function. Returns LYXP_SET_STRING
4140 * with the node name without namespace from the argument or the context.
4141 *
4142 * @param[in] args Array of arguments.
4143 * @param[in] arg_count Count of elements in @p args.
4144 * @param[in,out] set Context and result set at the same time.
4145 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004146 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004147 */
4148static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004149xpath_local_name(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004150{
4151 struct lyxp_set_node *item;
Michal Vasko69730152020-10-09 16:30:07 +02004152
Michal Vasko03ff5a72019-09-11 13:49:33 +02004153 /* suppress unused variable warning */
4154 (void)options;
4155
4156 if (options & LYXP_SCNODE_ALL) {
4157 set_scnode_clear_ctx(set);
4158 return LY_SUCCESS;
4159 }
4160
4161 if (arg_count) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004162 if (args[0]->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004163 LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]),
Michal Vasko5d24f6c2020-10-13 13:49:06 +02004164 "local-name(node-set?)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004165 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004166 } else if (!args[0]->used) {
4167 set_fill_string(set, "", 0);
4168 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004169 }
4170
4171 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004172 assert(!set_sort(args[0]));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004173
4174 item = &args[0]->val.nodes[0];
4175 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004176 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004177 LOGVAL(set->ctx, LY_VCODE_XP_INCTX, print_set_type(set), "local-name(node-set?)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004178 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004179 } else if (!set->used) {
4180 set_fill_string(set, "", 0);
4181 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004182 }
4183
4184 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004185 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004186
4187 item = &set->val.nodes[0];
4188 }
4189
4190 switch (item->type) {
Michal Vasko2caefc12019-11-14 16:07:56 +01004191 case LYXP_NODE_NONE:
4192 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004193 case LYXP_NODE_ROOT:
4194 case LYXP_NODE_ROOT_CONFIG:
4195 case LYXP_NODE_TEXT:
4196 set_fill_string(set, "", 0);
4197 break;
4198 case LYXP_NODE_ELEM:
4199 set_fill_string(set, item->node->schema->name, strlen(item->node->schema->name));
4200 break;
Michal Vasko9f96a052020-03-10 09:41:45 +01004201 case LYXP_NODE_META:
4202 set_fill_string(set, ((struct lyd_meta *)item->node)->name, strlen(((struct lyd_meta *)item->node)->name));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004203 break;
4204 }
4205
4206 return LY_SUCCESS;
4207}
4208
4209/**
4210 * @brief Execute the XPath name(node-set?) function. Returns LYXP_SET_STRING
4211 * with the node name fully qualified (with namespace) from the argument or the context.
4212 *
4213 * @param[in] args Array of arguments.
4214 * @param[in] arg_count Count of elements in @p args.
4215 * @param[in,out] set Context and result set at the same time.
4216 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004217 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004218 */
4219static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004220xpath_name(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004221{
4222 struct lyxp_set_node *item;
Michal Vaskoed4fcfe2020-07-08 10:38:56 +02004223 struct lys_module *mod = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004224 char *str;
Michal Vaskoed4fcfe2020-07-08 10:38:56 +02004225 const char *name = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004226
4227 if (options & LYXP_SCNODE_ALL) {
4228 set_scnode_clear_ctx(set);
4229 return LY_SUCCESS;
4230 }
4231
4232 if (arg_count) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004233 if (args[0]->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004234 LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "name(node-set?)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004235 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004236 } else if (!args[0]->used) {
4237 set_fill_string(set, "", 0);
4238 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004239 }
4240
4241 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004242 assert(!set_sort(args[0]));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004243
4244 item = &args[0]->val.nodes[0];
4245 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004246 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004247 LOGVAL(set->ctx, LY_VCODE_XP_INCTX, print_set_type(set), "name(node-set?)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004248 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004249 } else if (!set->used) {
4250 set_fill_string(set, "", 0);
4251 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004252 }
4253
4254 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004255 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004256
4257 item = &set->val.nodes[0];
4258 }
4259
4260 switch (item->type) {
Michal Vasko2caefc12019-11-14 16:07:56 +01004261 case LYXP_NODE_NONE:
4262 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004263 case LYXP_NODE_ROOT:
4264 case LYXP_NODE_ROOT_CONFIG:
4265 case LYXP_NODE_TEXT:
Michal Vaskoed4fcfe2020-07-08 10:38:56 +02004266 /* keep NULL */
Michal Vasko03ff5a72019-09-11 13:49:33 +02004267 break;
4268 case LYXP_NODE_ELEM:
4269 mod = item->node->schema->module;
4270 name = item->node->schema->name;
4271 break;
Michal Vasko9f96a052020-03-10 09:41:45 +01004272 case LYXP_NODE_META:
4273 mod = ((struct lyd_meta *)item->node)->annotation->module;
4274 name = ((struct lyd_meta *)item->node)->name;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004275 break;
4276 }
4277
4278 if (mod && name) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02004279 int rc = asprintf(&str, "%s:%s", ly_get_prefix(mod, set->format, set->prefix_data), name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004280 LY_CHECK_ERR_RET(rc == -1, LOGMEM(set->ctx), LY_EMEM);
4281 set_fill_string(set, str, strlen(str));
4282 free(str);
4283 } else {
4284 set_fill_string(set, "", 0);
4285 }
4286
4287 return LY_SUCCESS;
4288}
4289
4290/**
4291 * @brief Execute the XPath namespace-uri(node-set?) function. Returns LYXP_SET_STRING
4292 * with the namespace of the node from the argument or the context.
4293 *
4294 * @param[in] args Array of arguments.
4295 * @param[in] arg_count Count of elements in @p args.
4296 * @param[in,out] set Context and result set at the same time.
4297 * @param[in] options XPath options.
4298 * @return LY_ERR (LY_EINVAL for wrong arguments on schema)
4299 */
4300static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004301xpath_namespace_uri(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004302{
4303 struct lyxp_set_node *item;
4304 struct lys_module *mod;
Michal Vasko69730152020-10-09 16:30:07 +02004305
Michal Vasko03ff5a72019-09-11 13:49:33 +02004306 /* suppress unused variable warning */
4307 (void)options;
4308
4309 if (options & LYXP_SCNODE_ALL) {
4310 set_scnode_clear_ctx(set);
4311 return LY_SUCCESS;
4312 }
4313
4314 if (arg_count) {
Michal Vaskod3678892020-05-21 10:06:58 +02004315 if (args[0]->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004316 LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]),
Michal Vasko69730152020-10-09 16:30:07 +02004317 "namespace-uri(node-set?)");
Michal Vaskod3678892020-05-21 10:06:58 +02004318 return LY_EVALID;
4319 } else if (!args[0]->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004320 set_fill_string(set, "", 0);
4321 return LY_SUCCESS;
4322 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02004323
4324 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004325 assert(!set_sort(args[0]));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004326
4327 item = &args[0]->val.nodes[0];
4328 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004329 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004330 LOGVAL(set->ctx, LY_VCODE_XP_INCTX, print_set_type(set), "namespace-uri(node-set?)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004331 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004332 } else if (!set->used) {
4333 set_fill_string(set, "", 0);
4334 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004335 }
4336
4337 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004338 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004339
4340 item = &set->val.nodes[0];
4341 }
4342
4343 switch (item->type) {
Michal Vasko2caefc12019-11-14 16:07:56 +01004344 case LYXP_NODE_NONE:
4345 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004346 case LYXP_NODE_ROOT:
4347 case LYXP_NODE_ROOT_CONFIG:
4348 case LYXP_NODE_TEXT:
4349 set_fill_string(set, "", 0);
4350 break;
4351 case LYXP_NODE_ELEM:
Michal Vasko9f96a052020-03-10 09:41:45 +01004352 case LYXP_NODE_META:
Michal Vasko03ff5a72019-09-11 13:49:33 +02004353 if (item->type == LYXP_NODE_ELEM) {
4354 mod = item->node->schema->module;
Michal Vasko9f96a052020-03-10 09:41:45 +01004355 } else { /* LYXP_NODE_META */
Michal Vasko03ff5a72019-09-11 13:49:33 +02004356 /* annotations */
Michal Vasko9f96a052020-03-10 09:41:45 +01004357 mod = ((struct lyd_meta *)item->node)->annotation->module;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004358 }
4359
4360 set_fill_string(set, mod->ns, strlen(mod->ns));
4361 break;
4362 }
4363
4364 return LY_SUCCESS;
4365}
4366
4367/**
4368 * @brief Execute the XPath node() function (node type). Returns LYXP_SET_NODE_SET
4369 * with only nodes from the context. In practice it either leaves the context
4370 * as it is or returns an empty node set.
4371 *
4372 * @param[in] args Array of arguments.
4373 * @param[in] arg_count Count of elements in @p args.
4374 * @param[in,out] set Context and result set at the same time.
4375 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004376 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004377 */
4378static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004379xpath_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 +02004380{
4381 if (options & LYXP_SCNODE_ALL) {
4382 set_scnode_clear_ctx(set);
4383 return LY_SUCCESS;
4384 }
4385
4386 if (set->type != LYXP_SET_NODE_SET) {
Michal Vaskod3678892020-05-21 10:06:58 +02004387 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004388 }
4389 return LY_SUCCESS;
4390}
4391
4392/**
4393 * @brief Execute the XPath normalize-space(string?) function. Returns LYXP_SET_STRING
4394 * with normalized value (no leading, trailing, double white spaces) of the node
4395 * from the argument or the context.
4396 *
4397 * @param[in] args Array of arguments.
4398 * @param[in] arg_count Count of elements in @p args.
4399 * @param[in,out] set Context and result set at the same time.
4400 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004401 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004402 */
4403static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004404xpath_normalize_space(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004405{
4406 uint16_t i, new_used;
4407 char *new;
Radek Krejci857189e2020-09-01 13:26:36 +02004408 ly_bool have_spaces = 0, space_before = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004409 struct lysc_node_leaf *sleaf;
4410 LY_ERR rc = LY_SUCCESS;
4411
4412 if (options & LYXP_SCNODE_ALL) {
4413 if (arg_count && (args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4414 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4415 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 +02004416 } else if (!warn_is_string_type(sleaf->type)) {
4417 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004418 }
4419 }
4420 set_scnode_clear_ctx(set);
4421 return rc;
4422 }
4423
4424 if (arg_count) {
4425 set_fill_set(set, args[0]);
4426 }
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004427 rc = lyxp_set_cast(set, LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004428 LY_CHECK_RET(rc);
4429
4430 /* is there any normalization necessary? */
4431 for (i = 0; set->val.str[i]; ++i) {
4432 if (is_xmlws(set->val.str[i])) {
4433 if ((i == 0) || space_before || (!set->val.str[i + 1])) {
4434 have_spaces = 1;
4435 break;
4436 }
4437 space_before = 1;
4438 } else {
4439 space_before = 0;
4440 }
4441 }
4442
4443 /* yep, there is */
4444 if (have_spaces) {
4445 /* it's enough, at least one character will go, makes space for ending '\0' */
4446 new = malloc(strlen(set->val.str) * sizeof(char));
4447 LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM);
4448 new_used = 0;
4449
4450 space_before = 0;
4451 for (i = 0; set->val.str[i]; ++i) {
4452 if (is_xmlws(set->val.str[i])) {
4453 if ((i == 0) || space_before) {
4454 space_before = 1;
4455 continue;
4456 } else {
4457 space_before = 1;
4458 }
4459 } else {
4460 space_before = 0;
4461 }
4462
4463 new[new_used] = (space_before ? ' ' : set->val.str[i]);
4464 ++new_used;
4465 }
4466
4467 /* at worst there is one trailing space now */
4468 if (new_used && is_xmlws(new[new_used - 1])) {
4469 --new_used;
4470 }
4471
4472 new = ly_realloc(new, (new_used + 1) * sizeof(char));
4473 LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM);
4474 new[new_used] = '\0';
4475
4476 free(set->val.str);
4477 set->val.str = new;
4478 }
4479
4480 return LY_SUCCESS;
4481}
4482
4483/**
4484 * @brief Execute the XPath not(boolean) function. Returns LYXP_SET_BOOLEAN
4485 * with the argument converted to boolean and logically inverted.
4486 *
4487 * @param[in] args Array of arguments.
4488 * @param[in] arg_count Count of elements in @p args.
4489 * @param[in,out] set Context and result set at the same time.
4490 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004491 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004492 */
4493static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004494xpath_not(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004495{
4496 if (options & LYXP_SCNODE_ALL) {
4497 set_scnode_clear_ctx(set);
4498 return LY_SUCCESS;
4499 }
4500
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004501 lyxp_set_cast(args[0], LYXP_SET_BOOLEAN);
Michal Vasko004d3152020-06-11 19:59:22 +02004502 if (args[0]->val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004503 set_fill_boolean(set, 0);
4504 } else {
4505 set_fill_boolean(set, 1);
4506 }
4507
4508 return LY_SUCCESS;
4509}
4510
4511/**
4512 * @brief Execute the XPath number(object?) function. Returns LYXP_SET_NUMBER
4513 * with the number representation of either the argument or the context.
4514 *
4515 * @param[in] args Array of arguments.
4516 * @param[in] arg_count Count of elements in @p args.
4517 * @param[in,out] set Context and result set at the same time.
4518 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004519 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004520 */
4521static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004522xpath_number(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004523{
4524 LY_ERR rc;
4525
4526 if (options & LYXP_SCNODE_ALL) {
4527 set_scnode_clear_ctx(set);
4528 return LY_SUCCESS;
4529 }
4530
4531 if (arg_count) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004532 rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004533 LY_CHECK_RET(rc);
4534 set_fill_set(set, args[0]);
4535 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004536 rc = lyxp_set_cast(set, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004537 LY_CHECK_RET(rc);
4538 }
4539
4540 return LY_SUCCESS;
4541}
4542
4543/**
4544 * @brief Execute the XPath position() function. Returns LYXP_SET_NUMBER
4545 * with the context position.
4546 *
4547 * @param[in] args Array of arguments.
4548 * @param[in] arg_count Count of elements in @p args.
4549 * @param[in,out] set Context and result set at the same time.
4550 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004551 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004552 */
4553static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004554xpath_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 +02004555{
4556 if (options & LYXP_SCNODE_ALL) {
4557 set_scnode_clear_ctx(set);
4558 return LY_SUCCESS;
4559 }
4560
Michal Vasko03ff5a72019-09-11 13:49:33 +02004561 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004562 LOGVAL(set->ctx, LY_VCODE_XP_INCTX, print_set_type(set), "position()");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004563 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004564 } else if (!set->used) {
4565 set_fill_number(set, 0);
4566 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004567 }
4568
4569 set_fill_number(set, set->ctx_pos);
4570
4571 /* UNUSED in 'Release' build type */
4572 (void)options;
4573 return LY_SUCCESS;
4574}
4575
4576/**
4577 * @brief Execute the YANG 1.1 re-match(string, string) function. Returns LYXP_SET_BOOLEAN
4578 * depending on whether the second argument regex matches the first argument string. For details refer to
4579 * YANG 1.1 RFC section 10.2.1.
4580 *
4581 * @param[in] args Array of arguments.
4582 * @param[in] arg_count Count of elements in @p args.
4583 * @param[in,out] set Context and result set at the same time.
4584 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004585 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004586 */
4587static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004588xpath_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 +02004589{
4590 struct lysc_pattern **patterns = NULL, **pattern;
4591 struct lysc_node_leaf *sleaf;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004592 LY_ERR rc = LY_SUCCESS;
4593 struct ly_err_item *err;
4594
4595 if (options & LYXP_SCNODE_ALL) {
4596 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4597 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4598 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 +02004599 } else if (!warn_is_string_type(sleaf->type)) {
4600 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004601 }
4602 }
4603
4604 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4605 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4606 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 +02004607 } else if (!warn_is_string_type(sleaf->type)) {
4608 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004609 }
4610 }
4611 set_scnode_clear_ctx(set);
4612 return rc;
4613 }
4614
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004615 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004616 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004617 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004618 LY_CHECK_RET(rc);
4619
4620 LY_ARRAY_NEW_RET(set->ctx, patterns, pattern, LY_EMEM);
Radek IÅ¡a45802b52021-02-09 09:21:58 +01004621 *pattern = calloc(1, sizeof **pattern);
Radek Krejciddace2c2021-01-08 11:30:56 +01004622 LOG_LOCSET(NULL, set->cur_node, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01004623 rc = lys_compile_type_pattern_check(set->ctx, args[1]->val.str, &(*pattern)->code);
Radek Krejciddace2c2021-01-08 11:30:56 +01004624 LOG_LOCBACK(0, 1, 0, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004625 if (rc != LY_SUCCESS) {
4626 LY_ARRAY_FREE(patterns);
4627 return rc;
4628 }
4629
Radek Krejci0b013302021-03-29 15:22:32 +02004630 rc = lyplg_type_validate_patterns(patterns, args[0]->val.str, strlen(args[0]->val.str), &err);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004631 pcre2_code_free((*pattern)->code);
4632 free(*pattern);
4633 LY_ARRAY_FREE(patterns);
4634 if (rc && (rc != LY_EVALID)) {
Michal Vasko177d0ed2020-11-23 16:43:03 +01004635 ly_err_print(set->ctx, err);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004636 ly_err_free(err);
4637 return rc;
4638 }
4639
4640 if (rc == LY_EVALID) {
4641 ly_err_free(err);
4642 set_fill_boolean(set, 0);
4643 } else {
4644 set_fill_boolean(set, 1);
4645 }
4646
4647 return LY_SUCCESS;
4648}
4649
4650/**
4651 * @brief Execute the XPath round(number) function. Returns LYXP_SET_NUMBER
4652 * with the rounded first argument. For details refer to
4653 * http://www.w3.org/TR/1999/REC-xpath-19991116/#function-round.
4654 *
4655 * @param[in] args Array of arguments.
4656 * @param[in] arg_count Count of elements in @p args.
4657 * @param[in,out] set Context and result set at the same time.
4658 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004659 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004660 */
4661static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004662xpath_round(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004663{
4664 struct lysc_node_leaf *sleaf;
4665 LY_ERR rc = LY_SUCCESS;
4666
4667 if (options & LYXP_SCNODE_ALL) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02004668 if (args[0]->type != LYXP_SET_SCNODE_SET) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004669 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko5676f4e2021-04-06 17:14:45 +02004670 } else if ((sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4671 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4672 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
4673 sleaf->name);
4674 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_DEC64)) {
4675 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"decimal64\".", __func__, sleaf->name);
4676 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02004677 }
4678 set_scnode_clear_ctx(set);
4679 return rc;
4680 }
4681
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004682 rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004683 LY_CHECK_RET(rc);
4684
4685 /* cover only the cases where floor can't be used */
4686 if ((args[0]->val.num == -0.0f) || ((args[0]->val.num < 0) && (args[0]->val.num >= -0.5))) {
4687 set_fill_number(set, -0.0f);
4688 } else {
4689 args[0]->val.num += 0.5;
4690 rc = xpath_floor(args, 1, args[0], options);
4691 LY_CHECK_RET(rc);
4692 set_fill_number(set, args[0]->val.num);
4693 }
4694
4695 return LY_SUCCESS;
4696}
4697
4698/**
4699 * @brief Execute the XPath starts-with(string, string) function.
4700 * Returns LYXP_SET_BOOLEAN whether the second argument is
4701 * the prefix of the first or not.
4702 *
4703 * @param[in] args Array of arguments.
4704 * @param[in] arg_count Count of elements in @p args.
4705 * @param[in,out] set Context and result set at the same time.
4706 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004707 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004708 */
4709static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004710xpath_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 +02004711{
4712 struct lysc_node_leaf *sleaf;
4713 LY_ERR rc = LY_SUCCESS;
4714
4715 if (options & LYXP_SCNODE_ALL) {
4716 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4717 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4718 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 +02004719 } else if (!warn_is_string_type(sleaf->type)) {
4720 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004721 }
4722 }
4723
4724 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4725 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4726 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 +02004727 } else if (!warn_is_string_type(sleaf->type)) {
4728 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004729 }
4730 }
4731 set_scnode_clear_ctx(set);
4732 return rc;
4733 }
4734
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004735 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004736 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004737 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004738 LY_CHECK_RET(rc);
4739
4740 if (strncmp(args[0]->val.str, args[1]->val.str, strlen(args[1]->val.str))) {
4741 set_fill_boolean(set, 0);
4742 } else {
4743 set_fill_boolean(set, 1);
4744 }
4745
4746 return LY_SUCCESS;
4747}
4748
4749/**
4750 * @brief Execute the XPath string(object?) function. Returns LYXP_SET_STRING
4751 * with the string representation of either the argument or the context.
4752 *
4753 * @param[in] args Array of arguments.
4754 * @param[in] arg_count Count of elements in @p args.
4755 * @param[in,out] set Context and result set at the same time.
4756 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004757 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004758 */
4759static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004760xpath_string(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004761{
4762 LY_ERR rc;
4763
4764 if (options & LYXP_SCNODE_ALL) {
4765 set_scnode_clear_ctx(set);
4766 return LY_SUCCESS;
4767 }
4768
4769 if (arg_count) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004770 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004771 LY_CHECK_RET(rc);
4772 set_fill_set(set, args[0]);
4773 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004774 rc = lyxp_set_cast(set, LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004775 LY_CHECK_RET(rc);
4776 }
4777
4778 return LY_SUCCESS;
4779}
4780
4781/**
4782 * @brief Execute the XPath string-length(string?) function. Returns LYXP_SET_NUMBER
4783 * with the length of the string in either the argument or the context.
4784 *
4785 * @param[in] args Array of arguments.
4786 * @param[in] arg_count Count of elements in @p args.
4787 * @param[in,out] set Context and result set at the same time.
4788 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004789 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004790 */
4791static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004792xpath_string_length(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004793{
4794 struct lysc_node_leaf *sleaf;
4795 LY_ERR rc = LY_SUCCESS;
4796
4797 if (options & LYXP_SCNODE_ALL) {
4798 if (arg_count && (args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4799 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4800 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 +02004801 } else if (!warn_is_string_type(sleaf->type)) {
4802 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004803 }
4804 }
4805 if (!arg_count && (set->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(set))) {
4806 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4807 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 +02004808 } else if (!warn_is_string_type(sleaf->type)) {
4809 LOGWRN(set->ctx, "Argument #0 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004810 }
4811 }
4812 set_scnode_clear_ctx(set);
4813 return rc;
4814 }
4815
4816 if (arg_count) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004817 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004818 LY_CHECK_RET(rc);
4819 set_fill_number(set, strlen(args[0]->val.str));
4820 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004821 rc = lyxp_set_cast(set, LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004822 LY_CHECK_RET(rc);
4823 set_fill_number(set, strlen(set->val.str));
4824 }
4825
4826 return LY_SUCCESS;
4827}
4828
4829/**
4830 * @brief Execute the XPath substring(string, number, number?) function.
4831 * Returns LYXP_SET_STRING substring of the first argument starting
4832 * on the second argument index ending on the third argument index,
4833 * indexed from 1. For exact definition refer to
4834 * http://www.w3.org/TR/1999/REC-xpath-19991116/#function-substring.
4835 *
4836 * @param[in] args Array of arguments.
4837 * @param[in] arg_count Count of elements in @p args.
4838 * @param[in,out] set Context and result set at the same time.
4839 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004840 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004841 */
4842static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004843xpath_substring(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004844{
Radek Krejci1deb5be2020-08-26 16:43:36 +02004845 int32_t start, len;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004846 uint16_t str_start, str_len, pos;
4847 struct lysc_node_leaf *sleaf;
4848 LY_ERR rc = LY_SUCCESS;
4849
4850 if (options & LYXP_SCNODE_ALL) {
4851 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4852 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4853 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 +02004854 } else if (!warn_is_string_type(sleaf->type)) {
4855 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004856 }
4857 }
4858
4859 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4860 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4861 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 +02004862 } else if (!warn_is_numeric_type(sleaf->type)) {
4863 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of numeric type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004864 }
4865 }
4866
Michal Vasko69730152020-10-09 16:30:07 +02004867 if ((arg_count == 3) && (args[2]->type == LYXP_SET_SCNODE_SET) &&
4868 (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[2]))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004869 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4870 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 +02004871 } else if (!warn_is_numeric_type(sleaf->type)) {
4872 LOGWRN(set->ctx, "Argument #3 of %s is node \"%s\", not of numeric type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004873 }
4874 }
4875 set_scnode_clear_ctx(set);
4876 return rc;
4877 }
4878
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004879 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004880 LY_CHECK_RET(rc);
4881
4882 /* start */
4883 if (xpath_round(&args[1], 1, args[1], options)) {
4884 return -1;
4885 }
4886 if (isfinite(args[1]->val.num)) {
4887 start = args[1]->val.num - 1;
4888 } else if (isinf(args[1]->val.num) && signbit(args[1]->val.num)) {
Radek Krejci1deb5be2020-08-26 16:43:36 +02004889 start = INT32_MIN;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004890 } else {
Radek Krejci1deb5be2020-08-26 16:43:36 +02004891 start = INT32_MAX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004892 }
4893
4894 /* len */
4895 if (arg_count == 3) {
4896 rc = xpath_round(&args[2], 1, args[2], options);
4897 LY_CHECK_RET(rc);
Radek Krejci1deb5be2020-08-26 16:43:36 +02004898 if (isnan(args[2]->val.num) || signbit(args[2]->val.num)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004899 len = 0;
Radek Krejci1deb5be2020-08-26 16:43:36 +02004900 } else if (isfinite(args[2]->val.num)) {
4901 len = args[2]->val.num;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004902 } else {
Radek Krejci1deb5be2020-08-26 16:43:36 +02004903 len = INT32_MAX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004904 }
4905 } else {
Radek Krejci1deb5be2020-08-26 16:43:36 +02004906 len = INT32_MAX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004907 }
4908
4909 /* find matching character positions */
4910 str_start = 0;
4911 str_len = 0;
4912 for (pos = 0; args[0]->val.str[pos]; ++pos) {
4913 if (pos < start) {
4914 ++str_start;
4915 } else if (pos < start + len) {
4916 ++str_len;
4917 } else {
4918 break;
4919 }
4920 }
4921
4922 set_fill_string(set, args[0]->val.str + str_start, str_len);
4923 return LY_SUCCESS;
4924}
4925
4926/**
4927 * @brief Execute the XPath substring-after(string, string) function.
4928 * Returns LYXP_SET_STRING with the string succeeding the occurance
4929 * of the second argument in the first or an empty string.
4930 *
4931 * @param[in] args Array of arguments.
4932 * @param[in] arg_count Count of elements in @p args.
4933 * @param[in,out] set Context and result set at the same time.
4934 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004935 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004936 */
4937static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004938xpath_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 +02004939{
4940 char *ptr;
4941 struct lysc_node_leaf *sleaf;
4942 LY_ERR rc = LY_SUCCESS;
4943
4944 if (options & LYXP_SCNODE_ALL) {
4945 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4946 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4947 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 +02004948 } else if (!warn_is_string_type(sleaf->type)) {
4949 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004950 }
4951 }
4952
4953 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4954 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4955 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 +02004956 } else if (!warn_is_string_type(sleaf->type)) {
4957 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004958 }
4959 }
4960 set_scnode_clear_ctx(set);
4961 return rc;
4962 }
4963
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004964 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004965 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004966 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004967 LY_CHECK_RET(rc);
4968
4969 ptr = strstr(args[0]->val.str, args[1]->val.str);
4970 if (ptr) {
4971 set_fill_string(set, ptr + strlen(args[1]->val.str), strlen(ptr + strlen(args[1]->val.str)));
4972 } else {
4973 set_fill_string(set, "", 0);
4974 }
4975
4976 return LY_SUCCESS;
4977}
4978
4979/**
4980 * @brief Execute the XPath substring-before(string, string) function.
4981 * Returns LYXP_SET_STRING with the string preceding the occurance
4982 * of the second argument in the first or an empty string.
4983 *
4984 * @param[in] args Array of arguments.
4985 * @param[in] arg_count Count of elements in @p args.
4986 * @param[in,out] set Context and result set at the same time.
4987 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004988 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004989 */
4990static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004991xpath_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 +02004992{
4993 char *ptr;
4994 struct lysc_node_leaf *sleaf;
4995 LY_ERR rc = LY_SUCCESS;
4996
4997 if (options & LYXP_SCNODE_ALL) {
4998 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4999 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5000 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 +02005001 } else if (!warn_is_string_type(sleaf->type)) {
5002 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005003 }
5004 }
5005
5006 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
5007 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5008 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 +02005009 } else if (!warn_is_string_type(sleaf->type)) {
5010 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005011 }
5012 }
5013 set_scnode_clear_ctx(set);
5014 return rc;
5015 }
5016
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005017 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005018 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005019 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005020 LY_CHECK_RET(rc);
5021
5022 ptr = strstr(args[0]->val.str, args[1]->val.str);
5023 if (ptr) {
5024 set_fill_string(set, args[0]->val.str, ptr - args[0]->val.str);
5025 } else {
5026 set_fill_string(set, "", 0);
5027 }
5028
5029 return LY_SUCCESS;
5030}
5031
5032/**
5033 * @brief Execute the XPath sum(node-set) function. Returns LYXP_SET_NUMBER
5034 * with the sum of all the nodes in the context.
5035 *
5036 * @param[in] args Array of arguments.
5037 * @param[in] arg_count Count of elements in @p args.
5038 * @param[in,out] set Context and result set at the same time.
5039 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005040 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005041 */
5042static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005043xpath_sum(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005044{
5045 long double num;
5046 char *str;
Michal Vasko1fdd8fa2021-01-08 09:21:45 +01005047 uint32_t i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005048 struct lyxp_set set_item;
5049 struct lysc_node_leaf *sleaf;
5050 LY_ERR rc = LY_SUCCESS;
5051
5052 if (options & LYXP_SCNODE_ALL) {
5053 if (args[0]->type == LYXP_SET_SCNODE_SET) {
5054 for (i = 0; i < args[0]->used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01005055 if (args[0]->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005056 sleaf = (struct lysc_node_leaf *)args[0]->val.scnodes[i].scnode;
5057 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5058 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__,
Michal Vasko69730152020-10-09 16:30:07 +02005059 lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005060 } else if (!warn_is_numeric_type(sleaf->type)) {
5061 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of numeric type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005062 }
5063 }
5064 }
5065 }
5066 set_scnode_clear_ctx(set);
5067 return rc;
5068 }
5069
5070 set_fill_number(set, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005071
5072 if (args[0]->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01005073 LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "sum(node-set)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02005074 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02005075 } else if (!args[0]->used) {
5076 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005077 }
5078
Michal Vasko5c4e5892019-11-14 12:31:38 +01005079 set_init(&set_item, set);
5080
Michal Vasko03ff5a72019-09-11 13:49:33 +02005081 set_item.type = LYXP_SET_NODE_SET;
5082 set_item.val.nodes = malloc(sizeof *set_item.val.nodes);
5083 LY_CHECK_ERR_RET(!set_item.val.nodes, LOGMEM(set->ctx), LY_EMEM);
5084
5085 set_item.used = 1;
5086 set_item.size = 1;
5087
5088 for (i = 0; i < args[0]->used; ++i) {
5089 set_item.val.nodes[0] = args[0]->val.nodes[i];
5090
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005091 rc = cast_node_set_to_string(&set_item, &str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005092 LY_CHECK_RET(rc);
5093 num = cast_string_to_number(str);
5094 free(str);
5095 set->val.num += num;
5096 }
5097
5098 free(set_item.val.nodes);
5099
5100 return LY_SUCCESS;
5101}
5102
5103/**
5104 * @brief Execute the XPath text() function (node type). Returns LYXP_SET_NODE_SET
5105 * with the text content of the nodes in the context.
5106 *
5107 * @param[in] args Array of arguments.
5108 * @param[in] arg_count Count of elements in @p args.
5109 * @param[in,out] set Context and result set at the same time.
5110 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005111 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005112 */
5113static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005114xpath_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 +02005115{
5116 uint32_t i;
5117
5118 if (options & LYXP_SCNODE_ALL) {
5119 set_scnode_clear_ctx(set);
5120 return LY_SUCCESS;
5121 }
5122
Michal Vasko03ff5a72019-09-11 13:49:33 +02005123 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01005124 LOGVAL(set->ctx, LY_VCODE_XP_INCTX, print_set_type(set), "text()");
Michal Vasko03ff5a72019-09-11 13:49:33 +02005125 return LY_EVALID;
5126 }
5127
Michal Vaskod989ba02020-08-24 10:59:24 +02005128 for (i = 0; i < set->used; ) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005129 switch (set->val.nodes[i].type) {
Michal Vasko2caefc12019-11-14 16:07:56 +01005130 case LYXP_NODE_NONE:
5131 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005132 case LYXP_NODE_ELEM:
Michal Vasko03ff5a72019-09-11 13:49:33 +02005133 if (set->val.nodes[i].node->schema->nodetype & (LYS_LEAF | LYS_LEAFLIST)) {
5134 set->val.nodes[i].type = LYXP_NODE_TEXT;
5135 ++i;
5136 break;
5137 }
Radek Krejci0f969882020-08-21 16:56:47 +02005138 /* fall through */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005139 case LYXP_NODE_ROOT:
5140 case LYXP_NODE_ROOT_CONFIG:
5141 case LYXP_NODE_TEXT:
Michal Vasko9f96a052020-03-10 09:41:45 +01005142 case LYXP_NODE_META:
Michal Vasko03ff5a72019-09-11 13:49:33 +02005143 set_remove_node(set, i);
5144 break;
5145 }
5146 }
5147
5148 return LY_SUCCESS;
5149}
5150
5151/**
5152 * @brief Execute the XPath translate(string, string, string) function.
5153 * Returns LYXP_SET_STRING with the first argument with the characters
5154 * from the second argument replaced by those on the corresponding
5155 * positions in the third argument.
5156 *
5157 * @param[in] args Array of arguments.
5158 * @param[in] arg_count Count of elements in @p args.
5159 * @param[in,out] set Context and result set at the same time.
5160 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005161 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005162 */
5163static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005164xpath_translate(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005165{
5166 uint16_t i, j, new_used;
5167 char *new;
Radek Krejci857189e2020-09-01 13:26:36 +02005168 ly_bool have_removed;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005169 struct lysc_node_leaf *sleaf;
5170 LY_ERR rc = LY_SUCCESS;
5171
5172 if (options & LYXP_SCNODE_ALL) {
5173 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
5174 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5175 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 +02005176 } else if (!warn_is_string_type(sleaf->type)) {
5177 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005178 }
5179 }
5180
5181 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
5182 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5183 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 +02005184 } else if (!warn_is_string_type(sleaf->type)) {
5185 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005186 }
5187 }
5188
5189 if ((args[2]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[2]))) {
5190 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5191 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 +02005192 } else if (!warn_is_string_type(sleaf->type)) {
5193 LOGWRN(set->ctx, "Argument #3 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005194 }
5195 }
5196 set_scnode_clear_ctx(set);
5197 return rc;
5198 }
5199
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005200 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005201 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005202 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005203 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005204 rc = lyxp_set_cast(args[2], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005205 LY_CHECK_RET(rc);
5206
5207 new = malloc((strlen(args[0]->val.str) + 1) * sizeof(char));
5208 LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM);
5209 new_used = 0;
5210
5211 have_removed = 0;
5212 for (i = 0; args[0]->val.str[i]; ++i) {
Radek Krejci857189e2020-09-01 13:26:36 +02005213 ly_bool found = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005214
5215 for (j = 0; args[1]->val.str[j]; ++j) {
5216 if (args[0]->val.str[i] == args[1]->val.str[j]) {
5217 /* removing this char */
5218 if (j >= strlen(args[2]->val.str)) {
5219 have_removed = 1;
5220 found = 1;
5221 break;
5222 }
5223 /* replacing this char */
5224 new[new_used] = args[2]->val.str[j];
5225 ++new_used;
5226 found = 1;
5227 break;
5228 }
5229 }
5230
5231 /* copying this char */
5232 if (!found) {
5233 new[new_used] = args[0]->val.str[i];
5234 ++new_used;
5235 }
5236 }
5237
5238 if (have_removed) {
5239 new = ly_realloc(new, (new_used + 1) * sizeof(char));
5240 LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM);
5241 }
5242 new[new_used] = '\0';
5243
Michal Vaskod3678892020-05-21 10:06:58 +02005244 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005245 set->type = LYXP_SET_STRING;
5246 set->val.str = new;
5247
5248 return LY_SUCCESS;
5249}
5250
5251/**
5252 * @brief Execute the XPath true() function. Returns LYXP_SET_BOOLEAN
5253 * with true value.
5254 *
5255 * @param[in] args Array of arguments.
5256 * @param[in] arg_count Count of elements in @p args.
5257 * @param[in,out] set Context and result set at the same time.
5258 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005259 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005260 */
5261static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005262xpath_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 +02005263{
5264 if (options & LYXP_SCNODE_ALL) {
5265 set_scnode_clear_ctx(set);
5266 return LY_SUCCESS;
5267 }
5268
5269 set_fill_boolean(set, 1);
5270 return LY_SUCCESS;
5271}
5272
5273/*
5274 * moveto functions
5275 *
5276 * They and only they actually change the context (set).
5277 */
5278
5279/**
Michal Vasko6346ece2019-09-24 13:12:53 +02005280 * @brief Skip prefix and return corresponding model if there is a prefix. Logs directly.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005281 *
Michal Vasko2104e9f2020-03-06 08:23:25 +01005282 * XPath @p set is expected to be a (sc)node set!
5283 *
Michal Vasko6346ece2019-09-24 13:12:53 +02005284 * @param[in,out] qname Qualified node name. If includes prefix, it is skipped.
5285 * @param[in,out] qname_len Length of @p qname, is updated accordingly.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005286 * @param[in] set Set with general XPath context.
5287 * @param[in] ctx_scnode Context node to inherit module for unprefixed node for ::LY_PREF_JSON.
Michal Vasko6346ece2019-09-24 13:12:53 +02005288 * @param[out] moveto_mod Expected module of a matching node.
5289 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005290 */
Michal Vasko6346ece2019-09-24 13:12:53 +02005291static LY_ERR
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005292moveto_resolve_model(const char **qname, uint16_t *qname_len, const struct lyxp_set *set,
5293 const struct lysc_node *ctx_scnode, const struct lys_module **moveto_mod)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005294{
Michal Vaskoed4fcfe2020-07-08 10:38:56 +02005295 const struct lys_module *mod = NULL;
Michal Vasko6346ece2019-09-24 13:12:53 +02005296 const char *ptr;
Radek Krejci1deb5be2020-08-26 16:43:36 +02005297 size_t pref_len;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005298
Michal Vasko2104e9f2020-03-06 08:23:25 +01005299 assert((set->type == LYXP_SET_NODE_SET) || (set->type == LYXP_SET_SCNODE_SET));
5300
Michal Vasko6346ece2019-09-24 13:12:53 +02005301 if ((ptr = ly_strnchr(*qname, ':', *qname_len))) {
5302 /* specific module */
5303 pref_len = ptr - *qname;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005304 mod = ly_resolve_prefix(set->ctx, *qname, pref_len, set->format, set->prefix_data);
Michal Vasko6346ece2019-09-24 13:12:53 +02005305
Michal Vasko004d3152020-06-11 19:59:22 +02005306 /* check for errors and non-implemented modules, as they are not valid */
Juraj Vijtiukd75faa62019-11-26 14:10:10 +01005307 if (!mod || !mod->implemented) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01005308 LOGVAL(set->ctx, LY_VCODE_XP_INMOD, pref_len, *qname);
Michal Vasko6346ece2019-09-24 13:12:53 +02005309 return LY_EVALID;
5310 }
Juraj Vijtiukd75faa62019-11-26 14:10:10 +01005311
Michal Vasko6346ece2019-09-24 13:12:53 +02005312 *qname += pref_len + 1;
5313 *qname_len -= pref_len + 1;
5314 } else if (((*qname)[0] == '*') && (*qname_len == 1)) {
5315 /* all modules - special case */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005316 mod = NULL;
Michal Vasko6346ece2019-09-24 13:12:53 +02005317 } else {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005318 switch (set->format) {
5319 case LY_PREF_SCHEMA:
5320 case LY_PREF_SCHEMA_RESOLVED:
5321 /* current module */
5322 mod = set->cur_mod;
5323 break;
5324 case LY_PREF_JSON:
5325 /* inherit parent (context node) module */
5326 if (ctx_scnode) {
5327 mod = ctx_scnode->module;
5328 } else {
5329 mod = NULL;
5330 }
5331 break;
5332 case LY_PREF_XML:
5333 /* not defined */
5334 LOGINT_RET(set->ctx);
5335 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005336 }
5337
Michal Vasko6346ece2019-09-24 13:12:53 +02005338 *moveto_mod = mod;
5339 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005340}
5341
5342/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02005343 * @brief Move context @p set to the root. Handles absolute path.
5344 * Result is LYXP_SET_NODE_SET.
5345 *
5346 * @param[in,out] set Set to use.
5347 * @param[in] options Xpath options.
Michal Vaskob0099a92020-08-31 14:55:23 +02005348 * @return LY_ERR value.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005349 */
Michal Vaskob0099a92020-08-31 14:55:23 +02005350static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005351moveto_root(struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005352{
Michal Vasko03ff5a72019-09-11 13:49:33 +02005353 if (!set) {
Michal Vaskob0099a92020-08-31 14:55:23 +02005354 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005355 }
5356
5357 if (options & LYXP_SCNODE_ALL) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005358 set_scnode_clear_ctx(set);
Michal Vaskob0099a92020-08-31 14:55:23 +02005359 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, NULL, set->root_type, NULL));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005360 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02005361 set->type = LYXP_SET_NODE_SET;
5362 set->used = 0;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005363 set_insert_node(set, NULL, 0, set->root_type, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005364 }
Michal Vaskob0099a92020-08-31 14:55:23 +02005365
5366 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005367}
5368
5369/**
5370 * @brief Check @p node as a part of NameTest processing.
5371 *
5372 * @param[in] node Node to check.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005373 * @param[in] ctx_node Context node.
5374 * @param[in] set Set to read general context from.
Michal Vaskod3678892020-05-21 10:06:58 +02005375 * @param[in] node_name Node name in the dictionary to move to, NULL for any node.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005376 * @param[in] moveto_mod Expected module of the node, NULL for no prefix.
Michal Vaskocdad7122020-11-09 21:04:44 +01005377 * @param[in] options XPath options.
Michal Vasko6346ece2019-09-24 13:12:53 +02005378 * @return LY_ERR (LY_ENOT if node does not match, LY_EINCOMPLETE on unresolved when,
5379 * LY_EINVAL if netither node nor any children match)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005380 */
5381static LY_ERR
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005382moveto_node_check(const struct lyd_node *node, const struct lyd_node *ctx_node, const struct lyxp_set *set,
Michal Vaskocdad7122020-11-09 21:04:44 +01005383 const char *node_name, const struct lys_module *moveto_mod, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005384{
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005385 if (!moveto_mod && (!node_name || strcmp(node_name, "*"))) {
5386 switch (set->format) {
5387 case LY_PREF_SCHEMA:
5388 case LY_PREF_SCHEMA_RESOLVED:
5389 /* use current module */
5390 moveto_mod = set->cur_mod;
5391 break;
5392 case LY_PREF_JSON:
5393 /* inherit module of the context node, if any */
5394 if (ctx_node) {
5395 moveto_mod = ctx_node->schema->module;
5396 }
5397 break;
5398 case LY_PREF_XML:
5399 /* not defined */
5400 LOGINT(set->ctx);
5401 return LY_EINVAL;
5402 }
5403 }
5404
Michal Vasko03ff5a72019-09-11 13:49:33 +02005405 /* module check */
5406 if (moveto_mod && (node->schema->module != moveto_mod)) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005407 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005408 }
5409
Michal Vasko5c4e5892019-11-14 12:31:38 +01005410 /* context check */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005411 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (node->schema->flags & LYS_CONFIG_R)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005412 return LY_EINVAL;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005413 } else if (set->context_op && (node->schema->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) &&
5414 (node->schema != set->context_op)) {
Michal Vasko6b26e742020-07-17 15:02:10 +02005415 return LY_EINVAL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005416 }
5417
5418 /* name check */
Michal Vasko61ac2f62020-05-25 12:39:51 +02005419 if (node_name && strcmp(node_name, "*") && (node->schema->name != node_name)) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005420 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005421 }
5422
Michal Vaskoa1424542019-11-14 16:08:52 +01005423 /* when check */
Michal Vaskod5cfa6e2020-11-23 16:56:08 +01005424 if (!(options & LYXP_IGNORE_WHEN) && lysc_has_when(node->schema) && !(node->flags & LYD_WHEN_TRUE)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005425 return LY_EINCOMPLETE;
Michal Vaskoa1424542019-11-14 16:08:52 +01005426 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005427
5428 /* match */
5429 return LY_SUCCESS;
5430}
5431
5432/**
5433 * @brief Check @p node as a part of schema NameTest processing.
5434 *
5435 * @param[in] node Schema node to check.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005436 * @param[in] ctx_scnode Context node.
5437 * @param[in] set Set to read general context from.
Michal Vaskod3678892020-05-21 10:06:58 +02005438 * @param[in] node_name Node name in the dictionary to move to, NULL for any nodes.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005439 * @param[in] moveto_mod Expected module of the node, NULL for no prefix.
Michal Vasko6346ece2019-09-24 13:12:53 +02005440 * @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 +02005441 */
5442static LY_ERR
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005443moveto_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 +02005444 const char *node_name, const struct lys_module *moveto_mod)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005445{
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005446 if (!moveto_mod && (!node_name || strcmp(node_name, "*"))) {
5447 switch (set->format) {
5448 case LY_PREF_SCHEMA:
5449 case LY_PREF_SCHEMA_RESOLVED:
5450 /* use current module */
5451 moveto_mod = set->cur_mod;
5452 break;
5453 case LY_PREF_JSON:
5454 /* inherit module of the context node, if any */
5455 if (ctx_scnode) {
5456 moveto_mod = ctx_scnode->module;
5457 }
5458 break;
5459 case LY_PREF_XML:
5460 /* not defined */
5461 LOGINT(set->ctx);
5462 return LY_EINVAL;
5463 }
5464 }
5465
Michal Vasko03ff5a72019-09-11 13:49:33 +02005466 /* module check */
Michal Vaskod3678892020-05-21 10:06:58 +02005467 if (moveto_mod && (node->module != moveto_mod)) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005468 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005469 }
5470
5471 /* context check */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005472 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (node->flags & LYS_CONFIG_R)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005473 return LY_EINVAL;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005474 } else if (set->context_op && (node->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) && (node != set->context_op)) {
Michal Vasko6b26e742020-07-17 15:02:10 +02005475 return LY_EINVAL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005476 }
5477
5478 /* name check */
Michal Vasko61ac2f62020-05-25 12:39:51 +02005479 if (node_name && strcmp(node_name, "*") && (node->name != node_name)) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005480 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005481 }
5482
5483 /* match */
5484 return LY_SUCCESS;
5485}
5486
5487/**
Michal Vaskod3678892020-05-21 10:06:58 +02005488 * @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 +02005489 *
5490 * @param[in,out] set Set to use.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005491 * @param[in] moveto_mod Matching node module, NULL for no prefix.
Michal Vaskod3678892020-05-21 10:06:58 +02005492 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vaskocdad7122020-11-09 21:04:44 +01005493 * @param[in] options XPath options.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005494 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
5495 */
5496static LY_ERR
Michal Vaskocdad7122020-11-09 21:04:44 +01005497moveto_node(struct lyxp_set *set, const struct lys_module *moveto_mod, const char *ncname, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005498{
Michal Vaskof03ed032020-03-04 13:31:44 +01005499 uint32_t i;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005500 const struct lyd_node *siblings, *sub, *ctx_node;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005501 LY_ERR rc;
5502
Michal Vaskod3678892020-05-21 10:06:58 +02005503 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005504 return LY_SUCCESS;
5505 }
5506
5507 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01005508 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005509 return LY_EVALID;
5510 }
5511
Michal Vasko03ff5a72019-09-11 13:49:33 +02005512 for (i = 0; i < set->used; ) {
Radek Krejci857189e2020-09-01 13:26:36 +02005513 ly_bool replaced = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005514
5515 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 +01005516 assert(!set->val.nodes[i].node);
Michal Vaskod3678892020-05-21 10:06:58 +02005517
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005518 /* search in all the trees */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005519 ctx_node = NULL;
Michal Vaskod3678892020-05-21 10:06:58 +02005520 siblings = set->tree;
Michal Vasko5bfd4be2020-06-23 13:26:19 +02005521 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02005522 /* search in children */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005523 ctx_node = set->val.nodes[i].node;
5524 siblings = lyd_child(ctx_node);
Michal Vaskod3678892020-05-21 10:06:58 +02005525 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005526
Michal Vaskod3678892020-05-21 10:06:58 +02005527 for (sub = siblings; sub; sub = sub->next) {
Michal Vaskocdad7122020-11-09 21:04:44 +01005528 rc = moveto_node_check(sub, ctx_node, set, ncname, moveto_mod, options);
Michal Vaskod3678892020-05-21 10:06:58 +02005529 if (rc == LY_SUCCESS) {
5530 if (!replaced) {
5531 set_replace_node(set, sub, 0, LYXP_NODE_ELEM, i);
5532 replaced = 1;
5533 } else {
5534 set_insert_node(set, sub, 0, LYXP_NODE_ELEM, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005535 }
Michal Vaskod3678892020-05-21 10:06:58 +02005536 ++i;
5537 } else if (rc == LY_EINCOMPLETE) {
5538 return rc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005539 }
5540 }
5541
5542 if (!replaced) {
5543 /* no match */
5544 set_remove_node(set, i);
5545 }
5546 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005547
5548 return LY_SUCCESS;
5549}
5550
5551/**
Michal Vaskod3678892020-05-21 10:06:58 +02005552 * @brief Move context @p set to a node using hashes. Result is LYXP_SET_NODE_SET (or LYXP_SET_EMPTY).
5553 * Context position aware.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005554 *
5555 * @param[in,out] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02005556 * @param[in] scnode Matching node schema.
Michal Vasko004d3152020-06-11 19:59:22 +02005557 * @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 +01005558 * @param[in] options XPath options.
Michal Vaskod3678892020-05-21 10:06:58 +02005559 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
5560 */
5561static LY_ERR
Michal Vaskocdad7122020-11-09 21:04:44 +01005562moveto_node_hash(struct lyxp_set *set, const struct lysc_node *scnode, const struct ly_path_predicate *predicates,
5563 uint32_t options)
Michal Vaskod3678892020-05-21 10:06:58 +02005564{
Michal Vasko004d3152020-06-11 19:59:22 +02005565 LY_ERR ret = LY_SUCCESS;
Michal Vaskod3678892020-05-21 10:06:58 +02005566 uint32_t i;
Michal Vaskod3678892020-05-21 10:06:58 +02005567 const struct lyd_node *siblings;
Michal Vasko004d3152020-06-11 19:59:22 +02005568 struct lyd_node *sub, *inst = NULL;
Michal Vaskod3678892020-05-21 10:06:58 +02005569
Michal Vasko004d3152020-06-11 19:59:22 +02005570 assert(scnode && (!(scnode->nodetype & (LYS_LIST | LYS_LEAFLIST)) || predicates));
Michal Vaskod3678892020-05-21 10:06:58 +02005571
5572 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02005573 goto cleanup;
Michal Vaskod3678892020-05-21 10:06:58 +02005574 }
5575
5576 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01005577 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko004d3152020-06-11 19:59:22 +02005578 ret = LY_EVALID;
5579 goto cleanup;
Michal Vaskod3678892020-05-21 10:06:58 +02005580 }
5581
5582 /* context check for all the nodes since we have the schema node */
5583 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (scnode->flags & LYS_CONFIG_R)) {
5584 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02005585 goto cleanup;
Michal Vasko69730152020-10-09 16:30:07 +02005586 } else if (set->context_op && (scnode->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) &&
5587 (scnode != set->context_op)) {
Michal Vasko6b26e742020-07-17 15:02:10 +02005588 lyxp_set_free_content(set);
5589 goto cleanup;
Michal Vasko004d3152020-06-11 19:59:22 +02005590 }
5591
5592 /* create specific data instance if needed */
5593 if (scnode->nodetype == LYS_LIST) {
5594 LY_CHECK_GOTO(ret = lyd_create_list(scnode, predicates, &inst), cleanup);
5595 } else if (scnode->nodetype == LYS_LEAFLIST) {
5596 LY_CHECK_GOTO(ret = lyd_create_term2(scnode, &predicates[0].value, &inst), cleanup);
Michal Vaskod3678892020-05-21 10:06:58 +02005597 }
5598
5599 for (i = 0; i < set->used; ) {
Michal Vaskod3678892020-05-21 10:06:58 +02005600 siblings = NULL;
5601
5602 if ((set->val.nodes[i].type == LYXP_NODE_ROOT_CONFIG) || (set->val.nodes[i].type == LYXP_NODE_ROOT)) {
5603 assert(!set->val.nodes[i].node);
5604
5605 /* search in all the trees */
5606 siblings = set->tree;
5607 } else if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
5608 /* search in children */
Radek Krejcia1c1e542020-09-29 16:06:52 +02005609 siblings = lyd_child(set->val.nodes[i].node);
Michal Vaskod3678892020-05-21 10:06:58 +02005610 }
5611
5612 /* find the node using hashes */
Michal Vasko004d3152020-06-11 19:59:22 +02005613 if (inst) {
5614 lyd_find_sibling_first(siblings, inst, &sub);
Michal Vaskod3678892020-05-21 10:06:58 +02005615 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02005616 lyd_find_sibling_val(siblings, scnode, NULL, 0, &sub);
Michal Vaskod3678892020-05-21 10:06:58 +02005617 }
5618
5619 /* when check */
Michal Vaskod5cfa6e2020-11-23 16:56:08 +01005620 if (!(options & LYXP_IGNORE_WHEN) && sub && lysc_has_when(sub->schema) && !(sub->flags & LYD_WHEN_TRUE)) {
Michal Vasko004d3152020-06-11 19:59:22 +02005621 ret = LY_EINCOMPLETE;
5622 goto cleanup;
Michal Vaskod3678892020-05-21 10:06:58 +02005623 }
5624
5625 if (sub) {
5626 /* pos filled later */
Michal Vaskocb1b7c02020-07-03 13:38:12 +02005627 set_replace_node(set, sub, 0, LYXP_NODE_ELEM, i);
Michal Vaskod3678892020-05-21 10:06:58 +02005628 ++i;
Michal Vaskocb1b7c02020-07-03 13:38:12 +02005629 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02005630 /* no match */
5631 set_remove_node(set, i);
5632 }
5633 }
5634
Michal Vasko004d3152020-06-11 19:59:22 +02005635cleanup:
5636 lyd_free_tree(inst);
5637 return ret;
Michal Vaskod3678892020-05-21 10:06:58 +02005638}
5639
5640/**
5641 * @brief Move context @p set to a schema node. Result is LYXP_SET_SCNODE_SET (or LYXP_SET_EMPTY).
5642 *
5643 * @param[in,out] set Set to use.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005644 * @param[in] moveto_mod Matching node module, NULL for no prefix.
Michal Vaskod3678892020-05-21 10:06:58 +02005645 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005646 * @param[in] options XPath options.
5647 * @return LY_ERR
5648 */
5649static LY_ERR
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005650moveto_scnode(struct lyxp_set *set, const struct lys_module *moveto_mod, const char *ncname, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005651{
Radek Krejci857189e2020-09-01 13:26:36 +02005652 ly_bool temp_ctx = 0;
Radek Krejci1deb5be2020-08-26 16:43:36 +02005653 uint32_t getnext_opts;
5654 uint32_t orig_used, i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005655 uint32_t mod_idx;
Michal Vasko519fd602020-05-26 12:17:39 +02005656 const struct lysc_node *iter, *start_parent;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005657 const struct lys_module *mod;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005658
Michal Vaskod3678892020-05-21 10:06:58 +02005659 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005660 return LY_SUCCESS;
5661 }
5662
5663 if (set->type != LYXP_SET_SCNODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01005664 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005665 return LY_EVALID;
5666 }
5667
Michal Vaskocafad9d2019-11-07 15:20:03 +01005668 /* getnext opts */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01005669 getnext_opts = 0;
Michal Vaskocafad9d2019-11-07 15:20:03 +01005670 if (options & LYXP_SCNODE_OUTPUT) {
5671 getnext_opts |= LYS_GETNEXT_OUTPUT;
5672 }
5673
Michal Vasko03ff5a72019-09-11 13:49:33 +02005674 orig_used = set->used;
5675 for (i = 0; i < orig_used; ++i) {
Radek Krejciaa6b53f2020-08-27 15:19:03 +02005676 uint32_t idx;
5677
Radek Krejcif13b87b2020-12-01 22:02:17 +01005678 if (set->val.scnodes[i].in_ctx != LYXP_SET_SCNODE_ATOM_CTX) {
5679 if (set->val.scnodes[i].in_ctx != LYXP_SET_SCNODE_START) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01005680 continue;
5681 }
5682
5683 /* remember context node */
Radek Krejcif13b87b2020-12-01 22:02:17 +01005684 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_START_USED;
Michal Vaskoec4df482019-12-16 10:02:18 +01005685 } else {
Radek Krejcif13b87b2020-12-01 22:02:17 +01005686 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005687 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005688
5689 start_parent = set->val.scnodes[i].scnode;
5690
5691 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 +02005692 /* 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 +02005693 * it can be in a top-level augment (the root node itself is useless in this case) */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005694 mod_idx = 0;
Michal Vasko9e9f26d2020-10-12 16:31:33 +02005695 while ((mod = (struct lys_module *)ly_ctx_get_module_iter(set->ctx, &mod_idx))) {
Michal Vasko519fd602020-05-26 12:17:39 +02005696 iter = NULL;
Michal Vasko509de4d2019-12-10 14:51:30 +01005697 /* module may not be implemented */
Michal Vasko519fd602020-05-26 12:17:39 +02005698 while (mod->implemented && (iter = lys_getnext(iter, NULL, mod->compiled, getnext_opts))) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005699 if (!moveto_scnode_check(iter, NULL, set, ncname, moveto_mod)) {
Radek Krejciaa6b53f2020-08-27 15:19:03 +02005700 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, iter, LYXP_NODE_ELEM, &idx));
5701
Michal Vasko03ff5a72019-09-11 13:49:33 +02005702 /* we need to prevent these nodes from being considered in this moveto */
Radek Krejciaa6b53f2020-08-27 15:19:03 +02005703 if ((idx < orig_used) && (idx > i)) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01005704 set->val.scnodes[idx].in_ctx = LYXP_SET_SCNODE_ATOM_NEW_CTX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005705 temp_ctx = 1;
5706 }
5707 }
5708 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005709 }
5710
Michal Vasko519fd602020-05-26 12:17:39 +02005711 } else if (set->val.scnodes[i].type == LYXP_NODE_ELEM) {
5712 iter = NULL;
5713 while ((iter = lys_getnext(iter, start_parent, NULL, getnext_opts))) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005714 if (!moveto_scnode_check(iter, start_parent, set, ncname, moveto_mod)) {
Radek Krejciaa6b53f2020-08-27 15:19:03 +02005715 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, iter, LYXP_NODE_ELEM, &idx));
5716
5717 if ((idx < orig_used) && (idx > i)) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01005718 set->val.scnodes[idx].in_ctx = LYXP_SET_SCNODE_ATOM_NEW_CTX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005719 temp_ctx = 1;
5720 }
5721 }
5722 }
5723 }
5724 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005725
5726 /* correct temporary in_ctx values */
5727 if (temp_ctx) {
5728 for (i = 0; i < orig_used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01005729 if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_NEW_CTX) {
5730 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005731 }
5732 }
5733 }
5734
5735 return LY_SUCCESS;
5736}
5737
5738/**
Michal Vaskod3678892020-05-21 10:06:58 +02005739 * @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 +02005740 * Context position aware.
5741 *
5742 * @param[in] set Set to use.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005743 * @param[in] moveto_mod Matching node module, NULL for no prefix.
Michal Vaskod3678892020-05-21 10:06:58 +02005744 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vaskocdad7122020-11-09 21:04:44 +01005745 * @param[in] options XPath options.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005746 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
5747 */
5748static LY_ERR
Michal Vaskocdad7122020-11-09 21:04:44 +01005749moveto_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 +02005750{
5751 uint32_t i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005752 const struct lyd_node *next, *elem, *start;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005753 struct lyxp_set ret_set;
5754 LY_ERR rc;
5755
Michal Vaskod3678892020-05-21 10:06:58 +02005756 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005757 return LY_SUCCESS;
5758 }
5759
5760 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01005761 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005762 return LY_EVALID;
5763 }
5764
Michal Vasko9f96a052020-03-10 09:41:45 +01005765 /* 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 +01005766 rc = moveto_node(set, NULL, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005767 LY_CHECK_RET(rc);
5768
Michal Vasko6346ece2019-09-24 13:12:53 +02005769 /* this loop traverses all the nodes in the set and adds/keeps only those that match qname */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005770 set_init(&ret_set, set);
5771 for (i = 0; i < set->used; ++i) {
5772
5773 /* TREE DFS */
5774 start = set->val.nodes[i].node;
5775 for (elem = next = start; elem; elem = next) {
Michal Vaskocdad7122020-11-09 21:04:44 +01005776 rc = moveto_node_check(elem, start, set, ncname, moveto_mod, options);
Michal Vasko6346ece2019-09-24 13:12:53 +02005777 if (!rc) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005778 /* add matching node into result set */
5779 set_insert_node(&ret_set, elem, 0, LYXP_NODE_ELEM, ret_set.used);
5780 if (set_dup_node_check(set, elem, LYXP_NODE_ELEM, i)) {
5781 /* the node is a duplicate, we'll process it later in the set */
5782 goto skip_children;
5783 }
Michal Vasko6346ece2019-09-24 13:12:53 +02005784 } else if (rc == LY_EINCOMPLETE) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005785 return rc;
5786 } else if (rc == LY_EINVAL) {
5787 goto skip_children;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005788 }
5789
5790 /* TREE DFS NEXT ELEM */
5791 /* select element for the next run - children first */
Radek Krejcia1c1e542020-09-29 16:06:52 +02005792 next = lyd_child(elem);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005793 if (!next) {
5794skip_children:
5795 /* no children, so try siblings, but only if it's not the start,
5796 * that is considered to be the root and it's siblings are not traversed */
5797 if (elem != start) {
5798 next = elem->next;
5799 } else {
5800 break;
5801 }
5802 }
5803 while (!next) {
5804 /* no siblings, go back through the parents */
Michal Vasko9e685082021-01-29 14:49:09 +01005805 if (lyd_parent(elem) == start) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005806 /* we are done, no next element to process */
5807 break;
5808 }
5809 /* parent is already processed, go to its sibling */
Michal Vasko9e685082021-01-29 14:49:09 +01005810 elem = lyd_parent(elem);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005811 next = elem->next;
5812 }
5813 }
5814 }
5815
5816 /* make the temporary set the current one */
5817 ret_set.ctx_pos = set->ctx_pos;
5818 ret_set.ctx_size = set->ctx_size;
Michal Vaskod3678892020-05-21 10:06:58 +02005819 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005820 memcpy(set, &ret_set, sizeof *set);
5821
5822 return LY_SUCCESS;
5823}
5824
5825/**
Michal Vasko61ac2f62020-05-25 12:39:51 +02005826 * @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 +02005827 *
5828 * @param[in] set Set to use.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005829 * @param[in] moveto_mod Matching node module, NULL for no prefix.
Michal Vaskod3678892020-05-21 10:06:58 +02005830 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005831 * @param[in] options XPath options.
5832 * @return LY_ERR
5833 */
5834static LY_ERR
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005835moveto_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 +02005836{
Radek Krejci1deb5be2020-08-26 16:43:36 +02005837 uint32_t i, orig_used;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005838 const struct lysc_node *next, *elem, *start;
Michal Vasko6346ece2019-09-24 13:12:53 +02005839 LY_ERR rc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005840
Michal Vaskod3678892020-05-21 10:06:58 +02005841 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005842 return LY_SUCCESS;
5843 }
5844
5845 if (set->type != LYXP_SET_SCNODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01005846 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005847 return LY_EVALID;
5848 }
5849
Michal Vasko03ff5a72019-09-11 13:49:33 +02005850 orig_used = set->used;
5851 for (i = 0; i < orig_used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01005852 if (set->val.scnodes[i].in_ctx != LYXP_SET_SCNODE_ATOM_CTX) {
5853 if (set->val.scnodes[i].in_ctx != LYXP_SET_SCNODE_START) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01005854 continue;
5855 }
5856
5857 /* remember context node */
Radek Krejcif13b87b2020-12-01 22:02:17 +01005858 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_START_USED;
Michal Vaskoec4df482019-12-16 10:02:18 +01005859 } else {
Radek Krejcif13b87b2020-12-01 22:02:17 +01005860 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005861 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005862
5863 /* TREE DFS */
5864 start = set->val.scnodes[i].scnode;
5865 for (elem = next = start; elem; elem = next) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005866 if ((elem == start) || (elem->nodetype & (LYS_CHOICE | LYS_CASE))) {
5867 /* schema-only nodes, skip root */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005868 goto next_iter;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005869 }
5870
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005871 rc = moveto_scnode_check(elem, start, set, ncname, moveto_mod);
Michal Vasko6346ece2019-09-24 13:12:53 +02005872 if (!rc) {
Radek Krejciaa6b53f2020-08-27 15:19:03 +02005873 uint32_t idx;
5874
5875 if (lyxp_set_scnode_contains(set, elem, LYXP_NODE_ELEM, i, &idx)) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01005876 set->val.scnodes[idx].in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
Radek Krejci1deb5be2020-08-26 16:43:36 +02005877 if ((uint32_t)idx > i) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005878 /* we will process it later in the set */
5879 goto skip_children;
5880 }
5881 } else {
Radek Krejciaa6b53f2020-08-27 15:19:03 +02005882 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, elem, LYXP_NODE_ELEM, NULL));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005883 }
Michal Vasko6346ece2019-09-24 13:12:53 +02005884 } else if (rc == LY_EINVAL) {
5885 goto skip_children;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005886 }
5887
5888next_iter:
5889 /* TREE DFS NEXT ELEM */
5890 /* select element for the next run - children first */
Michal Vasko544e58a2021-01-28 14:33:41 +01005891 next = lysc_node_child(elem);
5892 if (next && (next->nodetype == LYS_INPUT) && (options & LYXP_SCNODE_OUTPUT)) {
5893 next = next->next;
5894 } else if (next && (next->nodetype == LYS_OUTPUT) && !(options & LYXP_SCNODE_OUTPUT)) {
5895 next = next->next;
5896 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005897 if (!next) {
5898skip_children:
5899 /* no children, so try siblings, but only if it's not the start,
5900 * that is considered to be the root and it's siblings are not traversed */
5901 if (elem != start) {
5902 next = elem->next;
5903 } else {
5904 break;
5905 }
5906 }
5907 while (!next) {
5908 /* no siblings, go back through the parents */
5909 if (elem->parent == start) {
5910 /* we are done, no next element to process */
5911 break;
5912 }
5913 /* parent is already processed, go to its sibling */
5914 elem = elem->parent;
5915 next = elem->next;
5916 }
5917 }
5918 }
5919
5920 return LY_SUCCESS;
5921}
5922
5923/**
Michal Vasko61ac2f62020-05-25 12:39:51 +02005924 * @brief Move context @p set to an attribute. Result is LYXP_SET_NODE_SET.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005925 * Indirectly context position aware.
5926 *
5927 * @param[in,out] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02005928 * @param[in] mod Matching metadata module, NULL for any.
5929 * @param[in] ncname Matching metadata name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005930 * @return LY_ERR
5931 */
5932static LY_ERR
Michal Vaskod3678892020-05-21 10:06:58 +02005933moveto_attr(struct lyxp_set *set, const struct lys_module *mod, const char *ncname)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005934{
Michal Vasko9f96a052020-03-10 09:41:45 +01005935 struct lyd_meta *sub;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005936
Michal Vaskod3678892020-05-21 10:06:58 +02005937 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005938 return LY_SUCCESS;
5939 }
5940
5941 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01005942 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005943 return LY_EVALID;
5944 }
5945
Radek Krejci1deb5be2020-08-26 16:43:36 +02005946 for (uint32_t i = 0; i < set->used; ) {
Radek Krejci857189e2020-09-01 13:26:36 +02005947 ly_bool replaced = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005948
5949 /* only attributes of an elem (not dummy) can be in the result, skip all the rest;
5950 * our attributes are always qualified */
Michal Vasko5c4e5892019-11-14 12:31:38 +01005951 if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
Michal Vasko9f96a052020-03-10 09:41:45 +01005952 for (sub = set->val.nodes[i].node->meta; sub; sub = sub->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005953
5954 /* check "namespace" */
Michal Vaskod3678892020-05-21 10:06:58 +02005955 if (mod && (sub->annotation->module != mod)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005956 continue;
5957 }
5958
Michal Vaskod3678892020-05-21 10:06:58 +02005959 if (!ncname || (sub->name == ncname)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005960 /* match */
5961 if (!replaced) {
Michal Vasko9f96a052020-03-10 09:41:45 +01005962 set->val.meta[i].meta = sub;
5963 set->val.meta[i].type = LYXP_NODE_META;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005964 /* pos does not change */
5965 replaced = 1;
5966 } else {
Michal Vasko9f96a052020-03-10 09:41:45 +01005967 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 +02005968 }
5969 ++i;
5970 }
5971 }
5972 }
5973
5974 if (!replaced) {
5975 /* no match */
5976 set_remove_node(set, i);
5977 }
5978 }
5979
5980 return LY_SUCCESS;
5981}
5982
5983/**
5984 * @brief Move context @p set1 to union with @p set2. @p set2 is emptied afterwards.
Michal Vasko61ac2f62020-05-25 12:39:51 +02005985 * Result is LYXP_SET_NODE_SET. Context position aware.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005986 *
5987 * @param[in,out] set1 Set to use for the result.
5988 * @param[in] set2 Set that is copied to @p set1.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005989 * @return LY_ERR
5990 */
5991static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005992moveto_union(struct lyxp_set *set1, struct lyxp_set *set2)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005993{
5994 LY_ERR rc;
5995
Michal Vaskod3678892020-05-21 10:06:58 +02005996 if ((set1->type != LYXP_SET_NODE_SET) || (set2->type != LYXP_SET_NODE_SET)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01005997 LOGVAL(set1->ctx, LY_VCODE_XP_INOP_2, "union", print_set_type(set1), print_set_type(set2));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005998 return LY_EVALID;
5999 }
6000
6001 /* set2 is empty or both set1 and set2 */
Michal Vaskod3678892020-05-21 10:06:58 +02006002 if (!set2->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006003 return LY_SUCCESS;
6004 }
6005
Michal Vaskod3678892020-05-21 10:06:58 +02006006 if (!set1->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006007 memcpy(set1, set2, sizeof *set1);
6008 /* dynamic memory belongs to set1 now, do not free */
Michal Vaskod3678892020-05-21 10:06:58 +02006009 memset(set2, 0, sizeof *set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006010 return LY_SUCCESS;
6011 }
6012
6013 /* we assume sets are sorted */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006014 assert(!set_sort(set1) && !set_sort(set2));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006015
6016 /* sort, remove duplicates */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006017 rc = set_sorted_merge(set1, set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006018 LY_CHECK_RET(rc);
6019
6020 /* final set must be sorted */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006021 assert(!set_sort(set1));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006022
6023 return LY_SUCCESS;
6024}
6025
6026/**
Michal Vasko61ac2f62020-05-25 12:39:51 +02006027 * @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 +02006028 * Context position aware.
6029 *
6030 * @param[in,out] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02006031 * @param[in] mod Matching metadata module, NULL for any.
6032 * @param[in] ncname Matching metadata name in the dictionary, NULL for any.
Michal Vaskocdad7122020-11-09 21:04:44 +01006033 * @param[in] options XPath options.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006034 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6035 */
6036static int
Michal Vaskocdad7122020-11-09 21:04:44 +01006037moveto_attr_alldesc(struct lyxp_set *set, const struct lys_module *mod, const char *ncname, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006038{
Michal Vasko9f96a052020-03-10 09:41:45 +01006039 struct lyd_meta *sub;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006040 struct lyxp_set *set_all_desc = NULL;
6041 LY_ERR rc;
6042
Michal Vaskod3678892020-05-21 10:06:58 +02006043 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006044 return LY_SUCCESS;
6045 }
6046
6047 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01006048 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006049 return LY_EVALID;
6050 }
6051
Michal Vasko03ff5a72019-09-11 13:49:33 +02006052 /* can be optimized similarly to moveto_node_alldesc() and save considerable amount of memory,
6053 * but it likely won't be used much, so it's a waste of time */
6054 /* copy the context */
6055 set_all_desc = set_copy(set);
6056 /* get all descendant nodes (the original context nodes are removed) */
Michal Vaskocdad7122020-11-09 21:04:44 +01006057 rc = moveto_node_alldesc(set_all_desc, NULL, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006058 if (rc != LY_SUCCESS) {
6059 lyxp_set_free(set_all_desc);
6060 return rc;
6061 }
6062 /* prepend the original context nodes */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006063 rc = moveto_union(set, set_all_desc);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006064 if (rc != LY_SUCCESS) {
6065 lyxp_set_free(set_all_desc);
6066 return rc;
6067 }
6068 lyxp_set_free(set_all_desc);
6069
Radek Krejci1deb5be2020-08-26 16:43:36 +02006070 for (uint32_t i = 0; i < set->used; ) {
Radek Krejci857189e2020-09-01 13:26:36 +02006071 ly_bool replaced = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006072
6073 /* only attributes of an elem can be in the result, skip all the rest,
6074 * we have all attributes qualified in lyd tree */
6075 if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
Michal Vasko9f96a052020-03-10 09:41:45 +01006076 for (sub = set->val.nodes[i].node->meta; sub; sub = sub->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006077 /* check "namespace" */
Michal Vaskod3678892020-05-21 10:06:58 +02006078 if (mod && (sub->annotation->module != mod)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006079 continue;
6080 }
6081
Michal Vaskod3678892020-05-21 10:06:58 +02006082 if (!ncname || (sub->name == ncname)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006083 /* match */
6084 if (!replaced) {
Michal Vasko9f96a052020-03-10 09:41:45 +01006085 set->val.meta[i].meta = sub;
6086 set->val.meta[i].type = LYXP_NODE_META;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006087 /* pos does not change */
6088 replaced = 1;
6089 } else {
Michal Vasko9f96a052020-03-10 09:41:45 +01006090 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 +02006091 }
6092 ++i;
6093 }
6094 }
6095 }
6096
6097 if (!replaced) {
6098 /* no match */
6099 set_remove_node(set, i);
6100 }
6101 }
6102
6103 return LY_SUCCESS;
6104}
6105
6106/**
Michal Vasko61ac2f62020-05-25 12:39:51 +02006107 * @brief Move context @p set to self and al chilren, recursively. Handles '/' or '//' and '.'. Result is LYXP_SET_NODE_SET.
6108 * Context position aware.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006109 *
6110 * @param[in] parent Current parent.
6111 * @param[in] parent_pos Position of @p parent.
6112 * @param[in] parent_type Node type of @p parent.
6113 * @param[in,out] to_set Set to use.
6114 * @param[in] dup_check_set Set for checking duplicities.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006115 * @param[in] options XPath options.
6116 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6117 */
6118static LY_ERR
6119moveto_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 +02006120 struct lyxp_set *to_set, const struct lyxp_set *dup_check_set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006121{
Michal Vasko61ac2f62020-05-25 12:39:51 +02006122 const struct lyd_node *iter, *first;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006123 LY_ERR rc;
6124
6125 switch (parent_type) {
6126 case LYXP_NODE_ROOT:
6127 case LYXP_NODE_ROOT_CONFIG:
Michal Vasko61ac2f62020-05-25 12:39:51 +02006128 assert(!parent);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006129
Michal Vasko61ac2f62020-05-25 12:39:51 +02006130 /* add all top-level nodes as elements */
6131 first = to_set->tree;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006132 break;
6133 case LYXP_NODE_ELEM:
Michal Vasko61ac2f62020-05-25 12:39:51 +02006134 /* add just the text node of this term element node */
6135 if (parent->schema->nodetype & (LYD_NODE_TERM | LYD_NODE_ANY)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006136 if (!set_dup_node_check(dup_check_set, parent, LYXP_NODE_TEXT, -1)) {
6137 set_insert_node(to_set, parent, parent_pos, LYXP_NODE_TEXT, to_set->used);
6138 }
Michal Vasko61ac2f62020-05-25 12:39:51 +02006139 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006140 }
Michal Vasko61ac2f62020-05-25 12:39:51 +02006141
6142 /* add all the children of this node */
Radek Krejcia1c1e542020-09-29 16:06:52 +02006143 first = lyd_child(parent);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006144 break;
6145 default:
6146 LOGINT_RET(parent->schema->module->ctx);
6147 }
6148
Michal Vasko61ac2f62020-05-25 12:39:51 +02006149 /* add all top-level nodes as elements */
6150 LY_LIST_FOR(first, iter) {
6151 /* context check */
6152 if ((parent_type == LYXP_NODE_ROOT_CONFIG) && (iter->schema->flags & LYS_CONFIG_R)) {
6153 continue;
6154 }
6155
6156 /* when check */
Michal Vaskod5cfa6e2020-11-23 16:56:08 +01006157 if (!(options & LYXP_IGNORE_WHEN) && lysc_has_when(iter->schema) && !(iter->flags & LYD_WHEN_TRUE)) {
Michal Vasko61ac2f62020-05-25 12:39:51 +02006158 return LY_EINCOMPLETE;
6159 }
6160
6161 if (!set_dup_node_check(dup_check_set, iter, LYXP_NODE_ELEM, -1)) {
6162 set_insert_node(to_set, iter, 0, LYXP_NODE_ELEM, to_set->used);
6163
6164 /* also add all the children of this node, recursively */
6165 rc = moveto_self_add_children_r(iter, 0, LYXP_NODE_ELEM, to_set, dup_check_set, options);
6166 LY_CHECK_RET(rc);
6167 }
6168 }
6169
Michal Vasko03ff5a72019-09-11 13:49:33 +02006170 return LY_SUCCESS;
6171}
6172
6173/**
6174 * @brief Move context @p set to self. Handles '/' or '//' and '.'. Result is LYXP_SET_NODE_SET
6175 * (or LYXP_SET_EMPTY). Context position aware.
6176 *
6177 * @param[in,out] set Set to use.
6178 * @param[in] all_desc Whether to go to all descendants ('//') or not ('/').
6179 * @param[in] options XPath options.
6180 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6181 */
6182static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02006183moveto_self(struct lyxp_set *set, ly_bool all_desc, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006184{
Michal Vasko03ff5a72019-09-11 13:49:33 +02006185 struct lyxp_set ret_set;
6186 LY_ERR rc;
6187
Michal Vaskod3678892020-05-21 10:06:58 +02006188 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006189 return LY_SUCCESS;
6190 }
6191
6192 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01006193 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006194 return LY_EVALID;
6195 }
6196
6197 /* nothing to do */
6198 if (!all_desc) {
6199 return LY_SUCCESS;
6200 }
6201
Michal Vasko03ff5a72019-09-11 13:49:33 +02006202 /* add all the children, they get added recursively */
6203 set_init(&ret_set, set);
Radek Krejci1deb5be2020-08-26 16:43:36 +02006204 for (uint32_t i = 0; i < set->used; ++i) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006205 /* copy the current node to tmp */
6206 set_insert_node(&ret_set, set->val.nodes[i].node, set->val.nodes[i].pos, set->val.nodes[i].type, ret_set.used);
6207
6208 /* do not touch attributes and text nodes */
Michal Vasko9f96a052020-03-10 09:41:45 +01006209 if ((set->val.nodes[i].type == LYXP_NODE_TEXT) || (set->val.nodes[i].type == LYXP_NODE_META)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006210 continue;
6211 }
6212
Michal Vasko03ff5a72019-09-11 13:49:33 +02006213 /* add all the children */
6214 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 +02006215 set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006216 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02006217 lyxp_set_free_content(&ret_set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006218 return rc;
6219 }
6220 }
6221
6222 /* use the temporary set as the current one */
6223 ret_set.ctx_pos = set->ctx_pos;
6224 ret_set.ctx_size = set->ctx_size;
Michal Vaskod3678892020-05-21 10:06:58 +02006225 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006226 memcpy(set, &ret_set, sizeof *set);
6227
6228 return LY_SUCCESS;
6229}
6230
6231/**
6232 * @brief Move context schema @p set to self. Handles '/' or '//' and '.'. Result is LYXP_SET_SCNODE_SET
6233 * (or LYXP_SET_EMPTY).
6234 *
6235 * @param[in,out] set Set to use.
6236 * @param[in] all_desc Whether to go to all descendants ('//') or not ('/').
6237 * @param[in] options XPath options.
6238 * @return LY_ERR
6239 */
6240static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02006241moveto_scnode_self(struct lyxp_set *set, ly_bool all_desc, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006242{
Radek Krejci1deb5be2020-08-26 16:43:36 +02006243 uint32_t getnext_opts;
6244 uint32_t mod_idx;
Michal Vasko519fd602020-05-26 12:17:39 +02006245 const struct lysc_node *iter, *start_parent;
6246 const struct lys_module *mod;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006247
Michal Vaskod3678892020-05-21 10:06:58 +02006248 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006249 return LY_SUCCESS;
6250 }
6251
6252 if (set->type != LYXP_SET_SCNODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01006253 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006254 return LY_EVALID;
6255 }
6256
Michal Vasko519fd602020-05-26 12:17:39 +02006257 /* getnext opts */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01006258 getnext_opts = 0;
Michal Vasko519fd602020-05-26 12:17:39 +02006259 if (options & LYXP_SCNODE_OUTPUT) {
6260 getnext_opts |= LYS_GETNEXT_OUTPUT;
6261 }
6262
6263 /* add all the children, recursively as they are being added into the same set */
Radek Krejci1deb5be2020-08-26 16:43:36 +02006264 for (uint32_t i = 0; i < set->used; ++i) {
Michal Vaskoe657f962020-12-10 12:19:48 +01006265 if (!all_desc) {
6266 /* traverse the start node */
6267 if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_START) {
6268 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
6269 }
6270 continue;
6271 }
6272
Radek Krejcif13b87b2020-12-01 22:02:17 +01006273 if (set->val.scnodes[i].in_ctx != LYXP_SET_SCNODE_ATOM_CTX) {
6274 if (set->val.scnodes[i].in_ctx != LYXP_SET_SCNODE_START) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01006275 continue;
6276 }
6277
Michal Vasko519fd602020-05-26 12:17:39 +02006278 /* remember context node */
Radek Krejcif13b87b2020-12-01 22:02:17 +01006279 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_START_USED;
Michal Vasko519fd602020-05-26 12:17:39 +02006280 } else {
Radek Krejcif13b87b2020-12-01 22:02:17 +01006281 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006282 }
6283
Michal Vasko519fd602020-05-26 12:17:39 +02006284 start_parent = set->val.scnodes[i].scnode;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006285
Michal Vasko519fd602020-05-26 12:17:39 +02006286 if ((set->val.scnodes[i].type == LYXP_NODE_ROOT_CONFIG) || (set->val.scnodes[i].type == LYXP_NODE_ROOT)) {
6287 /* it can actually be in any module, it's all <running> */
6288 mod_idx = 0;
6289 while ((mod = (struct lys_module *)ly_ctx_get_module_iter(set->ctx, &mod_idx))) {
6290 iter = NULL;
6291 /* module may not be implemented */
6292 while (mod->implemented && (iter = lys_getnext(iter, NULL, mod->compiled, getnext_opts))) {
6293 /* context check */
6294 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (iter->flags & LYS_CONFIG_R)) {
6295 continue;
6296 }
6297
Radek Krejciaa6b53f2020-08-27 15:19:03 +02006298 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, iter, LYXP_NODE_ELEM, NULL));
Michal Vasko519fd602020-05-26 12:17:39 +02006299 /* throw away the insert index, we want to consider that node again, recursively */
6300 }
6301 }
6302
6303 } else if (set->val.scnodes[i].type == LYXP_NODE_ELEM) {
6304 iter = NULL;
6305 while ((iter = lys_getnext(iter, start_parent, NULL, getnext_opts))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006306 /* context check */
Michal Vasko519fd602020-05-26 12:17:39 +02006307 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (iter->flags & LYS_CONFIG_R)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006308 continue;
6309 }
6310
Radek Krejciaa6b53f2020-08-27 15:19:03 +02006311 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, iter, LYXP_NODE_ELEM, NULL));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006312 }
6313 }
6314 }
6315
6316 return LY_SUCCESS;
6317}
6318
6319/**
6320 * @brief Move context @p set to parent. Handles '/' or '//' and '..'. Result is LYXP_SET_NODE_SET
6321 * (or LYXP_SET_EMPTY). Context position aware.
6322 *
6323 * @param[in] set Set to use.
6324 * @param[in] all_desc Whether to go to all descendants ('//') or not ('/').
6325 * @param[in] options XPath options.
6326 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6327 */
6328static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02006329moveto_parent(struct lyxp_set *set, ly_bool all_desc, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006330{
6331 LY_ERR rc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006332 struct lyd_node *node, *new_node;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006333 enum lyxp_node_type new_type;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006334
Michal Vaskod3678892020-05-21 10:06:58 +02006335 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006336 return LY_SUCCESS;
6337 }
6338
6339 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01006340 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006341 return LY_EVALID;
6342 }
6343
6344 if (all_desc) {
6345 /* <path>//.. == <path>//./.. */
6346 rc = moveto_self(set, 1, options);
6347 LY_CHECK_RET(rc);
6348 }
6349
Radek Krejci1deb5be2020-08-26 16:43:36 +02006350 for (uint32_t i = 0; i < set->used; ++i) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006351 node = set->val.nodes[i].node;
6352
6353 if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
Michal Vasko9e685082021-01-29 14:49:09 +01006354 new_node = lyd_parent(node);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006355 } else if (set->val.nodes[i].type == LYXP_NODE_TEXT) {
6356 new_node = node;
Michal Vasko9f96a052020-03-10 09:41:45 +01006357 } else if (set->val.nodes[i].type == LYXP_NODE_META) {
6358 new_node = set->val.meta[i].meta->parent;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006359 if (!new_node) {
6360 LOGINT_RET(set->ctx);
6361 }
6362 } else {
6363 /* root does not have a parent */
Michal Vasko2caefc12019-11-14 16:07:56 +01006364 set_remove_node_none(set, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006365 continue;
6366 }
6367
Michal Vaskoa1424542019-11-14 16:08:52 +01006368 /* when check */
Michal Vaskod5cfa6e2020-11-23 16:56:08 +01006369 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 +02006370 return LY_EINCOMPLETE;
Michal Vaskoa1424542019-11-14 16:08:52 +01006371 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02006372
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006373 if (!new_node) {
Radek Krejcif6a11002020-08-21 13:29:07 +02006374 /* node already there can also be the root */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006375 new_type = set->root_type;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006376
Michal Vasko03ff5a72019-09-11 13:49:33 +02006377 } else {
Radek Krejcif6a11002020-08-21 13:29:07 +02006378 /* 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 +02006379 new_type = LYXP_NODE_ELEM;
6380 }
6381
Michal Vasko03ff5a72019-09-11 13:49:33 +02006382 if (set_dup_node_check(set, new_node, new_type, -1)) {
Michal Vasko2caefc12019-11-14 16:07:56 +01006383 set_remove_node_none(set, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006384 } else {
6385 set_replace_node(set, new_node, 0, new_type, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006386 }
6387 }
6388
Michal Vasko2caefc12019-11-14 16:07:56 +01006389 set_remove_nodes_none(set);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006390 assert(!set_sort(set) && !set_sorted_dup_node_clean(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006391
6392 return LY_SUCCESS;
6393}
6394
6395/**
6396 * @brief Move context schema @p set to parent. Handles '/' or '//' and '..'. Result is LYXP_SET_SCNODE_SET
6397 * (or LYXP_SET_EMPTY).
6398 *
6399 * @param[in] set Set to use.
6400 * @param[in] all_desc Whether to go to all descendants ('//') or not ('/').
6401 * @param[in] options XPath options.
6402 * @return LY_ERR
6403 */
6404static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02006405moveto_scnode_parent(struct lyxp_set *set, ly_bool all_desc, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006406{
Radek Krejciaa6b53f2020-08-27 15:19:03 +02006407 uint32_t i, orig_used, idx;
Radek Krejci857189e2020-09-01 13:26:36 +02006408 ly_bool temp_ctx = 0;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006409 const struct lysc_node *node, *new_node;
6410 enum lyxp_node_type new_type;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006411
Michal Vaskod3678892020-05-21 10:06:58 +02006412 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006413 return LY_SUCCESS;
6414 }
6415
6416 if (set->type != LYXP_SET_SCNODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01006417 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006418 return LY_EVALID;
6419 }
6420
6421 if (all_desc) {
6422 /* <path>//.. == <path>//./.. */
Radek Krejci1deb5be2020-08-26 16:43:36 +02006423 LY_CHECK_RET(moveto_scnode_self(set, 1, options));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006424 }
6425
Michal Vasko03ff5a72019-09-11 13:49:33 +02006426 orig_used = set->used;
6427 for (i = 0; i < orig_used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01006428 if (set->val.scnodes[i].in_ctx != LYXP_SET_SCNODE_ATOM_CTX) {
6429 if (set->val.scnodes[i].in_ctx != LYXP_SET_SCNODE_START) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01006430 continue;
6431 }
6432
6433 /* remember context node */
Radek Krejcif13b87b2020-12-01 22:02:17 +01006434 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_START_USED;
Michal Vaskoec4df482019-12-16 10:02:18 +01006435 } else {
Radek Krejcif13b87b2020-12-01 22:02:17 +01006436 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006437 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02006438
6439 node = set->val.scnodes[i].scnode;
6440
6441 if (set->val.scnodes[i].type == LYXP_NODE_ELEM) {
Michal Vaskod3678892020-05-21 10:06:58 +02006442 new_node = lysc_data_parent(node);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006443 } else {
6444 /* root does not have a parent */
6445 continue;
6446 }
6447
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006448 if (!new_node) {
Radek Krejcif6a11002020-08-21 13:29:07 +02006449 /* node has no parent */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006450 new_type = set->root_type;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006451
Michal Vasko03ff5a72019-09-11 13:49:33 +02006452 } else {
Radek Krejcif6a11002020-08-21 13:29:07 +02006453 /* 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 +02006454 new_type = LYXP_NODE_ELEM;
6455 }
6456
Radek Krejciaa6b53f2020-08-27 15:19:03 +02006457 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, new_node, new_type, &idx));
6458 if ((idx < orig_used) && (idx > i)) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01006459 set->val.scnodes[idx].in_ctx = LYXP_SET_SCNODE_ATOM_NEW_CTX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006460 temp_ctx = 1;
6461 }
6462 }
6463
6464 if (temp_ctx) {
6465 for (i = 0; i < orig_used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01006466 if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_NEW_CTX) {
6467 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006468 }
6469 }
6470 }
6471
6472 return LY_SUCCESS;
6473}
6474
6475/**
6476 * @brief Move context @p set to the result of a comparison. Handles '=', '!=', '<=', '<', '>=', or '>'.
6477 * Result is LYXP_SET_BOOLEAN. Indirectly context position aware.
6478 *
6479 * @param[in,out] set1 Set to use for the result.
6480 * @param[in] set2 Set acting as the second operand for @p op.
6481 * @param[in] op Comparison operator to process.
6482 * @param[in] options XPath options.
6483 * @return LY_ERR
6484 */
6485static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02006486moveto_op_comp(struct lyxp_set *set1, struct lyxp_set *set2, const char *op, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006487{
6488 /*
6489 * NODE SET + NODE SET = NODE SET + STRING /(1 NODE SET) 2 STRING
6490 * NODE SET + STRING = STRING + STRING /1 STRING (2 STRING)
6491 * NODE SET + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
6492 * NODE SET + BOOLEAN = BOOLEAN + BOOLEAN /1 BOOLEAN (2 BOOLEAN)
6493 * STRING + NODE SET = STRING + STRING /(1 STRING) 2 STRING
6494 * NUMBER + NODE SET = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
6495 * BOOLEAN + NODE SET = BOOLEAN + BOOLEAN /(1 BOOLEAN) 2 BOOLEAN
6496 *
6497 * '=' or '!='
6498 * BOOLEAN + BOOLEAN
6499 * BOOLEAN + STRING = BOOLEAN + BOOLEAN /(1 BOOLEAN) 2 BOOLEAN
6500 * BOOLEAN + NUMBER = BOOLEAN + BOOLEAN /(1 BOOLEAN) 2 BOOLEAN
6501 * STRING + BOOLEAN = BOOLEAN + BOOLEAN /1 BOOLEAN (2 BOOLEAN)
6502 * NUMBER + BOOLEAN = BOOLEAN + BOOLEAN /1 BOOLEAN (2 BOOLEAN)
6503 * NUMBER + NUMBER
6504 * NUMBER + STRING = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
6505 * STRING + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
6506 * STRING + STRING
6507 *
6508 * '<=', '<', '>=', '>'
6509 * NUMBER + NUMBER
6510 * BOOLEAN + BOOLEAN = NUMBER + NUMBER /1 NUMBER, 2 NUMBER
6511 * BOOLEAN + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
6512 * BOOLEAN + STRING = NUMBER + NUMBER /1 NUMBER, 2 NUMBER
6513 * NUMBER + STRING = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
6514 * STRING + STRING = NUMBER + NUMBER /1 NUMBER, 2 NUMBER
6515 * STRING + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
6516 * NUMBER + BOOLEAN = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
6517 * STRING + BOOLEAN = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
6518 */
6519 struct lyxp_set iter1, iter2;
6520 int result;
6521 int64_t i;
6522 LY_ERR rc;
6523
Michal Vasko004d3152020-06-11 19:59:22 +02006524 memset(&iter1, 0, sizeof iter1);
6525 memset(&iter2, 0, sizeof iter2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006526
6527 /* iterative evaluation with node-sets */
6528 if ((set1->type == LYXP_SET_NODE_SET) || (set2->type == LYXP_SET_NODE_SET)) {
6529 if (set1->type == LYXP_SET_NODE_SET) {
6530 for (i = 0; i < set1->used; ++i) {
Michal Vasko4c7763f2020-07-27 17:40:37 +02006531 /* cast set1 */
Michal Vasko03ff5a72019-09-11 13:49:33 +02006532 switch (set2->type) {
6533 case LYXP_SET_NUMBER:
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006534 rc = set_comp_cast(&iter1, set1, LYXP_SET_NUMBER, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006535 break;
6536 case LYXP_SET_BOOLEAN:
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006537 rc = set_comp_cast(&iter1, set1, LYXP_SET_BOOLEAN, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006538 break;
6539 default:
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006540 rc = set_comp_cast(&iter1, set1, LYXP_SET_STRING, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006541 break;
6542 }
6543 LY_CHECK_RET(rc);
6544
Michal Vasko4c7763f2020-07-27 17:40:37 +02006545 /* canonize set2 */
6546 LY_CHECK_ERR_RET(rc = set_comp_canonize(&iter2, set2, &set1->val.nodes[i]), lyxp_set_free_content(&iter1), rc);
6547
6548 /* compare recursively */
6549 rc = moveto_op_comp(&iter1, &iter2, op, options);
6550 lyxp_set_free_content(&iter2);
6551 LY_CHECK_ERR_RET(rc, lyxp_set_free_content(&iter1), rc);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006552
6553 /* lazy evaluation until true */
Michal Vasko004d3152020-06-11 19:59:22 +02006554 if (iter1.val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006555 set_fill_boolean(set1, 1);
6556 return LY_SUCCESS;
6557 }
6558 }
6559 } else {
6560 for (i = 0; i < set2->used; ++i) {
Michal Vasko4c7763f2020-07-27 17:40:37 +02006561 /* set set2 */
Michal Vasko03ff5a72019-09-11 13:49:33 +02006562 switch (set1->type) {
Michal Vasko4c7763f2020-07-27 17:40:37 +02006563 case LYXP_SET_NUMBER:
6564 rc = set_comp_cast(&iter2, set2, LYXP_SET_NUMBER, i);
6565 break;
6566 case LYXP_SET_BOOLEAN:
6567 rc = set_comp_cast(&iter2, set2, LYXP_SET_BOOLEAN, i);
6568 break;
6569 default:
6570 rc = set_comp_cast(&iter2, set2, LYXP_SET_STRING, i);
6571 break;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006572 }
6573 LY_CHECK_RET(rc);
6574
Michal Vasko4c7763f2020-07-27 17:40:37 +02006575 /* canonize set1 */
6576 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 +02006577
Michal Vasko4c7763f2020-07-27 17:40:37 +02006578 /* compare recursively */
Michal Vasko03ff5a72019-09-11 13:49:33 +02006579 rc = moveto_op_comp(&iter1, &iter2, op, options);
Michal Vaskod3678892020-05-21 10:06:58 +02006580 lyxp_set_free_content(&iter2);
Michal Vasko4c7763f2020-07-27 17:40:37 +02006581 LY_CHECK_ERR_RET(rc, lyxp_set_free_content(&iter1), rc);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006582
6583 /* lazy evaluation until true */
Michal Vasko004d3152020-06-11 19:59:22 +02006584 if (iter1.val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006585 set_fill_boolean(set1, 1);
6586 return LY_SUCCESS;
6587 }
6588 }
6589 }
6590
6591 /* false for all nodes */
6592 set_fill_boolean(set1, 0);
6593 return LY_SUCCESS;
6594 }
6595
6596 /* first convert properly */
6597 if ((op[0] == '=') || (op[0] == '!')) {
6598 if ((set1->type == LYXP_SET_BOOLEAN) || (set2->type == LYXP_SET_BOOLEAN)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006599 lyxp_set_cast(set1, LYXP_SET_BOOLEAN);
6600 lyxp_set_cast(set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006601 } else if ((set1->type == LYXP_SET_NUMBER) || (set2->type == LYXP_SET_NUMBER)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006602 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006603 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006604 rc = lyxp_set_cast(set2, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006605 LY_CHECK_RET(rc);
6606 } /* else we have 2 strings */
6607 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006608 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006609 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006610 rc = lyxp_set_cast(set2, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006611 LY_CHECK_RET(rc);
6612 }
6613
6614 assert(set1->type == set2->type);
6615
6616 /* compute result */
6617 if (op[0] == '=') {
6618 if (set1->type == LYXP_SET_BOOLEAN) {
Michal Vasko004d3152020-06-11 19:59:22 +02006619 result = (set1->val.bln == set2->val.bln);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006620 } else if (set1->type == LYXP_SET_NUMBER) {
6621 result = (set1->val.num == set2->val.num);
6622 } else {
6623 assert(set1->type == LYXP_SET_STRING);
Michal Vaskoac6c72f2019-11-14 16:09:34 +01006624 result = !strcmp(set1->val.str, set2->val.str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006625 }
6626 } else if (op[0] == '!') {
6627 if (set1->type == LYXP_SET_BOOLEAN) {
Michal Vasko004d3152020-06-11 19:59:22 +02006628 result = (set1->val.bln != set2->val.bln);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006629 } else if (set1->type == LYXP_SET_NUMBER) {
6630 result = (set1->val.num != set2->val.num);
6631 } else {
6632 assert(set1->type == LYXP_SET_STRING);
Michal Vaskoc2058432020-11-06 17:26:21 +01006633 result = strcmp(set1->val.str, set2->val.str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006634 }
6635 } else {
6636 assert(set1->type == LYXP_SET_NUMBER);
6637 if (op[0] == '<') {
6638 if (op[1] == '=') {
6639 result = (set1->val.num <= set2->val.num);
6640 } else {
6641 result = (set1->val.num < set2->val.num);
6642 }
6643 } else {
6644 if (op[1] == '=') {
6645 result = (set1->val.num >= set2->val.num);
6646 } else {
6647 result = (set1->val.num > set2->val.num);
6648 }
6649 }
6650 }
6651
6652 /* assign result */
6653 if (result) {
6654 set_fill_boolean(set1, 1);
6655 } else {
6656 set_fill_boolean(set1, 0);
6657 }
6658
6659 return LY_SUCCESS;
6660}
6661
6662/**
6663 * @brief Move context @p set to the result of a basic operation. Handles '+', '-', unary '-', '*', 'div',
6664 * or 'mod'. Result is LYXP_SET_NUMBER. Indirectly context position aware.
6665 *
6666 * @param[in,out] set1 Set to use for the result.
6667 * @param[in] set2 Set acting as the second operand for @p op.
6668 * @param[in] op Operator to process.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006669 * @return LY_ERR
6670 */
6671static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006672moveto_op_math(struct lyxp_set *set1, struct lyxp_set *set2, const char *op)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006673{
6674 LY_ERR rc;
6675
6676 /* unary '-' */
6677 if (!set2 && (op[0] == '-')) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006678 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006679 LY_CHECK_RET(rc);
6680 set1->val.num *= -1;
6681 lyxp_set_free(set2);
6682 return LY_SUCCESS;
6683 }
6684
6685 assert(set1 && set2);
6686
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006687 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006688 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006689 rc = lyxp_set_cast(set2, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006690 LY_CHECK_RET(rc);
6691
6692 switch (op[0]) {
6693 /* '+' */
6694 case '+':
6695 set1->val.num += set2->val.num;
6696 break;
6697
6698 /* '-' */
6699 case '-':
6700 set1->val.num -= set2->val.num;
6701 break;
6702
6703 /* '*' */
6704 case '*':
6705 set1->val.num *= set2->val.num;
6706 break;
6707
6708 /* 'div' */
6709 case 'd':
6710 set1->val.num /= set2->val.num;
6711 break;
6712
6713 /* 'mod' */
6714 case 'm':
6715 set1->val.num = ((long long)set1->val.num) % ((long long)set2->val.num);
6716 break;
6717
6718 default:
6719 LOGINT_RET(set1->ctx);
6720 }
6721
6722 return LY_SUCCESS;
6723}
6724
6725/*
6726 * eval functions
6727 *
6728 * They execute a parsed XPath expression on some data subtree.
6729 */
6730
6731/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02006732 * @brief Evaluate Predicate. Logs directly on error.
6733 *
Michal Vaskod3678892020-05-21 10:06:58 +02006734 * [9] Predicate ::= '[' Expr ']'
Michal Vasko03ff5a72019-09-11 13:49:33 +02006735 *
6736 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02006737 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006738 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
6739 * @param[in] options XPath options.
6740 * @param[in] parent_pos_pred Whether parent predicate was a positional one.
6741 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6742 */
6743static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02006744eval_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 +02006745{
6746 LY_ERR rc;
Michal Vasko1fdd8fa2021-01-08 09:21:45 +01006747 uint16_t orig_exp;
6748 uint32_t i, orig_pos, orig_size;
Michal Vasko5c4e5892019-11-14 12:31:38 +01006749 int32_t pred_in_ctx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006750 struct lyxp_set set2;
6751 struct lyd_node *orig_parent;
6752
6753 /* '[' */
6754 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02006755 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02006756 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006757
6758 if (!set) {
6759only_parse:
Michal Vasko004d3152020-06-11 19:59:22 +02006760 rc = eval_expr_select(exp, tok_idx, 0, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006761 LY_CHECK_RET(rc);
6762 } else if (set->type == LYXP_SET_NODE_SET) {
6763 /* 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 +01006764 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006765
6766 /* empty set, nothing to evaluate */
6767 if (!set->used) {
6768 goto only_parse;
6769 }
6770
Michal Vasko004d3152020-06-11 19:59:22 +02006771 orig_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006772 orig_pos = 0;
6773 orig_size = set->used;
6774 orig_parent = NULL;
Michal Vasko39dbf352020-05-21 10:08:59 +02006775 for (i = 0; i < set->used; ++i) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006776 set_init(&set2, set);
6777 set_insert_node(&set2, set->val.nodes[i].node, set->val.nodes[i].pos, set->val.nodes[i].type, 0);
6778 /* remember the node context position for position() and context size for last(),
6779 * predicates should always be evaluated with respect to the child axis (since we do
6780 * not support explicit axes) so we assign positions based on their parents */
Michal Vasko9e685082021-01-29 14:49:09 +01006781 if (parent_pos_pred && (lyd_parent(set->val.nodes[i].node) != orig_parent)) {
6782 orig_parent = lyd_parent(set->val.nodes[i].node);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006783 orig_pos = 1;
6784 } else {
6785 ++orig_pos;
6786 }
6787
6788 set2.ctx_pos = orig_pos;
6789 set2.ctx_size = orig_size;
Michal Vasko004d3152020-06-11 19:59:22 +02006790 *tok_idx = orig_exp;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006791
Michal Vasko004d3152020-06-11 19:59:22 +02006792 rc = eval_expr_select(exp, tok_idx, 0, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006793 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02006794 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006795 return rc;
6796 }
6797
6798 /* number is a position */
6799 if (set2.type == LYXP_SET_NUMBER) {
6800 if ((long long)set2.val.num == orig_pos) {
6801 set2.val.num = 1;
6802 } else {
6803 set2.val.num = 0;
6804 }
6805 }
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006806 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006807
6808 /* predicate satisfied or not? */
Michal Vasko004d3152020-06-11 19:59:22 +02006809 if (!set2.val.bln) {
Michal Vasko2caefc12019-11-14 16:07:56 +01006810 set_remove_node_none(set, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006811 }
6812 }
Michal Vasko2caefc12019-11-14 16:07:56 +01006813 set_remove_nodes_none(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006814
6815 } else if (set->type == LYXP_SET_SCNODE_SET) {
6816 for (i = 0; i < set->used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01006817 if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006818 /* there is a currently-valid node */
6819 break;
6820 }
6821 }
6822 /* empty set, nothing to evaluate */
6823 if (i == set->used) {
6824 goto only_parse;
6825 }
6826
Michal Vasko004d3152020-06-11 19:59:22 +02006827 orig_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006828
Michal Vasko03ff5a72019-09-11 13:49:33 +02006829 /* set special in_ctx to all the valid snodes */
6830 pred_in_ctx = set_scnode_new_in_ctx(set);
6831
6832 /* use the valid snodes one-by-one */
6833 for (i = 0; i < set->used; ++i) {
6834 if (set->val.scnodes[i].in_ctx != pred_in_ctx) {
6835 continue;
6836 }
Radek Krejcif13b87b2020-12-01 22:02:17 +01006837 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006838
Michal Vasko004d3152020-06-11 19:59:22 +02006839 *tok_idx = orig_exp;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006840
Michal Vasko004d3152020-06-11 19:59:22 +02006841 rc = eval_expr_select(exp, tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006842 LY_CHECK_RET(rc);
6843
6844 set->val.scnodes[i].in_ctx = pred_in_ctx;
6845 }
6846
6847 /* restore the state as it was before the predicate */
6848 for (i = 0; i < set->used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01006849 if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) {
6850 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006851 } else if (set->val.scnodes[i].in_ctx == pred_in_ctx) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01006852 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006853 }
6854 }
6855
6856 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02006857 set2.type = LYXP_SET_NODE_SET;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006858 set_fill_set(&set2, set);
6859
Michal Vasko004d3152020-06-11 19:59:22 +02006860 rc = eval_expr_select(exp, tok_idx, 0, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006861 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02006862 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006863 return rc;
6864 }
6865
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006866 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko004d3152020-06-11 19:59:22 +02006867 if (!set2.val.bln) {
Michal Vaskod3678892020-05-21 10:06:58 +02006868 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006869 }
Michal Vaskod3678892020-05-21 10:06:58 +02006870 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006871 }
6872
6873 /* ']' */
Michal Vasko004d3152020-06-11 19:59:22 +02006874 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_BRACK2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006875 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02006876 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02006877 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006878
6879 return LY_SUCCESS;
6880}
6881
6882/**
Michal Vaskod3678892020-05-21 10:06:58 +02006883 * @brief Evaluate Literal. Logs directly on error.
6884 *
6885 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02006886 * @param[in] tok_idx Position in the expression @p exp.
Michal Vaskod3678892020-05-21 10:06:58 +02006887 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
6888 */
6889static void
Michal Vasko40308e72020-10-20 16:38:40 +02006890eval_literal(const struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set)
Michal Vaskod3678892020-05-21 10:06:58 +02006891{
6892 if (set) {
Michal Vasko004d3152020-06-11 19:59:22 +02006893 if (exp->tok_len[*tok_idx] == 2) {
Michal Vaskod3678892020-05-21 10:06:58 +02006894 set_fill_string(set, "", 0);
6895 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02006896 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 +02006897 }
6898 }
6899 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02006900 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02006901 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02006902}
6903
6904/**
Michal Vasko004d3152020-06-11 19:59:22 +02006905 * @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 +02006906 *
Michal Vasko004d3152020-06-11 19:59:22 +02006907 * @param[in] exp Full parsed XPath expression.
6908 * @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 +02006909 * @param[in] ctx_node Found schema node as the context for the predicate.
6910 * @param[in] cur_mod Current module for the expression.
6911 * @param[in] cur_node Current (original context) node.
Michal Vasko004d3152020-06-11 19:59:22 +02006912 * @param[in] format Format of any prefixes in key names/values.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006913 * @param[in] prefix_data Format-specific prefix data (see ::ly_resolve_prefix).
Michal Vasko004d3152020-06-11 19:59:22 +02006914 * @param[out] predicates Parsed predicates.
6915 * @param[out] pred_type Type of @p predicates.
6916 * @return LY_SUCCESS on success,
6917 * @return LY_ERR on any error.
Michal Vaskod3678892020-05-21 10:06:58 +02006918 */
6919static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02006920eval_name_test_try_compile_predicates(const struct lyxp_expr *exp, uint16_t *tok_idx, const struct lysc_node *ctx_node,
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006921 const struct lys_module *cur_mod, const struct lysc_node *cur_node, LY_PREFIX_FORMAT format, void *prefix_data,
6922 struct ly_path_predicate **predicates, enum ly_path_pred_type *pred_type)
Michal Vaskod3678892020-05-21 10:06:58 +02006923{
Michal Vasko004d3152020-06-11 19:59:22 +02006924 LY_ERR ret = LY_SUCCESS;
6925 uint16_t key_count, e_idx, pred_idx = 0;
Michal Vaskod3678892020-05-21 10:06:58 +02006926 const struct lysc_node *key;
Michal Vasko004d3152020-06-11 19:59:22 +02006927 size_t pred_len;
Radek Krejci1deb5be2020-08-26 16:43:36 +02006928 uint32_t prev_lo;
Michal Vasko004d3152020-06-11 19:59:22 +02006929 struct lyxp_expr *exp2 = NULL;
Michal Vaskod3678892020-05-21 10:06:58 +02006930
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006931 assert(ctx_node->nodetype & (LYS_LIST | LYS_LEAFLIST));
Michal Vaskod3678892020-05-21 10:06:58 +02006932
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006933 if (ctx_node->nodetype == LYS_LIST) {
Michal Vasko004d3152020-06-11 19:59:22 +02006934 /* get key count */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006935 if (ctx_node->flags & LYS_KEYLESS) {
Michal Vasko004d3152020-06-11 19:59:22 +02006936 return LY_EINVAL;
6937 }
Michal Vasko544e58a2021-01-28 14:33:41 +01006938 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 +02006939 assert(key_count);
Michal Vaskod3678892020-05-21 10:06:58 +02006940
Michal Vasko004d3152020-06-11 19:59:22 +02006941 /* learn where the predicates end */
6942 e_idx = *tok_idx;
6943 while (key_count) {
6944 /* '[' */
6945 if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK1)) {
6946 return LY_EINVAL;
6947 }
6948 ++e_idx;
6949
Michal Vasko3354d272021-04-06 09:40:06 +02006950 if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_NAMETEST)) {
6951 /* definitely not a key */
6952 return LY_EINVAL;
6953 }
6954
Michal Vasko004d3152020-06-11 19:59:22 +02006955 /* ']' */
6956 while (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK2)) {
6957 ++e_idx;
6958 }
6959 ++e_idx;
6960
6961 /* another presumably key predicate parsed */
6962 --key_count;
6963 }
Michal Vasko004d3152020-06-11 19:59:22 +02006964 } else {
6965 /* learn just where this single predicate ends */
6966 e_idx = *tok_idx;
6967
Michal Vaskod3678892020-05-21 10:06:58 +02006968 /* '[' */
Michal Vasko004d3152020-06-11 19:59:22 +02006969 if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK1)) {
6970 return LY_EINVAL;
6971 }
6972 ++e_idx;
Michal Vaskod3678892020-05-21 10:06:58 +02006973
Michal Vasko3354d272021-04-06 09:40:06 +02006974 if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_DOT)) {
6975 /* definitely not the value */
6976 return LY_EINVAL;
6977 }
6978
Michal Vaskod3678892020-05-21 10:06:58 +02006979 /* ']' */
Michal Vasko004d3152020-06-11 19:59:22 +02006980 while (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK2)) {
6981 ++e_idx;
6982 }
6983 ++e_idx;
Michal Vaskod3678892020-05-21 10:06:58 +02006984 }
6985
Michal Vasko004d3152020-06-11 19:59:22 +02006986 /* get the joined length of all the keys predicates/of the single leaf-list predicate */
6987 pred_len = (exp->tok_pos[e_idx - 1] + exp->tok_len[e_idx - 1]) - exp->tok_pos[*tok_idx];
6988
6989 /* turn logging off */
6990 prev_lo = ly_log_options(0);
6991
6992 /* parse the predicate(s) */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006993 LY_CHECK_GOTO(ret = ly_path_parse_predicate(ctx_node->module->ctx, ctx_node, exp->expr + exp->tok_pos[*tok_idx],
6994 pred_len, LY_PATH_PREFIX_OPTIONAL, LY_PATH_PRED_SIMPLE, &exp2), cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02006995
6996 /* compile */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006997 ret = ly_path_compile_predicate(ctx_node->module->ctx, cur_node, cur_mod, ctx_node, exp2, &pred_idx, format,
6998 prefix_data, predicates, pred_type);
Michal Vasko004d3152020-06-11 19:59:22 +02006999 LY_CHECK_GOTO(ret, cleanup);
7000
7001 /* success, the predicate must include all the needed information for hash-based search */
7002 *tok_idx = e_idx;
7003
7004cleanup:
7005 ly_log_options(prev_lo);
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007006 lyxp_expr_free(ctx_node->module->ctx, exp2);
Michal Vasko004d3152020-06-11 19:59:22 +02007007 return ret;
Michal Vaskod3678892020-05-21 10:06:58 +02007008}
7009
7010/**
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007011 * @brief Search for/check the next schema node that could be the only matching schema node meaning the
7012 * data node(s) could be found using a single hash-based search.
7013 *
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007014 * @param[in] ctx libyang context.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007015 * @param[in] node Next context node to check.
7016 * @param[in] name Expected node name.
7017 * @param[in] name_len Length of @p name.
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007018 * @param[in] moveto_mod Expected node module, can be NULL for JSON format with no prefix.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007019 * @param[in] root_type XPath root type.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007020 * @param[in] format Prefix format.
7021 * @param[in,out] found Previously found node, is updated.
7022 * @return LY_SUCCESS on success,
7023 * @return LY_ENOT if the whole check failed and hashes cannot be used.
7024 */
7025static LY_ERR
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007026eval_name_test_with_predicate_get_scnode(const struct ly_ctx *ctx, const struct lyd_node *node, const char *name,
7027 uint16_t name_len, const struct lys_module *moveto_mod, enum lyxp_node_type root_type, LY_PREFIX_FORMAT format,
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007028 const struct lysc_node **found)
7029{
7030 const struct lysc_node *scnode;
7031 const struct lys_module *mod;
7032 uint32_t idx = 0;
7033
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007034 assert((format == LY_PREF_JSON) || moveto_mod);
7035
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007036continue_search:
Michal Vasko7d1d0912020-10-16 08:38:30 +02007037 scnode = NULL;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007038 if (!node) {
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007039 if ((format == LY_PREF_JSON) && !moveto_mod) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007040 /* search all modules for a single match */
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007041 while ((mod = ly_ctx_get_module_iter(ctx, &idx))) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007042 scnode = lys_find_child(NULL, mod, name, name_len, 0, 0);
7043 if (scnode) {
7044 /* we have found a match */
7045 break;
7046 }
7047 }
7048
Michal Vasko7d1d0912020-10-16 08:38:30 +02007049 if (!scnode) {
7050 /* all modules searched */
7051 idx = 0;
7052 }
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007053 } else {
7054 /* search in top-level */
7055 scnode = lys_find_child(NULL, moveto_mod, name, name_len, 0, 0);
7056 }
7057 } else if (!*found || (lysc_data_parent(*found) != node->schema)) {
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007058 if ((format == LY_PREF_JSON) && !moveto_mod) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007059 /* we must adjust the module to inherit the one from the context node */
7060 moveto_mod = node->schema->module;
7061 }
7062
7063 /* search in children, do not repeat the same search */
7064 scnode = lys_find_child(node->schema, moveto_mod, name, name_len, 0, 0);
Michal Vasko7d1d0912020-10-16 08:38:30 +02007065 } /* else skip redundant search */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007066
7067 /* additional context check */
7068 if (scnode && (root_type == LYXP_NODE_ROOT_CONFIG) && (scnode->flags & LYS_CONFIG_R)) {
7069 scnode = NULL;
7070 }
7071
7072 if (scnode) {
7073 if (*found) {
7074 /* we found a schema node with the same name but at different level, give up, too complicated
7075 * (more hash-based searches would be required, not supported) */
7076 return LY_ENOT;
7077 } else {
7078 /* remember the found schema node and continue to make sure it can be used */
7079 *found = scnode;
7080 }
7081 }
7082
7083 if (idx) {
7084 /* continue searching all the following models */
7085 goto continue_search;
7086 }
7087
7088 return LY_SUCCESS;
7089}
7090
7091/**
Michal Vaskod3678892020-05-21 10:06:58 +02007092 * @brief Evaluate NameTest and any following Predicates. Logs directly on error.
7093 *
7094 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
7095 * [6] NodeTest ::= NameTest | NodeType '(' ')'
7096 * [7] NameTest ::= '*' | NCName ':' '*' | QName
7097 *
7098 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007099 * @param[in] tok_idx Position in the expression @p exp.
Michal Vaskod3678892020-05-21 10:06:58 +02007100 * @param[in] attr_axis Whether to search attributes or standard nodes.
7101 * @param[in] all_desc Whether to search all the descendants or children only.
7102 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7103 * @param[in] options XPath options.
7104 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7105 */
7106static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02007107eval_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 +02007108 struct lyxp_set *set, uint32_t options)
Michal Vaskod3678892020-05-21 10:06:58 +02007109{
Michal Vaskod3678892020-05-21 10:06:58 +02007110 char *path;
Michal Vasko004d3152020-06-11 19:59:22 +02007111 const char *ncname, *ncname_dict = NULL;
7112 uint16_t ncname_len;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007113 const struct lys_module *moveto_mod = NULL;
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007114 const struct lysc_node *scnode = NULL;
Michal Vasko004d3152020-06-11 19:59:22 +02007115 struct ly_path_predicate *predicates = NULL;
7116 enum ly_path_pred_type pred_type = 0;
Michal Vaskod3678892020-05-21 10:06:58 +02007117 LY_ERR rc = LY_SUCCESS;
7118
7119 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007120 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007121 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007122
7123 if (!set) {
7124 goto moveto;
7125 }
7126
Michal Vasko004d3152020-06-11 19:59:22 +02007127 ncname = &exp->expr[exp->tok_pos[*tok_idx - 1]];
7128 ncname_len = exp->tok_len[*tok_idx - 1];
Michal Vaskod3678892020-05-21 10:06:58 +02007129
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007130 if ((ncname[0] == '*') && (ncname_len == 1)) {
7131 /* all nodes will match */
7132 goto moveto;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007133 }
7134
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007135 /* parse (and skip) module name */
7136 rc = moveto_resolve_model(&ncname, &ncname_len, set, NULL, &moveto_mod);
Michal Vaskod3678892020-05-21 10:06:58 +02007137 LY_CHECK_GOTO(rc, cleanup);
7138
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007139 if (((set->format == LY_PREF_JSON) || moveto_mod) && !attr_axis && !all_desc && (set->type == LYXP_SET_NODE_SET)) {
Michal Vaskod3678892020-05-21 10:06:58 +02007140 /* find the matching schema node in some parent in the context */
Radek Krejci1deb5be2020-08-26 16:43:36 +02007141 for (uint32_t i = 0; i < set->used; ++i) {
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007142 if (eval_name_test_with_predicate_get_scnode(set->ctx, set->val.nodes[i].node, ncname, ncname_len,
7143 moveto_mod, set->root_type, set->format, &scnode)) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007144 /* check failed */
7145 scnode = NULL;
7146 break;
Michal Vaskod3678892020-05-21 10:06:58 +02007147 }
7148 }
7149
Michal Vasko004d3152020-06-11 19:59:22 +02007150 if (scnode && (scnode->nodetype & (LYS_LIST | LYS_LEAFLIST))) {
7151 /* try to create the predicates */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007152 if (eval_name_test_try_compile_predicates(exp, tok_idx, scnode, set->cur_mod, set->cur_node ?
7153 set->cur_node->schema : NULL, set->format, set->prefix_data, &predicates, &pred_type)) {
Michal Vasko004d3152020-06-11 19:59:22 +02007154 /* hashes cannot be used */
Michal Vaskod3678892020-05-21 10:06:58 +02007155 scnode = NULL;
7156 }
7157 }
7158 }
7159
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007160 if (!scnode) {
7161 /* we are not able to match based on a schema node and not all the modules match ("*"),
Michal Vasko004d3152020-06-11 19:59:22 +02007162 * use dictionary for efficient comparison */
Radek Krejci011e4aa2020-09-04 15:22:31 +02007163 LY_CHECK_GOTO(rc = lydict_insert(set->ctx, ncname, ncname_len, &ncname_dict), cleanup);
Michal Vaskod3678892020-05-21 10:06:58 +02007164 }
7165
7166moveto:
7167 /* move to the attribute(s), data node(s), or schema node(s) */
7168 if (attr_axis) {
7169 if (set && (options & LYXP_SCNODE_ALL)) {
7170 set_scnode_clear_ctx(set);
7171 } else {
7172 if (all_desc) {
Michal Vaskocdad7122020-11-09 21:04:44 +01007173 rc = moveto_attr_alldesc(set, moveto_mod, ncname_dict, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007174 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007175 rc = moveto_attr(set, moveto_mod, ncname_dict);
Michal Vaskod3678892020-05-21 10:06:58 +02007176 }
7177 LY_CHECK_GOTO(rc, cleanup);
7178 }
7179 } else {
7180 if (set && (options & LYXP_SCNODE_ALL)) {
Radek Krejci1deb5be2020-08-26 16:43:36 +02007181 int64_t i;
7182
Michal Vaskod3678892020-05-21 10:06:58 +02007183 if (all_desc) {
Michal Vasko004d3152020-06-11 19:59:22 +02007184 rc = moveto_scnode_alldesc(set, moveto_mod, ncname_dict, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007185 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007186 rc = moveto_scnode(set, moveto_mod, ncname_dict, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007187 }
7188 LY_CHECK_GOTO(rc, cleanup);
7189
7190 for (i = set->used - 1; i > -1; --i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01007191 if (set->val.scnodes[i].in_ctx > LYXP_SET_SCNODE_ATOM) {
Michal Vaskod3678892020-05-21 10:06:58 +02007192 break;
7193 }
7194 }
7195 if (i == -1) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007196 path = lysc_path(set->cur_scnode, LYSC_PATH_LOG, NULL, 0);
Michal Vasko90f12dc2020-12-03 14:20:42 +01007197 LOGWRN(set->ctx, "Schema node \"%.*s\" not found (\"%.*s\") with context node \"%s\".",
7198 ncname_len, ncname, (ncname - exp->expr) + ncname_len, exp->expr, path);
Michal Vaskod3678892020-05-21 10:06:58 +02007199 free(path);
7200 }
7201 } else {
7202 if (all_desc) {
Michal Vaskocdad7122020-11-09 21:04:44 +01007203 rc = moveto_node_alldesc(set, moveto_mod, ncname_dict, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007204 } else {
7205 if (scnode) {
7206 /* we can find the nodes using hashes */
Michal Vaskocdad7122020-11-09 21:04:44 +01007207 rc = moveto_node_hash(set, scnode, predicates, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007208 } else {
Michal Vaskocdad7122020-11-09 21:04:44 +01007209 rc = moveto_node(set, moveto_mod, ncname_dict, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007210 }
7211 }
7212 LY_CHECK_GOTO(rc, cleanup);
7213 }
7214 }
7215
7216 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007217 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
7218 rc = eval_predicate(exp, tok_idx, set, options, 1);
Michal Vaskod3678892020-05-21 10:06:58 +02007219 LY_CHECK_RET(rc);
7220 }
7221
7222cleanup:
Michal Vaskodb51a8d2020-05-27 15:22:29 +02007223 if (set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007224 lydict_remove(set->ctx, ncname_dict);
Michal Vaskof7e16e22020-10-21 09:24:39 +02007225 ly_path_predicates_free(set->ctx, pred_type, predicates);
Michal Vaskodb51a8d2020-05-27 15:22:29 +02007226 }
Michal Vaskod3678892020-05-21 10:06:58 +02007227 return rc;
7228}
7229
7230/**
7231 * @brief Evaluate NodeType and any following Predicates. Logs directly on error.
7232 *
7233 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
7234 * [6] NodeTest ::= NameTest | NodeType '(' ')'
7235 * [8] NodeType ::= 'text' | 'node'
7236 *
7237 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007238 * @param[in] tok_idx Position in the expression @p exp.
Michal Vaskod3678892020-05-21 10:06:58 +02007239 * @param[in] attr_axis Whether to search attributes or standard nodes.
7240 * @param[in] all_desc Whether to search all the descendants or children only.
7241 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7242 * @param[in] options XPath options.
7243 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7244 */
7245static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02007246eval_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 +02007247 struct lyxp_set *set, uint32_t options)
Michal Vaskod3678892020-05-21 10:06:58 +02007248{
7249 LY_ERR rc;
7250
7251 /* TODO */
7252 (void)attr_axis;
7253 (void)all_desc;
7254
7255 if (set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007256 assert(exp->tok_len[*tok_idx] == 4);
Michal Vaskod3678892020-05-21 10:06:58 +02007257 if (set->type == LYXP_SET_SCNODE_SET) {
7258 set_scnode_clear_ctx(set);
7259 /* just for the debug message below */
7260 set = NULL;
7261 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007262 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "node", 4)) {
Michal Vaskod3678892020-05-21 10:06:58 +02007263 rc = xpath_node(NULL, 0, set, options);
7264 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007265 assert(!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "text", 4));
Michal Vaskod3678892020-05-21 10:06:58 +02007266 rc = xpath_text(NULL, 0, set, options);
7267 }
7268 LY_CHECK_RET(rc);
7269 }
7270 }
7271 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007272 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007273 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007274
7275 /* '(' */
Michal Vasko004d3152020-06-11 19:59:22 +02007276 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR1);
Michal Vaskod3678892020-05-21 10:06:58 +02007277 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007278 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007279 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007280
7281 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02007282 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR2);
Michal Vaskod3678892020-05-21 10:06:58 +02007283 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007284 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007285 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007286
7287 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007288 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
7289 rc = eval_predicate(exp, tok_idx, set, options, 1);
Michal Vaskod3678892020-05-21 10:06:58 +02007290 LY_CHECK_RET(rc);
7291 }
7292
7293 return LY_SUCCESS;
7294}
7295
7296/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02007297 * @brief Evaluate RelativeLocationPath. Logs directly on error.
7298 *
7299 * [4] RelativeLocationPath ::= Step | RelativeLocationPath '/' Step | RelativeLocationPath '//' Step
7300 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
Michal Vaskod3678892020-05-21 10:06:58 +02007301 * [6] NodeTest ::= NameTest | NodeType '(' ')'
Michal Vasko03ff5a72019-09-11 13:49:33 +02007302 *
7303 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007304 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007305 * @param[in] all_desc Whether to search all the descendants or children only.
7306 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7307 * @param[in] options XPath options.
7308 * @return LY_ERR (YL_EINCOMPLETE on unresolved when)
7309 */
7310static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02007311eval_relative_location_path(const struct lyxp_expr *exp, uint16_t *tok_idx, ly_bool all_desc, struct lyxp_set *set,
7312 uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007313{
Radek Krejci857189e2020-09-01 13:26:36 +02007314 ly_bool attr_axis;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007315 LY_ERR rc;
7316
7317 goto step;
7318 do {
7319 /* evaluate '/' or '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02007320 if (exp->tok_len[*tok_idx] == 1) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007321 all_desc = 0;
7322 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007323 assert(exp->tok_len[*tok_idx] == 2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007324 all_desc = 1;
7325 }
7326 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007327 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007328 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007329
7330step:
Michal Vaskod3678892020-05-21 10:06:58 +02007331 /* evaluate abbreviated axis '@'? if any */
Michal Vasko004d3152020-06-11 19:59:22 +02007332 if (exp->tokens[*tok_idx] == LYXP_TOKEN_AT) {
Michal Vaskod3678892020-05-21 10:06:58 +02007333 attr_axis = 1;
7334
7335 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007336 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007337 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007338 } else {
7339 attr_axis = 0;
7340 }
7341
Michal Vasko03ff5a72019-09-11 13:49:33 +02007342 /* Step */
Michal Vasko004d3152020-06-11 19:59:22 +02007343 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007344 case LYXP_TOKEN_DOT:
7345 /* evaluate '.' */
7346 if (set && (options & LYXP_SCNODE_ALL)) {
7347 rc = moveto_scnode_self(set, all_desc, options);
7348 } else {
7349 rc = moveto_self(set, all_desc, options);
7350 }
7351 LY_CHECK_RET(rc);
7352 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007353 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007354 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007355 break;
7356
7357 case LYXP_TOKEN_DDOT:
7358 /* evaluate '..' */
7359 if (set && (options & LYXP_SCNODE_ALL)) {
7360 rc = moveto_scnode_parent(set, all_desc, options);
7361 } else {
7362 rc = moveto_parent(set, all_desc, options);
7363 }
7364 LY_CHECK_RET(rc);
7365 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007366 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007367 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007368 break;
7369
Michal Vasko03ff5a72019-09-11 13:49:33 +02007370 case LYXP_TOKEN_NAMETEST:
Michal Vaskod3678892020-05-21 10:06:58 +02007371 /* evaluate NameTest Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007372 rc = eval_name_test_with_predicate(exp, tok_idx, attr_axis, all_desc, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007373 LY_CHECK_RET(rc);
Michal Vaskod3678892020-05-21 10:06:58 +02007374 break;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007375
Michal Vaskod3678892020-05-21 10:06:58 +02007376 case LYXP_TOKEN_NODETYPE:
7377 /* evaluate NodeType Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007378 rc = eval_node_type_with_predicate(exp, tok_idx, attr_axis, all_desc, set, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007379 LY_CHECK_RET(rc);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007380 break;
7381
7382 default:
Michal Vasko02a77382019-09-12 11:47:35 +02007383 LOGINT_RET(set ? set->ctx : NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007384 }
Michal Vasko004d3152020-06-11 19:59:22 +02007385 } while (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007386
7387 return LY_SUCCESS;
7388}
7389
7390/**
7391 * @brief Evaluate AbsoluteLocationPath. Logs directly on error.
7392 *
7393 * [3] AbsoluteLocationPath ::= '/' RelativeLocationPath? | '//' RelativeLocationPath
7394 *
7395 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007396 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007397 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7398 * @param[in] options XPath options.
7399 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7400 */
7401static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02007402eval_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 +02007403{
Radek Krejci857189e2020-09-01 13:26:36 +02007404 ly_bool all_desc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007405
7406 if (set) {
7407 /* no matter what tokens follow, we need to be at the root */
Michal Vaskob0099a92020-08-31 14:55:23 +02007408 LY_CHECK_RET(moveto_root(set, options));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007409 }
7410
7411 /* '/' RelativeLocationPath? */
Michal Vasko004d3152020-06-11 19:59:22 +02007412 if (exp->tok_len[*tok_idx] == 1) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007413 /* evaluate '/' - deferred */
7414 all_desc = 0;
7415 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007416 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007417 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007418
Michal Vasko004d3152020-06-11 19:59:22 +02007419 if (lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_NONE)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007420 return LY_SUCCESS;
7421 }
Michal Vasko004d3152020-06-11 19:59:22 +02007422 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007423 case LYXP_TOKEN_DOT:
7424 case LYXP_TOKEN_DDOT:
7425 case LYXP_TOKEN_AT:
7426 case LYXP_TOKEN_NAMETEST:
7427 case LYXP_TOKEN_NODETYPE:
Michal Vaskob0099a92020-08-31 14:55:23 +02007428 LY_CHECK_RET(eval_relative_location_path(exp, tok_idx, all_desc, set, options));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007429 break;
7430 default:
7431 break;
7432 }
7433
Michal Vasko03ff5a72019-09-11 13:49:33 +02007434 } else {
Radek Krejcif6a11002020-08-21 13:29:07 +02007435 /* '//' RelativeLocationPath */
Michal Vasko03ff5a72019-09-11 13:49:33 +02007436 /* evaluate '//' - deferred so as not to waste memory by remembering all the nodes */
7437 all_desc = 1;
7438 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007439 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007440 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007441
Michal Vaskob0099a92020-08-31 14:55:23 +02007442 LY_CHECK_RET(eval_relative_location_path(exp, tok_idx, all_desc, set, options));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007443 }
7444
7445 return LY_SUCCESS;
7446}
7447
7448/**
7449 * @brief Evaluate FunctionCall. Logs directly on error.
7450 *
Michal Vaskod3678892020-05-21 10:06:58 +02007451 * [11] FunctionCall ::= FunctionName '(' ( Expr ( ',' Expr )* )? ')'
Michal Vasko03ff5a72019-09-11 13:49:33 +02007452 *
7453 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007454 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007455 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7456 * @param[in] options XPath options.
7457 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7458 */
7459static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02007460eval_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 +02007461{
7462 LY_ERR rc;
Michal Vasko69730152020-10-09 16:30:07 +02007463
Radek Krejci1deb5be2020-08-26 16:43:36 +02007464 LY_ERR (*xpath_func)(struct lyxp_set **, uint16_t, struct lyxp_set *, uint32_t) = NULL;
Michal Vasko0cbf54f2019-12-16 10:01:06 +01007465 uint16_t arg_count = 0, i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007466 struct lyxp_set **args = NULL, **args_aux;
7467
7468 if (set) {
7469 /* FunctionName */
Michal Vasko004d3152020-06-11 19:59:22 +02007470 switch (exp->tok_len[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007471 case 3:
Michal Vasko004d3152020-06-11 19:59:22 +02007472 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "not", 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007473 xpath_func = &xpath_not;
Michal Vasko004d3152020-06-11 19:59:22 +02007474 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "sum", 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007475 xpath_func = &xpath_sum;
7476 }
7477 break;
7478 case 4:
Michal Vasko004d3152020-06-11 19:59:22 +02007479 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "lang", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007480 xpath_func = &xpath_lang;
Michal Vasko004d3152020-06-11 19:59:22 +02007481 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "last", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007482 xpath_func = &xpath_last;
Michal Vasko004d3152020-06-11 19:59:22 +02007483 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "name", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007484 xpath_func = &xpath_name;
Michal Vasko004d3152020-06-11 19:59:22 +02007485 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "true", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007486 xpath_func = &xpath_true;
7487 }
7488 break;
7489 case 5:
Michal Vasko004d3152020-06-11 19:59:22 +02007490 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "count", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007491 xpath_func = &xpath_count;
Michal Vasko004d3152020-06-11 19:59:22 +02007492 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "false", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007493 xpath_func = &xpath_false;
Michal Vasko004d3152020-06-11 19:59:22 +02007494 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "floor", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007495 xpath_func = &xpath_floor;
Michal Vasko004d3152020-06-11 19:59:22 +02007496 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "round", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007497 xpath_func = &xpath_round;
Michal Vasko004d3152020-06-11 19:59:22 +02007498 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "deref", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007499 xpath_func = &xpath_deref;
7500 }
7501 break;
7502 case 6:
Michal Vasko004d3152020-06-11 19:59:22 +02007503 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "concat", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007504 xpath_func = &xpath_concat;
Michal Vasko004d3152020-06-11 19:59:22 +02007505 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "number", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007506 xpath_func = &xpath_number;
Michal Vasko004d3152020-06-11 19:59:22 +02007507 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007508 xpath_func = &xpath_string;
7509 }
7510 break;
7511 case 7:
Michal Vasko004d3152020-06-11 19:59:22 +02007512 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "boolean", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007513 xpath_func = &xpath_boolean;
Michal Vasko004d3152020-06-11 19:59:22 +02007514 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "ceiling", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007515 xpath_func = &xpath_ceiling;
Michal Vasko004d3152020-06-11 19:59:22 +02007516 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "current", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007517 xpath_func = &xpath_current;
7518 }
7519 break;
7520 case 8:
Michal Vasko004d3152020-06-11 19:59:22 +02007521 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "contains", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007522 xpath_func = &xpath_contains;
Michal Vasko004d3152020-06-11 19:59:22 +02007523 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "position", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007524 xpath_func = &xpath_position;
Michal Vasko004d3152020-06-11 19:59:22 +02007525 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "re-match", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007526 xpath_func = &xpath_re_match;
7527 }
7528 break;
7529 case 9:
Michal Vasko004d3152020-06-11 19:59:22 +02007530 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring", 9)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007531 xpath_func = &xpath_substring;
Michal Vasko004d3152020-06-11 19:59:22 +02007532 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "translate", 9)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007533 xpath_func = &xpath_translate;
7534 }
7535 break;
7536 case 10:
Michal Vasko004d3152020-06-11 19:59:22 +02007537 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "local-name", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007538 xpath_func = &xpath_local_name;
Michal Vasko004d3152020-06-11 19:59:22 +02007539 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "enum-value", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007540 xpath_func = &xpath_enum_value;
Michal Vasko004d3152020-06-11 19:59:22 +02007541 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "bit-is-set", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007542 xpath_func = &xpath_bit_is_set;
7543 }
7544 break;
7545 case 11:
Michal Vasko004d3152020-06-11 19:59:22 +02007546 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "starts-with", 11)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007547 xpath_func = &xpath_starts_with;
7548 }
7549 break;
7550 case 12:
Michal Vasko004d3152020-06-11 19:59:22 +02007551 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from", 12)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007552 xpath_func = &xpath_derived_from;
7553 }
7554 break;
7555 case 13:
Michal Vasko004d3152020-06-11 19:59:22 +02007556 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "namespace-uri", 13)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007557 xpath_func = &xpath_namespace_uri;
Michal Vasko004d3152020-06-11 19:59:22 +02007558 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string-length", 13)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007559 xpath_func = &xpath_string_length;
7560 }
7561 break;
7562 case 15:
Michal Vasko004d3152020-06-11 19:59:22 +02007563 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "normalize-space", 15)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007564 xpath_func = &xpath_normalize_space;
Michal Vasko004d3152020-06-11 19:59:22 +02007565 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-after", 15)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007566 xpath_func = &xpath_substring_after;
7567 }
7568 break;
7569 case 16:
Michal Vasko004d3152020-06-11 19:59:22 +02007570 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-before", 16)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007571 xpath_func = &xpath_substring_before;
7572 }
7573 break;
7574 case 20:
Michal Vasko004d3152020-06-11 19:59:22 +02007575 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from-or-self", 20)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007576 xpath_func = &xpath_derived_from_or_self;
7577 }
7578 break;
7579 }
7580
7581 if (!xpath_func) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01007582 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 +02007583 return LY_EVALID;
7584 }
7585 }
7586
7587 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007588 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007589 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007590
7591 /* '(' */
Michal Vasko004d3152020-06-11 19:59:22 +02007592 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007593 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007594 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007595 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007596
7597 /* ( Expr ( ',' Expr )* )? */
Michal Vasko004d3152020-06-11 19:59:22 +02007598 if (exp->tokens[*tok_idx] != LYXP_TOKEN_PAR2) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007599 if (set) {
7600 args = malloc(sizeof *args);
7601 LY_CHECK_ERR_GOTO(!args, LOGMEM(set->ctx); rc = LY_EMEM, cleanup);
7602 arg_count = 1;
7603 args[0] = set_copy(set);
7604 if (!args[0]) {
7605 rc = LY_EMEM;
7606 goto cleanup;
7607 }
7608
Michal Vasko004d3152020-06-11 19:59:22 +02007609 rc = eval_expr_select(exp, tok_idx, 0, args[0], options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007610 LY_CHECK_GOTO(rc, cleanup);
7611 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007612 rc = eval_expr_select(exp, tok_idx, 0, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007613 LY_CHECK_GOTO(rc, cleanup);
7614 }
7615 }
Michal Vasko004d3152020-06-11 19:59:22 +02007616 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_COMMA)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007617 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007618 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007619 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007620
7621 if (set) {
7622 ++arg_count;
7623 args_aux = realloc(args, arg_count * sizeof *args);
7624 LY_CHECK_ERR_GOTO(!args_aux, arg_count--; LOGMEM(set->ctx); rc = LY_EMEM, cleanup);
7625 args = args_aux;
7626 args[arg_count - 1] = set_copy(set);
7627 if (!args[arg_count - 1]) {
7628 rc = LY_EMEM;
7629 goto cleanup;
7630 }
7631
Michal Vasko004d3152020-06-11 19:59:22 +02007632 rc = eval_expr_select(exp, tok_idx, 0, args[arg_count - 1], options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007633 LY_CHECK_GOTO(rc, cleanup);
7634 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007635 rc = eval_expr_select(exp, tok_idx, 0, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007636 LY_CHECK_GOTO(rc, cleanup);
7637 }
7638 }
7639
7640 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02007641 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007642 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007643 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007644 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007645
7646 if (set) {
7647 /* evaluate function */
7648 rc = xpath_func(args, arg_count, set, options);
7649
7650 if (options & LYXP_SCNODE_ALL) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007651 /* merge all nodes from arg evaluations */
7652 for (i = 0; i < arg_count; ++i) {
7653 set_scnode_clear_ctx(args[i]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01007654 lyxp_set_scnode_merge(set, args[i]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007655 }
7656 }
7657 } else {
7658 rc = LY_SUCCESS;
7659 }
7660
7661cleanup:
7662 for (i = 0; i < arg_count; ++i) {
7663 lyxp_set_free(args[i]);
7664 }
7665 free(args);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007666 return rc;
7667}
7668
7669/**
7670 * @brief Evaluate Number. Logs directly on error.
7671 *
7672 * @param[in] ctx Context for errors.
7673 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007674 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007675 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7676 * @return LY_ERR
7677 */
7678static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02007679eval_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 +02007680{
7681 long double num;
7682 char *endptr;
7683
7684 if (set) {
7685 errno = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02007686 num = strtold(&exp->expr[exp->tok_pos[*tok_idx]], &endptr);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007687 if (errno) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01007688 LOGVAL(ctx, LY_VCODE_XP_INTOK, "Unknown", &exp->expr[exp->tok_pos[*tok_idx]]);
7689 LOGVAL(ctx, LYVE_XPATH, "Failed to convert \"%.*s\" into a long double (%s).",
Michal Vasko69730152020-10-09 16:30:07 +02007690 exp->tok_len[*tok_idx], &exp->expr[exp->tok_pos[*tok_idx]], strerror(errno));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007691 return LY_EVALID;
Michal Vasko004d3152020-06-11 19:59:22 +02007692 } else if (endptr - &exp->expr[exp->tok_pos[*tok_idx]] != exp->tok_len[*tok_idx]) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01007693 LOGVAL(ctx, LY_VCODE_XP_INTOK, "Unknown", &exp->expr[exp->tok_pos[*tok_idx]]);
7694 LOGVAL(ctx, LYVE_XPATH, "Failed to convert \"%.*s\" into a long double.",
Michal Vasko69730152020-10-09 16:30:07 +02007695 exp->tok_len[*tok_idx], &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007696 return LY_EVALID;
7697 }
7698
7699 set_fill_number(set, num);
7700 }
7701
7702 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007703 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007704 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007705 return LY_SUCCESS;
7706}
7707
7708/**
7709 * @brief Evaluate PathExpr. Logs directly on error.
7710 *
Michal Vaskod3678892020-05-21 10:06:58 +02007711 * [12] PathExpr ::= LocationPath | PrimaryExpr Predicate*
Michal Vasko03ff5a72019-09-11 13:49:33 +02007712 * | PrimaryExpr Predicate* '/' RelativeLocationPath
7713 * | PrimaryExpr Predicate* '//' RelativeLocationPath
7714 * [2] LocationPath ::= RelativeLocationPath | AbsoluteLocationPath
Michal Vaskod3678892020-05-21 10:06:58 +02007715 * [10] PrimaryExpr ::= '(' Expr ')' | Literal | Number | FunctionCall
Michal Vasko03ff5a72019-09-11 13:49:33 +02007716 *
7717 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007718 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007719 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7720 * @param[in] options XPath options.
7721 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7722 */
7723static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02007724eval_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 +02007725{
Radek Krejci857189e2020-09-01 13:26:36 +02007726 ly_bool all_desc, parent_pos_pred;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007727 LY_ERR rc;
7728
Michal Vasko004d3152020-06-11 19:59:22 +02007729 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007730 case LYXP_TOKEN_PAR1:
7731 /* '(' Expr ')' */
7732
7733 /* '(' */
7734 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007735 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007736 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007737
7738 /* Expr */
Michal Vasko004d3152020-06-11 19:59:22 +02007739 rc = eval_expr_select(exp, tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007740 LY_CHECK_RET(rc);
7741
7742 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02007743 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007744 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007745 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007746 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007747
7748 parent_pos_pred = 0;
7749 goto predicate;
7750
7751 case LYXP_TOKEN_DOT:
7752 case LYXP_TOKEN_DDOT:
7753 case LYXP_TOKEN_AT:
7754 case LYXP_TOKEN_NAMETEST:
7755 case LYXP_TOKEN_NODETYPE:
7756 /* RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02007757 rc = eval_relative_location_path(exp, tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007758 LY_CHECK_RET(rc);
7759 break;
7760
7761 case LYXP_TOKEN_FUNCNAME:
7762 /* FunctionCall */
7763 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007764 rc = eval_function_call(exp, tok_idx, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007765 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007766 rc = eval_function_call(exp, tok_idx, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007767 }
7768 LY_CHECK_RET(rc);
7769
7770 parent_pos_pred = 1;
7771 goto predicate;
7772
Michal Vasko3e48bf32020-06-01 08:39:07 +02007773 case LYXP_TOKEN_OPER_PATH:
7774 case LYXP_TOKEN_OPER_RPATH:
Michal Vasko03ff5a72019-09-11 13:49:33 +02007775 /* AbsoluteLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02007776 rc = eval_absolute_location_path(exp, tok_idx, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007777 LY_CHECK_RET(rc);
7778 break;
7779
7780 case LYXP_TOKEN_LITERAL:
7781 /* Literal */
7782 if (!set || (options & LYXP_SCNODE_ALL)) {
7783 if (set) {
7784 set_scnode_clear_ctx(set);
7785 }
Michal Vasko004d3152020-06-11 19:59:22 +02007786 eval_literal(exp, tok_idx, NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007787 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007788 eval_literal(exp, tok_idx, set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007789 }
7790
7791 parent_pos_pred = 1;
7792 goto predicate;
7793
7794 case LYXP_TOKEN_NUMBER:
7795 /* Number */
7796 if (!set || (options & LYXP_SCNODE_ALL)) {
7797 if (set) {
7798 set_scnode_clear_ctx(set);
7799 }
Michal Vasko004d3152020-06-11 19:59:22 +02007800 rc = eval_number(NULL, exp, tok_idx, NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007801 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007802 rc = eval_number(set->ctx, exp, tok_idx, set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007803 }
7804 LY_CHECK_RET(rc);
7805
7806 parent_pos_pred = 1;
7807 goto predicate;
7808
7809 default:
Radek Krejci2efc45b2020-12-22 16:25:44 +01007810 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 +02007811 return LY_EVALID;
7812 }
7813
7814 return LY_SUCCESS;
7815
7816predicate:
7817 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007818 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
7819 rc = eval_predicate(exp, tok_idx, set, options, parent_pos_pred);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007820 LY_CHECK_RET(rc);
7821 }
7822
7823 /* ('/' or '//') RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02007824 if (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007825
7826 /* evaluate '/' or '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02007827 if (exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_PATH) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007828 all_desc = 0;
7829 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007830 all_desc = 1;
7831 }
7832
7833 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007834 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007835 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007836
Michal Vasko004d3152020-06-11 19:59:22 +02007837 rc = eval_relative_location_path(exp, tok_idx, all_desc, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007838 LY_CHECK_RET(rc);
7839 }
7840
7841 return LY_SUCCESS;
7842}
7843
7844/**
7845 * @brief Evaluate UnionExpr. Logs directly on error.
7846 *
Michal Vaskod3678892020-05-21 10:06:58 +02007847 * [20] UnionExpr ::= PathExpr | UnionExpr '|' PathExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02007848 *
7849 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007850 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007851 * @param[in] repeat How many times this expression is repeated.
7852 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7853 * @param[in] options XPath options.
7854 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7855 */
7856static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02007857eval_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 +02007858{
7859 LY_ERR rc = LY_SUCCESS;
7860 struct lyxp_set orig_set, set2;
7861 uint16_t i;
7862
7863 assert(repeat);
7864
7865 set_init(&orig_set, set);
7866 set_init(&set2, set);
7867
7868 set_fill_set(&orig_set, set);
7869
Michal Vasko004d3152020-06-11 19:59:22 +02007870 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNION, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007871 LY_CHECK_GOTO(rc, cleanup);
7872
7873 /* ('|' PathExpr)* */
7874 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02007875 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_UNI);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007876 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007877 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007878 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007879
7880 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007881 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNION, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007882 LY_CHECK_GOTO(rc, cleanup);
7883 continue;
7884 }
7885
7886 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02007887 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNION, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007888 LY_CHECK_GOTO(rc, cleanup);
7889
7890 /* eval */
7891 if (options & LYXP_SCNODE_ALL) {
Michal Vaskoecd62de2019-11-13 12:35:11 +01007892 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007893 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007894 rc = moveto_union(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007895 LY_CHECK_GOTO(rc, cleanup);
7896 }
7897 }
7898
7899cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02007900 lyxp_set_free_content(&orig_set);
7901 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007902 return rc;
7903}
7904
7905/**
7906 * @brief Evaluate UnaryExpr. Logs directly on error.
7907 *
Michal Vaskod3678892020-05-21 10:06:58 +02007908 * [19] UnaryExpr ::= UnionExpr | '-' UnaryExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02007909 *
7910 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007911 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007912 * @param[in] repeat How many times this expression is repeated.
7913 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7914 * @param[in] options XPath options.
7915 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7916 */
7917static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02007918eval_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 +02007919{
7920 LY_ERR rc;
7921 uint16_t this_op, i;
7922
7923 assert(repeat);
7924
7925 /* ('-')+ */
Michal Vasko004d3152020-06-11 19:59:22 +02007926 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007927 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02007928 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 +02007929
7930 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007931 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007932 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007933 }
7934
Michal Vasko004d3152020-06-11 19:59:22 +02007935 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNARY, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007936 LY_CHECK_RET(rc);
7937
7938 if (set && (repeat % 2)) {
7939 if (options & LYXP_SCNODE_ALL) {
7940 warn_operands(set->ctx, set, NULL, 1, exp->expr, exp->tok_pos[this_op]);
7941 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007942 rc = moveto_op_math(set, NULL, &exp->expr[exp->tok_pos[this_op]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007943 LY_CHECK_RET(rc);
7944 }
7945 }
7946
7947 return LY_SUCCESS;
7948}
7949
7950/**
7951 * @brief Evaluate MultiplicativeExpr. Logs directly on error.
7952 *
Michal Vaskod3678892020-05-21 10:06:58 +02007953 * [18] MultiplicativeExpr ::= UnaryExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02007954 * | MultiplicativeExpr '*' UnaryExpr
7955 * | MultiplicativeExpr 'div' UnaryExpr
7956 * | MultiplicativeExpr 'mod' UnaryExpr
7957 *
7958 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007959 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007960 * @param[in] repeat How many times this expression is repeated.
7961 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7962 * @param[in] options XPath options.
7963 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7964 */
7965static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02007966eval_multiplicative_expr(const struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set,
7967 uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007968{
7969 LY_ERR rc;
7970 uint16_t this_op;
7971 struct lyxp_set orig_set, set2;
7972 uint16_t i;
7973
7974 assert(repeat);
7975
7976 set_init(&orig_set, set);
7977 set_init(&set2, set);
7978
7979 set_fill_set(&orig_set, set);
7980
Michal Vasko004d3152020-06-11 19:59:22 +02007981 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_MULTIPLICATIVE, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007982 LY_CHECK_GOTO(rc, cleanup);
7983
7984 /* ('*' / 'div' / 'mod' UnaryExpr)* */
7985 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02007986 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007987
Michal Vasko004d3152020-06-11 19:59:22 +02007988 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_MATH);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007989 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007990 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007991 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007992
7993 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007994 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_MULTIPLICATIVE, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007995 LY_CHECK_GOTO(rc, cleanup);
7996 continue;
7997 }
7998
7999 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02008000 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_MULTIPLICATIVE, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008001 LY_CHECK_GOTO(rc, cleanup);
8002
8003 /* eval */
8004 if (options & LYXP_SCNODE_ALL) {
8005 warn_operands(set->ctx, set, &set2, 1, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008006 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008007 set_scnode_clear_ctx(set);
8008 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008009 rc = moveto_op_math(set, &set2, &exp->expr[exp->tok_pos[this_op]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008010 LY_CHECK_GOTO(rc, cleanup);
8011 }
8012 }
8013
8014cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008015 lyxp_set_free_content(&orig_set);
8016 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008017 return rc;
8018}
8019
8020/**
8021 * @brief Evaluate AdditiveExpr. Logs directly on error.
8022 *
Michal Vaskod3678892020-05-21 10:06:58 +02008023 * [17] AdditiveExpr ::= MultiplicativeExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008024 * | AdditiveExpr '+' MultiplicativeExpr
8025 * | AdditiveExpr '-' MultiplicativeExpr
8026 *
8027 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008028 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008029 * @param[in] repeat How many times this expression is repeated.
8030 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
8031 * @param[in] options XPath options.
8032 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8033 */
8034static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02008035eval_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 +02008036{
8037 LY_ERR rc;
8038 uint16_t this_op;
8039 struct lyxp_set orig_set, set2;
8040 uint16_t i;
8041
8042 assert(repeat);
8043
8044 set_init(&orig_set, set);
8045 set_init(&set2, set);
8046
8047 set_fill_set(&orig_set, set);
8048
Michal Vasko004d3152020-06-11 19:59:22 +02008049 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_ADDITIVE, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008050 LY_CHECK_GOTO(rc, cleanup);
8051
8052 /* ('+' / '-' MultiplicativeExpr)* */
8053 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008054 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008055
Michal Vasko004d3152020-06-11 19:59:22 +02008056 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_MATH);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008057 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02008058 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008059 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008060
8061 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02008062 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_ADDITIVE, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008063 LY_CHECK_GOTO(rc, cleanup);
8064 continue;
8065 }
8066
8067 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02008068 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_ADDITIVE, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008069 LY_CHECK_GOTO(rc, cleanup);
8070
8071 /* eval */
8072 if (options & LYXP_SCNODE_ALL) {
8073 warn_operands(set->ctx, set, &set2, 1, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008074 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008075 set_scnode_clear_ctx(set);
8076 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008077 rc = moveto_op_math(set, &set2, &exp->expr[exp->tok_pos[this_op]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008078 LY_CHECK_GOTO(rc, cleanup);
8079 }
8080 }
8081
8082cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008083 lyxp_set_free_content(&orig_set);
8084 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008085 return rc;
8086}
8087
8088/**
8089 * @brief Evaluate RelationalExpr. Logs directly on error.
8090 *
Michal Vaskod3678892020-05-21 10:06:58 +02008091 * [16] RelationalExpr ::= AdditiveExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008092 * | RelationalExpr '<' AdditiveExpr
8093 * | RelationalExpr '>' AdditiveExpr
8094 * | RelationalExpr '<=' AdditiveExpr
8095 * | RelationalExpr '>=' AdditiveExpr
8096 *
8097 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008098 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008099 * @param[in] repeat How many times this expression is repeated.
8100 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
8101 * @param[in] options XPath options.
8102 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8103 */
8104static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02008105eval_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 +02008106{
8107 LY_ERR rc;
8108 uint16_t this_op;
8109 struct lyxp_set orig_set, set2;
8110 uint16_t i;
8111
8112 assert(repeat);
8113
8114 set_init(&orig_set, set);
8115 set_init(&set2, set);
8116
8117 set_fill_set(&orig_set, set);
8118
Michal Vasko004d3152020-06-11 19:59:22 +02008119 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_RELATIONAL, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008120 LY_CHECK_GOTO(rc, cleanup);
8121
8122 /* ('<' / '>' / '<=' / '>=' AdditiveExpr)* */
8123 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008124 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008125
Michal Vasko004d3152020-06-11 19:59:22 +02008126 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_COMP);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008127 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02008128 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008129 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008130
8131 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02008132 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_RELATIONAL, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008133 LY_CHECK_GOTO(rc, cleanup);
8134 continue;
8135 }
8136
8137 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02008138 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_RELATIONAL, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008139 LY_CHECK_GOTO(rc, cleanup);
8140
8141 /* eval */
8142 if (options & LYXP_SCNODE_ALL) {
8143 warn_operands(set->ctx, set, &set2, 1, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008144 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008145 set_scnode_clear_ctx(set);
8146 } else {
8147 rc = moveto_op_comp(set, &set2, &exp->expr[exp->tok_pos[this_op]], options);
8148 LY_CHECK_GOTO(rc, cleanup);
8149 }
8150 }
8151
8152cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008153 lyxp_set_free_content(&orig_set);
8154 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008155 return rc;
8156}
8157
8158/**
8159 * @brief Evaluate EqualityExpr. Logs directly on error.
8160 *
Michal Vaskod3678892020-05-21 10:06:58 +02008161 * [15] EqualityExpr ::= RelationalExpr | EqualityExpr '=' RelationalExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008162 * | EqualityExpr '!=' RelationalExpr
8163 *
8164 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008165 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008166 * @param[in] repeat How many times this expression is repeated.
8167 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
8168 * @param[in] options XPath options.
8169 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8170 */
8171static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02008172eval_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 +02008173{
8174 LY_ERR rc;
8175 uint16_t this_op;
8176 struct lyxp_set orig_set, set2;
8177 uint16_t i;
8178
8179 assert(repeat);
8180
8181 set_init(&orig_set, set);
8182 set_init(&set2, set);
8183
8184 set_fill_set(&orig_set, set);
8185
Michal Vasko004d3152020-06-11 19:59:22 +02008186 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_EQUALITY, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008187 LY_CHECK_GOTO(rc, cleanup);
8188
8189 /* ('=' / '!=' RelationalExpr)* */
8190 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008191 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008192
Michal Vasko004d3152020-06-11 19:59:22 +02008193 assert((exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_EQUAL) || (exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_NEQUAL));
Michal Vasko03ff5a72019-09-11 13:49:33 +02008194 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02008195 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008196 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008197
8198 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02008199 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_EQUALITY, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008200 LY_CHECK_GOTO(rc, cleanup);
8201 continue;
8202 }
8203
8204 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02008205 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_EQUALITY, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008206 LY_CHECK_GOTO(rc, cleanup);
8207
8208 /* eval */
8209 if (options & LYXP_SCNODE_ALL) {
8210 warn_operands(set->ctx, set, &set2, 0, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vasko004d3152020-06-11 19:59:22 +02008211 warn_equality_value(exp, set, *tok_idx - 1, this_op - 1, *tok_idx - 1);
8212 warn_equality_value(exp, &set2, this_op - 1, this_op - 1, *tok_idx - 1);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008213 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008214 set_scnode_clear_ctx(set);
8215 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008216 rc = moveto_op_comp(set, &set2, &exp->expr[exp->tok_pos[this_op]], options);
8217 LY_CHECK_GOTO(rc, cleanup);
8218 }
8219 }
8220
8221cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008222 lyxp_set_free_content(&orig_set);
8223 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008224 return rc;
8225}
8226
8227/**
8228 * @brief Evaluate AndExpr. Logs directly on error.
8229 *
Michal Vaskod3678892020-05-21 10:06:58 +02008230 * [14] AndExpr ::= EqualityExpr | AndExpr 'and' EqualityExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008231 *
8232 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008233 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008234 * @param[in] repeat How many times this expression is repeated.
8235 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
8236 * @param[in] options XPath options.
8237 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8238 */
8239static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02008240eval_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 +02008241{
8242 LY_ERR rc;
8243 struct lyxp_set orig_set, set2;
8244 uint16_t i;
8245
8246 assert(repeat);
8247
8248 set_init(&orig_set, set);
8249 set_init(&set2, set);
8250
8251 set_fill_set(&orig_set, set);
8252
Michal Vasko004d3152020-06-11 19:59:22 +02008253 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_AND, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008254 LY_CHECK_GOTO(rc, cleanup);
8255
8256 /* cast to boolean, we know that will be the final result */
8257 if (set && (options & LYXP_SCNODE_ALL)) {
8258 set_scnode_clear_ctx(set);
8259 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008260 lyxp_set_cast(set, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008261 }
8262
8263 /* ('and' EqualityExpr)* */
8264 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008265 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_LOG);
8266 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (!set || !set->val.bln ? "skipped" : "parsed"),
Michal Vasko69730152020-10-09 16:30:07 +02008267 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008268 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008269
8270 /* lazy evaluation */
Michal Vasko004d3152020-06-11 19:59:22 +02008271 if (!set || ((set->type == LYXP_SET_BOOLEAN) && !set->val.bln)) {
8272 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_AND, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008273 LY_CHECK_GOTO(rc, cleanup);
8274 continue;
8275 }
8276
8277 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02008278 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_AND, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008279 LY_CHECK_GOTO(rc, cleanup);
8280
8281 /* eval - just get boolean value actually */
8282 if (set->type == LYXP_SET_SCNODE_SET) {
8283 set_scnode_clear_ctx(&set2);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008284 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008285 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008286 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008287 set_fill_set(set, &set2);
8288 }
8289 }
8290
8291cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008292 lyxp_set_free_content(&orig_set);
8293 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008294 return rc;
8295}
8296
8297/**
8298 * @brief Evaluate OrExpr. Logs directly on error.
8299 *
Michal Vaskod3678892020-05-21 10:06:58 +02008300 * [13] OrExpr ::= AndExpr | OrExpr 'or' AndExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008301 *
8302 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008303 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008304 * @param[in] repeat How many times this expression is repeated.
8305 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
8306 * @param[in] options XPath options.
8307 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8308 */
8309static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02008310eval_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 +02008311{
8312 LY_ERR rc;
8313 struct lyxp_set orig_set, set2;
8314 uint16_t i;
8315
8316 assert(repeat);
8317
8318 set_init(&orig_set, set);
8319 set_init(&set2, set);
8320
8321 set_fill_set(&orig_set, set);
8322
Michal Vasko004d3152020-06-11 19:59:22 +02008323 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_OR, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008324 LY_CHECK_GOTO(rc, cleanup);
8325
8326 /* cast to boolean, we know that will be the final result */
8327 if (set && (options & LYXP_SCNODE_ALL)) {
8328 set_scnode_clear_ctx(set);
8329 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008330 lyxp_set_cast(set, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008331 }
8332
8333 /* ('or' AndExpr)* */
8334 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008335 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_LOG);
8336 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (!set || set->val.bln ? "skipped" : "parsed"),
Michal Vasko69730152020-10-09 16:30:07 +02008337 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008338 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008339
8340 /* lazy evaluation */
Michal Vasko004d3152020-06-11 19:59:22 +02008341 if (!set || ((set->type == LYXP_SET_BOOLEAN) && set->val.bln)) {
8342 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_OR, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008343 LY_CHECK_GOTO(rc, cleanup);
8344 continue;
8345 }
8346
8347 set_fill_set(&set2, &orig_set);
8348 /* expr_type cound have been LYXP_EXPR_NONE in all these later calls (except for the first one),
8349 * but it does not matter */
Michal Vasko004d3152020-06-11 19:59:22 +02008350 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_OR, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008351 LY_CHECK_GOTO(rc, cleanup);
8352
8353 /* eval - just get boolean value actually */
8354 if (set->type == LYXP_SET_SCNODE_SET) {
8355 set_scnode_clear_ctx(&set2);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008356 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008357 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008358 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008359 set_fill_set(set, &set2);
8360 }
8361 }
8362
8363cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008364 lyxp_set_free_content(&orig_set);
8365 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008366 return rc;
8367}
8368
8369/**
Michal Vasko004d3152020-06-11 19:59:22 +02008370 * @brief Decide what expression is at the pointer @p tok_idx and evaluate it accordingly.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008371 *
8372 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008373 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008374 * @param[in] etype Expression type to evaluate.
8375 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
8376 * @param[in] options XPath options.
8377 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8378 */
8379static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02008380eval_expr_select(const struct lyxp_expr *exp, uint16_t *tok_idx, enum lyxp_expr_type etype, struct lyxp_set *set,
8381 uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008382{
8383 uint16_t i, count;
8384 enum lyxp_expr_type next_etype;
8385 LY_ERR rc;
8386
8387 /* process operator repeats */
Michal Vasko004d3152020-06-11 19:59:22 +02008388 if (!exp->repeat[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008389 next_etype = LYXP_EXPR_NONE;
8390 } else {
8391 /* find etype repeat */
Radek Krejci1e008d22020-08-17 11:37:37 +02008392 for (i = 0; exp->repeat[*tok_idx][i] > etype; ++i) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02008393
8394 /* select one-priority lower because etype expression called us */
8395 if (i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008396 next_etype = exp->repeat[*tok_idx][i - 1];
Michal Vasko03ff5a72019-09-11 13:49:33 +02008397 /* count repeats for that expression */
Radek Krejci1e008d22020-08-17 11:37:37 +02008398 for (count = 0; i && exp->repeat[*tok_idx][i - 1] == next_etype; ++count, --i) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02008399 } else {
8400 next_etype = LYXP_EXPR_NONE;
8401 }
8402 }
8403
8404 /* decide what expression are we parsing based on the repeat */
8405 switch (next_etype) {
8406 case LYXP_EXPR_OR:
Michal Vasko004d3152020-06-11 19:59:22 +02008407 rc = eval_or_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008408 break;
8409 case LYXP_EXPR_AND:
Michal Vasko004d3152020-06-11 19:59:22 +02008410 rc = eval_and_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008411 break;
8412 case LYXP_EXPR_EQUALITY:
Michal Vasko004d3152020-06-11 19:59:22 +02008413 rc = eval_equality_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008414 break;
8415 case LYXP_EXPR_RELATIONAL:
Michal Vasko004d3152020-06-11 19:59:22 +02008416 rc = eval_relational_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008417 break;
8418 case LYXP_EXPR_ADDITIVE:
Michal Vasko004d3152020-06-11 19:59:22 +02008419 rc = eval_additive_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008420 break;
8421 case LYXP_EXPR_MULTIPLICATIVE:
Michal Vasko004d3152020-06-11 19:59:22 +02008422 rc = eval_multiplicative_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008423 break;
8424 case LYXP_EXPR_UNARY:
Michal Vasko004d3152020-06-11 19:59:22 +02008425 rc = eval_unary_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008426 break;
8427 case LYXP_EXPR_UNION:
Michal Vasko004d3152020-06-11 19:59:22 +02008428 rc = eval_union_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008429 break;
8430 case LYXP_EXPR_NONE:
Michal Vasko004d3152020-06-11 19:59:22 +02008431 rc = eval_path_expr(exp, tok_idx, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008432 break;
8433 default:
8434 LOGINT_RET(set->ctx);
8435 }
8436
8437 return rc;
8438}
8439
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008440/**
8441 * @brief Get root type.
8442 *
8443 * @param[in] ctx_node Context node.
8444 * @param[in] ctx_scnode Schema context node.
8445 * @param[in] options XPath options.
8446 * @return Root type.
8447 */
8448static enum lyxp_node_type
Radek Krejci1deb5be2020-08-26 16:43:36 +02008449lyxp_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 +01008450{
Michal Vasko6b26e742020-07-17 15:02:10 +02008451 const struct lysc_node *op;
8452
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008453 if (options & LYXP_SCNODE_ALL) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008454 /* schema */
Radek Krejci1e008d22020-08-17 11:37:37 +02008455 for (op = ctx_scnode; op && !(op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)); op = op->parent) {}
Michal Vasko6b26e742020-07-17 15:02:10 +02008456
8457 if (op || (options & LYXP_SCNODE)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008458 /* general root that can access everything */
8459 return LYXP_NODE_ROOT;
8460 } else if (!ctx_scnode || (ctx_scnode->flags & LYS_CONFIG_W)) {
8461 /* root context node can access only config data (because we said so, it is unspecified) */
8462 return LYXP_NODE_ROOT_CONFIG;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008463 }
Michal Vasko6b26e742020-07-17 15:02:10 +02008464 return LYXP_NODE_ROOT;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008465 }
8466
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008467 /* data */
Michal Vasko6b26e742020-07-17 15:02:10 +02008468 op = ctx_node ? ctx_node->schema : NULL;
Michal Vaskod989ba02020-08-24 10:59:24 +02008469 for ( ; op && !(op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)); op = op->parent) {}
Michal Vasko6b26e742020-07-17 15:02:10 +02008470
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008471 if (op || !(options & LYXP_SCHEMA)) {
8472 /* general root that can access everything */
8473 return LYXP_NODE_ROOT;
Christian Hoppsb6ecaea2021-02-06 09:45:38 -05008474 } else if (!ctx_node || !ctx_node->schema || (ctx_node->schema->flags & LYS_CONFIG_W)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008475 /* root context node can access only config data (because we said so, it is unspecified) */
8476 return LYXP_NODE_ROOT_CONFIG;
8477 }
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008478 return LYXP_NODE_ROOT;
8479}
8480
Michal Vasko03ff5a72019-09-11 13:49:33 +02008481LY_ERR
Michal Vasko400e9672021-01-11 13:39:17 +01008482lyxp_eval(const struct ly_ctx *ctx, const struct lyxp_expr *exp, const struct lys_module *cur_mod,
8483 LY_PREFIX_FORMAT format, void *prefix_data, const struct lyd_node *ctx_node, const struct lyd_node *tree,
8484 struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008485{
Michal Vasko004d3152020-06-11 19:59:22 +02008486 uint16_t tok_idx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008487 LY_ERR rc;
8488
Michal Vasko400e9672021-01-11 13:39:17 +01008489 LY_CHECK_ARG_RET(ctx, ctx, exp, set, LY_EINVAL);
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008490 if (!cur_mod && ((format == LY_PREF_SCHEMA) || (format == LY_PREF_SCHEMA_RESOLVED))) {
8491 LOGARG(NULL, "Current module must be set if schema format is used.");
8492 return LY_EINVAL;
Michal Vasko004d3152020-06-11 19:59:22 +02008493 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02008494
Michal Vaskod3bb12f2020-12-04 14:33:09 +01008495 if (tree) {
8496 /* adjust the pointer to be the first top-level sibling */
8497 while (tree->parent) {
8498 tree = lyd_parent(tree);
8499 }
8500 tree = lyd_first_sibling(tree);
8501 }
8502
Michal Vasko03ff5a72019-09-11 13:49:33 +02008503 /* prepare set for evaluation */
Michal Vasko03ff5a72019-09-11 13:49:33 +02008504 memset(set, 0, sizeof *set);
Michal Vaskod3678892020-05-21 10:06:58 +02008505 set->type = LYXP_SET_NODE_SET;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008506 set->root_type = lyxp_get_root_type(ctx_node, NULL, options);
8507 set_insert_node(set, (struct lyd_node *)ctx_node, 0, ctx_node ? LYXP_NODE_ELEM : set->root_type, 0);
8508
Michal Vasko400e9672021-01-11 13:39:17 +01008509 set->ctx = (struct ly_ctx *)ctx;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008510 set->cur_node = ctx_node;
8511 for (set->context_op = ctx_node ? ctx_node->schema : NULL;
Radek Krejci0f969882020-08-21 16:56:47 +02008512 set->context_op && !(set->context_op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF));
8513 set->context_op = set->context_op->parent) {}
Michal Vaskof03ed032020-03-04 13:31:44 +01008514 set->tree = tree;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008515 set->cur_mod = cur_mod;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008516 set->format = format;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008517 set->prefix_data = prefix_data;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008518
Radek Krejciddace2c2021-01-08 11:30:56 +01008519 LOG_LOCSET(NULL, set->cur_node, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01008520
Michal Vasko03ff5a72019-09-11 13:49:33 +02008521 /* evaluate */
Michal Vasko004d3152020-06-11 19:59:22 +02008522 rc = eval_expr_select(exp, &tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008523 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02008524 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008525 }
8526
Radek Krejciddace2c2021-01-08 11:30:56 +01008527 LOG_LOCBACK(0, 1, 0, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008528 return rc;
8529}
8530
8531#if 0
8532
8533/* full xml printing of set elements, not used currently */
8534
8535void
8536lyxp_set_print_xml(FILE *f, struct lyxp_set *set)
8537{
8538 uint32_t i;
8539 char *str_num;
8540 struct lyout out;
8541
8542 memset(&out, 0, sizeof out);
8543
8544 out.type = LYOUT_STREAM;
8545 out.method.f = f;
8546
8547 switch (set->type) {
8548 case LYXP_SET_EMPTY:
Michal Vasko5233e962020-08-14 14:26:20 +02008549 ly_print_(&out, "Empty XPath set\n\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008550 break;
8551 case LYXP_SET_BOOLEAN:
Michal Vasko5233e962020-08-14 14:26:20 +02008552 ly_print_(&out, "Boolean XPath set:\n");
8553 ly_print_(&out, "%s\n\n", set->value.bool ? "true" : "false");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008554 break;
8555 case LYXP_SET_STRING:
Michal Vasko5233e962020-08-14 14:26:20 +02008556 ly_print_(&out, "String XPath set:\n");
8557 ly_print_(&out, "\"%s\"\n\n", set->value.str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008558 break;
8559 case LYXP_SET_NUMBER:
Michal Vasko5233e962020-08-14 14:26:20 +02008560 ly_print_(&out, "Number XPath set:\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008561
8562 if (isnan(set->value.num)) {
8563 str_num = strdup("NaN");
8564 } else if ((set->value.num == 0) || (set->value.num == -0.0f)) {
8565 str_num = strdup("0");
8566 } else if (isinf(set->value.num) && !signbit(set->value.num)) {
8567 str_num = strdup("Infinity");
8568 } else if (isinf(set->value.num) && signbit(set->value.num)) {
8569 str_num = strdup("-Infinity");
8570 } else if ((long long)set->value.num == set->value.num) {
8571 if (asprintf(&str_num, "%lld", (long long)set->value.num) == -1) {
8572 str_num = NULL;
8573 }
8574 } else {
8575 if (asprintf(&str_num, "%03.1Lf", set->value.num) == -1) {
8576 str_num = NULL;
8577 }
8578 }
8579 if (!str_num) {
8580 LOGMEM;
8581 return;
8582 }
Michal Vasko5233e962020-08-14 14:26:20 +02008583 ly_print_(&out, "%s\n\n", str_num);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008584 free(str_num);
8585 break;
8586 case LYXP_SET_NODE_SET:
Michal Vasko5233e962020-08-14 14:26:20 +02008587 ly_print_(&out, "Node XPath set:\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008588
8589 for (i = 0; i < set->used; ++i) {
Michal Vasko5233e962020-08-14 14:26:20 +02008590 ly_print_(&out, "%d. ", i + 1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008591 switch (set->node_type[i]) {
8592 case LYXP_NODE_ROOT_ALL:
Michal Vasko5233e962020-08-14 14:26:20 +02008593 ly_print_(&out, "ROOT all\n\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008594 break;
8595 case LYXP_NODE_ROOT_CONFIG:
Michal Vasko5233e962020-08-14 14:26:20 +02008596 ly_print_(&out, "ROOT config\n\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008597 break;
8598 case LYXP_NODE_ROOT_STATE:
Michal Vasko5233e962020-08-14 14:26:20 +02008599 ly_print_(&out, "ROOT state\n\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008600 break;
8601 case LYXP_NODE_ROOT_NOTIF:
Michal Vasko5233e962020-08-14 14:26:20 +02008602 ly_print_(&out, "ROOT notification \"%s\"\n\n", set->value.nodes[i]->schema->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008603 break;
8604 case LYXP_NODE_ROOT_RPC:
Michal Vasko5233e962020-08-14 14:26:20 +02008605 ly_print_(&out, "ROOT rpc \"%s\"\n\n", set->value.nodes[i]->schema->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008606 break;
8607 case LYXP_NODE_ROOT_OUTPUT:
Michal Vasko5233e962020-08-14 14:26:20 +02008608 ly_print_(&out, "ROOT output \"%s\"\n\n", set->value.nodes[i]->schema->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008609 break;
8610 case LYXP_NODE_ELEM:
Michal Vasko5233e962020-08-14 14:26:20 +02008611 ly_print_(&out, "ELEM \"%s\"\n", set->value.nodes[i]->schema->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008612 xml_print_node(&out, 1, set->value.nodes[i], 1, LYP_FORMAT);
Michal Vasko5233e962020-08-14 14:26:20 +02008613 ly_print_(&out, "\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008614 break;
8615 case LYXP_NODE_TEXT:
Michal Vasko5233e962020-08-14 14:26:20 +02008616 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 +02008617 break;
8618 case LYXP_NODE_ATTR:
Michal Vasko5233e962020-08-14 14:26:20 +02008619 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 +02008620 break;
8621 }
8622 }
8623 break;
8624 }
8625}
8626
8627#endif
8628
8629LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008630lyxp_set_cast(struct lyxp_set *set, enum lyxp_set_type target)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008631{
8632 long double num;
8633 char *str;
8634 LY_ERR rc;
8635
8636 if (!set || (set->type == target)) {
8637 return LY_SUCCESS;
8638 }
8639
8640 /* it's not possible to convert anything into a node set */
Michal Vaskod3678892020-05-21 10:06:58 +02008641 assert(target != LYXP_SET_NODE_SET);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008642
8643 if (set->type == LYXP_SET_SCNODE_SET) {
Michal Vaskod3678892020-05-21 10:06:58 +02008644 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008645 return LY_EINVAL;
8646 }
8647
8648 /* to STRING */
Michal Vaskod3678892020-05-21 10:06:58 +02008649 if ((target == LYXP_SET_STRING) || ((target == LYXP_SET_NUMBER) && (set->type == LYXP_SET_NODE_SET))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008650 switch (set->type) {
8651 case LYXP_SET_NUMBER:
8652 if (isnan(set->val.num)) {
8653 set->val.str = strdup("NaN");
8654 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
8655 } else if ((set->val.num == 0) || (set->val.num == -0.0f)) {
8656 set->val.str = strdup("0");
8657 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
8658 } else if (isinf(set->val.num) && !signbit(set->val.num)) {
8659 set->val.str = strdup("Infinity");
8660 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
8661 } else if (isinf(set->val.num) && signbit(set->val.num)) {
8662 set->val.str = strdup("-Infinity");
8663 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
8664 } else if ((long long)set->val.num == set->val.num) {
8665 if (asprintf(&str, "%lld", (long long)set->val.num) == -1) {
8666 LOGMEM_RET(set->ctx);
8667 }
8668 set->val.str = str;
8669 } else {
8670 if (asprintf(&str, "%03.1Lf", set->val.num) == -1) {
8671 LOGMEM_RET(set->ctx);
8672 }
8673 set->val.str = str;
8674 }
8675 break;
8676 case LYXP_SET_BOOLEAN:
Michal Vasko004d3152020-06-11 19:59:22 +02008677 if (set->val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008678 set->val.str = strdup("true");
8679 } else {
8680 set->val.str = strdup("false");
8681 }
8682 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), LY_EMEM);
8683 break;
8684 case LYXP_SET_NODE_SET:
Michal Vasko03ff5a72019-09-11 13:49:33 +02008685 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008686 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02008687
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008688 rc = cast_node_set_to_string(set, &str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008689 LY_CHECK_RET(rc);
Michal Vaskod3678892020-05-21 10:06:58 +02008690 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008691 set->val.str = str;
8692 break;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008693 default:
8694 LOGINT_RET(set->ctx);
8695 }
8696 set->type = LYXP_SET_STRING;
8697 }
8698
8699 /* to NUMBER */
8700 if (target == LYXP_SET_NUMBER) {
8701 switch (set->type) {
8702 case LYXP_SET_STRING:
8703 num = cast_string_to_number(set->val.str);
Michal Vaskod3678892020-05-21 10:06:58 +02008704 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008705 set->val.num = num;
8706 break;
8707 case LYXP_SET_BOOLEAN:
Michal Vasko004d3152020-06-11 19:59:22 +02008708 if (set->val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008709 set->val.num = 1;
8710 } else {
8711 set->val.num = 0;
8712 }
8713 break;
8714 default:
8715 LOGINT_RET(set->ctx);
8716 }
8717 set->type = LYXP_SET_NUMBER;
8718 }
8719
8720 /* to BOOLEAN */
8721 if (target == LYXP_SET_BOOLEAN) {
8722 switch (set->type) {
8723 case LYXP_SET_NUMBER:
8724 if ((set->val.num == 0) || (set->val.num == -0.0f) || isnan(set->val.num)) {
Michal Vasko004d3152020-06-11 19:59:22 +02008725 set->val.bln = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008726 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02008727 set->val.bln = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008728 }
8729 break;
8730 case LYXP_SET_STRING:
8731 if (set->val.str[0]) {
Michal Vaskod3678892020-05-21 10:06:58 +02008732 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02008733 set->val.bln = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008734 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02008735 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02008736 set->val.bln = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008737 }
8738 break;
8739 case LYXP_SET_NODE_SET:
Michal Vaskod3678892020-05-21 10:06:58 +02008740 if (set->used) {
8741 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02008742 set->val.bln = 1;
Michal Vaskod3678892020-05-21 10:06:58 +02008743 } else {
8744 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02008745 set->val.bln = 0;
Michal Vaskod3678892020-05-21 10:06:58 +02008746 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02008747 break;
8748 default:
8749 LOGINT_RET(set->ctx);
8750 }
8751 set->type = LYXP_SET_BOOLEAN;
8752 }
8753
Michal Vasko03ff5a72019-09-11 13:49:33 +02008754 return LY_SUCCESS;
8755}
8756
8757LY_ERR
Michal Vasko400e9672021-01-11 13:39:17 +01008758lyxp_atomize(const struct ly_ctx *ctx, const struct lyxp_expr *exp, const struct lys_module *cur_mod,
8759 LY_PREFIX_FORMAT format, void *prefix_data, const struct lysc_node *ctx_scnode, struct lyxp_set *set,
8760 uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008761{
Radek Krejci2efc45b2020-12-22 16:25:44 +01008762 LY_ERR ret;
Michal Vasko004d3152020-06-11 19:59:22 +02008763 uint16_t tok_idx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008764
Michal Vasko400e9672021-01-11 13:39:17 +01008765 LY_CHECK_ARG_RET(ctx, ctx, exp, set, LY_EINVAL);
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008766 if (!cur_mod && ((format == LY_PREF_SCHEMA) || (format == LY_PREF_SCHEMA_RESOLVED))) {
8767 LOGARG(NULL, "Current module must be set if schema format is used.");
8768 return LY_EINVAL;
Michal Vasko004d3152020-06-11 19:59:22 +02008769 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02008770
8771 /* prepare set for evaluation */
Michal Vasko03ff5a72019-09-11 13:49:33 +02008772 memset(set, 0, sizeof *set);
8773 set->type = LYXP_SET_SCNODE_SET;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008774 set->root_type = lyxp_get_root_type(NULL, ctx_scnode, options);
8775 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 +01008776 set->val.scnodes[0].in_ctx = LYXP_SET_SCNODE_START;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008777
Michal Vasko400e9672021-01-11 13:39:17 +01008778 set->ctx = (struct ly_ctx *)ctx;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008779 set->cur_scnode = ctx_scnode;
Michal Vasko6b26e742020-07-17 15:02:10 +02008780 for (set->context_op = ctx_scnode;
Radek Krejci0f969882020-08-21 16:56:47 +02008781 set->context_op && !(set->context_op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF));
8782 set->context_op = set->context_op->parent) {}
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008783 set->cur_mod = cur_mod;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008784 set->format = format;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008785 set->prefix_data = prefix_data;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008786
Radek Krejciddace2c2021-01-08 11:30:56 +01008787 LOG_LOCSET(set->cur_scnode, NULL, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01008788
Michal Vasko03ff5a72019-09-11 13:49:33 +02008789 /* evaluate */
Radek Krejci2efc45b2020-12-22 16:25:44 +01008790 ret = eval_expr_select(exp, &tok_idx, 0, set, options);
8791
Radek Krejciddace2c2021-01-08 11:30:56 +01008792 LOG_LOCBACK(1, 0, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +01008793 return ret;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008794}
Michal Vaskod43d71a2020-08-07 14:54:58 +02008795
8796API const char *
8797lyxp_get_expr(const struct lyxp_expr *path)
8798{
8799 if (!path) {
8800 return NULL;
8801 }
8802
8803 return path->expr;
8804}