blob: 88403a0ae9e0e169fc393402532b1c36dc270a4f [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
15
16/* needed by libmath functions isfinite(), isinf(), isnan(), signbit(), ... */
17#define _ISOC99_SOURCE
Radek Krejcib1646a92018-11-02 16:08:26 +010018
Radek Krejci535ea9f2020-05-29 16:01:05 +020019#include "xpath.h"
Radek Krejcib1646a92018-11-02 16:08:26 +010020
Radek Krejci535ea9f2020-05-29 16:01:05 +020021#include <assert.h>
Radek Krejcib1646a92018-11-02 16:08:26 +010022#include <ctype.h>
Radek Krejci535ea9f2020-05-29 16:01:05 +020023#include <errno.h>
Radek Krejci535ea9f2020-05-29 16:01:05 +020024#include <math.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020025#include <stdint.h>
Radek Krejcib1646a92018-11-02 16:08:26 +010026#include <stdio.h>
27#include <stdlib.h>
Radek Krejcib1646a92018-11-02 16:08:26 +010028#include <string.h>
Radek Krejcib1646a92018-11-02 16:08:26 +010029
Radek Krejci535ea9f2020-05-29 16:01:05 +020030#include "common.h"
Michal Vasko5aa44c02020-06-29 11:47:02 +020031#include "compat.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020032#include "context.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020033#include "dict.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020034#include "hash_table.h"
Radek Krejci47fab892020-11-05 17:02:41 +010035#include "out.h"
Radek Krejci7931b192020-06-25 17:05:03 +020036#include "parser_data.h"
Michal Vasko004d3152020-06-11 19:59:22 +020037#include "path.h"
Michal Vasko03ff5a72019-09-11 13:49:33 +020038#include "plugins_types.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020039#include "printer_data.h"
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020040#include "schema_compile_node.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020041#include "tree.h"
42#include "tree_data_internal.h"
43#include "tree_schema_internal.h"
44#include "xml.h"
Michal Vasko03ff5a72019-09-11 13:49:33 +020045
Michal Vasko004d3152020-06-11 19:59:22 +020046static 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 +020047static LY_ERR eval_expr_select(const struct lyxp_expr *exp, uint16_t *tok_idx, enum lyxp_expr_type etype,
48 struct lyxp_set *set, uint32_t options);
Michal Vasko03ff5a72019-09-11 13:49:33 +020049
50/**
51 * @brief Print the type of an XPath \p set.
52 *
53 * @param[in] set Set to use.
54 * @return Set type string.
55 */
56static const char *
57print_set_type(struct lyxp_set *set)
58{
59 switch (set->type) {
Michal Vasko03ff5a72019-09-11 13:49:33 +020060 case LYXP_SET_NODE_SET:
61 return "node set";
62 case LYXP_SET_SCNODE_SET:
63 return "schema node set";
64 case LYXP_SET_BOOLEAN:
65 return "boolean";
66 case LYXP_SET_NUMBER:
67 return "number";
68 case LYXP_SET_STRING:
69 return "string";
70 }
71
72 return NULL;
73}
74
Michal Vasko24cddf82020-06-01 08:17:01 +020075const char *
76lyxp_print_token(enum lyxp_token tok)
Michal Vasko03ff5a72019-09-11 13:49:33 +020077{
78 switch (tok) {
79 case LYXP_TOKEN_PAR1:
80 return "(";
81 case LYXP_TOKEN_PAR2:
82 return ")";
83 case LYXP_TOKEN_BRACK1:
84 return "[";
85 case LYXP_TOKEN_BRACK2:
86 return "]";
87 case LYXP_TOKEN_DOT:
88 return ".";
89 case LYXP_TOKEN_DDOT:
90 return "..";
91 case LYXP_TOKEN_AT:
92 return "@";
93 case LYXP_TOKEN_COMMA:
94 return ",";
95 case LYXP_TOKEN_NAMETEST:
96 return "NameTest";
97 case LYXP_TOKEN_NODETYPE:
98 return "NodeType";
99 case LYXP_TOKEN_FUNCNAME:
100 return "FunctionName";
Michal Vasko3e48bf32020-06-01 08:39:07 +0200101 case LYXP_TOKEN_OPER_LOG:
Michal Vasko03ff5a72019-09-11 13:49:33 +0200102 return "Operator(Logic)";
Michal Vasko3e48bf32020-06-01 08:39:07 +0200103 case LYXP_TOKEN_OPER_EQUAL:
104 return "Operator(Equal)";
105 case LYXP_TOKEN_OPER_NEQUAL:
106 return "Operator(Non-equal)";
107 case LYXP_TOKEN_OPER_COMP:
Michal Vasko03ff5a72019-09-11 13:49:33 +0200108 return "Operator(Comparison)";
Michal Vasko3e48bf32020-06-01 08:39:07 +0200109 case LYXP_TOKEN_OPER_MATH:
Michal Vasko03ff5a72019-09-11 13:49:33 +0200110 return "Operator(Math)";
Michal Vasko3e48bf32020-06-01 08:39:07 +0200111 case LYXP_TOKEN_OPER_UNI:
Michal Vasko03ff5a72019-09-11 13:49:33 +0200112 return "Operator(Union)";
Michal Vasko3e48bf32020-06-01 08:39:07 +0200113 case LYXP_TOKEN_OPER_PATH:
Michal Vasko03ff5a72019-09-11 13:49:33 +0200114 return "Operator(Path)";
Michal Vasko3e48bf32020-06-01 08:39:07 +0200115 case LYXP_TOKEN_OPER_RPATH:
Michal Vasko14676352020-05-29 11:35:55 +0200116 return "Operator(Recursive Path)";
Michal Vasko03ff5a72019-09-11 13:49:33 +0200117 case LYXP_TOKEN_LITERAL:
118 return "Literal";
119 case LYXP_TOKEN_NUMBER:
120 return "Number";
121 default:
122 LOGINT(NULL);
123 return "";
124 }
125}
126
127/**
128 * @brief Print the whole expression \p exp to debug output.
129 *
130 * @param[in] exp Expression to use.
131 */
132static void
Michal Vasko40308e72020-10-20 16:38:40 +0200133print_expr_struct_debug(const struct lyxp_expr *exp)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200134{
135 uint16_t i, j;
136 char tmp[128];
137
Radek Krejci52b6d512020-10-12 12:33:17 +0200138 if (!exp || (ly_ll < LY_LLDBG)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200139 return;
140 }
141
142 LOGDBG(LY_LDGXPATH, "expression \"%s\":", exp->expr);
143 for (i = 0; i < exp->used; ++i) {
Michal Vasko24cddf82020-06-01 08:17:01 +0200144 sprintf(tmp, "\ttoken %s, in expression \"%.*s\"", lyxp_print_token(exp->tokens[i]), exp->tok_len[i],
Michal Vasko69730152020-10-09 16:30:07 +0200145 &exp->expr[exp->tok_pos[i]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200146 if (exp->repeat[i]) {
147 sprintf(tmp + strlen(tmp), " (repeat %d", exp->repeat[i][0]);
148 for (j = 1; exp->repeat[i][j]; ++j) {
149 sprintf(tmp + strlen(tmp), ", %d", exp->repeat[i][j]);
150 }
151 strcat(tmp, ")");
152 }
153 LOGDBG(LY_LDGXPATH, tmp);
154 }
155}
156
157#ifndef NDEBUG
158
159/**
160 * @brief Print XPath set content to debug output.
161 *
162 * @param[in] set Set to print.
163 */
164static void
165print_set_debug(struct lyxp_set *set)
166{
167 uint32_t i;
168 char *str;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200169 struct lyxp_set_node *item;
170 struct lyxp_set_scnode *sitem;
171
Radek Krejci52b6d512020-10-12 12:33:17 +0200172 if (ly_ll < LY_LLDBG) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200173 return;
174 }
175
176 switch (set->type) {
177 case LYXP_SET_NODE_SET:
178 LOGDBG(LY_LDGXPATH, "set NODE SET:");
179 for (i = 0; i < set->used; ++i) {
180 item = &set->val.nodes[i];
181
182 switch (item->type) {
Michal Vasko2caefc12019-11-14 16:07:56 +0100183 case LYXP_NODE_NONE:
184 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): NONE", i + 1, item->pos);
185 break;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200186 case LYXP_NODE_ROOT:
187 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ROOT", i + 1, item->pos);
188 break;
189 case LYXP_NODE_ROOT_CONFIG:
190 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ROOT CONFIG", i + 1, item->pos);
191 break;
192 case LYXP_NODE_ELEM:
Michal Vasko69730152020-10-09 16:30:07 +0200193 if ((item->node->schema->nodetype == LYS_LIST) &&
194 (((struct lyd_node_inner *)item->node)->child->schema->nodetype == LYS_LEAF)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200195 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ELEM %s (1st child val: %s)", i + 1, item->pos,
Michal Vasko69730152020-10-09 16:30:07 +0200196 item->node->schema->name, LYD_CANON_VALUE(lyd_child(item->node)));
Michal Vasko03ff5a72019-09-11 13:49:33 +0200197 } else if (((struct lyd_node_inner *)item->node)->schema->nodetype == LYS_LEAFLIST) {
198 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ELEM %s (val: %s)", i + 1, item->pos,
Michal Vasko69730152020-10-09 16:30:07 +0200199 item->node->schema->name, LYD_CANON_VALUE(item->node));
Michal Vasko03ff5a72019-09-11 13:49:33 +0200200 } else {
201 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ELEM %s", i + 1, item->pos, item->node->schema->name);
202 }
203 break;
204 case LYXP_NODE_TEXT:
205 if (item->node->schema->nodetype & LYS_ANYDATA) {
206 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): TEXT <%s>", i + 1, item->pos,
Michal Vasko69730152020-10-09 16:30:07 +0200207 item->node->schema->nodetype == LYS_ANYXML ? "anyxml" : "anydata");
Michal Vasko03ff5a72019-09-11 13:49:33 +0200208 } else {
Michal Vaskob7be7a82020-08-20 09:09:04 +0200209 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 +0200210 }
211 break;
Michal Vasko9f96a052020-03-10 09:41:45 +0100212 case LYXP_NODE_META:
213 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 +0200214 set->val.meta[i].meta->value);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200215 break;
216 }
217 }
218 break;
219
220 case LYXP_SET_SCNODE_SET:
221 LOGDBG(LY_LDGXPATH, "set SCNODE SET:");
222 for (i = 0; i < set->used; ++i) {
223 sitem = &set->val.scnodes[i];
224
225 switch (sitem->type) {
226 case LYXP_NODE_ROOT:
227 LOGDBG(LY_LDGXPATH, "\t%d (%u): ROOT", i + 1, sitem->in_ctx);
228 break;
229 case LYXP_NODE_ROOT_CONFIG:
230 LOGDBG(LY_LDGXPATH, "\t%d (%u): ROOT CONFIG", i + 1, sitem->in_ctx);
231 break;
232 case LYXP_NODE_ELEM:
233 LOGDBG(LY_LDGXPATH, "\t%d (%u): ELEM %s", i + 1, sitem->in_ctx, sitem->scnode->name);
234 break;
235 default:
236 LOGINT(NULL);
237 break;
238 }
239 }
240 break;
241
Michal Vasko03ff5a72019-09-11 13:49:33 +0200242 case LYXP_SET_BOOLEAN:
243 LOGDBG(LY_LDGXPATH, "set BOOLEAN");
Michal Vasko004d3152020-06-11 19:59:22 +0200244 LOGDBG(LY_LDGXPATH, "\t%s", (set->val.bln ? "true" : "false"));
Michal Vasko03ff5a72019-09-11 13:49:33 +0200245 break;
246
247 case LYXP_SET_STRING:
248 LOGDBG(LY_LDGXPATH, "set STRING");
249 LOGDBG(LY_LDGXPATH, "\t%s", set->val.str);
250 break;
251
252 case LYXP_SET_NUMBER:
253 LOGDBG(LY_LDGXPATH, "set NUMBER");
254
255 if (isnan(set->val.num)) {
256 str = strdup("NaN");
257 } else if ((set->val.num == 0) || (set->val.num == -0.0f)) {
258 str = strdup("0");
259 } else if (isinf(set->val.num) && !signbit(set->val.num)) {
260 str = strdup("Infinity");
261 } else if (isinf(set->val.num) && signbit(set->val.num)) {
262 str = strdup("-Infinity");
263 } else if ((long long)set->val.num == set->val.num) {
264 if (asprintf(&str, "%lld", (long long)set->val.num) == -1) {
265 str = NULL;
266 }
267 } else {
268 if (asprintf(&str, "%03.1Lf", set->val.num) == -1) {
269 str = NULL;
270 }
271 }
272 LY_CHECK_ERR_RET(!str, LOGMEM(NULL), );
273
274 LOGDBG(LY_LDGXPATH, "\t%s", str);
275 free(str);
276 }
277}
278
279#endif
280
281/**
282 * @brief Realloc the string \p str.
283 *
284 * @param[in] ctx libyang context for logging.
285 * @param[in] needed How much free space is required.
286 * @param[in,out] str Pointer to the string to use.
287 * @param[in,out] used Used bytes in \p str.
288 * @param[in,out] size Allocated bytes in \p str.
289 * @return LY_ERR
290 */
291static LY_ERR
Michal Vasko52927e22020-03-16 17:26:14 +0100292cast_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 +0200293{
294 if (*size - *used < needed) {
295 do {
296 if ((UINT16_MAX - *size) < LYXP_STRING_CAST_SIZE_STEP) {
297 LOGERR(ctx, LY_EINVAL, "XPath string length limit (%u) reached.", UINT16_MAX);
298 return LY_EINVAL;
299 }
300 *size += LYXP_STRING_CAST_SIZE_STEP;
301 } while (*size - *used < needed);
302 *str = ly_realloc(*str, *size * sizeof(char));
303 LY_CHECK_ERR_RET(!(*str), LOGMEM(ctx), LY_EMEM);
304 }
305
306 return LY_SUCCESS;
307}
308
309/**
310 * @brief Cast nodes recursively to one string @p str.
311 *
312 * @param[in] node Node to cast.
313 * @param[in] fake_cont Whether to put the data into a "fake" container.
314 * @param[in] root_type Type of the XPath root.
315 * @param[in] indent Current indent.
316 * @param[in,out] str Resulting string.
317 * @param[in,out] used Used bytes in @p str.
318 * @param[in,out] size Allocated bytes in @p str.
319 * @return LY_ERR
320 */
321static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +0200322cast_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 +0200323 uint16_t *used, uint16_t *size)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200324{
Radek Krejci7f769d72020-07-11 23:13:56 +0200325 char *buf, *line, *ptr = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200326 const char *value_str;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200327 const struct lyd_node *child;
Michal Vasko60ea6352020-06-29 13:39:39 +0200328 struct lyd_node *tree;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200329 struct lyd_node_any *any;
330 LY_ERR rc;
331
332 if ((root_type == LYXP_NODE_ROOT_CONFIG) && (node->schema->flags & LYS_CONFIG_R)) {
333 return LY_SUCCESS;
334 }
335
336 if (fake_cont) {
Michal Vaskob7be7a82020-08-20 09:09:04 +0200337 rc = cast_string_realloc(LYD_CTX(node), 1, str, used, size);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200338 LY_CHECK_RET(rc);
339 strcpy(*str + (*used - 1), "\n");
340 ++(*used);
341
342 ++indent;
343 }
344
345 switch (node->schema->nodetype) {
346 case LYS_CONTAINER:
347 case LYS_LIST:
348 case LYS_RPC:
349 case LYS_NOTIF:
Michal Vaskob7be7a82020-08-20 09:09:04 +0200350 rc = cast_string_realloc(LYD_CTX(node), 1, str, used, size);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200351 LY_CHECK_RET(rc);
352 strcpy(*str + (*used - 1), "\n");
353 ++(*used);
354
Radek Krejcia1c1e542020-09-29 16:06:52 +0200355 for (child = lyd_child(node); child; child = child->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200356 rc = cast_string_recursive(child, 0, root_type, indent + 1, str, used, size);
357 LY_CHECK_RET(rc);
358 }
359
360 break;
361
362 case LYS_LEAF:
363 case LYS_LEAFLIST:
Michal Vaskob7be7a82020-08-20 09:09:04 +0200364 value_str = LYD_CANON_VALUE(node);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200365
366 /* print indent */
Michal Vaskob7be7a82020-08-20 09:09:04 +0200367 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 +0200368 memset(*str + (*used - 1), ' ', indent * 2);
369 *used += indent * 2;
370
371 /* print value */
372 if (*used == 1) {
373 sprintf(*str + (*used - 1), "%s", value_str);
374 *used += strlen(value_str);
375 } else {
376 sprintf(*str + (*used - 1), "%s\n", value_str);
377 *used += strlen(value_str) + 1;
378 }
Michal Vasko03ff5a72019-09-11 13:49:33 +0200379
380 break;
381
382 case LYS_ANYXML:
383 case LYS_ANYDATA:
384 any = (struct lyd_node_any *)node;
385 if (!(void *)any->value.tree) {
386 /* no content */
387 buf = strdup("");
Michal Vaskob7be7a82020-08-20 09:09:04 +0200388 LY_CHECK_ERR_RET(!buf, LOGMEM(LYD_CTX(node)), LY_EMEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200389 } else {
Radek Krejci241f6b52020-05-21 18:13:49 +0200390 struct ly_out *out;
Radek Krejcia5bba312020-01-09 15:41:20 +0100391
Michal Vasko60ea6352020-06-29 13:39:39 +0200392 if (any->value_type == LYD_ANYDATA_LYB) {
393 /* try to parse it into a data tree */
Michal Vaskob7be7a82020-08-20 09:09:04 +0200394 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 +0200395 /* successfully parsed */
396 free(any->value.mem);
397 any->value.tree = tree;
398 any->value_type = LYD_ANYDATA_DATATREE;
399 }
Radek Krejci7931b192020-06-25 17:05:03 +0200400 /* error is covered by the following switch where LYD_ANYDATA_LYB causes failure */
Michal Vasko60ea6352020-06-29 13:39:39 +0200401 }
402
Michal Vasko03ff5a72019-09-11 13:49:33 +0200403 switch (any->value_type) {
404 case LYD_ANYDATA_STRING:
405 case LYD_ANYDATA_XML:
406 case LYD_ANYDATA_JSON:
407 buf = strdup(any->value.json);
Michal Vaskob7be7a82020-08-20 09:09:04 +0200408 LY_CHECK_ERR_RET(!buf, LOGMEM(LYD_CTX(node)), LY_EMEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200409 break;
410 case LYD_ANYDATA_DATATREE:
Radek Krejci84ce7b12020-06-11 17:28:25 +0200411 LY_CHECK_RET(ly_out_new_memory(&buf, 0, &out));
Michal Vasko3a41dff2020-07-15 14:30:28 +0200412 rc = lyd_print_all(out, any->value.tree, LYD_XML, 0);
Radek Krejci241f6b52020-05-21 18:13:49 +0200413 ly_out_free(out, NULL, 0);
Radek Krejcia5bba312020-01-09 15:41:20 +0100414 LY_CHECK_RET(rc < 0, -rc);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200415 break;
Michal Vasko60ea6352020-06-29 13:39:39 +0200416 case LYD_ANYDATA_LYB:
Michal Vaskob7be7a82020-08-20 09:09:04 +0200417 LOGERR(LYD_CTX(node), LY_EINVAL, "Cannot convert LYB anydata into string.");
Michal Vasko60ea6352020-06-29 13:39:39 +0200418 return LY_EINVAL;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200419 }
420 }
421
422 line = strtok_r(buf, "\n", &ptr);
423 do {
Michal Vaskob7be7a82020-08-20 09:09:04 +0200424 rc = cast_string_realloc(LYD_CTX(node), indent * 2 + strlen(line) + 1, str, used, size);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200425 if (rc != LY_SUCCESS) {
426 free(buf);
427 return rc;
428 }
429 memset(*str + (*used - 1), ' ', indent * 2);
430 *used += indent * 2;
431
432 strcpy(*str + (*used - 1), line);
433 *used += strlen(line);
434
435 strcpy(*str + (*used - 1), "\n");
436 *used += 1;
437 } while ((line = strtok_r(NULL, "\n", &ptr)));
438
439 free(buf);
440 break;
441
442 default:
Michal Vaskob7be7a82020-08-20 09:09:04 +0200443 LOGINT_RET(LYD_CTX(node));
Michal Vasko03ff5a72019-09-11 13:49:33 +0200444 }
445
446 if (fake_cont) {
Michal Vaskob7be7a82020-08-20 09:09:04 +0200447 rc = cast_string_realloc(LYD_CTX(node), 1, str, used, size);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200448 LY_CHECK_RET(rc);
449 strcpy(*str + (*used - 1), "\n");
450 ++(*used);
451
452 --indent;
453 }
454
455 return LY_SUCCESS;
456}
457
458/**
459 * @brief Cast an element into a string.
460 *
461 * @param[in] node Node to cast.
462 * @param[in] fake_cont Whether to put the data into a "fake" container.
463 * @param[in] root_type Type of the XPath root.
464 * @param[out] str Element cast to dynamically-allocated string.
465 * @return LY_ERR
466 */
467static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +0200468cast_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 +0200469{
470 uint16_t used, size;
471 LY_ERR rc;
472
473 *str = malloc(LYXP_STRING_CAST_SIZE_START * sizeof(char));
Michal Vaskob7be7a82020-08-20 09:09:04 +0200474 LY_CHECK_ERR_RET(!*str, LOGMEM(LYD_CTX(node)), LY_EMEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200475 (*str)[0] = '\0';
476 used = 1;
477 size = LYXP_STRING_CAST_SIZE_START;
478
479 rc = cast_string_recursive(node, fake_cont, root_type, 0, str, &used, &size);
480 if (rc != LY_SUCCESS) {
481 free(*str);
482 return rc;
483 }
484
485 if (size > used) {
486 *str = ly_realloc(*str, used * sizeof(char));
Michal Vaskob7be7a82020-08-20 09:09:04 +0200487 LY_CHECK_ERR_RET(!*str, LOGMEM(LYD_CTX(node)), LY_EMEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200488 }
489 return LY_SUCCESS;
490}
491
492/**
493 * @brief Cast a LYXP_SET_NODE_SET set into a string.
494 * Context position aware.
495 *
496 * @param[in] set Set to cast.
Michal Vasko03ff5a72019-09-11 13:49:33 +0200497 * @param[out] str Cast dynamically-allocated string.
498 * @return LY_ERR
499 */
500static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +0100501cast_node_set_to_string(struct lyxp_set *set, char **str)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200502{
Michal Vasko03ff5a72019-09-11 13:49:33 +0200503 switch (set->val.nodes[0].type) {
Michal Vasko2caefc12019-11-14 16:07:56 +0100504 case LYXP_NODE_NONE:
505 /* invalid */
506 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200507 case LYXP_NODE_ROOT:
508 case LYXP_NODE_ROOT_CONFIG:
Michal Vasko5e0e6eb2019-11-06 15:47:50 +0100509 return cast_string_elem(set->val.nodes[0].node, 1, set->root_type, str);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200510 case LYXP_NODE_ELEM:
511 case LYXP_NODE_TEXT:
Michal Vasko5e0e6eb2019-11-06 15:47:50 +0100512 return cast_string_elem(set->val.nodes[0].node, 0, set->root_type, str);
Michal Vasko9f96a052020-03-10 09:41:45 +0100513 case LYXP_NODE_META:
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200514 *str = strdup(set->val.meta[0].meta->value.canonical);
515 if (!*str) {
516 LOGMEM_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200517 }
518 return LY_SUCCESS;
519 }
520
521 LOGINT_RET(set->ctx);
522}
523
524/**
525 * @brief Cast a string into an XPath number.
526 *
527 * @param[in] str String to use.
528 * @return Cast number.
529 */
530static long double
531cast_string_to_number(const char *str)
532{
533 long double num;
534 char *ptr;
535
536 errno = 0;
537 num = strtold(str, &ptr);
538 if (errno || *ptr) {
539 num = NAN;
540 }
541 return num;
542}
543
544/**
545 * @brief Callback for checking value equality.
546 *
Radek Krejci857189e2020-09-01 13:26:36 +0200547 * Implementation of ::values_equal_cb.
548 *
Michal Vasko03ff5a72019-09-11 13:49:33 +0200549 * @param[in] val1_p First value.
550 * @param[in] val2_p Second value.
551 * @param[in] mod Whether hash table is being modified.
552 * @param[in] cb_data Callback data.
Radek Krejci857189e2020-09-01 13:26:36 +0200553 * @return Boolean value whether values are equal or not.
Michal Vasko03ff5a72019-09-11 13:49:33 +0200554 */
Radek Krejci857189e2020-09-01 13:26:36 +0200555static ly_bool
556set_values_equal_cb(void *val1_p, void *val2_p, ly_bool UNUSED(mod), void *UNUSED(cb_data))
Michal Vasko03ff5a72019-09-11 13:49:33 +0200557{
558 struct lyxp_set_hash_node *val1, *val2;
559
560 val1 = (struct lyxp_set_hash_node *)val1_p;
561 val2 = (struct lyxp_set_hash_node *)val2_p;
562
563 if ((val1->node == val2->node) && (val1->type == val2->type)) {
564 return 1;
565 }
566
567 return 0;
568}
569
570/**
571 * @brief Insert node and its hash into set.
572 *
573 * @param[in] set et to insert to.
574 * @param[in] node Node with hash.
575 * @param[in] type Node type.
576 */
577static void
578set_insert_node_hash(struct lyxp_set *set, struct lyd_node *node, enum lyxp_node_type type)
579{
Radek Krejci1deb5be2020-08-26 16:43:36 +0200580 LY_ERR r;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200581 uint32_t i, hash;
582 struct lyxp_set_hash_node hnode;
583
584 if (!set->ht && (set->used >= LYD_HT_MIN_ITEMS)) {
585 /* create hash table and add all the nodes */
586 set->ht = lyht_new(1, sizeof(struct lyxp_set_hash_node), set_values_equal_cb, NULL, 1);
587 for (i = 0; i < set->used; ++i) {
588 hnode.node = set->val.nodes[i].node;
589 hnode.type = set->val.nodes[i].type;
590
591 hash = dict_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node);
592 hash = dict_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type);
593 hash = dict_hash_multi(hash, NULL, 0);
594
595 r = lyht_insert(set->ht, &hnode, hash, NULL);
596 assert(!r);
597 (void)r;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200598
Michal Vasko9d6befd2019-12-11 14:56:56 +0100599 if (hnode.node == node) {
600 /* it was just added, do not add it twice */
601 node = NULL;
602 }
603 }
604 }
605
606 if (set->ht && node) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200607 /* add the new node into hash table */
608 hnode.node = node;
609 hnode.type = type;
610
611 hash = dict_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node);
612 hash = dict_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type);
613 hash = dict_hash_multi(hash, NULL, 0);
614
615 r = lyht_insert(set->ht, &hnode, hash, NULL);
616 assert(!r);
617 (void)r;
618 }
619}
620
621/**
622 * @brief Remove node and its hash from set.
623 *
624 * @param[in] set Set to remove from.
625 * @param[in] node Node to remove.
626 * @param[in] type Node type.
627 */
628static void
629set_remove_node_hash(struct lyxp_set *set, struct lyd_node *node, enum lyxp_node_type type)
630{
Radek Krejci1deb5be2020-08-26 16:43:36 +0200631 LY_ERR r;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200632 struct lyxp_set_hash_node hnode;
633 uint32_t hash;
634
635 if (set->ht) {
636 hnode.node = node;
637 hnode.type = type;
638
639 hash = dict_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node);
640 hash = dict_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type);
641 hash = dict_hash_multi(hash, NULL, 0);
642
643 r = lyht_remove(set->ht, &hnode, hash);
644 assert(!r);
645 (void)r;
646
647 if (!set->ht->used) {
648 lyht_free(set->ht);
649 set->ht = NULL;
650 }
651 }
652}
653
654/**
655 * @brief Check whether node is in set based on its hash.
656 *
657 * @param[in] set Set to search in.
658 * @param[in] node Node to search for.
659 * @param[in] type Node type.
660 * @param[in] skip_idx Index in @p set to skip.
661 * @return LY_ERR
662 */
663static LY_ERR
664set_dup_node_hash_check(const struct lyxp_set *set, struct lyd_node *node, enum lyxp_node_type type, int skip_idx)
665{
666 struct lyxp_set_hash_node hnode, *match_p;
667 uint32_t hash;
668
669 hnode.node = node;
670 hnode.type = type;
671
672 hash = dict_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node);
673 hash = dict_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type);
674 hash = dict_hash_multi(hash, NULL, 0);
675
676 if (!lyht_find(set->ht, &hnode, hash, (void **)&match_p)) {
677 if ((skip_idx > -1) && (set->val.nodes[skip_idx].node == match_p->node) && (set->val.nodes[skip_idx].type == match_p->type)) {
678 /* we found it on the index that should be skipped, find another */
679 hnode = *match_p;
680 if (lyht_find_next(set->ht, &hnode, hash, (void **)&match_p)) {
681 /* none other found */
682 return LY_SUCCESS;
683 }
684 }
685
686 return LY_EEXIST;
687 }
688
689 /* not found */
690 return LY_SUCCESS;
691}
692
Michal Vaskod3678892020-05-21 10:06:58 +0200693void
694lyxp_set_free_content(struct lyxp_set *set)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200695{
696 if (!set) {
697 return;
698 }
699
700 if (set->type == LYXP_SET_NODE_SET) {
701 free(set->val.nodes);
702 lyht_free(set->ht);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200703 } else if (set->type == LYXP_SET_SCNODE_SET) {
704 free(set->val.scnodes);
Michal Vaskod3678892020-05-21 10:06:58 +0200705 lyht_free(set->ht);
706 } else {
707 if (set->type == LYXP_SET_STRING) {
708 free(set->val.str);
709 }
710 set->type = LYXP_SET_NODE_SET;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200711 }
Michal Vaskod3678892020-05-21 10:06:58 +0200712
713 set->val.nodes = NULL;
714 set->used = 0;
715 set->size = 0;
716 set->ht = NULL;
717 set->ctx_pos = 0;
718 set->ctx_pos = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200719}
720
Michal Vasko5e0e6eb2019-11-06 15:47:50 +0100721/**
722 * @brief Free dynamically-allocated set.
723 *
724 * @param[in] set Set to free.
725 */
726static void
Michal Vasko03ff5a72019-09-11 13:49:33 +0200727lyxp_set_free(struct lyxp_set *set)
728{
729 if (!set) {
730 return;
731 }
732
Michal Vaskod3678892020-05-21 10:06:58 +0200733 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200734 free(set);
735}
736
737/**
738 * @brief Initialize set context.
739 *
740 * @param[in] new Set to initialize.
741 * @param[in] set Arbitrary initialized set.
742 */
743static void
Michal Vasko4c7763f2020-07-27 17:40:37 +0200744set_init(struct lyxp_set *new, const struct lyxp_set *set)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200745{
746 memset(new, 0, sizeof *new);
Michal Vasko02a77382019-09-12 11:47:35 +0200747 if (set) {
748 new->ctx = set->ctx;
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200749 new->cur_node = set->cur_node;
Michal Vasko588112f2019-12-10 14:51:53 +0100750 new->root_type = set->root_type;
Michal Vasko6b26e742020-07-17 15:02:10 +0200751 new->context_op = set->context_op;
Michal Vaskof03ed032020-03-04 13:31:44 +0100752 new->tree = set->tree;
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200753 new->cur_mod = set->cur_mod;
Michal Vasko02a77382019-09-12 11:47:35 +0200754 new->format = set->format;
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200755 new->prefix_data = set->prefix_data;
Michal Vasko02a77382019-09-12 11:47:35 +0200756 }
Michal Vasko03ff5a72019-09-11 13:49:33 +0200757}
758
759/**
760 * @brief Create a deep copy of a set.
761 *
762 * @param[in] set Set to copy.
763 * @return Copy of @p set.
764 */
765static struct lyxp_set *
766set_copy(struct lyxp_set *set)
767{
768 struct lyxp_set *ret;
769 uint16_t i;
770
771 if (!set) {
772 return NULL;
773 }
774
775 ret = malloc(sizeof *ret);
776 LY_CHECK_ERR_RET(!ret, LOGMEM(set->ctx), NULL);
777 set_init(ret, set);
778
779 if (set->type == LYXP_SET_SCNODE_SET) {
780 ret->type = set->type;
781
782 for (i = 0; i < set->used; ++i) {
Michal Vaskoba716542019-12-16 10:01:58 +0100783 if ((set->val.scnodes[i].in_ctx == 1) || (set->val.scnodes[i].in_ctx == -2)) {
Radek Krejciaa6b53f2020-08-27 15:19:03 +0200784 uint32_t idx;
785 LY_CHECK_ERR_RET(lyxp_set_scnode_insert_node(ret, set->val.scnodes[i].scnode, set->val.scnodes[i].type, &idx),
786 lyxp_set_free(ret), NULL);
Michal Vasko3f27c522020-01-06 08:37:49 +0100787 /* coverity seems to think scnodes can be NULL */
Radek Krejciaa6b53f2020-08-27 15:19:03 +0200788 if (!ret->val.scnodes) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200789 lyxp_set_free(ret);
790 return NULL;
791 }
Michal Vaskoba716542019-12-16 10:01:58 +0100792 ret->val.scnodes[idx].in_ctx = set->val.scnodes[i].in_ctx;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200793 }
794 }
795 } else if (set->type == LYXP_SET_NODE_SET) {
796 ret->type = set->type;
797 ret->val.nodes = malloc(set->used * sizeof *ret->val.nodes);
798 LY_CHECK_ERR_RET(!ret->val.nodes, LOGMEM(set->ctx); free(ret), NULL);
799 memcpy(ret->val.nodes, set->val.nodes, set->used * sizeof *ret->val.nodes);
800
801 ret->used = ret->size = set->used;
802 ret->ctx_pos = set->ctx_pos;
803 ret->ctx_size = set->ctx_size;
804 ret->ht = lyht_dup(set->ht);
805 } else {
Radek Krejci0f969882020-08-21 16:56:47 +0200806 memcpy(ret, set, sizeof *ret);
807 if (set->type == LYXP_SET_STRING) {
808 ret->val.str = strdup(set->val.str);
809 LY_CHECK_ERR_RET(!ret->val.str, LOGMEM(set->ctx); free(ret), NULL);
810 }
Michal Vasko03ff5a72019-09-11 13:49:33 +0200811 }
812
813 return ret;
814}
815
816/**
817 * @brief Fill XPath set with a string. Any current data are disposed of.
818 *
819 * @param[in] set Set to fill.
820 * @param[in] string String to fill into \p set.
821 * @param[in] str_len Length of \p string. 0 is a valid value!
822 */
823static void
824set_fill_string(struct lyxp_set *set, const char *string, uint16_t str_len)
825{
Michal Vaskod3678892020-05-21 10:06:58 +0200826 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200827
828 set->type = LYXP_SET_STRING;
829 if ((str_len == 0) && (string[0] != '\0')) {
830 string = "";
831 }
832 set->val.str = strndup(string, str_len);
833}
834
835/**
836 * @brief Fill XPath set with a number. Any current data are disposed of.
837 *
838 * @param[in] set Set to fill.
839 * @param[in] number Number to fill into \p set.
840 */
841static void
842set_fill_number(struct lyxp_set *set, long double number)
843{
Michal Vaskod3678892020-05-21 10:06:58 +0200844 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200845
846 set->type = LYXP_SET_NUMBER;
847 set->val.num = number;
848}
849
850/**
851 * @brief Fill XPath set with a boolean. Any current data are disposed of.
852 *
853 * @param[in] set Set to fill.
854 * @param[in] boolean Boolean to fill into \p set.
855 */
856static void
Radek Krejci857189e2020-09-01 13:26:36 +0200857set_fill_boolean(struct lyxp_set *set, ly_bool boolean)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200858{
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_BOOLEAN;
Michal Vasko004d3152020-06-11 19:59:22 +0200862 set->val.bln = boolean;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200863}
864
865/**
866 * @brief Fill XPath set with the value from another set (deep assign).
867 * Any current data are disposed of.
868 *
869 * @param[in] trg Set to fill.
870 * @param[in] src Source set to copy into \p trg.
871 */
872static void
Michal Vasko4c7763f2020-07-27 17:40:37 +0200873set_fill_set(struct lyxp_set *trg, const struct lyxp_set *src)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200874{
875 if (!trg || !src) {
876 return;
877 }
878
879 if (trg->type == LYXP_SET_NODE_SET) {
880 free(trg->val.nodes);
881 } else if (trg->type == LYXP_SET_STRING) {
882 free(trg->val.str);
883 }
884 set_init(trg, src);
885
886 if (src->type == LYXP_SET_SCNODE_SET) {
887 trg->type = LYXP_SET_SCNODE_SET;
888 trg->used = src->used;
889 trg->size = src->used;
890
891 trg->val.scnodes = ly_realloc(trg->val.scnodes, trg->size * sizeof *trg->val.scnodes);
892 LY_CHECK_ERR_RET(!trg->val.scnodes, LOGMEM(src->ctx); memset(trg, 0, sizeof *trg), );
893 memcpy(trg->val.scnodes, src->val.scnodes, src->used * sizeof *src->val.scnodes);
894 } else if (src->type == LYXP_SET_BOOLEAN) {
Michal Vasko004d3152020-06-11 19:59:22 +0200895 set_fill_boolean(trg, src->val.bln);
Michal Vasko44f3d2c2020-08-24 09:49:38 +0200896 } else if (src->type == LYXP_SET_NUMBER) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200897 set_fill_number(trg, src->val.num);
898 } else if (src->type == LYXP_SET_STRING) {
899 set_fill_string(trg, src->val.str, strlen(src->val.str));
900 } else {
901 if (trg->type == LYXP_SET_NODE_SET) {
902 free(trg->val.nodes);
903 } else if (trg->type == LYXP_SET_STRING) {
904 free(trg->val.str);
905 }
906
Michal Vaskod3678892020-05-21 10:06:58 +0200907 assert(src->type == LYXP_SET_NODE_SET);
908
909 trg->type = LYXP_SET_NODE_SET;
910 trg->used = src->used;
911 trg->size = src->used;
912 trg->ctx_pos = src->ctx_pos;
913 trg->ctx_size = src->ctx_size;
914
915 trg->val.nodes = malloc(trg->used * sizeof *trg->val.nodes);
916 LY_CHECK_ERR_RET(!trg->val.nodes, LOGMEM(src->ctx); memset(trg, 0, sizeof *trg), );
917 memcpy(trg->val.nodes, src->val.nodes, src->used * sizeof *src->val.nodes);
918 if (src->ht) {
919 trg->ht = lyht_dup(src->ht);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200920 } else {
Michal Vaskod3678892020-05-21 10:06:58 +0200921 trg->ht = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200922 }
923 }
924}
925
926/**
927 * @brief Clear context of all schema nodes.
928 *
929 * @param[in] set Set to clear.
930 */
931static void
932set_scnode_clear_ctx(struct lyxp_set *set)
933{
934 uint32_t i;
935
936 for (i = 0; i < set->used; ++i) {
937 if (set->val.scnodes[i].in_ctx == 1) {
938 set->val.scnodes[i].in_ctx = 0;
Michal Vasko5c4e5892019-11-14 12:31:38 +0100939 } else if (set->val.scnodes[i].in_ctx == -2) {
940 set->val.scnodes[i].in_ctx = -1;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200941 }
942 }
943}
944
945/**
946 * @brief Remove a node from a set. Removing last node changes
947 * set into LYXP_SET_EMPTY. Context position aware.
948 *
949 * @param[in] set Set to use.
950 * @param[in] idx Index from @p set of the node to be removed.
951 */
952static void
953set_remove_node(struct lyxp_set *set, uint32_t idx)
954{
955 assert(set && (set->type == LYXP_SET_NODE_SET));
956 assert(idx < set->used);
957
958 set_remove_node_hash(set, set->val.nodes[idx].node, set->val.nodes[idx].type);
959
960 --set->used;
961 if (set->used) {
962 memmove(&set->val.nodes[idx], &set->val.nodes[idx + 1],
963 (set->used - idx) * sizeof *set->val.nodes);
964 } else {
Michal Vaskod3678892020-05-21 10:06:58 +0200965 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200966 }
967}
968
969/**
Michal Vasko2caefc12019-11-14 16:07:56 +0100970 * @brief Remove a node from a set by setting its type to LYXP_NODE_NONE.
Michal Vasko57eab132019-09-24 11:46:26 +0200971 *
972 * @param[in] set Set to use.
973 * @param[in] idx Index from @p set of the node to be removed.
974 */
975static void
Michal Vasko2caefc12019-11-14 16:07:56 +0100976set_remove_node_none(struct lyxp_set *set, uint32_t idx)
Michal Vasko57eab132019-09-24 11:46:26 +0200977{
978 assert(set && (set->type == LYXP_SET_NODE_SET));
979 assert(idx < set->used);
980
Michal Vasko2caefc12019-11-14 16:07:56 +0100981 if (set->val.nodes[idx].type == LYXP_NODE_ELEM) {
982 set_remove_node_hash(set, set->val.nodes[idx].node, set->val.nodes[idx].type);
983 }
984 set->val.nodes[idx].type = LYXP_NODE_NONE;
Michal Vasko57eab132019-09-24 11:46:26 +0200985}
986
987/**
Michal Vasko2caefc12019-11-14 16:07:56 +0100988 * @brief Remove all LYXP_NODE_NONE nodes from a set. Removing last node changes
Michal Vasko57eab132019-09-24 11:46:26 +0200989 * set into LYXP_SET_EMPTY. Context position aware.
990 *
991 * @param[in] set Set to consolidate.
992 */
993static void
Michal Vasko2caefc12019-11-14 16:07:56 +0100994set_remove_nodes_none(struct lyxp_set *set)
Michal Vasko57eab132019-09-24 11:46:26 +0200995{
Michal Vaskoed4fcfe2020-07-08 10:38:56 +0200996 uint16_t i, orig_used, end = 0;
Michal Vasko57eab132019-09-24 11:46:26 +0200997 int32_t start;
998
Michal Vaskod3678892020-05-21 10:06:58 +0200999 assert(set);
Michal Vasko57eab132019-09-24 11:46:26 +02001000
1001 orig_used = set->used;
1002 set->used = 0;
Michal Vaskod989ba02020-08-24 10:59:24 +02001003 for (i = 0; i < orig_used; ) {
Michal Vasko57eab132019-09-24 11:46:26 +02001004 start = -1;
1005 do {
Michal Vasko2caefc12019-11-14 16:07:56 +01001006 if ((set->val.nodes[i].type != LYXP_NODE_NONE) && (start == -1)) {
Michal Vasko57eab132019-09-24 11:46:26 +02001007 start = i;
Michal Vasko2caefc12019-11-14 16:07:56 +01001008 } else if ((start > -1) && (set->val.nodes[i].type == LYXP_NODE_NONE)) {
Michal Vasko57eab132019-09-24 11:46:26 +02001009 end = i;
1010 ++i;
1011 break;
1012 }
1013
1014 ++i;
1015 if (i == orig_used) {
1016 end = i;
1017 }
1018 } while (i < orig_used);
1019
1020 if (start > -1) {
1021 /* move the whole chunk of valid nodes together */
1022 if (set->used != (unsigned)start) {
1023 memmove(&set->val.nodes[set->used], &set->val.nodes[start], (end - start) * sizeof *set->val.nodes);
1024 }
1025 set->used += end - start;
1026 }
1027 }
Michal Vasko57eab132019-09-24 11:46:26 +02001028}
1029
1030/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02001031 * @brief Check for duplicates in a node set.
1032 *
1033 * @param[in] set Set to check.
1034 * @param[in] node Node to look for in @p set.
1035 * @param[in] node_type Type of @p node.
1036 * @param[in] skip_idx Index from @p set to skip.
1037 * @return LY_ERR
1038 */
1039static LY_ERR
1040set_dup_node_check(const struct lyxp_set *set, const struct lyd_node *node, enum lyxp_node_type node_type, int skip_idx)
1041{
1042 uint32_t i;
1043
Michal Vasko2caefc12019-11-14 16:07:56 +01001044 if (set->ht && node) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001045 return set_dup_node_hash_check(set, (struct lyd_node *)node, node_type, skip_idx);
1046 }
1047
1048 for (i = 0; i < set->used; ++i) {
1049 if ((skip_idx > -1) && (i == (unsigned)skip_idx)) {
1050 continue;
1051 }
1052
1053 if ((set->val.nodes[i].node == node) && (set->val.nodes[i].type == node_type)) {
1054 return LY_EEXIST;
1055 }
1056 }
1057
1058 return LY_SUCCESS;
1059}
1060
Radek Krejci857189e2020-09-01 13:26:36 +02001061ly_bool
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001062lyxp_set_scnode_contains(struct lyxp_set *set, const struct lysc_node *node, enum lyxp_node_type node_type, int skip_idx,
1063 uint32_t *index_p)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001064{
1065 uint32_t i;
1066
1067 for (i = 0; i < set->used; ++i) {
1068 if ((skip_idx > -1) && (i == (unsigned)skip_idx)) {
1069 continue;
1070 }
1071
1072 if ((set->val.scnodes[i].scnode == node) && (set->val.scnodes[i].type == node_type)) {
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001073 if (index_p) {
1074 *index_p = i;
1075 }
1076 return 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001077 }
1078 }
1079
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001080 return 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001081}
1082
Michal Vaskoecd62de2019-11-13 12:35:11 +01001083void
1084lyxp_set_scnode_merge(struct lyxp_set *set1, struct lyxp_set *set2)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001085{
1086 uint32_t orig_used, i, j;
1087
Michal Vaskod3678892020-05-21 10:06:58 +02001088 assert((set1->type == LYXP_SET_SCNODE_SET) && (set2->type == LYXP_SET_SCNODE_SET));
Michal Vasko03ff5a72019-09-11 13:49:33 +02001089
Michal Vaskod3678892020-05-21 10:06:58 +02001090 if (!set2->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001091 return;
1092 }
1093
Michal Vaskod3678892020-05-21 10:06:58 +02001094 if (!set1->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001095 memcpy(set1, set2, sizeof *set1);
1096 return;
1097 }
1098
1099 if (set1->used + set2->used > set1->size) {
1100 set1->size = set1->used + set2->used;
1101 set1->val.scnodes = ly_realloc(set1->val.scnodes, set1->size * sizeof *set1->val.scnodes);
1102 LY_CHECK_ERR_RET(!set1->val.scnodes, LOGMEM(set1->ctx), );
1103 }
1104
1105 orig_used = set1->used;
1106
1107 for (i = 0; i < set2->used; ++i) {
1108 for (j = 0; j < orig_used; ++j) {
1109 /* detect duplicities */
1110 if (set1->val.scnodes[j].scnode == set2->val.scnodes[i].scnode) {
1111 break;
1112 }
1113 }
1114
1115 if (j == orig_used) {
1116 memcpy(&set1->val.scnodes[set1->used], &set2->val.scnodes[i], sizeof *set2->val.scnodes);
1117 ++set1->used;
1118 }
1119 }
1120
Michal Vaskod3678892020-05-21 10:06:58 +02001121 lyxp_set_free_content(set2);
1122 set2->type = LYXP_SET_SCNODE_SET;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001123}
1124
1125/**
1126 * @brief Insert a node into a set. Context position aware.
1127 *
1128 * @param[in] set Set to use.
1129 * @param[in] node Node to insert to @p set.
1130 * @param[in] pos Sort position of @p node. If left 0, it is filled just before sorting.
1131 * @param[in] node_type Node type of @p node.
1132 * @param[in] idx Index in @p set to insert into.
1133 */
1134static void
1135set_insert_node(struct lyxp_set *set, const struct lyd_node *node, uint32_t pos, enum lyxp_node_type node_type, uint32_t idx)
1136{
Michal Vaskod3678892020-05-21 10:06:58 +02001137 assert(set && (set->type == LYXP_SET_NODE_SET));
Michal Vasko03ff5a72019-09-11 13:49:33 +02001138
Michal Vaskod3678892020-05-21 10:06:58 +02001139 if (!set->size) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001140 /* first item */
1141 if (idx) {
1142 /* no real harm done, but it is a bug */
1143 LOGINT(set->ctx);
1144 idx = 0;
1145 }
1146 set->val.nodes = malloc(LYXP_SET_SIZE_START * sizeof *set->val.nodes);
1147 LY_CHECK_ERR_RET(!set->val.nodes, LOGMEM(set->ctx), );
1148 set->type = LYXP_SET_NODE_SET;
1149 set->used = 0;
1150 set->size = LYXP_SET_SIZE_START;
1151 set->ctx_pos = 1;
1152 set->ctx_size = 1;
1153 set->ht = NULL;
1154 } else {
1155 /* not an empty set */
1156 if (set->used == set->size) {
1157
1158 /* set is full */
1159 set->val.nodes = ly_realloc(set->val.nodes, (set->size + LYXP_SET_SIZE_STEP) * sizeof *set->val.nodes);
1160 LY_CHECK_ERR_RET(!set->val.nodes, LOGMEM(set->ctx), );
1161 set->size += LYXP_SET_SIZE_STEP;
1162 }
1163
1164 if (idx > set->used) {
1165 LOGINT(set->ctx);
1166 idx = set->used;
1167 }
1168
1169 /* make space for the new node */
1170 if (idx < set->used) {
1171 memmove(&set->val.nodes[idx + 1], &set->val.nodes[idx], (set->used - idx) * sizeof *set->val.nodes);
1172 }
1173 }
1174
1175 /* finally assign the value */
1176 set->val.nodes[idx].node = (struct lyd_node *)node;
1177 set->val.nodes[idx].type = node_type;
1178 set->val.nodes[idx].pos = pos;
1179 ++set->used;
1180
Michal Vasko2caefc12019-11-14 16:07:56 +01001181 if (set->val.nodes[idx].type == LYXP_NODE_ELEM) {
1182 set_insert_node_hash(set, (struct lyd_node *)node, node_type);
1183 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02001184}
1185
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001186LY_ERR
1187lyxp_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 +02001188{
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001189 uint32_t index;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001190
1191 assert(set->type == LYXP_SET_SCNODE_SET);
1192
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001193 if (lyxp_set_scnode_contains(set, node, node_type, -1, &index)) {
1194 set->val.scnodes[index].in_ctx = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001195 } else {
1196 if (set->used == set->size) {
1197 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 +02001198 LY_CHECK_ERR_RET(!set->val.scnodes, LOGMEM(set->ctx), LY_EMEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001199 set->size += LYXP_SET_SIZE_STEP;
1200 }
1201
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001202 index = set->used;
1203 set->val.scnodes[index].scnode = (struct lysc_node *)node;
1204 set->val.scnodes[index].type = node_type;
1205 set->val.scnodes[index].in_ctx = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001206 ++set->used;
1207 }
1208
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001209 if (index_p) {
1210 *index_p = index;
1211 }
1212
1213 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001214}
1215
1216/**
1217 * @brief Replace a node in a set with another. Context position aware.
1218 *
1219 * @param[in] set Set to use.
1220 * @param[in] node Node to insert to @p set.
1221 * @param[in] pos Sort position of @p node. If left 0, it is filled just before sorting.
1222 * @param[in] node_type Node type of @p node.
1223 * @param[in] idx Index in @p set of the node to replace.
1224 */
1225static void
1226set_replace_node(struct lyxp_set *set, const struct lyd_node *node, uint32_t pos, enum lyxp_node_type node_type, uint32_t idx)
1227{
1228 assert(set && (idx < set->used));
1229
Michal Vasko2caefc12019-11-14 16:07:56 +01001230 if (set->val.nodes[idx].type == LYXP_NODE_ELEM) {
1231 set_remove_node_hash(set, set->val.nodes[idx].node, set->val.nodes[idx].type);
1232 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02001233 set->val.nodes[idx].node = (struct lyd_node *)node;
1234 set->val.nodes[idx].type = node_type;
1235 set->val.nodes[idx].pos = pos;
Michal Vasko2caefc12019-11-14 16:07:56 +01001236 if (set->val.nodes[idx].type == LYXP_NODE_ELEM) {
1237 set_insert_node_hash(set, set->val.nodes[idx].node, set->val.nodes[idx].type);
1238 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02001239}
1240
1241/**
1242 * @brief Set all nodes with ctx 1 to a new unique context value.
1243 *
1244 * @param[in] set Set to modify.
1245 * @return New context value.
1246 */
Michal Vasko5c4e5892019-11-14 12:31:38 +01001247static int32_t
Michal Vasko03ff5a72019-09-11 13:49:33 +02001248set_scnode_new_in_ctx(struct lyxp_set *set)
1249{
Michal Vasko5c4e5892019-11-14 12:31:38 +01001250 uint32_t i;
1251 int32_t ret_ctx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001252
1253 assert(set->type == LYXP_SET_SCNODE_SET);
1254
1255 ret_ctx = 3;
1256retry:
1257 for (i = 0; i < set->used; ++i) {
1258 if (set->val.scnodes[i].in_ctx >= ret_ctx) {
1259 ret_ctx = set->val.scnodes[i].in_ctx + 1;
1260 goto retry;
1261 }
1262 }
1263 for (i = 0; i < set->used; ++i) {
1264 if (set->val.scnodes[i].in_ctx == 1) {
1265 set->val.scnodes[i].in_ctx = ret_ctx;
1266 }
1267 }
1268
1269 return ret_ctx;
1270}
1271
1272/**
1273 * @brief Get unique @p node position in the data.
1274 *
1275 * @param[in] node Node to find.
1276 * @param[in] node_type Node type of @p node.
1277 * @param[in] root Root node.
1278 * @param[in] root_type Type of the XPath @p root node.
1279 * @param[in] prev Node that we think is before @p node in DFS from @p root. Can optionally
1280 * be used to increase efficiency and start the DFS from this node.
1281 * @param[in] prev_pos Node @p prev position. Optional, but must be set if @p prev is set.
1282 * @return Node position.
1283 */
1284static uint32_t
1285get_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 +02001286 enum lyxp_node_type root_type, const struct lyd_node **prev, uint32_t *prev_pos)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001287{
Michal Vasko56daf732020-08-10 10:57:18 +02001288 const struct lyd_node *elem = NULL, *top_sibling;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001289 uint32_t pos = 1;
Michal Vaskofb6c9dd2020-11-18 18:18:47 +01001290 ly_bool found = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001291
1292 assert(prev && prev_pos && !root->prev->next);
1293
1294 if ((node_type == LYXP_NODE_ROOT) || (node_type == LYXP_NODE_ROOT_CONFIG)) {
1295 return 0;
1296 }
1297
1298 if (*prev) {
1299 /* start from the previous element instead from the root */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001300 pos = *prev_pos;
Michal Vaskofb6c9dd2020-11-18 18:18:47 +01001301 for (top_sibling = *prev; top_sibling->parent; top_sibling = lyd_parent(top_sibling)) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02001302 goto dfs_search;
1303 }
1304
Michal Vaskofb6c9dd2020-11-18 18:18:47 +01001305 LY_LIST_FOR(root, top_sibling) {
Michal Vasko56daf732020-08-10 10:57:18 +02001306 LYD_TREE_DFS_BEGIN(top_sibling, elem) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001307dfs_search:
Michal Vasko56daf732020-08-10 10:57:18 +02001308 if (*prev && !elem) {
1309 /* resume previous DFS */
1310 elem = LYD_TREE_DFS_next = (struct lyd_node *)*prev;
1311 LYD_TREE_DFS_continue = 0;
1312 }
1313
Michal Vasko03ff5a72019-09-11 13:49:33 +02001314 if ((root_type == LYXP_NODE_ROOT_CONFIG) && (elem->schema->flags & LYS_CONFIG_R)) {
Michal Vasko56daf732020-08-10 10:57:18 +02001315 /* skip */
1316 LYD_TREE_DFS_continue = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001317 } else {
Michal Vasko56daf732020-08-10 10:57:18 +02001318 if (elem == node) {
Michal Vaskofb6c9dd2020-11-18 18:18:47 +01001319 found = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001320 break;
1321 }
Michal Vasko56daf732020-08-10 10:57:18 +02001322 ++pos;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001323 }
Michal Vasko56daf732020-08-10 10:57:18 +02001324
1325 LYD_TREE_DFS_END(top_sibling, elem);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001326 }
1327
1328 /* node found */
Michal Vaskofb6c9dd2020-11-18 18:18:47 +01001329 if (found) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001330 break;
1331 }
1332 }
1333
Michal Vaskofb6c9dd2020-11-18 18:18:47 +01001334 if (!found) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001335 if (!(*prev)) {
1336 /* we went from root and failed to find it, cannot be */
Michal Vaskob7be7a82020-08-20 09:09:04 +02001337 LOGINT(LYD_CTX(node));
Michal Vasko03ff5a72019-09-11 13:49:33 +02001338 return 0;
1339 } else {
Michal Vasko56daf732020-08-10 10:57:18 +02001340 /* start the search again from the beginning */
1341 *prev = root;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001342
Michal Vasko56daf732020-08-10 10:57:18 +02001343 top_sibling = root;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001344 pos = 1;
1345 goto dfs_search;
1346 }
1347 }
1348
1349 /* remember the last found node for next time */
1350 *prev = node;
1351 *prev_pos = pos;
1352
1353 return pos;
1354}
1355
1356/**
1357 * @brief Assign (fill) missing node positions.
1358 *
1359 * @param[in] set Set to fill positions in.
1360 * @param[in] root Context root node.
1361 * @param[in] root_type Context root type.
1362 * @return LY_ERR
1363 */
1364static LY_ERR
1365set_assign_pos(struct lyxp_set *set, const struct lyd_node *root, enum lyxp_node_type root_type)
1366{
1367 const struct lyd_node *prev = NULL, *tmp_node;
1368 uint32_t i, tmp_pos = 0;
1369
1370 for (i = 0; i < set->used; ++i) {
1371 if (!set->val.nodes[i].pos) {
1372 tmp_node = NULL;
1373 switch (set->val.nodes[i].type) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001374 case LYXP_NODE_META:
1375 tmp_node = set->val.meta[i].meta->parent;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001376 if (!tmp_node) {
1377 LOGINT_RET(root->schema->module->ctx);
1378 }
Radek Krejci0f969882020-08-21 16:56:47 +02001379 /* fallthrough */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001380 case LYXP_NODE_ELEM:
1381 case LYXP_NODE_TEXT:
1382 if (!tmp_node) {
1383 tmp_node = set->val.nodes[i].node;
1384 }
1385 set->val.nodes[i].pos = get_node_pos(tmp_node, set->val.nodes[i].type, root, root_type, &prev, &tmp_pos);
1386 break;
1387 default:
1388 /* all roots have position 0 */
1389 break;
1390 }
1391 }
1392 }
1393
1394 return LY_SUCCESS;
1395}
1396
1397/**
Michal Vasko9f96a052020-03-10 09:41:45 +01001398 * @brief Get unique @p meta position in the parent metadata.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001399 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001400 * @param[in] meta Metadata to use.
1401 * @return Metadata position.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001402 */
1403static uint16_t
Michal Vasko9f96a052020-03-10 09:41:45 +01001404get_meta_pos(struct lyd_meta *meta)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001405{
1406 uint16_t pos = 0;
Michal Vasko9f96a052020-03-10 09:41:45 +01001407 struct lyd_meta *meta2;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001408
Michal Vasko9f96a052020-03-10 09:41:45 +01001409 for (meta2 = meta->parent->meta; meta2 && (meta2 != meta); meta2 = meta2->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001410 ++pos;
1411 }
1412
Michal Vasko9f96a052020-03-10 09:41:45 +01001413 assert(meta2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001414 return pos;
1415}
1416
1417/**
1418 * @brief Compare 2 nodes in respect to XPath document order.
1419 *
1420 * @param[in] item1 1st node.
1421 * @param[in] item2 2nd node.
1422 * @return If 1st > 2nd returns 1, 1st == 2nd returns 0, and 1st < 2nd returns -1.
1423 */
1424static int
1425set_sort_compare(struct lyxp_set_node *item1, struct lyxp_set_node *item2)
1426{
Michal Vasko9f96a052020-03-10 09:41:45 +01001427 uint32_t meta_pos1 = 0, meta_pos2 = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001428
1429 if (item1->pos < item2->pos) {
1430 return -1;
1431 }
1432
1433 if (item1->pos > item2->pos) {
1434 return 1;
1435 }
1436
1437 /* node positions are equal, the fun case */
1438
1439 /* 1st ELEM - == - 2nd TEXT, 1st TEXT - == - 2nd ELEM */
1440 /* special case since text nodes are actually saved as their parents */
1441 if ((item1->node == item2->node) && (item1->type != item2->type)) {
1442 if (item1->type == LYXP_NODE_ELEM) {
1443 assert(item2->type == LYXP_NODE_TEXT);
1444 return -1;
1445 } else {
1446 assert((item1->type == LYXP_NODE_TEXT) && (item2->type == LYXP_NODE_ELEM));
1447 return 1;
1448 }
1449 }
1450
Michal Vasko9f96a052020-03-10 09:41:45 +01001451 /* we need meta positions now */
1452 if (item1->type == LYXP_NODE_META) {
1453 meta_pos1 = get_meta_pos((struct lyd_meta *)item1->node);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001454 }
Michal Vasko9f96a052020-03-10 09:41:45 +01001455 if (item2->type == LYXP_NODE_META) {
1456 meta_pos2 = get_meta_pos((struct lyd_meta *)item2->node);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001457 }
1458
Michal Vasko9f96a052020-03-10 09:41:45 +01001459 /* 1st ROOT - 2nd ROOT, 1st ELEM - 2nd ELEM, 1st TEXT - 2nd TEXT, 1st META - =pos= - 2nd META */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001460 /* check for duplicates */
1461 if (item1->node == item2->node) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001462 assert((item1->type == item2->type) && ((item1->type != LYXP_NODE_META) || (meta_pos1 == meta_pos2)));
Michal Vasko03ff5a72019-09-11 13:49:33 +02001463 return 0;
1464 }
1465
Michal Vasko9f96a052020-03-10 09:41:45 +01001466 /* 1st ELEM - 2nd TEXT, 1st ELEM - any pos - 2nd META */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001467 /* elem is always first, 2nd node is after it */
1468 if (item1->type == LYXP_NODE_ELEM) {
1469 assert(item2->type != LYXP_NODE_ELEM);
1470 return -1;
1471 }
1472
Michal Vasko9f96a052020-03-10 09:41:45 +01001473 /* 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 +02001474 /* 2nd is before 1st */
Michal Vasko69730152020-10-09 16:30:07 +02001475 if (((item1->type == LYXP_NODE_TEXT) &&
1476 ((item2->type == LYXP_NODE_ELEM) || (item2->type == LYXP_NODE_META))) ||
1477 ((item1->type == LYXP_NODE_META) && (item2->type == LYXP_NODE_ELEM)) ||
1478 (((item1->type == LYXP_NODE_META) && (item2->type == LYXP_NODE_META)) &&
1479 (meta_pos1 > meta_pos2))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001480 return 1;
1481 }
1482
Michal Vasko9f96a052020-03-10 09:41:45 +01001483 /* 1st META - any pos - 2nd TEXT, 1st META <pos< - 2nd META */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001484 /* 2nd is after 1st */
1485 return -1;
1486}
1487
1488/**
1489 * @brief Set cast for comparisons.
1490 *
1491 * @param[in] trg Target set to cast source into.
1492 * @param[in] src Source set.
1493 * @param[in] type Target set type.
1494 * @param[in] src_idx Source set node index.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001495 * @return LY_ERR
1496 */
1497static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001498set_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 +02001499{
1500 assert(src->type == LYXP_SET_NODE_SET);
1501
1502 set_init(trg, src);
1503
1504 /* insert node into target set */
1505 set_insert_node(trg, src->val.nodes[src_idx].node, src->val.nodes[src_idx].pos, src->val.nodes[src_idx].type, 0);
1506
1507 /* cast target set appropriately */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001508 return lyxp_set_cast(trg, type);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001509}
1510
Michal Vasko4c7763f2020-07-27 17:40:37 +02001511/**
1512 * @brief Set content canonization for comparisons.
1513 *
1514 * @param[in] trg Target set to put the canononized source into.
1515 * @param[in] src Source set.
1516 * @param[in] xp_node Source XPath node/meta to use for canonization.
1517 * @return LY_ERR
1518 */
1519static LY_ERR
1520set_comp_canonize(struct lyxp_set *trg, const struct lyxp_set *src, const struct lyxp_set_node *xp_node)
1521{
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001522 const struct lysc_type *type = NULL;
Michal Vasko4c7763f2020-07-27 17:40:37 +02001523 struct lyd_value val;
1524 struct ly_err_item *err = NULL;
1525 char *str, *ptr;
Michal Vasko4c7763f2020-07-27 17:40:37 +02001526 LY_ERR rc;
1527
1528 /* is there anything to canonize even? */
1529 if ((src->type == LYXP_SET_NUMBER) || (src->type == LYXP_SET_STRING)) {
1530 /* do we have a type to use for canonization? */
1531 if ((xp_node->type == LYXP_NODE_ELEM) && (xp_node->node->schema->nodetype & LYD_NODE_TERM)) {
1532 type = ((struct lyd_node_term *)xp_node->node)->value.realtype;
1533 } else if (xp_node->type == LYXP_NODE_META) {
1534 type = ((struct lyd_meta *)xp_node->node)->value.realtype;
1535 }
1536 }
1537 if (!type) {
1538 goto fill;
1539 }
1540
1541 if (src->type == LYXP_SET_NUMBER) {
1542 /* canonize number */
1543 if (asprintf(&str, "%Lf", src->val.num) == -1) {
1544 LOGMEM(src->ctx);
1545 return LY_EMEM;
1546 }
1547 } else {
1548 /* canonize string */
1549 str = strdup(src->val.str);
1550 }
1551
1552 /* ignore errors, the value may not satisfy schema constraints */
Michal Vasko0fdb0d92020-11-06 17:25:50 +01001553 rc = type->plugin->store(src->ctx, type, str, strlen(str), LY_TYPE_STORE_DYNAMIC, src->format, src->prefix_data,
1554 LYD_HINT_DATA, xp_node->node->schema, &val, &err);
Michal Vasko4c7763f2020-07-27 17:40:37 +02001555 ly_err_free(err);
1556 if (rc) {
1557 /* invalid value */
1558 free(str);
1559 goto fill;
1560 }
1561
Michal Vasko4c7763f2020-07-27 17:40:37 +02001562 /* use the canonized value */
1563 set_init(trg, src);
1564 trg->type = src->type;
1565 if (src->type == LYXP_SET_NUMBER) {
Michal Vasko0fdb0d92020-11-06 17:25:50 +01001566 trg->val.num = strtold(val.canonical, &ptr);
Michal Vasko4c7763f2020-07-27 17:40:37 +02001567 LY_CHECK_ERR_RET(ptr[0], LOGINT(src->ctx), LY_EINT);
1568 } else {
Michal Vasko0fdb0d92020-11-06 17:25:50 +01001569 trg->val.str = strdup(val.canonical);
Michal Vasko4c7763f2020-07-27 17:40:37 +02001570 }
1571 type->plugin->free(src->ctx, &val);
1572 return LY_SUCCESS;
1573
1574fill:
1575 /* no canonization needed/possible */
1576 set_fill_set(trg, src);
1577 return LY_SUCCESS;
1578}
1579
Michal Vasko03ff5a72019-09-11 13:49:33 +02001580#ifndef NDEBUG
1581
1582/**
1583 * @brief Bubble sort @p set into XPath document order.
1584 * Context position aware. Unused in the 'Release' build target.
1585 *
1586 * @param[in] set Set to sort.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001587 * @return How many times the whole set was traversed - 1 (if set was sorted, returns 0).
1588 */
1589static int
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001590set_sort(struct lyxp_set *set)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001591{
1592 uint32_t i, j;
Radek Krejci1deb5be2020-08-26 16:43:36 +02001593 int ret = 0, cmp;
Radek Krejci857189e2020-09-01 13:26:36 +02001594 ly_bool inverted, change;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001595 const struct lyd_node *root;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001596 struct lyxp_set_node item;
1597 struct lyxp_set_hash_node hnode;
1598 uint64_t hash;
1599
Michal Vasko3cf8fbf2020-05-27 15:21:21 +02001600 if ((set->type != LYXP_SET_NODE_SET) || (set->used < 2)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001601 return 0;
1602 }
1603
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001604 /* find first top-level node to be used as anchor for positions */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02001605 for (root = set->cur_node; root->parent; root = (const struct lyd_node *)root->parent) {}
Michal Vaskod989ba02020-08-24 10:59:24 +02001606 for ( ; root->prev->next; root = root->prev) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02001607
1608 /* fill positions */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001609 if (set_assign_pos(set, root, set->root_type)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001610 return -1;
1611 }
1612
1613 LOGDBG(LY_LDGXPATH, "SORT BEGIN");
1614 print_set_debug(set);
1615
1616 for (i = 0; i < set->used; ++i) {
1617 inverted = 0;
1618 change = 0;
1619
1620 for (j = 1; j < set->used - i; ++j) {
1621 /* compare node positions */
1622 if (inverted) {
1623 cmp = set_sort_compare(&set->val.nodes[j], &set->val.nodes[j - 1]);
1624 } else {
1625 cmp = set_sort_compare(&set->val.nodes[j - 1], &set->val.nodes[j]);
1626 }
1627
1628 /* swap if needed */
1629 if ((inverted && (cmp < 0)) || (!inverted && (cmp > 0))) {
1630 change = 1;
1631
1632 item = set->val.nodes[j - 1];
1633 set->val.nodes[j - 1] = set->val.nodes[j];
1634 set->val.nodes[j] = item;
1635 } else {
1636 /* whether node_pos1 should be smaller than node_pos2 or the other way around */
1637 inverted = !inverted;
1638 }
1639 }
1640
1641 ++ret;
1642
1643 if (!change) {
1644 break;
1645 }
1646 }
1647
1648 LOGDBG(LY_LDGXPATH, "SORT END %d", ret);
1649 print_set_debug(set);
1650
1651 /* check node hashes */
1652 if (set->used >= LYD_HT_MIN_ITEMS) {
1653 assert(set->ht);
1654 for (i = 0; i < set->used; ++i) {
1655 hnode.node = set->val.nodes[i].node;
1656 hnode.type = set->val.nodes[i].type;
1657
1658 hash = dict_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node);
1659 hash = dict_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type);
1660 hash = dict_hash_multi(hash, NULL, 0);
1661
1662 assert(!lyht_find(set->ht, &hnode, hash, NULL));
1663 }
1664 }
1665
1666 return ret - 1;
1667}
1668
1669/**
1670 * @brief Remove duplicate entries in a sorted node set.
1671 *
1672 * @param[in] set Sorted set to check.
1673 * @return LY_ERR (LY_EEXIST if some duplicates are found)
1674 */
1675static LY_ERR
1676set_sorted_dup_node_clean(struct lyxp_set *set)
1677{
1678 uint32_t i = 0;
1679 LY_ERR ret = LY_SUCCESS;
1680
1681 if (set->used > 1) {
1682 while (i < set->used - 1) {
Michal Vasko69730152020-10-09 16:30:07 +02001683 if ((set->val.nodes[i].node == set->val.nodes[i + 1].node) &&
1684 (set->val.nodes[i].type == set->val.nodes[i + 1].type)) {
Michal Vasko2caefc12019-11-14 16:07:56 +01001685 set_remove_node_none(set, i + 1);
Michal Vasko57eab132019-09-24 11:46:26 +02001686 ret = LY_EEXIST;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001687 }
Michal Vasko57eab132019-09-24 11:46:26 +02001688 ++i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001689 }
1690 }
1691
Michal Vasko2caefc12019-11-14 16:07:56 +01001692 set_remove_nodes_none(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001693 return ret;
1694}
1695
1696#endif
1697
1698/**
1699 * @brief Merge 2 sorted sets into one.
1700 *
1701 * @param[in,out] trg Set to merge into. Duplicates are removed.
1702 * @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 +02001703 * @return LY_ERR
1704 */
1705static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001706set_sorted_merge(struct lyxp_set *trg, struct lyxp_set *src)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001707{
1708 uint32_t i, j, k, count, dup_count;
1709 int cmp;
1710 const struct lyd_node *root;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001711
Michal Vaskod3678892020-05-21 10:06:58 +02001712 if ((trg->type != LYXP_SET_NODE_SET) || (src->type != LYXP_SET_NODE_SET)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001713 return LY_EINVAL;
1714 }
1715
Michal Vaskod3678892020-05-21 10:06:58 +02001716 if (!src->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001717 return LY_SUCCESS;
Michal Vaskod3678892020-05-21 10:06:58 +02001718 } else if (!trg->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001719 set_fill_set(trg, src);
Michal Vaskod3678892020-05-21 10:06:58 +02001720 lyxp_set_free_content(src);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001721 return LY_SUCCESS;
1722 }
1723
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001724 /* find first top-level node to be used as anchor for positions */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02001725 for (root = trg->cur_node; root->parent; root = (const struct lyd_node *)root->parent) {}
Michal Vaskod989ba02020-08-24 10:59:24 +02001726 for ( ; root->prev->next; root = root->prev) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02001727
1728 /* fill positions */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001729 if (set_assign_pos(trg, root, trg->root_type) || set_assign_pos(src, root, src->root_type)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001730 return LY_EINT;
1731 }
1732
1733#ifndef NDEBUG
1734 LOGDBG(LY_LDGXPATH, "MERGE target");
1735 print_set_debug(trg);
1736 LOGDBG(LY_LDGXPATH, "MERGE source");
1737 print_set_debug(src);
1738#endif
1739
1740 /* make memory for the merge (duplicates are not detected yet, so space
1741 * will likely be wasted on them, too bad) */
1742 if (trg->size - trg->used < src->used) {
1743 trg->size = trg->used + src->used;
1744
1745 trg->val.nodes = ly_realloc(trg->val.nodes, trg->size * sizeof *trg->val.nodes);
1746 LY_CHECK_ERR_RET(!trg->val.nodes, LOGMEM(src->ctx), LY_EMEM);
1747 }
1748
1749 i = 0;
1750 j = 0;
1751 count = 0;
1752 dup_count = 0;
1753 do {
1754 cmp = set_sort_compare(&src->val.nodes[i], &trg->val.nodes[j]);
1755 if (!cmp) {
1756 if (!count) {
1757 /* duplicate, just skip it */
1758 ++i;
1759 ++j;
1760 } else {
1761 /* we are copying something already, so let's copy the duplicate too,
1762 * we are hoping that afterwards there are some more nodes to
1763 * copy and this way we can copy them all together */
1764 ++count;
1765 ++dup_count;
1766 ++i;
1767 ++j;
1768 }
1769 } else if (cmp < 0) {
1770 /* inserting src node into trg, just remember it for now */
1771 ++count;
1772 ++i;
1773
1774 /* insert the hash now */
1775 set_insert_node_hash(trg, src->val.nodes[i - 1].node, src->val.nodes[i - 1].type);
1776 } else if (count) {
1777copy_nodes:
1778 /* time to actually copy the nodes, we have found the largest block of nodes */
1779 memmove(&trg->val.nodes[j + (count - dup_count)],
1780 &trg->val.nodes[j],
1781 (trg->used - j) * sizeof *trg->val.nodes);
1782 memcpy(&trg->val.nodes[j - dup_count], &src->val.nodes[i - count], count * sizeof *src->val.nodes);
1783
1784 trg->used += count - dup_count;
1785 /* do not change i, except the copying above, we are basically doing exactly what is in the else branch below */
1786 j += count - dup_count;
1787
1788 count = 0;
1789 dup_count = 0;
1790 } else {
1791 ++j;
1792 }
1793 } while ((i < src->used) && (j < trg->used));
1794
1795 if ((i < src->used) || count) {
1796 /* insert all the hashes first */
1797 for (k = i; k < src->used; ++k) {
1798 set_insert_node_hash(trg, src->val.nodes[k].node, src->val.nodes[k].type);
1799 }
1800
1801 /* loop ended, but we need to copy something at trg end */
1802 count += src->used - i;
1803 i = src->used;
1804 goto copy_nodes;
1805 }
1806
1807 /* we are inserting hashes before the actual node insert, which causes
1808 * situations when there were initially not enough items for a hash table,
1809 * but even after some were inserted, hash table was not created (during
1810 * insertion the number of items is not updated yet) */
1811 if (!trg->ht && (trg->used >= LYD_HT_MIN_ITEMS)) {
1812 set_insert_node_hash(trg, NULL, 0);
1813 }
1814
1815#ifndef NDEBUG
1816 LOGDBG(LY_LDGXPATH, "MERGE result");
1817 print_set_debug(trg);
1818#endif
1819
Michal Vaskod3678892020-05-21 10:06:58 +02001820 lyxp_set_free_content(src);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001821 return LY_SUCCESS;
1822}
1823
1824/*
1825 * (re)parse functions
1826 *
1827 * Parse functions parse the expression into
1828 * tokens (syntactic analysis).
1829 *
1830 * Reparse functions perform semantic analysis
1831 * (do not save the result, just a check) of
1832 * the expression and fill repeat indices.
1833 */
1834
Michal Vasko14676352020-05-29 11:35:55 +02001835LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02001836lyxp_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 +02001837{
Michal Vasko004d3152020-06-11 19:59:22 +02001838 if (exp->used == tok_idx) {
Michal Vasko14676352020-05-29 11:35:55 +02001839 if (ctx) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001840 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_EOF);
1841 }
Michal Vasko14676352020-05-29 11:35:55 +02001842 return LY_EINCOMPLETE;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001843 }
1844
Michal Vasko004d3152020-06-11 19:59:22 +02001845 if (want_tok && (exp->tokens[tok_idx] != want_tok)) {
Michal Vasko14676352020-05-29 11:35:55 +02001846 if (ctx) {
Michal Vasko0b468e62020-10-19 09:33:04 +02001847 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_INTOK2, lyxp_print_token(exp->tokens[tok_idx]),
1848 &exp->expr[exp->tok_pos[tok_idx]], lyxp_print_token(want_tok));
Michal Vasko03ff5a72019-09-11 13:49:33 +02001849 }
Michal Vasko14676352020-05-29 11:35:55 +02001850 return LY_ENOT;
1851 }
1852
1853 return LY_SUCCESS;
1854}
1855
Michal Vasko004d3152020-06-11 19:59:22 +02001856LY_ERR
1857lyxp_next_token(const struct ly_ctx *ctx, const struct lyxp_expr *exp, uint16_t *tok_idx, enum lyxp_token want_tok)
1858{
1859 LY_CHECK_RET(lyxp_check_token(ctx, exp, *tok_idx, want_tok));
1860
1861 /* skip the token */
1862 ++(*tok_idx);
1863
1864 return LY_SUCCESS;
1865}
1866
Michal Vasko14676352020-05-29 11:35:55 +02001867/* just like lyxp_check_token() but tests for 2 tokens */
1868static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02001869exp_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 +02001870 enum lyxp_token want_tok2)
Michal Vasko14676352020-05-29 11:35:55 +02001871{
Michal Vasko004d3152020-06-11 19:59:22 +02001872 if (exp->used == tok_idx) {
Michal Vasko14676352020-05-29 11:35:55 +02001873 if (ctx) {
1874 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_EOF);
1875 }
1876 return LY_EINCOMPLETE;
1877 }
1878
Michal Vasko004d3152020-06-11 19:59:22 +02001879 if ((exp->tokens[tok_idx] != want_tok1) && (exp->tokens[tok_idx] != want_tok2)) {
Michal Vasko14676352020-05-29 11:35:55 +02001880 if (ctx) {
Michal Vasko0b468e62020-10-19 09:33:04 +02001881 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_INTOK, lyxp_print_token(exp->tokens[tok_idx]),
1882 &exp->expr[exp->tok_pos[tok_idx]]);
Michal Vasko14676352020-05-29 11:35:55 +02001883 }
1884 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001885 }
1886
1887 return LY_SUCCESS;
1888}
1889
1890/**
1891 * @brief Stack operation push on the repeat array.
1892 *
1893 * @param[in] exp Expression to use.
Michal Vasko004d3152020-06-11 19:59:22 +02001894 * @param[in] tok_idx Position in the expresion \p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001895 * @param[in] repeat_op_idx Index from \p exp of the operator token. This value is pushed.
1896 */
1897static void
Michal Vasko004d3152020-06-11 19:59:22 +02001898exp_repeat_push(struct lyxp_expr *exp, uint16_t tok_idx, uint16_t repeat_op_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001899{
1900 uint16_t i;
1901
Michal Vasko004d3152020-06-11 19:59:22 +02001902 if (exp->repeat[tok_idx]) {
Radek Krejci1e008d22020-08-17 11:37:37 +02001903 for (i = 0; exp->repeat[tok_idx][i]; ++i) {}
Michal Vasko004d3152020-06-11 19:59:22 +02001904 exp->repeat[tok_idx] = realloc(exp->repeat[tok_idx], (i + 2) * sizeof *exp->repeat[tok_idx]);
1905 LY_CHECK_ERR_RET(!exp->repeat[tok_idx], LOGMEM(NULL), );
1906 exp->repeat[tok_idx][i] = repeat_op_idx;
1907 exp->repeat[tok_idx][i + 1] = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001908 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02001909 exp->repeat[tok_idx] = calloc(2, sizeof *exp->repeat[tok_idx]);
1910 LY_CHECK_ERR_RET(!exp->repeat[tok_idx], LOGMEM(NULL), );
1911 exp->repeat[tok_idx][0] = repeat_op_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001912 }
1913}
1914
1915/**
1916 * @brief Reparse Predicate. Logs directly on error.
1917 *
1918 * [7] Predicate ::= '[' Expr ']'
1919 *
1920 * @param[in] ctx Context for logging.
1921 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02001922 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001923 * @return LY_ERR
1924 */
1925static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02001926reparse_predicate(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001927{
1928 LY_ERR rc;
1929
Michal Vasko004d3152020-06-11 19:59:22 +02001930 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_BRACK1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001931 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02001932 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001933
Michal Vasko004d3152020-06-11 19:59:22 +02001934 rc = reparse_or_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001935 LY_CHECK_RET(rc);
1936
Michal Vasko004d3152020-06-11 19:59:22 +02001937 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_BRACK2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001938 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02001939 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001940
1941 return LY_SUCCESS;
1942}
1943
1944/**
1945 * @brief Reparse RelativeLocationPath. Logs directly on error.
1946 *
1947 * [4] RelativeLocationPath ::= Step | RelativeLocationPath '/' Step | RelativeLocationPath '//' Step
1948 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
1949 * [6] NodeTest ::= NameTest | NodeType '(' ')'
1950 *
1951 * @param[in] ctx Context for logging.
1952 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02001953 * @param[in] tok_idx Position in the expression \p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001954 * @return LY_ERR (LY_EINCOMPLETE on forward reference)
1955 */
1956static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02001957reparse_relative_location_path(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001958{
1959 LY_ERR rc;
1960
Michal Vasko004d3152020-06-11 19:59:22 +02001961 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001962 LY_CHECK_RET(rc);
1963
1964 goto step;
1965 do {
1966 /* '/' or '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02001967 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001968
Michal Vasko004d3152020-06-11 19:59:22 +02001969 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001970 LY_CHECK_RET(rc);
1971step:
1972 /* Step */
Michal Vasko004d3152020-06-11 19:59:22 +02001973 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001974 case LYXP_TOKEN_DOT:
Michal Vasko004d3152020-06-11 19:59:22 +02001975 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001976 break;
1977
1978 case LYXP_TOKEN_DDOT:
Michal Vasko004d3152020-06-11 19:59:22 +02001979 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001980 break;
1981
1982 case LYXP_TOKEN_AT:
Michal Vasko004d3152020-06-11 19:59:22 +02001983 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001984
Michal Vasko004d3152020-06-11 19:59:22 +02001985 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001986 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02001987 if ((exp->tokens[*tok_idx] != LYXP_TOKEN_NAMETEST) && (exp->tokens[*tok_idx] != LYXP_TOKEN_NODETYPE)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001988 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_INTOK,
Michal Vasko69730152020-10-09 16:30:07 +02001989 lyxp_print_token(exp->tokens[*tok_idx]), &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001990 return LY_EVALID;
1991 }
Radek Krejci0f969882020-08-21 16:56:47 +02001992 /* fall through */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001993 case LYXP_TOKEN_NAMETEST:
Michal Vasko004d3152020-06-11 19:59:22 +02001994 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001995 goto reparse_predicate;
1996 break;
1997
1998 case LYXP_TOKEN_NODETYPE:
Michal Vasko004d3152020-06-11 19:59:22 +02001999 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002000
2001 /* '(' */
Michal Vasko004d3152020-06-11 19:59:22 +02002002 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002003 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002004 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002005
2006 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02002007 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002008 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002009 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002010
2011reparse_predicate:
2012 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02002013 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
2014 rc = reparse_predicate(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002015 LY_CHECK_RET(rc);
2016 }
2017 break;
2018 default:
2019 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_INTOK,
Michal Vasko69730152020-10-09 16:30:07 +02002020 lyxp_print_token(exp->tokens[*tok_idx]), &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002021 return LY_EVALID;
2022 }
Michal Vasko004d3152020-06-11 19:59:22 +02002023 } while (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH));
Michal Vasko03ff5a72019-09-11 13:49:33 +02002024
2025 return LY_SUCCESS;
2026}
2027
2028/**
2029 * @brief Reparse AbsoluteLocationPath. Logs directly on error.
2030 *
2031 * [3] AbsoluteLocationPath ::= '/' RelativeLocationPath? | '//' RelativeLocationPath
2032 *
2033 * @param[in] ctx Context for logging.
2034 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002035 * @param[in] tok_idx Position in the expression \p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002036 * @return LY_ERR
2037 */
2038static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02002039reparse_absolute_location_path(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002040{
2041 LY_ERR rc;
2042
Michal Vasko004d3152020-06-11 19:59:22 +02002043 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 +02002044
2045 /* '/' RelativeLocationPath? */
Michal Vasko004d3152020-06-11 19:59:22 +02002046 if (exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_PATH) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002047 /* '/' */
Michal Vasko004d3152020-06-11 19:59:22 +02002048 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002049
Michal Vasko004d3152020-06-11 19:59:22 +02002050 if (lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_NONE)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002051 return LY_SUCCESS;
2052 }
Michal Vasko004d3152020-06-11 19:59:22 +02002053 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002054 case LYXP_TOKEN_DOT:
2055 case LYXP_TOKEN_DDOT:
2056 case LYXP_TOKEN_AT:
2057 case LYXP_TOKEN_NAMETEST:
2058 case LYXP_TOKEN_NODETYPE:
Michal Vasko004d3152020-06-11 19:59:22 +02002059 rc = reparse_relative_location_path(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002060 LY_CHECK_RET(rc);
Radek Krejci0f969882020-08-21 16:56:47 +02002061 /* fall through */
Michal Vasko03ff5a72019-09-11 13:49:33 +02002062 default:
2063 break;
2064 }
2065
Michal Vasko03ff5a72019-09-11 13:49:33 +02002066 } else {
Radek Krejcif6a11002020-08-21 13:29:07 +02002067 /* '//' RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02002068 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002069
Michal Vasko004d3152020-06-11 19:59:22 +02002070 rc = reparse_relative_location_path(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002071 LY_CHECK_RET(rc);
2072 }
2073
2074 return LY_SUCCESS;
2075}
2076
2077/**
2078 * @brief Reparse FunctionCall. Logs directly on error.
2079 *
2080 * [9] FunctionCall ::= FunctionName '(' ( Expr ( ',' Expr )* )? ')'
2081 *
2082 * @param[in] ctx Context for logging.
2083 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002084 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002085 * @return LY_ERR
2086 */
2087static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02002088reparse_function_call(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002089{
Radek Krejci1deb5be2020-08-26 16:43:36 +02002090 int8_t min_arg_count = -1;
2091 uint32_t arg_count, max_arg_count = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002092 uint16_t func_tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002093 LY_ERR rc;
2094
Michal Vasko004d3152020-06-11 19:59:22 +02002095 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_FUNCNAME);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002096 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002097 func_tok_idx = *tok_idx;
2098 switch (exp->tok_len[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002099 case 3:
Michal Vasko004d3152020-06-11 19:59:22 +02002100 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "not", 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002101 min_arg_count = 1;
2102 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002103 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "sum", 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002104 min_arg_count = 1;
2105 max_arg_count = 1;
2106 }
2107 break;
2108 case 4:
Michal Vasko004d3152020-06-11 19:59:22 +02002109 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "lang", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002110 min_arg_count = 1;
2111 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002112 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "last", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002113 min_arg_count = 0;
2114 max_arg_count = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002115 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "name", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002116 min_arg_count = 0;
2117 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002118 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "true", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002119 min_arg_count = 0;
2120 max_arg_count = 0;
2121 }
2122 break;
2123 case 5:
Michal Vasko004d3152020-06-11 19:59:22 +02002124 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "count", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002125 min_arg_count = 1;
2126 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002127 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "false", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002128 min_arg_count = 0;
2129 max_arg_count = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002130 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "floor", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002131 min_arg_count = 1;
2132 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002133 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "round", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002134 min_arg_count = 1;
2135 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002136 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "deref", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002137 min_arg_count = 1;
2138 max_arg_count = 1;
2139 }
2140 break;
2141 case 6:
Michal Vasko004d3152020-06-11 19:59:22 +02002142 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "concat", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002143 min_arg_count = 2;
Radek Krejci1deb5be2020-08-26 16:43:36 +02002144 max_arg_count = UINT32_MAX;
Michal Vasko004d3152020-06-11 19:59:22 +02002145 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "number", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002146 min_arg_count = 0;
2147 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002148 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002149 min_arg_count = 0;
2150 max_arg_count = 1;
2151 }
2152 break;
2153 case 7:
Michal Vasko004d3152020-06-11 19:59:22 +02002154 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "boolean", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002155 min_arg_count = 1;
2156 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002157 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "ceiling", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002158 min_arg_count = 1;
2159 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002160 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "current", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002161 min_arg_count = 0;
2162 max_arg_count = 0;
2163 }
2164 break;
2165 case 8:
Michal Vasko004d3152020-06-11 19:59:22 +02002166 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "contains", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002167 min_arg_count = 2;
2168 max_arg_count = 2;
Michal Vasko004d3152020-06-11 19:59:22 +02002169 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "position", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002170 min_arg_count = 0;
2171 max_arg_count = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002172 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "re-match", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002173 min_arg_count = 2;
2174 max_arg_count = 2;
2175 }
2176 break;
2177 case 9:
Michal Vasko004d3152020-06-11 19:59:22 +02002178 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring", 9)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002179 min_arg_count = 2;
2180 max_arg_count = 3;
Michal Vasko004d3152020-06-11 19:59:22 +02002181 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "translate", 9)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002182 min_arg_count = 3;
2183 max_arg_count = 3;
2184 }
2185 break;
2186 case 10:
Michal Vasko004d3152020-06-11 19:59:22 +02002187 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "local-name", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002188 min_arg_count = 0;
2189 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002190 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "enum-value", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002191 min_arg_count = 1;
2192 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002193 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "bit-is-set", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002194 min_arg_count = 2;
2195 max_arg_count = 2;
2196 }
2197 break;
2198 case 11:
Michal Vasko004d3152020-06-11 19:59:22 +02002199 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "starts-with", 11)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002200 min_arg_count = 2;
2201 max_arg_count = 2;
2202 }
2203 break;
2204 case 12:
Michal Vasko004d3152020-06-11 19:59:22 +02002205 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from", 12)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002206 min_arg_count = 2;
2207 max_arg_count = 2;
2208 }
2209 break;
2210 case 13:
Michal Vasko004d3152020-06-11 19:59:22 +02002211 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "namespace-uri", 13)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002212 min_arg_count = 0;
2213 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002214 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string-length", 13)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002215 min_arg_count = 0;
2216 max_arg_count = 1;
2217 }
2218 break;
2219 case 15:
Michal Vasko004d3152020-06-11 19:59:22 +02002220 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "normalize-space", 15)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002221 min_arg_count = 0;
2222 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002223 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-after", 15)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002224 min_arg_count = 2;
2225 max_arg_count = 2;
2226 }
2227 break;
2228 case 16:
Michal Vasko004d3152020-06-11 19:59:22 +02002229 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-before", 16)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002230 min_arg_count = 2;
2231 max_arg_count = 2;
2232 }
2233 break;
2234 case 20:
Michal Vasko004d3152020-06-11 19:59:22 +02002235 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from-or-self", 20)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002236 min_arg_count = 2;
2237 max_arg_count = 2;
2238 }
2239 break;
2240 }
2241 if (min_arg_count == -1) {
Michal Vasko004d3152020-06-11 19:59:22 +02002242 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_INFUNC, exp->tok_len[*tok_idx], &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002243 return LY_EINVAL;
2244 }
Michal Vasko004d3152020-06-11 19:59:22 +02002245 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002246
2247 /* '(' */
Michal Vasko004d3152020-06-11 19:59:22 +02002248 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002249 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002250 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002251
2252 /* ( Expr ( ',' Expr )* )? */
2253 arg_count = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002254 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002255 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002256 if (exp->tokens[*tok_idx] != LYXP_TOKEN_PAR2) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002257 ++arg_count;
Michal Vasko004d3152020-06-11 19:59:22 +02002258 rc = reparse_or_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002259 LY_CHECK_RET(rc);
2260 }
Michal Vasko004d3152020-06-11 19:59:22 +02002261 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_COMMA)) {
2262 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002263
2264 ++arg_count;
Michal Vasko004d3152020-06-11 19:59:22 +02002265 rc = reparse_or_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002266 LY_CHECK_RET(rc);
2267 }
2268
2269 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02002270 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002271 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002272 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002273
Radek Krejci857189e2020-09-01 13:26:36 +02002274 if ((arg_count < (uint32_t)min_arg_count) || (arg_count > max_arg_count)) {
Michal Vasko004d3152020-06-11 19:59:22 +02002275 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_INARGCOUNT, arg_count, exp->tok_len[func_tok_idx],
Michal Vasko69730152020-10-09 16:30:07 +02002276 &exp->expr[exp->tok_pos[func_tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002277 return LY_EVALID;
2278 }
2279
2280 return LY_SUCCESS;
2281}
2282
2283/**
2284 * @brief Reparse PathExpr. Logs directly on error.
2285 *
2286 * [10] PathExpr ::= LocationPath | PrimaryExpr Predicate*
2287 * | PrimaryExpr Predicate* '/' RelativeLocationPath
2288 * | PrimaryExpr Predicate* '//' RelativeLocationPath
2289 * [2] LocationPath ::= RelativeLocationPath | AbsoluteLocationPath
2290 * [8] PrimaryExpr ::= '(' Expr ')' | Literal | Number | FunctionCall
2291 *
2292 * @param[in] ctx Context for logging.
2293 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002294 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002295 * @return LY_ERR
2296 */
2297static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02002298reparse_path_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002299{
2300 LY_ERR rc;
2301
Michal Vasko004d3152020-06-11 19:59:22 +02002302 if (lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE)) {
Michal Vasko14676352020-05-29 11:35:55 +02002303 return LY_EVALID;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002304 }
2305
Michal Vasko004d3152020-06-11 19:59:22 +02002306 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002307 case LYXP_TOKEN_PAR1:
2308 /* '(' Expr ')' Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02002309 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002310
Michal Vasko004d3152020-06-11 19:59:22 +02002311 rc = reparse_or_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002312 LY_CHECK_RET(rc);
2313
Michal Vasko004d3152020-06-11 19:59:22 +02002314 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002315 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002316 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002317 goto predicate;
2318 break;
2319 case LYXP_TOKEN_DOT:
2320 case LYXP_TOKEN_DDOT:
2321 case LYXP_TOKEN_AT:
2322 case LYXP_TOKEN_NAMETEST:
2323 case LYXP_TOKEN_NODETYPE:
2324 /* RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02002325 rc = reparse_relative_location_path(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002326 LY_CHECK_RET(rc);
2327 break;
2328 case LYXP_TOKEN_FUNCNAME:
2329 /* FunctionCall */
Michal Vasko004d3152020-06-11 19:59:22 +02002330 rc = reparse_function_call(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002331 LY_CHECK_RET(rc);
2332 goto predicate;
2333 break;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002334 case LYXP_TOKEN_OPER_PATH:
2335 case LYXP_TOKEN_OPER_RPATH:
Michal Vasko03ff5a72019-09-11 13:49:33 +02002336 /* AbsoluteLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02002337 rc = reparse_absolute_location_path(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002338 LY_CHECK_RET(rc);
2339 break;
2340 case LYXP_TOKEN_LITERAL:
2341 /* Literal */
Michal Vasko004d3152020-06-11 19:59:22 +02002342 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002343 goto predicate;
2344 break;
2345 case LYXP_TOKEN_NUMBER:
2346 /* Number */
Michal Vasko004d3152020-06-11 19:59:22 +02002347 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002348 goto predicate;
2349 break;
2350 default:
2351 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_INTOK,
Michal Vasko69730152020-10-09 16:30:07 +02002352 lyxp_print_token(exp->tokens[*tok_idx]), &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002353 return LY_EVALID;
2354 }
2355
2356 return LY_SUCCESS;
2357
2358predicate:
2359 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02002360 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
2361 rc = reparse_predicate(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002362 LY_CHECK_RET(rc);
2363 }
2364
2365 /* ('/' or '//') RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02002366 if (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002367
2368 /* '/' or '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02002369 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002370
Michal Vasko004d3152020-06-11 19:59:22 +02002371 rc = reparse_relative_location_path(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002372 LY_CHECK_RET(rc);
2373 }
2374
2375 return LY_SUCCESS;
2376}
2377
2378/**
2379 * @brief Reparse UnaryExpr. Logs directly on error.
2380 *
2381 * [17] UnaryExpr ::= UnionExpr | '-' UnaryExpr
2382 * [18] UnionExpr ::= PathExpr | UnionExpr '|' PathExpr
2383 *
2384 * @param[in] ctx Context for logging.
2385 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002386 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002387 * @return LY_ERR
2388 */
2389static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02002390reparse_unary_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002391{
2392 uint16_t prev_exp;
2393 LY_ERR rc;
2394
2395 /* ('-')* */
Michal Vasko004d3152020-06-11 19:59:22 +02002396 prev_exp = *tok_idx;
Michal Vasko69730152020-10-09 16:30:07 +02002397 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_MATH) &&
2398 (exp->expr[exp->tok_pos[*tok_idx]] == '-')) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002399 exp_repeat_push(exp, prev_exp, LYXP_EXPR_UNARY);
Michal Vasko004d3152020-06-11 19:59:22 +02002400 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002401 }
2402
2403 /* PathExpr */
Michal Vasko004d3152020-06-11 19:59:22 +02002404 prev_exp = *tok_idx;
2405 rc = reparse_path_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002406 LY_CHECK_RET(rc);
2407
2408 /* ('|' PathExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002409 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_UNI)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002410 exp_repeat_push(exp, prev_exp, LYXP_EXPR_UNION);
Michal Vasko004d3152020-06-11 19:59:22 +02002411 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002412
Michal Vasko004d3152020-06-11 19:59:22 +02002413 rc = reparse_path_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002414 LY_CHECK_RET(rc);
2415 }
2416
2417 return LY_SUCCESS;
2418}
2419
2420/**
2421 * @brief Reparse AdditiveExpr. Logs directly on error.
2422 *
2423 * [15] AdditiveExpr ::= MultiplicativeExpr
2424 * | AdditiveExpr '+' MultiplicativeExpr
2425 * | AdditiveExpr '-' MultiplicativeExpr
2426 * [16] MultiplicativeExpr ::= UnaryExpr
2427 * | MultiplicativeExpr '*' UnaryExpr
2428 * | MultiplicativeExpr 'div' UnaryExpr
2429 * | MultiplicativeExpr 'mod' UnaryExpr
2430 *
2431 * @param[in] ctx Context for logging.
2432 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002433 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002434 * @return LY_ERR
2435 */
2436static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02002437reparse_additive_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002438{
2439 uint16_t prev_add_exp, prev_mul_exp;
2440 LY_ERR rc;
2441
Michal Vasko004d3152020-06-11 19:59:22 +02002442 prev_add_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002443 goto reparse_multiplicative_expr;
2444
2445 /* ('+' / '-' MultiplicativeExpr)* */
Michal Vasko69730152020-10-09 16:30:07 +02002446 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_MATH) &&
2447 ((exp->expr[exp->tok_pos[*tok_idx]] == '+') || (exp->expr[exp->tok_pos[*tok_idx]] == '-'))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002448 exp_repeat_push(exp, prev_add_exp, LYXP_EXPR_ADDITIVE);
Michal Vasko004d3152020-06-11 19:59:22 +02002449 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002450
2451reparse_multiplicative_expr:
2452 /* UnaryExpr */
Michal Vasko004d3152020-06-11 19:59:22 +02002453 prev_mul_exp = *tok_idx;
2454 rc = reparse_unary_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002455 LY_CHECK_RET(rc);
2456
2457 /* ('*' / 'div' / 'mod' UnaryExpr)* */
Michal Vasko69730152020-10-09 16:30:07 +02002458 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_MATH) &&
2459 ((exp->expr[exp->tok_pos[*tok_idx]] == '*') || (exp->tok_len[*tok_idx] == 3))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002460 exp_repeat_push(exp, prev_mul_exp, LYXP_EXPR_MULTIPLICATIVE);
Michal Vasko004d3152020-06-11 19:59:22 +02002461 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002462
Michal Vasko004d3152020-06-11 19:59:22 +02002463 rc = reparse_unary_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002464 LY_CHECK_RET(rc);
2465 }
2466 }
2467
2468 return LY_SUCCESS;
2469}
2470
2471/**
2472 * @brief Reparse EqualityExpr. Logs directly on error.
2473 *
2474 * [13] EqualityExpr ::= RelationalExpr | EqualityExpr '=' RelationalExpr
2475 * | EqualityExpr '!=' RelationalExpr
2476 * [14] RelationalExpr ::= AdditiveExpr
2477 * | RelationalExpr '<' AdditiveExpr
2478 * | RelationalExpr '>' AdditiveExpr
2479 * | RelationalExpr '<=' AdditiveExpr
2480 * | RelationalExpr '>=' AdditiveExpr
2481 *
2482 * @param[in] ctx Context for logging.
2483 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002484 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002485 * @return LY_ERR
2486 */
2487static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02002488reparse_equality_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002489{
2490 uint16_t prev_eq_exp, prev_rel_exp;
2491 LY_ERR rc;
2492
Michal Vasko004d3152020-06-11 19:59:22 +02002493 prev_eq_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002494 goto reparse_additive_expr;
2495
2496 /* ('=' / '!=' RelationalExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002497 while (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_EQUAL, LYXP_TOKEN_OPER_NEQUAL)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002498 exp_repeat_push(exp, prev_eq_exp, LYXP_EXPR_EQUALITY);
Michal Vasko004d3152020-06-11 19:59:22 +02002499 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002500
2501reparse_additive_expr:
2502 /* AdditiveExpr */
Michal Vasko004d3152020-06-11 19:59:22 +02002503 prev_rel_exp = *tok_idx;
2504 rc = reparse_additive_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002505 LY_CHECK_RET(rc);
2506
2507 /* ('<' / '>' / '<=' / '>=' AdditiveExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002508 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_COMP)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002509 exp_repeat_push(exp, prev_rel_exp, LYXP_EXPR_RELATIONAL);
Michal Vasko004d3152020-06-11 19:59:22 +02002510 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002511
Michal Vasko004d3152020-06-11 19:59:22 +02002512 rc = reparse_additive_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002513 LY_CHECK_RET(rc);
2514 }
2515 }
2516
2517 return LY_SUCCESS;
2518}
2519
2520/**
2521 * @brief Reparse OrExpr. Logs directly on error.
2522 *
2523 * [11] OrExpr ::= AndExpr | OrExpr 'or' AndExpr
2524 * [12] AndExpr ::= EqualityExpr | AndExpr 'and' EqualityExpr
2525 *
2526 * @param[in] ctx Context for logging.
2527 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002528 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002529 * @return LY_ERR
2530 */
2531static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02002532reparse_or_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002533{
2534 uint16_t prev_or_exp, prev_and_exp;
2535 LY_ERR rc;
2536
Michal Vasko004d3152020-06-11 19:59:22 +02002537 prev_or_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002538 goto reparse_equality_expr;
2539
2540 /* ('or' AndExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002541 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 +02002542 exp_repeat_push(exp, prev_or_exp, LYXP_EXPR_OR);
Michal Vasko004d3152020-06-11 19:59:22 +02002543 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002544
2545reparse_equality_expr:
2546 /* EqualityExpr */
Michal Vasko004d3152020-06-11 19:59:22 +02002547 prev_and_exp = *tok_idx;
2548 rc = reparse_equality_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002549 LY_CHECK_RET(rc);
2550
2551 /* ('and' EqualityExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002552 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 +02002553 exp_repeat_push(exp, prev_and_exp, LYXP_EXPR_AND);
Michal Vasko004d3152020-06-11 19:59:22 +02002554 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002555
Michal Vasko004d3152020-06-11 19:59:22 +02002556 rc = reparse_equality_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002557 LY_CHECK_RET(rc);
2558 }
2559 }
2560
2561 return LY_SUCCESS;
2562}
Radek Krejcib1646a92018-11-02 16:08:26 +01002563
2564/**
2565 * @brief Parse NCName.
2566 *
2567 * @param[in] ncname Name to parse.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002568 * @return Length of @p ncname valid bytes.
Radek Krejcib1646a92018-11-02 16:08:26 +01002569 */
Radek Krejcid4270262019-01-07 15:07:25 +01002570static long int
Radek Krejcib1646a92018-11-02 16:08:26 +01002571parse_ncname(const char *ncname)
2572{
Radek Krejci1deb5be2020-08-26 16:43:36 +02002573 uint32_t uc;
Radek Krejcid4270262019-01-07 15:07:25 +01002574 size_t size;
2575 long int len = 0;
Radek Krejcib1646a92018-11-02 16:08:26 +01002576
2577 LY_CHECK_RET(ly_getutf8(&ncname, &uc, &size), 0);
2578 if (!is_xmlqnamestartchar(uc) || (uc == ':')) {
2579 return len;
2580 }
2581
2582 do {
2583 len += size;
Radek Krejci9a564c92019-01-07 14:53:57 +01002584 if (!*ncname) {
2585 break;
2586 }
Radek Krejcid4270262019-01-07 15:07:25 +01002587 LY_CHECK_RET(ly_getutf8(&ncname, &uc, &size), -len);
Radek Krejcib1646a92018-11-02 16:08:26 +01002588 } while (is_xmlqnamechar(uc) && (uc != ':'));
2589
2590 return len;
2591}
2592
2593/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02002594 * @brief Add @p token into the expression @p exp.
Radek Krejcib1646a92018-11-02 16:08:26 +01002595 *
Michal Vasko03ff5a72019-09-11 13:49:33 +02002596 * @param[in] ctx Context for logging.
Radek Krejcib1646a92018-11-02 16:08:26 +01002597 * @param[in] exp Expression to use.
2598 * @param[in] token Token to add.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002599 * @param[in] tok_pos Token position in the XPath expression.
Radek Krejcib1646a92018-11-02 16:08:26 +01002600 * @param[in] tok_len Token length in the XPath expression.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002601 * @return LY_ERR
Radek Krejcib1646a92018-11-02 16:08:26 +01002602 */
2603static LY_ERR
Michal Vasko14676352020-05-29 11:35:55 +02002604exp_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 +01002605{
2606 uint32_t prev;
2607
2608 if (exp->used == exp->size) {
2609 prev = exp->size;
2610 exp->size += LYXP_EXPR_SIZE_STEP;
2611 if (prev > exp->size) {
2612 LOGINT(ctx);
2613 return LY_EINT;
2614 }
2615
2616 exp->tokens = ly_realloc(exp->tokens, exp->size * sizeof *exp->tokens);
2617 LY_CHECK_ERR_RET(!exp->tokens, LOGMEM(ctx), LY_EMEM);
2618 exp->tok_pos = ly_realloc(exp->tok_pos, exp->size * sizeof *exp->tok_pos);
2619 LY_CHECK_ERR_RET(!exp->tok_pos, LOGMEM(ctx), LY_EMEM);
2620 exp->tok_len = ly_realloc(exp->tok_len, exp->size * sizeof *exp->tok_len);
2621 LY_CHECK_ERR_RET(!exp->tok_len, LOGMEM(ctx), LY_EMEM);
2622 }
2623
2624 exp->tokens[exp->used] = token;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002625 exp->tok_pos[exp->used] = tok_pos;
Radek Krejcib1646a92018-11-02 16:08:26 +01002626 exp->tok_len[exp->used] = tok_len;
2627 ++exp->used;
2628 return LY_SUCCESS;
2629}
2630
2631void
Michal Vasko14676352020-05-29 11:35:55 +02002632lyxp_expr_free(const struct ly_ctx *ctx, struct lyxp_expr *expr)
Radek Krejcib1646a92018-11-02 16:08:26 +01002633{
2634 uint16_t i;
2635
2636 if (!expr) {
2637 return;
2638 }
2639
2640 lydict_remove(ctx, expr->expr);
2641 free(expr->tokens);
2642 free(expr->tok_pos);
2643 free(expr->tok_len);
2644 if (expr->repeat) {
2645 for (i = 0; i < expr->used; ++i) {
2646 free(expr->repeat[i]);
2647 }
2648 }
2649 free(expr->repeat);
2650 free(expr);
2651}
2652
Radek Krejcif03a9e22020-09-18 20:09:31 +02002653LY_ERR
2654lyxp_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 +01002655{
Radek Krejcif03a9e22020-09-18 20:09:31 +02002656 LY_ERR ret = LY_SUCCESS;
2657 struct lyxp_expr *expr;
Radek Krejcid4270262019-01-07 15:07:25 +01002658 size_t parsed = 0, tok_len;
Radek Krejcib1646a92018-11-02 16:08:26 +01002659 enum lyxp_token tok_type;
Radek Krejci857189e2020-09-01 13:26:36 +02002660 ly_bool prev_function_check = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002661 uint16_t tok_idx = 0;
Radek Krejcib1646a92018-11-02 16:08:26 +01002662
Radek Krejcif03a9e22020-09-18 20:09:31 +02002663 assert(expr_p);
2664
2665 if (!expr_str[0]) {
Michal Vasko004d3152020-06-11 19:59:22 +02002666 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_EOF);
Radek Krejcif03a9e22020-09-18 20:09:31 +02002667 return LY_EVALID;
Michal Vasko004d3152020-06-11 19:59:22 +02002668 }
2669
2670 if (!expr_len) {
Radek Krejcif03a9e22020-09-18 20:09:31 +02002671 expr_len = strlen(expr_str);
Michal Vasko004d3152020-06-11 19:59:22 +02002672 }
2673 if (expr_len > UINT16_MAX) {
Radek Krejcif03a9e22020-09-18 20:09:31 +02002674 LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_XPATH, "XPath expression cannot be longer than %ud characters.", UINT16_MAX);
2675 return LY_EVALID;
Radek Krejcib1646a92018-11-02 16:08:26 +01002676 }
2677
2678 /* init lyxp_expr structure */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002679 expr = calloc(1, sizeof *expr);
2680 LY_CHECK_ERR_GOTO(!expr, LOGMEM(ctx); ret = LY_EMEM, error);
2681 LY_CHECK_GOTO(ret = lydict_insert(ctx, expr_str, expr_len, &expr->expr), error);
2682 expr->used = 0;
2683 expr->size = LYXP_EXPR_SIZE_START;
2684 expr->tokens = malloc(expr->size * sizeof *expr->tokens);
2685 LY_CHECK_ERR_GOTO(!expr->tokens, LOGMEM(ctx); ret = LY_EMEM, error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002686
Radek Krejcif03a9e22020-09-18 20:09:31 +02002687 expr->tok_pos = malloc(expr->size * sizeof *expr->tok_pos);
2688 LY_CHECK_ERR_GOTO(!expr->tok_pos, LOGMEM(ctx); ret = LY_EMEM, error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002689
Radek Krejcif03a9e22020-09-18 20:09:31 +02002690 expr->tok_len = malloc(expr->size * sizeof *expr->tok_len);
2691 LY_CHECK_ERR_GOTO(!expr->tok_len, LOGMEM(ctx); ret = LY_EMEM, error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002692
Michal Vasko004d3152020-06-11 19:59:22 +02002693 /* make expr 0-terminated */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002694 expr_str = expr->expr;
Michal Vasko004d3152020-06-11 19:59:22 +02002695
Radek Krejcif03a9e22020-09-18 20:09:31 +02002696 while (is_xmlws(expr_str[parsed])) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002697 ++parsed;
2698 }
2699
2700 do {
Radek Krejcif03a9e22020-09-18 20:09:31 +02002701 if (expr_str[parsed] == '(') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002702
2703 /* '(' */
2704 tok_len = 1;
2705 tok_type = LYXP_TOKEN_PAR1;
2706
Radek Krejcif03a9e22020-09-18 20:09:31 +02002707 if (prev_function_check && expr->used && (expr->tokens[expr->used - 1] == LYXP_TOKEN_NAMETEST)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002708 /* it is a NodeType/FunctionName after all */
Michal Vasko69730152020-10-09 16:30:07 +02002709 if (((expr->tok_len[expr->used - 1] == 4) &&
2710 (!strncmp(&expr_str[expr->tok_pos[expr->used - 1]], "node", 4) ||
2711 !strncmp(&expr_str[expr->tok_pos[expr->used - 1]], "text", 4))) ||
2712 ((expr->tok_len[expr->used - 1] == 7) &&
2713 !strncmp(&expr_str[expr->tok_pos[expr->used - 1]], "comment", 7))) {
Radek Krejcif03a9e22020-09-18 20:09:31 +02002714 expr->tokens[expr->used - 1] = LYXP_TOKEN_NODETYPE;
Radek Krejcib1646a92018-11-02 16:08:26 +01002715 } else {
Radek Krejcif03a9e22020-09-18 20:09:31 +02002716 expr->tokens[expr->used - 1] = LYXP_TOKEN_FUNCNAME;
Radek Krejcib1646a92018-11-02 16:08:26 +01002717 }
2718 prev_function_check = 0;
2719 }
2720
Radek Krejcif03a9e22020-09-18 20:09:31 +02002721 } else if (expr_str[parsed] == ')') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002722
2723 /* ')' */
2724 tok_len = 1;
2725 tok_type = LYXP_TOKEN_PAR2;
2726
Radek Krejcif03a9e22020-09-18 20:09:31 +02002727 } else if (expr_str[parsed] == '[') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002728
2729 /* '[' */
2730 tok_len = 1;
2731 tok_type = LYXP_TOKEN_BRACK1;
2732
Radek Krejcif03a9e22020-09-18 20:09:31 +02002733 } else if (expr_str[parsed] == ']') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002734
2735 /* ']' */
2736 tok_len = 1;
2737 tok_type = LYXP_TOKEN_BRACK2;
2738
Radek Krejcif03a9e22020-09-18 20:09:31 +02002739 } else if (!strncmp(&expr_str[parsed], "..", 2)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002740
2741 /* '..' */
2742 tok_len = 2;
2743 tok_type = LYXP_TOKEN_DDOT;
2744
Radek Krejcif03a9e22020-09-18 20:09:31 +02002745 } else if ((expr_str[parsed] == '.') && (!isdigit(expr_str[parsed + 1]))) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002746
2747 /* '.' */
2748 tok_len = 1;
2749 tok_type = LYXP_TOKEN_DOT;
2750
Radek Krejcif03a9e22020-09-18 20:09:31 +02002751 } else if (expr_str[parsed] == '@') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002752
2753 /* '@' */
2754 tok_len = 1;
2755 tok_type = LYXP_TOKEN_AT;
2756
Radek Krejcif03a9e22020-09-18 20:09:31 +02002757 } else if (expr_str[parsed] == ',') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002758
2759 /* ',' */
2760 tok_len = 1;
2761 tok_type = LYXP_TOKEN_COMMA;
2762
Radek Krejcif03a9e22020-09-18 20:09:31 +02002763 } else if (expr_str[parsed] == '\'') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002764
2765 /* Literal with ' */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002766 for (tok_len = 1; (expr_str[parsed + tok_len] != '\0') && (expr_str[parsed + tok_len] != '\''); ++tok_len) {}
2767 LY_CHECK_ERR_GOTO(expr_str[parsed + tok_len] == '\0',
Michal Vasko69730152020-10-09 16:30:07 +02002768 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_EOE, expr_str[parsed], &expr_str[parsed]); ret = LY_EVALID,
2769 error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002770 ++tok_len;
2771 tok_type = LYXP_TOKEN_LITERAL;
2772
Radek Krejcif03a9e22020-09-18 20:09:31 +02002773 } else if (expr_str[parsed] == '\"') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002774
2775 /* Literal with " */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002776 for (tok_len = 1; (expr_str[parsed + tok_len] != '\0') && (expr_str[parsed + tok_len] != '\"'); ++tok_len) {}
2777 LY_CHECK_ERR_GOTO(expr_str[parsed + tok_len] == '\0',
Michal Vasko69730152020-10-09 16:30:07 +02002778 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_EOE, expr_str[parsed], &expr_str[parsed]); ret = LY_EVALID,
2779 error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002780 ++tok_len;
2781 tok_type = LYXP_TOKEN_LITERAL;
2782
Radek Krejcif03a9e22020-09-18 20:09:31 +02002783 } else if ((expr_str[parsed] == '.') || (isdigit(expr_str[parsed]))) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002784
2785 /* Number */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002786 for (tok_len = 0; isdigit(expr_str[parsed + tok_len]); ++tok_len) {}
2787 if (expr_str[parsed + tok_len] == '.') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002788 ++tok_len;
Radek Krejcif03a9e22020-09-18 20:09:31 +02002789 for ( ; isdigit(expr_str[parsed + tok_len]); ++tok_len) {}
Radek Krejcib1646a92018-11-02 16:08:26 +01002790 }
2791 tok_type = LYXP_TOKEN_NUMBER;
2792
Radek Krejcif03a9e22020-09-18 20:09:31 +02002793 } else if (expr_str[parsed] == '/') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002794
2795 /* Operator '/', '//' */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002796 if (!strncmp(&expr_str[parsed], "//", 2)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002797 tok_len = 2;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002798 tok_type = LYXP_TOKEN_OPER_RPATH;
Radek Krejcib1646a92018-11-02 16:08:26 +01002799 } else {
2800 tok_len = 1;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002801 tok_type = LYXP_TOKEN_OPER_PATH;
Radek Krejcib1646a92018-11-02 16:08:26 +01002802 }
Radek Krejcib1646a92018-11-02 16:08:26 +01002803
Radek Krejcif03a9e22020-09-18 20:09:31 +02002804 } else if (!strncmp(&expr_str[parsed], "!=", 2)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002805
Michal Vasko3e48bf32020-06-01 08:39:07 +02002806 /* Operator '!=' */
Radek Krejcib1646a92018-11-02 16:08:26 +01002807 tok_len = 2;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002808 tok_type = LYXP_TOKEN_OPER_NEQUAL;
2809
Radek Krejcif03a9e22020-09-18 20:09:31 +02002810 } else if (!strncmp(&expr_str[parsed], "<=", 2) || !strncmp(&expr_str[parsed], ">=", 2)) {
Michal Vasko3e48bf32020-06-01 08:39:07 +02002811
2812 /* Operator '<=', '>=' */
2813 tok_len = 2;
2814 tok_type = LYXP_TOKEN_OPER_COMP;
Radek Krejcib1646a92018-11-02 16:08:26 +01002815
Radek Krejcif03a9e22020-09-18 20:09:31 +02002816 } else if (expr_str[parsed] == '|') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002817
2818 /* Operator '|' */
2819 tok_len = 1;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002820 tok_type = LYXP_TOKEN_OPER_UNI;
Radek Krejcib1646a92018-11-02 16:08:26 +01002821
Radek Krejcif03a9e22020-09-18 20:09:31 +02002822 } else if ((expr_str[parsed] == '+') || (expr_str[parsed] == '-')) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002823
2824 /* Operator '+', '-' */
2825 tok_len = 1;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002826 tok_type = LYXP_TOKEN_OPER_MATH;
Radek Krejcib1646a92018-11-02 16:08:26 +01002827
Radek Krejcif03a9e22020-09-18 20:09:31 +02002828 } else if (expr_str[parsed] == '=') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002829
Michal Vasko3e48bf32020-06-01 08:39:07 +02002830 /* Operator '=' */
Radek Krejcib1646a92018-11-02 16:08:26 +01002831 tok_len = 1;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002832 tok_type = LYXP_TOKEN_OPER_EQUAL;
2833
Radek Krejcif03a9e22020-09-18 20:09:31 +02002834 } else if ((expr_str[parsed] == '<') || (expr_str[parsed] == '>')) {
Michal Vasko3e48bf32020-06-01 08:39:07 +02002835
2836 /* Operator '<', '>' */
2837 tok_len = 1;
2838 tok_type = LYXP_TOKEN_OPER_COMP;
Radek Krejcib1646a92018-11-02 16:08:26 +01002839
Michal Vasko69730152020-10-09 16:30:07 +02002840 } else if (expr->used && (expr->tokens[expr->used - 1] != LYXP_TOKEN_AT) &&
2841 (expr->tokens[expr->used - 1] != LYXP_TOKEN_PAR1) &&
2842 (expr->tokens[expr->used - 1] != LYXP_TOKEN_BRACK1) &&
2843 (expr->tokens[expr->used - 1] != LYXP_TOKEN_COMMA) &&
2844 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_LOG) &&
2845 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_EQUAL) &&
2846 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_NEQUAL) &&
2847 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_COMP) &&
2848 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_MATH) &&
2849 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_UNI) &&
2850 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_PATH) &&
2851 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_RPATH)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002852
2853 /* Operator '*', 'or', 'and', 'mod', or 'div' */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002854 if (expr_str[parsed] == '*') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002855 tok_len = 1;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002856 tok_type = LYXP_TOKEN_OPER_MATH;
Radek Krejcib1646a92018-11-02 16:08:26 +01002857
Radek Krejcif03a9e22020-09-18 20:09:31 +02002858 } else if (!strncmp(&expr_str[parsed], "or", 2)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002859 tok_len = 2;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002860 tok_type = LYXP_TOKEN_OPER_LOG;
Radek Krejcib1646a92018-11-02 16:08:26 +01002861
Radek Krejcif03a9e22020-09-18 20:09:31 +02002862 } else if (!strncmp(&expr_str[parsed], "and", 3)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002863 tok_len = 3;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002864 tok_type = LYXP_TOKEN_OPER_LOG;
Radek Krejcib1646a92018-11-02 16:08:26 +01002865
Radek Krejcif03a9e22020-09-18 20:09:31 +02002866 } else if (!strncmp(&expr_str[parsed], "mod", 3) || !strncmp(&expr_str[parsed], "div", 3)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002867 tok_len = 3;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002868 tok_type = LYXP_TOKEN_OPER_MATH;
Radek Krejcib1646a92018-11-02 16:08:26 +01002869
2870 } else if (prev_function_check) {
Michal Vasko53078572019-05-24 08:50:15 +02002871 LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_XPATH, "Invalid character 0x%x ('%c'), perhaps \"%.*s\" is supposed to be a function call.",
Michal Vasko69730152020-10-09 16:30:07 +02002872 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 +02002873 ret = LY_EVALID;
Radek Krejcib1646a92018-11-02 16:08:26 +01002874 goto error;
2875 } else {
Radek Krejcif03a9e22020-09-18 20:09:31 +02002876 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_INEXPR, parsed + 1, expr_str);
2877 ret = LY_EVALID;
Radek Krejcib1646a92018-11-02 16:08:26 +01002878 goto error;
2879 }
Radek Krejcif03a9e22020-09-18 20:09:31 +02002880 } else if (expr_str[parsed] == '*') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002881
2882 /* NameTest '*' */
2883 tok_len = 1;
2884 tok_type = LYXP_TOKEN_NAMETEST;
2885
2886 } else {
2887
2888 /* NameTest (NCName ':' '*' | QName) or NodeType/FunctionName */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002889 long int ncname_len = parse_ncname(&expr_str[parsed]);
2890 LY_CHECK_ERR_GOTO(ncname_len < 0,
Michal Vasko69730152020-10-09 16:30:07 +02002891 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_INEXPR, parsed - ncname_len + 1, expr_str); ret = LY_EVALID,
2892 error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002893 tok_len = ncname_len;
2894
Radek Krejcif03a9e22020-09-18 20:09:31 +02002895 if (expr_str[parsed + tok_len] == ':') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002896 ++tok_len;
Radek Krejcif03a9e22020-09-18 20:09:31 +02002897 if (expr_str[parsed + tok_len] == '*') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002898 ++tok_len;
2899 } else {
Radek Krejcif03a9e22020-09-18 20:09:31 +02002900 ncname_len = parse_ncname(&expr_str[parsed + tok_len]);
2901 LY_CHECK_ERR_GOTO(ncname_len < 0,
Michal Vasko69730152020-10-09 16:30:07 +02002902 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_INEXPR, parsed - ncname_len + 1, expr_str); ret = LY_EVALID,
2903 error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002904 tok_len += ncname_len;
2905 }
2906 /* remove old flag to prevent ambiguities */
2907 prev_function_check = 0;
2908 tok_type = LYXP_TOKEN_NAMETEST;
2909 } else {
2910 /* there is no prefix so it can still be NodeType/FunctionName, we can't finally decide now */
2911 prev_function_check = 1;
2912 tok_type = LYXP_TOKEN_NAMETEST;
2913 }
2914 }
2915
2916 /* store the token, move on to the next one */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002917 LY_CHECK_GOTO(ret = exp_add_token(ctx, expr, tok_type, parsed, tok_len), error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002918 parsed += tok_len;
Radek Krejcif03a9e22020-09-18 20:09:31 +02002919 while (is_xmlws(expr_str[parsed])) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002920 ++parsed;
2921 }
2922
Radek Krejcif03a9e22020-09-18 20:09:31 +02002923 } while (expr_str[parsed]);
Radek Krejcib1646a92018-11-02 16:08:26 +01002924
Michal Vasko004d3152020-06-11 19:59:22 +02002925 if (reparse) {
2926 /* prealloc repeat */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002927 expr->repeat = calloc(expr->size, sizeof *expr->repeat);
2928 LY_CHECK_ERR_GOTO(!expr->repeat, LOGMEM(ctx); ret = LY_EMEM, error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002929
Michal Vasko004d3152020-06-11 19:59:22 +02002930 /* fill repeat */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002931 LY_CHECK_ERR_GOTO(reparse_or_expr(ctx, expr, &tok_idx), ret = LY_EVALID, error);
2932 if (expr->used > tok_idx) {
Michal Vasko004d3152020-06-11 19:59:22 +02002933 LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_XPATH, "Unparsed characters \"%s\" left at the end of an XPath expression.",
Michal Vasko69730152020-10-09 16:30:07 +02002934 &expr->expr[expr->tok_pos[tok_idx]]);
Radek Krejcif03a9e22020-09-18 20:09:31 +02002935 ret = LY_EVALID;
Michal Vasko004d3152020-06-11 19:59:22 +02002936 goto error;
2937 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02002938 }
2939
Radek Krejcif03a9e22020-09-18 20:09:31 +02002940 print_expr_struct_debug(expr);
2941 *expr_p = expr;
2942 return LY_SUCCESS;
Radek Krejcib1646a92018-11-02 16:08:26 +01002943
2944error:
Radek Krejcif03a9e22020-09-18 20:09:31 +02002945 lyxp_expr_free(ctx, expr);
2946 return ret;
Radek Krejcib1646a92018-11-02 16:08:26 +01002947}
2948
Michal Vasko1734be92020-09-22 08:55:10 +02002949LY_ERR
2950lyxp_expr_dup(const struct ly_ctx *ctx, const struct lyxp_expr *exp, struct lyxp_expr **dup_p)
Michal Vasko004d3152020-06-11 19:59:22 +02002951{
Michal Vasko1734be92020-09-22 08:55:10 +02002952 LY_ERR ret = LY_SUCCESS;
2953 struct lyxp_expr *dup = NULL;
Michal Vasko004d3152020-06-11 19:59:22 +02002954 uint32_t i, j;
2955
Michal Vasko7f45cf22020-10-01 12:49:44 +02002956 if (!exp) {
2957 goto cleanup;
2958 }
2959
Michal Vasko004d3152020-06-11 19:59:22 +02002960 dup = calloc(1, sizeof *dup);
Michal Vasko1734be92020-09-22 08:55:10 +02002961 LY_CHECK_ERR_GOTO(!dup, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02002962
2963 dup->tokens = malloc(exp->used * sizeof *dup->tokens);
Michal Vasko1734be92020-09-22 08:55:10 +02002964 LY_CHECK_ERR_GOTO(!dup->tokens, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02002965 memcpy(dup->tokens, exp->tokens, exp->used * sizeof *dup->tokens);
2966
2967 dup->tok_pos = malloc(exp->used * sizeof *dup->tok_pos);
Michal Vasko1734be92020-09-22 08:55:10 +02002968 LY_CHECK_ERR_GOTO(!dup->tok_pos, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02002969 memcpy(dup->tok_pos, exp->tok_pos, exp->used * sizeof *dup->tok_pos);
2970
2971 dup->tok_len = malloc(exp->used * sizeof *dup->tok_len);
Michal Vasko1734be92020-09-22 08:55:10 +02002972 LY_CHECK_ERR_GOTO(!dup->tok_len, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02002973 memcpy(dup->tok_len, exp->tok_len, exp->used * sizeof *dup->tok_len);
2974
2975 dup->repeat = malloc(exp->used * sizeof *dup->repeat);
Michal Vasko1734be92020-09-22 08:55:10 +02002976 LY_CHECK_ERR_GOTO(!dup->repeat, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02002977 for (i = 0; i < exp->used; ++i) {
2978 if (!exp->repeat[i]) {
2979 dup->repeat[i] = NULL;
2980 } else {
Radek Krejci1e008d22020-08-17 11:37:37 +02002981 for (j = 0; exp->repeat[i][j]; ++j) {}
Michal Vasko004d3152020-06-11 19:59:22 +02002982 /* the ending 0 as well */
2983 ++j;
2984
Michal Vasko99c71642020-07-03 13:33:36 +02002985 dup->repeat[i] = malloc(j * sizeof **dup->repeat);
Michal Vasko1734be92020-09-22 08:55:10 +02002986 LY_CHECK_ERR_GOTO(!dup->repeat[i], LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02002987 memcpy(dup->repeat[i], exp->repeat[i], j * sizeof **dup->repeat);
2988 dup->repeat[i][j - 1] = 0;
2989 }
2990 }
2991
2992 dup->used = exp->used;
2993 dup->size = exp->used;
Michal Vasko1734be92020-09-22 08:55:10 +02002994 LY_CHECK_GOTO(ret = lydict_insert(ctx, exp->expr, 0, &dup->expr), cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02002995
Michal Vasko1734be92020-09-22 08:55:10 +02002996cleanup:
2997 if (ret) {
2998 lyxp_expr_free(ctx, dup);
2999 } else {
3000 *dup_p = dup;
3001 }
3002 return ret;
Michal Vasko004d3152020-06-11 19:59:22 +02003003}
3004
Michal Vasko03ff5a72019-09-11 13:49:33 +02003005/*
3006 * warn functions
3007 *
3008 * Warn functions check specific reasonable conditions for schema XPath
3009 * and print a warning if they are not satisfied.
3010 */
3011
3012/**
3013 * @brief Get the last-added schema node that is currently in the context.
3014 *
3015 * @param[in] set Set to search in.
3016 * @return Last-added schema context node, NULL if no node is in context.
3017 */
3018static struct lysc_node *
3019warn_get_scnode_in_ctx(struct lyxp_set *set)
3020{
3021 uint32_t i;
3022
3023 if (!set || (set->type != LYXP_SET_SCNODE_SET)) {
3024 return NULL;
3025 }
3026
3027 i = set->used;
3028 do {
3029 --i;
3030 if (set->val.scnodes[i].in_ctx == 1) {
3031 /* if there are more, simply return the first found (last added) */
3032 return set->val.scnodes[i].scnode;
3033 }
3034 } while (i);
3035
3036 return NULL;
3037}
3038
3039/**
3040 * @brief Test whether a type is numeric - integer type or decimal64.
3041 *
3042 * @param[in] type Type to test.
Radek Krejci857189e2020-09-01 13:26:36 +02003043 * @return Boolean value whether @p type is numeric type or not.
Michal Vasko03ff5a72019-09-11 13:49:33 +02003044 */
Radek Krejci857189e2020-09-01 13:26:36 +02003045static ly_bool
Michal Vasko03ff5a72019-09-11 13:49:33 +02003046warn_is_numeric_type(struct lysc_type *type)
3047{
3048 struct lysc_type_union *uni;
Radek Krejci857189e2020-09-01 13:26:36 +02003049 ly_bool ret;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003050 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003051
3052 switch (type->basetype) {
3053 case LY_TYPE_DEC64:
3054 case LY_TYPE_INT8:
3055 case LY_TYPE_UINT8:
3056 case LY_TYPE_INT16:
3057 case LY_TYPE_UINT16:
3058 case LY_TYPE_INT32:
3059 case LY_TYPE_UINT32:
3060 case LY_TYPE_INT64:
3061 case LY_TYPE_UINT64:
3062 return 1;
3063 case LY_TYPE_UNION:
3064 uni = (struct lysc_type_union *)type;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003065 LY_ARRAY_FOR(uni->types, u) {
3066 ret = warn_is_numeric_type(uni->types[u]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003067 if (ret) {
3068 /* found a suitable type */
Radek Krejci857189e2020-09-01 13:26:36 +02003069 return ret;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003070 }
3071 }
3072 /* did not find any suitable type */
3073 return 0;
3074 case LY_TYPE_LEAFREF:
3075 return warn_is_numeric_type(((struct lysc_type_leafref *)type)->realtype);
3076 default:
3077 return 0;
3078 }
3079}
3080
3081/**
3082 * @brief Test whether a type is string-like - no integers, decimal64 or binary.
3083 *
3084 * @param[in] type Type to test.
Radek Krejci857189e2020-09-01 13:26:36 +02003085 * @return Boolean value whether @p type's basetype is string type or not.
Michal Vasko03ff5a72019-09-11 13:49:33 +02003086 */
Radek Krejci857189e2020-09-01 13:26:36 +02003087static ly_bool
Michal Vasko03ff5a72019-09-11 13:49:33 +02003088warn_is_string_type(struct lysc_type *type)
3089{
3090 struct lysc_type_union *uni;
Radek Krejci857189e2020-09-01 13:26:36 +02003091 ly_bool ret;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003092 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003093
3094 switch (type->basetype) {
3095 case LY_TYPE_BITS:
3096 case LY_TYPE_ENUM:
3097 case LY_TYPE_IDENT:
3098 case LY_TYPE_INST:
3099 case LY_TYPE_STRING:
3100 return 1;
3101 case LY_TYPE_UNION:
3102 uni = (struct lysc_type_union *)type;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003103 LY_ARRAY_FOR(uni->types, u) {
3104 ret = warn_is_string_type(uni->types[u]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003105 if (ret) {
3106 /* found a suitable type */
Radek Krejci857189e2020-09-01 13:26:36 +02003107 return ret;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003108 }
3109 }
3110 /* did not find any suitable type */
3111 return 0;
3112 case LY_TYPE_LEAFREF:
3113 return warn_is_string_type(((struct lysc_type_leafref *)type)->realtype);
3114 default:
3115 return 0;
3116 }
3117}
3118
3119/**
3120 * @brief Test whether a type is one specific type.
3121 *
3122 * @param[in] type Type to test.
3123 * @param[in] base Expected type.
Radek Krejci857189e2020-09-01 13:26:36 +02003124 * @return Boolean value whether the given @p type is of the specific basetype @p base.
Michal Vasko03ff5a72019-09-11 13:49:33 +02003125 */
Radek Krejci857189e2020-09-01 13:26:36 +02003126static ly_bool
Michal Vasko03ff5a72019-09-11 13:49:33 +02003127warn_is_specific_type(struct lysc_type *type, LY_DATA_TYPE base)
3128{
3129 struct lysc_type_union *uni;
Radek Krejci857189e2020-09-01 13:26:36 +02003130 ly_bool ret;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003131 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003132
3133 if (type->basetype == base) {
3134 return 1;
3135 } else if (type->basetype == LY_TYPE_UNION) {
3136 uni = (struct lysc_type_union *)type;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003137 LY_ARRAY_FOR(uni->types, u) {
3138 ret = warn_is_specific_type(uni->types[u], base);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003139 if (ret) {
3140 /* found a suitable type */
Radek Krejci857189e2020-09-01 13:26:36 +02003141 return ret;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003142 }
3143 }
3144 /* did not find any suitable type */
3145 return 0;
3146 } else if (type->basetype == LY_TYPE_LEAFREF) {
3147 return warn_is_specific_type(((struct lysc_type_leafref *)type)->realtype, base);
3148 }
3149
3150 return 0;
3151}
3152
3153/**
3154 * @brief Get next type of a (union) type.
3155 *
3156 * @param[in] type Base type.
3157 * @param[in] prev_type Previously returned type.
3158 * @return Next type or NULL.
3159 */
3160static struct lysc_type *
3161warn_is_equal_type_next_type(struct lysc_type *type, struct lysc_type *prev_type)
3162{
3163 struct lysc_type_union *uni;
Radek Krejci857189e2020-09-01 13:26:36 +02003164 ly_bool found = 0;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003165 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003166
3167 switch (type->basetype) {
3168 case LY_TYPE_UNION:
3169 uni = (struct lysc_type_union *)type;
3170 if (!prev_type) {
3171 return uni->types[0];
3172 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003173 LY_ARRAY_FOR(uni->types, u) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003174 if (found) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003175 return uni->types[u];
Michal Vasko03ff5a72019-09-11 13:49:33 +02003176 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003177 if (prev_type == uni->types[u]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003178 found = 1;
3179 }
3180 }
3181 return NULL;
3182 default:
3183 if (prev_type) {
3184 assert(type == prev_type);
3185 return NULL;
3186 } else {
3187 return type;
3188 }
3189 }
3190}
3191
3192/**
3193 * @brief Test whether 2 types have a common type.
3194 *
3195 * @param[in] type1 First type.
3196 * @param[in] type2 Second type.
3197 * @return 1 if they do, 0 otherwise.
3198 */
3199static int
3200warn_is_equal_type(struct lysc_type *type1, struct lysc_type *type2)
3201{
3202 struct lysc_type *t1, *rt1, *t2, *rt2;
3203
3204 t1 = NULL;
3205 while ((t1 = warn_is_equal_type_next_type(type1, t1))) {
3206 if (t1->basetype == LY_TYPE_LEAFREF) {
3207 rt1 = ((struct lysc_type_leafref *)t1)->realtype;
3208 } else {
3209 rt1 = t1;
3210 }
3211
3212 t2 = NULL;
3213 while ((t2 = warn_is_equal_type_next_type(type2, t2))) {
3214 if (t2->basetype == LY_TYPE_LEAFREF) {
3215 rt2 = ((struct lysc_type_leafref *)t2)->realtype;
3216 } else {
3217 rt2 = t2;
3218 }
3219
3220 if (rt2->basetype == rt1->basetype) {
3221 /* match found */
3222 return 1;
3223 }
3224 }
3225 }
3226
3227 return 0;
3228}
3229
3230/**
3231 * @brief Check both operands of comparison operators.
3232 *
3233 * @param[in] ctx Context for errors.
3234 * @param[in] set1 First operand set.
3235 * @param[in] set2 Second operand set.
3236 * @param[in] numbers_only Whether accept only numbers or other types are fine too (for '=' and '!=').
3237 * @param[in] expr Start of the expression to print with the warning.
3238 * @param[in] tok_pos Token position.
3239 */
3240static void
Radek Krejci857189e2020-09-01 13:26:36 +02003241warn_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 +02003242{
3243 struct lysc_node_leaf *node1, *node2;
Radek Krejci857189e2020-09-01 13:26:36 +02003244 ly_bool leaves = 1, warning = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003245
3246 node1 = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(set1);
3247 node2 = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(set2);
3248
3249 if (!node1 && !node2) {
3250 /* no node-sets involved, nothing to do */
3251 return;
3252 }
3253
3254 if (node1) {
3255 if (!(node1->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3256 LOGWRN(ctx, "Node type %s \"%s\" used as operand.", lys_nodetype2str(node1->nodetype), node1->name);
3257 warning = 1;
3258 leaves = 0;
3259 } else if (numbers_only && !warn_is_numeric_type(node1->type)) {
3260 LOGWRN(ctx, "Node \"%s\" is not of a numeric type, but used where it was expected.", node1->name);
3261 warning = 1;
3262 }
3263 }
3264
3265 if (node2) {
3266 if (!(node2->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3267 LOGWRN(ctx, "Node type %s \"%s\" used as operand.", lys_nodetype2str(node2->nodetype), node2->name);
3268 warning = 1;
3269 leaves = 0;
3270 } else if (numbers_only && !warn_is_numeric_type(node2->type)) {
3271 LOGWRN(ctx, "Node \"%s\" is not of a numeric type, but used where it was expected.", node2->name);
3272 warning = 1;
3273 }
3274 }
3275
3276 if (node1 && node2 && leaves && !numbers_only) {
Michal Vasko69730152020-10-09 16:30:07 +02003277 if ((warn_is_numeric_type(node1->type) && !warn_is_numeric_type(node2->type)) ||
3278 (!warn_is_numeric_type(node1->type) && warn_is_numeric_type(node2->type)) ||
3279 (!warn_is_numeric_type(node1->type) && !warn_is_numeric_type(node2->type) &&
3280 !warn_is_equal_type(node1->type, node2->type))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003281 LOGWRN(ctx, "Incompatible types of operands \"%s\" and \"%s\" for comparison.", node1->name, node2->name);
3282 warning = 1;
3283 }
3284 }
3285
3286 if (warning) {
3287 LOGWRN(ctx, "Previous warning generated by XPath subexpression[%u] \"%.20s\".", tok_pos, expr + tok_pos);
3288 }
3289}
3290
3291/**
3292 * @brief Check that a value is valid for a leaf. If not applicable, does nothing.
3293 *
3294 * @param[in] exp Parsed XPath expression.
3295 * @param[in] set Set with the leaf/leaf-list.
3296 * @param[in] val_exp Index of the value (literal/number) in @p exp.
3297 * @param[in] equal_exp Index of the start of the equality expression in @p exp.
3298 * @param[in] last_equal_exp Index of the end of the equality expression in @p exp.
3299 */
3300static void
Michal Vasko40308e72020-10-20 16:38:40 +02003301warn_equality_value(const struct lyxp_expr *exp, struct lyxp_set *set, uint16_t val_exp, uint16_t equal_exp,
3302 uint16_t last_equal_exp)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003303{
3304 struct lysc_node *scnode;
3305 struct lysc_type *type;
3306 char *value;
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003307 struct lyd_value storage;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003308 LY_ERR rc;
3309 struct ly_err_item *err = NULL;
3310
Michal Vasko69730152020-10-09 16:30:07 +02003311 if ((scnode = warn_get_scnode_in_ctx(set)) && (scnode->nodetype & (LYS_LEAF | LYS_LEAFLIST)) &&
3312 ((exp->tokens[val_exp] == LYXP_TOKEN_LITERAL) || (exp->tokens[val_exp] == LYXP_TOKEN_NUMBER))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003313 /* check that the node can have the specified value */
3314 if (exp->tokens[val_exp] == LYXP_TOKEN_LITERAL) {
3315 value = strndup(exp->expr + exp->tok_pos[val_exp] + 1, exp->tok_len[val_exp] - 2);
3316 } else {
3317 value = strndup(exp->expr + exp->tok_pos[val_exp], exp->tok_len[val_exp]);
3318 }
3319 if (!value) {
3320 LOGMEM(set->ctx);
3321 return;
3322 }
3323
3324 if ((((struct lysc_node_leaf *)scnode)->type->basetype == LY_TYPE_IDENT) && !strchr(value, ':')) {
3325 LOGWRN(set->ctx, "Identityref \"%s\" comparison with identity \"%s\" without prefix, consider adding"
Michal Vasko69730152020-10-09 16:30:07 +02003326 " a prefix or best using \"derived-from(-or-self)()\" functions.", scnode->name, value);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003327 LOGWRN(set->ctx, "Previous warning generated by XPath subexpression[%u] \"%.*s\".", exp->tok_pos[equal_exp],
Radek Krejci0f969882020-08-21 16:56:47 +02003328 (exp->tok_pos[last_equal_exp] - exp->tok_pos[equal_exp]) + exp->tok_len[last_equal_exp],
Michal Vasko69730152020-10-09 16:30:07 +02003329 exp->expr + exp->tok_pos[equal_exp]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003330 }
3331
3332 type = ((struct lysc_node_leaf *)scnode)->type;
3333 if (type->basetype != LY_TYPE_IDENT) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02003334 rc = type->plugin->store(set->ctx, type, value, strlen(value), 0, set->format, set->prefix_data,
Michal Vaskofeca4fb2020-10-05 08:58:40 +02003335 LYD_HINT_DATA, scnode, &storage, &err);
Michal Vaskobf42e832020-11-23 16:59:42 +01003336 if (rc == LY_EINCOMPLETE) {
3337 rc = LY_SUCCESS;
3338 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02003339
3340 if (err) {
3341 LOGWRN(set->ctx, "Invalid value \"%s\" which does not fit the type (%s).", value, err->msg);
3342 ly_err_free(err);
3343 } else if (rc != LY_SUCCESS) {
3344 LOGWRN(set->ctx, "Invalid value \"%s\" which does not fit the type.", value);
3345 }
3346 if (rc != LY_SUCCESS) {
3347 LOGWRN(set->ctx, "Previous warning generated by XPath subexpression[%u] \"%.*s\".", exp->tok_pos[equal_exp],
Radek Krejci0f969882020-08-21 16:56:47 +02003348 (exp->tok_pos[last_equal_exp] - exp->tok_pos[equal_exp]) + exp->tok_len[last_equal_exp],
Michal Vasko69730152020-10-09 16:30:07 +02003349 exp->expr + exp->tok_pos[equal_exp]);
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003350 } else {
3351 type->plugin->free(set->ctx, &storage);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003352 }
3353 }
3354 free(value);
3355 }
3356}
3357
3358/*
3359 * XPath functions
3360 */
3361
3362/**
3363 * @brief Execute the YANG 1.1 bit-is-set(node-set, string) function. Returns LYXP_SET_BOOLEAN
3364 * depending on whether the first node bit value from the second argument is set.
3365 *
3366 * @param[in] args Array of arguments.
3367 * @param[in] arg_count Count of elements in @p args.
3368 * @param[in,out] set Context and result set at the same time.
3369 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003370 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003371 */
3372static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003373xpath_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 +02003374{
3375 struct lyd_node_term *leaf;
3376 struct lysc_node_leaf *sleaf;
3377 struct lysc_type_bits *bits;
3378 LY_ERR rc = LY_SUCCESS;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003379 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003380
3381 if (options & LYXP_SCNODE_ALL) {
3382 if ((args[0]->type != LYXP_SET_SCNODE_SET) || !(sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3383 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003384 } else if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3385 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 +02003386 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_BITS)) {
3387 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"bits\".", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003388 }
3389
3390 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
3391 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3392 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 +02003393 } else if (!warn_is_string_type(sleaf->type)) {
3394 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003395 }
3396 }
3397 set_scnode_clear_ctx(set);
3398 return rc;
3399 }
3400
Michal Vaskod3678892020-05-21 10:06:58 +02003401 if (args[0]->type != LYXP_SET_NODE_SET) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02003402 LOGVAL(set->ctx, LY_VLOG_LYD, set->cur_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]),
3403 "bit-is-set(node-set, string)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02003404 return LY_EVALID;
3405 }
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003406 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003407 LY_CHECK_RET(rc);
3408
3409 set_fill_boolean(set, 0);
Michal Vaskod3678892020-05-21 10:06:58 +02003410 if (args[0]->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003411 leaf = (struct lyd_node_term *)args[0]->val.nodes[0].node;
Michal Vasko69730152020-10-09 16:30:07 +02003412 if ((leaf->schema->nodetype & (LYS_LEAF | LYS_LEAFLIST)) &&
3413 (((struct lysc_node_leaf *)leaf->schema)->type->basetype == LY_TYPE_BITS)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003414 bits = (struct lysc_type_bits *)((struct lysc_node_leaf *)leaf->schema)->type;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003415 LY_ARRAY_FOR(bits->bits, u) {
3416 if (!strcmp(bits->bits[u].name, args[1]->val.str)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003417 set_fill_boolean(set, 1);
3418 break;
3419 }
3420 }
3421 }
3422 }
3423
3424 return LY_SUCCESS;
3425}
3426
3427/**
3428 * @brief Execute the XPath boolean(object) function. Returns LYXP_SET_BOOLEAN
3429 * with the argument converted to boolean.
3430 *
3431 * @param[in] args Array of arguments.
3432 * @param[in] arg_count Count of elements in @p args.
3433 * @param[in,out] set Context and result set at the same time.
3434 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003435 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003436 */
3437static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003438xpath_boolean(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003439{
3440 LY_ERR rc;
3441
3442 if (options & LYXP_SCNODE_ALL) {
3443 set_scnode_clear_ctx(set);
3444 return LY_SUCCESS;
3445 }
3446
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003447 rc = lyxp_set_cast(args[0], LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003448 LY_CHECK_RET(rc);
3449 set_fill_set(set, args[0]);
3450
3451 return LY_SUCCESS;
3452}
3453
3454/**
3455 * @brief Execute the XPath ceiling(number) function. Returns LYXP_SET_NUMBER
3456 * with the first argument rounded up to the nearest integer.
3457 *
3458 * @param[in] args Array of arguments.
3459 * @param[in] arg_count Count of elements in @p args.
3460 * @param[in,out] set Context and result set at the same time.
3461 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003462 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003463 */
3464static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003465xpath_ceiling(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003466{
3467 struct lysc_node_leaf *sleaf;
3468 LY_ERR rc = LY_SUCCESS;
3469
3470 if (options & LYXP_SCNODE_ALL) {
3471 if ((args[0]->type != LYXP_SET_SCNODE_SET) || !(sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3472 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003473 } else if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3474 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 +02003475 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_DEC64)) {
3476 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"decimal64\".", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003477 }
3478 set_scnode_clear_ctx(set);
3479 return rc;
3480 }
3481
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003482 rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003483 LY_CHECK_RET(rc);
3484 if ((long long)args[0]->val.num != args[0]->val.num) {
3485 set_fill_number(set, ((long long)args[0]->val.num) + 1);
3486 } else {
3487 set_fill_number(set, args[0]->val.num);
3488 }
3489
3490 return LY_SUCCESS;
3491}
3492
3493/**
3494 * @brief Execute the XPath concat(string, string, string*) function.
3495 * Returns LYXP_SET_STRING with the concatenation of all the arguments.
3496 *
3497 * @param[in] args Array of arguments.
3498 * @param[in] arg_count Count of elements in @p args.
3499 * @param[in,out] set Context and result set at the same time.
3500 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003501 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003502 */
3503static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003504xpath_concat(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003505{
3506 uint16_t i;
3507 char *str = NULL;
3508 size_t used = 1;
3509 LY_ERR rc = LY_SUCCESS;
3510 struct lysc_node_leaf *sleaf;
3511
3512 if (options & LYXP_SCNODE_ALL) {
3513 for (i = 0; i < arg_count; ++i) {
3514 if ((args[i]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[i]))) {
3515 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3516 LOGWRN(set->ctx, "Argument #%u of %s is a %s node \"%s\".",
Michal Vasko69730152020-10-09 16:30:07 +02003517 i + 1, __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003518 } else if (!warn_is_string_type(sleaf->type)) {
Radek Krejci70124c82020-08-14 22:17:03 +02003519 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 +02003520 }
3521 }
3522 }
3523 set_scnode_clear_ctx(set);
3524 return rc;
3525 }
3526
3527 for (i = 0; i < arg_count; ++i) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003528 rc = lyxp_set_cast(args[i], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003529 if (rc != LY_SUCCESS) {
3530 free(str);
3531 return rc;
3532 }
3533
3534 str = ly_realloc(str, (used + strlen(args[i]->val.str)) * sizeof(char));
3535 LY_CHECK_ERR_RET(!str, LOGMEM(set->ctx), LY_EMEM);
3536 strcpy(str + used - 1, args[i]->val.str);
3537 used += strlen(args[i]->val.str);
3538 }
3539
3540 /* free, kind of */
Michal Vaskod3678892020-05-21 10:06:58 +02003541 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003542 set->type = LYXP_SET_STRING;
3543 set->val.str = str;
3544
3545 return LY_SUCCESS;
3546}
3547
3548/**
3549 * @brief Execute the XPath contains(string, string) function.
3550 * Returns LYXP_SET_BOOLEAN whether the second argument can
3551 * be found in the first or not.
3552 *
3553 * @param[in] args Array of arguments.
3554 * @param[in] arg_count Count of elements in @p args.
3555 * @param[in,out] set Context and result set at the same time.
3556 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003557 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003558 */
3559static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003560xpath_contains(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003561{
3562 struct lysc_node_leaf *sleaf;
3563 LY_ERR rc = LY_SUCCESS;
3564
3565 if (options & LYXP_SCNODE_ALL) {
3566 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3567 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3568 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 +02003569 } else if (!warn_is_string_type(sleaf->type)) {
3570 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003571 }
3572 }
3573
3574 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
3575 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3576 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 +02003577 } else if (!warn_is_string_type(sleaf->type)) {
3578 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003579 }
3580 }
3581 set_scnode_clear_ctx(set);
3582 return rc;
3583 }
3584
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003585 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003586 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003587 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003588 LY_CHECK_RET(rc);
3589
3590 if (strstr(args[0]->val.str, args[1]->val.str)) {
3591 set_fill_boolean(set, 1);
3592 } else {
3593 set_fill_boolean(set, 0);
3594 }
3595
3596 return LY_SUCCESS;
3597}
3598
3599/**
3600 * @brief Execute the XPath count(node-set) function. Returns LYXP_SET_NUMBER
3601 * with the size of the node-set from the argument.
3602 *
3603 * @param[in] args Array of arguments.
3604 * @param[in] arg_count Count of elements in @p args.
3605 * @param[in,out] set Context and result set at the same time.
3606 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003607 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003608 */
3609static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003610xpath_count(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003611{
3612 struct lysc_node *scnode = NULL;
3613 LY_ERR rc = LY_SUCCESS;
3614
3615 if (options & LYXP_SCNODE_ALL) {
3616 if ((args[0]->type != LYXP_SET_SCNODE_SET) || !(scnode = warn_get_scnode_in_ctx(args[0]))) {
3617 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003618 }
3619 set_scnode_clear_ctx(set);
3620 return rc;
3621 }
3622
Michal Vasko03ff5a72019-09-11 13:49:33 +02003623 if (args[0]->type != LYXP_SET_NODE_SET) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02003624 LOGVAL(set->ctx, LY_VLOG_LYD, set->cur_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "count(node-set)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02003625 return LY_EVALID;
3626 }
3627
3628 set_fill_number(set, args[0]->used);
3629 return LY_SUCCESS;
3630}
3631
3632/**
3633 * @brief Execute the XPath current() function. Returns LYXP_SET_NODE_SET
3634 * with the context with the intial node.
3635 *
3636 * @param[in] args Array of arguments.
3637 * @param[in] arg_count Count of elements in @p args.
3638 * @param[in,out] set Context and result set at the same time.
3639 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003640 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003641 */
3642static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003643xpath_current(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003644{
3645 if (arg_count || args) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02003646 LOGVAL(set->ctx, LY_VLOG_LYD, set->cur_node, LY_VCODE_XP_INARGCOUNT, arg_count, "current()");
Michal Vasko03ff5a72019-09-11 13:49:33 +02003647 return LY_EVALID;
3648 }
3649
3650 if (options & LYXP_SCNODE_ALL) {
3651 set_scnode_clear_ctx(set);
3652
Michal Vasko5d24f6c2020-10-13 13:49:06 +02003653 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, set->cur_scnode, LYXP_NODE_ELEM, NULL));
Michal Vasko03ff5a72019-09-11 13:49:33 +02003654 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02003655 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003656
3657 /* position is filled later */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02003658 set_insert_node(set, set->cur_node, 0, LYXP_NODE_ELEM, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003659 }
3660
3661 return LY_SUCCESS;
3662}
3663
3664/**
3665 * @brief Execute the YANG 1.1 deref(node-set) function. Returns LYXP_SET_NODE_SET with either
3666 * leafref or instance-identifier target node(s).
3667 *
3668 * @param[in] args Array of arguments.
3669 * @param[in] arg_count Count of elements in @p args.
3670 * @param[in,out] set Context and result set at the same time.
3671 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003672 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003673 */
3674static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003675xpath_deref(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003676{
3677 struct lyd_node_term *leaf;
Michal Vasko42e497c2020-01-06 08:38:25 +01003678 struct lysc_node_leaf *sleaf = NULL;
Michal Vasko004d3152020-06-11 19:59:22 +02003679 struct lysc_type_leafref *lref;
Michal Vaskoae9e4cb2019-09-25 08:43:05 +02003680 const struct lysc_node *target;
Michal Vasko004d3152020-06-11 19:59:22 +02003681 struct ly_path *p;
3682 struct lyd_node *node;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003683 char *errmsg = NULL;
Michal Vasko00cbf532020-06-15 13:58:47 +02003684 uint8_t oper;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003685 LY_ERR rc = LY_SUCCESS;
3686
3687 if (options & LYXP_SCNODE_ALL) {
3688 if ((args[0]->type != LYXP_SET_SCNODE_SET) || !(sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3689 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003690 } else if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3691 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 +02003692 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_LEAFREF) && !warn_is_specific_type(sleaf->type, LY_TYPE_INST)) {
3693 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"leafref\" nor \"instance-identifier\".",
Michal Vasko69730152020-10-09 16:30:07 +02003694 __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003695 }
3696 set_scnode_clear_ctx(set);
Michal Vasko42e497c2020-01-06 08:38:25 +01003697 if (sleaf && (sleaf->type->basetype == LY_TYPE_LEAFREF)) {
Michal Vasko004d3152020-06-11 19:59:22 +02003698 lref = (struct lysc_type_leafref *)sleaf->type;
Michal Vasko00cbf532020-06-15 13:58:47 +02003699 oper = lysc_is_output((struct lysc_node *)sleaf) ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT;
Michal Vasko004d3152020-06-11 19:59:22 +02003700
3701 /* it was already evaluated on schema, it must succeed */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02003702 rc = ly_path_compile(set->ctx, sleaf->module, (struct lysc_node *)sleaf, lref->path,
3703 LY_PATH_LREF_TRUE, oper, LY_PATH_TARGET_MANY, LY_PREF_SCHEMA_RESOLVED, lref->prefixes, &p);
Michal Vasko004d3152020-06-11 19:59:22 +02003704 assert(!rc);
3705
3706 /* get the target node */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003707 target = p[LY_ARRAY_COUNT(p) - 1].node;
Michal Vasko004d3152020-06-11 19:59:22 +02003708 ly_path_free(set->ctx, p);
3709
Radek Krejciaa6b53f2020-08-27 15:19:03 +02003710 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, target, LYXP_NODE_ELEM, NULL));
Michal Vaskoae9e4cb2019-09-25 08:43:05 +02003711 }
3712
Michal Vasko03ff5a72019-09-11 13:49:33 +02003713 return rc;
3714 }
3715
Michal Vaskod3678892020-05-21 10:06:58 +02003716 if (args[0]->type != LYXP_SET_NODE_SET) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02003717 LOGVAL(set->ctx, LY_VLOG_LYD, set->cur_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "deref(node-set)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02003718 return LY_EVALID;
3719 }
3720
Michal Vaskod3678892020-05-21 10:06:58 +02003721 lyxp_set_free_content(set);
3722 if (args[0]->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003723 leaf = (struct lyd_node_term *)args[0]->val.nodes[0].node;
3724 sleaf = (struct lysc_node_leaf *)leaf->schema;
3725 if (sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST)) {
3726 if (sleaf->type->basetype == LY_TYPE_LEAFREF) {
3727 /* find leafref target */
Michal Vasko004d3152020-06-11 19:59:22 +02003728 if (ly_type_find_leafref((struct lysc_type_leafref *)sleaf->type, (struct lyd_node *)leaf,
Michal Vasko69730152020-10-09 16:30:07 +02003729 &leaf->value, set->tree, &node, &errmsg)) {
Michal Vasko004d3152020-06-11 19:59:22 +02003730 LOGERR(set->ctx, LY_EVALID, errmsg);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003731 free(errmsg);
Michal Vasko004d3152020-06-11 19:59:22 +02003732 return LY_EVALID;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003733 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02003734 } else {
3735 assert(sleaf->type->basetype == LY_TYPE_INST);
Michal Vasko004d3152020-06-11 19:59:22 +02003736 if (ly_path_eval(leaf->value.target, set->tree, &node)) {
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003737 LOGERR(set->ctx, LY_EVALID, "Invalid instance-identifier \"%s\" value - required instance not found.",
Michal Vasko69730152020-10-09 16:30:07 +02003738 LYD_CANON_VALUE(leaf));
Michal Vasko03ff5a72019-09-11 13:49:33 +02003739 return LY_EVALID;
3740 }
3741 }
Michal Vasko004d3152020-06-11 19:59:22 +02003742
3743 /* insert it */
3744 set_insert_node(set, node, 0, LYXP_NODE_ELEM, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003745 }
3746 }
3747
3748 return LY_SUCCESS;
3749}
3750
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003751static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003752xpath_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 +02003753{
3754 uint16_t i;
3755 LY_ARRAY_COUNT_TYPE u;
3756 struct lyd_node_term *leaf;
3757 struct lysc_node_leaf *sleaf;
3758 struct lyd_meta *meta;
3759 struct lyd_value data = {0}, *val;
3760 struct ly_err_item *err = NULL;
3761 LY_ERR rc = LY_SUCCESS;
Radek Krejci857189e2020-09-01 13:26:36 +02003762 ly_bool found;
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003763
3764 if (options & LYXP_SCNODE_ALL) {
3765 if ((args[0]->type != LYXP_SET_SCNODE_SET) || !(sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3766 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", func);
3767 } else if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3768 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", func, lys_nodetype2str(sleaf->nodetype),
Michal Vasko69730152020-10-09 16:30:07 +02003769 sleaf->name);
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003770 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_IDENT)) {
3771 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"identityref\".", func, sleaf->name);
3772 }
3773
3774 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
3775 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3776 LOGWRN(set->ctx, "Argument #2 of %s is a %s node \"%s\".", func, lys_nodetype2str(sleaf->nodetype),
Michal Vasko69730152020-10-09 16:30:07 +02003777 sleaf->name);
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003778 } else if (!warn_is_string_type(sleaf->type)) {
3779 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", func, sleaf->name);
3780 }
3781 }
3782 set_scnode_clear_ctx(set);
3783 return rc;
3784 }
3785
3786 if (args[0]->type != LYXP_SET_NODE_SET) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02003787 LOGVAL(set->ctx, LY_VLOG_LYD, set->cur_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]),
Michal Vasko69730152020-10-09 16:30:07 +02003788 "derived-from(-or-self)(node-set, string)");
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003789 return LY_EVALID;
3790 }
3791 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
3792 LY_CHECK_RET(rc);
3793
3794 set_fill_boolean(set, 0);
3795 found = 0;
3796 for (i = 0; i < args[0]->used; ++i) {
3797 if ((args[0]->val.nodes[i].type != LYXP_NODE_ELEM) && (args[0]->val.nodes[i].type != LYXP_NODE_META)) {
3798 continue;
3799 }
3800
3801 if (args[0]->val.nodes[i].type == LYXP_NODE_ELEM) {
3802 leaf = (struct lyd_node_term *)args[0]->val.nodes[i].node;
3803 sleaf = (struct lysc_node_leaf *)leaf->schema;
3804 val = &leaf->value;
3805 if (!(sleaf->nodetype & LYD_NODE_TERM) || (leaf->value.realtype->basetype != LY_TYPE_IDENT)) {
3806 /* uninteresting */
3807 continue;
3808 }
3809
3810 /* store args[1] as ident */
3811 rc = val->realtype->plugin->store(set->ctx, val->realtype, args[1]->val.str, strlen(args[1]->val.str),
Michal Vasko5d24f6c2020-10-13 13:49:06 +02003812 0, set->format, set->prefix_data, LYD_HINT_DATA, leaf->schema, &data, &err);
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003813 } else {
3814 meta = args[0]->val.meta[i].meta;
3815 val = &meta->value;
3816 if (val->realtype->basetype != LY_TYPE_IDENT) {
3817 /* uninteresting */
3818 continue;
3819 }
3820
3821 /* store args[1] as ident */
Michal Vaskofeca4fb2020-10-05 08:58:40 +02003822 rc = val->realtype->plugin->store(set->ctx, val->realtype, args[1]->val.str, strlen(args[1]->val.str), 0,
Michal Vasko5d24f6c2020-10-13 13:49:06 +02003823 set->format, set->prefix_data, LYD_HINT_DATA, meta->parent->schema, &data, &err);
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003824 }
3825
3826 if (err) {
Michal Vasko177d0ed2020-11-23 16:43:03 +01003827 ly_err_print(set->ctx, err);
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003828 ly_err_free(err);
3829 }
3830 LY_CHECK_RET(rc);
3831
3832 /* finally check the identity itself */
3833 if (self_match && (data.ident == val->ident)) {
3834 set_fill_boolean(set, 1);
3835 found = 1;
3836 }
3837 if (!found) {
3838 LY_ARRAY_FOR(data.ident->derived, u) {
3839 if (data.ident->derived[u] == val->ident) {
3840 set_fill_boolean(set, 1);
3841 found = 1;
3842 break;
3843 }
3844 }
3845 }
3846
3847 /* free temporary value */
3848 val->realtype->plugin->free(set->ctx, &data);
3849 if (found) {
3850 break;
3851 }
3852 }
3853
3854 return LY_SUCCESS;
3855}
3856
Michal Vasko03ff5a72019-09-11 13:49:33 +02003857/**
3858 * @brief Execute the YANG 1.1 derived-from(node-set, string) function. Returns LYXP_SET_BOOLEAN depending
3859 * on whether the first argument nodes contain a node of an identity derived from the second
3860 * argument identity.
3861 *
3862 * @param[in] args Array of arguments.
3863 * @param[in] arg_count Count of elements in @p args.
3864 * @param[in,out] set Context and result set at the same time.
3865 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003866 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003867 */
3868static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003869xpath_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 +02003870{
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003871 return xpath_derived_(args, set, options, 0, __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003872}
3873
3874/**
3875 * @brief Execute the YANG 1.1 derived-from-or-self(node-set, string) function. Returns LYXP_SET_BOOLEAN depending
3876 * on whether the first argument nodes contain a node of an identity that either is or is derived from
3877 * the second argument identity.
3878 *
3879 * @param[in] args Array of arguments.
3880 * @param[in] arg_count Count of elements in @p args.
3881 * @param[in,out] set Context and result set at the same time.
3882 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003883 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003884 */
3885static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003886xpath_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 +02003887{
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003888 return xpath_derived_(args, set, options, 1, __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003889}
3890
3891/**
3892 * @brief Execute the YANG 1.1 enum-value(node-set) function. Returns LYXP_SET_NUMBER
3893 * with the integer value of the first node's enum value, otherwise NaN.
3894 *
3895 * @param[in] args Array of arguments.
3896 * @param[in] arg_count Count of elements in @p args.
3897 * @param[in,out] set Context and result set at the same time.
3898 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003899 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003900 */
3901static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003902xpath_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 +02003903{
3904 struct lyd_node_term *leaf;
3905 struct lysc_node_leaf *sleaf;
3906 LY_ERR rc = LY_SUCCESS;
3907
3908 if (options & LYXP_SCNODE_ALL) {
3909 if ((args[0]->type != LYXP_SET_SCNODE_SET) || !(sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3910 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003911 } else if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3912 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 +02003913 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_ENUM)) {
3914 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"enumeration\".", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003915 }
3916 set_scnode_clear_ctx(set);
3917 return rc;
3918 }
3919
Michal Vaskod3678892020-05-21 10:06:58 +02003920 if (args[0]->type != LYXP_SET_NODE_SET) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02003921 LOGVAL(set->ctx, LY_VLOG_LYD, set->cur_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "enum-value(node-set)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02003922 return LY_EVALID;
3923 }
3924
3925 set_fill_number(set, NAN);
Michal Vaskod3678892020-05-21 10:06:58 +02003926 if (args[0]->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003927 leaf = (struct lyd_node_term *)args[0]->val.nodes[0].node;
3928 sleaf = (struct lysc_node_leaf *)leaf->schema;
3929 if ((sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST)) && (sleaf->type->basetype == LY_TYPE_ENUM)) {
3930 set_fill_number(set, leaf->value.enum_item->value);
3931 }
3932 }
3933
3934 return LY_SUCCESS;
3935}
3936
3937/**
3938 * @brief Execute the XPath false() function. Returns LYXP_SET_BOOLEAN
3939 * with false value.
3940 *
3941 * @param[in] args Array of arguments.
3942 * @param[in] arg_count Count of elements in @p args.
3943 * @param[in,out] set Context and result set at the same time.
3944 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003945 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003946 */
3947static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003948xpath_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 +02003949{
3950 if (options & LYXP_SCNODE_ALL) {
3951 set_scnode_clear_ctx(set);
3952 return LY_SUCCESS;
3953 }
3954
3955 set_fill_boolean(set, 0);
3956 return LY_SUCCESS;
3957}
3958
3959/**
3960 * @brief Execute the XPath floor(number) function. Returns LYXP_SET_NUMBER
3961 * with the first argument floored (truncated).
3962 *
3963 * @param[in] args Array of arguments.
3964 * @param[in] arg_count Count of elements in @p args.
3965 * @param[in,out] set Context and result set at the same time.
3966 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003967 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003968 */
3969static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003970xpath_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 +02003971{
3972 LY_ERR rc;
3973
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003974 rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003975 LY_CHECK_RET(rc);
3976 if (isfinite(args[0]->val.num)) {
3977 set_fill_number(set, (long long)args[0]->val.num);
3978 }
3979
3980 return LY_SUCCESS;
3981}
3982
3983/**
3984 * @brief Execute the XPath lang(string) function. Returns LYXP_SET_BOOLEAN
3985 * whether the language of the text matches the one from the argument.
3986 *
3987 * @param[in] args Array of arguments.
3988 * @param[in] arg_count Count of elements in @p args.
3989 * @param[in,out] set Context and result set at the same time.
3990 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003991 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003992 */
3993static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003994xpath_lang(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003995{
3996 const struct lyd_node *node;
3997 struct lysc_node_leaf *sleaf;
Michal Vasko9f96a052020-03-10 09:41:45 +01003998 struct lyd_meta *meta = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003999 const char *val;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004000 LY_ERR rc = LY_SUCCESS;
4001
4002 if (options & LYXP_SCNODE_ALL) {
4003 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4004 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4005 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 +02004006 } else if (!warn_is_string_type(sleaf->type)) {
4007 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004008 }
4009 }
4010 set_scnode_clear_ctx(set);
4011 return rc;
4012 }
4013
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004014 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004015 LY_CHECK_RET(rc);
4016
Michal Vasko03ff5a72019-09-11 13:49:33 +02004017 if (set->type != LYXP_SET_NODE_SET) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02004018 LOGVAL(set->ctx, LY_VLOG_LYD, set->cur_node, LY_VCODE_XP_INCTX, print_set_type(set), "lang(string)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004019 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004020 } else if (!set->used) {
4021 set_fill_boolean(set, 0);
4022 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004023 }
4024
4025 switch (set->val.nodes[0].type) {
4026 case LYXP_NODE_ELEM:
4027 case LYXP_NODE_TEXT:
4028 node = set->val.nodes[0].node;
4029 break;
Michal Vasko9f96a052020-03-10 09:41:45 +01004030 case LYXP_NODE_META:
4031 node = set->val.meta[0].meta->parent;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004032 break;
4033 default:
4034 /* nothing to do with roots */
4035 set_fill_boolean(set, 0);
4036 return LY_SUCCESS;
4037 }
4038
Michal Vasko9f96a052020-03-10 09:41:45 +01004039 /* find lang metadata */
Michal Vaskod989ba02020-08-24 10:59:24 +02004040 for ( ; node; node = (struct lyd_node *)node->parent) {
Michal Vasko9f96a052020-03-10 09:41:45 +01004041 for (meta = node->meta; meta; meta = meta->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004042 /* annotations */
Michal Vasko9f96a052020-03-10 09:41:45 +01004043 if (meta->name && !strcmp(meta->name, "lang") && !strcmp(meta->annotation->module->name, "xml")) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004044 break;
4045 }
4046 }
4047
Michal Vasko9f96a052020-03-10 09:41:45 +01004048 if (meta) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004049 break;
4050 }
4051 }
4052
4053 /* compare languages */
Michal Vasko9f96a052020-03-10 09:41:45 +01004054 if (!meta) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004055 set_fill_boolean(set, 0);
4056 } else {
Radek Krejci1deb5be2020-08-26 16:43:36 +02004057 uint64_t i;
4058
Michal Vaskoba99a3e2020-08-18 15:50:05 +02004059 val = meta->value.canonical;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004060 for (i = 0; args[0]->val.str[i]; ++i) {
4061 if (tolower(args[0]->val.str[i]) != tolower(val[i])) {
4062 set_fill_boolean(set, 0);
4063 break;
4064 }
4065 }
4066 if (!args[0]->val.str[i]) {
4067 if (!val[i] || (val[i] == '-')) {
4068 set_fill_boolean(set, 1);
4069 } else {
4070 set_fill_boolean(set, 0);
4071 }
4072 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02004073 }
4074
4075 return LY_SUCCESS;
4076}
4077
4078/**
4079 * @brief Execute the XPath last() function. Returns LYXP_SET_NUMBER
4080 * with the context size.
4081 *
4082 * @param[in] args Array of arguments.
4083 * @param[in] arg_count Count of elements in @p args.
4084 * @param[in,out] set Context and result set at the same time.
4085 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004086 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004087 */
4088static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004089xpath_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 +02004090{
4091 if (options & LYXP_SCNODE_ALL) {
4092 set_scnode_clear_ctx(set);
4093 return LY_SUCCESS;
4094 }
4095
Michal Vasko03ff5a72019-09-11 13:49:33 +02004096 if (set->type != LYXP_SET_NODE_SET) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02004097 LOGVAL(set->ctx, LY_VLOG_LYD, set->cur_node, LY_VCODE_XP_INCTX, print_set_type(set), "last()");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004098 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004099 } else if (!set->used) {
4100 set_fill_number(set, 0);
4101 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004102 }
4103
4104 set_fill_number(set, set->ctx_size);
4105 return LY_SUCCESS;
4106}
4107
4108/**
4109 * @brief Execute the XPath local-name(node-set?) function. Returns LYXP_SET_STRING
4110 * with the node name without namespace from the argument or the context.
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_local_name(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004120{
4121 struct lyxp_set_node *item;
Michal Vasko69730152020-10-09 16:30:07 +02004122
Michal Vasko03ff5a72019-09-11 13:49:33 +02004123 /* suppress unused variable warning */
4124 (void)options;
4125
4126 if (options & LYXP_SCNODE_ALL) {
4127 set_scnode_clear_ctx(set);
4128 return LY_SUCCESS;
4129 }
4130
4131 if (arg_count) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004132 if (args[0]->type != LYXP_SET_NODE_SET) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02004133 LOGVAL(set->ctx, LY_VLOG_LYD, set->cur_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]),
4134 "local-name(node-set?)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004135 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004136 } else if (!args[0]->used) {
4137 set_fill_string(set, "", 0);
4138 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004139 }
4140
4141 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004142 assert(!set_sort(args[0]));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004143
4144 item = &args[0]->val.nodes[0];
4145 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004146 if (set->type != LYXP_SET_NODE_SET) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02004147 LOGVAL(set->ctx, LY_VLOG_LYD, set->cur_node, LY_VCODE_XP_INCTX, print_set_type(set), "local-name(node-set?)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004148 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004149 } else if (!set->used) {
4150 set_fill_string(set, "", 0);
4151 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004152 }
4153
4154 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004155 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004156
4157 item = &set->val.nodes[0];
4158 }
4159
4160 switch (item->type) {
Michal Vasko2caefc12019-11-14 16:07:56 +01004161 case LYXP_NODE_NONE:
4162 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004163 case LYXP_NODE_ROOT:
4164 case LYXP_NODE_ROOT_CONFIG:
4165 case LYXP_NODE_TEXT:
4166 set_fill_string(set, "", 0);
4167 break;
4168 case LYXP_NODE_ELEM:
4169 set_fill_string(set, item->node->schema->name, strlen(item->node->schema->name));
4170 break;
Michal Vasko9f96a052020-03-10 09:41:45 +01004171 case LYXP_NODE_META:
4172 set_fill_string(set, ((struct lyd_meta *)item->node)->name, strlen(((struct lyd_meta *)item->node)->name));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004173 break;
4174 }
4175
4176 return LY_SUCCESS;
4177}
4178
4179/**
4180 * @brief Execute the XPath name(node-set?) function. Returns LYXP_SET_STRING
4181 * with the node name fully qualified (with namespace) from the argument or the context.
4182 *
4183 * @param[in] args Array of arguments.
4184 * @param[in] arg_count Count of elements in @p args.
4185 * @param[in,out] set Context and result set at the same time.
4186 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004187 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004188 */
4189static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004190xpath_name(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004191{
4192 struct lyxp_set_node *item;
Michal Vaskoed4fcfe2020-07-08 10:38:56 +02004193 struct lys_module *mod = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004194 char *str;
Michal Vaskoed4fcfe2020-07-08 10:38:56 +02004195 const char *name = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004196
4197 if (options & LYXP_SCNODE_ALL) {
4198 set_scnode_clear_ctx(set);
4199 return LY_SUCCESS;
4200 }
4201
4202 if (arg_count) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004203 if (args[0]->type != LYXP_SET_NODE_SET) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02004204 LOGVAL(set->ctx, LY_VLOG_LYD, set->cur_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "name(node-set?)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004205 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004206 } else if (!args[0]->used) {
4207 set_fill_string(set, "", 0);
4208 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004209 }
4210
4211 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004212 assert(!set_sort(args[0]));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004213
4214 item = &args[0]->val.nodes[0];
4215 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004216 if (set->type != LYXP_SET_NODE_SET) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02004217 LOGVAL(set->ctx, LY_VLOG_LYD, set->cur_node, LY_VCODE_XP_INCTX, print_set_type(set), "name(node-set?)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004218 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004219 } else if (!set->used) {
4220 set_fill_string(set, "", 0);
4221 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004222 }
4223
4224 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004225 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004226
4227 item = &set->val.nodes[0];
4228 }
4229
4230 switch (item->type) {
Michal Vasko2caefc12019-11-14 16:07:56 +01004231 case LYXP_NODE_NONE:
4232 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004233 case LYXP_NODE_ROOT:
4234 case LYXP_NODE_ROOT_CONFIG:
4235 case LYXP_NODE_TEXT:
Michal Vaskoed4fcfe2020-07-08 10:38:56 +02004236 /* keep NULL */
Michal Vasko03ff5a72019-09-11 13:49:33 +02004237 break;
4238 case LYXP_NODE_ELEM:
4239 mod = item->node->schema->module;
4240 name = item->node->schema->name;
4241 break;
Michal Vasko9f96a052020-03-10 09:41:45 +01004242 case LYXP_NODE_META:
4243 mod = ((struct lyd_meta *)item->node)->annotation->module;
4244 name = ((struct lyd_meta *)item->node)->name;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004245 break;
4246 }
4247
4248 if (mod && name) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02004249 int rc = asprintf(&str, "%s:%s", ly_get_prefix(mod, set->format, set->prefix_data), name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004250 LY_CHECK_ERR_RET(rc == -1, LOGMEM(set->ctx), LY_EMEM);
4251 set_fill_string(set, str, strlen(str));
4252 free(str);
4253 } else {
4254 set_fill_string(set, "", 0);
4255 }
4256
4257 return LY_SUCCESS;
4258}
4259
4260/**
4261 * @brief Execute the XPath namespace-uri(node-set?) function. Returns LYXP_SET_STRING
4262 * with the namespace of the node from the argument or the context.
4263 *
4264 * @param[in] args Array of arguments.
4265 * @param[in] arg_count Count of elements in @p args.
4266 * @param[in,out] set Context and result set at the same time.
4267 * @param[in] options XPath options.
4268 * @return LY_ERR (LY_EINVAL for wrong arguments on schema)
4269 */
4270static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004271xpath_namespace_uri(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004272{
4273 struct lyxp_set_node *item;
4274 struct lys_module *mod;
Michal Vasko69730152020-10-09 16:30:07 +02004275
Michal Vasko03ff5a72019-09-11 13:49:33 +02004276 /* suppress unused variable warning */
4277 (void)options;
4278
4279 if (options & LYXP_SCNODE_ALL) {
4280 set_scnode_clear_ctx(set);
4281 return LY_SUCCESS;
4282 }
4283
4284 if (arg_count) {
Michal Vaskod3678892020-05-21 10:06:58 +02004285 if (args[0]->type != LYXP_SET_NODE_SET) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02004286 LOGVAL(set->ctx, LY_VLOG_LYD, set->cur_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]),
Michal Vasko69730152020-10-09 16:30:07 +02004287 "namespace-uri(node-set?)");
Michal Vaskod3678892020-05-21 10:06:58 +02004288 return LY_EVALID;
4289 } else if (!args[0]->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004290 set_fill_string(set, "", 0);
4291 return LY_SUCCESS;
4292 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02004293
4294 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004295 assert(!set_sort(args[0]));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004296
4297 item = &args[0]->val.nodes[0];
4298 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004299 if (set->type != LYXP_SET_NODE_SET) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02004300 LOGVAL(set->ctx, LY_VLOG_LYD, set->cur_node, LY_VCODE_XP_INCTX, print_set_type(set), "namespace-uri(node-set?)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004301 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004302 } else if (!set->used) {
4303 set_fill_string(set, "", 0);
4304 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004305 }
4306
4307 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004308 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004309
4310 item = &set->val.nodes[0];
4311 }
4312
4313 switch (item->type) {
Michal Vasko2caefc12019-11-14 16:07:56 +01004314 case LYXP_NODE_NONE:
4315 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004316 case LYXP_NODE_ROOT:
4317 case LYXP_NODE_ROOT_CONFIG:
4318 case LYXP_NODE_TEXT:
4319 set_fill_string(set, "", 0);
4320 break;
4321 case LYXP_NODE_ELEM:
Michal Vasko9f96a052020-03-10 09:41:45 +01004322 case LYXP_NODE_META:
Michal Vasko03ff5a72019-09-11 13:49:33 +02004323 if (item->type == LYXP_NODE_ELEM) {
4324 mod = item->node->schema->module;
Michal Vasko9f96a052020-03-10 09:41:45 +01004325 } else { /* LYXP_NODE_META */
Michal Vasko03ff5a72019-09-11 13:49:33 +02004326 /* annotations */
Michal Vasko9f96a052020-03-10 09:41:45 +01004327 mod = ((struct lyd_meta *)item->node)->annotation->module;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004328 }
4329
4330 set_fill_string(set, mod->ns, strlen(mod->ns));
4331 break;
4332 }
4333
4334 return LY_SUCCESS;
4335}
4336
4337/**
4338 * @brief Execute the XPath node() function (node type). Returns LYXP_SET_NODE_SET
4339 * with only nodes from the context. In practice it either leaves the context
4340 * as it is or returns an empty node set.
4341 *
4342 * @param[in] args Array of arguments.
4343 * @param[in] arg_count Count of elements in @p args.
4344 * @param[in,out] set Context and result set at the same time.
4345 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004346 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004347 */
4348static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004349xpath_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 +02004350{
4351 if (options & LYXP_SCNODE_ALL) {
4352 set_scnode_clear_ctx(set);
4353 return LY_SUCCESS;
4354 }
4355
4356 if (set->type != LYXP_SET_NODE_SET) {
Michal Vaskod3678892020-05-21 10:06:58 +02004357 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004358 }
4359 return LY_SUCCESS;
4360}
4361
4362/**
4363 * @brief Execute the XPath normalize-space(string?) function. Returns LYXP_SET_STRING
4364 * with normalized value (no leading, trailing, double white spaces) of the node
4365 * from the argument or the context.
4366 *
4367 * @param[in] args Array of arguments.
4368 * @param[in] arg_count Count of elements in @p args.
4369 * @param[in,out] set Context and result set at the same time.
4370 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004371 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004372 */
4373static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004374xpath_normalize_space(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004375{
4376 uint16_t i, new_used;
4377 char *new;
Radek Krejci857189e2020-09-01 13:26:36 +02004378 ly_bool have_spaces = 0, space_before = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004379 struct lysc_node_leaf *sleaf;
4380 LY_ERR rc = LY_SUCCESS;
4381
4382 if (options & LYXP_SCNODE_ALL) {
4383 if (arg_count && (args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4384 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4385 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 +02004386 } else if (!warn_is_string_type(sleaf->type)) {
4387 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004388 }
4389 }
4390 set_scnode_clear_ctx(set);
4391 return rc;
4392 }
4393
4394 if (arg_count) {
4395 set_fill_set(set, args[0]);
4396 }
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004397 rc = lyxp_set_cast(set, LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004398 LY_CHECK_RET(rc);
4399
4400 /* is there any normalization necessary? */
4401 for (i = 0; set->val.str[i]; ++i) {
4402 if (is_xmlws(set->val.str[i])) {
4403 if ((i == 0) || space_before || (!set->val.str[i + 1])) {
4404 have_spaces = 1;
4405 break;
4406 }
4407 space_before = 1;
4408 } else {
4409 space_before = 0;
4410 }
4411 }
4412
4413 /* yep, there is */
4414 if (have_spaces) {
4415 /* it's enough, at least one character will go, makes space for ending '\0' */
4416 new = malloc(strlen(set->val.str) * sizeof(char));
4417 LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM);
4418 new_used = 0;
4419
4420 space_before = 0;
4421 for (i = 0; set->val.str[i]; ++i) {
4422 if (is_xmlws(set->val.str[i])) {
4423 if ((i == 0) || space_before) {
4424 space_before = 1;
4425 continue;
4426 } else {
4427 space_before = 1;
4428 }
4429 } else {
4430 space_before = 0;
4431 }
4432
4433 new[new_used] = (space_before ? ' ' : set->val.str[i]);
4434 ++new_used;
4435 }
4436
4437 /* at worst there is one trailing space now */
4438 if (new_used && is_xmlws(new[new_used - 1])) {
4439 --new_used;
4440 }
4441
4442 new = ly_realloc(new, (new_used + 1) * sizeof(char));
4443 LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM);
4444 new[new_used] = '\0';
4445
4446 free(set->val.str);
4447 set->val.str = new;
4448 }
4449
4450 return LY_SUCCESS;
4451}
4452
4453/**
4454 * @brief Execute the XPath not(boolean) function. Returns LYXP_SET_BOOLEAN
4455 * with the argument converted to boolean and logically inverted.
4456 *
4457 * @param[in] args Array of arguments.
4458 * @param[in] arg_count Count of elements in @p args.
4459 * @param[in,out] set Context and result set at the same time.
4460 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004461 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004462 */
4463static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004464xpath_not(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004465{
4466 if (options & LYXP_SCNODE_ALL) {
4467 set_scnode_clear_ctx(set);
4468 return LY_SUCCESS;
4469 }
4470
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004471 lyxp_set_cast(args[0], LYXP_SET_BOOLEAN);
Michal Vasko004d3152020-06-11 19:59:22 +02004472 if (args[0]->val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004473 set_fill_boolean(set, 0);
4474 } else {
4475 set_fill_boolean(set, 1);
4476 }
4477
4478 return LY_SUCCESS;
4479}
4480
4481/**
4482 * @brief Execute the XPath number(object?) function. Returns LYXP_SET_NUMBER
4483 * with the number representation of either the argument or the context.
4484 *
4485 * @param[in] args Array of arguments.
4486 * @param[in] arg_count Count of elements in @p args.
4487 * @param[in,out] set Context and result set at the same time.
4488 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004489 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004490 */
4491static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004492xpath_number(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004493{
4494 LY_ERR rc;
4495
4496 if (options & LYXP_SCNODE_ALL) {
4497 set_scnode_clear_ctx(set);
4498 return LY_SUCCESS;
4499 }
4500
4501 if (arg_count) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004502 rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004503 LY_CHECK_RET(rc);
4504 set_fill_set(set, args[0]);
4505 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004506 rc = lyxp_set_cast(set, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004507 LY_CHECK_RET(rc);
4508 }
4509
4510 return LY_SUCCESS;
4511}
4512
4513/**
4514 * @brief Execute the XPath position() function. Returns LYXP_SET_NUMBER
4515 * with the context position.
4516 *
4517 * @param[in] args Array of arguments.
4518 * @param[in] arg_count Count of elements in @p args.
4519 * @param[in,out] set Context and result set at the same time.
4520 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004521 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004522 */
4523static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004524xpath_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 +02004525{
4526 if (options & LYXP_SCNODE_ALL) {
4527 set_scnode_clear_ctx(set);
4528 return LY_SUCCESS;
4529 }
4530
Michal Vasko03ff5a72019-09-11 13:49:33 +02004531 if (set->type != LYXP_SET_NODE_SET) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02004532 LOGVAL(set->ctx, LY_VLOG_LYD, set->cur_node, LY_VCODE_XP_INCTX, print_set_type(set), "position()");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004533 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004534 } else if (!set->used) {
4535 set_fill_number(set, 0);
4536 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004537 }
4538
4539 set_fill_number(set, set->ctx_pos);
4540
4541 /* UNUSED in 'Release' build type */
4542 (void)options;
4543 return LY_SUCCESS;
4544}
4545
4546/**
4547 * @brief Execute the YANG 1.1 re-match(string, string) function. Returns LYXP_SET_BOOLEAN
4548 * depending on whether the second argument regex matches the first argument string. For details refer to
4549 * YANG 1.1 RFC section 10.2.1.
4550 *
4551 * @param[in] args Array of arguments.
4552 * @param[in] arg_count Count of elements in @p args.
4553 * @param[in,out] set Context and result set at the same time.
4554 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004555 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004556 */
4557static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004558xpath_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 +02004559{
4560 struct lysc_pattern **patterns = NULL, **pattern;
4561 struct lysc_node_leaf *sleaf;
4562 char *path;
4563 LY_ERR rc = LY_SUCCESS;
4564 struct ly_err_item *err;
4565
4566 if (options & LYXP_SCNODE_ALL) {
4567 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4568 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4569 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 +02004570 } else if (!warn_is_string_type(sleaf->type)) {
4571 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004572 }
4573 }
4574
4575 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4576 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4577 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 +02004578 } else if (!warn_is_string_type(sleaf->type)) {
4579 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004580 }
4581 }
4582 set_scnode_clear_ctx(set);
4583 return rc;
4584 }
4585
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004586 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004587 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004588 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004589 LY_CHECK_RET(rc);
4590
4591 LY_ARRAY_NEW_RET(set->ctx, patterns, pattern, LY_EMEM);
4592 *pattern = malloc(sizeof **pattern);
Michal Vasko5d24f6c2020-10-13 13:49:06 +02004593 path = lyd_path(set->cur_node, LYD_PATH_LOG, NULL, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004594 rc = lys_compile_type_pattern_check(set->ctx, path, args[1]->val.str, &(*pattern)->code);
4595 free(path);
4596 if (rc != LY_SUCCESS) {
4597 LY_ARRAY_FREE(patterns);
4598 return rc;
4599 }
4600
4601 rc = ly_type_validate_patterns(patterns, args[0]->val.str, strlen(args[0]->val.str), &err);
4602 pcre2_code_free((*pattern)->code);
4603 free(*pattern);
4604 LY_ARRAY_FREE(patterns);
4605 if (rc && (rc != LY_EVALID)) {
Michal Vasko177d0ed2020-11-23 16:43:03 +01004606 ly_err_print(set->ctx, err);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004607 ly_err_free(err);
4608 return rc;
4609 }
4610
4611 if (rc == LY_EVALID) {
4612 ly_err_free(err);
4613 set_fill_boolean(set, 0);
4614 } else {
4615 set_fill_boolean(set, 1);
4616 }
4617
4618 return LY_SUCCESS;
4619}
4620
4621/**
4622 * @brief Execute the XPath round(number) function. Returns LYXP_SET_NUMBER
4623 * with the rounded first argument. For details refer to
4624 * http://www.w3.org/TR/1999/REC-xpath-19991116/#function-round.
4625 *
4626 * @param[in] args Array of arguments.
4627 * @param[in] arg_count Count of elements in @p args.
4628 * @param[in,out] set Context and result set at the same time.
4629 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004630 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004631 */
4632static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004633xpath_round(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004634{
4635 struct lysc_node_leaf *sleaf;
4636 LY_ERR rc = LY_SUCCESS;
4637
4638 if (options & LYXP_SCNODE_ALL) {
4639 if ((args[0]->type != LYXP_SET_SCNODE_SET) || !(sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4640 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004641 } else if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4642 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 +02004643 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_DEC64)) {
4644 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"decimal64\".", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004645 }
4646 set_scnode_clear_ctx(set);
4647 return rc;
4648 }
4649
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004650 rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004651 LY_CHECK_RET(rc);
4652
4653 /* cover only the cases where floor can't be used */
4654 if ((args[0]->val.num == -0.0f) || ((args[0]->val.num < 0) && (args[0]->val.num >= -0.5))) {
4655 set_fill_number(set, -0.0f);
4656 } else {
4657 args[0]->val.num += 0.5;
4658 rc = xpath_floor(args, 1, args[0], options);
4659 LY_CHECK_RET(rc);
4660 set_fill_number(set, args[0]->val.num);
4661 }
4662
4663 return LY_SUCCESS;
4664}
4665
4666/**
4667 * @brief Execute the XPath starts-with(string, string) function.
4668 * Returns LYXP_SET_BOOLEAN whether the second argument is
4669 * the prefix of the first or not.
4670 *
4671 * @param[in] args Array of arguments.
4672 * @param[in] arg_count Count of elements in @p args.
4673 * @param[in,out] set Context and result set at the same time.
4674 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004675 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004676 */
4677static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004678xpath_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 +02004679{
4680 struct lysc_node_leaf *sleaf;
4681 LY_ERR rc = LY_SUCCESS;
4682
4683 if (options & LYXP_SCNODE_ALL) {
4684 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4685 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4686 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 +02004687 } else if (!warn_is_string_type(sleaf->type)) {
4688 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004689 }
4690 }
4691
4692 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4693 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4694 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 +02004695 } else if (!warn_is_string_type(sleaf->type)) {
4696 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004697 }
4698 }
4699 set_scnode_clear_ctx(set);
4700 return rc;
4701 }
4702
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004703 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004704 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004705 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004706 LY_CHECK_RET(rc);
4707
4708 if (strncmp(args[0]->val.str, args[1]->val.str, strlen(args[1]->val.str))) {
4709 set_fill_boolean(set, 0);
4710 } else {
4711 set_fill_boolean(set, 1);
4712 }
4713
4714 return LY_SUCCESS;
4715}
4716
4717/**
4718 * @brief Execute the XPath string(object?) function. Returns LYXP_SET_STRING
4719 * with the string representation of either the argument or the context.
4720 *
4721 * @param[in] args Array of arguments.
4722 * @param[in] arg_count Count of elements in @p args.
4723 * @param[in,out] set Context and result set at the same time.
4724 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004725 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004726 */
4727static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004728xpath_string(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004729{
4730 LY_ERR rc;
4731
4732 if (options & LYXP_SCNODE_ALL) {
4733 set_scnode_clear_ctx(set);
4734 return LY_SUCCESS;
4735 }
4736
4737 if (arg_count) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004738 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004739 LY_CHECK_RET(rc);
4740 set_fill_set(set, args[0]);
4741 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004742 rc = lyxp_set_cast(set, LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004743 LY_CHECK_RET(rc);
4744 }
4745
4746 return LY_SUCCESS;
4747}
4748
4749/**
4750 * @brief Execute the XPath string-length(string?) function. Returns LYXP_SET_NUMBER
4751 * with the length of the string in 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_length(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004761{
4762 struct lysc_node_leaf *sleaf;
4763 LY_ERR rc = LY_SUCCESS;
4764
4765 if (options & LYXP_SCNODE_ALL) {
4766 if (arg_count && (args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4767 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4768 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 +02004769 } else if (!warn_is_string_type(sleaf->type)) {
4770 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004771 }
4772 }
4773 if (!arg_count && (set->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(set))) {
4774 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4775 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 +02004776 } else if (!warn_is_string_type(sleaf->type)) {
4777 LOGWRN(set->ctx, "Argument #0 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004778 }
4779 }
4780 set_scnode_clear_ctx(set);
4781 return rc;
4782 }
4783
4784 if (arg_count) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004785 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004786 LY_CHECK_RET(rc);
4787 set_fill_number(set, strlen(args[0]->val.str));
4788 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004789 rc = lyxp_set_cast(set, LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004790 LY_CHECK_RET(rc);
4791 set_fill_number(set, strlen(set->val.str));
4792 }
4793
4794 return LY_SUCCESS;
4795}
4796
4797/**
4798 * @brief Execute the XPath substring(string, number, number?) function.
4799 * Returns LYXP_SET_STRING substring of the first argument starting
4800 * on the second argument index ending on the third argument index,
4801 * indexed from 1. For exact definition refer to
4802 * http://www.w3.org/TR/1999/REC-xpath-19991116/#function-substring.
4803 *
4804 * @param[in] args Array of arguments.
4805 * @param[in] arg_count Count of elements in @p args.
4806 * @param[in,out] set Context and result set at the same time.
4807 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004808 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004809 */
4810static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004811xpath_substring(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004812{
Radek Krejci1deb5be2020-08-26 16:43:36 +02004813 int32_t start, len;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004814 uint16_t str_start, str_len, pos;
4815 struct lysc_node_leaf *sleaf;
4816 LY_ERR rc = LY_SUCCESS;
4817
4818 if (options & LYXP_SCNODE_ALL) {
4819 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4820 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4821 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 +02004822 } else if (!warn_is_string_type(sleaf->type)) {
4823 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004824 }
4825 }
4826
4827 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4828 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4829 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 +02004830 } else if (!warn_is_numeric_type(sleaf->type)) {
4831 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of numeric type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004832 }
4833 }
4834
Michal Vasko69730152020-10-09 16:30:07 +02004835 if ((arg_count == 3) && (args[2]->type == LYXP_SET_SCNODE_SET) &&
4836 (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[2]))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004837 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4838 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 +02004839 } else if (!warn_is_numeric_type(sleaf->type)) {
4840 LOGWRN(set->ctx, "Argument #3 of %s is node \"%s\", not of numeric type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004841 }
4842 }
4843 set_scnode_clear_ctx(set);
4844 return rc;
4845 }
4846
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004847 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004848 LY_CHECK_RET(rc);
4849
4850 /* start */
4851 if (xpath_round(&args[1], 1, args[1], options)) {
4852 return -1;
4853 }
4854 if (isfinite(args[1]->val.num)) {
4855 start = args[1]->val.num - 1;
4856 } else if (isinf(args[1]->val.num) && signbit(args[1]->val.num)) {
Radek Krejci1deb5be2020-08-26 16:43:36 +02004857 start = INT32_MIN;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004858 } else {
Radek Krejci1deb5be2020-08-26 16:43:36 +02004859 start = INT32_MAX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004860 }
4861
4862 /* len */
4863 if (arg_count == 3) {
4864 rc = xpath_round(&args[2], 1, args[2], options);
4865 LY_CHECK_RET(rc);
Radek Krejci1deb5be2020-08-26 16:43:36 +02004866 if (isnan(args[2]->val.num) || signbit(args[2]->val.num)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004867 len = 0;
Radek Krejci1deb5be2020-08-26 16:43:36 +02004868 } else if (isfinite(args[2]->val.num)) {
4869 len = args[2]->val.num;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004870 } else {
Radek Krejci1deb5be2020-08-26 16:43:36 +02004871 len = INT32_MAX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004872 }
4873 } else {
Radek Krejci1deb5be2020-08-26 16:43:36 +02004874 len = INT32_MAX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004875 }
4876
4877 /* find matching character positions */
4878 str_start = 0;
4879 str_len = 0;
4880 for (pos = 0; args[0]->val.str[pos]; ++pos) {
4881 if (pos < start) {
4882 ++str_start;
4883 } else if (pos < start + len) {
4884 ++str_len;
4885 } else {
4886 break;
4887 }
4888 }
4889
4890 set_fill_string(set, args[0]->val.str + str_start, str_len);
4891 return LY_SUCCESS;
4892}
4893
4894/**
4895 * @brief Execute the XPath substring-after(string, string) function.
4896 * Returns LYXP_SET_STRING with the string succeeding the occurance
4897 * of the second argument in the first or an empty string.
4898 *
4899 * @param[in] args Array of arguments.
4900 * @param[in] arg_count Count of elements in @p args.
4901 * @param[in,out] set Context and result set at the same time.
4902 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004903 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004904 */
4905static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004906xpath_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 +02004907{
4908 char *ptr;
4909 struct lysc_node_leaf *sleaf;
4910 LY_ERR rc = LY_SUCCESS;
4911
4912 if (options & LYXP_SCNODE_ALL) {
4913 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4914 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4915 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 +02004916 } else if (!warn_is_string_type(sleaf->type)) {
4917 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004918 }
4919 }
4920
4921 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4922 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4923 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 +02004924 } else if (!warn_is_string_type(sleaf->type)) {
4925 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004926 }
4927 }
4928 set_scnode_clear_ctx(set);
4929 return rc;
4930 }
4931
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004932 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004933 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004934 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004935 LY_CHECK_RET(rc);
4936
4937 ptr = strstr(args[0]->val.str, args[1]->val.str);
4938 if (ptr) {
4939 set_fill_string(set, ptr + strlen(args[1]->val.str), strlen(ptr + strlen(args[1]->val.str)));
4940 } else {
4941 set_fill_string(set, "", 0);
4942 }
4943
4944 return LY_SUCCESS;
4945}
4946
4947/**
4948 * @brief Execute the XPath substring-before(string, string) function.
4949 * Returns LYXP_SET_STRING with the string preceding the occurance
4950 * of the second argument in the first or an empty string.
4951 *
4952 * @param[in] args Array of arguments.
4953 * @param[in] arg_count Count of elements in @p args.
4954 * @param[in,out] set Context and result set at the same time.
4955 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004956 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004957 */
4958static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004959xpath_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 +02004960{
4961 char *ptr;
4962 struct lysc_node_leaf *sleaf;
4963 LY_ERR rc = LY_SUCCESS;
4964
4965 if (options & LYXP_SCNODE_ALL) {
4966 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4967 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4968 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 +02004969 } else if (!warn_is_string_type(sleaf->type)) {
4970 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004971 }
4972 }
4973
4974 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4975 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4976 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 +02004977 } else if (!warn_is_string_type(sleaf->type)) {
4978 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004979 }
4980 }
4981 set_scnode_clear_ctx(set);
4982 return rc;
4983 }
4984
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004985 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004986 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004987 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004988 LY_CHECK_RET(rc);
4989
4990 ptr = strstr(args[0]->val.str, args[1]->val.str);
4991 if (ptr) {
4992 set_fill_string(set, args[0]->val.str, ptr - args[0]->val.str);
4993 } else {
4994 set_fill_string(set, "", 0);
4995 }
4996
4997 return LY_SUCCESS;
4998}
4999
5000/**
5001 * @brief Execute the XPath sum(node-set) function. Returns LYXP_SET_NUMBER
5002 * with the sum of all the nodes in the context.
5003 *
5004 * @param[in] args Array of arguments.
5005 * @param[in] arg_count Count of elements in @p args.
5006 * @param[in,out] set Context and result set at the same time.
5007 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005008 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005009 */
5010static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005011xpath_sum(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005012{
5013 long double num;
5014 char *str;
5015 uint16_t i;
5016 struct lyxp_set set_item;
5017 struct lysc_node_leaf *sleaf;
5018 LY_ERR rc = LY_SUCCESS;
5019
5020 if (options & LYXP_SCNODE_ALL) {
5021 if (args[0]->type == LYXP_SET_SCNODE_SET) {
5022 for (i = 0; i < args[0]->used; ++i) {
5023 if (args[0]->val.scnodes[i].in_ctx == 1) {
5024 sleaf = (struct lysc_node_leaf *)args[0]->val.scnodes[i].scnode;
5025 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5026 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__,
Michal Vasko69730152020-10-09 16:30:07 +02005027 lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005028 } else if (!warn_is_numeric_type(sleaf->type)) {
5029 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of numeric type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005030 }
5031 }
5032 }
5033 }
5034 set_scnode_clear_ctx(set);
5035 return rc;
5036 }
5037
5038 set_fill_number(set, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005039
5040 if (args[0]->type != LYXP_SET_NODE_SET) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005041 LOGVAL(set->ctx, LY_VLOG_LYD, set->cur_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "sum(node-set)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02005042 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02005043 } else if (!args[0]->used) {
5044 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005045 }
5046
Michal Vasko5c4e5892019-11-14 12:31:38 +01005047 set_init(&set_item, set);
5048
Michal Vasko03ff5a72019-09-11 13:49:33 +02005049 set_item.type = LYXP_SET_NODE_SET;
5050 set_item.val.nodes = malloc(sizeof *set_item.val.nodes);
5051 LY_CHECK_ERR_RET(!set_item.val.nodes, LOGMEM(set->ctx), LY_EMEM);
5052
5053 set_item.used = 1;
5054 set_item.size = 1;
5055
5056 for (i = 0; i < args[0]->used; ++i) {
5057 set_item.val.nodes[0] = args[0]->val.nodes[i];
5058
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005059 rc = cast_node_set_to_string(&set_item, &str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005060 LY_CHECK_RET(rc);
5061 num = cast_string_to_number(str);
5062 free(str);
5063 set->val.num += num;
5064 }
5065
5066 free(set_item.val.nodes);
5067
5068 return LY_SUCCESS;
5069}
5070
5071/**
5072 * @brief Execute the XPath text() function (node type). Returns LYXP_SET_NODE_SET
5073 * with the text content of the nodes in the context.
5074 *
5075 * @param[in] args Array of arguments.
5076 * @param[in] arg_count Count of elements in @p args.
5077 * @param[in,out] set Context and result set at the same time.
5078 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005079 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005080 */
5081static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005082xpath_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 +02005083{
5084 uint32_t i;
5085
5086 if (options & LYXP_SCNODE_ALL) {
5087 set_scnode_clear_ctx(set);
5088 return LY_SUCCESS;
5089 }
5090
Michal Vasko03ff5a72019-09-11 13:49:33 +02005091 if (set->type != LYXP_SET_NODE_SET) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005092 LOGVAL(set->ctx, LY_VLOG_LYD, set->cur_node, LY_VCODE_XP_INCTX, print_set_type(set), "text()");
Michal Vasko03ff5a72019-09-11 13:49:33 +02005093 return LY_EVALID;
5094 }
5095
Michal Vaskod989ba02020-08-24 10:59:24 +02005096 for (i = 0; i < set->used; ) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005097 switch (set->val.nodes[i].type) {
Michal Vasko2caefc12019-11-14 16:07:56 +01005098 case LYXP_NODE_NONE:
5099 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005100 case LYXP_NODE_ELEM:
Michal Vasko03ff5a72019-09-11 13:49:33 +02005101 if (set->val.nodes[i].node->schema->nodetype & (LYS_LEAF | LYS_LEAFLIST)) {
5102 set->val.nodes[i].type = LYXP_NODE_TEXT;
5103 ++i;
5104 break;
5105 }
Radek Krejci0f969882020-08-21 16:56:47 +02005106 /* fall through */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005107 case LYXP_NODE_ROOT:
5108 case LYXP_NODE_ROOT_CONFIG:
5109 case LYXP_NODE_TEXT:
Michal Vasko9f96a052020-03-10 09:41:45 +01005110 case LYXP_NODE_META:
Michal Vasko03ff5a72019-09-11 13:49:33 +02005111 set_remove_node(set, i);
5112 break;
5113 }
5114 }
5115
5116 return LY_SUCCESS;
5117}
5118
5119/**
5120 * @brief Execute the XPath translate(string, string, string) function.
5121 * Returns LYXP_SET_STRING with the first argument with the characters
5122 * from the second argument replaced by those on the corresponding
5123 * positions in the third argument.
5124 *
5125 * @param[in] args Array of arguments.
5126 * @param[in] arg_count Count of elements in @p args.
5127 * @param[in,out] set Context and result set at the same time.
5128 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005129 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005130 */
5131static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005132xpath_translate(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005133{
5134 uint16_t i, j, new_used;
5135 char *new;
Radek Krejci857189e2020-09-01 13:26:36 +02005136 ly_bool have_removed;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005137 struct lysc_node_leaf *sleaf;
5138 LY_ERR rc = LY_SUCCESS;
5139
5140 if (options & LYXP_SCNODE_ALL) {
5141 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
5142 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5143 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 +02005144 } else if (!warn_is_string_type(sleaf->type)) {
5145 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005146 }
5147 }
5148
5149 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
5150 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5151 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 +02005152 } else if (!warn_is_string_type(sleaf->type)) {
5153 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005154 }
5155 }
5156
5157 if ((args[2]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[2]))) {
5158 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5159 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 +02005160 } else if (!warn_is_string_type(sleaf->type)) {
5161 LOGWRN(set->ctx, "Argument #3 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005162 }
5163 }
5164 set_scnode_clear_ctx(set);
5165 return rc;
5166 }
5167
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005168 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005169 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005170 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005171 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005172 rc = lyxp_set_cast(args[2], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005173 LY_CHECK_RET(rc);
5174
5175 new = malloc((strlen(args[0]->val.str) + 1) * sizeof(char));
5176 LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM);
5177 new_used = 0;
5178
5179 have_removed = 0;
5180 for (i = 0; args[0]->val.str[i]; ++i) {
Radek Krejci857189e2020-09-01 13:26:36 +02005181 ly_bool found = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005182
5183 for (j = 0; args[1]->val.str[j]; ++j) {
5184 if (args[0]->val.str[i] == args[1]->val.str[j]) {
5185 /* removing this char */
5186 if (j >= strlen(args[2]->val.str)) {
5187 have_removed = 1;
5188 found = 1;
5189 break;
5190 }
5191 /* replacing this char */
5192 new[new_used] = args[2]->val.str[j];
5193 ++new_used;
5194 found = 1;
5195 break;
5196 }
5197 }
5198
5199 /* copying this char */
5200 if (!found) {
5201 new[new_used] = args[0]->val.str[i];
5202 ++new_used;
5203 }
5204 }
5205
5206 if (have_removed) {
5207 new = ly_realloc(new, (new_used + 1) * sizeof(char));
5208 LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM);
5209 }
5210 new[new_used] = '\0';
5211
Michal Vaskod3678892020-05-21 10:06:58 +02005212 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005213 set->type = LYXP_SET_STRING;
5214 set->val.str = new;
5215
5216 return LY_SUCCESS;
5217}
5218
5219/**
5220 * @brief Execute the XPath true() function. Returns LYXP_SET_BOOLEAN
5221 * with true value.
5222 *
5223 * @param[in] args Array of arguments.
5224 * @param[in] arg_count Count of elements in @p args.
5225 * @param[in,out] set Context and result set at the same time.
5226 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005227 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005228 */
5229static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005230xpath_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 +02005231{
5232 if (options & LYXP_SCNODE_ALL) {
5233 set_scnode_clear_ctx(set);
5234 return LY_SUCCESS;
5235 }
5236
5237 set_fill_boolean(set, 1);
5238 return LY_SUCCESS;
5239}
5240
5241/*
5242 * moveto functions
5243 *
5244 * They and only they actually change the context (set).
5245 */
5246
5247/**
Michal Vasko6346ece2019-09-24 13:12:53 +02005248 * @brief Skip prefix and return corresponding model if there is a prefix. Logs directly.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005249 *
Michal Vasko2104e9f2020-03-06 08:23:25 +01005250 * XPath @p set is expected to be a (sc)node set!
5251 *
Michal Vasko6346ece2019-09-24 13:12:53 +02005252 * @param[in,out] qname Qualified node name. If includes prefix, it is skipped.
5253 * @param[in,out] qname_len Length of @p qname, is updated accordingly.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005254 * @param[in] set Set with general XPath context.
5255 * @param[in] ctx_scnode Context node to inherit module for unprefixed node for ::LY_PREF_JSON.
Michal Vasko6346ece2019-09-24 13:12:53 +02005256 * @param[out] moveto_mod Expected module of a matching node.
5257 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005258 */
Michal Vasko6346ece2019-09-24 13:12:53 +02005259static LY_ERR
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005260moveto_resolve_model(const char **qname, uint16_t *qname_len, const struct lyxp_set *set,
5261 const struct lysc_node *ctx_scnode, const struct lys_module **moveto_mod)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005262{
Michal Vaskoed4fcfe2020-07-08 10:38:56 +02005263 const struct lys_module *mod = NULL;
Michal Vasko6346ece2019-09-24 13:12:53 +02005264 const char *ptr;
Radek Krejci1deb5be2020-08-26 16:43:36 +02005265 size_t pref_len;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005266
Michal Vasko2104e9f2020-03-06 08:23:25 +01005267 assert((set->type == LYXP_SET_NODE_SET) || (set->type == LYXP_SET_SCNODE_SET));
5268
Michal Vasko6346ece2019-09-24 13:12:53 +02005269 if ((ptr = ly_strnchr(*qname, ':', *qname_len))) {
5270 /* specific module */
5271 pref_len = ptr - *qname;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005272 mod = ly_resolve_prefix(set->ctx, *qname, pref_len, set->format, set->prefix_data);
Michal Vasko6346ece2019-09-24 13:12:53 +02005273
Michal Vasko004d3152020-06-11 19:59:22 +02005274 /* check for errors and non-implemented modules, as they are not valid */
Juraj Vijtiukd75faa62019-11-26 14:10:10 +01005275 if (!mod || !mod->implemented) {
Michal Vasko2104e9f2020-03-06 08:23:25 +01005276 if (set->type == LYXP_SET_SCNODE_SET) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005277 LOGVAL(set->ctx, LY_VLOG_LYSC, set->cur_scnode, LY_VCODE_XP_INMOD, pref_len, *qname);
Michal Vasko2104e9f2020-03-06 08:23:25 +01005278 } else {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005279 LOGVAL(set->ctx, LY_VLOG_LYD, set->cur_node, LY_VCODE_XP_INMOD, pref_len, *qname);
Michal Vasko2104e9f2020-03-06 08:23:25 +01005280 }
Michal Vasko6346ece2019-09-24 13:12:53 +02005281 return LY_EVALID;
5282 }
Juraj Vijtiukd75faa62019-11-26 14:10:10 +01005283
Michal Vasko6346ece2019-09-24 13:12:53 +02005284 *qname += pref_len + 1;
5285 *qname_len -= pref_len + 1;
5286 } else if (((*qname)[0] == '*') && (*qname_len == 1)) {
5287 /* all modules - special case */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005288 mod = NULL;
Michal Vasko6346ece2019-09-24 13:12:53 +02005289 } else {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005290 switch (set->format) {
5291 case LY_PREF_SCHEMA:
5292 case LY_PREF_SCHEMA_RESOLVED:
5293 /* current module */
5294 mod = set->cur_mod;
5295 break;
5296 case LY_PREF_JSON:
5297 /* inherit parent (context node) module */
5298 if (ctx_scnode) {
5299 mod = ctx_scnode->module;
5300 } else {
5301 mod = NULL;
5302 }
5303 break;
5304 case LY_PREF_XML:
5305 /* not defined */
5306 LOGINT_RET(set->ctx);
5307 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005308 }
5309
Michal Vasko6346ece2019-09-24 13:12:53 +02005310 *moveto_mod = mod;
5311 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005312}
5313
5314/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02005315 * @brief Move context @p set to the root. Handles absolute path.
5316 * Result is LYXP_SET_NODE_SET.
5317 *
5318 * @param[in,out] set Set to use.
5319 * @param[in] options Xpath options.
Michal Vaskob0099a92020-08-31 14:55:23 +02005320 * @return LY_ERR value.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005321 */
Michal Vaskob0099a92020-08-31 14:55:23 +02005322static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005323moveto_root(struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005324{
Michal Vasko03ff5a72019-09-11 13:49:33 +02005325 if (!set) {
Michal Vaskob0099a92020-08-31 14:55:23 +02005326 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005327 }
5328
5329 if (options & LYXP_SCNODE_ALL) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005330 set_scnode_clear_ctx(set);
Michal Vaskob0099a92020-08-31 14:55:23 +02005331 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, NULL, set->root_type, NULL));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005332 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02005333 set->type = LYXP_SET_NODE_SET;
5334 set->used = 0;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005335 set_insert_node(set, NULL, 0, set->root_type, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005336 }
Michal Vaskob0099a92020-08-31 14:55:23 +02005337
5338 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005339}
5340
5341/**
5342 * @brief Check @p node as a part of NameTest processing.
5343 *
5344 * @param[in] node Node to check.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005345 * @param[in] ctx_node Context node.
5346 * @param[in] set Set to read general context from.
Michal Vaskod3678892020-05-21 10:06:58 +02005347 * @param[in] node_name Node name in the dictionary to move to, NULL for any node.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005348 * @param[in] moveto_mod Expected module of the node, NULL for no prefix.
Michal Vaskocdad7122020-11-09 21:04:44 +01005349 * @param[in] options XPath options.
Michal Vasko6346ece2019-09-24 13:12:53 +02005350 * @return LY_ERR (LY_ENOT if node does not match, LY_EINCOMPLETE on unresolved when,
5351 * LY_EINVAL if netither node nor any children match)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005352 */
5353static LY_ERR
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005354moveto_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 +01005355 const char *node_name, const struct lys_module *moveto_mod, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005356{
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005357 if (!moveto_mod && (!node_name || strcmp(node_name, "*"))) {
5358 switch (set->format) {
5359 case LY_PREF_SCHEMA:
5360 case LY_PREF_SCHEMA_RESOLVED:
5361 /* use current module */
5362 moveto_mod = set->cur_mod;
5363 break;
5364 case LY_PREF_JSON:
5365 /* inherit module of the context node, if any */
5366 if (ctx_node) {
5367 moveto_mod = ctx_node->schema->module;
5368 }
5369 break;
5370 case LY_PREF_XML:
5371 /* not defined */
5372 LOGINT(set->ctx);
5373 return LY_EINVAL;
5374 }
5375 }
5376
Michal Vasko03ff5a72019-09-11 13:49:33 +02005377 /* module check */
5378 if (moveto_mod && (node->schema->module != moveto_mod)) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005379 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005380 }
5381
Michal Vasko5c4e5892019-11-14 12:31:38 +01005382 /* context check */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005383 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (node->schema->flags & LYS_CONFIG_R)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005384 return LY_EINVAL;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005385 } else if (set->context_op && (node->schema->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) &&
5386 (node->schema != set->context_op)) {
Michal Vasko6b26e742020-07-17 15:02:10 +02005387 return LY_EINVAL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005388 }
5389
5390 /* name check */
Michal Vasko61ac2f62020-05-25 12:39:51 +02005391 if (node_name && strcmp(node_name, "*") && (node->schema->name != node_name)) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005392 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005393 }
5394
Michal Vaskoa1424542019-11-14 16:08:52 +01005395 /* when check */
Michal Vaskod5cfa6e2020-11-23 16:56:08 +01005396 if (!(options & LYXP_IGNORE_WHEN) && lysc_has_when(node->schema) && !(node->flags & LYD_WHEN_TRUE)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005397 return LY_EINCOMPLETE;
Michal Vaskoa1424542019-11-14 16:08:52 +01005398 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005399
5400 /* match */
5401 return LY_SUCCESS;
5402}
5403
5404/**
5405 * @brief Check @p node as a part of schema NameTest processing.
5406 *
5407 * @param[in] node Schema node to check.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005408 * @param[in] ctx_scnode Context node.
5409 * @param[in] set Set to read general context from.
Michal Vaskod3678892020-05-21 10:06:58 +02005410 * @param[in] node_name Node name in the dictionary to move to, NULL for any nodes.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005411 * @param[in] moveto_mod Expected module of the node, NULL for no prefix.
Michal Vasko6346ece2019-09-24 13:12:53 +02005412 * @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 +02005413 */
5414static LY_ERR
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005415moveto_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 +02005416 const char *node_name, const struct lys_module *moveto_mod)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005417{
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005418 if (!moveto_mod && (!node_name || strcmp(node_name, "*"))) {
5419 switch (set->format) {
5420 case LY_PREF_SCHEMA:
5421 case LY_PREF_SCHEMA_RESOLVED:
5422 /* use current module */
5423 moveto_mod = set->cur_mod;
5424 break;
5425 case LY_PREF_JSON:
5426 /* inherit module of the context node, if any */
5427 if (ctx_scnode) {
5428 moveto_mod = ctx_scnode->module;
5429 }
5430 break;
5431 case LY_PREF_XML:
5432 /* not defined */
5433 LOGINT(set->ctx);
5434 return LY_EINVAL;
5435 }
5436 }
5437
Michal Vasko03ff5a72019-09-11 13:49:33 +02005438 /* module check */
Michal Vaskod3678892020-05-21 10:06:58 +02005439 if (moveto_mod && (node->module != moveto_mod)) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005440 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005441 }
5442
5443 /* context check */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005444 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (node->flags & LYS_CONFIG_R)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005445 return LY_EINVAL;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005446 } else if (set->context_op && (node->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) && (node != set->context_op)) {
Michal Vasko6b26e742020-07-17 15:02:10 +02005447 return LY_EINVAL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005448 }
5449
5450 /* name check */
Michal Vasko61ac2f62020-05-25 12:39:51 +02005451 if (node_name && strcmp(node_name, "*") && (node->name != node_name)) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005452 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005453 }
5454
5455 /* match */
5456 return LY_SUCCESS;
5457}
5458
5459/**
Michal Vaskod3678892020-05-21 10:06:58 +02005460 * @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 +02005461 *
5462 * @param[in,out] set Set to use.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005463 * @param[in] moveto_mod Matching node module, NULL for no prefix.
Michal Vaskod3678892020-05-21 10:06:58 +02005464 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vaskocdad7122020-11-09 21:04:44 +01005465 * @param[in] options XPath options.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005466 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
5467 */
5468static LY_ERR
Michal Vaskocdad7122020-11-09 21:04:44 +01005469moveto_node(struct lyxp_set *set, const struct lys_module *moveto_mod, const char *ncname, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005470{
Michal Vaskof03ed032020-03-04 13:31:44 +01005471 uint32_t i;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005472 const struct lyd_node *siblings, *sub, *ctx_node;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005473 LY_ERR rc;
5474
Michal Vaskod3678892020-05-21 10:06:58 +02005475 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005476 return LY_SUCCESS;
5477 }
5478
5479 if (set->type != LYXP_SET_NODE_SET) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005480 LOGVAL(set->ctx, LY_VLOG_LYD, set->cur_node, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005481 return LY_EVALID;
5482 }
5483
Michal Vasko03ff5a72019-09-11 13:49:33 +02005484 for (i = 0; i < set->used; ) {
Radek Krejci857189e2020-09-01 13:26:36 +02005485 ly_bool replaced = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005486
5487 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 +01005488 assert(!set->val.nodes[i].node);
Michal Vaskod3678892020-05-21 10:06:58 +02005489
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005490 /* search in all the trees */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005491 ctx_node = NULL;
Michal Vaskod3678892020-05-21 10:06:58 +02005492 siblings = set->tree;
Michal Vasko5bfd4be2020-06-23 13:26:19 +02005493 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02005494 /* search in children */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005495 ctx_node = set->val.nodes[i].node;
5496 siblings = lyd_child(ctx_node);
Michal Vaskod3678892020-05-21 10:06:58 +02005497 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005498
Michal Vaskod3678892020-05-21 10:06:58 +02005499 for (sub = siblings; sub; sub = sub->next) {
Michal Vaskocdad7122020-11-09 21:04:44 +01005500 rc = moveto_node_check(sub, ctx_node, set, ncname, moveto_mod, options);
Michal Vaskod3678892020-05-21 10:06:58 +02005501 if (rc == LY_SUCCESS) {
5502 if (!replaced) {
5503 set_replace_node(set, sub, 0, LYXP_NODE_ELEM, i);
5504 replaced = 1;
5505 } else {
5506 set_insert_node(set, sub, 0, LYXP_NODE_ELEM, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005507 }
Michal Vaskod3678892020-05-21 10:06:58 +02005508 ++i;
5509 } else if (rc == LY_EINCOMPLETE) {
5510 return rc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005511 }
5512 }
5513
5514 if (!replaced) {
5515 /* no match */
5516 set_remove_node(set, i);
5517 }
5518 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005519
5520 return LY_SUCCESS;
5521}
5522
5523/**
Michal Vaskod3678892020-05-21 10:06:58 +02005524 * @brief Move context @p set to a node using hashes. Result is LYXP_SET_NODE_SET (or LYXP_SET_EMPTY).
5525 * Context position aware.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005526 *
5527 * @param[in,out] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02005528 * @param[in] scnode Matching node schema.
Michal Vasko004d3152020-06-11 19:59:22 +02005529 * @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 +01005530 * @param[in] options XPath options.
Michal Vaskod3678892020-05-21 10:06:58 +02005531 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
5532 */
5533static LY_ERR
Michal Vaskocdad7122020-11-09 21:04:44 +01005534moveto_node_hash(struct lyxp_set *set, const struct lysc_node *scnode, const struct ly_path_predicate *predicates,
5535 uint32_t options)
Michal Vaskod3678892020-05-21 10:06:58 +02005536{
Michal Vasko004d3152020-06-11 19:59:22 +02005537 LY_ERR ret = LY_SUCCESS;
Michal Vaskod3678892020-05-21 10:06:58 +02005538 uint32_t i;
Michal Vaskod3678892020-05-21 10:06:58 +02005539 const struct lyd_node *siblings;
Michal Vasko004d3152020-06-11 19:59:22 +02005540 struct lyd_node *sub, *inst = NULL;
Michal Vaskod3678892020-05-21 10:06:58 +02005541
Michal Vasko004d3152020-06-11 19:59:22 +02005542 assert(scnode && (!(scnode->nodetype & (LYS_LIST | LYS_LEAFLIST)) || predicates));
Michal Vaskod3678892020-05-21 10:06:58 +02005543
5544 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02005545 goto cleanup;
Michal Vaskod3678892020-05-21 10:06:58 +02005546 }
5547
5548 if (set->type != LYXP_SET_NODE_SET) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005549 LOGVAL(set->ctx, LY_VLOG_LYD, set->cur_node, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko004d3152020-06-11 19:59:22 +02005550 ret = LY_EVALID;
5551 goto cleanup;
Michal Vaskod3678892020-05-21 10:06:58 +02005552 }
5553
5554 /* context check for all the nodes since we have the schema node */
5555 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (scnode->flags & LYS_CONFIG_R)) {
5556 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02005557 goto cleanup;
Michal Vasko69730152020-10-09 16:30:07 +02005558 } else if (set->context_op && (scnode->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) &&
5559 (scnode != set->context_op)) {
Michal Vasko6b26e742020-07-17 15:02:10 +02005560 lyxp_set_free_content(set);
5561 goto cleanup;
Michal Vasko004d3152020-06-11 19:59:22 +02005562 }
5563
5564 /* create specific data instance if needed */
5565 if (scnode->nodetype == LYS_LIST) {
5566 LY_CHECK_GOTO(ret = lyd_create_list(scnode, predicates, &inst), cleanup);
5567 } else if (scnode->nodetype == LYS_LEAFLIST) {
5568 LY_CHECK_GOTO(ret = lyd_create_term2(scnode, &predicates[0].value, &inst), cleanup);
Michal Vaskod3678892020-05-21 10:06:58 +02005569 }
5570
5571 for (i = 0; i < set->used; ) {
Michal Vaskod3678892020-05-21 10:06:58 +02005572 siblings = NULL;
5573
5574 if ((set->val.nodes[i].type == LYXP_NODE_ROOT_CONFIG) || (set->val.nodes[i].type == LYXP_NODE_ROOT)) {
5575 assert(!set->val.nodes[i].node);
5576
5577 /* search in all the trees */
5578 siblings = set->tree;
5579 } else if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
5580 /* search in children */
Radek Krejcia1c1e542020-09-29 16:06:52 +02005581 siblings = lyd_child(set->val.nodes[i].node);
Michal Vaskod3678892020-05-21 10:06:58 +02005582 }
5583
5584 /* find the node using hashes */
Michal Vasko004d3152020-06-11 19:59:22 +02005585 if (inst) {
5586 lyd_find_sibling_first(siblings, inst, &sub);
Michal Vaskod3678892020-05-21 10:06:58 +02005587 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02005588 lyd_find_sibling_val(siblings, scnode, NULL, 0, &sub);
Michal Vaskod3678892020-05-21 10:06:58 +02005589 }
5590
5591 /* when check */
Michal Vaskod5cfa6e2020-11-23 16:56:08 +01005592 if (!(options & LYXP_IGNORE_WHEN) && sub && lysc_has_when(sub->schema) && !(sub->flags & LYD_WHEN_TRUE)) {
Michal Vasko004d3152020-06-11 19:59:22 +02005593 ret = LY_EINCOMPLETE;
5594 goto cleanup;
Michal Vaskod3678892020-05-21 10:06:58 +02005595 }
5596
5597 if (sub) {
5598 /* pos filled later */
Michal Vaskocb1b7c02020-07-03 13:38:12 +02005599 set_replace_node(set, sub, 0, LYXP_NODE_ELEM, i);
Michal Vaskod3678892020-05-21 10:06:58 +02005600 ++i;
Michal Vaskocb1b7c02020-07-03 13:38:12 +02005601 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02005602 /* no match */
5603 set_remove_node(set, i);
5604 }
5605 }
5606
Michal Vasko004d3152020-06-11 19:59:22 +02005607cleanup:
5608 lyd_free_tree(inst);
5609 return ret;
Michal Vaskod3678892020-05-21 10:06:58 +02005610}
5611
5612/**
5613 * @brief Move context @p set to a schema node. Result is LYXP_SET_SCNODE_SET (or LYXP_SET_EMPTY).
5614 *
5615 * @param[in,out] set Set to use.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005616 * @param[in] moveto_mod Matching node module, NULL for no prefix.
Michal Vaskod3678892020-05-21 10:06:58 +02005617 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005618 * @param[in] options XPath options.
5619 * @return LY_ERR
5620 */
5621static LY_ERR
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005622moveto_scnode(struct lyxp_set *set, const struct lys_module *moveto_mod, const char *ncname, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005623{
Radek Krejci857189e2020-09-01 13:26:36 +02005624 ly_bool temp_ctx = 0;
Radek Krejci1deb5be2020-08-26 16:43:36 +02005625 uint32_t getnext_opts;
5626 uint32_t orig_used, i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005627 uint32_t mod_idx;
Michal Vasko519fd602020-05-26 12:17:39 +02005628 const struct lysc_node *iter, *start_parent;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005629 const struct lys_module *mod;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005630
Michal Vaskod3678892020-05-21 10:06:58 +02005631 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005632 return LY_SUCCESS;
5633 }
5634
5635 if (set->type != LYXP_SET_SCNODE_SET) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005636 LOGVAL(set->ctx, LY_VLOG_LYSC, set->cur_scnode, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005637 return LY_EVALID;
5638 }
5639
Michal Vaskocafad9d2019-11-07 15:20:03 +01005640 /* getnext opts */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01005641 getnext_opts = 0;
Michal Vaskocafad9d2019-11-07 15:20:03 +01005642 if (options & LYXP_SCNODE_OUTPUT) {
5643 getnext_opts |= LYS_GETNEXT_OUTPUT;
5644 }
5645
Michal Vasko03ff5a72019-09-11 13:49:33 +02005646 orig_used = set->used;
5647 for (i = 0; i < orig_used; ++i) {
Radek Krejciaa6b53f2020-08-27 15:19:03 +02005648 uint32_t idx;
5649
Michal Vasko03ff5a72019-09-11 13:49:33 +02005650 if (set->val.scnodes[i].in_ctx != 1) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01005651 if (set->val.scnodes[i].in_ctx != -2) {
5652 continue;
5653 }
5654
5655 /* remember context node */
5656 set->val.scnodes[i].in_ctx = -1;
Michal Vaskoec4df482019-12-16 10:02:18 +01005657 } else {
5658 set->val.scnodes[i].in_ctx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005659 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005660
5661 start_parent = set->val.scnodes[i].scnode;
5662
5663 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 +02005664 /* 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 +02005665 * it can be in a top-level augment (the root node itself is useless in this case) */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005666 mod_idx = 0;
Michal Vasko9e9f26d2020-10-12 16:31:33 +02005667 while ((mod = (struct lys_module *)ly_ctx_get_module_iter(set->ctx, &mod_idx))) {
Michal Vasko519fd602020-05-26 12:17:39 +02005668 iter = NULL;
Michal Vasko509de4d2019-12-10 14:51:30 +01005669 /* module may not be implemented */
Michal Vasko519fd602020-05-26 12:17:39 +02005670 while (mod->implemented && (iter = lys_getnext(iter, NULL, mod->compiled, getnext_opts))) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005671 if (!moveto_scnode_check(iter, NULL, set, ncname, moveto_mod)) {
Radek Krejciaa6b53f2020-08-27 15:19:03 +02005672 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, iter, LYXP_NODE_ELEM, &idx));
5673
Michal Vasko03ff5a72019-09-11 13:49:33 +02005674 /* we need to prevent these nodes from being considered in this moveto */
Radek Krejciaa6b53f2020-08-27 15:19:03 +02005675 if ((idx < orig_used) && (idx > i)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005676 set->val.scnodes[idx].in_ctx = 2;
5677 temp_ctx = 1;
5678 }
5679 }
5680 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005681 }
5682
Michal Vasko519fd602020-05-26 12:17:39 +02005683 } else if (set->val.scnodes[i].type == LYXP_NODE_ELEM) {
5684 iter = NULL;
5685 while ((iter = lys_getnext(iter, start_parent, NULL, getnext_opts))) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005686 if (!moveto_scnode_check(iter, start_parent, set, ncname, moveto_mod)) {
Radek Krejciaa6b53f2020-08-27 15:19:03 +02005687 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, iter, LYXP_NODE_ELEM, &idx));
5688
5689 if ((idx < orig_used) && (idx > i)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005690 set->val.scnodes[idx].in_ctx = 2;
5691 temp_ctx = 1;
5692 }
5693 }
5694 }
5695 }
5696 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005697
5698 /* correct temporary in_ctx values */
5699 if (temp_ctx) {
5700 for (i = 0; i < orig_used; ++i) {
5701 if (set->val.scnodes[i].in_ctx == 2) {
5702 set->val.scnodes[i].in_ctx = 1;
5703 }
5704 }
5705 }
5706
5707 return LY_SUCCESS;
5708}
5709
5710/**
Michal Vaskod3678892020-05-21 10:06:58 +02005711 * @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 +02005712 * Context position aware.
5713 *
5714 * @param[in] set Set to use.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005715 * @param[in] moveto_mod Matching node module, NULL for no prefix.
Michal Vaskod3678892020-05-21 10:06:58 +02005716 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vaskocdad7122020-11-09 21:04:44 +01005717 * @param[in] options XPath options.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005718 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
5719 */
5720static LY_ERR
Michal Vaskocdad7122020-11-09 21:04:44 +01005721moveto_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 +02005722{
5723 uint32_t i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005724 const struct lyd_node *next, *elem, *start;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005725 struct lyxp_set ret_set;
5726 LY_ERR rc;
5727
Michal Vaskod3678892020-05-21 10:06:58 +02005728 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005729 return LY_SUCCESS;
5730 }
5731
5732 if (set->type != LYXP_SET_NODE_SET) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005733 LOGVAL(set->ctx, LY_VLOG_LYD, set->cur_node, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005734 return LY_EVALID;
5735 }
5736
Michal Vasko9f96a052020-03-10 09:41:45 +01005737 /* 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 +01005738 rc = moveto_node(set, NULL, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005739 LY_CHECK_RET(rc);
5740
Michal Vasko6346ece2019-09-24 13:12:53 +02005741 /* this loop traverses all the nodes in the set and adds/keeps only those that match qname */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005742 set_init(&ret_set, set);
5743 for (i = 0; i < set->used; ++i) {
5744
5745 /* TREE DFS */
5746 start = set->val.nodes[i].node;
5747 for (elem = next = start; elem; elem = next) {
Michal Vaskocdad7122020-11-09 21:04:44 +01005748 rc = moveto_node_check(elem, start, set, ncname, moveto_mod, options);
Michal Vasko6346ece2019-09-24 13:12:53 +02005749 if (!rc) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005750 /* add matching node into result set */
5751 set_insert_node(&ret_set, elem, 0, LYXP_NODE_ELEM, ret_set.used);
5752 if (set_dup_node_check(set, elem, LYXP_NODE_ELEM, i)) {
5753 /* the node is a duplicate, we'll process it later in the set */
5754 goto skip_children;
5755 }
Michal Vasko6346ece2019-09-24 13:12:53 +02005756 } else if (rc == LY_EINCOMPLETE) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005757 return rc;
5758 } else if (rc == LY_EINVAL) {
5759 goto skip_children;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005760 }
5761
5762 /* TREE DFS NEXT ELEM */
5763 /* select element for the next run - children first */
Radek Krejcia1c1e542020-09-29 16:06:52 +02005764 next = lyd_child(elem);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005765 if (!next) {
5766skip_children:
5767 /* no children, so try siblings, but only if it's not the start,
5768 * that is considered to be the root and it's siblings are not traversed */
5769 if (elem != start) {
5770 next = elem->next;
5771 } else {
5772 break;
5773 }
5774 }
5775 while (!next) {
5776 /* no siblings, go back through the parents */
5777 if ((struct lyd_node *)elem->parent == start) {
5778 /* we are done, no next element to process */
5779 break;
5780 }
5781 /* parent is already processed, go to its sibling */
5782 elem = (struct lyd_node *)elem->parent;
5783 next = elem->next;
5784 }
5785 }
5786 }
5787
5788 /* make the temporary set the current one */
5789 ret_set.ctx_pos = set->ctx_pos;
5790 ret_set.ctx_size = set->ctx_size;
Michal Vaskod3678892020-05-21 10:06:58 +02005791 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005792 memcpy(set, &ret_set, sizeof *set);
5793
5794 return LY_SUCCESS;
5795}
5796
5797/**
Michal Vasko61ac2f62020-05-25 12:39:51 +02005798 * @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 +02005799 *
5800 * @param[in] set Set to use.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005801 * @param[in] moveto_mod Matching node module, NULL for no prefix.
Michal Vaskod3678892020-05-21 10:06:58 +02005802 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005803 * @param[in] options XPath options.
5804 * @return LY_ERR
5805 */
5806static LY_ERR
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005807moveto_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 +02005808{
Radek Krejci1deb5be2020-08-26 16:43:36 +02005809 uint32_t i, orig_used;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005810 const struct lysc_node *next, *elem, *start;
Michal Vasko6346ece2019-09-24 13:12:53 +02005811 LY_ERR rc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005812
Michal Vaskod3678892020-05-21 10:06:58 +02005813 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005814 return LY_SUCCESS;
5815 }
5816
5817 if (set->type != LYXP_SET_SCNODE_SET) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005818 LOGVAL(set->ctx, LY_VLOG_LYSC, set->cur_scnode, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005819 return LY_EVALID;
5820 }
5821
Michal Vasko03ff5a72019-09-11 13:49:33 +02005822 orig_used = set->used;
5823 for (i = 0; i < orig_used; ++i) {
5824 if (set->val.scnodes[i].in_ctx != 1) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01005825 if (set->val.scnodes[i].in_ctx != -2) {
5826 continue;
5827 }
5828
5829 /* remember context node */
5830 set->val.scnodes[i].in_ctx = -1;
Michal Vaskoec4df482019-12-16 10:02:18 +01005831 } else {
5832 set->val.scnodes[i].in_ctx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005833 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005834
5835 /* TREE DFS */
5836 start = set->val.scnodes[i].scnode;
5837 for (elem = next = start; elem; elem = next) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005838 if ((elem == start) || (elem->nodetype & (LYS_CHOICE | LYS_CASE))) {
5839 /* schema-only nodes, skip root */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005840 goto next_iter;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005841 }
5842
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005843 rc = moveto_scnode_check(elem, start, set, ncname, moveto_mod);
Michal Vasko6346ece2019-09-24 13:12:53 +02005844 if (!rc) {
Radek Krejciaa6b53f2020-08-27 15:19:03 +02005845 uint32_t idx;
5846
5847 if (lyxp_set_scnode_contains(set, elem, LYXP_NODE_ELEM, i, &idx)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005848 set->val.scnodes[idx].in_ctx = 1;
Radek Krejci1deb5be2020-08-26 16:43:36 +02005849 if ((uint32_t)idx > i) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005850 /* we will process it later in the set */
5851 goto skip_children;
5852 }
5853 } else {
Radek Krejciaa6b53f2020-08-27 15:19:03 +02005854 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, elem, LYXP_NODE_ELEM, NULL));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005855 }
Michal Vasko6346ece2019-09-24 13:12:53 +02005856 } else if (rc == LY_EINVAL) {
5857 goto skip_children;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005858 }
5859
5860next_iter:
5861 /* TREE DFS NEXT ELEM */
5862 /* select element for the next run - children first */
5863 next = lysc_node_children(elem, options & LYXP_SCNODE_OUTPUT ? LYS_CONFIG_R : LYS_CONFIG_W);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005864 if (!next) {
5865skip_children:
5866 /* no children, so try siblings, but only if it's not the start,
5867 * that is considered to be the root and it's siblings are not traversed */
5868 if (elem != start) {
5869 next = elem->next;
5870 } else {
5871 break;
5872 }
5873 }
5874 while (!next) {
5875 /* no siblings, go back through the parents */
5876 if (elem->parent == start) {
5877 /* we are done, no next element to process */
5878 break;
5879 }
5880 /* parent is already processed, go to its sibling */
5881 elem = elem->parent;
5882 next = elem->next;
5883 }
5884 }
5885 }
5886
5887 return LY_SUCCESS;
5888}
5889
5890/**
Michal Vasko61ac2f62020-05-25 12:39:51 +02005891 * @brief Move context @p set to an attribute. Result is LYXP_SET_NODE_SET.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005892 * Indirectly context position aware.
5893 *
5894 * @param[in,out] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02005895 * @param[in] mod Matching metadata module, NULL for any.
5896 * @param[in] ncname Matching metadata name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005897 * @return LY_ERR
5898 */
5899static LY_ERR
Michal Vaskod3678892020-05-21 10:06:58 +02005900moveto_attr(struct lyxp_set *set, const struct lys_module *mod, const char *ncname)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005901{
Michal Vasko9f96a052020-03-10 09:41:45 +01005902 struct lyd_meta *sub;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005903
Michal Vaskod3678892020-05-21 10:06:58 +02005904 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005905 return LY_SUCCESS;
5906 }
5907
5908 if (set->type != LYXP_SET_NODE_SET) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005909 LOGVAL(set->ctx, LY_VLOG_LYD, set->cur_node, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005910 return LY_EVALID;
5911 }
5912
Radek Krejci1deb5be2020-08-26 16:43:36 +02005913 for (uint32_t i = 0; i < set->used; ) {
Radek Krejci857189e2020-09-01 13:26:36 +02005914 ly_bool replaced = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005915
5916 /* only attributes of an elem (not dummy) can be in the result, skip all the rest;
5917 * our attributes are always qualified */
Michal Vasko5c4e5892019-11-14 12:31:38 +01005918 if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
Michal Vasko9f96a052020-03-10 09:41:45 +01005919 for (sub = set->val.nodes[i].node->meta; sub; sub = sub->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005920
5921 /* check "namespace" */
Michal Vaskod3678892020-05-21 10:06:58 +02005922 if (mod && (sub->annotation->module != mod)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005923 continue;
5924 }
5925
Michal Vaskod3678892020-05-21 10:06:58 +02005926 if (!ncname || (sub->name == ncname)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005927 /* match */
5928 if (!replaced) {
Michal Vasko9f96a052020-03-10 09:41:45 +01005929 set->val.meta[i].meta = sub;
5930 set->val.meta[i].type = LYXP_NODE_META;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005931 /* pos does not change */
5932 replaced = 1;
5933 } else {
Michal Vasko9f96a052020-03-10 09:41:45 +01005934 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 +02005935 }
5936 ++i;
5937 }
5938 }
5939 }
5940
5941 if (!replaced) {
5942 /* no match */
5943 set_remove_node(set, i);
5944 }
5945 }
5946
5947 return LY_SUCCESS;
5948}
5949
5950/**
5951 * @brief Move context @p set1 to union with @p set2. @p set2 is emptied afterwards.
Michal Vasko61ac2f62020-05-25 12:39:51 +02005952 * Result is LYXP_SET_NODE_SET. Context position aware.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005953 *
5954 * @param[in,out] set1 Set to use for the result.
5955 * @param[in] set2 Set that is copied to @p set1.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005956 * @return LY_ERR
5957 */
5958static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005959moveto_union(struct lyxp_set *set1, struct lyxp_set *set2)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005960{
5961 LY_ERR rc;
5962
Michal Vaskod3678892020-05-21 10:06:58 +02005963 if ((set1->type != LYXP_SET_NODE_SET) || (set2->type != LYXP_SET_NODE_SET)) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005964 LOGVAL(set1->ctx, LY_VLOG_LYD, set1->cur_node, LY_VCODE_XP_INOP_2, "union", print_set_type(set1), print_set_type(set2));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005965 return LY_EVALID;
5966 }
5967
5968 /* set2 is empty or both set1 and set2 */
Michal Vaskod3678892020-05-21 10:06:58 +02005969 if (!set2->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005970 return LY_SUCCESS;
5971 }
5972
Michal Vaskod3678892020-05-21 10:06:58 +02005973 if (!set1->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005974 memcpy(set1, set2, sizeof *set1);
5975 /* dynamic memory belongs to set1 now, do not free */
Michal Vaskod3678892020-05-21 10:06:58 +02005976 memset(set2, 0, sizeof *set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005977 return LY_SUCCESS;
5978 }
5979
5980 /* we assume sets are sorted */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005981 assert(!set_sort(set1) && !set_sort(set2));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005982
5983 /* sort, remove duplicates */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005984 rc = set_sorted_merge(set1, set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005985 LY_CHECK_RET(rc);
5986
5987 /* final set must be sorted */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005988 assert(!set_sort(set1));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005989
5990 return LY_SUCCESS;
5991}
5992
5993/**
Michal Vasko61ac2f62020-05-25 12:39:51 +02005994 * @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 +02005995 * Context position aware.
5996 *
5997 * @param[in,out] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02005998 * @param[in] mod Matching metadata module, NULL for any.
5999 * @param[in] ncname Matching metadata name in the dictionary, NULL for any.
Michal Vaskocdad7122020-11-09 21:04:44 +01006000 * @param[in] options XPath options.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006001 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6002 */
6003static int
Michal Vaskocdad7122020-11-09 21:04:44 +01006004moveto_attr_alldesc(struct lyxp_set *set, const struct lys_module *mod, const char *ncname, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006005{
Michal Vasko9f96a052020-03-10 09:41:45 +01006006 struct lyd_meta *sub;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006007 struct lyxp_set *set_all_desc = NULL;
6008 LY_ERR rc;
6009
Michal Vaskod3678892020-05-21 10:06:58 +02006010 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006011 return LY_SUCCESS;
6012 }
6013
6014 if (set->type != LYXP_SET_NODE_SET) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006015 LOGVAL(set->ctx, LY_VLOG_LYD, set->cur_node, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006016 return LY_EVALID;
6017 }
6018
Michal Vasko03ff5a72019-09-11 13:49:33 +02006019 /* can be optimized similarly to moveto_node_alldesc() and save considerable amount of memory,
6020 * but it likely won't be used much, so it's a waste of time */
6021 /* copy the context */
6022 set_all_desc = set_copy(set);
6023 /* get all descendant nodes (the original context nodes are removed) */
Michal Vaskocdad7122020-11-09 21:04:44 +01006024 rc = moveto_node_alldesc(set_all_desc, NULL, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006025 if (rc != LY_SUCCESS) {
6026 lyxp_set_free(set_all_desc);
6027 return rc;
6028 }
6029 /* prepend the original context nodes */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006030 rc = moveto_union(set, set_all_desc);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006031 if (rc != LY_SUCCESS) {
6032 lyxp_set_free(set_all_desc);
6033 return rc;
6034 }
6035 lyxp_set_free(set_all_desc);
6036
Radek Krejci1deb5be2020-08-26 16:43:36 +02006037 for (uint32_t i = 0; i < set->used; ) {
Radek Krejci857189e2020-09-01 13:26:36 +02006038 ly_bool replaced = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006039
6040 /* only attributes of an elem can be in the result, skip all the rest,
6041 * we have all attributes qualified in lyd tree */
6042 if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
Michal Vasko9f96a052020-03-10 09:41:45 +01006043 for (sub = set->val.nodes[i].node->meta; sub; sub = sub->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006044 /* check "namespace" */
Michal Vaskod3678892020-05-21 10:06:58 +02006045 if (mod && (sub->annotation->module != mod)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006046 continue;
6047 }
6048
Michal Vaskod3678892020-05-21 10:06:58 +02006049 if (!ncname || (sub->name == ncname)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006050 /* match */
6051 if (!replaced) {
Michal Vasko9f96a052020-03-10 09:41:45 +01006052 set->val.meta[i].meta = sub;
6053 set->val.meta[i].type = LYXP_NODE_META;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006054 /* pos does not change */
6055 replaced = 1;
6056 } else {
Michal Vasko9f96a052020-03-10 09:41:45 +01006057 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 +02006058 }
6059 ++i;
6060 }
6061 }
6062 }
6063
6064 if (!replaced) {
6065 /* no match */
6066 set_remove_node(set, i);
6067 }
6068 }
6069
6070 return LY_SUCCESS;
6071}
6072
6073/**
Michal Vasko61ac2f62020-05-25 12:39:51 +02006074 * @brief Move context @p set to self and al chilren, recursively. Handles '/' or '//' and '.'. Result is LYXP_SET_NODE_SET.
6075 * Context position aware.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006076 *
6077 * @param[in] parent Current parent.
6078 * @param[in] parent_pos Position of @p parent.
6079 * @param[in] parent_type Node type of @p parent.
6080 * @param[in,out] to_set Set to use.
6081 * @param[in] dup_check_set Set for checking duplicities.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006082 * @param[in] options XPath options.
6083 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6084 */
6085static LY_ERR
6086moveto_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 +02006087 struct lyxp_set *to_set, const struct lyxp_set *dup_check_set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006088{
Michal Vasko61ac2f62020-05-25 12:39:51 +02006089 const struct lyd_node *iter, *first;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006090 LY_ERR rc;
6091
6092 switch (parent_type) {
6093 case LYXP_NODE_ROOT:
6094 case LYXP_NODE_ROOT_CONFIG:
Michal Vasko61ac2f62020-05-25 12:39:51 +02006095 assert(!parent);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006096
Michal Vasko61ac2f62020-05-25 12:39:51 +02006097 /* add all top-level nodes as elements */
6098 first = to_set->tree;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006099 break;
6100 case LYXP_NODE_ELEM:
Michal Vasko61ac2f62020-05-25 12:39:51 +02006101 /* add just the text node of this term element node */
6102 if (parent->schema->nodetype & (LYD_NODE_TERM | LYD_NODE_ANY)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006103 if (!set_dup_node_check(dup_check_set, parent, LYXP_NODE_TEXT, -1)) {
6104 set_insert_node(to_set, parent, parent_pos, LYXP_NODE_TEXT, to_set->used);
6105 }
Michal Vasko61ac2f62020-05-25 12:39:51 +02006106 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006107 }
Michal Vasko61ac2f62020-05-25 12:39:51 +02006108
6109 /* add all the children of this node */
Radek Krejcia1c1e542020-09-29 16:06:52 +02006110 first = lyd_child(parent);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006111 break;
6112 default:
6113 LOGINT_RET(parent->schema->module->ctx);
6114 }
6115
Michal Vasko61ac2f62020-05-25 12:39:51 +02006116 /* add all top-level nodes as elements */
6117 LY_LIST_FOR(first, iter) {
6118 /* context check */
6119 if ((parent_type == LYXP_NODE_ROOT_CONFIG) && (iter->schema->flags & LYS_CONFIG_R)) {
6120 continue;
6121 }
6122
6123 /* when check */
Michal Vaskod5cfa6e2020-11-23 16:56:08 +01006124 if (!(options & LYXP_IGNORE_WHEN) && lysc_has_when(iter->schema) && !(iter->flags & LYD_WHEN_TRUE)) {
Michal Vasko61ac2f62020-05-25 12:39:51 +02006125 return LY_EINCOMPLETE;
6126 }
6127
6128 if (!set_dup_node_check(dup_check_set, iter, LYXP_NODE_ELEM, -1)) {
6129 set_insert_node(to_set, iter, 0, LYXP_NODE_ELEM, to_set->used);
6130
6131 /* also add all the children of this node, recursively */
6132 rc = moveto_self_add_children_r(iter, 0, LYXP_NODE_ELEM, to_set, dup_check_set, options);
6133 LY_CHECK_RET(rc);
6134 }
6135 }
6136
Michal Vasko03ff5a72019-09-11 13:49:33 +02006137 return LY_SUCCESS;
6138}
6139
6140/**
6141 * @brief Move context @p set to self. Handles '/' or '//' and '.'. Result is LYXP_SET_NODE_SET
6142 * (or LYXP_SET_EMPTY). Context position aware.
6143 *
6144 * @param[in,out] set Set to use.
6145 * @param[in] all_desc Whether to go to all descendants ('//') or not ('/').
6146 * @param[in] options XPath options.
6147 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6148 */
6149static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02006150moveto_self(struct lyxp_set *set, ly_bool all_desc, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006151{
Michal Vasko03ff5a72019-09-11 13:49:33 +02006152 struct lyxp_set ret_set;
6153 LY_ERR rc;
6154
Michal Vaskod3678892020-05-21 10:06:58 +02006155 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006156 return LY_SUCCESS;
6157 }
6158
6159 if (set->type != LYXP_SET_NODE_SET) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006160 LOGVAL(set->ctx, LY_VLOG_LYD, set->cur_node, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006161 return LY_EVALID;
6162 }
6163
6164 /* nothing to do */
6165 if (!all_desc) {
6166 return LY_SUCCESS;
6167 }
6168
Michal Vasko03ff5a72019-09-11 13:49:33 +02006169 /* add all the children, they get added recursively */
6170 set_init(&ret_set, set);
Radek Krejci1deb5be2020-08-26 16:43:36 +02006171 for (uint32_t i = 0; i < set->used; ++i) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006172 /* copy the current node to tmp */
6173 set_insert_node(&ret_set, set->val.nodes[i].node, set->val.nodes[i].pos, set->val.nodes[i].type, ret_set.used);
6174
6175 /* do not touch attributes and text nodes */
Michal Vasko9f96a052020-03-10 09:41:45 +01006176 if ((set->val.nodes[i].type == LYXP_NODE_TEXT) || (set->val.nodes[i].type == LYXP_NODE_META)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006177 continue;
6178 }
6179
Michal Vasko03ff5a72019-09-11 13:49:33 +02006180 /* add all the children */
6181 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 +02006182 set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006183 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02006184 lyxp_set_free_content(&ret_set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006185 return rc;
6186 }
6187 }
6188
6189 /* use the temporary set as the current one */
6190 ret_set.ctx_pos = set->ctx_pos;
6191 ret_set.ctx_size = set->ctx_size;
Michal Vaskod3678892020-05-21 10:06:58 +02006192 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006193 memcpy(set, &ret_set, sizeof *set);
6194
6195 return LY_SUCCESS;
6196}
6197
6198/**
6199 * @brief Move context schema @p set to self. Handles '/' or '//' and '.'. Result is LYXP_SET_SCNODE_SET
6200 * (or LYXP_SET_EMPTY).
6201 *
6202 * @param[in,out] set Set to use.
6203 * @param[in] all_desc Whether to go to all descendants ('//') or not ('/').
6204 * @param[in] options XPath options.
6205 * @return LY_ERR
6206 */
6207static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02006208moveto_scnode_self(struct lyxp_set *set, ly_bool all_desc, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006209{
Radek Krejci1deb5be2020-08-26 16:43:36 +02006210 uint32_t getnext_opts;
6211 uint32_t mod_idx;
Michal Vasko519fd602020-05-26 12:17:39 +02006212 const struct lysc_node *iter, *start_parent;
6213 const struct lys_module *mod;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006214
Michal Vaskod3678892020-05-21 10:06:58 +02006215 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006216 return LY_SUCCESS;
6217 }
6218
6219 if (set->type != LYXP_SET_SCNODE_SET) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006220 LOGVAL(set->ctx, LY_VLOG_LYSC, set->cur_scnode, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006221 return LY_EVALID;
6222 }
6223
6224 /* nothing to do */
6225 if (!all_desc) {
6226 return LY_SUCCESS;
6227 }
6228
Michal Vasko519fd602020-05-26 12:17:39 +02006229 /* getnext opts */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01006230 getnext_opts = 0;
Michal Vasko519fd602020-05-26 12:17:39 +02006231 if (options & LYXP_SCNODE_OUTPUT) {
6232 getnext_opts |= LYS_GETNEXT_OUTPUT;
6233 }
6234
6235 /* add all the children, recursively as they are being added into the same set */
Radek Krejci1deb5be2020-08-26 16:43:36 +02006236 for (uint32_t i = 0; i < set->used; ++i) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006237 if (set->val.scnodes[i].in_ctx != 1) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01006238 if (set->val.scnodes[i].in_ctx != -2) {
6239 continue;
6240 }
6241
Michal Vasko519fd602020-05-26 12:17:39 +02006242 /* remember context node */
6243 set->val.scnodes[i].in_ctx = -1;
6244 } else {
6245 set->val.scnodes[i].in_ctx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006246 }
6247
Michal Vasko519fd602020-05-26 12:17:39 +02006248 start_parent = set->val.scnodes[i].scnode;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006249
Michal Vasko519fd602020-05-26 12:17:39 +02006250 if ((set->val.scnodes[i].type == LYXP_NODE_ROOT_CONFIG) || (set->val.scnodes[i].type == LYXP_NODE_ROOT)) {
6251 /* it can actually be in any module, it's all <running> */
6252 mod_idx = 0;
6253 while ((mod = (struct lys_module *)ly_ctx_get_module_iter(set->ctx, &mod_idx))) {
6254 iter = NULL;
6255 /* module may not be implemented */
6256 while (mod->implemented && (iter = lys_getnext(iter, NULL, mod->compiled, getnext_opts))) {
6257 /* context check */
6258 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (iter->flags & LYS_CONFIG_R)) {
6259 continue;
6260 }
6261
Radek Krejciaa6b53f2020-08-27 15:19:03 +02006262 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, iter, LYXP_NODE_ELEM, NULL));
Michal Vasko519fd602020-05-26 12:17:39 +02006263 /* throw away the insert index, we want to consider that node again, recursively */
6264 }
6265 }
6266
6267 } else if (set->val.scnodes[i].type == LYXP_NODE_ELEM) {
6268 iter = NULL;
6269 while ((iter = lys_getnext(iter, start_parent, NULL, getnext_opts))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006270 /* context check */
Michal Vasko519fd602020-05-26 12:17:39 +02006271 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (iter->flags & LYS_CONFIG_R)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006272 continue;
6273 }
6274
Radek Krejciaa6b53f2020-08-27 15:19:03 +02006275 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, iter, LYXP_NODE_ELEM, NULL));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006276 }
6277 }
6278 }
6279
6280 return LY_SUCCESS;
6281}
6282
6283/**
6284 * @brief Move context @p set to parent. Handles '/' or '//' and '..'. Result is LYXP_SET_NODE_SET
6285 * (or LYXP_SET_EMPTY). Context position aware.
6286 *
6287 * @param[in] set Set to use.
6288 * @param[in] all_desc Whether to go to all descendants ('//') or not ('/').
6289 * @param[in] options XPath options.
6290 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6291 */
6292static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02006293moveto_parent(struct lyxp_set *set, ly_bool all_desc, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006294{
6295 LY_ERR rc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006296 struct lyd_node *node, *new_node;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006297 enum lyxp_node_type new_type;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006298
Michal Vaskod3678892020-05-21 10:06:58 +02006299 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006300 return LY_SUCCESS;
6301 }
6302
6303 if (set->type != LYXP_SET_NODE_SET) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006304 LOGVAL(set->ctx, LY_VLOG_LYD, set->cur_node, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006305 return LY_EVALID;
6306 }
6307
6308 if (all_desc) {
6309 /* <path>//.. == <path>//./.. */
6310 rc = moveto_self(set, 1, options);
6311 LY_CHECK_RET(rc);
6312 }
6313
Radek Krejci1deb5be2020-08-26 16:43:36 +02006314 for (uint32_t i = 0; i < set->used; ++i) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006315 node = set->val.nodes[i].node;
6316
6317 if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
6318 new_node = (struct lyd_node *)node->parent;
6319 } else if (set->val.nodes[i].type == LYXP_NODE_TEXT) {
6320 new_node = node;
Michal Vasko9f96a052020-03-10 09:41:45 +01006321 } else if (set->val.nodes[i].type == LYXP_NODE_META) {
6322 new_node = set->val.meta[i].meta->parent;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006323 if (!new_node) {
6324 LOGINT_RET(set->ctx);
6325 }
6326 } else {
6327 /* root does not have a parent */
Michal Vasko2caefc12019-11-14 16:07:56 +01006328 set_remove_node_none(set, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006329 continue;
6330 }
6331
Michal Vaskoa1424542019-11-14 16:08:52 +01006332 /* when check */
Michal Vaskod5cfa6e2020-11-23 16:56:08 +01006333 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 +02006334 return LY_EINCOMPLETE;
Michal Vaskoa1424542019-11-14 16:08:52 +01006335 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02006336
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006337 if (!new_node) {
Radek Krejcif6a11002020-08-21 13:29:07 +02006338 /* node already there can also be the root */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006339 new_type = set->root_type;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006340
Michal Vasko03ff5a72019-09-11 13:49:33 +02006341 } else {
Radek Krejcif6a11002020-08-21 13:29:07 +02006342 /* 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 +02006343 new_type = LYXP_NODE_ELEM;
6344 }
6345
Michal Vasko03ff5a72019-09-11 13:49:33 +02006346 if (set_dup_node_check(set, new_node, new_type, -1)) {
Michal Vasko2caefc12019-11-14 16:07:56 +01006347 set_remove_node_none(set, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006348 } else {
6349 set_replace_node(set, new_node, 0, new_type, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006350 }
6351 }
6352
Michal Vasko2caefc12019-11-14 16:07:56 +01006353 set_remove_nodes_none(set);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006354 assert(!set_sort(set) && !set_sorted_dup_node_clean(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006355
6356 return LY_SUCCESS;
6357}
6358
6359/**
6360 * @brief Move context schema @p set to parent. Handles '/' or '//' and '..'. Result is LYXP_SET_SCNODE_SET
6361 * (or LYXP_SET_EMPTY).
6362 *
6363 * @param[in] set Set to use.
6364 * @param[in] all_desc Whether to go to all descendants ('//') or not ('/').
6365 * @param[in] options XPath options.
6366 * @return LY_ERR
6367 */
6368static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02006369moveto_scnode_parent(struct lyxp_set *set, ly_bool all_desc, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006370{
Radek Krejciaa6b53f2020-08-27 15:19:03 +02006371 uint32_t i, orig_used, idx;
Radek Krejci857189e2020-09-01 13:26:36 +02006372 ly_bool temp_ctx = 0;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006373 const struct lysc_node *node, *new_node;
6374 enum lyxp_node_type new_type;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006375
Michal Vaskod3678892020-05-21 10:06:58 +02006376 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006377 return LY_SUCCESS;
6378 }
6379
6380 if (set->type != LYXP_SET_SCNODE_SET) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006381 LOGVAL(set->ctx, LY_VLOG_LYSC, set->cur_scnode, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006382 return LY_EVALID;
6383 }
6384
6385 if (all_desc) {
6386 /* <path>//.. == <path>//./.. */
Radek Krejci1deb5be2020-08-26 16:43:36 +02006387 LY_CHECK_RET(moveto_scnode_self(set, 1, options));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006388 }
6389
Michal Vasko03ff5a72019-09-11 13:49:33 +02006390 orig_used = set->used;
6391 for (i = 0; i < orig_used; ++i) {
6392 if (set->val.scnodes[i].in_ctx != 1) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01006393 if (set->val.scnodes[i].in_ctx != -2) {
6394 continue;
6395 }
6396
6397 /* remember context node */
6398 set->val.scnodes[i].in_ctx = -1;
Michal Vaskoec4df482019-12-16 10:02:18 +01006399 } else {
6400 set->val.scnodes[i].in_ctx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006401 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02006402
6403 node = set->val.scnodes[i].scnode;
6404
6405 if (set->val.scnodes[i].type == LYXP_NODE_ELEM) {
Michal Vaskod3678892020-05-21 10:06:58 +02006406 new_node = lysc_data_parent(node);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006407 } else {
6408 /* root does not have a parent */
6409 continue;
6410 }
6411
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006412 if (!new_node) {
Radek Krejcif6a11002020-08-21 13:29:07 +02006413 /* node has no parent */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006414 new_type = set->root_type;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006415
Michal Vasko03ff5a72019-09-11 13:49:33 +02006416 } else {
Radek Krejcif6a11002020-08-21 13:29:07 +02006417 /* 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 +02006418 new_type = LYXP_NODE_ELEM;
6419 }
6420
Radek Krejciaa6b53f2020-08-27 15:19:03 +02006421 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, new_node, new_type, &idx));
6422 if ((idx < orig_used) && (idx > i)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006423 set->val.scnodes[idx].in_ctx = 2;
6424 temp_ctx = 1;
6425 }
6426 }
6427
6428 if (temp_ctx) {
6429 for (i = 0; i < orig_used; ++i) {
6430 if (set->val.scnodes[i].in_ctx == 2) {
6431 set->val.scnodes[i].in_ctx = 1;
6432 }
6433 }
6434 }
6435
6436 return LY_SUCCESS;
6437}
6438
6439/**
6440 * @brief Move context @p set to the result of a comparison. Handles '=', '!=', '<=', '<', '>=', or '>'.
6441 * Result is LYXP_SET_BOOLEAN. Indirectly context position aware.
6442 *
6443 * @param[in,out] set1 Set to use for the result.
6444 * @param[in] set2 Set acting as the second operand for @p op.
6445 * @param[in] op Comparison operator to process.
6446 * @param[in] options XPath options.
6447 * @return LY_ERR
6448 */
6449static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02006450moveto_op_comp(struct lyxp_set *set1, struct lyxp_set *set2, const char *op, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006451{
6452 /*
6453 * NODE SET + NODE SET = NODE SET + STRING /(1 NODE SET) 2 STRING
6454 * NODE SET + STRING = STRING + STRING /1 STRING (2 STRING)
6455 * NODE SET + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
6456 * NODE SET + BOOLEAN = BOOLEAN + BOOLEAN /1 BOOLEAN (2 BOOLEAN)
6457 * STRING + NODE SET = STRING + STRING /(1 STRING) 2 STRING
6458 * NUMBER + NODE SET = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
6459 * BOOLEAN + NODE SET = BOOLEAN + BOOLEAN /(1 BOOLEAN) 2 BOOLEAN
6460 *
6461 * '=' or '!='
6462 * BOOLEAN + BOOLEAN
6463 * BOOLEAN + STRING = BOOLEAN + BOOLEAN /(1 BOOLEAN) 2 BOOLEAN
6464 * BOOLEAN + NUMBER = BOOLEAN + BOOLEAN /(1 BOOLEAN) 2 BOOLEAN
6465 * STRING + BOOLEAN = BOOLEAN + BOOLEAN /1 BOOLEAN (2 BOOLEAN)
6466 * NUMBER + BOOLEAN = BOOLEAN + BOOLEAN /1 BOOLEAN (2 BOOLEAN)
6467 * NUMBER + NUMBER
6468 * NUMBER + STRING = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
6469 * STRING + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
6470 * STRING + STRING
6471 *
6472 * '<=', '<', '>=', '>'
6473 * NUMBER + NUMBER
6474 * BOOLEAN + BOOLEAN = NUMBER + NUMBER /1 NUMBER, 2 NUMBER
6475 * BOOLEAN + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
6476 * BOOLEAN + STRING = NUMBER + NUMBER /1 NUMBER, 2 NUMBER
6477 * NUMBER + STRING = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
6478 * STRING + STRING = NUMBER + NUMBER /1 NUMBER, 2 NUMBER
6479 * STRING + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
6480 * NUMBER + BOOLEAN = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
6481 * STRING + BOOLEAN = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
6482 */
6483 struct lyxp_set iter1, iter2;
6484 int result;
6485 int64_t i;
6486 LY_ERR rc;
6487
Michal Vasko004d3152020-06-11 19:59:22 +02006488 memset(&iter1, 0, sizeof iter1);
6489 memset(&iter2, 0, sizeof iter2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006490
6491 /* iterative evaluation with node-sets */
6492 if ((set1->type == LYXP_SET_NODE_SET) || (set2->type == LYXP_SET_NODE_SET)) {
6493 if (set1->type == LYXP_SET_NODE_SET) {
6494 for (i = 0; i < set1->used; ++i) {
Michal Vasko4c7763f2020-07-27 17:40:37 +02006495 /* cast set1 */
Michal Vasko03ff5a72019-09-11 13:49:33 +02006496 switch (set2->type) {
6497 case LYXP_SET_NUMBER:
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006498 rc = set_comp_cast(&iter1, set1, LYXP_SET_NUMBER, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006499 break;
6500 case LYXP_SET_BOOLEAN:
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006501 rc = set_comp_cast(&iter1, set1, LYXP_SET_BOOLEAN, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006502 break;
6503 default:
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006504 rc = set_comp_cast(&iter1, set1, LYXP_SET_STRING, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006505 break;
6506 }
6507 LY_CHECK_RET(rc);
6508
Michal Vasko4c7763f2020-07-27 17:40:37 +02006509 /* canonize set2 */
6510 LY_CHECK_ERR_RET(rc = set_comp_canonize(&iter2, set2, &set1->val.nodes[i]), lyxp_set_free_content(&iter1), rc);
6511
6512 /* compare recursively */
6513 rc = moveto_op_comp(&iter1, &iter2, op, options);
6514 lyxp_set_free_content(&iter2);
6515 LY_CHECK_ERR_RET(rc, lyxp_set_free_content(&iter1), rc);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006516
6517 /* lazy evaluation until true */
Michal Vasko004d3152020-06-11 19:59:22 +02006518 if (iter1.val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006519 set_fill_boolean(set1, 1);
6520 return LY_SUCCESS;
6521 }
6522 }
6523 } else {
6524 for (i = 0; i < set2->used; ++i) {
Michal Vasko4c7763f2020-07-27 17:40:37 +02006525 /* set set2 */
Michal Vasko03ff5a72019-09-11 13:49:33 +02006526 switch (set1->type) {
Michal Vasko4c7763f2020-07-27 17:40:37 +02006527 case LYXP_SET_NUMBER:
6528 rc = set_comp_cast(&iter2, set2, LYXP_SET_NUMBER, i);
6529 break;
6530 case LYXP_SET_BOOLEAN:
6531 rc = set_comp_cast(&iter2, set2, LYXP_SET_BOOLEAN, i);
6532 break;
6533 default:
6534 rc = set_comp_cast(&iter2, set2, LYXP_SET_STRING, i);
6535 break;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006536 }
6537 LY_CHECK_RET(rc);
6538
Michal Vasko4c7763f2020-07-27 17:40:37 +02006539 /* canonize set1 */
6540 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 +02006541
Michal Vasko4c7763f2020-07-27 17:40:37 +02006542 /* compare recursively */
Michal Vasko03ff5a72019-09-11 13:49:33 +02006543 rc = moveto_op_comp(&iter1, &iter2, op, options);
Michal Vaskod3678892020-05-21 10:06:58 +02006544 lyxp_set_free_content(&iter2);
Michal Vasko4c7763f2020-07-27 17:40:37 +02006545 LY_CHECK_ERR_RET(rc, lyxp_set_free_content(&iter1), rc);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006546
6547 /* lazy evaluation until true */
Michal Vasko004d3152020-06-11 19:59:22 +02006548 if (iter1.val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006549 set_fill_boolean(set1, 1);
6550 return LY_SUCCESS;
6551 }
6552 }
6553 }
6554
6555 /* false for all nodes */
6556 set_fill_boolean(set1, 0);
6557 return LY_SUCCESS;
6558 }
6559
6560 /* first convert properly */
6561 if ((op[0] == '=') || (op[0] == '!')) {
6562 if ((set1->type == LYXP_SET_BOOLEAN) || (set2->type == LYXP_SET_BOOLEAN)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006563 lyxp_set_cast(set1, LYXP_SET_BOOLEAN);
6564 lyxp_set_cast(set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006565 } else if ((set1->type == LYXP_SET_NUMBER) || (set2->type == LYXP_SET_NUMBER)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006566 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006567 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006568 rc = lyxp_set_cast(set2, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006569 LY_CHECK_RET(rc);
6570 } /* else we have 2 strings */
6571 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006572 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006573 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006574 rc = lyxp_set_cast(set2, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006575 LY_CHECK_RET(rc);
6576 }
6577
6578 assert(set1->type == set2->type);
6579
6580 /* compute result */
6581 if (op[0] == '=') {
6582 if (set1->type == LYXP_SET_BOOLEAN) {
Michal Vasko004d3152020-06-11 19:59:22 +02006583 result = (set1->val.bln == set2->val.bln);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006584 } else if (set1->type == LYXP_SET_NUMBER) {
6585 result = (set1->val.num == set2->val.num);
6586 } else {
6587 assert(set1->type == LYXP_SET_STRING);
Michal Vaskoac6c72f2019-11-14 16:09:34 +01006588 result = !strcmp(set1->val.str, set2->val.str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006589 }
6590 } else if (op[0] == '!') {
6591 if (set1->type == LYXP_SET_BOOLEAN) {
Michal Vasko004d3152020-06-11 19:59:22 +02006592 result = (set1->val.bln != set2->val.bln);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006593 } else if (set1->type == LYXP_SET_NUMBER) {
6594 result = (set1->val.num != set2->val.num);
6595 } else {
6596 assert(set1->type == LYXP_SET_STRING);
Michal Vaskoc2058432020-11-06 17:26:21 +01006597 result = strcmp(set1->val.str, set2->val.str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006598 }
6599 } else {
6600 assert(set1->type == LYXP_SET_NUMBER);
6601 if (op[0] == '<') {
6602 if (op[1] == '=') {
6603 result = (set1->val.num <= set2->val.num);
6604 } else {
6605 result = (set1->val.num < set2->val.num);
6606 }
6607 } else {
6608 if (op[1] == '=') {
6609 result = (set1->val.num >= set2->val.num);
6610 } else {
6611 result = (set1->val.num > set2->val.num);
6612 }
6613 }
6614 }
6615
6616 /* assign result */
6617 if (result) {
6618 set_fill_boolean(set1, 1);
6619 } else {
6620 set_fill_boolean(set1, 0);
6621 }
6622
6623 return LY_SUCCESS;
6624}
6625
6626/**
6627 * @brief Move context @p set to the result of a basic operation. Handles '+', '-', unary '-', '*', 'div',
6628 * or 'mod'. Result is LYXP_SET_NUMBER. Indirectly context position aware.
6629 *
6630 * @param[in,out] set1 Set to use for the result.
6631 * @param[in] set2 Set acting as the second operand for @p op.
6632 * @param[in] op Operator to process.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006633 * @return LY_ERR
6634 */
6635static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006636moveto_op_math(struct lyxp_set *set1, struct lyxp_set *set2, const char *op)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006637{
6638 LY_ERR rc;
6639
6640 /* unary '-' */
6641 if (!set2 && (op[0] == '-')) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006642 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006643 LY_CHECK_RET(rc);
6644 set1->val.num *= -1;
6645 lyxp_set_free(set2);
6646 return LY_SUCCESS;
6647 }
6648
6649 assert(set1 && set2);
6650
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006651 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006652 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006653 rc = lyxp_set_cast(set2, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006654 LY_CHECK_RET(rc);
6655
6656 switch (op[0]) {
6657 /* '+' */
6658 case '+':
6659 set1->val.num += set2->val.num;
6660 break;
6661
6662 /* '-' */
6663 case '-':
6664 set1->val.num -= set2->val.num;
6665 break;
6666
6667 /* '*' */
6668 case '*':
6669 set1->val.num *= set2->val.num;
6670 break;
6671
6672 /* 'div' */
6673 case 'd':
6674 set1->val.num /= set2->val.num;
6675 break;
6676
6677 /* 'mod' */
6678 case 'm':
6679 set1->val.num = ((long long)set1->val.num) % ((long long)set2->val.num);
6680 break;
6681
6682 default:
6683 LOGINT_RET(set1->ctx);
6684 }
6685
6686 return LY_SUCCESS;
6687}
6688
6689/*
6690 * eval functions
6691 *
6692 * They execute a parsed XPath expression on some data subtree.
6693 */
6694
6695/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02006696 * @brief Evaluate Predicate. Logs directly on error.
6697 *
Michal Vaskod3678892020-05-21 10:06:58 +02006698 * [9] Predicate ::= '[' Expr ']'
Michal Vasko03ff5a72019-09-11 13:49:33 +02006699 *
6700 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02006701 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006702 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
6703 * @param[in] options XPath options.
6704 * @param[in] parent_pos_pred Whether parent predicate was a positional one.
6705 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6706 */
6707static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02006708eval_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 +02006709{
6710 LY_ERR rc;
Michal Vasko57eab132019-09-24 11:46:26 +02006711 uint16_t i, orig_exp;
Michal Vasko5c4e5892019-11-14 12:31:38 +01006712 uint32_t orig_pos, orig_size;
6713 int32_t pred_in_ctx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006714 struct lyxp_set set2;
6715 struct lyd_node *orig_parent;
6716
6717 /* '[' */
6718 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02006719 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02006720 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006721
6722 if (!set) {
6723only_parse:
Michal Vasko004d3152020-06-11 19:59:22 +02006724 rc = eval_expr_select(exp, tok_idx, 0, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006725 LY_CHECK_RET(rc);
6726 } else if (set->type == LYXP_SET_NODE_SET) {
6727 /* 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 +01006728 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006729
6730 /* empty set, nothing to evaluate */
6731 if (!set->used) {
6732 goto only_parse;
6733 }
6734
Michal Vasko004d3152020-06-11 19:59:22 +02006735 orig_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006736 orig_pos = 0;
6737 orig_size = set->used;
6738 orig_parent = NULL;
Michal Vasko39dbf352020-05-21 10:08:59 +02006739 for (i = 0; i < set->used; ++i) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006740 set_init(&set2, set);
6741 set_insert_node(&set2, set->val.nodes[i].node, set->val.nodes[i].pos, set->val.nodes[i].type, 0);
6742 /* remember the node context position for position() and context size for last(),
6743 * predicates should always be evaluated with respect to the child axis (since we do
6744 * not support explicit axes) so we assign positions based on their parents */
6745 if (parent_pos_pred && ((struct lyd_node *)set->val.nodes[i].node->parent != orig_parent)) {
6746 orig_parent = (struct lyd_node *)set->val.nodes[i].node->parent;
6747 orig_pos = 1;
6748 } else {
6749 ++orig_pos;
6750 }
6751
6752 set2.ctx_pos = orig_pos;
6753 set2.ctx_size = orig_size;
Michal Vasko004d3152020-06-11 19:59:22 +02006754 *tok_idx = orig_exp;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006755
Michal Vasko004d3152020-06-11 19:59:22 +02006756 rc = eval_expr_select(exp, tok_idx, 0, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006757 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02006758 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006759 return rc;
6760 }
6761
6762 /* number is a position */
6763 if (set2.type == LYXP_SET_NUMBER) {
6764 if ((long long)set2.val.num == orig_pos) {
6765 set2.val.num = 1;
6766 } else {
6767 set2.val.num = 0;
6768 }
6769 }
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006770 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006771
6772 /* predicate satisfied or not? */
Michal Vasko004d3152020-06-11 19:59:22 +02006773 if (!set2.val.bln) {
Michal Vasko2caefc12019-11-14 16:07:56 +01006774 set_remove_node_none(set, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006775 }
6776 }
Michal Vasko2caefc12019-11-14 16:07:56 +01006777 set_remove_nodes_none(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006778
6779 } else if (set->type == LYXP_SET_SCNODE_SET) {
6780 for (i = 0; i < set->used; ++i) {
6781 if (set->val.scnodes[i].in_ctx == 1) {
6782 /* there is a currently-valid node */
6783 break;
6784 }
6785 }
6786 /* empty set, nothing to evaluate */
6787 if (i == set->used) {
6788 goto only_parse;
6789 }
6790
Michal Vasko004d3152020-06-11 19:59:22 +02006791 orig_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006792
Michal Vasko03ff5a72019-09-11 13:49:33 +02006793 /* set special in_ctx to all the valid snodes */
6794 pred_in_ctx = set_scnode_new_in_ctx(set);
6795
6796 /* use the valid snodes one-by-one */
6797 for (i = 0; i < set->used; ++i) {
6798 if (set->val.scnodes[i].in_ctx != pred_in_ctx) {
6799 continue;
6800 }
6801 set->val.scnodes[i].in_ctx = 1;
6802
Michal Vasko004d3152020-06-11 19:59:22 +02006803 *tok_idx = orig_exp;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006804
Michal Vasko004d3152020-06-11 19:59:22 +02006805 rc = eval_expr_select(exp, tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006806 LY_CHECK_RET(rc);
6807
6808 set->val.scnodes[i].in_ctx = pred_in_ctx;
6809 }
6810
6811 /* restore the state as it was before the predicate */
6812 for (i = 0; i < set->used; ++i) {
6813 if (set->val.scnodes[i].in_ctx == 1) {
6814 set->val.scnodes[i].in_ctx = 0;
6815 } else if (set->val.scnodes[i].in_ctx == pred_in_ctx) {
6816 set->val.scnodes[i].in_ctx = 1;
6817 }
6818 }
6819
6820 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02006821 set2.type = LYXP_SET_NODE_SET;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006822 set_fill_set(&set2, set);
6823
Michal Vasko004d3152020-06-11 19:59:22 +02006824 rc = eval_expr_select(exp, tok_idx, 0, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006825 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02006826 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006827 return rc;
6828 }
6829
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006830 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko004d3152020-06-11 19:59:22 +02006831 if (!set2.val.bln) {
Michal Vaskod3678892020-05-21 10:06:58 +02006832 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006833 }
Michal Vaskod3678892020-05-21 10:06:58 +02006834 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006835 }
6836
6837 /* ']' */
Michal Vasko004d3152020-06-11 19:59:22 +02006838 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_BRACK2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006839 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02006840 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02006841 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006842
6843 return LY_SUCCESS;
6844}
6845
6846/**
Michal Vaskod3678892020-05-21 10:06:58 +02006847 * @brief Evaluate Literal. Logs directly on error.
6848 *
6849 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02006850 * @param[in] tok_idx Position in the expression @p exp.
Michal Vaskod3678892020-05-21 10:06:58 +02006851 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
6852 */
6853static void
Michal Vasko40308e72020-10-20 16:38:40 +02006854eval_literal(const struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set)
Michal Vaskod3678892020-05-21 10:06:58 +02006855{
6856 if (set) {
Michal Vasko004d3152020-06-11 19:59:22 +02006857 if (exp->tok_len[*tok_idx] == 2) {
Michal Vaskod3678892020-05-21 10:06:58 +02006858 set_fill_string(set, "", 0);
6859 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02006860 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 +02006861 }
6862 }
6863 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02006864 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02006865 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02006866}
6867
6868/**
Michal Vasko004d3152020-06-11 19:59:22 +02006869 * @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 +02006870 *
Michal Vasko004d3152020-06-11 19:59:22 +02006871 * @param[in] exp Full parsed XPath expression.
6872 * @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 +02006873 * @param[in] ctx_node Found schema node as the context for the predicate.
6874 * @param[in] cur_mod Current module for the expression.
6875 * @param[in] cur_node Current (original context) node.
Michal Vasko004d3152020-06-11 19:59:22 +02006876 * @param[in] format Format of any prefixes in key names/values.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006877 * @param[in] prefix_data Format-specific prefix data (see ::ly_resolve_prefix).
Michal Vasko004d3152020-06-11 19:59:22 +02006878 * @param[out] predicates Parsed predicates.
6879 * @param[out] pred_type Type of @p predicates.
6880 * @return LY_SUCCESS on success,
6881 * @return LY_ERR on any error.
Michal Vaskod3678892020-05-21 10:06:58 +02006882 */
6883static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02006884eval_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 +02006885 const struct lys_module *cur_mod, const struct lysc_node *cur_node, LY_PREFIX_FORMAT format, void *prefix_data,
6886 struct ly_path_predicate **predicates, enum ly_path_pred_type *pred_type)
Michal Vaskod3678892020-05-21 10:06:58 +02006887{
Michal Vasko004d3152020-06-11 19:59:22 +02006888 LY_ERR ret = LY_SUCCESS;
6889 uint16_t key_count, e_idx, pred_idx = 0;
Michal Vaskod3678892020-05-21 10:06:58 +02006890 const struct lysc_node *key;
Michal Vasko004d3152020-06-11 19:59:22 +02006891 size_t pred_len;
Radek Krejci1deb5be2020-08-26 16:43:36 +02006892 uint32_t prev_lo;
Michal Vasko004d3152020-06-11 19:59:22 +02006893 struct lyxp_expr *exp2 = NULL;
Michal Vaskod3678892020-05-21 10:06:58 +02006894
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006895 assert(ctx_node->nodetype & (LYS_LIST | LYS_LEAFLIST));
Michal Vaskod3678892020-05-21 10:06:58 +02006896
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006897 if (ctx_node->nodetype == LYS_LIST) {
Michal Vasko004d3152020-06-11 19:59:22 +02006898 /* get key count */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006899 if (ctx_node->flags & LYS_KEYLESS) {
Michal Vasko004d3152020-06-11 19:59:22 +02006900 return LY_EINVAL;
6901 }
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006902 for (key_count = 0, key = lysc_node_children(ctx_node, 0); key && (key->flags & LYS_KEY); key = key->next, ++key_count) {}
Michal Vasko004d3152020-06-11 19:59:22 +02006903 assert(key_count);
Michal Vaskod3678892020-05-21 10:06:58 +02006904
Michal Vasko004d3152020-06-11 19:59:22 +02006905 /* learn where the predicates end */
6906 e_idx = *tok_idx;
6907 while (key_count) {
6908 /* '[' */
6909 if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK1)) {
6910 return LY_EINVAL;
6911 }
6912 ++e_idx;
6913
6914 /* ']' */
6915 while (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK2)) {
6916 ++e_idx;
6917 }
6918 ++e_idx;
6919
6920 /* another presumably key predicate parsed */
6921 --key_count;
6922 }
Michal Vasko004d3152020-06-11 19:59:22 +02006923 } else {
6924 /* learn just where this single predicate ends */
6925 e_idx = *tok_idx;
6926
Michal Vaskod3678892020-05-21 10:06:58 +02006927 /* '[' */
Michal Vasko004d3152020-06-11 19:59:22 +02006928 if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK1)) {
6929 return LY_EINVAL;
6930 }
6931 ++e_idx;
Michal Vaskod3678892020-05-21 10:06:58 +02006932
6933 /* ']' */
Michal Vasko004d3152020-06-11 19:59:22 +02006934 while (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK2)) {
6935 ++e_idx;
6936 }
6937 ++e_idx;
Michal Vaskod3678892020-05-21 10:06:58 +02006938 }
6939
Michal Vasko004d3152020-06-11 19:59:22 +02006940 /* get the joined length of all the keys predicates/of the single leaf-list predicate */
6941 pred_len = (exp->tok_pos[e_idx - 1] + exp->tok_len[e_idx - 1]) - exp->tok_pos[*tok_idx];
6942
6943 /* turn logging off */
6944 prev_lo = ly_log_options(0);
6945
6946 /* parse the predicate(s) */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006947 LY_CHECK_GOTO(ret = ly_path_parse_predicate(ctx_node->module->ctx, ctx_node, exp->expr + exp->tok_pos[*tok_idx],
6948 pred_len, LY_PATH_PREFIX_OPTIONAL, LY_PATH_PRED_SIMPLE, &exp2), cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02006949
6950 /* compile */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006951 ret = ly_path_compile_predicate(ctx_node->module->ctx, cur_node, cur_mod, ctx_node, exp2, &pred_idx, format,
6952 prefix_data, predicates, pred_type);
Michal Vasko004d3152020-06-11 19:59:22 +02006953 LY_CHECK_GOTO(ret, cleanup);
6954
6955 /* success, the predicate must include all the needed information for hash-based search */
6956 *tok_idx = e_idx;
6957
6958cleanup:
6959 ly_log_options(prev_lo);
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006960 lyxp_expr_free(ctx_node->module->ctx, exp2);
Michal Vasko004d3152020-06-11 19:59:22 +02006961 return ret;
Michal Vaskod3678892020-05-21 10:06:58 +02006962}
6963
6964/**
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006965 * @brief Search for/check the next schema node that could be the only matching schema node meaning the
6966 * data node(s) could be found using a single hash-based search.
6967 *
6968 * @param[in] node Next context node to check.
6969 * @param[in] name Expected node name.
6970 * @param[in] name_len Length of @p name.
6971 * @param[in] moveto_mod Expected node module.
6972 * @param[in] root_type XPath root type.
6973 * @param[in] no_prefix Whether the node name was unprefixed.
6974 * @param[in] format Prefix format.
6975 * @param[in,out] found Previously found node, is updated.
6976 * @return LY_SUCCESS on success,
6977 * @return LY_ENOT if the whole check failed and hashes cannot be used.
6978 */
6979static LY_ERR
6980eval_name_test_with_predicate_get_scnode(const struct lyd_node *node, const char *name, uint16_t name_len,
6981 const struct lys_module *moveto_mod, enum lyxp_node_type root_type, ly_bool no_prefix, LY_PREFIX_FORMAT format,
6982 const struct lysc_node **found)
6983{
6984 const struct lysc_node *scnode;
6985 const struct lys_module *mod;
6986 uint32_t idx = 0;
6987
6988continue_search:
Michal Vasko7d1d0912020-10-16 08:38:30 +02006989 scnode = NULL;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006990 if (!node) {
6991 if (no_prefix && (format == LY_PREF_JSON)) {
6992 /* search all modules for a single match */
6993 while ((mod = ly_ctx_get_module_iter(moveto_mod->ctx, &idx))) {
6994 scnode = lys_find_child(NULL, mod, name, name_len, 0, 0);
6995 if (scnode) {
6996 /* we have found a match */
6997 break;
6998 }
6999 }
7000
Michal Vasko7d1d0912020-10-16 08:38:30 +02007001 if (!scnode) {
7002 /* all modules searched */
7003 idx = 0;
7004 }
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007005 } else {
7006 /* search in top-level */
7007 scnode = lys_find_child(NULL, moveto_mod, name, name_len, 0, 0);
7008 }
7009 } else if (!*found || (lysc_data_parent(*found) != node->schema)) {
7010 if (no_prefix && (format == LY_PREF_JSON)) {
7011 /* we must adjust the module to inherit the one from the context node */
7012 moveto_mod = node->schema->module;
7013 }
7014
7015 /* search in children, do not repeat the same search */
7016 scnode = lys_find_child(node->schema, moveto_mod, name, name_len, 0, 0);
Michal Vasko7d1d0912020-10-16 08:38:30 +02007017 } /* else skip redundant search */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007018
7019 /* additional context check */
7020 if (scnode && (root_type == LYXP_NODE_ROOT_CONFIG) && (scnode->flags & LYS_CONFIG_R)) {
7021 scnode = NULL;
7022 }
7023
7024 if (scnode) {
7025 if (*found) {
7026 /* we found a schema node with the same name but at different level, give up, too complicated
7027 * (more hash-based searches would be required, not supported) */
7028 return LY_ENOT;
7029 } else {
7030 /* remember the found schema node and continue to make sure it can be used */
7031 *found = scnode;
7032 }
7033 }
7034
7035 if (idx) {
7036 /* continue searching all the following models */
7037 goto continue_search;
7038 }
7039
7040 return LY_SUCCESS;
7041}
7042
7043/**
Michal Vaskod3678892020-05-21 10:06:58 +02007044 * @brief Evaluate NameTest and any following Predicates. Logs directly on error.
7045 *
7046 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
7047 * [6] NodeTest ::= NameTest | NodeType '(' ')'
7048 * [7] NameTest ::= '*' | NCName ':' '*' | QName
7049 *
7050 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007051 * @param[in] tok_idx Position in the expression @p exp.
Michal Vaskod3678892020-05-21 10:06:58 +02007052 * @param[in] attr_axis Whether to search attributes or standard nodes.
7053 * @param[in] all_desc Whether to search all the descendants or children only.
7054 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7055 * @param[in] options XPath options.
7056 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7057 */
7058static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02007059eval_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 +02007060 struct lyxp_set *set, uint32_t options)
Michal Vaskod3678892020-05-21 10:06:58 +02007061{
Michal Vaskod3678892020-05-21 10:06:58 +02007062 char *path;
Michal Vasko004d3152020-06-11 19:59:22 +02007063 const char *ncname, *ncname_dict = NULL;
7064 uint16_t ncname_len;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007065 const struct lys_module *moveto_mod = NULL;
7066 const struct lysc_node *scnode = NULL, *ctx_scnode;
Michal Vasko004d3152020-06-11 19:59:22 +02007067 struct ly_path_predicate *predicates = NULL;
7068 enum ly_path_pred_type pred_type = 0;
Michal Vaskod3678892020-05-21 10:06:58 +02007069 LY_ERR rc = LY_SUCCESS;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007070 ly_bool no_prefix;
Michal Vaskod3678892020-05-21 10:06:58 +02007071
7072 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007073 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007074 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007075
7076 if (!set) {
7077 goto moveto;
7078 }
7079
Michal Vasko004d3152020-06-11 19:59:22 +02007080 ncname = &exp->expr[exp->tok_pos[*tok_idx - 1]];
7081 ncname_len = exp->tok_len[*tok_idx - 1];
Michal Vaskod3678892020-05-21 10:06:58 +02007082
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007083 /* get the first schema context node */
7084 if (set->used) {
7085 if (set->type == LYXP_SET_NODE_SET) {
7086 ctx_scnode = set->val.nodes[0].node ? set->val.nodes[0].node->schema : NULL;
7087 } else {
7088 ctx_scnode = set->val.scnodes[0].scnode;
7089 }
7090 } else {
7091 ctx_scnode = NULL;
7092 }
7093
7094 /* parse (and skip) module name, use any context node (if available) just so we get some moveto_mod if there
7095 * is no prefix for ::LY_PREF_JSON */
7096 rc = moveto_resolve_model(&ncname, &ncname_len, set, ctx_scnode, &moveto_mod);
Michal Vaskod3678892020-05-21 10:06:58 +02007097 LY_CHECK_GOTO(rc, cleanup);
7098
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007099 if (ncname_len == exp->tok_len[*tok_idx - 1]) {
7100 /* remember that there is no prefix */
7101 no_prefix = 1;
7102 } else {
7103 no_prefix = 0;
7104 }
7105
Michal Vaskod3678892020-05-21 10:06:58 +02007106 if (moveto_mod && !attr_axis && !all_desc && (set->type == LYXP_SET_NODE_SET)) {
7107 /* find the matching schema node in some parent in the context */
Radek Krejci1deb5be2020-08-26 16:43:36 +02007108 for (uint32_t i = 0; i < set->used; ++i) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007109 if (eval_name_test_with_predicate_get_scnode(set->val.nodes[i].node, ncname, ncname_len, moveto_mod,
7110 set->root_type, no_prefix, set->format, &scnode)) {
7111 /* check failed */
7112 scnode = NULL;
7113 break;
Michal Vaskod3678892020-05-21 10:06:58 +02007114 }
7115 }
7116
Michal Vasko004d3152020-06-11 19:59:22 +02007117 if (scnode && (scnode->nodetype & (LYS_LIST | LYS_LEAFLIST))) {
7118 /* try to create the predicates */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007119 if (eval_name_test_try_compile_predicates(exp, tok_idx, scnode, set->cur_mod, set->cur_node ?
7120 set->cur_node->schema : NULL, set->format, set->prefix_data, &predicates, &pred_type)) {
Michal Vasko004d3152020-06-11 19:59:22 +02007121 /* hashes cannot be used */
Michal Vaskod3678892020-05-21 10:06:58 +02007122 scnode = NULL;
7123 }
7124 }
7125 }
7126
Michal Vasko004d3152020-06-11 19:59:22 +02007127 if (!scnode && moveto_mod) {
7128 /* we are not able to match based on a schema node and not all the modules match,
7129 * use dictionary for efficient comparison */
Radek Krejci011e4aa2020-09-04 15:22:31 +02007130 LY_CHECK_GOTO(rc = lydict_insert(set->ctx, ncname, ncname_len, &ncname_dict), cleanup);
Michal Vaskod3678892020-05-21 10:06:58 +02007131 }
7132
Michal Vasko97ea1632020-11-23 17:00:09 +01007133 if ((set->format == LY_PREF_JSON) && no_prefix) {
7134 /* do not set moveto_mod if there is no explicit prefix for JSON, it should be inherited from
7135 * the specific context node */
7136 moveto_mod = NULL;
7137 }
7138
Michal Vaskod3678892020-05-21 10:06:58 +02007139moveto:
7140 /* move to the attribute(s), data node(s), or schema node(s) */
7141 if (attr_axis) {
7142 if (set && (options & LYXP_SCNODE_ALL)) {
7143 set_scnode_clear_ctx(set);
7144 } else {
7145 if (all_desc) {
Michal Vaskocdad7122020-11-09 21:04:44 +01007146 rc = moveto_attr_alldesc(set, moveto_mod, ncname_dict, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007147 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007148 rc = moveto_attr(set, moveto_mod, ncname_dict);
Michal Vaskod3678892020-05-21 10:06:58 +02007149 }
7150 LY_CHECK_GOTO(rc, cleanup);
7151 }
7152 } else {
7153 if (set && (options & LYXP_SCNODE_ALL)) {
Radek Krejci1deb5be2020-08-26 16:43:36 +02007154 int64_t i;
7155
Michal Vaskod3678892020-05-21 10:06:58 +02007156 if (all_desc) {
Michal Vasko004d3152020-06-11 19:59:22 +02007157 rc = moveto_scnode_alldesc(set, moveto_mod, ncname_dict, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007158 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007159 rc = moveto_scnode(set, moveto_mod, ncname_dict, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007160 }
7161 LY_CHECK_GOTO(rc, cleanup);
7162
7163 for (i = set->used - 1; i > -1; --i) {
7164 if (set->val.scnodes[i].in_ctx > 0) {
7165 break;
7166 }
7167 }
7168 if (i == -1) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007169 path = lysc_path(set->cur_scnode, LYSC_PATH_LOG, NULL, 0);
Michal Vaskod3678892020-05-21 10:06:58 +02007170 LOGWRN(set->ctx, "Schema node \"%.*s\" not found (%.*s) with context node \"%s\".",
Michal Vasko69730152020-10-09 16:30:07 +02007171 ncname_len, ncname, ncname - exp->expr, exp->expr, path);
Michal Vaskod3678892020-05-21 10:06:58 +02007172 free(path);
7173 }
7174 } else {
7175 if (all_desc) {
Michal Vaskocdad7122020-11-09 21:04:44 +01007176 rc = moveto_node_alldesc(set, moveto_mod, ncname_dict, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007177 } else {
7178 if (scnode) {
7179 /* we can find the nodes using hashes */
Michal Vaskocdad7122020-11-09 21:04:44 +01007180 rc = moveto_node_hash(set, scnode, predicates, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007181 } else {
Michal Vaskocdad7122020-11-09 21:04:44 +01007182 rc = moveto_node(set, moveto_mod, ncname_dict, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007183 }
7184 }
7185 LY_CHECK_GOTO(rc, cleanup);
7186 }
7187 }
7188
7189 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007190 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
7191 rc = eval_predicate(exp, tok_idx, set, options, 1);
Michal Vaskod3678892020-05-21 10:06:58 +02007192 LY_CHECK_RET(rc);
7193 }
7194
7195cleanup:
Michal Vaskodb51a8d2020-05-27 15:22:29 +02007196 if (set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007197 lydict_remove(set->ctx, ncname_dict);
Michal Vaskof7e16e22020-10-21 09:24:39 +02007198 ly_path_predicates_free(set->ctx, pred_type, predicates);
Michal Vaskodb51a8d2020-05-27 15:22:29 +02007199 }
Michal Vaskod3678892020-05-21 10:06:58 +02007200 return rc;
7201}
7202
7203/**
7204 * @brief Evaluate NodeType and any following Predicates. Logs directly on error.
7205 *
7206 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
7207 * [6] NodeTest ::= NameTest | NodeType '(' ')'
7208 * [8] NodeType ::= 'text' | 'node'
7209 *
7210 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007211 * @param[in] tok_idx Position in the expression @p exp.
Michal Vaskod3678892020-05-21 10:06:58 +02007212 * @param[in] attr_axis Whether to search attributes or standard nodes.
7213 * @param[in] all_desc Whether to search all the descendants or children only.
7214 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7215 * @param[in] options XPath options.
7216 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7217 */
7218static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02007219eval_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 +02007220 struct lyxp_set *set, uint32_t options)
Michal Vaskod3678892020-05-21 10:06:58 +02007221{
7222 LY_ERR rc;
7223
7224 /* TODO */
7225 (void)attr_axis;
7226 (void)all_desc;
7227
7228 if (set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007229 assert(exp->tok_len[*tok_idx] == 4);
Michal Vaskod3678892020-05-21 10:06:58 +02007230 if (set->type == LYXP_SET_SCNODE_SET) {
7231 set_scnode_clear_ctx(set);
7232 /* just for the debug message below */
7233 set = NULL;
7234 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007235 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "node", 4)) {
Michal Vaskod3678892020-05-21 10:06:58 +02007236 rc = xpath_node(NULL, 0, set, options);
7237 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007238 assert(!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "text", 4));
Michal Vaskod3678892020-05-21 10:06:58 +02007239 rc = xpath_text(NULL, 0, set, options);
7240 }
7241 LY_CHECK_RET(rc);
7242 }
7243 }
7244 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007245 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007246 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007247
7248 /* '(' */
Michal Vasko004d3152020-06-11 19:59:22 +02007249 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR1);
Michal Vaskod3678892020-05-21 10:06:58 +02007250 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007251 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007252 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007253
7254 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02007255 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR2);
Michal Vaskod3678892020-05-21 10:06:58 +02007256 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007257 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007258 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007259
7260 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007261 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
7262 rc = eval_predicate(exp, tok_idx, set, options, 1);
Michal Vaskod3678892020-05-21 10:06:58 +02007263 LY_CHECK_RET(rc);
7264 }
7265
7266 return LY_SUCCESS;
7267}
7268
7269/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02007270 * @brief Evaluate RelativeLocationPath. Logs directly on error.
7271 *
7272 * [4] RelativeLocationPath ::= Step | RelativeLocationPath '/' Step | RelativeLocationPath '//' Step
7273 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
Michal Vaskod3678892020-05-21 10:06:58 +02007274 * [6] NodeTest ::= NameTest | NodeType '(' ')'
Michal Vasko03ff5a72019-09-11 13:49:33 +02007275 *
7276 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007277 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007278 * @param[in] all_desc Whether to search all the descendants or children only.
7279 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7280 * @param[in] options XPath options.
7281 * @return LY_ERR (YL_EINCOMPLETE on unresolved when)
7282 */
7283static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02007284eval_relative_location_path(const struct lyxp_expr *exp, uint16_t *tok_idx, ly_bool all_desc, struct lyxp_set *set,
7285 uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007286{
Radek Krejci857189e2020-09-01 13:26:36 +02007287 ly_bool attr_axis;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007288 LY_ERR rc;
7289
7290 goto step;
7291 do {
7292 /* evaluate '/' or '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02007293 if (exp->tok_len[*tok_idx] == 1) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007294 all_desc = 0;
7295 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007296 assert(exp->tok_len[*tok_idx] == 2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007297 all_desc = 1;
7298 }
7299 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007300 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007301 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007302
7303step:
Michal Vaskod3678892020-05-21 10:06:58 +02007304 /* evaluate abbreviated axis '@'? if any */
Michal Vasko004d3152020-06-11 19:59:22 +02007305 if (exp->tokens[*tok_idx] == LYXP_TOKEN_AT) {
Michal Vaskod3678892020-05-21 10:06:58 +02007306 attr_axis = 1;
7307
7308 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007309 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007310 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007311 } else {
7312 attr_axis = 0;
7313 }
7314
Michal Vasko03ff5a72019-09-11 13:49:33 +02007315 /* Step */
Michal Vasko004d3152020-06-11 19:59:22 +02007316 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007317 case LYXP_TOKEN_DOT:
7318 /* evaluate '.' */
7319 if (set && (options & LYXP_SCNODE_ALL)) {
7320 rc = moveto_scnode_self(set, all_desc, options);
7321 } else {
7322 rc = moveto_self(set, all_desc, options);
7323 }
7324 LY_CHECK_RET(rc);
7325 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007326 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007327 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007328 break;
7329
7330 case LYXP_TOKEN_DDOT:
7331 /* evaluate '..' */
7332 if (set && (options & LYXP_SCNODE_ALL)) {
7333 rc = moveto_scnode_parent(set, all_desc, options);
7334 } else {
7335 rc = moveto_parent(set, all_desc, options);
7336 }
7337 LY_CHECK_RET(rc);
7338 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007339 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007340 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007341 break;
7342
Michal Vasko03ff5a72019-09-11 13:49:33 +02007343 case LYXP_TOKEN_NAMETEST:
Michal Vaskod3678892020-05-21 10:06:58 +02007344 /* evaluate NameTest Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007345 rc = eval_name_test_with_predicate(exp, tok_idx, attr_axis, all_desc, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007346 LY_CHECK_RET(rc);
Michal Vaskod3678892020-05-21 10:06:58 +02007347 break;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007348
Michal Vaskod3678892020-05-21 10:06:58 +02007349 case LYXP_TOKEN_NODETYPE:
7350 /* evaluate NodeType Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007351 rc = eval_node_type_with_predicate(exp, tok_idx, attr_axis, all_desc, set, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007352 LY_CHECK_RET(rc);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007353 break;
7354
7355 default:
Michal Vasko02a77382019-09-12 11:47:35 +02007356 LOGINT_RET(set ? set->ctx : NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007357 }
Michal Vasko004d3152020-06-11 19:59:22 +02007358 } while (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007359
7360 return LY_SUCCESS;
7361}
7362
7363/**
7364 * @brief Evaluate AbsoluteLocationPath. Logs directly on error.
7365 *
7366 * [3] AbsoluteLocationPath ::= '/' RelativeLocationPath? | '//' RelativeLocationPath
7367 *
7368 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007369 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007370 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7371 * @param[in] options XPath options.
7372 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7373 */
7374static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02007375eval_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 +02007376{
Radek Krejci857189e2020-09-01 13:26:36 +02007377 ly_bool all_desc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007378
7379 if (set) {
7380 /* no matter what tokens follow, we need to be at the root */
Michal Vaskob0099a92020-08-31 14:55:23 +02007381 LY_CHECK_RET(moveto_root(set, options));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007382 }
7383
7384 /* '/' RelativeLocationPath? */
Michal Vasko004d3152020-06-11 19:59:22 +02007385 if (exp->tok_len[*tok_idx] == 1) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007386 /* evaluate '/' - deferred */
7387 all_desc = 0;
7388 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007389 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007390 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007391
Michal Vasko004d3152020-06-11 19:59:22 +02007392 if (lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_NONE)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007393 return LY_SUCCESS;
7394 }
Michal Vasko004d3152020-06-11 19:59:22 +02007395 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007396 case LYXP_TOKEN_DOT:
7397 case LYXP_TOKEN_DDOT:
7398 case LYXP_TOKEN_AT:
7399 case LYXP_TOKEN_NAMETEST:
7400 case LYXP_TOKEN_NODETYPE:
Michal Vaskob0099a92020-08-31 14:55:23 +02007401 LY_CHECK_RET(eval_relative_location_path(exp, tok_idx, all_desc, set, options));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007402 break;
7403 default:
7404 break;
7405 }
7406
Michal Vasko03ff5a72019-09-11 13:49:33 +02007407 } else {
Radek Krejcif6a11002020-08-21 13:29:07 +02007408 /* '//' RelativeLocationPath */
Michal Vasko03ff5a72019-09-11 13:49:33 +02007409 /* evaluate '//' - deferred so as not to waste memory by remembering all the nodes */
7410 all_desc = 1;
7411 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007412 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007413 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007414
Michal Vaskob0099a92020-08-31 14:55:23 +02007415 LY_CHECK_RET(eval_relative_location_path(exp, tok_idx, all_desc, set, options));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007416 }
7417
7418 return LY_SUCCESS;
7419}
7420
7421/**
7422 * @brief Evaluate FunctionCall. Logs directly on error.
7423 *
Michal Vaskod3678892020-05-21 10:06:58 +02007424 * [11] FunctionCall ::= FunctionName '(' ( Expr ( ',' Expr )* )? ')'
Michal Vasko03ff5a72019-09-11 13:49:33 +02007425 *
7426 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007427 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007428 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7429 * @param[in] options XPath options.
7430 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7431 */
7432static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02007433eval_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 +02007434{
7435 LY_ERR rc;
Michal Vasko69730152020-10-09 16:30:07 +02007436
Radek Krejci1deb5be2020-08-26 16:43:36 +02007437 LY_ERR (*xpath_func)(struct lyxp_set **, uint16_t, struct lyxp_set *, uint32_t) = NULL;
Michal Vasko0cbf54f2019-12-16 10:01:06 +01007438 uint16_t arg_count = 0, i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007439 struct lyxp_set **args = NULL, **args_aux;
7440
7441 if (set) {
7442 /* FunctionName */
Michal Vasko004d3152020-06-11 19:59:22 +02007443 switch (exp->tok_len[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007444 case 3:
Michal Vasko004d3152020-06-11 19:59:22 +02007445 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "not", 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007446 xpath_func = &xpath_not;
Michal Vasko004d3152020-06-11 19:59:22 +02007447 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "sum", 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007448 xpath_func = &xpath_sum;
7449 }
7450 break;
7451 case 4:
Michal Vasko004d3152020-06-11 19:59:22 +02007452 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "lang", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007453 xpath_func = &xpath_lang;
Michal Vasko004d3152020-06-11 19:59:22 +02007454 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "last", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007455 xpath_func = &xpath_last;
Michal Vasko004d3152020-06-11 19:59:22 +02007456 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "name", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007457 xpath_func = &xpath_name;
Michal Vasko004d3152020-06-11 19:59:22 +02007458 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "true", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007459 xpath_func = &xpath_true;
7460 }
7461 break;
7462 case 5:
Michal Vasko004d3152020-06-11 19:59:22 +02007463 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "count", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007464 xpath_func = &xpath_count;
Michal Vasko004d3152020-06-11 19:59:22 +02007465 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "false", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007466 xpath_func = &xpath_false;
Michal Vasko004d3152020-06-11 19:59:22 +02007467 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "floor", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007468 xpath_func = &xpath_floor;
Michal Vasko004d3152020-06-11 19:59:22 +02007469 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "round", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007470 xpath_func = &xpath_round;
Michal Vasko004d3152020-06-11 19:59:22 +02007471 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "deref", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007472 xpath_func = &xpath_deref;
7473 }
7474 break;
7475 case 6:
Michal Vasko004d3152020-06-11 19:59:22 +02007476 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "concat", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007477 xpath_func = &xpath_concat;
Michal Vasko004d3152020-06-11 19:59:22 +02007478 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "number", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007479 xpath_func = &xpath_number;
Michal Vasko004d3152020-06-11 19:59:22 +02007480 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007481 xpath_func = &xpath_string;
7482 }
7483 break;
7484 case 7:
Michal Vasko004d3152020-06-11 19:59:22 +02007485 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "boolean", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007486 xpath_func = &xpath_boolean;
Michal Vasko004d3152020-06-11 19:59:22 +02007487 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "ceiling", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007488 xpath_func = &xpath_ceiling;
Michal Vasko004d3152020-06-11 19:59:22 +02007489 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "current", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007490 xpath_func = &xpath_current;
7491 }
7492 break;
7493 case 8:
Michal Vasko004d3152020-06-11 19:59:22 +02007494 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "contains", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007495 xpath_func = &xpath_contains;
Michal Vasko004d3152020-06-11 19:59:22 +02007496 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "position", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007497 xpath_func = &xpath_position;
Michal Vasko004d3152020-06-11 19:59:22 +02007498 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "re-match", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007499 xpath_func = &xpath_re_match;
7500 }
7501 break;
7502 case 9:
Michal Vasko004d3152020-06-11 19:59:22 +02007503 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring", 9)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007504 xpath_func = &xpath_substring;
Michal Vasko004d3152020-06-11 19:59:22 +02007505 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "translate", 9)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007506 xpath_func = &xpath_translate;
7507 }
7508 break;
7509 case 10:
Michal Vasko004d3152020-06-11 19:59:22 +02007510 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "local-name", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007511 xpath_func = &xpath_local_name;
Michal Vasko004d3152020-06-11 19:59:22 +02007512 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "enum-value", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007513 xpath_func = &xpath_enum_value;
Michal Vasko004d3152020-06-11 19:59:22 +02007514 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "bit-is-set", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007515 xpath_func = &xpath_bit_is_set;
7516 }
7517 break;
7518 case 11:
Michal Vasko004d3152020-06-11 19:59:22 +02007519 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "starts-with", 11)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007520 xpath_func = &xpath_starts_with;
7521 }
7522 break;
7523 case 12:
Michal Vasko004d3152020-06-11 19:59:22 +02007524 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from", 12)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007525 xpath_func = &xpath_derived_from;
7526 }
7527 break;
7528 case 13:
Michal Vasko004d3152020-06-11 19:59:22 +02007529 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "namespace-uri", 13)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007530 xpath_func = &xpath_namespace_uri;
Michal Vasko004d3152020-06-11 19:59:22 +02007531 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string-length", 13)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007532 xpath_func = &xpath_string_length;
7533 }
7534 break;
7535 case 15:
Michal Vasko004d3152020-06-11 19:59:22 +02007536 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "normalize-space", 15)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007537 xpath_func = &xpath_normalize_space;
Michal Vasko004d3152020-06-11 19:59:22 +02007538 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-after", 15)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007539 xpath_func = &xpath_substring_after;
7540 }
7541 break;
7542 case 16:
Michal Vasko004d3152020-06-11 19:59:22 +02007543 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-before", 16)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007544 xpath_func = &xpath_substring_before;
7545 }
7546 break;
7547 case 20:
Michal Vasko004d3152020-06-11 19:59:22 +02007548 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from-or-self", 20)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007549 xpath_func = &xpath_derived_from_or_self;
7550 }
7551 break;
7552 }
7553
7554 if (!xpath_func) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007555 LOGVAL(set->ctx, LY_VLOG_LYD, set->cur_node, LY_VCODE_XP_INFUNC, exp->tok_len[*tok_idx], &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007556 return LY_EVALID;
7557 }
7558 }
7559
7560 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007561 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007562 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007563
7564 /* '(' */
Michal Vasko004d3152020-06-11 19:59:22 +02007565 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007566 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007567 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007568 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007569
7570 /* ( Expr ( ',' Expr )* )? */
Michal Vasko004d3152020-06-11 19:59:22 +02007571 if (exp->tokens[*tok_idx] != LYXP_TOKEN_PAR2) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007572 if (set) {
7573 args = malloc(sizeof *args);
7574 LY_CHECK_ERR_GOTO(!args, LOGMEM(set->ctx); rc = LY_EMEM, cleanup);
7575 arg_count = 1;
7576 args[0] = set_copy(set);
7577 if (!args[0]) {
7578 rc = LY_EMEM;
7579 goto cleanup;
7580 }
7581
Michal Vasko004d3152020-06-11 19:59:22 +02007582 rc = eval_expr_select(exp, tok_idx, 0, args[0], options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007583 LY_CHECK_GOTO(rc, cleanup);
7584 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007585 rc = eval_expr_select(exp, tok_idx, 0, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007586 LY_CHECK_GOTO(rc, cleanup);
7587 }
7588 }
Michal Vasko004d3152020-06-11 19:59:22 +02007589 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_COMMA)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007590 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007591 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007592 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007593
7594 if (set) {
7595 ++arg_count;
7596 args_aux = realloc(args, arg_count * sizeof *args);
7597 LY_CHECK_ERR_GOTO(!args_aux, arg_count--; LOGMEM(set->ctx); rc = LY_EMEM, cleanup);
7598 args = args_aux;
7599 args[arg_count - 1] = set_copy(set);
7600 if (!args[arg_count - 1]) {
7601 rc = LY_EMEM;
7602 goto cleanup;
7603 }
7604
Michal Vasko004d3152020-06-11 19:59:22 +02007605 rc = eval_expr_select(exp, tok_idx, 0, args[arg_count - 1], options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007606 LY_CHECK_GOTO(rc, cleanup);
7607 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007608 rc = eval_expr_select(exp, tok_idx, 0, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007609 LY_CHECK_GOTO(rc, cleanup);
7610 }
7611 }
7612
7613 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02007614 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007615 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007616 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007617 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007618
7619 if (set) {
7620 /* evaluate function */
7621 rc = xpath_func(args, arg_count, set, options);
7622
7623 if (options & LYXP_SCNODE_ALL) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007624 /* merge all nodes from arg evaluations */
7625 for (i = 0; i < arg_count; ++i) {
7626 set_scnode_clear_ctx(args[i]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01007627 lyxp_set_scnode_merge(set, args[i]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007628 }
7629 }
7630 } else {
7631 rc = LY_SUCCESS;
7632 }
7633
7634cleanup:
7635 for (i = 0; i < arg_count; ++i) {
7636 lyxp_set_free(args[i]);
7637 }
7638 free(args);
7639
7640 return rc;
7641}
7642
7643/**
7644 * @brief Evaluate Number. Logs directly on error.
7645 *
7646 * @param[in] ctx Context for errors.
7647 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007648 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007649 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7650 * @return LY_ERR
7651 */
7652static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02007653eval_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 +02007654{
7655 long double num;
7656 char *endptr;
7657
7658 if (set) {
7659 errno = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02007660 num = strtold(&exp->expr[exp->tok_pos[*tok_idx]], &endptr);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007661 if (errno) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007662 LOGVAL(ctx, LY_VLOG_LYD, set->cur_node, LY_VCODE_XP_INTOK, "Unknown", &exp->expr[exp->tok_pos[*tok_idx]]);
7663 LOGVAL(ctx, LY_VLOG_LYD, set->cur_node, LYVE_XPATH, "Failed to convert \"%.*s\" into a long double (%s).",
Michal Vasko69730152020-10-09 16:30:07 +02007664 exp->tok_len[*tok_idx], &exp->expr[exp->tok_pos[*tok_idx]], strerror(errno));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007665 return LY_EVALID;
Michal Vasko004d3152020-06-11 19:59:22 +02007666 } else if (endptr - &exp->expr[exp->tok_pos[*tok_idx]] != exp->tok_len[*tok_idx]) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007667 LOGVAL(ctx, LY_VLOG_LYD, set->cur_node, LY_VCODE_XP_INTOK, "Unknown", &exp->expr[exp->tok_pos[*tok_idx]]);
7668 LOGVAL(ctx, LY_VLOG_LYD, set->cur_node, LYVE_XPATH, "Failed to convert \"%.*s\" into a long double.",
Michal Vasko69730152020-10-09 16:30:07 +02007669 exp->tok_len[*tok_idx], &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007670 return LY_EVALID;
7671 }
7672
7673 set_fill_number(set, num);
7674 }
7675
7676 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007677 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007678 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007679 return LY_SUCCESS;
7680}
7681
7682/**
7683 * @brief Evaluate PathExpr. Logs directly on error.
7684 *
Michal Vaskod3678892020-05-21 10:06:58 +02007685 * [12] PathExpr ::= LocationPath | PrimaryExpr Predicate*
Michal Vasko03ff5a72019-09-11 13:49:33 +02007686 * | PrimaryExpr Predicate* '/' RelativeLocationPath
7687 * | PrimaryExpr Predicate* '//' RelativeLocationPath
7688 * [2] LocationPath ::= RelativeLocationPath | AbsoluteLocationPath
Michal Vaskod3678892020-05-21 10:06:58 +02007689 * [10] PrimaryExpr ::= '(' Expr ')' | Literal | Number | FunctionCall
Michal Vasko03ff5a72019-09-11 13:49:33 +02007690 *
7691 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007692 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007693 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7694 * @param[in] options XPath options.
7695 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7696 */
7697static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02007698eval_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 +02007699{
Radek Krejci857189e2020-09-01 13:26:36 +02007700 ly_bool all_desc, parent_pos_pred;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007701 LY_ERR rc;
7702
Michal Vasko004d3152020-06-11 19:59:22 +02007703 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007704 case LYXP_TOKEN_PAR1:
7705 /* '(' Expr ')' */
7706
7707 /* '(' */
7708 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007709 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007710 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007711
7712 /* Expr */
Michal Vasko004d3152020-06-11 19:59:22 +02007713 rc = eval_expr_select(exp, tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007714 LY_CHECK_RET(rc);
7715
7716 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02007717 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007718 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007719 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007720 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007721
7722 parent_pos_pred = 0;
7723 goto predicate;
7724
7725 case LYXP_TOKEN_DOT:
7726 case LYXP_TOKEN_DDOT:
7727 case LYXP_TOKEN_AT:
7728 case LYXP_TOKEN_NAMETEST:
7729 case LYXP_TOKEN_NODETYPE:
7730 /* RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02007731 rc = eval_relative_location_path(exp, tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007732 LY_CHECK_RET(rc);
7733 break;
7734
7735 case LYXP_TOKEN_FUNCNAME:
7736 /* FunctionCall */
7737 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007738 rc = eval_function_call(exp, tok_idx, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007739 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007740 rc = eval_function_call(exp, tok_idx, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007741 }
7742 LY_CHECK_RET(rc);
7743
7744 parent_pos_pred = 1;
7745 goto predicate;
7746
Michal Vasko3e48bf32020-06-01 08:39:07 +02007747 case LYXP_TOKEN_OPER_PATH:
7748 case LYXP_TOKEN_OPER_RPATH:
Michal Vasko03ff5a72019-09-11 13:49:33 +02007749 /* AbsoluteLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02007750 rc = eval_absolute_location_path(exp, tok_idx, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007751 LY_CHECK_RET(rc);
7752 break;
7753
7754 case LYXP_TOKEN_LITERAL:
7755 /* Literal */
7756 if (!set || (options & LYXP_SCNODE_ALL)) {
7757 if (set) {
7758 set_scnode_clear_ctx(set);
7759 }
Michal Vasko004d3152020-06-11 19:59:22 +02007760 eval_literal(exp, tok_idx, NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007761 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007762 eval_literal(exp, tok_idx, set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007763 }
7764
7765 parent_pos_pred = 1;
7766 goto predicate;
7767
7768 case LYXP_TOKEN_NUMBER:
7769 /* Number */
7770 if (!set || (options & LYXP_SCNODE_ALL)) {
7771 if (set) {
7772 set_scnode_clear_ctx(set);
7773 }
Michal Vasko004d3152020-06-11 19:59:22 +02007774 rc = eval_number(NULL, exp, tok_idx, NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007775 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007776 rc = eval_number(set->ctx, exp, tok_idx, set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007777 }
7778 LY_CHECK_RET(rc);
7779
7780 parent_pos_pred = 1;
7781 goto predicate;
7782
7783 default:
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007784 LOGVAL(set->ctx, LY_VLOG_LYD, set->cur_node, LY_VCODE_XP_INTOK, lyxp_print_token(exp->tokens[*tok_idx]),
Michal Vasko69730152020-10-09 16:30:07 +02007785 &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007786 return LY_EVALID;
7787 }
7788
7789 return LY_SUCCESS;
7790
7791predicate:
7792 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007793 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
7794 rc = eval_predicate(exp, tok_idx, set, options, parent_pos_pred);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007795 LY_CHECK_RET(rc);
7796 }
7797
7798 /* ('/' or '//') RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02007799 if (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007800
7801 /* evaluate '/' or '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02007802 if (exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_PATH) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007803 all_desc = 0;
7804 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007805 all_desc = 1;
7806 }
7807
7808 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007809 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007810 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007811
Michal Vasko004d3152020-06-11 19:59:22 +02007812 rc = eval_relative_location_path(exp, tok_idx, all_desc, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007813 LY_CHECK_RET(rc);
7814 }
7815
7816 return LY_SUCCESS;
7817}
7818
7819/**
7820 * @brief Evaluate UnionExpr. Logs directly on error.
7821 *
Michal Vaskod3678892020-05-21 10:06:58 +02007822 * [20] UnionExpr ::= PathExpr | UnionExpr '|' PathExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02007823 *
7824 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007825 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007826 * @param[in] repeat How many times this expression is repeated.
7827 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7828 * @param[in] options XPath options.
7829 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7830 */
7831static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02007832eval_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 +02007833{
7834 LY_ERR rc = LY_SUCCESS;
7835 struct lyxp_set orig_set, set2;
7836 uint16_t i;
7837
7838 assert(repeat);
7839
7840 set_init(&orig_set, set);
7841 set_init(&set2, set);
7842
7843 set_fill_set(&orig_set, set);
7844
Michal Vasko004d3152020-06-11 19:59:22 +02007845 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNION, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007846 LY_CHECK_GOTO(rc, cleanup);
7847
7848 /* ('|' PathExpr)* */
7849 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02007850 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_UNI);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007851 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007852 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007853 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007854
7855 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007856 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNION, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007857 LY_CHECK_GOTO(rc, cleanup);
7858 continue;
7859 }
7860
7861 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02007862 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNION, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007863 LY_CHECK_GOTO(rc, cleanup);
7864
7865 /* eval */
7866 if (options & LYXP_SCNODE_ALL) {
Michal Vaskoecd62de2019-11-13 12:35:11 +01007867 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007868 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007869 rc = moveto_union(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007870 LY_CHECK_GOTO(rc, cleanup);
7871 }
7872 }
7873
7874cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02007875 lyxp_set_free_content(&orig_set);
7876 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007877 return rc;
7878}
7879
7880/**
7881 * @brief Evaluate UnaryExpr. Logs directly on error.
7882 *
Michal Vaskod3678892020-05-21 10:06:58 +02007883 * [19] UnaryExpr ::= UnionExpr | '-' UnaryExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02007884 *
7885 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007886 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007887 * @param[in] repeat How many times this expression is repeated.
7888 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7889 * @param[in] options XPath options.
7890 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7891 */
7892static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02007893eval_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 +02007894{
7895 LY_ERR rc;
7896 uint16_t this_op, i;
7897
7898 assert(repeat);
7899
7900 /* ('-')+ */
Michal Vasko004d3152020-06-11 19:59:22 +02007901 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007902 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02007903 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 +02007904
7905 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007906 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007907 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007908 }
7909
Michal Vasko004d3152020-06-11 19:59:22 +02007910 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNARY, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007911 LY_CHECK_RET(rc);
7912
7913 if (set && (repeat % 2)) {
7914 if (options & LYXP_SCNODE_ALL) {
7915 warn_operands(set->ctx, set, NULL, 1, exp->expr, exp->tok_pos[this_op]);
7916 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007917 rc = moveto_op_math(set, NULL, &exp->expr[exp->tok_pos[this_op]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007918 LY_CHECK_RET(rc);
7919 }
7920 }
7921
7922 return LY_SUCCESS;
7923}
7924
7925/**
7926 * @brief Evaluate MultiplicativeExpr. Logs directly on error.
7927 *
Michal Vaskod3678892020-05-21 10:06:58 +02007928 * [18] MultiplicativeExpr ::= UnaryExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02007929 * | MultiplicativeExpr '*' UnaryExpr
7930 * | MultiplicativeExpr 'div' UnaryExpr
7931 * | MultiplicativeExpr 'mod' UnaryExpr
7932 *
7933 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007934 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007935 * @param[in] repeat How many times this expression is repeated.
7936 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7937 * @param[in] options XPath options.
7938 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7939 */
7940static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02007941eval_multiplicative_expr(const struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set,
7942 uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007943{
7944 LY_ERR rc;
7945 uint16_t this_op;
7946 struct lyxp_set orig_set, set2;
7947 uint16_t i;
7948
7949 assert(repeat);
7950
7951 set_init(&orig_set, set);
7952 set_init(&set2, set);
7953
7954 set_fill_set(&orig_set, set);
7955
Michal Vasko004d3152020-06-11 19:59:22 +02007956 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_MULTIPLICATIVE, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007957 LY_CHECK_GOTO(rc, cleanup);
7958
7959 /* ('*' / 'div' / 'mod' UnaryExpr)* */
7960 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02007961 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007962
Michal Vasko004d3152020-06-11 19:59:22 +02007963 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_MATH);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007964 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007965 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007966 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007967
7968 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007969 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_MULTIPLICATIVE, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007970 LY_CHECK_GOTO(rc, cleanup);
7971 continue;
7972 }
7973
7974 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02007975 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_MULTIPLICATIVE, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007976 LY_CHECK_GOTO(rc, cleanup);
7977
7978 /* eval */
7979 if (options & LYXP_SCNODE_ALL) {
7980 warn_operands(set->ctx, set, &set2, 1, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01007981 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007982 set_scnode_clear_ctx(set);
7983 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007984 rc = moveto_op_math(set, &set2, &exp->expr[exp->tok_pos[this_op]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007985 LY_CHECK_GOTO(rc, cleanup);
7986 }
7987 }
7988
7989cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02007990 lyxp_set_free_content(&orig_set);
7991 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007992 return rc;
7993}
7994
7995/**
7996 * @brief Evaluate AdditiveExpr. Logs directly on error.
7997 *
Michal Vaskod3678892020-05-21 10:06:58 +02007998 * [17] AdditiveExpr ::= MultiplicativeExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02007999 * | AdditiveExpr '+' MultiplicativeExpr
8000 * | AdditiveExpr '-' MultiplicativeExpr
8001 *
8002 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008003 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008004 * @param[in] repeat How many times this expression is repeated.
8005 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
8006 * @param[in] options XPath options.
8007 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8008 */
8009static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02008010eval_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 +02008011{
8012 LY_ERR rc;
8013 uint16_t this_op;
8014 struct lyxp_set orig_set, set2;
8015 uint16_t i;
8016
8017 assert(repeat);
8018
8019 set_init(&orig_set, set);
8020 set_init(&set2, set);
8021
8022 set_fill_set(&orig_set, set);
8023
Michal Vasko004d3152020-06-11 19:59:22 +02008024 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_ADDITIVE, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008025 LY_CHECK_GOTO(rc, cleanup);
8026
8027 /* ('+' / '-' MultiplicativeExpr)* */
8028 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008029 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008030
Michal Vasko004d3152020-06-11 19:59:22 +02008031 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_MATH);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008032 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02008033 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008034 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008035
8036 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02008037 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_ADDITIVE, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008038 LY_CHECK_GOTO(rc, cleanup);
8039 continue;
8040 }
8041
8042 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02008043 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_ADDITIVE, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008044 LY_CHECK_GOTO(rc, cleanup);
8045
8046 /* eval */
8047 if (options & LYXP_SCNODE_ALL) {
8048 warn_operands(set->ctx, set, &set2, 1, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008049 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008050 set_scnode_clear_ctx(set);
8051 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008052 rc = moveto_op_math(set, &set2, &exp->expr[exp->tok_pos[this_op]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008053 LY_CHECK_GOTO(rc, cleanup);
8054 }
8055 }
8056
8057cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008058 lyxp_set_free_content(&orig_set);
8059 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008060 return rc;
8061}
8062
8063/**
8064 * @brief Evaluate RelationalExpr. Logs directly on error.
8065 *
Michal Vaskod3678892020-05-21 10:06:58 +02008066 * [16] RelationalExpr ::= AdditiveExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008067 * | RelationalExpr '<' AdditiveExpr
8068 * | RelationalExpr '>' AdditiveExpr
8069 * | RelationalExpr '<=' AdditiveExpr
8070 * | RelationalExpr '>=' AdditiveExpr
8071 *
8072 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008073 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008074 * @param[in] repeat How many times this expression is repeated.
8075 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
8076 * @param[in] options XPath options.
8077 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8078 */
8079static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02008080eval_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 +02008081{
8082 LY_ERR rc;
8083 uint16_t this_op;
8084 struct lyxp_set orig_set, set2;
8085 uint16_t i;
8086
8087 assert(repeat);
8088
8089 set_init(&orig_set, set);
8090 set_init(&set2, set);
8091
8092 set_fill_set(&orig_set, set);
8093
Michal Vasko004d3152020-06-11 19:59:22 +02008094 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_RELATIONAL, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008095 LY_CHECK_GOTO(rc, cleanup);
8096
8097 /* ('<' / '>' / '<=' / '>=' AdditiveExpr)* */
8098 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008099 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008100
Michal Vasko004d3152020-06-11 19:59:22 +02008101 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_COMP);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008102 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02008103 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008104 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008105
8106 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02008107 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_RELATIONAL, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008108 LY_CHECK_GOTO(rc, cleanup);
8109 continue;
8110 }
8111
8112 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02008113 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_RELATIONAL, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008114 LY_CHECK_GOTO(rc, cleanup);
8115
8116 /* eval */
8117 if (options & LYXP_SCNODE_ALL) {
8118 warn_operands(set->ctx, set, &set2, 1, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008119 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008120 set_scnode_clear_ctx(set);
8121 } else {
8122 rc = moveto_op_comp(set, &set2, &exp->expr[exp->tok_pos[this_op]], options);
8123 LY_CHECK_GOTO(rc, cleanup);
8124 }
8125 }
8126
8127cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008128 lyxp_set_free_content(&orig_set);
8129 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008130 return rc;
8131}
8132
8133/**
8134 * @brief Evaluate EqualityExpr. Logs directly on error.
8135 *
Michal Vaskod3678892020-05-21 10:06:58 +02008136 * [15] EqualityExpr ::= RelationalExpr | EqualityExpr '=' RelationalExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008137 * | EqualityExpr '!=' RelationalExpr
8138 *
8139 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008140 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008141 * @param[in] repeat How many times this expression is repeated.
8142 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
8143 * @param[in] options XPath options.
8144 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8145 */
8146static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02008147eval_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 +02008148{
8149 LY_ERR rc;
8150 uint16_t this_op;
8151 struct lyxp_set orig_set, set2;
8152 uint16_t i;
8153
8154 assert(repeat);
8155
8156 set_init(&orig_set, set);
8157 set_init(&set2, set);
8158
8159 set_fill_set(&orig_set, set);
8160
Michal Vasko004d3152020-06-11 19:59:22 +02008161 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_EQUALITY, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008162 LY_CHECK_GOTO(rc, cleanup);
8163
8164 /* ('=' / '!=' RelationalExpr)* */
8165 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008166 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008167
Michal Vasko004d3152020-06-11 19:59:22 +02008168 assert((exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_EQUAL) || (exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_NEQUAL));
Michal Vasko03ff5a72019-09-11 13:49:33 +02008169 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02008170 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008171 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008172
8173 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02008174 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_EQUALITY, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008175 LY_CHECK_GOTO(rc, cleanup);
8176 continue;
8177 }
8178
8179 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02008180 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_EQUALITY, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008181 LY_CHECK_GOTO(rc, cleanup);
8182
8183 /* eval */
8184 if (options & LYXP_SCNODE_ALL) {
8185 warn_operands(set->ctx, set, &set2, 0, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vasko004d3152020-06-11 19:59:22 +02008186 warn_equality_value(exp, set, *tok_idx - 1, this_op - 1, *tok_idx - 1);
8187 warn_equality_value(exp, &set2, this_op - 1, this_op - 1, *tok_idx - 1);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008188 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008189 set_scnode_clear_ctx(set);
8190 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008191 rc = moveto_op_comp(set, &set2, &exp->expr[exp->tok_pos[this_op]], options);
8192 LY_CHECK_GOTO(rc, cleanup);
8193 }
8194 }
8195
8196cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008197 lyxp_set_free_content(&orig_set);
8198 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008199 return rc;
8200}
8201
8202/**
8203 * @brief Evaluate AndExpr. Logs directly on error.
8204 *
Michal Vaskod3678892020-05-21 10:06:58 +02008205 * [14] AndExpr ::= EqualityExpr | AndExpr 'and' EqualityExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008206 *
8207 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008208 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008209 * @param[in] repeat How many times this expression is repeated.
8210 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
8211 * @param[in] options XPath options.
8212 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8213 */
8214static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02008215eval_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 +02008216{
8217 LY_ERR rc;
8218 struct lyxp_set orig_set, set2;
8219 uint16_t i;
8220
8221 assert(repeat);
8222
8223 set_init(&orig_set, set);
8224 set_init(&set2, set);
8225
8226 set_fill_set(&orig_set, set);
8227
Michal Vasko004d3152020-06-11 19:59:22 +02008228 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_AND, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008229 LY_CHECK_GOTO(rc, cleanup);
8230
8231 /* cast to boolean, we know that will be the final result */
8232 if (set && (options & LYXP_SCNODE_ALL)) {
8233 set_scnode_clear_ctx(set);
8234 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008235 lyxp_set_cast(set, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008236 }
8237
8238 /* ('and' EqualityExpr)* */
8239 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008240 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_LOG);
8241 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (!set || !set->val.bln ? "skipped" : "parsed"),
Michal Vasko69730152020-10-09 16:30:07 +02008242 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008243 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008244
8245 /* lazy evaluation */
Michal Vasko004d3152020-06-11 19:59:22 +02008246 if (!set || ((set->type == LYXP_SET_BOOLEAN) && !set->val.bln)) {
8247 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_AND, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008248 LY_CHECK_GOTO(rc, cleanup);
8249 continue;
8250 }
8251
8252 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02008253 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_AND, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008254 LY_CHECK_GOTO(rc, cleanup);
8255
8256 /* eval - just get boolean value actually */
8257 if (set->type == LYXP_SET_SCNODE_SET) {
8258 set_scnode_clear_ctx(&set2);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008259 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008260 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008261 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008262 set_fill_set(set, &set2);
8263 }
8264 }
8265
8266cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008267 lyxp_set_free_content(&orig_set);
8268 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008269 return rc;
8270}
8271
8272/**
8273 * @brief Evaluate OrExpr. Logs directly on error.
8274 *
Michal Vaskod3678892020-05-21 10:06:58 +02008275 * [13] OrExpr ::= AndExpr | OrExpr 'or' AndExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008276 *
8277 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008278 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008279 * @param[in] repeat How many times this expression is repeated.
8280 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
8281 * @param[in] options XPath options.
8282 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8283 */
8284static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02008285eval_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 +02008286{
8287 LY_ERR rc;
8288 struct lyxp_set orig_set, set2;
8289 uint16_t i;
8290
8291 assert(repeat);
8292
8293 set_init(&orig_set, set);
8294 set_init(&set2, set);
8295
8296 set_fill_set(&orig_set, set);
8297
Michal Vasko004d3152020-06-11 19:59:22 +02008298 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_OR, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008299 LY_CHECK_GOTO(rc, cleanup);
8300
8301 /* cast to boolean, we know that will be the final result */
8302 if (set && (options & LYXP_SCNODE_ALL)) {
8303 set_scnode_clear_ctx(set);
8304 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008305 lyxp_set_cast(set, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008306 }
8307
8308 /* ('or' AndExpr)* */
8309 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008310 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_LOG);
8311 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (!set || set->val.bln ? "skipped" : "parsed"),
Michal Vasko69730152020-10-09 16:30:07 +02008312 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008313 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008314
8315 /* lazy evaluation */
Michal Vasko004d3152020-06-11 19:59:22 +02008316 if (!set || ((set->type == LYXP_SET_BOOLEAN) && set->val.bln)) {
8317 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_OR, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008318 LY_CHECK_GOTO(rc, cleanup);
8319 continue;
8320 }
8321
8322 set_fill_set(&set2, &orig_set);
8323 /* expr_type cound have been LYXP_EXPR_NONE in all these later calls (except for the first one),
8324 * but it does not matter */
Michal Vasko004d3152020-06-11 19:59:22 +02008325 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_OR, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008326 LY_CHECK_GOTO(rc, cleanup);
8327
8328 /* eval - just get boolean value actually */
8329 if (set->type == LYXP_SET_SCNODE_SET) {
8330 set_scnode_clear_ctx(&set2);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008331 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008332 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008333 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008334 set_fill_set(set, &set2);
8335 }
8336 }
8337
8338cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008339 lyxp_set_free_content(&orig_set);
8340 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008341 return rc;
8342}
8343
8344/**
Michal Vasko004d3152020-06-11 19:59:22 +02008345 * @brief Decide what expression is at the pointer @p tok_idx and evaluate it accordingly.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008346 *
8347 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008348 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008349 * @param[in] etype Expression type to evaluate.
8350 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
8351 * @param[in] options XPath options.
8352 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8353 */
8354static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02008355eval_expr_select(const struct lyxp_expr *exp, uint16_t *tok_idx, enum lyxp_expr_type etype, struct lyxp_set *set,
8356 uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008357{
8358 uint16_t i, count;
8359 enum lyxp_expr_type next_etype;
8360 LY_ERR rc;
8361
8362 /* process operator repeats */
Michal Vasko004d3152020-06-11 19:59:22 +02008363 if (!exp->repeat[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008364 next_etype = LYXP_EXPR_NONE;
8365 } else {
8366 /* find etype repeat */
Radek Krejci1e008d22020-08-17 11:37:37 +02008367 for (i = 0; exp->repeat[*tok_idx][i] > etype; ++i) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02008368
8369 /* select one-priority lower because etype expression called us */
8370 if (i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008371 next_etype = exp->repeat[*tok_idx][i - 1];
Michal Vasko03ff5a72019-09-11 13:49:33 +02008372 /* count repeats for that expression */
Radek Krejci1e008d22020-08-17 11:37:37 +02008373 for (count = 0; i && exp->repeat[*tok_idx][i - 1] == next_etype; ++count, --i) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02008374 } else {
8375 next_etype = LYXP_EXPR_NONE;
8376 }
8377 }
8378
8379 /* decide what expression are we parsing based on the repeat */
8380 switch (next_etype) {
8381 case LYXP_EXPR_OR:
Michal Vasko004d3152020-06-11 19:59:22 +02008382 rc = eval_or_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008383 break;
8384 case LYXP_EXPR_AND:
Michal Vasko004d3152020-06-11 19:59:22 +02008385 rc = eval_and_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008386 break;
8387 case LYXP_EXPR_EQUALITY:
Michal Vasko004d3152020-06-11 19:59:22 +02008388 rc = eval_equality_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008389 break;
8390 case LYXP_EXPR_RELATIONAL:
Michal Vasko004d3152020-06-11 19:59:22 +02008391 rc = eval_relational_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008392 break;
8393 case LYXP_EXPR_ADDITIVE:
Michal Vasko004d3152020-06-11 19:59:22 +02008394 rc = eval_additive_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008395 break;
8396 case LYXP_EXPR_MULTIPLICATIVE:
Michal Vasko004d3152020-06-11 19:59:22 +02008397 rc = eval_multiplicative_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008398 break;
8399 case LYXP_EXPR_UNARY:
Michal Vasko004d3152020-06-11 19:59:22 +02008400 rc = eval_unary_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008401 break;
8402 case LYXP_EXPR_UNION:
Michal Vasko004d3152020-06-11 19:59:22 +02008403 rc = eval_union_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008404 break;
8405 case LYXP_EXPR_NONE:
Michal Vasko004d3152020-06-11 19:59:22 +02008406 rc = eval_path_expr(exp, tok_idx, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008407 break;
8408 default:
8409 LOGINT_RET(set->ctx);
8410 }
8411
8412 return rc;
8413}
8414
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008415/**
8416 * @brief Get root type.
8417 *
8418 * @param[in] ctx_node Context node.
8419 * @param[in] ctx_scnode Schema context node.
8420 * @param[in] options XPath options.
8421 * @return Root type.
8422 */
8423static enum lyxp_node_type
Radek Krejci1deb5be2020-08-26 16:43:36 +02008424lyxp_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 +01008425{
Michal Vasko6b26e742020-07-17 15:02:10 +02008426 const struct lysc_node *op;
8427
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008428 if (options & LYXP_SCNODE_ALL) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008429 /* schema */
Radek Krejci1e008d22020-08-17 11:37:37 +02008430 for (op = ctx_scnode; op && !(op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)); op = op->parent) {}
Michal Vasko6b26e742020-07-17 15:02:10 +02008431
8432 if (op || (options & LYXP_SCNODE)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008433 /* general root that can access everything */
8434 return LYXP_NODE_ROOT;
8435 } else if (!ctx_scnode || (ctx_scnode->flags & LYS_CONFIG_W)) {
8436 /* root context node can access only config data (because we said so, it is unspecified) */
8437 return LYXP_NODE_ROOT_CONFIG;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008438 }
Michal Vasko6b26e742020-07-17 15:02:10 +02008439 return LYXP_NODE_ROOT;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008440 }
8441
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008442 /* data */
Michal Vasko6b26e742020-07-17 15:02:10 +02008443 op = ctx_node ? ctx_node->schema : NULL;
Michal Vaskod989ba02020-08-24 10:59:24 +02008444 for ( ; op && !(op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)); op = op->parent) {}
Michal Vasko6b26e742020-07-17 15:02:10 +02008445
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008446 if (op || !(options & LYXP_SCHEMA)) {
8447 /* general root that can access everything */
8448 return LYXP_NODE_ROOT;
8449 } else if (!ctx_node || (ctx_node->schema->flags & LYS_CONFIG_W)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008450 /* root context node can access only config data (because we said so, it is unspecified) */
8451 return LYXP_NODE_ROOT_CONFIG;
8452 }
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008453 return LYXP_NODE_ROOT;
8454}
8455
Michal Vasko03ff5a72019-09-11 13:49:33 +02008456LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02008457lyxp_eval(const struct lyxp_expr *exp, const struct lys_module *cur_mod, LY_PREFIX_FORMAT format, void *prefix_data,
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008458 const struct lyd_node *ctx_node, const struct lyd_node *tree, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008459{
Michal Vasko004d3152020-06-11 19:59:22 +02008460 uint16_t tok_idx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008461 LY_ERR rc;
8462
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008463 LY_CHECK_ARG_RET(NULL, exp, set, LY_EINVAL);
8464 if (!cur_mod && ((format == LY_PREF_SCHEMA) || (format == LY_PREF_SCHEMA_RESOLVED))) {
8465 LOGARG(NULL, "Current module must be set if schema format is used.");
8466 return LY_EINVAL;
Michal Vasko004d3152020-06-11 19:59:22 +02008467 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02008468
8469 /* prepare set for evaluation */
Michal Vasko03ff5a72019-09-11 13:49:33 +02008470 memset(set, 0, sizeof *set);
Michal Vaskod3678892020-05-21 10:06:58 +02008471 set->type = LYXP_SET_NODE_SET;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008472 set->root_type = lyxp_get_root_type(ctx_node, NULL, options);
8473 set_insert_node(set, (struct lyd_node *)ctx_node, 0, ctx_node ? LYXP_NODE_ELEM : set->root_type, 0);
8474
8475 set->ctx = (struct ly_ctx *)(cur_mod ? cur_mod->ctx : (ctx_node ? LYD_CTX(ctx_node) : (tree ? LYD_CTX(tree) : NULL)));
8476 set->cur_node = ctx_node;
8477 for (set->context_op = ctx_node ? ctx_node->schema : NULL;
Radek Krejci0f969882020-08-21 16:56:47 +02008478 set->context_op && !(set->context_op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF));
8479 set->context_op = set->context_op->parent) {}
Michal Vaskof03ed032020-03-04 13:31:44 +01008480 set->tree = tree;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008481 set->cur_mod = cur_mod;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008482 set->format = format;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008483 set->prefix_data = prefix_data;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008484
8485 /* evaluate */
Michal Vasko004d3152020-06-11 19:59:22 +02008486 rc = eval_expr_select(exp, &tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008487 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02008488 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008489 }
8490
Michal Vasko03ff5a72019-09-11 13:49:33 +02008491 return rc;
8492}
8493
8494#if 0
8495
8496/* full xml printing of set elements, not used currently */
8497
8498void
8499lyxp_set_print_xml(FILE *f, struct lyxp_set *set)
8500{
8501 uint32_t i;
8502 char *str_num;
8503 struct lyout out;
8504
8505 memset(&out, 0, sizeof out);
8506
8507 out.type = LYOUT_STREAM;
8508 out.method.f = f;
8509
8510 switch (set->type) {
8511 case LYXP_SET_EMPTY:
Michal Vasko5233e962020-08-14 14:26:20 +02008512 ly_print_(&out, "Empty XPath set\n\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008513 break;
8514 case LYXP_SET_BOOLEAN:
Michal Vasko5233e962020-08-14 14:26:20 +02008515 ly_print_(&out, "Boolean XPath set:\n");
8516 ly_print_(&out, "%s\n\n", set->value.bool ? "true" : "false");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008517 break;
8518 case LYXP_SET_STRING:
Michal Vasko5233e962020-08-14 14:26:20 +02008519 ly_print_(&out, "String XPath set:\n");
8520 ly_print_(&out, "\"%s\"\n\n", set->value.str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008521 break;
8522 case LYXP_SET_NUMBER:
Michal Vasko5233e962020-08-14 14:26:20 +02008523 ly_print_(&out, "Number XPath set:\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008524
8525 if (isnan(set->value.num)) {
8526 str_num = strdup("NaN");
8527 } else if ((set->value.num == 0) || (set->value.num == -0.0f)) {
8528 str_num = strdup("0");
8529 } else if (isinf(set->value.num) && !signbit(set->value.num)) {
8530 str_num = strdup("Infinity");
8531 } else if (isinf(set->value.num) && signbit(set->value.num)) {
8532 str_num = strdup("-Infinity");
8533 } else if ((long long)set->value.num == set->value.num) {
8534 if (asprintf(&str_num, "%lld", (long long)set->value.num) == -1) {
8535 str_num = NULL;
8536 }
8537 } else {
8538 if (asprintf(&str_num, "%03.1Lf", set->value.num) == -1) {
8539 str_num = NULL;
8540 }
8541 }
8542 if (!str_num) {
8543 LOGMEM;
8544 return;
8545 }
Michal Vasko5233e962020-08-14 14:26:20 +02008546 ly_print_(&out, "%s\n\n", str_num);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008547 free(str_num);
8548 break;
8549 case LYXP_SET_NODE_SET:
Michal Vasko5233e962020-08-14 14:26:20 +02008550 ly_print_(&out, "Node XPath set:\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008551
8552 for (i = 0; i < set->used; ++i) {
Michal Vasko5233e962020-08-14 14:26:20 +02008553 ly_print_(&out, "%d. ", i + 1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008554 switch (set->node_type[i]) {
8555 case LYXP_NODE_ROOT_ALL:
Michal Vasko5233e962020-08-14 14:26:20 +02008556 ly_print_(&out, "ROOT all\n\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008557 break;
8558 case LYXP_NODE_ROOT_CONFIG:
Michal Vasko5233e962020-08-14 14:26:20 +02008559 ly_print_(&out, "ROOT config\n\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008560 break;
8561 case LYXP_NODE_ROOT_STATE:
Michal Vasko5233e962020-08-14 14:26:20 +02008562 ly_print_(&out, "ROOT state\n\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008563 break;
8564 case LYXP_NODE_ROOT_NOTIF:
Michal Vasko5233e962020-08-14 14:26:20 +02008565 ly_print_(&out, "ROOT notification \"%s\"\n\n", set->value.nodes[i]->schema->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008566 break;
8567 case LYXP_NODE_ROOT_RPC:
Michal Vasko5233e962020-08-14 14:26:20 +02008568 ly_print_(&out, "ROOT rpc \"%s\"\n\n", set->value.nodes[i]->schema->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008569 break;
8570 case LYXP_NODE_ROOT_OUTPUT:
Michal Vasko5233e962020-08-14 14:26:20 +02008571 ly_print_(&out, "ROOT output \"%s\"\n\n", set->value.nodes[i]->schema->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008572 break;
8573 case LYXP_NODE_ELEM:
Michal Vasko5233e962020-08-14 14:26:20 +02008574 ly_print_(&out, "ELEM \"%s\"\n", set->value.nodes[i]->schema->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008575 xml_print_node(&out, 1, set->value.nodes[i], 1, LYP_FORMAT);
Michal Vasko5233e962020-08-14 14:26:20 +02008576 ly_print_(&out, "\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008577 break;
8578 case LYXP_NODE_TEXT:
Michal Vasko5233e962020-08-14 14:26:20 +02008579 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 +02008580 break;
8581 case LYXP_NODE_ATTR:
Michal Vasko5233e962020-08-14 14:26:20 +02008582 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 +02008583 break;
8584 }
8585 }
8586 break;
8587 }
8588}
8589
8590#endif
8591
8592LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008593lyxp_set_cast(struct lyxp_set *set, enum lyxp_set_type target)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008594{
8595 long double num;
8596 char *str;
8597 LY_ERR rc;
8598
8599 if (!set || (set->type == target)) {
8600 return LY_SUCCESS;
8601 }
8602
8603 /* it's not possible to convert anything into a node set */
Michal Vaskod3678892020-05-21 10:06:58 +02008604 assert(target != LYXP_SET_NODE_SET);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008605
8606 if (set->type == LYXP_SET_SCNODE_SET) {
Michal Vaskod3678892020-05-21 10:06:58 +02008607 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008608 return LY_EINVAL;
8609 }
8610
8611 /* to STRING */
Michal Vaskod3678892020-05-21 10:06:58 +02008612 if ((target == LYXP_SET_STRING) || ((target == LYXP_SET_NUMBER) && (set->type == LYXP_SET_NODE_SET))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008613 switch (set->type) {
8614 case LYXP_SET_NUMBER:
8615 if (isnan(set->val.num)) {
8616 set->val.str = strdup("NaN");
8617 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
8618 } else if ((set->val.num == 0) || (set->val.num == -0.0f)) {
8619 set->val.str = strdup("0");
8620 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
8621 } else if (isinf(set->val.num) && !signbit(set->val.num)) {
8622 set->val.str = strdup("Infinity");
8623 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
8624 } else if (isinf(set->val.num) && signbit(set->val.num)) {
8625 set->val.str = strdup("-Infinity");
8626 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
8627 } else if ((long long)set->val.num == set->val.num) {
8628 if (asprintf(&str, "%lld", (long long)set->val.num) == -1) {
8629 LOGMEM_RET(set->ctx);
8630 }
8631 set->val.str = str;
8632 } else {
8633 if (asprintf(&str, "%03.1Lf", set->val.num) == -1) {
8634 LOGMEM_RET(set->ctx);
8635 }
8636 set->val.str = str;
8637 }
8638 break;
8639 case LYXP_SET_BOOLEAN:
Michal Vasko004d3152020-06-11 19:59:22 +02008640 if (set->val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008641 set->val.str = strdup("true");
8642 } else {
8643 set->val.str = strdup("false");
8644 }
8645 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), LY_EMEM);
8646 break;
8647 case LYXP_SET_NODE_SET:
8648 assert(set->used);
8649
8650 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008651 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02008652
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008653 rc = cast_node_set_to_string(set, &str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008654 LY_CHECK_RET(rc);
Michal Vaskod3678892020-05-21 10:06:58 +02008655 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008656 set->val.str = str;
8657 break;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008658 default:
8659 LOGINT_RET(set->ctx);
8660 }
8661 set->type = LYXP_SET_STRING;
8662 }
8663
8664 /* to NUMBER */
8665 if (target == LYXP_SET_NUMBER) {
8666 switch (set->type) {
8667 case LYXP_SET_STRING:
8668 num = cast_string_to_number(set->val.str);
Michal Vaskod3678892020-05-21 10:06:58 +02008669 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008670 set->val.num = num;
8671 break;
8672 case LYXP_SET_BOOLEAN:
Michal Vasko004d3152020-06-11 19:59:22 +02008673 if (set->val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008674 set->val.num = 1;
8675 } else {
8676 set->val.num = 0;
8677 }
8678 break;
8679 default:
8680 LOGINT_RET(set->ctx);
8681 }
8682 set->type = LYXP_SET_NUMBER;
8683 }
8684
8685 /* to BOOLEAN */
8686 if (target == LYXP_SET_BOOLEAN) {
8687 switch (set->type) {
8688 case LYXP_SET_NUMBER:
8689 if ((set->val.num == 0) || (set->val.num == -0.0f) || isnan(set->val.num)) {
Michal Vasko004d3152020-06-11 19:59:22 +02008690 set->val.bln = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008691 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02008692 set->val.bln = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008693 }
8694 break;
8695 case LYXP_SET_STRING:
8696 if (set->val.str[0]) {
Michal Vaskod3678892020-05-21 10:06:58 +02008697 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02008698 set->val.bln = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008699 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02008700 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02008701 set->val.bln = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008702 }
8703 break;
8704 case LYXP_SET_NODE_SET:
Michal Vaskod3678892020-05-21 10:06:58 +02008705 if (set->used) {
8706 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02008707 set->val.bln = 1;
Michal Vaskod3678892020-05-21 10:06:58 +02008708 } else {
8709 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02008710 set->val.bln = 0;
Michal Vaskod3678892020-05-21 10:06:58 +02008711 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02008712 break;
8713 default:
8714 LOGINT_RET(set->ctx);
8715 }
8716 set->type = LYXP_SET_BOOLEAN;
8717 }
8718
Michal Vasko03ff5a72019-09-11 13:49:33 +02008719 return LY_SUCCESS;
8720}
8721
8722LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02008723lyxp_atomize(const struct lyxp_expr *exp, const struct lys_module *cur_mod, LY_PREFIX_FORMAT format, void *prefix_data,
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008724 const struct lysc_node *ctx_scnode, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008725{
Michal Vasko004d3152020-06-11 19:59:22 +02008726 uint16_t tok_idx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008727
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008728 LY_CHECK_ARG_RET(NULL, exp, set, LY_EINVAL);
8729 if (!cur_mod && ((format == LY_PREF_SCHEMA) || (format == LY_PREF_SCHEMA_RESOLVED))) {
8730 LOGARG(NULL, "Current module must be set if schema format is used.");
8731 return LY_EINVAL;
Michal Vasko004d3152020-06-11 19:59:22 +02008732 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02008733
8734 /* prepare set for evaluation */
Michal Vasko03ff5a72019-09-11 13:49:33 +02008735 memset(set, 0, sizeof *set);
8736 set->type = LYXP_SET_SCNODE_SET;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008737 set->root_type = lyxp_get_root_type(NULL, ctx_scnode, options);
8738 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, ctx_scnode, ctx_scnode ? LYXP_NODE_ELEM : set->root_type, NULL));
Michal Vasko5c4e5892019-11-14 12:31:38 +01008739 set->val.scnodes[0].in_ctx = -2;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008740
8741 set->ctx = cur_mod ? cur_mod->ctx : (ctx_scnode ? ctx_scnode->module->ctx : NULL);
8742 set->cur_scnode = ctx_scnode;
Michal Vasko6b26e742020-07-17 15:02:10 +02008743 for (set->context_op = ctx_scnode;
Radek Krejci0f969882020-08-21 16:56:47 +02008744 set->context_op && !(set->context_op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF));
8745 set->context_op = set->context_op->parent) {}
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008746 set->cur_mod = cur_mod;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008747 set->format = format;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008748 set->prefix_data = prefix_data;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008749
8750 /* evaluate */
Michal Vasko004d3152020-06-11 19:59:22 +02008751 return eval_expr_select(exp, &tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008752}
Michal Vaskod43d71a2020-08-07 14:54:58 +02008753
8754API const char *
8755lyxp_get_expr(const struct lyxp_expr *path)
8756{
8757 if (!path) {
8758 return NULL;
8759 }
8760
8761 return path->expr;
8762}