blob: 9f9e9113127d69964eb218f21980a0edfd316558 [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>
24#include <limits.h>
25#include <math.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020026#include <stdint.h>
Radek Krejcib1646a92018-11-02 16:08:26 +010027#include <stdio.h>
28#include <stdlib.h>
Radek Krejcib1646a92018-11-02 16:08:26 +010029#include <string.h>
Radek Krejcib1646a92018-11-02 16:08:26 +010030
Radek Krejci535ea9f2020-05-29 16:01:05 +020031#include "common.h"
Michal Vasko5aa44c02020-06-29 11:47:02 +020032#include "compat.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020033#include "context.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020034#include "dict.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020035#include "hash_table.h"
Radek 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.h"
40#include "printer_data.h"
41#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);
47static LY_ERR eval_expr_select(struct lyxp_expr *exp, uint16_t *tok_idx, enum lyxp_expr_type etype, struct lyxp_set *set, int options);
Michal Vasko03ff5a72019-09-11 13:49:33 +020048
49/**
50 * @brief Print the type of an XPath \p set.
51 *
52 * @param[in] set Set to use.
53 * @return Set type string.
54 */
55static const char *
56print_set_type(struct lyxp_set *set)
57{
58 switch (set->type) {
Michal Vasko03ff5a72019-09-11 13:49:33 +020059 case LYXP_SET_NODE_SET:
60 return "node set";
61 case LYXP_SET_SCNODE_SET:
62 return "schema node set";
63 case LYXP_SET_BOOLEAN:
64 return "boolean";
65 case LYXP_SET_NUMBER:
66 return "number";
67 case LYXP_SET_STRING:
68 return "string";
69 }
70
71 return NULL;
72}
73
Michal Vasko24cddf82020-06-01 08:17:01 +020074const char *
75lyxp_print_token(enum lyxp_token tok)
Michal Vasko03ff5a72019-09-11 13:49:33 +020076{
77 switch (tok) {
78 case LYXP_TOKEN_PAR1:
79 return "(";
80 case LYXP_TOKEN_PAR2:
81 return ")";
82 case LYXP_TOKEN_BRACK1:
83 return "[";
84 case LYXP_TOKEN_BRACK2:
85 return "]";
86 case LYXP_TOKEN_DOT:
87 return ".";
88 case LYXP_TOKEN_DDOT:
89 return "..";
90 case LYXP_TOKEN_AT:
91 return "@";
92 case LYXP_TOKEN_COMMA:
93 return ",";
94 case LYXP_TOKEN_NAMETEST:
95 return "NameTest";
96 case LYXP_TOKEN_NODETYPE:
97 return "NodeType";
98 case LYXP_TOKEN_FUNCNAME:
99 return "FunctionName";
Michal Vasko3e48bf32020-06-01 08:39:07 +0200100 case LYXP_TOKEN_OPER_LOG:
Michal Vasko03ff5a72019-09-11 13:49:33 +0200101 return "Operator(Logic)";
Michal Vasko3e48bf32020-06-01 08:39:07 +0200102 case LYXP_TOKEN_OPER_EQUAL:
103 return "Operator(Equal)";
104 case LYXP_TOKEN_OPER_NEQUAL:
105 return "Operator(Non-equal)";
106 case LYXP_TOKEN_OPER_COMP:
Michal Vasko03ff5a72019-09-11 13:49:33 +0200107 return "Operator(Comparison)";
Michal Vasko3e48bf32020-06-01 08:39:07 +0200108 case LYXP_TOKEN_OPER_MATH:
Michal Vasko03ff5a72019-09-11 13:49:33 +0200109 return "Operator(Math)";
Michal Vasko3e48bf32020-06-01 08:39:07 +0200110 case LYXP_TOKEN_OPER_UNI:
Michal Vasko03ff5a72019-09-11 13:49:33 +0200111 return "Operator(Union)";
Michal Vasko3e48bf32020-06-01 08:39:07 +0200112 case LYXP_TOKEN_OPER_PATH:
Michal Vasko03ff5a72019-09-11 13:49:33 +0200113 return "Operator(Path)";
Michal Vasko3e48bf32020-06-01 08:39:07 +0200114 case LYXP_TOKEN_OPER_RPATH:
Michal Vasko14676352020-05-29 11:35:55 +0200115 return "Operator(Recursive Path)";
Michal Vasko03ff5a72019-09-11 13:49:33 +0200116 case LYXP_TOKEN_LITERAL:
117 return "Literal";
118 case LYXP_TOKEN_NUMBER:
119 return "Number";
120 default:
121 LOGINT(NULL);
122 return "";
123 }
124}
125
126/**
127 * @brief Print the whole expression \p exp to debug output.
128 *
129 * @param[in] exp Expression to use.
130 */
131static void
132print_expr_struct_debug(struct lyxp_expr *exp)
133{
134 uint16_t i, j;
135 char tmp[128];
136
137 if (!exp || (ly_log_level < LY_LLDBG)) {
138 return;
139 }
140
141 LOGDBG(LY_LDGXPATH, "expression \"%s\":", exp->expr);
142 for (i = 0; i < exp->used; ++i) {
Michal Vasko24cddf82020-06-01 08:17:01 +0200143 sprintf(tmp, "\ttoken %s, in expression \"%.*s\"", lyxp_print_token(exp->tokens[i]), exp->tok_len[i],
Michal Vasko03ff5a72019-09-11 13:49:33 +0200144 &exp->expr[exp->tok_pos[i]]);
145 if (exp->repeat[i]) {
146 sprintf(tmp + strlen(tmp), " (repeat %d", exp->repeat[i][0]);
147 for (j = 1; exp->repeat[i][j]; ++j) {
148 sprintf(tmp + strlen(tmp), ", %d", exp->repeat[i][j]);
149 }
150 strcat(tmp, ")");
151 }
152 LOGDBG(LY_LDGXPATH, tmp);
153 }
154}
155
156#ifndef NDEBUG
157
158/**
159 * @brief Print XPath set content to debug output.
160 *
161 * @param[in] set Set to print.
162 */
163static void
164print_set_debug(struct lyxp_set *set)
165{
166 uint32_t i;
167 char *str;
168 int dynamic;
169 struct lyxp_set_node *item;
170 struct lyxp_set_scnode *sitem;
171
172 if (ly_log_level < LY_LLDBG) {
173 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:
193 if ((item->node->schema->nodetype == LYS_LIST)
194 && (((struct lyd_node_inner *)item->node)->child->schema->nodetype == LYS_LEAF)) {
195 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ELEM %s (1st child val: %s)", i + 1, item->pos,
196 item->node->schema->name,
Michal Vasko5bfd4be2020-06-23 13:26:19 +0200197 (str = (char *)lyd_value2str((struct lyd_node_term *)lyd_node_children(item->node, 0), &dynamic)));
Michal Vasko03ff5a72019-09-11 13:49:33 +0200198 if (dynamic) {
199 free(str);
200 }
201 } else if (((struct lyd_node_inner *)item->node)->schema->nodetype == LYS_LEAFLIST) {
202 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ELEM %s (val: %s)", i + 1, item->pos,
203 item->node->schema->name,
204 (str = (char *)lyd_value2str((struct lyd_node_term *)item->node, &dynamic)));
205 if (dynamic) {
206 free(str);
207 }
208 } else {
209 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ELEM %s", i + 1, item->pos, item->node->schema->name);
210 }
211 break;
212 case LYXP_NODE_TEXT:
213 if (item->node->schema->nodetype & LYS_ANYDATA) {
214 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): TEXT <%s>", i + 1, item->pos,
215 item->node->schema->nodetype == LYS_ANYXML ? "anyxml" : "anydata");
216 } else {
217 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): TEXT %s", i + 1, item->pos,
218 (str = (char *)lyd_value2str((struct lyd_node_term *)item->node, &dynamic)));
219 if (dynamic) {
220 free(str);
221 }
222 }
223 break;
Michal Vasko9f96a052020-03-10 09:41:45 +0100224 case LYXP_NODE_META:
225 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): META %s = %s", i + 1, item->pos, set->val.meta[i].meta->name,
226 set->val.meta[i].meta->value);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200227 break;
228 }
229 }
230 break;
231
232 case LYXP_SET_SCNODE_SET:
233 LOGDBG(LY_LDGXPATH, "set SCNODE SET:");
234 for (i = 0; i < set->used; ++i) {
235 sitem = &set->val.scnodes[i];
236
237 switch (sitem->type) {
238 case LYXP_NODE_ROOT:
239 LOGDBG(LY_LDGXPATH, "\t%d (%u): ROOT", i + 1, sitem->in_ctx);
240 break;
241 case LYXP_NODE_ROOT_CONFIG:
242 LOGDBG(LY_LDGXPATH, "\t%d (%u): ROOT CONFIG", i + 1, sitem->in_ctx);
243 break;
244 case LYXP_NODE_ELEM:
245 LOGDBG(LY_LDGXPATH, "\t%d (%u): ELEM %s", i + 1, sitem->in_ctx, sitem->scnode->name);
246 break;
247 default:
248 LOGINT(NULL);
249 break;
250 }
251 }
252 break;
253
Michal Vasko03ff5a72019-09-11 13:49:33 +0200254 case LYXP_SET_BOOLEAN:
255 LOGDBG(LY_LDGXPATH, "set BOOLEAN");
Michal Vasko004d3152020-06-11 19:59:22 +0200256 LOGDBG(LY_LDGXPATH, "\t%s", (set->val.bln ? "true" : "false"));
Michal Vasko03ff5a72019-09-11 13:49:33 +0200257 break;
258
259 case LYXP_SET_STRING:
260 LOGDBG(LY_LDGXPATH, "set STRING");
261 LOGDBG(LY_LDGXPATH, "\t%s", set->val.str);
262 break;
263
264 case LYXP_SET_NUMBER:
265 LOGDBG(LY_LDGXPATH, "set NUMBER");
266
267 if (isnan(set->val.num)) {
268 str = strdup("NaN");
269 } else if ((set->val.num == 0) || (set->val.num == -0.0f)) {
270 str = strdup("0");
271 } else if (isinf(set->val.num) && !signbit(set->val.num)) {
272 str = strdup("Infinity");
273 } else if (isinf(set->val.num) && signbit(set->val.num)) {
274 str = strdup("-Infinity");
275 } else if ((long long)set->val.num == set->val.num) {
276 if (asprintf(&str, "%lld", (long long)set->val.num) == -1) {
277 str = NULL;
278 }
279 } else {
280 if (asprintf(&str, "%03.1Lf", set->val.num) == -1) {
281 str = NULL;
282 }
283 }
284 LY_CHECK_ERR_RET(!str, LOGMEM(NULL), );
285
286 LOGDBG(LY_LDGXPATH, "\t%s", str);
287 free(str);
288 }
289}
290
291#endif
292
293/**
294 * @brief Realloc the string \p str.
295 *
296 * @param[in] ctx libyang context for logging.
297 * @param[in] needed How much free space is required.
298 * @param[in,out] str Pointer to the string to use.
299 * @param[in,out] used Used bytes in \p str.
300 * @param[in,out] size Allocated bytes in \p str.
301 * @return LY_ERR
302 */
303static LY_ERR
Michal Vasko52927e22020-03-16 17:26:14 +0100304cast_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 +0200305{
306 if (*size - *used < needed) {
307 do {
308 if ((UINT16_MAX - *size) < LYXP_STRING_CAST_SIZE_STEP) {
309 LOGERR(ctx, LY_EINVAL, "XPath string length limit (%u) reached.", UINT16_MAX);
310 return LY_EINVAL;
311 }
312 *size += LYXP_STRING_CAST_SIZE_STEP;
313 } while (*size - *used < needed);
314 *str = ly_realloc(*str, *size * sizeof(char));
315 LY_CHECK_ERR_RET(!(*str), LOGMEM(ctx), LY_EMEM);
316 }
317
318 return LY_SUCCESS;
319}
320
321/**
322 * @brief Cast nodes recursively to one string @p str.
323 *
324 * @param[in] node Node to cast.
325 * @param[in] fake_cont Whether to put the data into a "fake" container.
326 * @param[in] root_type Type of the XPath root.
327 * @param[in] indent Current indent.
328 * @param[in,out] str Resulting string.
329 * @param[in,out] used Used bytes in @p str.
330 * @param[in,out] size Allocated bytes in @p str.
331 * @return LY_ERR
332 */
333static LY_ERR
334cast_string_recursive(const struct lyd_node *node, int fake_cont, enum lyxp_node_type root_type, uint16_t indent, char **str,
335 uint16_t *used, uint16_t *size)
336{
Radek Krejci7f769d72020-07-11 23:13:56 +0200337 char *buf, *line, *ptr = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200338 const char *value_str;
339 int dynamic;
340 const struct lyd_node *child;
Michal Vasko60ea6352020-06-29 13:39:39 +0200341 struct lyd_node *tree;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200342 struct lyd_node_any *any;
343 LY_ERR rc;
344
345 if ((root_type == LYXP_NODE_ROOT_CONFIG) && (node->schema->flags & LYS_CONFIG_R)) {
346 return LY_SUCCESS;
347 }
348
349 if (fake_cont) {
350 rc = cast_string_realloc(LYD_NODE_CTX(node), 1, str, used, size);
351 LY_CHECK_RET(rc);
352 strcpy(*str + (*used - 1), "\n");
353 ++(*used);
354
355 ++indent;
356 }
357
358 switch (node->schema->nodetype) {
359 case LYS_CONTAINER:
360 case LYS_LIST:
361 case LYS_RPC:
362 case LYS_NOTIF:
363 rc = cast_string_realloc(LYD_NODE_CTX(node), 1, str, used, size);
364 LY_CHECK_RET(rc);
365 strcpy(*str + (*used - 1), "\n");
366 ++(*used);
367
Michal Vasko5bfd4be2020-06-23 13:26:19 +0200368 for (child = lyd_node_children(node, 0); child; child = child->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200369 rc = cast_string_recursive(child, 0, root_type, indent + 1, str, used, size);
370 LY_CHECK_RET(rc);
371 }
372
373 break;
374
375 case LYS_LEAF:
376 case LYS_LEAFLIST:
377 value_str = lyd_value2str(((struct lyd_node_term *)node), &dynamic);
378
379 /* print indent */
380 rc = cast_string_realloc(LYD_NODE_CTX(node), indent * 2 + strlen(value_str) + 1, str, used, size);
381 if (rc != LY_SUCCESS) {
382 if (dynamic) {
383 free((char *)value_str);
384 }
385 return rc;
386 }
387 memset(*str + (*used - 1), ' ', indent * 2);
388 *used += indent * 2;
389
390 /* print value */
391 if (*used == 1) {
392 sprintf(*str + (*used - 1), "%s", value_str);
393 *used += strlen(value_str);
394 } else {
395 sprintf(*str + (*used - 1), "%s\n", value_str);
396 *used += strlen(value_str) + 1;
397 }
398 if (dynamic) {
399 free((char *)value_str);
400 }
401
402 break;
403
404 case LYS_ANYXML:
405 case LYS_ANYDATA:
406 any = (struct lyd_node_any *)node;
407 if (!(void *)any->value.tree) {
408 /* no content */
409 buf = strdup("");
410 LY_CHECK_ERR_RET(!buf, LOGMEM(LYD_NODE_CTX(node)), LY_EMEM);
411 } else {
Radek Krejci241f6b52020-05-21 18:13:49 +0200412 struct ly_out *out;
Radek Krejcia5bba312020-01-09 15:41:20 +0100413
Michal Vasko60ea6352020-06-29 13:39:39 +0200414 if (any->value_type == LYD_ANYDATA_LYB) {
415 /* try to parse it into a data tree */
Radek Krejci7931b192020-06-25 17:05:03 +0200416 if (lyd_parse_data_mem((struct ly_ctx *)LYD_NODE_CTX(node), any->value.mem, LYD_LYB, LYD_PARSE_ONLY | LYD_PARSE_STRICT, 0, &tree) == LY_SUCCESS) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200417 /* successfully parsed */
418 free(any->value.mem);
419 any->value.tree = tree;
420 any->value_type = LYD_ANYDATA_DATATREE;
421 }
Radek Krejci7931b192020-06-25 17:05:03 +0200422 /* error is covered by the following switch where LYD_ANYDATA_LYB causes failure */
Michal Vasko60ea6352020-06-29 13:39:39 +0200423 }
424
Michal Vasko03ff5a72019-09-11 13:49:33 +0200425 switch (any->value_type) {
426 case LYD_ANYDATA_STRING:
427 case LYD_ANYDATA_XML:
428 case LYD_ANYDATA_JSON:
429 buf = strdup(any->value.json);
430 LY_CHECK_ERR_RET(!buf, LOGMEM(LYD_NODE_CTX(node)), LY_EMEM);
431 break;
432 case LYD_ANYDATA_DATATREE:
Radek Krejci84ce7b12020-06-11 17:28:25 +0200433 LY_CHECK_RET(ly_out_new_memory(&buf, 0, &out));
Michal Vasko3a41dff2020-07-15 14:30:28 +0200434 rc = lyd_print_all(out, any->value.tree, LYD_XML, 0);
Radek Krejci241f6b52020-05-21 18:13:49 +0200435 ly_out_free(out, NULL, 0);
Radek Krejcia5bba312020-01-09 15:41:20 +0100436 LY_CHECK_RET(rc < 0, -rc);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200437 break;
Michal Vasko60ea6352020-06-29 13:39:39 +0200438 case LYD_ANYDATA_LYB:
Michal Vasko03ff5a72019-09-11 13:49:33 +0200439 LOGERR(LYD_NODE_CTX(node), LY_EINVAL, "Cannot convert LYB anydata into string.");
Michal Vasko60ea6352020-06-29 13:39:39 +0200440 return LY_EINVAL;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200441 }
442 }
443
444 line = strtok_r(buf, "\n", &ptr);
445 do {
446 rc = cast_string_realloc(LYD_NODE_CTX(node), indent * 2 + strlen(line) + 1, str, used, size);
447 if (rc != LY_SUCCESS) {
448 free(buf);
449 return rc;
450 }
451 memset(*str + (*used - 1), ' ', indent * 2);
452 *used += indent * 2;
453
454 strcpy(*str + (*used - 1), line);
455 *used += strlen(line);
456
457 strcpy(*str + (*used - 1), "\n");
458 *used += 1;
459 } while ((line = strtok_r(NULL, "\n", &ptr)));
460
461 free(buf);
462 break;
463
464 default:
465 LOGINT_RET(LYD_NODE_CTX(node));
466 }
467
468 if (fake_cont) {
469 rc = cast_string_realloc(LYD_NODE_CTX(node), 1, str, used, size);
470 LY_CHECK_RET(rc);
471 strcpy(*str + (*used - 1), "\n");
472 ++(*used);
473
474 --indent;
475 }
476
477 return LY_SUCCESS;
478}
479
480/**
481 * @brief Cast an element into a string.
482 *
483 * @param[in] node Node to cast.
484 * @param[in] fake_cont Whether to put the data into a "fake" container.
485 * @param[in] root_type Type of the XPath root.
486 * @param[out] str Element cast to dynamically-allocated string.
487 * @return LY_ERR
488 */
489static LY_ERR
490cast_string_elem(struct lyd_node *node, int fake_cont, enum lyxp_node_type root_type, char **str)
491{
492 uint16_t used, size;
493 LY_ERR rc;
494
495 *str = malloc(LYXP_STRING_CAST_SIZE_START * sizeof(char));
496 LY_CHECK_ERR_RET(!*str, LOGMEM(LYD_NODE_CTX(node)), LY_EMEM);
497 (*str)[0] = '\0';
498 used = 1;
499 size = LYXP_STRING_CAST_SIZE_START;
500
501 rc = cast_string_recursive(node, fake_cont, root_type, 0, str, &used, &size);
502 if (rc != LY_SUCCESS) {
503 free(*str);
504 return rc;
505 }
506
507 if (size > used) {
508 *str = ly_realloc(*str, used * sizeof(char));
509 LY_CHECK_ERR_RET(!*str, LOGMEM(LYD_NODE_CTX(node)), LY_EMEM);
510 }
511 return LY_SUCCESS;
512}
513
514/**
515 * @brief Cast a LYXP_SET_NODE_SET set into a string.
516 * Context position aware.
517 *
518 * @param[in] set Set to cast.
Michal Vasko03ff5a72019-09-11 13:49:33 +0200519 * @param[out] str Cast dynamically-allocated string.
520 * @return LY_ERR
521 */
522static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +0100523cast_node_set_to_string(struct lyxp_set *set, char **str)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200524{
Michal Vasko03ff5a72019-09-11 13:49:33 +0200525 int dynamic;
526
Michal Vasko03ff5a72019-09-11 13:49:33 +0200527 switch (set->val.nodes[0].type) {
Michal Vasko2caefc12019-11-14 16:07:56 +0100528 case LYXP_NODE_NONE:
529 /* invalid */
530 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200531 case LYXP_NODE_ROOT:
532 case LYXP_NODE_ROOT_CONFIG:
Michal Vasko5e0e6eb2019-11-06 15:47:50 +0100533 return cast_string_elem(set->val.nodes[0].node, 1, set->root_type, str);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200534 case LYXP_NODE_ELEM:
535 case LYXP_NODE_TEXT:
Michal Vasko5e0e6eb2019-11-06 15:47:50 +0100536 return cast_string_elem(set->val.nodes[0].node, 0, set->root_type, str);
Michal Vasko9f96a052020-03-10 09:41:45 +0100537 case LYXP_NODE_META:
538 *str = (char *)lyd_meta2str(set->val.meta[0].meta, &dynamic);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200539 if (!dynamic) {
540 *str = strdup(*str);
541 if (!*str) {
542 LOGMEM_RET(set->ctx);
543 }
544 }
545 return LY_SUCCESS;
546 }
547
548 LOGINT_RET(set->ctx);
549}
550
551/**
552 * @brief Cast a string into an XPath number.
553 *
554 * @param[in] str String to use.
555 * @return Cast number.
556 */
557static long double
558cast_string_to_number(const char *str)
559{
560 long double num;
561 char *ptr;
562
563 errno = 0;
564 num = strtold(str, &ptr);
565 if (errno || *ptr) {
566 num = NAN;
567 }
568 return num;
569}
570
571/**
572 * @brief Callback for checking value equality.
573 *
574 * @param[in] val1_p First value.
575 * @param[in] val2_p Second value.
576 * @param[in] mod Whether hash table is being modified.
577 * @param[in] cb_data Callback data.
578 * @return 0 if not equal, non-zero if equal.
579 */
580static int
581set_values_equal_cb(void *val1_p, void *val2_p, int UNUSED(mod), void *UNUSED(cb_data))
582{
583 struct lyxp_set_hash_node *val1, *val2;
584
585 val1 = (struct lyxp_set_hash_node *)val1_p;
586 val2 = (struct lyxp_set_hash_node *)val2_p;
587
588 if ((val1->node == val2->node) && (val1->type == val2->type)) {
589 return 1;
590 }
591
592 return 0;
593}
594
595/**
596 * @brief Insert node and its hash into set.
597 *
598 * @param[in] set et to insert to.
599 * @param[in] node Node with hash.
600 * @param[in] type Node type.
601 */
602static void
603set_insert_node_hash(struct lyxp_set *set, struct lyd_node *node, enum lyxp_node_type type)
604{
605 int r;
606 uint32_t i, hash;
607 struct lyxp_set_hash_node hnode;
608
609 if (!set->ht && (set->used >= LYD_HT_MIN_ITEMS)) {
610 /* create hash table and add all the nodes */
611 set->ht = lyht_new(1, sizeof(struct lyxp_set_hash_node), set_values_equal_cb, NULL, 1);
612 for (i = 0; i < set->used; ++i) {
613 hnode.node = set->val.nodes[i].node;
614 hnode.type = set->val.nodes[i].type;
615
616 hash = dict_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node);
617 hash = dict_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type);
618 hash = dict_hash_multi(hash, NULL, 0);
619
620 r = lyht_insert(set->ht, &hnode, hash, NULL);
621 assert(!r);
622 (void)r;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200623
Michal Vasko9d6befd2019-12-11 14:56:56 +0100624 if (hnode.node == node) {
625 /* it was just added, do not add it twice */
626 node = NULL;
627 }
628 }
629 }
630
631 if (set->ht && node) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200632 /* add the new node into hash table */
633 hnode.node = node;
634 hnode.type = type;
635
636 hash = dict_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node);
637 hash = dict_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type);
638 hash = dict_hash_multi(hash, NULL, 0);
639
640 r = lyht_insert(set->ht, &hnode, hash, NULL);
641 assert(!r);
642 (void)r;
643 }
644}
645
646/**
647 * @brief Remove node and its hash from set.
648 *
649 * @param[in] set Set to remove from.
650 * @param[in] node Node to remove.
651 * @param[in] type Node type.
652 */
653static void
654set_remove_node_hash(struct lyxp_set *set, struct lyd_node *node, enum lyxp_node_type type)
655{
656 int r;
657 struct lyxp_set_hash_node hnode;
658 uint32_t hash;
659
660 if (set->ht) {
661 hnode.node = node;
662 hnode.type = type;
663
664 hash = dict_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node);
665 hash = dict_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type);
666 hash = dict_hash_multi(hash, NULL, 0);
667
668 r = lyht_remove(set->ht, &hnode, hash);
669 assert(!r);
670 (void)r;
671
672 if (!set->ht->used) {
673 lyht_free(set->ht);
674 set->ht = NULL;
675 }
676 }
677}
678
679/**
680 * @brief Check whether node is in set based on its hash.
681 *
682 * @param[in] set Set to search in.
683 * @param[in] node Node to search for.
684 * @param[in] type Node type.
685 * @param[in] skip_idx Index in @p set to skip.
686 * @return LY_ERR
687 */
688static LY_ERR
689set_dup_node_hash_check(const struct lyxp_set *set, struct lyd_node *node, enum lyxp_node_type type, int skip_idx)
690{
691 struct lyxp_set_hash_node hnode, *match_p;
692 uint32_t hash;
693
694 hnode.node = node;
695 hnode.type = type;
696
697 hash = dict_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node);
698 hash = dict_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type);
699 hash = dict_hash_multi(hash, NULL, 0);
700
701 if (!lyht_find(set->ht, &hnode, hash, (void **)&match_p)) {
702 if ((skip_idx > -1) && (set->val.nodes[skip_idx].node == match_p->node) && (set->val.nodes[skip_idx].type == match_p->type)) {
703 /* we found it on the index that should be skipped, find another */
704 hnode = *match_p;
705 if (lyht_find_next(set->ht, &hnode, hash, (void **)&match_p)) {
706 /* none other found */
707 return LY_SUCCESS;
708 }
709 }
710
711 return LY_EEXIST;
712 }
713
714 /* not found */
715 return LY_SUCCESS;
716}
717
Michal Vaskod3678892020-05-21 10:06:58 +0200718void
719lyxp_set_free_content(struct lyxp_set *set)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200720{
721 if (!set) {
722 return;
723 }
724
725 if (set->type == LYXP_SET_NODE_SET) {
726 free(set->val.nodes);
727 lyht_free(set->ht);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200728 } else if (set->type == LYXP_SET_SCNODE_SET) {
729 free(set->val.scnodes);
Michal Vaskod3678892020-05-21 10:06:58 +0200730 lyht_free(set->ht);
731 } else {
732 if (set->type == LYXP_SET_STRING) {
733 free(set->val.str);
734 }
735 set->type = LYXP_SET_NODE_SET;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200736 }
Michal Vaskod3678892020-05-21 10:06:58 +0200737
738 set->val.nodes = NULL;
739 set->used = 0;
740 set->size = 0;
741 set->ht = NULL;
742 set->ctx_pos = 0;
743 set->ctx_pos = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200744}
745
Michal Vasko5e0e6eb2019-11-06 15:47:50 +0100746/**
747 * @brief Free dynamically-allocated set.
748 *
749 * @param[in] set Set to free.
750 */
751static void
Michal Vasko03ff5a72019-09-11 13:49:33 +0200752lyxp_set_free(struct lyxp_set *set)
753{
754 if (!set) {
755 return;
756 }
757
Michal Vaskod3678892020-05-21 10:06:58 +0200758 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200759 free(set);
760}
761
762/**
763 * @brief Initialize set context.
764 *
765 * @param[in] new Set to initialize.
766 * @param[in] set Arbitrary initialized set.
767 */
768static void
Michal Vasko4c7763f2020-07-27 17:40:37 +0200769set_init(struct lyxp_set *new, const struct lyxp_set *set)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200770{
771 memset(new, 0, sizeof *new);
Michal Vasko02a77382019-09-12 11:47:35 +0200772 if (set) {
773 new->ctx = set->ctx;
774 new->ctx_node = set->ctx_node;
Michal Vasko588112f2019-12-10 14:51:53 +0100775 new->root_type = set->root_type;
Michal Vasko6b26e742020-07-17 15:02:10 +0200776 new->context_op = set->context_op;
Michal Vasko02a77382019-09-12 11:47:35 +0200777 new->local_mod = set->local_mod;
Michal Vaskof03ed032020-03-04 13:31:44 +0100778 new->tree = set->tree;
Michal Vasko02a77382019-09-12 11:47:35 +0200779 new->format = set->format;
780 }
Michal Vasko03ff5a72019-09-11 13:49:33 +0200781}
782
783/**
784 * @brief Create a deep copy of a set.
785 *
786 * @param[in] set Set to copy.
787 * @return Copy of @p set.
788 */
789static struct lyxp_set *
790set_copy(struct lyxp_set *set)
791{
792 struct lyxp_set *ret;
793 uint16_t i;
Michal Vaskoba716542019-12-16 10:01:58 +0100794 int idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200795
796 if (!set) {
797 return NULL;
798 }
799
800 ret = malloc(sizeof *ret);
801 LY_CHECK_ERR_RET(!ret, LOGMEM(set->ctx), NULL);
802 set_init(ret, set);
803
804 if (set->type == LYXP_SET_SCNODE_SET) {
805 ret->type = set->type;
806
807 for (i = 0; i < set->used; ++i) {
Michal Vaskoba716542019-12-16 10:01:58 +0100808 if ((set->val.scnodes[i].in_ctx == 1) || (set->val.scnodes[i].in_ctx == -2)) {
809 idx = lyxp_set_scnode_insert_node(ret, set->val.scnodes[i].scnode, set->val.scnodes[i].type);
Michal Vasko3f27c522020-01-06 08:37:49 +0100810 /* coverity seems to think scnodes can be NULL */
811 if ((idx == -1) || !ret->val.scnodes) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200812 lyxp_set_free(ret);
813 return NULL;
814 }
Michal Vaskoba716542019-12-16 10:01:58 +0100815 ret->val.scnodes[idx].in_ctx = set->val.scnodes[i].in_ctx;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200816 }
817 }
818 } else if (set->type == LYXP_SET_NODE_SET) {
819 ret->type = set->type;
820 ret->val.nodes = malloc(set->used * sizeof *ret->val.nodes);
821 LY_CHECK_ERR_RET(!ret->val.nodes, LOGMEM(set->ctx); free(ret), NULL);
822 memcpy(ret->val.nodes, set->val.nodes, set->used * sizeof *ret->val.nodes);
823
824 ret->used = ret->size = set->used;
825 ret->ctx_pos = set->ctx_pos;
826 ret->ctx_size = set->ctx_size;
827 ret->ht = lyht_dup(set->ht);
828 } else {
829 memcpy(ret, set, sizeof *ret);
830 if (set->type == LYXP_SET_STRING) {
831 ret->val.str = strdup(set->val.str);
832 LY_CHECK_ERR_RET(!ret->val.str, LOGMEM(set->ctx); free(ret), NULL);
833 }
834 }
835
836 return ret;
837}
838
839/**
840 * @brief Fill XPath set with a string. Any current data are disposed of.
841 *
842 * @param[in] set Set to fill.
843 * @param[in] string String to fill into \p set.
844 * @param[in] str_len Length of \p string. 0 is a valid value!
845 */
846static void
847set_fill_string(struct lyxp_set *set, const char *string, uint16_t str_len)
848{
Michal Vaskod3678892020-05-21 10:06:58 +0200849 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200850
851 set->type = LYXP_SET_STRING;
852 if ((str_len == 0) && (string[0] != '\0')) {
853 string = "";
854 }
855 set->val.str = strndup(string, str_len);
856}
857
858/**
859 * @brief Fill XPath set with a number. Any current data are disposed of.
860 *
861 * @param[in] set Set to fill.
862 * @param[in] number Number to fill into \p set.
863 */
864static void
865set_fill_number(struct lyxp_set *set, long double number)
866{
Michal Vaskod3678892020-05-21 10:06:58 +0200867 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200868
869 set->type = LYXP_SET_NUMBER;
870 set->val.num = number;
871}
872
873/**
874 * @brief Fill XPath set with a boolean. Any current data are disposed of.
875 *
876 * @param[in] set Set to fill.
877 * @param[in] boolean Boolean to fill into \p set.
878 */
879static void
880set_fill_boolean(struct lyxp_set *set, int boolean)
881{
Michal Vaskod3678892020-05-21 10:06:58 +0200882 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200883
884 set->type = LYXP_SET_BOOLEAN;
Michal Vasko004d3152020-06-11 19:59:22 +0200885 set->val.bln = boolean;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200886}
887
888/**
889 * @brief Fill XPath set with the value from another set (deep assign).
890 * Any current data are disposed of.
891 *
892 * @param[in] trg Set to fill.
893 * @param[in] src Source set to copy into \p trg.
894 */
895static void
Michal Vasko4c7763f2020-07-27 17:40:37 +0200896set_fill_set(struct lyxp_set *trg, const struct lyxp_set *src)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200897{
898 if (!trg || !src) {
899 return;
900 }
901
902 if (trg->type == LYXP_SET_NODE_SET) {
903 free(trg->val.nodes);
904 } else if (trg->type == LYXP_SET_STRING) {
905 free(trg->val.str);
906 }
907 set_init(trg, src);
908
909 if (src->type == LYXP_SET_SCNODE_SET) {
910 trg->type = LYXP_SET_SCNODE_SET;
911 trg->used = src->used;
912 trg->size = src->used;
913
914 trg->val.scnodes = ly_realloc(trg->val.scnodes, trg->size * sizeof *trg->val.scnodes);
915 LY_CHECK_ERR_RET(!trg->val.scnodes, LOGMEM(src->ctx); memset(trg, 0, sizeof *trg), );
916 memcpy(trg->val.scnodes, src->val.scnodes, src->used * sizeof *src->val.scnodes);
917 } else if (src->type == LYXP_SET_BOOLEAN) {
Michal Vasko004d3152020-06-11 19:59:22 +0200918 set_fill_boolean(trg, src->val.bln);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200919 } else if (src->type == LYXP_SET_NUMBER) {
920 set_fill_number(trg, src->val.num);
921 } else if (src->type == LYXP_SET_STRING) {
922 set_fill_string(trg, src->val.str, strlen(src->val.str));
923 } else {
924 if (trg->type == LYXP_SET_NODE_SET) {
925 free(trg->val.nodes);
926 } else if (trg->type == LYXP_SET_STRING) {
927 free(trg->val.str);
928 }
929
Michal Vaskod3678892020-05-21 10:06:58 +0200930 assert(src->type == LYXP_SET_NODE_SET);
931
932 trg->type = LYXP_SET_NODE_SET;
933 trg->used = src->used;
934 trg->size = src->used;
935 trg->ctx_pos = src->ctx_pos;
936 trg->ctx_size = src->ctx_size;
937
938 trg->val.nodes = malloc(trg->used * sizeof *trg->val.nodes);
939 LY_CHECK_ERR_RET(!trg->val.nodes, LOGMEM(src->ctx); memset(trg, 0, sizeof *trg), );
940 memcpy(trg->val.nodes, src->val.nodes, src->used * sizeof *src->val.nodes);
941 if (src->ht) {
942 trg->ht = lyht_dup(src->ht);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200943 } else {
Michal Vaskod3678892020-05-21 10:06:58 +0200944 trg->ht = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200945 }
946 }
947}
948
949/**
950 * @brief Clear context of all schema nodes.
951 *
952 * @param[in] set Set to clear.
953 */
954static void
955set_scnode_clear_ctx(struct lyxp_set *set)
956{
957 uint32_t i;
958
959 for (i = 0; i < set->used; ++i) {
960 if (set->val.scnodes[i].in_ctx == 1) {
961 set->val.scnodes[i].in_ctx = 0;
Michal Vasko5c4e5892019-11-14 12:31:38 +0100962 } else if (set->val.scnodes[i].in_ctx == -2) {
963 set->val.scnodes[i].in_ctx = -1;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200964 }
965 }
966}
967
968/**
969 * @brief Remove a node from a set. Removing last node changes
970 * set into LYXP_SET_EMPTY. Context position aware.
971 *
972 * @param[in] set Set to use.
973 * @param[in] idx Index from @p set of the node to be removed.
974 */
975static void
976set_remove_node(struct lyxp_set *set, uint32_t idx)
977{
978 assert(set && (set->type == LYXP_SET_NODE_SET));
979 assert(idx < set->used);
980
981 set_remove_node_hash(set, set->val.nodes[idx].node, set->val.nodes[idx].type);
982
983 --set->used;
984 if (set->used) {
985 memmove(&set->val.nodes[idx], &set->val.nodes[idx + 1],
986 (set->used - idx) * sizeof *set->val.nodes);
987 } else {
Michal Vaskod3678892020-05-21 10:06:58 +0200988 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200989 }
990}
991
992/**
Michal Vasko2caefc12019-11-14 16:07:56 +0100993 * @brief Remove a node from a set by setting its type to LYXP_NODE_NONE.
Michal Vasko57eab132019-09-24 11:46:26 +0200994 *
995 * @param[in] set Set to use.
996 * @param[in] idx Index from @p set of the node to be removed.
997 */
998static void
Michal Vasko2caefc12019-11-14 16:07:56 +0100999set_remove_node_none(struct lyxp_set *set, uint32_t idx)
Michal Vasko57eab132019-09-24 11:46:26 +02001000{
1001 assert(set && (set->type == LYXP_SET_NODE_SET));
1002 assert(idx < set->used);
1003
Michal Vasko2caefc12019-11-14 16:07:56 +01001004 if (set->val.nodes[idx].type == LYXP_NODE_ELEM) {
1005 set_remove_node_hash(set, set->val.nodes[idx].node, set->val.nodes[idx].type);
1006 }
1007 set->val.nodes[idx].type = LYXP_NODE_NONE;
Michal Vasko57eab132019-09-24 11:46:26 +02001008}
1009
1010/**
Michal Vasko2caefc12019-11-14 16:07:56 +01001011 * @brief Remove all LYXP_NODE_NONE nodes from a set. Removing last node changes
Michal Vasko57eab132019-09-24 11:46:26 +02001012 * set into LYXP_SET_EMPTY. Context position aware.
1013 *
1014 * @param[in] set Set to consolidate.
1015 */
1016static void
Michal Vasko2caefc12019-11-14 16:07:56 +01001017set_remove_nodes_none(struct lyxp_set *set)
Michal Vasko57eab132019-09-24 11:46:26 +02001018{
Michal Vaskoed4fcfe2020-07-08 10:38:56 +02001019 uint16_t i, orig_used, end = 0;
Michal Vasko57eab132019-09-24 11:46:26 +02001020 int32_t start;
1021
Michal Vaskod3678892020-05-21 10:06:58 +02001022 assert(set);
Michal Vasko57eab132019-09-24 11:46:26 +02001023
1024 orig_used = set->used;
1025 set->used = 0;
1026 for (i = 0; i < orig_used;) {
1027 start = -1;
1028 do {
Michal Vasko2caefc12019-11-14 16:07:56 +01001029 if ((set->val.nodes[i].type != LYXP_NODE_NONE) && (start == -1)) {
Michal Vasko57eab132019-09-24 11:46:26 +02001030 start = i;
Michal Vasko2caefc12019-11-14 16:07:56 +01001031 } else if ((start > -1) && (set->val.nodes[i].type == LYXP_NODE_NONE)) {
Michal Vasko57eab132019-09-24 11:46:26 +02001032 end = i;
1033 ++i;
1034 break;
1035 }
1036
1037 ++i;
1038 if (i == orig_used) {
1039 end = i;
1040 }
1041 } while (i < orig_used);
1042
1043 if (start > -1) {
1044 /* move the whole chunk of valid nodes together */
1045 if (set->used != (unsigned)start) {
1046 memmove(&set->val.nodes[set->used], &set->val.nodes[start], (end - start) * sizeof *set->val.nodes);
1047 }
1048 set->used += end - start;
1049 }
1050 }
Michal Vasko57eab132019-09-24 11:46:26 +02001051}
1052
1053/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02001054 * @brief Check for duplicates in a node set.
1055 *
1056 * @param[in] set Set to check.
1057 * @param[in] node Node to look for in @p set.
1058 * @param[in] node_type Type of @p node.
1059 * @param[in] skip_idx Index from @p set to skip.
1060 * @return LY_ERR
1061 */
1062static LY_ERR
1063set_dup_node_check(const struct lyxp_set *set, const struct lyd_node *node, enum lyxp_node_type node_type, int skip_idx)
1064{
1065 uint32_t i;
1066
Michal Vasko2caefc12019-11-14 16:07:56 +01001067 if (set->ht && node) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001068 return set_dup_node_hash_check(set, (struct lyd_node *)node, node_type, skip_idx);
1069 }
1070
1071 for (i = 0; i < set->used; ++i) {
1072 if ((skip_idx > -1) && (i == (unsigned)skip_idx)) {
1073 continue;
1074 }
1075
1076 if ((set->val.nodes[i].node == node) && (set->val.nodes[i].type == node_type)) {
1077 return LY_EEXIST;
1078 }
1079 }
1080
1081 return LY_SUCCESS;
1082}
1083
Michal Vaskoecd62de2019-11-13 12:35:11 +01001084int
1085lyxp_set_scnode_dup_node_check(struct lyxp_set *set, const struct lysc_node *node, enum lyxp_node_type node_type, int skip_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001086{
1087 uint32_t i;
1088
1089 for (i = 0; i < set->used; ++i) {
1090 if ((skip_idx > -1) && (i == (unsigned)skip_idx)) {
1091 continue;
1092 }
1093
1094 if ((set->val.scnodes[i].scnode == node) && (set->val.scnodes[i].type == node_type)) {
1095 return i;
1096 }
1097 }
1098
1099 return -1;
1100}
1101
Michal Vaskoecd62de2019-11-13 12:35:11 +01001102void
1103lyxp_set_scnode_merge(struct lyxp_set *set1, struct lyxp_set *set2)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001104{
1105 uint32_t orig_used, i, j;
1106
Michal Vaskod3678892020-05-21 10:06:58 +02001107 assert((set1->type == LYXP_SET_SCNODE_SET) && (set2->type == LYXP_SET_SCNODE_SET));
Michal Vasko03ff5a72019-09-11 13:49:33 +02001108
Michal Vaskod3678892020-05-21 10:06:58 +02001109 if (!set2->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001110 return;
1111 }
1112
Michal Vaskod3678892020-05-21 10:06:58 +02001113 if (!set1->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001114 memcpy(set1, set2, sizeof *set1);
1115 return;
1116 }
1117
1118 if (set1->used + set2->used > set1->size) {
1119 set1->size = set1->used + set2->used;
1120 set1->val.scnodes = ly_realloc(set1->val.scnodes, set1->size * sizeof *set1->val.scnodes);
1121 LY_CHECK_ERR_RET(!set1->val.scnodes, LOGMEM(set1->ctx), );
1122 }
1123
1124 orig_used = set1->used;
1125
1126 for (i = 0; i < set2->used; ++i) {
1127 for (j = 0; j < orig_used; ++j) {
1128 /* detect duplicities */
1129 if (set1->val.scnodes[j].scnode == set2->val.scnodes[i].scnode) {
1130 break;
1131 }
1132 }
1133
1134 if (j == orig_used) {
1135 memcpy(&set1->val.scnodes[set1->used], &set2->val.scnodes[i], sizeof *set2->val.scnodes);
1136 ++set1->used;
1137 }
1138 }
1139
Michal Vaskod3678892020-05-21 10:06:58 +02001140 lyxp_set_free_content(set2);
1141 set2->type = LYXP_SET_SCNODE_SET;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001142}
1143
1144/**
1145 * @brief Insert a node into a set. Context position aware.
1146 *
1147 * @param[in] set Set to use.
1148 * @param[in] node Node to insert to @p set.
1149 * @param[in] pos Sort position of @p node. If left 0, it is filled just before sorting.
1150 * @param[in] node_type Node type of @p node.
1151 * @param[in] idx Index in @p set to insert into.
1152 */
1153static void
1154set_insert_node(struct lyxp_set *set, const struct lyd_node *node, uint32_t pos, enum lyxp_node_type node_type, uint32_t idx)
1155{
Michal Vaskod3678892020-05-21 10:06:58 +02001156 assert(set && (set->type == LYXP_SET_NODE_SET));
Michal Vasko03ff5a72019-09-11 13:49:33 +02001157
Michal Vaskod3678892020-05-21 10:06:58 +02001158 if (!set->size) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001159 /* first item */
1160 if (idx) {
1161 /* no real harm done, but it is a bug */
1162 LOGINT(set->ctx);
1163 idx = 0;
1164 }
1165 set->val.nodes = malloc(LYXP_SET_SIZE_START * sizeof *set->val.nodes);
1166 LY_CHECK_ERR_RET(!set->val.nodes, LOGMEM(set->ctx), );
1167 set->type = LYXP_SET_NODE_SET;
1168 set->used = 0;
1169 set->size = LYXP_SET_SIZE_START;
1170 set->ctx_pos = 1;
1171 set->ctx_size = 1;
1172 set->ht = NULL;
1173 } else {
1174 /* not an empty set */
1175 if (set->used == set->size) {
1176
1177 /* set is full */
1178 set->val.nodes = ly_realloc(set->val.nodes, (set->size + LYXP_SET_SIZE_STEP) * sizeof *set->val.nodes);
1179 LY_CHECK_ERR_RET(!set->val.nodes, LOGMEM(set->ctx), );
1180 set->size += LYXP_SET_SIZE_STEP;
1181 }
1182
1183 if (idx > set->used) {
1184 LOGINT(set->ctx);
1185 idx = set->used;
1186 }
1187
1188 /* make space for the new node */
1189 if (idx < set->used) {
1190 memmove(&set->val.nodes[idx + 1], &set->val.nodes[idx], (set->used - idx) * sizeof *set->val.nodes);
1191 }
1192 }
1193
1194 /* finally assign the value */
1195 set->val.nodes[idx].node = (struct lyd_node *)node;
1196 set->val.nodes[idx].type = node_type;
1197 set->val.nodes[idx].pos = pos;
1198 ++set->used;
1199
Michal Vasko2caefc12019-11-14 16:07:56 +01001200 if (set->val.nodes[idx].type == LYXP_NODE_ELEM) {
1201 set_insert_node_hash(set, (struct lyd_node *)node, node_type);
1202 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02001203}
1204
Michal Vaskoecd62de2019-11-13 12:35:11 +01001205int
1206lyxp_set_scnode_insert_node(struct lyxp_set *set, const struct lysc_node *node, enum lyxp_node_type node_type)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001207{
1208 int ret;
1209
1210 assert(set->type == LYXP_SET_SCNODE_SET);
1211
Michal Vaskoecd62de2019-11-13 12:35:11 +01001212 ret = lyxp_set_scnode_dup_node_check(set, node, node_type, -1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001213 if (ret > -1) {
1214 set->val.scnodes[ret].in_ctx = 1;
1215 } else {
1216 if (set->used == set->size) {
1217 set->val.scnodes = ly_realloc(set->val.scnodes, (set->size + LYXP_SET_SIZE_STEP) * sizeof *set->val.scnodes);
1218 LY_CHECK_ERR_RET(!set->val.scnodes, LOGMEM(set->ctx), -1);
1219 set->size += LYXP_SET_SIZE_STEP;
1220 }
1221
1222 ret = set->used;
1223 set->val.scnodes[ret].scnode = (struct lysc_node *)node;
1224 set->val.scnodes[ret].type = node_type;
1225 set->val.scnodes[ret].in_ctx = 1;
1226 ++set->used;
1227 }
1228
1229 return ret;
1230}
1231
1232/**
1233 * @brief Replace a node in a set with another. Context position aware.
1234 *
1235 * @param[in] set Set to use.
1236 * @param[in] node Node to insert to @p set.
1237 * @param[in] pos Sort position of @p node. If left 0, it is filled just before sorting.
1238 * @param[in] node_type Node type of @p node.
1239 * @param[in] idx Index in @p set of the node to replace.
1240 */
1241static void
1242set_replace_node(struct lyxp_set *set, const struct lyd_node *node, uint32_t pos, enum lyxp_node_type node_type, uint32_t idx)
1243{
1244 assert(set && (idx < set->used));
1245
Michal Vasko2caefc12019-11-14 16:07:56 +01001246 if (set->val.nodes[idx].type == LYXP_NODE_ELEM) {
1247 set_remove_node_hash(set, set->val.nodes[idx].node, set->val.nodes[idx].type);
1248 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02001249 set->val.nodes[idx].node = (struct lyd_node *)node;
1250 set->val.nodes[idx].type = node_type;
1251 set->val.nodes[idx].pos = pos;
Michal Vasko2caefc12019-11-14 16:07:56 +01001252 if (set->val.nodes[idx].type == LYXP_NODE_ELEM) {
1253 set_insert_node_hash(set, set->val.nodes[idx].node, set->val.nodes[idx].type);
1254 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02001255}
1256
1257/**
1258 * @brief Set all nodes with ctx 1 to a new unique context value.
1259 *
1260 * @param[in] set Set to modify.
1261 * @return New context value.
1262 */
Michal Vasko5c4e5892019-11-14 12:31:38 +01001263static int32_t
Michal Vasko03ff5a72019-09-11 13:49:33 +02001264set_scnode_new_in_ctx(struct lyxp_set *set)
1265{
Michal Vasko5c4e5892019-11-14 12:31:38 +01001266 uint32_t i;
1267 int32_t ret_ctx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001268
1269 assert(set->type == LYXP_SET_SCNODE_SET);
1270
1271 ret_ctx = 3;
1272retry:
1273 for (i = 0; i < set->used; ++i) {
1274 if (set->val.scnodes[i].in_ctx >= ret_ctx) {
1275 ret_ctx = set->val.scnodes[i].in_ctx + 1;
1276 goto retry;
1277 }
1278 }
1279 for (i = 0; i < set->used; ++i) {
1280 if (set->val.scnodes[i].in_ctx == 1) {
1281 set->val.scnodes[i].in_ctx = ret_ctx;
1282 }
1283 }
1284
1285 return ret_ctx;
1286}
1287
1288/**
1289 * @brief Get unique @p node position in the data.
1290 *
1291 * @param[in] node Node to find.
1292 * @param[in] node_type Node type of @p node.
1293 * @param[in] root Root node.
1294 * @param[in] root_type Type of the XPath @p root node.
1295 * @param[in] prev Node that we think is before @p node in DFS from @p root. Can optionally
1296 * be used to increase efficiency and start the DFS from this node.
1297 * @param[in] prev_pos Node @p prev position. Optional, but must be set if @p prev is set.
1298 * @return Node position.
1299 */
1300static uint32_t
1301get_node_pos(const struct lyd_node *node, enum lyxp_node_type node_type, const struct lyd_node *root,
1302 enum lyxp_node_type root_type, const struct lyd_node **prev, uint32_t *prev_pos)
1303{
Michal Vasko56daf732020-08-10 10:57:18 +02001304 const struct lyd_node *elem = NULL, *top_sibling;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001305 uint32_t pos = 1;
1306
1307 assert(prev && prev_pos && !root->prev->next);
1308
1309 if ((node_type == LYXP_NODE_ROOT) || (node_type == LYXP_NODE_ROOT_CONFIG)) {
1310 return 0;
1311 }
1312
1313 if (*prev) {
1314 /* start from the previous element instead from the root */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001315 pos = *prev_pos;
Michal Vasko56daf732020-08-10 10:57:18 +02001316 for (top_sibling = *prev; top_sibling->parent; top_sibling = (struct lyd_node *)top_sibling->parent);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001317 goto dfs_search;
1318 }
1319
1320 for (top_sibling = root; top_sibling; top_sibling = top_sibling->next) {
Michal Vasko56daf732020-08-10 10:57:18 +02001321 LYD_TREE_DFS_BEGIN(top_sibling, elem) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001322dfs_search:
Michal Vasko56daf732020-08-10 10:57:18 +02001323 if (*prev && !elem) {
1324 /* resume previous DFS */
1325 elem = LYD_TREE_DFS_next = (struct lyd_node *)*prev;
1326 LYD_TREE_DFS_continue = 0;
1327 }
1328
Michal Vasko03ff5a72019-09-11 13:49:33 +02001329 if ((root_type == LYXP_NODE_ROOT_CONFIG) && (elem->schema->flags & LYS_CONFIG_R)) {
Michal Vasko56daf732020-08-10 10:57:18 +02001330 /* skip */
1331 LYD_TREE_DFS_continue = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001332 } else {
Michal Vasko56daf732020-08-10 10:57:18 +02001333 if (elem == node) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001334 break;
1335 }
Michal Vasko56daf732020-08-10 10:57:18 +02001336 ++pos;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001337 }
Michal Vasko56daf732020-08-10 10:57:18 +02001338
1339 LYD_TREE_DFS_END(top_sibling, elem);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001340 }
1341
1342 /* node found */
1343 if (elem) {
1344 break;
1345 }
1346 }
1347
1348 if (!elem) {
1349 if (!(*prev)) {
1350 /* we went from root and failed to find it, cannot be */
Michal Vasko56daf732020-08-10 10:57:18 +02001351 LOGINT(LYD_NODE_CTX(node));
Michal Vasko03ff5a72019-09-11 13:49:33 +02001352 return 0;
1353 } else {
Michal Vasko56daf732020-08-10 10:57:18 +02001354 /* start the search again from the beginning */
1355 *prev = root;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001356
Michal Vasko56daf732020-08-10 10:57:18 +02001357 top_sibling = root;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001358 pos = 1;
1359 goto dfs_search;
1360 }
1361 }
1362
1363 /* remember the last found node for next time */
1364 *prev = node;
1365 *prev_pos = pos;
1366
1367 return pos;
1368}
1369
1370/**
1371 * @brief Assign (fill) missing node positions.
1372 *
1373 * @param[in] set Set to fill positions in.
1374 * @param[in] root Context root node.
1375 * @param[in] root_type Context root type.
1376 * @return LY_ERR
1377 */
1378static LY_ERR
1379set_assign_pos(struct lyxp_set *set, const struct lyd_node *root, enum lyxp_node_type root_type)
1380{
1381 const struct lyd_node *prev = NULL, *tmp_node;
1382 uint32_t i, tmp_pos = 0;
1383
1384 for (i = 0; i < set->used; ++i) {
1385 if (!set->val.nodes[i].pos) {
1386 tmp_node = NULL;
1387 switch (set->val.nodes[i].type) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001388 case LYXP_NODE_META:
1389 tmp_node = set->val.meta[i].meta->parent;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001390 if (!tmp_node) {
1391 LOGINT_RET(root->schema->module->ctx);
1392 }
1393 /* fallthrough */
1394 case LYXP_NODE_ELEM:
1395 case LYXP_NODE_TEXT:
1396 if (!tmp_node) {
1397 tmp_node = set->val.nodes[i].node;
1398 }
1399 set->val.nodes[i].pos = get_node_pos(tmp_node, set->val.nodes[i].type, root, root_type, &prev, &tmp_pos);
1400 break;
1401 default:
1402 /* all roots have position 0 */
1403 break;
1404 }
1405 }
1406 }
1407
1408 return LY_SUCCESS;
1409}
1410
1411/**
Michal Vasko9f96a052020-03-10 09:41:45 +01001412 * @brief Get unique @p meta position in the parent metadata.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001413 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001414 * @param[in] meta Metadata to use.
1415 * @return Metadata position.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001416 */
1417static uint16_t
Michal Vasko9f96a052020-03-10 09:41:45 +01001418get_meta_pos(struct lyd_meta *meta)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001419{
1420 uint16_t pos = 0;
Michal Vasko9f96a052020-03-10 09:41:45 +01001421 struct lyd_meta *meta2;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001422
Michal Vasko9f96a052020-03-10 09:41:45 +01001423 for (meta2 = meta->parent->meta; meta2 && (meta2 != meta); meta2 = meta2->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001424 ++pos;
1425 }
1426
Michal Vasko9f96a052020-03-10 09:41:45 +01001427 assert(meta2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001428 return pos;
1429}
1430
1431/**
1432 * @brief Compare 2 nodes in respect to XPath document order.
1433 *
1434 * @param[in] item1 1st node.
1435 * @param[in] item2 2nd node.
1436 * @return If 1st > 2nd returns 1, 1st == 2nd returns 0, and 1st < 2nd returns -1.
1437 */
1438static int
1439set_sort_compare(struct lyxp_set_node *item1, struct lyxp_set_node *item2)
1440{
Michal Vasko9f96a052020-03-10 09:41:45 +01001441 uint32_t meta_pos1 = 0, meta_pos2 = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001442
1443 if (item1->pos < item2->pos) {
1444 return -1;
1445 }
1446
1447 if (item1->pos > item2->pos) {
1448 return 1;
1449 }
1450
1451 /* node positions are equal, the fun case */
1452
1453 /* 1st ELEM - == - 2nd TEXT, 1st TEXT - == - 2nd ELEM */
1454 /* special case since text nodes are actually saved as their parents */
1455 if ((item1->node == item2->node) && (item1->type != item2->type)) {
1456 if (item1->type == LYXP_NODE_ELEM) {
1457 assert(item2->type == LYXP_NODE_TEXT);
1458 return -1;
1459 } else {
1460 assert((item1->type == LYXP_NODE_TEXT) && (item2->type == LYXP_NODE_ELEM));
1461 return 1;
1462 }
1463 }
1464
Michal Vasko9f96a052020-03-10 09:41:45 +01001465 /* we need meta positions now */
1466 if (item1->type == LYXP_NODE_META) {
1467 meta_pos1 = get_meta_pos((struct lyd_meta *)item1->node);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001468 }
Michal Vasko9f96a052020-03-10 09:41:45 +01001469 if (item2->type == LYXP_NODE_META) {
1470 meta_pos2 = get_meta_pos((struct lyd_meta *)item2->node);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001471 }
1472
Michal Vasko9f96a052020-03-10 09:41:45 +01001473 /* 1st ROOT - 2nd ROOT, 1st ELEM - 2nd ELEM, 1st TEXT - 2nd TEXT, 1st META - =pos= - 2nd META */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001474 /* check for duplicates */
1475 if (item1->node == item2->node) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001476 assert((item1->type == item2->type) && ((item1->type != LYXP_NODE_META) || (meta_pos1 == meta_pos2)));
Michal Vasko03ff5a72019-09-11 13:49:33 +02001477 return 0;
1478 }
1479
Michal Vasko9f96a052020-03-10 09:41:45 +01001480 /* 1st ELEM - 2nd TEXT, 1st ELEM - any pos - 2nd META */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001481 /* elem is always first, 2nd node is after it */
1482 if (item1->type == LYXP_NODE_ELEM) {
1483 assert(item2->type != LYXP_NODE_ELEM);
1484 return -1;
1485 }
1486
Michal Vasko9f96a052020-03-10 09:41:45 +01001487 /* 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 +02001488 /* 2nd is before 1st */
1489 if (((item1->type == LYXP_NODE_TEXT)
Michal Vasko9f96a052020-03-10 09:41:45 +01001490 && ((item2->type == LYXP_NODE_ELEM) || (item2->type == LYXP_NODE_META)))
1491 || ((item1->type == LYXP_NODE_META) && (item2->type == LYXP_NODE_ELEM))
1492 || (((item1->type == LYXP_NODE_META) && (item2->type == LYXP_NODE_META))
1493 && (meta_pos1 > meta_pos2))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001494 return 1;
1495 }
1496
Michal Vasko9f96a052020-03-10 09:41:45 +01001497 /* 1st META - any pos - 2nd TEXT, 1st META <pos< - 2nd META */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001498 /* 2nd is after 1st */
1499 return -1;
1500}
1501
1502/**
1503 * @brief Set cast for comparisons.
1504 *
1505 * @param[in] trg Target set to cast source into.
1506 * @param[in] src Source set.
1507 * @param[in] type Target set type.
1508 * @param[in] src_idx Source set node index.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001509 * @return LY_ERR
1510 */
1511static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001512set_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 +02001513{
1514 assert(src->type == LYXP_SET_NODE_SET);
1515
1516 set_init(trg, src);
1517
1518 /* insert node into target set */
1519 set_insert_node(trg, src->val.nodes[src_idx].node, src->val.nodes[src_idx].pos, src->val.nodes[src_idx].type, 0);
1520
1521 /* cast target set appropriately */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001522 return lyxp_set_cast(trg, type);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001523}
1524
Michal Vasko4c7763f2020-07-27 17:40:37 +02001525/**
1526 * @brief Set content canonization for comparisons.
1527 *
1528 * @param[in] trg Target set to put the canononized source into.
1529 * @param[in] src Source set.
1530 * @param[in] xp_node Source XPath node/meta to use for canonization.
1531 * @return LY_ERR
1532 */
1533static LY_ERR
1534set_comp_canonize(struct lyxp_set *trg, const struct lyxp_set *src, const struct lyxp_set_node *xp_node)
1535{
1536 struct lysc_type *type = NULL;
1537 struct lyd_value val;
1538 struct ly_err_item *err = NULL;
1539 char *str, *ptr;
1540 int dynamic;
1541 LY_ERR rc;
1542
1543 /* is there anything to canonize even? */
1544 if ((src->type == LYXP_SET_NUMBER) || (src->type == LYXP_SET_STRING)) {
1545 /* do we have a type to use for canonization? */
1546 if ((xp_node->type == LYXP_NODE_ELEM) && (xp_node->node->schema->nodetype & LYD_NODE_TERM)) {
1547 type = ((struct lyd_node_term *)xp_node->node)->value.realtype;
1548 } else if (xp_node->type == LYXP_NODE_META) {
1549 type = ((struct lyd_meta *)xp_node->node)->value.realtype;
1550 }
1551 }
1552 if (!type) {
1553 goto fill;
1554 }
1555
1556 if (src->type == LYXP_SET_NUMBER) {
1557 /* canonize number */
1558 if (asprintf(&str, "%Lf", src->val.num) == -1) {
1559 LOGMEM(src->ctx);
1560 return LY_EMEM;
1561 }
1562 } else {
1563 /* canonize string */
1564 str = strdup(src->val.str);
1565 }
1566
1567 /* ignore errors, the value may not satisfy schema constraints */
1568 rc = type->plugin->store(src->ctx, type, str, strlen(str),
Michal Vaskoc8a230d2020-08-14 12:17:10 +02001569 LY_TYPE_OPTS_STORE | LY_TYPE_OPTS_INCOMPLETE_DATA | LY_TYPE_OPTS_DYNAMIC, LY_PREF_JSON,
1570 NULL, NULL, NULL, &val, NULL, &err);
Michal Vasko4c7763f2020-07-27 17:40:37 +02001571 ly_err_free(err);
1572 if (rc) {
1573 /* invalid value */
1574 free(str);
1575 goto fill;
1576 }
1577
1578 /* storing successful, now print the canonical value */
Michal Vaskoc8a230d2020-08-14 12:17:10 +02001579 str = (char *)type->plugin->print(&val, LY_PREF_JSON, NULL, &dynamic);
Michal Vasko4c7763f2020-07-27 17:40:37 +02001580
1581 /* use the canonized value */
1582 set_init(trg, src);
1583 trg->type = src->type;
1584 if (src->type == LYXP_SET_NUMBER) {
1585 trg->val.num = strtold(str, &ptr);
1586 if (dynamic) {
1587 free(str);
1588 }
1589 LY_CHECK_ERR_RET(ptr[0], LOGINT(src->ctx), LY_EINT);
1590 } else {
1591 trg->val.str = (dynamic ? str : strdup(str));
1592 }
1593 type->plugin->free(src->ctx, &val);
1594 return LY_SUCCESS;
1595
1596fill:
1597 /* no canonization needed/possible */
1598 set_fill_set(trg, src);
1599 return LY_SUCCESS;
1600}
1601
Michal Vasko03ff5a72019-09-11 13:49:33 +02001602#ifndef NDEBUG
1603
1604/**
1605 * @brief Bubble sort @p set into XPath document order.
1606 * Context position aware. Unused in the 'Release' build target.
1607 *
1608 * @param[in] set Set to sort.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001609 * @return How many times the whole set was traversed - 1 (if set was sorted, returns 0).
1610 */
1611static int
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001612set_sort(struct lyxp_set *set)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001613{
1614 uint32_t i, j;
1615 int ret = 0, cmp, inverted, change;
1616 const struct lyd_node *root;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001617 struct lyxp_set_node item;
1618 struct lyxp_set_hash_node hnode;
1619 uint64_t hash;
1620
Michal Vasko3cf8fbf2020-05-27 15:21:21 +02001621 if ((set->type != LYXP_SET_NODE_SET) || (set->used < 2)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001622 return 0;
1623 }
1624
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001625 /* find first top-level node to be used as anchor for positions */
1626 for (root = set->ctx_node; root->parent; root = (const struct lyd_node *)root->parent);
1627 for (; root->prev->next; root = root->prev);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001628
1629 /* fill positions */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001630 if (set_assign_pos(set, root, set->root_type)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001631 return -1;
1632 }
1633
1634 LOGDBG(LY_LDGXPATH, "SORT BEGIN");
1635 print_set_debug(set);
1636
1637 for (i = 0; i < set->used; ++i) {
1638 inverted = 0;
1639 change = 0;
1640
1641 for (j = 1; j < set->used - i; ++j) {
1642 /* compare node positions */
1643 if (inverted) {
1644 cmp = set_sort_compare(&set->val.nodes[j], &set->val.nodes[j - 1]);
1645 } else {
1646 cmp = set_sort_compare(&set->val.nodes[j - 1], &set->val.nodes[j]);
1647 }
1648
1649 /* swap if needed */
1650 if ((inverted && (cmp < 0)) || (!inverted && (cmp > 0))) {
1651 change = 1;
1652
1653 item = set->val.nodes[j - 1];
1654 set->val.nodes[j - 1] = set->val.nodes[j];
1655 set->val.nodes[j] = item;
1656 } else {
1657 /* whether node_pos1 should be smaller than node_pos2 or the other way around */
1658 inverted = !inverted;
1659 }
1660 }
1661
1662 ++ret;
1663
1664 if (!change) {
1665 break;
1666 }
1667 }
1668
1669 LOGDBG(LY_LDGXPATH, "SORT END %d", ret);
1670 print_set_debug(set);
1671
1672 /* check node hashes */
1673 if (set->used >= LYD_HT_MIN_ITEMS) {
1674 assert(set->ht);
1675 for (i = 0; i < set->used; ++i) {
1676 hnode.node = set->val.nodes[i].node;
1677 hnode.type = set->val.nodes[i].type;
1678
1679 hash = dict_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node);
1680 hash = dict_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type);
1681 hash = dict_hash_multi(hash, NULL, 0);
1682
1683 assert(!lyht_find(set->ht, &hnode, hash, NULL));
1684 }
1685 }
1686
1687 return ret - 1;
1688}
1689
1690/**
1691 * @brief Remove duplicate entries in a sorted node set.
1692 *
1693 * @param[in] set Sorted set to check.
1694 * @return LY_ERR (LY_EEXIST if some duplicates are found)
1695 */
1696static LY_ERR
1697set_sorted_dup_node_clean(struct lyxp_set *set)
1698{
1699 uint32_t i = 0;
1700 LY_ERR ret = LY_SUCCESS;
1701
1702 if (set->used > 1) {
1703 while (i < set->used - 1) {
1704 if ((set->val.nodes[i].node == set->val.nodes[i + 1].node)
1705 && (set->val.nodes[i].type == set->val.nodes[i + 1].type)) {
Michal Vasko2caefc12019-11-14 16:07:56 +01001706 set_remove_node_none(set, i + 1);
Michal Vasko57eab132019-09-24 11:46:26 +02001707 ret = LY_EEXIST;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001708 }
Michal Vasko57eab132019-09-24 11:46:26 +02001709 ++i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001710 }
1711 }
1712
Michal Vasko2caefc12019-11-14 16:07:56 +01001713 set_remove_nodes_none(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001714 return ret;
1715}
1716
1717#endif
1718
1719/**
1720 * @brief Merge 2 sorted sets into one.
1721 *
1722 * @param[in,out] trg Set to merge into. Duplicates are removed.
1723 * @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 +02001724 * @return LY_ERR
1725 */
1726static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001727set_sorted_merge(struct lyxp_set *trg, struct lyxp_set *src)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001728{
1729 uint32_t i, j, k, count, dup_count;
1730 int cmp;
1731 const struct lyd_node *root;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001732
Michal Vaskod3678892020-05-21 10:06:58 +02001733 if ((trg->type != LYXP_SET_NODE_SET) || (src->type != LYXP_SET_NODE_SET)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001734 return LY_EINVAL;
1735 }
1736
Michal Vaskod3678892020-05-21 10:06:58 +02001737 if (!src->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001738 return LY_SUCCESS;
Michal Vaskod3678892020-05-21 10:06:58 +02001739 } else if (!trg->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001740 set_fill_set(trg, src);
Michal Vaskod3678892020-05-21 10:06:58 +02001741 lyxp_set_free_content(src);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001742 return LY_SUCCESS;
1743 }
1744
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001745 /* find first top-level node to be used as anchor for positions */
1746 for (root = trg->ctx_node; root->parent; root = (const struct lyd_node *)root->parent);
1747 for (; root->prev->next; root = root->prev);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001748
1749 /* fill positions */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001750 if (set_assign_pos(trg, root, trg->root_type) || set_assign_pos(src, root, src->root_type)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001751 return LY_EINT;
1752 }
1753
1754#ifndef NDEBUG
1755 LOGDBG(LY_LDGXPATH, "MERGE target");
1756 print_set_debug(trg);
1757 LOGDBG(LY_LDGXPATH, "MERGE source");
1758 print_set_debug(src);
1759#endif
1760
1761 /* make memory for the merge (duplicates are not detected yet, so space
1762 * will likely be wasted on them, too bad) */
1763 if (trg->size - trg->used < src->used) {
1764 trg->size = trg->used + src->used;
1765
1766 trg->val.nodes = ly_realloc(trg->val.nodes, trg->size * sizeof *trg->val.nodes);
1767 LY_CHECK_ERR_RET(!trg->val.nodes, LOGMEM(src->ctx), LY_EMEM);
1768 }
1769
1770 i = 0;
1771 j = 0;
1772 count = 0;
1773 dup_count = 0;
1774 do {
1775 cmp = set_sort_compare(&src->val.nodes[i], &trg->val.nodes[j]);
1776 if (!cmp) {
1777 if (!count) {
1778 /* duplicate, just skip it */
1779 ++i;
1780 ++j;
1781 } else {
1782 /* we are copying something already, so let's copy the duplicate too,
1783 * we are hoping that afterwards there are some more nodes to
1784 * copy and this way we can copy them all together */
1785 ++count;
1786 ++dup_count;
1787 ++i;
1788 ++j;
1789 }
1790 } else if (cmp < 0) {
1791 /* inserting src node into trg, just remember it for now */
1792 ++count;
1793 ++i;
1794
1795 /* insert the hash now */
1796 set_insert_node_hash(trg, src->val.nodes[i - 1].node, src->val.nodes[i - 1].type);
1797 } else if (count) {
1798copy_nodes:
1799 /* time to actually copy the nodes, we have found the largest block of nodes */
1800 memmove(&trg->val.nodes[j + (count - dup_count)],
1801 &trg->val.nodes[j],
1802 (trg->used - j) * sizeof *trg->val.nodes);
1803 memcpy(&trg->val.nodes[j - dup_count], &src->val.nodes[i - count], count * sizeof *src->val.nodes);
1804
1805 trg->used += count - dup_count;
1806 /* do not change i, except the copying above, we are basically doing exactly what is in the else branch below */
1807 j += count - dup_count;
1808
1809 count = 0;
1810 dup_count = 0;
1811 } else {
1812 ++j;
1813 }
1814 } while ((i < src->used) && (j < trg->used));
1815
1816 if ((i < src->used) || count) {
1817 /* insert all the hashes first */
1818 for (k = i; k < src->used; ++k) {
1819 set_insert_node_hash(trg, src->val.nodes[k].node, src->val.nodes[k].type);
1820 }
1821
1822 /* loop ended, but we need to copy something at trg end */
1823 count += src->used - i;
1824 i = src->used;
1825 goto copy_nodes;
1826 }
1827
1828 /* we are inserting hashes before the actual node insert, which causes
1829 * situations when there were initially not enough items for a hash table,
1830 * but even after some were inserted, hash table was not created (during
1831 * insertion the number of items is not updated yet) */
1832 if (!trg->ht && (trg->used >= LYD_HT_MIN_ITEMS)) {
1833 set_insert_node_hash(trg, NULL, 0);
1834 }
1835
1836#ifndef NDEBUG
1837 LOGDBG(LY_LDGXPATH, "MERGE result");
1838 print_set_debug(trg);
1839#endif
1840
Michal Vaskod3678892020-05-21 10:06:58 +02001841 lyxp_set_free_content(src);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001842 return LY_SUCCESS;
1843}
1844
1845/*
1846 * (re)parse functions
1847 *
1848 * Parse functions parse the expression into
1849 * tokens (syntactic analysis).
1850 *
1851 * Reparse functions perform semantic analysis
1852 * (do not save the result, just a check) of
1853 * the expression and fill repeat indices.
1854 */
1855
Michal Vasko14676352020-05-29 11:35:55 +02001856LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02001857lyxp_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 +02001858{
Michal Vasko004d3152020-06-11 19:59:22 +02001859 if (exp->used == tok_idx) {
Michal Vasko14676352020-05-29 11:35:55 +02001860 if (ctx) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001861 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_EOF);
1862 }
Michal Vasko14676352020-05-29 11:35:55 +02001863 return LY_EINCOMPLETE;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001864 }
1865
Michal Vasko004d3152020-06-11 19:59:22 +02001866 if (want_tok && (exp->tokens[tok_idx] != want_tok)) {
Michal Vasko14676352020-05-29 11:35:55 +02001867 if (ctx) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001868 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_INTOK,
Michal Vasko004d3152020-06-11 19:59:22 +02001869 lyxp_print_token(exp->tokens[tok_idx]), &exp->expr[exp->tok_pos[tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001870 }
Michal Vasko14676352020-05-29 11:35:55 +02001871 return LY_ENOT;
1872 }
1873
1874 return LY_SUCCESS;
1875}
1876
Michal Vasko004d3152020-06-11 19:59:22 +02001877LY_ERR
1878lyxp_next_token(const struct ly_ctx *ctx, const struct lyxp_expr *exp, uint16_t *tok_idx, enum lyxp_token want_tok)
1879{
1880 LY_CHECK_RET(lyxp_check_token(ctx, exp, *tok_idx, want_tok));
1881
1882 /* skip the token */
1883 ++(*tok_idx);
1884
1885 return LY_SUCCESS;
1886}
1887
Michal Vasko14676352020-05-29 11:35:55 +02001888/* just like lyxp_check_token() but tests for 2 tokens */
1889static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02001890exp_check_token2(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t tok_idx, enum lyxp_token want_tok1,
Michal Vasko14676352020-05-29 11:35:55 +02001891 enum lyxp_token want_tok2)
1892{
Michal Vasko004d3152020-06-11 19:59:22 +02001893 if (exp->used == tok_idx) {
Michal Vasko14676352020-05-29 11:35:55 +02001894 if (ctx) {
1895 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_EOF);
1896 }
1897 return LY_EINCOMPLETE;
1898 }
1899
Michal Vasko004d3152020-06-11 19:59:22 +02001900 if ((exp->tokens[tok_idx] != want_tok1) && (exp->tokens[tok_idx] != want_tok2)) {
Michal Vasko14676352020-05-29 11:35:55 +02001901 if (ctx) {
1902 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_INTOK,
Michal Vasko004d3152020-06-11 19:59:22 +02001903 lyxp_print_token(exp->tokens[tok_idx]), &exp->expr[exp->tok_pos[tok_idx]]);
Michal Vasko14676352020-05-29 11:35:55 +02001904 }
1905 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001906 }
1907
1908 return LY_SUCCESS;
1909}
1910
1911/**
1912 * @brief Stack operation push on the repeat array.
1913 *
1914 * @param[in] exp Expression to use.
Michal Vasko004d3152020-06-11 19:59:22 +02001915 * @param[in] tok_idx Position in the expresion \p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001916 * @param[in] repeat_op_idx Index from \p exp of the operator token. This value is pushed.
1917 */
1918static void
Michal Vasko004d3152020-06-11 19:59:22 +02001919exp_repeat_push(struct lyxp_expr *exp, uint16_t tok_idx, uint16_t repeat_op_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001920{
1921 uint16_t i;
1922
Michal Vasko004d3152020-06-11 19:59:22 +02001923 if (exp->repeat[tok_idx]) {
1924 for (i = 0; exp->repeat[tok_idx][i]; ++i);
1925 exp->repeat[tok_idx] = realloc(exp->repeat[tok_idx], (i + 2) * sizeof *exp->repeat[tok_idx]);
1926 LY_CHECK_ERR_RET(!exp->repeat[tok_idx], LOGMEM(NULL), );
1927 exp->repeat[tok_idx][i] = repeat_op_idx;
1928 exp->repeat[tok_idx][i + 1] = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001929 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02001930 exp->repeat[tok_idx] = calloc(2, sizeof *exp->repeat[tok_idx]);
1931 LY_CHECK_ERR_RET(!exp->repeat[tok_idx], LOGMEM(NULL), );
1932 exp->repeat[tok_idx][0] = repeat_op_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001933 }
1934}
1935
1936/**
1937 * @brief Reparse Predicate. Logs directly on error.
1938 *
1939 * [7] Predicate ::= '[' Expr ']'
1940 *
1941 * @param[in] ctx Context for logging.
1942 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02001943 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001944 * @return LY_ERR
1945 */
1946static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02001947reparse_predicate(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001948{
1949 LY_ERR rc;
1950
Michal Vasko004d3152020-06-11 19:59:22 +02001951 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_BRACK1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001952 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02001953 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001954
Michal Vasko004d3152020-06-11 19:59:22 +02001955 rc = reparse_or_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001956 LY_CHECK_RET(rc);
1957
Michal Vasko004d3152020-06-11 19:59:22 +02001958 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_BRACK2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001959 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02001960 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001961
1962 return LY_SUCCESS;
1963}
1964
1965/**
1966 * @brief Reparse RelativeLocationPath. Logs directly on error.
1967 *
1968 * [4] RelativeLocationPath ::= Step | RelativeLocationPath '/' Step | RelativeLocationPath '//' Step
1969 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
1970 * [6] NodeTest ::= NameTest | NodeType '(' ')'
1971 *
1972 * @param[in] ctx Context for logging.
1973 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02001974 * @param[in] tok_idx Position in the expression \p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001975 * @return LY_ERR (LY_EINCOMPLETE on forward reference)
1976 */
1977static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02001978reparse_relative_location_path(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001979{
1980 LY_ERR rc;
1981
Michal Vasko004d3152020-06-11 19:59:22 +02001982 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001983 LY_CHECK_RET(rc);
1984
1985 goto step;
1986 do {
1987 /* '/' or '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02001988 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001989
Michal Vasko004d3152020-06-11 19:59:22 +02001990 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001991 LY_CHECK_RET(rc);
1992step:
1993 /* Step */
Michal Vasko004d3152020-06-11 19:59:22 +02001994 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001995 case LYXP_TOKEN_DOT:
Michal Vasko004d3152020-06-11 19:59:22 +02001996 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001997 break;
1998
1999 case LYXP_TOKEN_DDOT:
Michal Vasko004d3152020-06-11 19:59:22 +02002000 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002001 break;
2002
2003 case LYXP_TOKEN_AT:
Michal Vasko004d3152020-06-11 19:59:22 +02002004 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002005
Michal Vasko004d3152020-06-11 19:59:22 +02002006 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002007 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002008 if ((exp->tokens[*tok_idx] != LYXP_TOKEN_NAMETEST) && (exp->tokens[*tok_idx] != LYXP_TOKEN_NODETYPE)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002009 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_INTOK,
Michal Vasko004d3152020-06-11 19:59:22 +02002010 lyxp_print_token(exp->tokens[*tok_idx]), &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002011 return LY_EVALID;
2012 }
2013 /* fall through */
2014 case LYXP_TOKEN_NAMETEST:
Michal Vasko004d3152020-06-11 19:59:22 +02002015 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002016 goto reparse_predicate;
2017 break;
2018
2019 case LYXP_TOKEN_NODETYPE:
Michal Vasko004d3152020-06-11 19:59:22 +02002020 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002021
2022 /* '(' */
Michal Vasko004d3152020-06-11 19:59:22 +02002023 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002024 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002025 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002026
2027 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02002028 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002029 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002030 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002031
2032reparse_predicate:
2033 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02002034 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
2035 rc = reparse_predicate(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002036 LY_CHECK_RET(rc);
2037 }
2038 break;
2039 default:
2040 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_INTOK,
Michal Vasko004d3152020-06-11 19:59:22 +02002041 lyxp_print_token(exp->tokens[*tok_idx]), &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002042 return LY_EVALID;
2043 }
Michal Vasko004d3152020-06-11 19:59:22 +02002044 } while (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH));
Michal Vasko03ff5a72019-09-11 13:49:33 +02002045
2046 return LY_SUCCESS;
2047}
2048
2049/**
2050 * @brief Reparse AbsoluteLocationPath. Logs directly on error.
2051 *
2052 * [3] AbsoluteLocationPath ::= '/' RelativeLocationPath? | '//' RelativeLocationPath
2053 *
2054 * @param[in] ctx Context for logging.
2055 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002056 * @param[in] tok_idx Position in the expression \p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002057 * @return LY_ERR
2058 */
2059static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02002060reparse_absolute_location_path(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002061{
2062 LY_ERR rc;
2063
Michal Vasko004d3152020-06-11 19:59:22 +02002064 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 +02002065
2066 /* '/' RelativeLocationPath? */
Michal Vasko004d3152020-06-11 19:59:22 +02002067 if (exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_PATH) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002068 /* '/' */
Michal Vasko004d3152020-06-11 19:59:22 +02002069 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002070
Michal Vasko004d3152020-06-11 19:59:22 +02002071 if (lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_NONE)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002072 return LY_SUCCESS;
2073 }
Michal Vasko004d3152020-06-11 19:59:22 +02002074 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002075 case LYXP_TOKEN_DOT:
2076 case LYXP_TOKEN_DDOT:
2077 case LYXP_TOKEN_AT:
2078 case LYXP_TOKEN_NAMETEST:
2079 case LYXP_TOKEN_NODETYPE:
Michal Vasko004d3152020-06-11 19:59:22 +02002080 rc = reparse_relative_location_path(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002081 LY_CHECK_RET(rc);
2082 /* fall through */
2083 default:
2084 break;
2085 }
2086
2087 /* '//' RelativeLocationPath */
2088 } else {
2089 /* '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02002090 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002091
Michal Vasko004d3152020-06-11 19:59:22 +02002092 rc = reparse_relative_location_path(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002093 LY_CHECK_RET(rc);
2094 }
2095
2096 return LY_SUCCESS;
2097}
2098
2099/**
2100 * @brief Reparse FunctionCall. Logs directly on error.
2101 *
2102 * [9] FunctionCall ::= FunctionName '(' ( Expr ( ',' Expr )* )? ')'
2103 *
2104 * @param[in] ctx Context for logging.
2105 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002106 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002107 * @return LY_ERR
2108 */
2109static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02002110reparse_function_call(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002111{
2112 int min_arg_count = -1, max_arg_count, arg_count;
Michal Vasko004d3152020-06-11 19:59:22 +02002113 uint16_t func_tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002114 LY_ERR rc;
2115
Michal Vasko004d3152020-06-11 19:59:22 +02002116 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_FUNCNAME);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002117 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002118 func_tok_idx = *tok_idx;
2119 switch (exp->tok_len[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002120 case 3:
Michal Vasko004d3152020-06-11 19:59:22 +02002121 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "not", 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002122 min_arg_count = 1;
2123 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002124 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "sum", 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002125 min_arg_count = 1;
2126 max_arg_count = 1;
2127 }
2128 break;
2129 case 4:
Michal Vasko004d3152020-06-11 19:59:22 +02002130 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "lang", 4)) {
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]], "last", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002134 min_arg_count = 0;
2135 max_arg_count = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002136 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "name", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002137 min_arg_count = 0;
2138 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002139 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "true", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002140 min_arg_count = 0;
2141 max_arg_count = 0;
2142 }
2143 break;
2144 case 5:
Michal Vasko004d3152020-06-11 19:59:22 +02002145 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "count", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002146 min_arg_count = 1;
2147 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002148 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "false", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002149 min_arg_count = 0;
2150 max_arg_count = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002151 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "floor", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002152 min_arg_count = 1;
2153 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002154 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "round", 5)) {
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]], "deref", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002158 min_arg_count = 1;
2159 max_arg_count = 1;
2160 }
2161 break;
2162 case 6:
Michal Vasko004d3152020-06-11 19:59:22 +02002163 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "concat", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002164 min_arg_count = 2;
Michal Vaskobe2e3562019-10-15 15:35:35 +02002165 max_arg_count = INT_MAX;
Michal Vasko004d3152020-06-11 19:59:22 +02002166 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "number", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002167 min_arg_count = 0;
2168 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002169 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002170 min_arg_count = 0;
2171 max_arg_count = 1;
2172 }
2173 break;
2174 case 7:
Michal Vasko004d3152020-06-11 19:59:22 +02002175 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "boolean", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002176 min_arg_count = 1;
2177 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002178 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "ceiling", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002179 min_arg_count = 1;
2180 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002181 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "current", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002182 min_arg_count = 0;
2183 max_arg_count = 0;
2184 }
2185 break;
2186 case 8:
Michal Vasko004d3152020-06-11 19:59:22 +02002187 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "contains", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002188 min_arg_count = 2;
2189 max_arg_count = 2;
Michal Vasko004d3152020-06-11 19:59:22 +02002190 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "position", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002191 min_arg_count = 0;
2192 max_arg_count = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002193 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "re-match", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002194 min_arg_count = 2;
2195 max_arg_count = 2;
2196 }
2197 break;
2198 case 9:
Michal Vasko004d3152020-06-11 19:59:22 +02002199 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring", 9)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002200 min_arg_count = 2;
2201 max_arg_count = 3;
Michal Vasko004d3152020-06-11 19:59:22 +02002202 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "translate", 9)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002203 min_arg_count = 3;
2204 max_arg_count = 3;
2205 }
2206 break;
2207 case 10:
Michal Vasko004d3152020-06-11 19:59:22 +02002208 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "local-name", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002209 min_arg_count = 0;
2210 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002211 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "enum-value", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002212 min_arg_count = 1;
2213 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002214 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "bit-is-set", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002215 min_arg_count = 2;
2216 max_arg_count = 2;
2217 }
2218 break;
2219 case 11:
Michal Vasko004d3152020-06-11 19:59:22 +02002220 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "starts-with", 11)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002221 min_arg_count = 2;
2222 max_arg_count = 2;
2223 }
2224 break;
2225 case 12:
Michal Vasko004d3152020-06-11 19:59:22 +02002226 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from", 12)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002227 min_arg_count = 2;
2228 max_arg_count = 2;
2229 }
2230 break;
2231 case 13:
Michal Vasko004d3152020-06-11 19:59:22 +02002232 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "namespace-uri", 13)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002233 min_arg_count = 0;
2234 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002235 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string-length", 13)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002236 min_arg_count = 0;
2237 max_arg_count = 1;
2238 }
2239 break;
2240 case 15:
Michal Vasko004d3152020-06-11 19:59:22 +02002241 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "normalize-space", 15)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002242 min_arg_count = 0;
2243 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002244 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-after", 15)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002245 min_arg_count = 2;
2246 max_arg_count = 2;
2247 }
2248 break;
2249 case 16:
Michal Vasko004d3152020-06-11 19:59:22 +02002250 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-before", 16)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002251 min_arg_count = 2;
2252 max_arg_count = 2;
2253 }
2254 break;
2255 case 20:
Michal Vasko004d3152020-06-11 19:59:22 +02002256 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from-or-self", 20)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002257 min_arg_count = 2;
2258 max_arg_count = 2;
2259 }
2260 break;
2261 }
2262 if (min_arg_count == -1) {
Michal Vasko004d3152020-06-11 19:59:22 +02002263 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 +02002264 return LY_EINVAL;
2265 }
Michal Vasko004d3152020-06-11 19:59:22 +02002266 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002267
2268 /* '(' */
Michal Vasko004d3152020-06-11 19:59:22 +02002269 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002270 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002271 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002272
2273 /* ( Expr ( ',' Expr )* )? */
2274 arg_count = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002275 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002276 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002277 if (exp->tokens[*tok_idx] != LYXP_TOKEN_PAR2) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002278 ++arg_count;
Michal Vasko004d3152020-06-11 19:59:22 +02002279 rc = reparse_or_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002280 LY_CHECK_RET(rc);
2281 }
Michal Vasko004d3152020-06-11 19:59:22 +02002282 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_COMMA)) {
2283 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002284
2285 ++arg_count;
Michal Vasko004d3152020-06-11 19:59:22 +02002286 rc = reparse_or_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002287 LY_CHECK_RET(rc);
2288 }
2289
2290 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02002291 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002292 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002293 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002294
2295 if ((arg_count < min_arg_count) || (arg_count > max_arg_count)) {
Michal Vasko004d3152020-06-11 19:59:22 +02002296 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_INARGCOUNT, arg_count, exp->tok_len[func_tok_idx],
2297 &exp->expr[exp->tok_pos[func_tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002298 return LY_EVALID;
2299 }
2300
2301 return LY_SUCCESS;
2302}
2303
2304/**
2305 * @brief Reparse PathExpr. Logs directly on error.
2306 *
2307 * [10] PathExpr ::= LocationPath | PrimaryExpr Predicate*
2308 * | PrimaryExpr Predicate* '/' RelativeLocationPath
2309 * | PrimaryExpr Predicate* '//' RelativeLocationPath
2310 * [2] LocationPath ::= RelativeLocationPath | AbsoluteLocationPath
2311 * [8] PrimaryExpr ::= '(' Expr ')' | Literal | Number | FunctionCall
2312 *
2313 * @param[in] ctx Context for logging.
2314 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002315 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002316 * @return LY_ERR
2317 */
2318static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02002319reparse_path_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002320{
2321 LY_ERR rc;
2322
Michal Vasko004d3152020-06-11 19:59:22 +02002323 if (lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE)) {
Michal Vasko14676352020-05-29 11:35:55 +02002324 return LY_EVALID;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002325 }
2326
Michal Vasko004d3152020-06-11 19:59:22 +02002327 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002328 case LYXP_TOKEN_PAR1:
2329 /* '(' Expr ')' Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02002330 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002331
Michal Vasko004d3152020-06-11 19:59:22 +02002332 rc = reparse_or_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002333 LY_CHECK_RET(rc);
2334
Michal Vasko004d3152020-06-11 19:59:22 +02002335 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002336 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002337 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002338 goto predicate;
2339 break;
2340 case LYXP_TOKEN_DOT:
2341 case LYXP_TOKEN_DDOT:
2342 case LYXP_TOKEN_AT:
2343 case LYXP_TOKEN_NAMETEST:
2344 case LYXP_TOKEN_NODETYPE:
2345 /* RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02002346 rc = reparse_relative_location_path(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002347 LY_CHECK_RET(rc);
2348 break;
2349 case LYXP_TOKEN_FUNCNAME:
2350 /* FunctionCall */
Michal Vasko004d3152020-06-11 19:59:22 +02002351 rc = reparse_function_call(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002352 LY_CHECK_RET(rc);
2353 goto predicate;
2354 break;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002355 case LYXP_TOKEN_OPER_PATH:
2356 case LYXP_TOKEN_OPER_RPATH:
Michal Vasko03ff5a72019-09-11 13:49:33 +02002357 /* AbsoluteLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02002358 rc = reparse_absolute_location_path(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002359 LY_CHECK_RET(rc);
2360 break;
2361 case LYXP_TOKEN_LITERAL:
2362 /* Literal */
Michal Vasko004d3152020-06-11 19:59:22 +02002363 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002364 goto predicate;
2365 break;
2366 case LYXP_TOKEN_NUMBER:
2367 /* Number */
Michal Vasko004d3152020-06-11 19:59:22 +02002368 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002369 goto predicate;
2370 break;
2371 default:
2372 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_INTOK,
Michal Vasko004d3152020-06-11 19:59:22 +02002373 lyxp_print_token(exp->tokens[*tok_idx]), &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002374 return LY_EVALID;
2375 }
2376
2377 return LY_SUCCESS;
2378
2379predicate:
2380 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02002381 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
2382 rc = reparse_predicate(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002383 LY_CHECK_RET(rc);
2384 }
2385
2386 /* ('/' or '//') RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02002387 if (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002388
2389 /* '/' or '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02002390 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002391
Michal Vasko004d3152020-06-11 19:59:22 +02002392 rc = reparse_relative_location_path(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002393 LY_CHECK_RET(rc);
2394 }
2395
2396 return LY_SUCCESS;
2397}
2398
2399/**
2400 * @brief Reparse UnaryExpr. Logs directly on error.
2401 *
2402 * [17] UnaryExpr ::= UnionExpr | '-' UnaryExpr
2403 * [18] UnionExpr ::= PathExpr | UnionExpr '|' PathExpr
2404 *
2405 * @param[in] ctx Context for logging.
2406 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002407 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002408 * @return LY_ERR
2409 */
2410static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02002411reparse_unary_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002412{
2413 uint16_t prev_exp;
2414 LY_ERR rc;
2415
2416 /* ('-')* */
Michal Vasko004d3152020-06-11 19:59:22 +02002417 prev_exp = *tok_idx;
2418 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_MATH)
2419 && (exp->expr[exp->tok_pos[*tok_idx]] == '-')) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002420 exp_repeat_push(exp, prev_exp, LYXP_EXPR_UNARY);
Michal Vasko004d3152020-06-11 19:59:22 +02002421 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002422 }
2423
2424 /* PathExpr */
Michal Vasko004d3152020-06-11 19:59:22 +02002425 prev_exp = *tok_idx;
2426 rc = reparse_path_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002427 LY_CHECK_RET(rc);
2428
2429 /* ('|' PathExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002430 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_UNI)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002431 exp_repeat_push(exp, prev_exp, LYXP_EXPR_UNION);
Michal Vasko004d3152020-06-11 19:59:22 +02002432 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002433
Michal Vasko004d3152020-06-11 19:59:22 +02002434 rc = reparse_path_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002435 LY_CHECK_RET(rc);
2436 }
2437
2438 return LY_SUCCESS;
2439}
2440
2441/**
2442 * @brief Reparse AdditiveExpr. Logs directly on error.
2443 *
2444 * [15] AdditiveExpr ::= MultiplicativeExpr
2445 * | AdditiveExpr '+' MultiplicativeExpr
2446 * | AdditiveExpr '-' MultiplicativeExpr
2447 * [16] MultiplicativeExpr ::= UnaryExpr
2448 * | MultiplicativeExpr '*' UnaryExpr
2449 * | MultiplicativeExpr 'div' UnaryExpr
2450 * | MultiplicativeExpr 'mod' UnaryExpr
2451 *
2452 * @param[in] ctx Context for logging.
2453 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002454 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002455 * @return LY_ERR
2456 */
2457static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02002458reparse_additive_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002459{
2460 uint16_t prev_add_exp, prev_mul_exp;
2461 LY_ERR rc;
2462
Michal Vasko004d3152020-06-11 19:59:22 +02002463 prev_add_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002464 goto reparse_multiplicative_expr;
2465
2466 /* ('+' / '-' MultiplicativeExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002467 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_MATH)
2468 && ((exp->expr[exp->tok_pos[*tok_idx]] == '+') || (exp->expr[exp->tok_pos[*tok_idx]] == '-'))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002469 exp_repeat_push(exp, prev_add_exp, LYXP_EXPR_ADDITIVE);
Michal Vasko004d3152020-06-11 19:59:22 +02002470 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002471
2472reparse_multiplicative_expr:
2473 /* UnaryExpr */
Michal Vasko004d3152020-06-11 19:59:22 +02002474 prev_mul_exp = *tok_idx;
2475 rc = reparse_unary_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002476 LY_CHECK_RET(rc);
2477
2478 /* ('*' / 'div' / 'mod' UnaryExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002479 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_MATH)
2480 && ((exp->expr[exp->tok_pos[*tok_idx]] == '*') || (exp->tok_len[*tok_idx] == 3))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002481 exp_repeat_push(exp, prev_mul_exp, LYXP_EXPR_MULTIPLICATIVE);
Michal Vasko004d3152020-06-11 19:59:22 +02002482 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002483
Michal Vasko004d3152020-06-11 19:59:22 +02002484 rc = reparse_unary_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002485 LY_CHECK_RET(rc);
2486 }
2487 }
2488
2489 return LY_SUCCESS;
2490}
2491
2492/**
2493 * @brief Reparse EqualityExpr. Logs directly on error.
2494 *
2495 * [13] EqualityExpr ::= RelationalExpr | EqualityExpr '=' RelationalExpr
2496 * | EqualityExpr '!=' RelationalExpr
2497 * [14] RelationalExpr ::= AdditiveExpr
2498 * | RelationalExpr '<' AdditiveExpr
2499 * | RelationalExpr '>' AdditiveExpr
2500 * | RelationalExpr '<=' AdditiveExpr
2501 * | RelationalExpr '>=' AdditiveExpr
2502 *
2503 * @param[in] ctx Context for logging.
2504 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002505 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002506 * @return LY_ERR
2507 */
2508static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02002509reparse_equality_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002510{
2511 uint16_t prev_eq_exp, prev_rel_exp;
2512 LY_ERR rc;
2513
Michal Vasko004d3152020-06-11 19:59:22 +02002514 prev_eq_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002515 goto reparse_additive_expr;
2516
2517 /* ('=' / '!=' RelationalExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002518 while (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_EQUAL, LYXP_TOKEN_OPER_NEQUAL)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002519 exp_repeat_push(exp, prev_eq_exp, LYXP_EXPR_EQUALITY);
Michal Vasko004d3152020-06-11 19:59:22 +02002520 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002521
2522reparse_additive_expr:
2523 /* AdditiveExpr */
Michal Vasko004d3152020-06-11 19:59:22 +02002524 prev_rel_exp = *tok_idx;
2525 rc = reparse_additive_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002526 LY_CHECK_RET(rc);
2527
2528 /* ('<' / '>' / '<=' / '>=' AdditiveExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002529 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_COMP)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002530 exp_repeat_push(exp, prev_rel_exp, LYXP_EXPR_RELATIONAL);
Michal Vasko004d3152020-06-11 19:59:22 +02002531 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002532
Michal Vasko004d3152020-06-11 19:59:22 +02002533 rc = reparse_additive_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002534 LY_CHECK_RET(rc);
2535 }
2536 }
2537
2538 return LY_SUCCESS;
2539}
2540
2541/**
2542 * @brief Reparse OrExpr. Logs directly on error.
2543 *
2544 * [11] OrExpr ::= AndExpr | OrExpr 'or' AndExpr
2545 * [12] AndExpr ::= EqualityExpr | AndExpr 'and' EqualityExpr
2546 *
2547 * @param[in] ctx Context for logging.
2548 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002549 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002550 * @return LY_ERR
2551 */
2552static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02002553reparse_or_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002554{
2555 uint16_t prev_or_exp, prev_and_exp;
2556 LY_ERR rc;
2557
Michal Vasko004d3152020-06-11 19:59:22 +02002558 prev_or_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002559 goto reparse_equality_expr;
2560
2561 /* ('or' AndExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002562 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 +02002563 exp_repeat_push(exp, prev_or_exp, LYXP_EXPR_OR);
Michal Vasko004d3152020-06-11 19:59:22 +02002564 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002565
2566reparse_equality_expr:
2567 /* EqualityExpr */
Michal Vasko004d3152020-06-11 19:59:22 +02002568 prev_and_exp = *tok_idx;
2569 rc = reparse_equality_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002570 LY_CHECK_RET(rc);
2571
2572 /* ('and' EqualityExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002573 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 +02002574 exp_repeat_push(exp, prev_and_exp, LYXP_EXPR_AND);
Michal Vasko004d3152020-06-11 19:59:22 +02002575 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002576
Michal Vasko004d3152020-06-11 19:59:22 +02002577 rc = reparse_equality_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002578 LY_CHECK_RET(rc);
2579 }
2580 }
2581
2582 return LY_SUCCESS;
2583}
Radek Krejcib1646a92018-11-02 16:08:26 +01002584
2585/**
2586 * @brief Parse NCName.
2587 *
2588 * @param[in] ncname Name to parse.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002589 * @return Length of @p ncname valid bytes.
Radek Krejcib1646a92018-11-02 16:08:26 +01002590 */
Radek Krejcid4270262019-01-07 15:07:25 +01002591static long int
Radek Krejcib1646a92018-11-02 16:08:26 +01002592parse_ncname(const char *ncname)
2593{
2594 unsigned int uc;
Radek Krejcid4270262019-01-07 15:07:25 +01002595 size_t size;
2596 long int len = 0;
Radek Krejcib1646a92018-11-02 16:08:26 +01002597
2598 LY_CHECK_RET(ly_getutf8(&ncname, &uc, &size), 0);
2599 if (!is_xmlqnamestartchar(uc) || (uc == ':')) {
2600 return len;
2601 }
2602
2603 do {
2604 len += size;
Radek Krejci9a564c92019-01-07 14:53:57 +01002605 if (!*ncname) {
2606 break;
2607 }
Radek Krejcid4270262019-01-07 15:07:25 +01002608 LY_CHECK_RET(ly_getutf8(&ncname, &uc, &size), -len);
Radek Krejcib1646a92018-11-02 16:08:26 +01002609 } while (is_xmlqnamechar(uc) && (uc != ':'));
2610
2611 return len;
2612}
2613
2614/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02002615 * @brief Add @p token into the expression @p exp.
Radek Krejcib1646a92018-11-02 16:08:26 +01002616 *
Michal Vasko03ff5a72019-09-11 13:49:33 +02002617 * @param[in] ctx Context for logging.
Radek Krejcib1646a92018-11-02 16:08:26 +01002618 * @param[in] exp Expression to use.
2619 * @param[in] token Token to add.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002620 * @param[in] tok_pos Token position in the XPath expression.
Radek Krejcib1646a92018-11-02 16:08:26 +01002621 * @param[in] tok_len Token length in the XPath expression.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002622 * @return LY_ERR
Radek Krejcib1646a92018-11-02 16:08:26 +01002623 */
2624static LY_ERR
Michal Vasko14676352020-05-29 11:35:55 +02002625exp_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 +01002626{
2627 uint32_t prev;
2628
2629 if (exp->used == exp->size) {
2630 prev = exp->size;
2631 exp->size += LYXP_EXPR_SIZE_STEP;
2632 if (prev > exp->size) {
2633 LOGINT(ctx);
2634 return LY_EINT;
2635 }
2636
2637 exp->tokens = ly_realloc(exp->tokens, exp->size * sizeof *exp->tokens);
2638 LY_CHECK_ERR_RET(!exp->tokens, LOGMEM(ctx), LY_EMEM);
2639 exp->tok_pos = ly_realloc(exp->tok_pos, exp->size * sizeof *exp->tok_pos);
2640 LY_CHECK_ERR_RET(!exp->tok_pos, LOGMEM(ctx), LY_EMEM);
2641 exp->tok_len = ly_realloc(exp->tok_len, exp->size * sizeof *exp->tok_len);
2642 LY_CHECK_ERR_RET(!exp->tok_len, LOGMEM(ctx), LY_EMEM);
2643 }
2644
2645 exp->tokens[exp->used] = token;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002646 exp->tok_pos[exp->used] = tok_pos;
Radek Krejcib1646a92018-11-02 16:08:26 +01002647 exp->tok_len[exp->used] = tok_len;
2648 ++exp->used;
2649 return LY_SUCCESS;
2650}
2651
2652void
Michal Vasko14676352020-05-29 11:35:55 +02002653lyxp_expr_free(const struct ly_ctx *ctx, struct lyxp_expr *expr)
Radek Krejcib1646a92018-11-02 16:08:26 +01002654{
2655 uint16_t i;
2656
2657 if (!expr) {
2658 return;
2659 }
2660
2661 lydict_remove(ctx, expr->expr);
2662 free(expr->tokens);
2663 free(expr->tok_pos);
2664 free(expr->tok_len);
2665 if (expr->repeat) {
2666 for (i = 0; i < expr->used; ++i) {
2667 free(expr->repeat[i]);
2668 }
2669 }
2670 free(expr->repeat);
2671 free(expr);
2672}
2673
2674struct lyxp_expr *
Michal Vasko004d3152020-06-11 19:59:22 +02002675lyxp_expr_parse(const struct ly_ctx *ctx, const char *expr, size_t expr_len, int reparse)
Radek Krejcib1646a92018-11-02 16:08:26 +01002676{
2677 struct lyxp_expr *ret;
Radek Krejcid4270262019-01-07 15:07:25 +01002678 size_t parsed = 0, tok_len;
2679 long int ncname_len;
Radek Krejcib1646a92018-11-02 16:08:26 +01002680 enum lyxp_token tok_type;
2681 int prev_function_check = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002682 uint16_t tok_idx = 0;
Radek Krejcib1646a92018-11-02 16:08:26 +01002683
Michal Vasko004d3152020-06-11 19:59:22 +02002684 if (!expr[0]) {
2685 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_EOF);
2686 return NULL;
2687 }
2688
2689 if (!expr_len) {
2690 expr_len = strlen(expr);
2691 }
2692 if (expr_len > UINT16_MAX) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002693 LOGERR(ctx, LY_EINVAL, "XPath expression cannot be longer than %ud characters.", UINT16_MAX);
2694 return NULL;
2695 }
2696
2697 /* init lyxp_expr structure */
2698 ret = calloc(1, sizeof *ret);
2699 LY_CHECK_ERR_GOTO(!ret, LOGMEM(ctx), error);
Michal Vasko004d3152020-06-11 19:59:22 +02002700 ret->expr = lydict_insert(ctx, expr, expr_len);
Radek Krejcib1646a92018-11-02 16:08:26 +01002701 LY_CHECK_ERR_GOTO(!ret->expr, LOGMEM(ctx), error);
2702 ret->used = 0;
2703 ret->size = LYXP_EXPR_SIZE_START;
2704 ret->tokens = malloc(ret->size * sizeof *ret->tokens);
2705 LY_CHECK_ERR_GOTO(!ret->tokens, LOGMEM(ctx), error);
2706
2707 ret->tok_pos = malloc(ret->size * sizeof *ret->tok_pos);
2708 LY_CHECK_ERR_GOTO(!ret->tok_pos, LOGMEM(ctx), error);
2709
2710 ret->tok_len = malloc(ret->size * sizeof *ret->tok_len);
2711 LY_CHECK_ERR_GOTO(!ret->tok_len, LOGMEM(ctx), error);
2712
Michal Vasko004d3152020-06-11 19:59:22 +02002713 /* make expr 0-terminated */
2714 expr = ret->expr;
2715
Radek Krejcib1646a92018-11-02 16:08:26 +01002716 while (is_xmlws(expr[parsed])) {
2717 ++parsed;
2718 }
2719
2720 do {
2721 if (expr[parsed] == '(') {
2722
2723 /* '(' */
2724 tok_len = 1;
2725 tok_type = LYXP_TOKEN_PAR1;
2726
2727 if (prev_function_check && ret->used && (ret->tokens[ret->used - 1] == LYXP_TOKEN_NAMETEST)) {
2728 /* it is a NodeType/FunctionName after all */
2729 if (((ret->tok_len[ret->used - 1] == 4)
2730 && (!strncmp(&expr[ret->tok_pos[ret->used - 1]], "node", 4)
2731 || !strncmp(&expr[ret->tok_pos[ret->used - 1]], "text", 4))) ||
2732 ((ret->tok_len[ret->used - 1] == 7)
2733 && !strncmp(&expr[ret->tok_pos[ret->used - 1]], "comment", 7))) {
2734 ret->tokens[ret->used - 1] = LYXP_TOKEN_NODETYPE;
2735 } else {
2736 ret->tokens[ret->used - 1] = LYXP_TOKEN_FUNCNAME;
2737 }
2738 prev_function_check = 0;
2739 }
2740
2741 } else if (expr[parsed] == ')') {
2742
2743 /* ')' */
2744 tok_len = 1;
2745 tok_type = LYXP_TOKEN_PAR2;
2746
2747 } else if (expr[parsed] == '[') {
2748
2749 /* '[' */
2750 tok_len = 1;
2751 tok_type = LYXP_TOKEN_BRACK1;
2752
2753 } else if (expr[parsed] == ']') {
2754
2755 /* ']' */
2756 tok_len = 1;
2757 tok_type = LYXP_TOKEN_BRACK2;
2758
2759 } else if (!strncmp(&expr[parsed], "..", 2)) {
2760
2761 /* '..' */
2762 tok_len = 2;
2763 tok_type = LYXP_TOKEN_DDOT;
2764
2765 } else if ((expr[parsed] == '.') && (!isdigit(expr[parsed + 1]))) {
2766
2767 /* '.' */
2768 tok_len = 1;
2769 tok_type = LYXP_TOKEN_DOT;
2770
2771 } else if (expr[parsed] == '@') {
2772
2773 /* '@' */
2774 tok_len = 1;
2775 tok_type = LYXP_TOKEN_AT;
2776
2777 } else if (expr[parsed] == ',') {
2778
2779 /* ',' */
2780 tok_len = 1;
2781 tok_type = LYXP_TOKEN_COMMA;
2782
2783 } else if (expr[parsed] == '\'') {
2784
2785 /* Literal with ' */
2786 for (tok_len = 1; (expr[parsed + tok_len] != '\0') && (expr[parsed + tok_len] != '\''); ++tok_len);
2787 LY_CHECK_ERR_GOTO(expr[parsed + tok_len] == '\0',
2788 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_EOE, expr[parsed], &expr[parsed]), error);
2789 ++tok_len;
2790 tok_type = LYXP_TOKEN_LITERAL;
2791
2792 } else if (expr[parsed] == '\"') {
2793
2794 /* Literal with " */
2795 for (tok_len = 1; (expr[parsed + tok_len] != '\0') && (expr[parsed + tok_len] != '\"'); ++tok_len);
2796 LY_CHECK_ERR_GOTO(expr[parsed + tok_len] == '\0',
2797 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_EOE, expr[parsed], &expr[parsed]), error);
2798 ++tok_len;
2799 tok_type = LYXP_TOKEN_LITERAL;
2800
2801 } else if ((expr[parsed] == '.') || (isdigit(expr[parsed]))) {
2802
2803 /* Number */
2804 for (tok_len = 0; isdigit(expr[parsed + tok_len]); ++tok_len);
2805 if (expr[parsed + tok_len] == '.') {
2806 ++tok_len;
2807 for (; isdigit(expr[parsed + tok_len]); ++tok_len);
2808 }
2809 tok_type = LYXP_TOKEN_NUMBER;
2810
2811 } else if (expr[parsed] == '/') {
2812
2813 /* Operator '/', '//' */
2814 if (!strncmp(&expr[parsed], "//", 2)) {
2815 tok_len = 2;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002816 tok_type = LYXP_TOKEN_OPER_RPATH;
Radek Krejcib1646a92018-11-02 16:08:26 +01002817 } else {
2818 tok_len = 1;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002819 tok_type = LYXP_TOKEN_OPER_PATH;
Radek Krejcib1646a92018-11-02 16:08:26 +01002820 }
Radek Krejcib1646a92018-11-02 16:08:26 +01002821
Michal Vasko3e48bf32020-06-01 08:39:07 +02002822 } else if (!strncmp(&expr[parsed], "!=", 2)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002823
Michal Vasko3e48bf32020-06-01 08:39:07 +02002824 /* Operator '!=' */
Radek Krejcib1646a92018-11-02 16:08:26 +01002825 tok_len = 2;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002826 tok_type = LYXP_TOKEN_OPER_NEQUAL;
2827
2828 } else if (!strncmp(&expr[parsed], "<=", 2) || !strncmp(&expr[parsed], ">=", 2)) {
2829
2830 /* Operator '<=', '>=' */
2831 tok_len = 2;
2832 tok_type = LYXP_TOKEN_OPER_COMP;
Radek Krejcib1646a92018-11-02 16:08:26 +01002833
2834 } else if (expr[parsed] == '|') {
2835
2836 /* Operator '|' */
2837 tok_len = 1;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002838 tok_type = LYXP_TOKEN_OPER_UNI;
Radek Krejcib1646a92018-11-02 16:08:26 +01002839
2840 } else if ((expr[parsed] == '+') || (expr[parsed] == '-')) {
2841
2842 /* Operator '+', '-' */
2843 tok_len = 1;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002844 tok_type = LYXP_TOKEN_OPER_MATH;
Radek Krejcib1646a92018-11-02 16:08:26 +01002845
Michal Vasko3e48bf32020-06-01 08:39:07 +02002846 } else if (expr[parsed] == '=') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002847
Michal Vasko3e48bf32020-06-01 08:39:07 +02002848 /* Operator '=' */
Radek Krejcib1646a92018-11-02 16:08:26 +01002849 tok_len = 1;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002850 tok_type = LYXP_TOKEN_OPER_EQUAL;
2851
2852 } else if ((expr[parsed] == '<') || (expr[parsed] == '>')) {
2853
2854 /* Operator '<', '>' */
2855 tok_len = 1;
2856 tok_type = LYXP_TOKEN_OPER_COMP;
Radek Krejcib1646a92018-11-02 16:08:26 +01002857
2858 } else if (ret->used && (ret->tokens[ret->used - 1] != LYXP_TOKEN_AT)
2859 && (ret->tokens[ret->used - 1] != LYXP_TOKEN_PAR1)
2860 && (ret->tokens[ret->used - 1] != LYXP_TOKEN_BRACK1)
2861 && (ret->tokens[ret->used - 1] != LYXP_TOKEN_COMMA)
Michal Vasko3e48bf32020-06-01 08:39:07 +02002862 && (ret->tokens[ret->used - 1] != LYXP_TOKEN_OPER_LOG)
2863 && (ret->tokens[ret->used - 1] != LYXP_TOKEN_OPER_EQUAL)
2864 && (ret->tokens[ret->used - 1] != LYXP_TOKEN_OPER_NEQUAL)
2865 && (ret->tokens[ret->used - 1] != LYXP_TOKEN_OPER_COMP)
2866 && (ret->tokens[ret->used - 1] != LYXP_TOKEN_OPER_MATH)
2867 && (ret->tokens[ret->used - 1] != LYXP_TOKEN_OPER_UNI)
2868 && (ret->tokens[ret->used - 1] != LYXP_TOKEN_OPER_PATH)
2869 && (ret->tokens[ret->used - 1] != LYXP_TOKEN_OPER_RPATH)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002870
2871 /* Operator '*', 'or', 'and', 'mod', or 'div' */
2872 if (expr[parsed] == '*') {
2873 tok_len = 1;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002874 tok_type = LYXP_TOKEN_OPER_MATH;
Radek Krejcib1646a92018-11-02 16:08:26 +01002875
2876 } else if (!strncmp(&expr[parsed], "or", 2)) {
2877 tok_len = 2;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002878 tok_type = LYXP_TOKEN_OPER_LOG;
Radek Krejcib1646a92018-11-02 16:08:26 +01002879
2880 } else if (!strncmp(&expr[parsed], "and", 3)) {
2881 tok_len = 3;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002882 tok_type = LYXP_TOKEN_OPER_LOG;
Radek Krejcib1646a92018-11-02 16:08:26 +01002883
2884 } else if (!strncmp(&expr[parsed], "mod", 3) || !strncmp(&expr[parsed], "div", 3)) {
2885 tok_len = 3;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002886 tok_type = LYXP_TOKEN_OPER_MATH;
Radek Krejcib1646a92018-11-02 16:08:26 +01002887
2888 } else if (prev_function_check) {
Michal Vasko53078572019-05-24 08:50:15 +02002889 LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_XPATH, "Invalid character 0x%x ('%c'), perhaps \"%.*s\" is supposed to be a function call.",
2890 expr[parsed], expr[parsed], ret->tok_len[ret->used - 1], &ret->expr[ret->tok_pos[ret->used - 1]]);
Radek Krejcib1646a92018-11-02 16:08:26 +01002891 goto error;
2892 } else {
Radek Krejcid4270262019-01-07 15:07:25 +01002893 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_INEXPR, parsed + 1, expr);
Radek Krejcib1646a92018-11-02 16:08:26 +01002894 goto error;
2895 }
2896 } else if (expr[parsed] == '*') {
2897
2898 /* NameTest '*' */
2899 tok_len = 1;
2900 tok_type = LYXP_TOKEN_NAMETEST;
2901
2902 } else {
2903
2904 /* NameTest (NCName ':' '*' | QName) or NodeType/FunctionName */
2905 ncname_len = parse_ncname(&expr[parsed]);
Radek Krejcid4270262019-01-07 15:07:25 +01002906 LY_CHECK_ERR_GOTO(ncname_len < 0, LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_INEXPR, parsed - ncname_len + 1, expr), error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002907 tok_len = ncname_len;
2908
2909 if (expr[parsed + tok_len] == ':') {
2910 ++tok_len;
2911 if (expr[parsed + tok_len] == '*') {
2912 ++tok_len;
2913 } else {
2914 ncname_len = parse_ncname(&expr[parsed + tok_len]);
Radek Krejcid4270262019-01-07 15:07:25 +01002915 LY_CHECK_ERR_GOTO(ncname_len < 0, LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_INEXPR, parsed - ncname_len + 1, expr), error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002916 tok_len += ncname_len;
2917 }
2918 /* remove old flag to prevent ambiguities */
2919 prev_function_check = 0;
2920 tok_type = LYXP_TOKEN_NAMETEST;
2921 } else {
2922 /* there is no prefix so it can still be NodeType/FunctionName, we can't finally decide now */
2923 prev_function_check = 1;
2924 tok_type = LYXP_TOKEN_NAMETEST;
2925 }
2926 }
2927
2928 /* store the token, move on to the next one */
2929 LY_CHECK_GOTO(exp_add_token(ctx, ret, tok_type, parsed, tok_len), error);
2930 parsed += tok_len;
2931 while (is_xmlws(expr[parsed])) {
2932 ++parsed;
2933 }
2934
2935 } while (expr[parsed]);
2936
Michal Vasko004d3152020-06-11 19:59:22 +02002937 if (reparse) {
2938 /* prealloc repeat */
2939 ret->repeat = calloc(ret->size, sizeof *ret->repeat);
2940 LY_CHECK_ERR_GOTO(!ret->repeat, LOGMEM(ctx), error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002941
Michal Vasko004d3152020-06-11 19:59:22 +02002942 /* fill repeat */
2943 LY_CHECK_GOTO(reparse_or_expr(ctx, ret, &tok_idx), error);
2944 if (ret->used > tok_idx) {
2945 LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_XPATH, "Unparsed characters \"%s\" left at the end of an XPath expression.",
2946 &ret->expr[ret->tok_pos[tok_idx]]);
2947 goto error;
2948 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02002949 }
2950
2951 print_expr_struct_debug(ret);
2952
Radek Krejcib1646a92018-11-02 16:08:26 +01002953 return ret;
2954
2955error:
2956 lyxp_expr_free(ctx, ret);
2957 return NULL;
2958}
2959
Michal Vasko004d3152020-06-11 19:59:22 +02002960struct lyxp_expr *
2961lyxp_expr_dup(const struct ly_ctx *ctx, const struct lyxp_expr *exp)
2962{
2963 struct lyxp_expr *dup;
2964 uint32_t i, j;
2965
2966 dup = calloc(1, sizeof *dup);
2967 LY_CHECK_ERR_GOTO(!dup, LOGMEM(ctx), error);
2968
2969 dup->tokens = malloc(exp->used * sizeof *dup->tokens);
2970 LY_CHECK_ERR_GOTO(!dup->tokens, LOGMEM(ctx), error);
2971 memcpy(dup->tokens, exp->tokens, exp->used * sizeof *dup->tokens);
2972
2973 dup->tok_pos = malloc(exp->used * sizeof *dup->tok_pos);
2974 LY_CHECK_ERR_GOTO(!dup->tok_pos, LOGMEM(ctx), error);
2975 memcpy(dup->tok_pos, exp->tok_pos, exp->used * sizeof *dup->tok_pos);
2976
2977 dup->tok_len = malloc(exp->used * sizeof *dup->tok_len);
2978 LY_CHECK_ERR_GOTO(!dup->tok_len, LOGMEM(ctx), error);
2979 memcpy(dup->tok_len, exp->tok_len, exp->used * sizeof *dup->tok_len);
2980
2981 dup->repeat = malloc(exp->used * sizeof *dup->repeat);
2982 LY_CHECK_ERR_GOTO(!dup->repeat, LOGMEM(ctx), error);
2983 for (i = 0; i < exp->used; ++i) {
2984 if (!exp->repeat[i]) {
2985 dup->repeat[i] = NULL;
2986 } else {
2987 for (j = 0; exp->repeat[i][j]; ++j);
2988 /* the ending 0 as well */
2989 ++j;
2990
Michal Vasko99c71642020-07-03 13:33:36 +02002991 dup->repeat[i] = malloc(j * sizeof **dup->repeat);
Michal Vasko004d3152020-06-11 19:59:22 +02002992 LY_CHECK_ERR_GOTO(!dup->repeat[i], LOGMEM(ctx), error);
2993 memcpy(dup->repeat[i], exp->repeat[i], j * sizeof **dup->repeat);
2994 dup->repeat[i][j - 1] = 0;
2995 }
2996 }
2997
2998 dup->used = exp->used;
2999 dup->size = exp->used;
3000 dup->expr = lydict_insert(ctx, exp->expr, 0);
3001
3002 return dup;
3003
3004error:
3005 lyxp_expr_free(ctx, dup);
3006 return NULL;
3007}
3008
Michal Vasko03ff5a72019-09-11 13:49:33 +02003009/*
3010 * warn functions
3011 *
3012 * Warn functions check specific reasonable conditions for schema XPath
3013 * and print a warning if they are not satisfied.
3014 */
3015
3016/**
3017 * @brief Get the last-added schema node that is currently in the context.
3018 *
3019 * @param[in] set Set to search in.
3020 * @return Last-added schema context node, NULL if no node is in context.
3021 */
3022static struct lysc_node *
3023warn_get_scnode_in_ctx(struct lyxp_set *set)
3024{
3025 uint32_t i;
3026
3027 if (!set || (set->type != LYXP_SET_SCNODE_SET)) {
3028 return NULL;
3029 }
3030
3031 i = set->used;
3032 do {
3033 --i;
3034 if (set->val.scnodes[i].in_ctx == 1) {
3035 /* if there are more, simply return the first found (last added) */
3036 return set->val.scnodes[i].scnode;
3037 }
3038 } while (i);
3039
3040 return NULL;
3041}
3042
3043/**
3044 * @brief Test whether a type is numeric - integer type or decimal64.
3045 *
3046 * @param[in] type Type to test.
3047 * @return 1 if numeric, 0 otherwise.
3048 */
3049static int
3050warn_is_numeric_type(struct lysc_type *type)
3051{
3052 struct lysc_type_union *uni;
3053 int ret;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003054 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003055
3056 switch (type->basetype) {
3057 case LY_TYPE_DEC64:
3058 case LY_TYPE_INT8:
3059 case LY_TYPE_UINT8:
3060 case LY_TYPE_INT16:
3061 case LY_TYPE_UINT16:
3062 case LY_TYPE_INT32:
3063 case LY_TYPE_UINT32:
3064 case LY_TYPE_INT64:
3065 case LY_TYPE_UINT64:
3066 return 1;
3067 case LY_TYPE_UNION:
3068 uni = (struct lysc_type_union *)type;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003069 LY_ARRAY_FOR(uni->types, u) {
3070 ret = warn_is_numeric_type(uni->types[u]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003071 if (ret) {
3072 /* found a suitable type */
3073 return 1;
3074 }
3075 }
3076 /* did not find any suitable type */
3077 return 0;
3078 case LY_TYPE_LEAFREF:
3079 return warn_is_numeric_type(((struct lysc_type_leafref *)type)->realtype);
3080 default:
3081 return 0;
3082 }
3083}
3084
3085/**
3086 * @brief Test whether a type is string-like - no integers, decimal64 or binary.
3087 *
3088 * @param[in] type Type to test.
3089 * @return 1 if string, 0 otherwise.
3090 */
3091static int
3092warn_is_string_type(struct lysc_type *type)
3093{
3094 struct lysc_type_union *uni;
3095 int ret;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003096 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003097
3098 switch (type->basetype) {
3099 case LY_TYPE_BITS:
3100 case LY_TYPE_ENUM:
3101 case LY_TYPE_IDENT:
3102 case LY_TYPE_INST:
3103 case LY_TYPE_STRING:
3104 return 1;
3105 case LY_TYPE_UNION:
3106 uni = (struct lysc_type_union *)type;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003107 LY_ARRAY_FOR(uni->types, u) {
3108 ret = warn_is_string_type(uni->types[u]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003109 if (ret) {
3110 /* found a suitable type */
3111 return 1;
3112 }
3113 }
3114 /* did not find any suitable type */
3115 return 0;
3116 case LY_TYPE_LEAFREF:
3117 return warn_is_string_type(((struct lysc_type_leafref *)type)->realtype);
3118 default:
3119 return 0;
3120 }
3121}
3122
3123/**
3124 * @brief Test whether a type is one specific type.
3125 *
3126 * @param[in] type Type to test.
3127 * @param[in] base Expected type.
3128 * @return 1 if it is, 0 otherwise.
3129 */
3130static int
3131warn_is_specific_type(struct lysc_type *type, LY_DATA_TYPE base)
3132{
3133 struct lysc_type_union *uni;
3134 int ret;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003135 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003136
3137 if (type->basetype == base) {
3138 return 1;
3139 } else if (type->basetype == LY_TYPE_UNION) {
3140 uni = (struct lysc_type_union *)type;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003141 LY_ARRAY_FOR(uni->types, u) {
3142 ret = warn_is_specific_type(uni->types[u], base);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003143 if (ret) {
3144 /* found a suitable type */
3145 return 1;
3146 }
3147 }
3148 /* did not find any suitable type */
3149 return 0;
3150 } else if (type->basetype == LY_TYPE_LEAFREF) {
3151 return warn_is_specific_type(((struct lysc_type_leafref *)type)->realtype, base);
3152 }
3153
3154 return 0;
3155}
3156
3157/**
3158 * @brief Get next type of a (union) type.
3159 *
3160 * @param[in] type Base type.
3161 * @param[in] prev_type Previously returned type.
3162 * @return Next type or NULL.
3163 */
3164static struct lysc_type *
3165warn_is_equal_type_next_type(struct lysc_type *type, struct lysc_type *prev_type)
3166{
3167 struct lysc_type_union *uni;
3168 int found = 0;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003169 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003170
3171 switch (type->basetype) {
3172 case LY_TYPE_UNION:
3173 uni = (struct lysc_type_union *)type;
3174 if (!prev_type) {
3175 return uni->types[0];
3176 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003177 LY_ARRAY_FOR(uni->types, u) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003178 if (found) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003179 return uni->types[u];
Michal Vasko03ff5a72019-09-11 13:49:33 +02003180 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003181 if (prev_type == uni->types[u]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003182 found = 1;
3183 }
3184 }
3185 return NULL;
3186 default:
3187 if (prev_type) {
3188 assert(type == prev_type);
3189 return NULL;
3190 } else {
3191 return type;
3192 }
3193 }
3194}
3195
3196/**
3197 * @brief Test whether 2 types have a common type.
3198 *
3199 * @param[in] type1 First type.
3200 * @param[in] type2 Second type.
3201 * @return 1 if they do, 0 otherwise.
3202 */
3203static int
3204warn_is_equal_type(struct lysc_type *type1, struct lysc_type *type2)
3205{
3206 struct lysc_type *t1, *rt1, *t2, *rt2;
3207
3208 t1 = NULL;
3209 while ((t1 = warn_is_equal_type_next_type(type1, t1))) {
3210 if (t1->basetype == LY_TYPE_LEAFREF) {
3211 rt1 = ((struct lysc_type_leafref *)t1)->realtype;
3212 } else {
3213 rt1 = t1;
3214 }
3215
3216 t2 = NULL;
3217 while ((t2 = warn_is_equal_type_next_type(type2, t2))) {
3218 if (t2->basetype == LY_TYPE_LEAFREF) {
3219 rt2 = ((struct lysc_type_leafref *)t2)->realtype;
3220 } else {
3221 rt2 = t2;
3222 }
3223
3224 if (rt2->basetype == rt1->basetype) {
3225 /* match found */
3226 return 1;
3227 }
3228 }
3229 }
3230
3231 return 0;
3232}
3233
3234/**
3235 * @brief Check both operands of comparison operators.
3236 *
3237 * @param[in] ctx Context for errors.
3238 * @param[in] set1 First operand set.
3239 * @param[in] set2 Second operand set.
3240 * @param[in] numbers_only Whether accept only numbers or other types are fine too (for '=' and '!=').
3241 * @param[in] expr Start of the expression to print with the warning.
3242 * @param[in] tok_pos Token position.
3243 */
3244static void
3245warn_operands(struct ly_ctx *ctx, struct lyxp_set *set1, struct lyxp_set *set2, int numbers_only, const char *expr, uint16_t tok_pos)
3246{
3247 struct lysc_node_leaf *node1, *node2;
3248 int leaves = 1, warning = 0;
3249
3250 node1 = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(set1);
3251 node2 = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(set2);
3252
3253 if (!node1 && !node2) {
3254 /* no node-sets involved, nothing to do */
3255 return;
3256 }
3257
3258 if (node1) {
3259 if (!(node1->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3260 LOGWRN(ctx, "Node type %s \"%s\" used as operand.", lys_nodetype2str(node1->nodetype), node1->name);
3261 warning = 1;
3262 leaves = 0;
3263 } else if (numbers_only && !warn_is_numeric_type(node1->type)) {
3264 LOGWRN(ctx, "Node \"%s\" is not of a numeric type, but used where it was expected.", node1->name);
3265 warning = 1;
3266 }
3267 }
3268
3269 if (node2) {
3270 if (!(node2->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3271 LOGWRN(ctx, "Node type %s \"%s\" used as operand.", lys_nodetype2str(node2->nodetype), node2->name);
3272 warning = 1;
3273 leaves = 0;
3274 } else if (numbers_only && !warn_is_numeric_type(node2->type)) {
3275 LOGWRN(ctx, "Node \"%s\" is not of a numeric type, but used where it was expected.", node2->name);
3276 warning = 1;
3277 }
3278 }
3279
3280 if (node1 && node2 && leaves && !numbers_only) {
3281 if ((warn_is_numeric_type(node1->type) && !warn_is_numeric_type(node2->type))
3282 || (!warn_is_numeric_type(node1->type) && warn_is_numeric_type(node2->type))
3283 || (!warn_is_numeric_type(node1->type) && !warn_is_numeric_type(node2->type)
3284 && !warn_is_equal_type(node1->type, node2->type))) {
3285 LOGWRN(ctx, "Incompatible types of operands \"%s\" and \"%s\" for comparison.", node1->name, node2->name);
3286 warning = 1;
3287 }
3288 }
3289
3290 if (warning) {
3291 LOGWRN(ctx, "Previous warning generated by XPath subexpression[%u] \"%.20s\".", tok_pos, expr + tok_pos);
3292 }
3293}
3294
3295/**
3296 * @brief Check that a value is valid for a leaf. If not applicable, does nothing.
3297 *
3298 * @param[in] exp Parsed XPath expression.
3299 * @param[in] set Set with the leaf/leaf-list.
3300 * @param[in] val_exp Index of the value (literal/number) in @p exp.
3301 * @param[in] equal_exp Index of the start of the equality expression in @p exp.
3302 * @param[in] last_equal_exp Index of the end of the equality expression in @p exp.
3303 */
3304static void
3305warn_equality_value(struct lyxp_expr *exp, struct lyxp_set *set, uint16_t val_exp, uint16_t equal_exp, uint16_t last_equal_exp)
3306{
3307 struct lysc_node *scnode;
3308 struct lysc_type *type;
3309 char *value;
3310 LY_ERR rc;
3311 struct ly_err_item *err = NULL;
3312
3313 if ((scnode = warn_get_scnode_in_ctx(set)) && (scnode->nodetype & (LYS_LEAF | LYS_LEAFLIST))
3314 && ((exp->tokens[val_exp] == LYXP_TOKEN_LITERAL) || (exp->tokens[val_exp] == LYXP_TOKEN_NUMBER))) {
3315 /* check that the node can have the specified value */
3316 if (exp->tokens[val_exp] == LYXP_TOKEN_LITERAL) {
3317 value = strndup(exp->expr + exp->tok_pos[val_exp] + 1, exp->tok_len[val_exp] - 2);
3318 } else {
3319 value = strndup(exp->expr + exp->tok_pos[val_exp], exp->tok_len[val_exp]);
3320 }
3321 if (!value) {
3322 LOGMEM(set->ctx);
3323 return;
3324 }
3325
3326 if ((((struct lysc_node_leaf *)scnode)->type->basetype == LY_TYPE_IDENT) && !strchr(value, ':')) {
3327 LOGWRN(set->ctx, "Identityref \"%s\" comparison with identity \"%s\" without prefix, consider adding"
3328 " a prefix or best using \"derived-from(-or-self)()\" functions.", scnode->name, value);
3329 LOGWRN(set->ctx, "Previous warning generated by XPath subexpression[%u] \"%.*s\".", exp->tok_pos[equal_exp],
3330 (exp->tok_pos[last_equal_exp] - exp->tok_pos[equal_exp]) + exp->tok_len[last_equal_exp],
3331 exp->expr + exp->tok_pos[equal_exp]);
3332 }
3333
3334 type = ((struct lysc_node_leaf *)scnode)->type;
3335 if (type->basetype != LY_TYPE_IDENT) {
Michal Vaskoc8a230d2020-08-14 12:17:10 +02003336 rc = type->plugin->store(set->ctx, type, value, strlen(value), LY_TYPE_OPTS_SCHEMA, LY_PREF_SCHEMA,
3337 (void *)set->local_mod, NULL, NULL, NULL, NULL, &err);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003338
3339 if (err) {
3340 LOGWRN(set->ctx, "Invalid value \"%s\" which does not fit the type (%s).", value, err->msg);
3341 ly_err_free(err);
3342 } else if (rc != LY_SUCCESS) {
3343 LOGWRN(set->ctx, "Invalid value \"%s\" which does not fit the type.", value);
3344 }
3345 if (rc != LY_SUCCESS) {
3346 LOGWRN(set->ctx, "Previous warning generated by XPath subexpression[%u] \"%.*s\".", exp->tok_pos[equal_exp],
3347 (exp->tok_pos[last_equal_exp] - exp->tok_pos[equal_exp]) + exp->tok_len[last_equal_exp],
3348 exp->expr + exp->tok_pos[equal_exp]);
3349 }
3350 }
3351 free(value);
3352 }
3353}
3354
3355/*
3356 * XPath functions
3357 */
3358
3359/**
3360 * @brief Execute the YANG 1.1 bit-is-set(node-set, string) function. Returns LYXP_SET_BOOLEAN
3361 * depending on whether the first node bit value from the second argument is set.
3362 *
3363 * @param[in] args Array of arguments.
3364 * @param[in] arg_count Count of elements in @p args.
3365 * @param[in,out] set Context and result set at the same time.
3366 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003367 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003368 */
3369static LY_ERR
3370xpath_bit_is_set(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
3371{
3372 struct lyd_node_term *leaf;
3373 struct lysc_node_leaf *sleaf;
3374 struct lysc_type_bits *bits;
3375 LY_ERR rc = LY_SUCCESS;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003376 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003377
3378 if (options & LYXP_SCNODE_ALL) {
3379 if ((args[0]->type != LYXP_SET_SCNODE_SET) || !(sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3380 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003381 } else if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3382 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 +02003383 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_BITS)) {
3384 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"bits\".", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003385 }
3386
3387 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
3388 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3389 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 +02003390 } else if (!warn_is_string_type(sleaf->type)) {
3391 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003392 }
3393 }
3394 set_scnode_clear_ctx(set);
3395 return rc;
3396 }
3397
Michal Vaskod3678892020-05-21 10:06:58 +02003398 if (args[0]->type != LYXP_SET_NODE_SET) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003399 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "bit-is-set(node-set, string)");
3400 return LY_EVALID;
3401 }
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003402 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003403 LY_CHECK_RET(rc);
3404
3405 set_fill_boolean(set, 0);
Michal Vaskod3678892020-05-21 10:06:58 +02003406 if (args[0]->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003407 leaf = (struct lyd_node_term *)args[0]->val.nodes[0].node;
3408 if ((leaf->schema->nodetype & (LYS_LEAF | LYS_LEAFLIST))
3409 && (((struct lysc_node_leaf *)leaf->schema)->type->basetype == LY_TYPE_BITS)) {
3410 bits = (struct lysc_type_bits *)((struct lysc_node_leaf *)leaf->schema)->type;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003411 LY_ARRAY_FOR(bits->bits, u) {
3412 if (!strcmp(bits->bits[u].name, args[1]->val.str)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003413 set_fill_boolean(set, 1);
3414 break;
3415 }
3416 }
3417 }
3418 }
3419
3420 return LY_SUCCESS;
3421}
3422
3423/**
3424 * @brief Execute the XPath boolean(object) function. Returns LYXP_SET_BOOLEAN
3425 * with the argument converted to boolean.
3426 *
3427 * @param[in] args Array of arguments.
3428 * @param[in] arg_count Count of elements in @p args.
3429 * @param[in,out] set Context and result set at the same time.
3430 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003431 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003432 */
3433static LY_ERR
3434xpath_boolean(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
3435{
3436 LY_ERR rc;
3437
3438 if (options & LYXP_SCNODE_ALL) {
3439 set_scnode_clear_ctx(set);
3440 return LY_SUCCESS;
3441 }
3442
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003443 rc = lyxp_set_cast(args[0], LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003444 LY_CHECK_RET(rc);
3445 set_fill_set(set, args[0]);
3446
3447 return LY_SUCCESS;
3448}
3449
3450/**
3451 * @brief Execute the XPath ceiling(number) function. Returns LYXP_SET_NUMBER
3452 * with the first argument rounded up to the nearest integer.
3453 *
3454 * @param[in] args Array of arguments.
3455 * @param[in] arg_count Count of elements in @p args.
3456 * @param[in,out] set Context and result set at the same time.
3457 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003458 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003459 */
3460static LY_ERR
3461xpath_ceiling(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
3462{
3463 struct lysc_node_leaf *sleaf;
3464 LY_ERR rc = LY_SUCCESS;
3465
3466 if (options & LYXP_SCNODE_ALL) {
3467 if ((args[0]->type != LYXP_SET_SCNODE_SET) || !(sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3468 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003469 } else if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3470 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 +02003471 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_DEC64)) {
3472 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"decimal64\".", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003473 }
3474 set_scnode_clear_ctx(set);
3475 return rc;
3476 }
3477
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003478 rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003479 LY_CHECK_RET(rc);
3480 if ((long long)args[0]->val.num != args[0]->val.num) {
3481 set_fill_number(set, ((long long)args[0]->val.num) + 1);
3482 } else {
3483 set_fill_number(set, args[0]->val.num);
3484 }
3485
3486 return LY_SUCCESS;
3487}
3488
3489/**
3490 * @brief Execute the XPath concat(string, string, string*) function.
3491 * Returns LYXP_SET_STRING with the concatenation of all the arguments.
3492 *
3493 * @param[in] args Array of arguments.
3494 * @param[in] arg_count Count of elements in @p args.
3495 * @param[in,out] set Context and result set at the same time.
3496 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003497 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003498 */
3499static LY_ERR
3500xpath_concat(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, int options)
3501{
3502 uint16_t i;
3503 char *str = NULL;
3504 size_t used = 1;
3505 LY_ERR rc = LY_SUCCESS;
3506 struct lysc_node_leaf *sleaf;
3507
3508 if (options & LYXP_SCNODE_ALL) {
3509 for (i = 0; i < arg_count; ++i) {
3510 if ((args[i]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[i]))) {
3511 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3512 LOGWRN(set->ctx, "Argument #%u of %s is a %s node \"%s\".",
3513 i + 1, __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003514 } else if (!warn_is_string_type(sleaf->type)) {
3515 LOGWRN(set->ctx, "Argument #%u of %s is node \"%s\", not of string-type.", __func__, i + 1, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003516 }
3517 }
3518 }
3519 set_scnode_clear_ctx(set);
3520 return rc;
3521 }
3522
3523 for (i = 0; i < arg_count; ++i) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003524 rc = lyxp_set_cast(args[i], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003525 if (rc != LY_SUCCESS) {
3526 free(str);
3527 return rc;
3528 }
3529
3530 str = ly_realloc(str, (used + strlen(args[i]->val.str)) * sizeof(char));
3531 LY_CHECK_ERR_RET(!str, LOGMEM(set->ctx), LY_EMEM);
3532 strcpy(str + used - 1, args[i]->val.str);
3533 used += strlen(args[i]->val.str);
3534 }
3535
3536 /* free, kind of */
Michal Vaskod3678892020-05-21 10:06:58 +02003537 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003538 set->type = LYXP_SET_STRING;
3539 set->val.str = str;
3540
3541 return LY_SUCCESS;
3542}
3543
3544/**
3545 * @brief Execute the XPath contains(string, string) function.
3546 * Returns LYXP_SET_BOOLEAN whether the second argument can
3547 * be found in the first or not.
3548 *
3549 * @param[in] args Array of arguments.
3550 * @param[in] arg_count Count of elements in @p args.
3551 * @param[in,out] set Context and result set at the same time.
3552 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003553 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003554 */
3555static LY_ERR
3556xpath_contains(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
3557{
3558 struct lysc_node_leaf *sleaf;
3559 LY_ERR rc = LY_SUCCESS;
3560
3561 if (options & LYXP_SCNODE_ALL) {
3562 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3563 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3564 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 +02003565 } else if (!warn_is_string_type(sleaf->type)) {
3566 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003567 }
3568 }
3569
3570 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
3571 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3572 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 +02003573 } else if (!warn_is_string_type(sleaf->type)) {
3574 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003575 }
3576 }
3577 set_scnode_clear_ctx(set);
3578 return rc;
3579 }
3580
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003581 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003582 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003583 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003584 LY_CHECK_RET(rc);
3585
3586 if (strstr(args[0]->val.str, args[1]->val.str)) {
3587 set_fill_boolean(set, 1);
3588 } else {
3589 set_fill_boolean(set, 0);
3590 }
3591
3592 return LY_SUCCESS;
3593}
3594
3595/**
3596 * @brief Execute the XPath count(node-set) function. Returns LYXP_SET_NUMBER
3597 * with the size of the node-set from the argument.
3598 *
3599 * @param[in] args Array of arguments.
3600 * @param[in] arg_count Count of elements in @p args.
3601 * @param[in,out] set Context and result set at the same time.
3602 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003603 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003604 */
3605static LY_ERR
3606xpath_count(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
3607{
3608 struct lysc_node *scnode = NULL;
3609 LY_ERR rc = LY_SUCCESS;
3610
3611 if (options & LYXP_SCNODE_ALL) {
3612 if ((args[0]->type != LYXP_SET_SCNODE_SET) || !(scnode = warn_get_scnode_in_ctx(args[0]))) {
3613 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003614 }
3615 set_scnode_clear_ctx(set);
3616 return rc;
3617 }
3618
Michal Vasko03ff5a72019-09-11 13:49:33 +02003619 if (args[0]->type != LYXP_SET_NODE_SET) {
3620 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "count(node-set)");
3621 return LY_EVALID;
3622 }
3623
3624 set_fill_number(set, args[0]->used);
3625 return LY_SUCCESS;
3626}
3627
3628/**
3629 * @brief Execute the XPath current() function. Returns LYXP_SET_NODE_SET
3630 * with the context with the intial node.
3631 *
3632 * @param[in] args Array of arguments.
3633 * @param[in] arg_count Count of elements in @p args.
3634 * @param[in,out] set Context and result set at the same time.
3635 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003636 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003637 */
3638static LY_ERR
3639xpath_current(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, int options)
3640{
3641 if (arg_count || args) {
3642 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INARGCOUNT, arg_count, "current()");
3643 return LY_EVALID;
3644 }
3645
3646 if (options & LYXP_SCNODE_ALL) {
3647 set_scnode_clear_ctx(set);
3648
Michal Vaskoecd62de2019-11-13 12:35:11 +01003649 lyxp_set_scnode_insert_node(set, set->ctx_scnode, LYXP_NODE_ELEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003650 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02003651 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003652
3653 /* position is filled later */
3654 set_insert_node(set, set->ctx_node, 0, LYXP_NODE_ELEM, 0);
3655 }
3656
3657 return LY_SUCCESS;
3658}
3659
3660/**
3661 * @brief Execute the YANG 1.1 deref(node-set) function. Returns LYXP_SET_NODE_SET with either
3662 * leafref or instance-identifier target node(s).
3663 *
3664 * @param[in] args Array of arguments.
3665 * @param[in] arg_count Count of elements in @p args.
3666 * @param[in,out] set Context and result set at the same time.
3667 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003668 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003669 */
3670static LY_ERR
3671xpath_deref(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
3672{
3673 struct lyd_node_term *leaf;
Michal Vasko42e497c2020-01-06 08:38:25 +01003674 struct lysc_node_leaf *sleaf = NULL;
Michal Vasko004d3152020-06-11 19:59:22 +02003675 struct lysc_type_leafref *lref;
Michal Vaskoae9e4cb2019-09-25 08:43:05 +02003676 const struct lysc_node *target;
Michal Vasko004d3152020-06-11 19:59:22 +02003677 struct ly_path *p;
3678 struct lyd_node *node;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003679 char *errmsg = NULL;
3680 const char *val;
3681 int dynamic;
Michal Vasko00cbf532020-06-15 13:58:47 +02003682 uint8_t oper;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003683 LY_ERR rc = LY_SUCCESS;
3684
3685 if (options & LYXP_SCNODE_ALL) {
3686 if ((args[0]->type != LYXP_SET_SCNODE_SET) || !(sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3687 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003688 } else if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3689 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 +02003690 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_LEAFREF) && !warn_is_specific_type(sleaf->type, LY_TYPE_INST)) {
3691 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"leafref\" nor \"instance-identifier\".",
3692 __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003693 }
3694 set_scnode_clear_ctx(set);
Michal Vasko42e497c2020-01-06 08:38:25 +01003695 if (sleaf && (sleaf->type->basetype == LY_TYPE_LEAFREF)) {
Michal Vasko004d3152020-06-11 19:59:22 +02003696 lref = (struct lysc_type_leafref *)sleaf->type;
Michal Vasko00cbf532020-06-15 13:58:47 +02003697 oper = lysc_is_output((struct lysc_node *)sleaf) ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT;
Michal Vasko004d3152020-06-11 19:59:22 +02003698
3699 /* it was already evaluated on schema, it must succeed */
Michal Vaskoc8a230d2020-08-14 12:17:10 +02003700 rc = ly_path_compile(set->ctx, sleaf->module, (struct lysc_node *)sleaf, lref->path, LY_PATH_LREF_TRUE,
3701 oper, LY_PATH_TARGET_MANY, set->format, lref->path_context, &p);
Michal Vasko004d3152020-06-11 19:59:22 +02003702 assert(!rc);
3703
3704 /* get the target node */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003705 target = p[LY_ARRAY_COUNT(p) - 1].node;
Michal Vasko004d3152020-06-11 19:59:22 +02003706 ly_path_free(set->ctx, p);
3707
3708 lyxp_set_scnode_insert_node(set, target, LYXP_NODE_ELEM);
Michal Vaskoae9e4cb2019-09-25 08:43:05 +02003709 }
3710
Michal Vasko03ff5a72019-09-11 13:49:33 +02003711 return rc;
3712 }
3713
Michal Vaskod3678892020-05-21 10:06:58 +02003714 if (args[0]->type != LYXP_SET_NODE_SET) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003715 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "deref(node-set)");
3716 return LY_EVALID;
3717 }
3718
Michal Vaskod3678892020-05-21 10:06:58 +02003719 lyxp_set_free_content(set);
3720 if (args[0]->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003721 leaf = (struct lyd_node_term *)args[0]->val.nodes[0].node;
3722 sleaf = (struct lysc_node_leaf *)leaf->schema;
3723 if (sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST)) {
3724 if (sleaf->type->basetype == LY_TYPE_LEAFREF) {
3725 /* find leafref target */
Michal Vasko004d3152020-06-11 19:59:22 +02003726 if (ly_type_find_leafref((struct lysc_type_leafref *)sleaf->type, (struct lyd_node *)leaf,
3727 &leaf->value, set->tree, &node, &errmsg)) {
3728 LOGERR(set->ctx, LY_EVALID, errmsg);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003729 free(errmsg);
Michal Vasko004d3152020-06-11 19:59:22 +02003730 return LY_EVALID;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003731 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02003732 } else {
3733 assert(sleaf->type->basetype == LY_TYPE_INST);
Michal Vasko004d3152020-06-11 19:59:22 +02003734 if (ly_path_eval(leaf->value.target, set->tree, &node)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003735 val = lyd_value2str(leaf, &dynamic);
3736 LOGERR(set->ctx, LY_EVALID, "Invalid instance-identifier \"%s\" value - required instance not found.", val);
3737 if (dynamic) {
3738 free((char *)val);
3739 }
3740 return LY_EVALID;
3741 }
3742 }
Michal Vasko004d3152020-06-11 19:59:22 +02003743
3744 /* insert it */
3745 set_insert_node(set, node, 0, LYXP_NODE_ELEM, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003746 }
3747 }
3748
3749 return LY_SUCCESS;
3750}
3751
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003752static LY_ERR
3753xpath_derived_(struct lyxp_set **args, struct lyxp_set *set, int options, int self_match, const char *func)
3754{
3755 uint16_t i;
3756 LY_ARRAY_COUNT_TYPE u;
3757 struct lyd_node_term *leaf;
3758 struct lysc_node_leaf *sleaf;
3759 struct lyd_meta *meta;
3760 struct lyd_value data = {0}, *val;
3761 struct ly_err_item *err = NULL;
3762 LY_ERR rc = LY_SUCCESS;
3763 int found;
3764
3765 if (options & LYXP_SCNODE_ALL) {
3766 if ((args[0]->type != LYXP_SET_SCNODE_SET) || !(sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3767 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", func);
3768 } else if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3769 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", func, lys_nodetype2str(sleaf->nodetype),
3770 sleaf->name);
3771 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_IDENT)) {
3772 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"identityref\".", func, sleaf->name);
3773 }
3774
3775 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
3776 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3777 LOGWRN(set->ctx, "Argument #2 of %s is a %s node \"%s\".", func, lys_nodetype2str(sleaf->nodetype),
3778 sleaf->name);
3779 } else if (!warn_is_string_type(sleaf->type)) {
3780 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", func, sleaf->name);
3781 }
3782 }
3783 set_scnode_clear_ctx(set);
3784 return rc;
3785 }
3786
3787 if (args[0]->type != LYXP_SET_NODE_SET) {
3788 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]),
3789 "derived-from(-or-self)(node-set, string)");
3790 return LY_EVALID;
3791 }
3792 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
3793 LY_CHECK_RET(rc);
3794
3795 set_fill_boolean(set, 0);
3796 found = 0;
3797 for (i = 0; i < args[0]->used; ++i) {
3798 if ((args[0]->val.nodes[i].type != LYXP_NODE_ELEM) && (args[0]->val.nodes[i].type != LYXP_NODE_META)) {
3799 continue;
3800 }
3801
3802 if (args[0]->val.nodes[i].type == LYXP_NODE_ELEM) {
3803 leaf = (struct lyd_node_term *)args[0]->val.nodes[i].node;
3804 sleaf = (struct lysc_node_leaf *)leaf->schema;
3805 val = &leaf->value;
3806 if (!(sleaf->nodetype & LYD_NODE_TERM) || (leaf->value.realtype->basetype != LY_TYPE_IDENT)) {
3807 /* uninteresting */
3808 continue;
3809 }
3810
3811 /* store args[1] as ident */
3812 rc = val->realtype->plugin->store(set->ctx, val->realtype, args[1]->val.str, strlen(args[1]->val.str),
Michal Vaskoc8a230d2020-08-14 12:17:10 +02003813 LY_TYPE_OPTS_STORE, set->format, (void *)set->local_mod,
3814 (struct lyd_node *)leaf, set->tree, &data, NULL, &err);
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003815 } else {
3816 meta = args[0]->val.meta[i].meta;
3817 val = &meta->value;
3818 if (val->realtype->basetype != LY_TYPE_IDENT) {
3819 /* uninteresting */
3820 continue;
3821 }
3822
3823 /* store args[1] as ident */
3824 rc = val->realtype->plugin->store(set->ctx, val->realtype, args[1]->val.str, strlen(args[1]->val.str),
Michal Vaskoc8a230d2020-08-14 12:17:10 +02003825 LY_TYPE_OPTS_STORE, set->format, (void *)meta->annotation->module,
3826 meta->parent, set->tree, &data, NULL, &err);
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003827 }
3828
3829 if (err) {
3830 ly_err_print(err);
3831 ly_err_free(err);
3832 }
3833 LY_CHECK_RET(rc);
3834
3835 /* finally check the identity itself */
3836 if (self_match && (data.ident == val->ident)) {
3837 set_fill_boolean(set, 1);
3838 found = 1;
3839 }
3840 if (!found) {
3841 LY_ARRAY_FOR(data.ident->derived, u) {
3842 if (data.ident->derived[u] == val->ident) {
3843 set_fill_boolean(set, 1);
3844 found = 1;
3845 break;
3846 }
3847 }
3848 }
3849
3850 /* free temporary value */
3851 val->realtype->plugin->free(set->ctx, &data);
3852 if (found) {
3853 break;
3854 }
3855 }
3856
3857 return LY_SUCCESS;
3858}
3859
Michal Vasko03ff5a72019-09-11 13:49:33 +02003860/**
3861 * @brief Execute the YANG 1.1 derived-from(node-set, string) function. Returns LYXP_SET_BOOLEAN depending
3862 * on whether the first argument nodes contain a node of an identity derived from the second
3863 * argument identity.
3864 *
3865 * @param[in] args Array of arguments.
3866 * @param[in] arg_count Count of elements in @p args.
3867 * @param[in,out] set Context and result set at the same time.
3868 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003869 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003870 */
3871static LY_ERR
3872xpath_derived_from(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
3873{
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003874 return xpath_derived_(args, set, options, 0, __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003875}
3876
3877/**
3878 * @brief Execute the YANG 1.1 derived-from-or-self(node-set, string) function. Returns LYXP_SET_BOOLEAN depending
3879 * on whether the first argument nodes contain a node of an identity that either is or is derived from
3880 * the second argument identity.
3881 *
3882 * @param[in] args Array of arguments.
3883 * @param[in] arg_count Count of elements in @p args.
3884 * @param[in,out] set Context and result set at the same time.
3885 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003886 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003887 */
3888static LY_ERR
3889xpath_derived_from_or_self(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
3890{
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003891 return xpath_derived_(args, set, options, 1, __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003892}
3893
3894/**
3895 * @brief Execute the YANG 1.1 enum-value(node-set) function. Returns LYXP_SET_NUMBER
3896 * with the integer value of the first node's enum value, otherwise NaN.
3897 *
3898 * @param[in] args Array of arguments.
3899 * @param[in] arg_count Count of elements in @p args.
3900 * @param[in,out] set Context and result set at the same time.
3901 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003902 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003903 */
3904static LY_ERR
3905xpath_enum_value(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
3906{
3907 struct lyd_node_term *leaf;
3908 struct lysc_node_leaf *sleaf;
3909 LY_ERR rc = LY_SUCCESS;
3910
3911 if (options & LYXP_SCNODE_ALL) {
3912 if ((args[0]->type != LYXP_SET_SCNODE_SET) || !(sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3913 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003914 } else if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3915 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 +02003916 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_ENUM)) {
3917 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"enumeration\".", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003918 }
3919 set_scnode_clear_ctx(set);
3920 return rc;
3921 }
3922
Michal Vaskod3678892020-05-21 10:06:58 +02003923 if (args[0]->type != LYXP_SET_NODE_SET) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003924 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "enum-value(node-set)");
3925 return LY_EVALID;
3926 }
3927
3928 set_fill_number(set, NAN);
Michal Vaskod3678892020-05-21 10:06:58 +02003929 if (args[0]->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003930 leaf = (struct lyd_node_term *)args[0]->val.nodes[0].node;
3931 sleaf = (struct lysc_node_leaf *)leaf->schema;
3932 if ((sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST)) && (sleaf->type->basetype == LY_TYPE_ENUM)) {
3933 set_fill_number(set, leaf->value.enum_item->value);
3934 }
3935 }
3936
3937 return LY_SUCCESS;
3938}
3939
3940/**
3941 * @brief Execute the XPath false() function. Returns LYXP_SET_BOOLEAN
3942 * with false value.
3943 *
3944 * @param[in] args Array of arguments.
3945 * @param[in] arg_count Count of elements in @p args.
3946 * @param[in,out] set Context and result set at the same time.
3947 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003948 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003949 */
3950static LY_ERR
3951xpath_false(struct lyxp_set **UNUSED(args), uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
3952{
3953 if (options & LYXP_SCNODE_ALL) {
3954 set_scnode_clear_ctx(set);
3955 return LY_SUCCESS;
3956 }
3957
3958 set_fill_boolean(set, 0);
3959 return LY_SUCCESS;
3960}
3961
3962/**
3963 * @brief Execute the XPath floor(number) function. Returns LYXP_SET_NUMBER
3964 * with the first argument floored (truncated).
3965 *
3966 * @param[in] args Array of arguments.
3967 * @param[in] arg_count Count of elements in @p args.
3968 * @param[in,out] set Context and result set at the same time.
3969 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003970 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003971 */
3972static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003973xpath_floor(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, int UNUSED(options))
Michal Vasko03ff5a72019-09-11 13:49:33 +02003974{
3975 LY_ERR rc;
3976
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003977 rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003978 LY_CHECK_RET(rc);
3979 if (isfinite(args[0]->val.num)) {
3980 set_fill_number(set, (long long)args[0]->val.num);
3981 }
3982
3983 return LY_SUCCESS;
3984}
3985
3986/**
3987 * @brief Execute the XPath lang(string) function. Returns LYXP_SET_BOOLEAN
3988 * whether the language of the text matches the one from the argument.
3989 *
3990 * @param[in] args Array of arguments.
3991 * @param[in] arg_count Count of elements in @p args.
3992 * @param[in,out] set Context and result set at the same time.
3993 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003994 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003995 */
3996static LY_ERR
3997xpath_lang(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
3998{
3999 const struct lyd_node *node;
4000 struct lysc_node_leaf *sleaf;
Michal Vasko9f96a052020-03-10 09:41:45 +01004001 struct lyd_meta *meta = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004002 const char *val;
4003 int i, dynamic;
4004 LY_ERR rc = LY_SUCCESS;
4005
4006 if (options & LYXP_SCNODE_ALL) {
4007 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4008 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4009 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 +02004010 } else if (!warn_is_string_type(sleaf->type)) {
4011 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004012 }
4013 }
4014 set_scnode_clear_ctx(set);
4015 return rc;
4016 }
4017
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004018 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004019 LY_CHECK_RET(rc);
4020
Michal Vasko03ff5a72019-09-11 13:49:33 +02004021 if (set->type != LYXP_SET_NODE_SET) {
4022 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INCTX, print_set_type(set), "lang(string)");
4023 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004024 } else if (!set->used) {
4025 set_fill_boolean(set, 0);
4026 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004027 }
4028
4029 switch (set->val.nodes[0].type) {
4030 case LYXP_NODE_ELEM:
4031 case LYXP_NODE_TEXT:
4032 node = set->val.nodes[0].node;
4033 break;
Michal Vasko9f96a052020-03-10 09:41:45 +01004034 case LYXP_NODE_META:
4035 node = set->val.meta[0].meta->parent;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004036 break;
4037 default:
4038 /* nothing to do with roots */
4039 set_fill_boolean(set, 0);
4040 return LY_SUCCESS;
4041 }
4042
Michal Vasko9f96a052020-03-10 09:41:45 +01004043 /* find lang metadata */
Michal Vasko03ff5a72019-09-11 13:49:33 +02004044 for (; node; node = (struct lyd_node *)node->parent) {
Michal Vasko9f96a052020-03-10 09:41:45 +01004045 for (meta = node->meta; meta; meta = meta->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004046 /* annotations */
Michal Vasko9f96a052020-03-10 09:41:45 +01004047 if (meta->name && !strcmp(meta->name, "lang") && !strcmp(meta->annotation->module->name, "xml")) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004048 break;
4049 }
4050 }
4051
Michal Vasko9f96a052020-03-10 09:41:45 +01004052 if (meta) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004053 break;
4054 }
4055 }
4056
4057 /* compare languages */
Michal Vasko9f96a052020-03-10 09:41:45 +01004058 if (!meta) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004059 set_fill_boolean(set, 0);
4060 } else {
Michal Vasko9f96a052020-03-10 09:41:45 +01004061 val = lyd_meta2str(meta, &dynamic);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004062 for (i = 0; args[0]->val.str[i]; ++i) {
4063 if (tolower(args[0]->val.str[i]) != tolower(val[i])) {
4064 set_fill_boolean(set, 0);
4065 break;
4066 }
4067 }
4068 if (!args[0]->val.str[i]) {
4069 if (!val[i] || (val[i] == '-')) {
4070 set_fill_boolean(set, 1);
4071 } else {
4072 set_fill_boolean(set, 0);
4073 }
4074 }
4075 if (dynamic) {
4076 free((char *)val);
4077 }
4078 }
4079
4080 return LY_SUCCESS;
4081}
4082
4083/**
4084 * @brief Execute the XPath last() function. Returns LYXP_SET_NUMBER
4085 * with the context size.
4086 *
4087 * @param[in] args Array of arguments.
4088 * @param[in] arg_count Count of elements in @p args.
4089 * @param[in,out] set Context and result set at the same time.
4090 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004091 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004092 */
4093static LY_ERR
4094xpath_last(struct lyxp_set **UNUSED(args), uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
4095{
4096 if (options & LYXP_SCNODE_ALL) {
4097 set_scnode_clear_ctx(set);
4098 return LY_SUCCESS;
4099 }
4100
Michal Vasko03ff5a72019-09-11 13:49:33 +02004101 if (set->type != LYXP_SET_NODE_SET) {
4102 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INCTX, print_set_type(set), "last()");
4103 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004104 } else if (!set->used) {
4105 set_fill_number(set, 0);
4106 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004107 }
4108
4109 set_fill_number(set, set->ctx_size);
4110 return LY_SUCCESS;
4111}
4112
4113/**
4114 * @brief Execute the XPath local-name(node-set?) function. Returns LYXP_SET_STRING
4115 * with the node name without namespace from the argument or the context.
4116 *
4117 * @param[in] args Array of arguments.
4118 * @param[in] arg_count Count of elements in @p args.
4119 * @param[in,out] set Context and result set at the same time.
4120 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004121 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004122 */
4123static LY_ERR
4124xpath_local_name(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, int options)
4125{
4126 struct lyxp_set_node *item;
4127 /* suppress unused variable warning */
4128 (void)options;
4129
4130 if (options & LYXP_SCNODE_ALL) {
4131 set_scnode_clear_ctx(set);
4132 return LY_SUCCESS;
4133 }
4134
4135 if (arg_count) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004136 if (args[0]->type != LYXP_SET_NODE_SET) {
4137 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "local-name(node-set?)");
4138 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004139 } else if (!args[0]->used) {
4140 set_fill_string(set, "", 0);
4141 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004142 }
4143
4144 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004145 assert(!set_sort(args[0]));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004146
4147 item = &args[0]->val.nodes[0];
4148 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004149 if (set->type != LYXP_SET_NODE_SET) {
4150 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INCTX, print_set_type(set), "local-name(node-set?)");
4151 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004152 } else if (!set->used) {
4153 set_fill_string(set, "", 0);
4154 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004155 }
4156
4157 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004158 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004159
4160 item = &set->val.nodes[0];
4161 }
4162
4163 switch (item->type) {
Michal Vasko2caefc12019-11-14 16:07:56 +01004164 case LYXP_NODE_NONE:
4165 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004166 case LYXP_NODE_ROOT:
4167 case LYXP_NODE_ROOT_CONFIG:
4168 case LYXP_NODE_TEXT:
4169 set_fill_string(set, "", 0);
4170 break;
4171 case LYXP_NODE_ELEM:
4172 set_fill_string(set, item->node->schema->name, strlen(item->node->schema->name));
4173 break;
Michal Vasko9f96a052020-03-10 09:41:45 +01004174 case LYXP_NODE_META:
4175 set_fill_string(set, ((struct lyd_meta *)item->node)->name, strlen(((struct lyd_meta *)item->node)->name));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004176 break;
4177 }
4178
4179 return LY_SUCCESS;
4180}
4181
4182/**
4183 * @brief Execute the XPath name(node-set?) function. Returns LYXP_SET_STRING
4184 * with the node name fully qualified (with namespace) from the argument or the context.
4185 *
4186 * @param[in] args Array of arguments.
4187 * @param[in] arg_count Count of elements in @p args.
4188 * @param[in,out] set Context and result set at the same time.
4189 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004190 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004191 */
4192static LY_ERR
4193xpath_name(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, int options)
4194{
4195 struct lyxp_set_node *item;
Michal Vaskoed4fcfe2020-07-08 10:38:56 +02004196 struct lys_module *mod = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004197 char *str;
Michal Vaskoed4fcfe2020-07-08 10:38:56 +02004198 const char *name = NULL;
4199 int rc = -1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004200
4201 if (options & LYXP_SCNODE_ALL) {
4202 set_scnode_clear_ctx(set);
4203 return LY_SUCCESS;
4204 }
4205
4206 if (arg_count) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004207 if (args[0]->type != LYXP_SET_NODE_SET) {
4208 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "name(node-set?)");
4209 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004210 } else if (!args[0]->used) {
4211 set_fill_string(set, "", 0);
4212 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004213 }
4214
4215 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004216 assert(!set_sort(args[0]));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004217
4218 item = &args[0]->val.nodes[0];
4219 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004220 if (set->type != LYXP_SET_NODE_SET) {
4221 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INCTX, print_set_type(set), "name(node-set?)");
4222 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004223 } else if (!set->used) {
4224 set_fill_string(set, "", 0);
4225 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004226 }
4227
4228 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004229 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004230
4231 item = &set->val.nodes[0];
4232 }
4233
4234 switch (item->type) {
Michal Vasko2caefc12019-11-14 16:07:56 +01004235 case LYXP_NODE_NONE:
4236 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004237 case LYXP_NODE_ROOT:
4238 case LYXP_NODE_ROOT_CONFIG:
4239 case LYXP_NODE_TEXT:
Michal Vaskoed4fcfe2020-07-08 10:38:56 +02004240 /* keep NULL */
Michal Vasko03ff5a72019-09-11 13:49:33 +02004241 break;
4242 case LYXP_NODE_ELEM:
4243 mod = item->node->schema->module;
4244 name = item->node->schema->name;
4245 break;
Michal Vasko9f96a052020-03-10 09:41:45 +01004246 case LYXP_NODE_META:
4247 mod = ((struct lyd_meta *)item->node)->annotation->module;
4248 name = ((struct lyd_meta *)item->node)->name;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004249 break;
4250 }
4251
4252 if (mod && name) {
4253 switch (set->format) {
Michal Vaskoc8a230d2020-08-14 12:17:10 +02004254 case LY_PREF_SCHEMA:
Michal Vasko03ff5a72019-09-11 13:49:33 +02004255 rc = asprintf(&str, "%s:%s", lys_prefix_find_module(set->local_mod, mod), name);
4256 break;
Michal Vaskoc8a230d2020-08-14 12:17:10 +02004257 case LY_PREF_JSON:
Michal Vasko03ff5a72019-09-11 13:49:33 +02004258 rc = asprintf(&str, "%s:%s", mod->name, name);
4259 break;
Michal Vaskoc8a230d2020-08-14 12:17:10 +02004260 case LY_PREF_XML:
Michal Vasko9409ef62019-09-12 11:47:17 +02004261 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004262 }
4263 LY_CHECK_ERR_RET(rc == -1, LOGMEM(set->ctx), LY_EMEM);
4264 set_fill_string(set, str, strlen(str));
4265 free(str);
4266 } else {
4267 set_fill_string(set, "", 0);
4268 }
4269
4270 return LY_SUCCESS;
4271}
4272
4273/**
4274 * @brief Execute the XPath namespace-uri(node-set?) function. Returns LYXP_SET_STRING
4275 * with the namespace of the node from the argument or the context.
4276 *
4277 * @param[in] args Array of arguments.
4278 * @param[in] arg_count Count of elements in @p args.
4279 * @param[in,out] set Context and result set at the same time.
4280 * @param[in] options XPath options.
4281 * @return LY_ERR (LY_EINVAL for wrong arguments on schema)
4282 */
4283static LY_ERR
4284xpath_namespace_uri(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, int options)
4285{
4286 struct lyxp_set_node *item;
4287 struct lys_module *mod;
4288 /* suppress unused variable warning */
4289 (void)options;
4290
4291 if (options & LYXP_SCNODE_ALL) {
4292 set_scnode_clear_ctx(set);
4293 return LY_SUCCESS;
4294 }
4295
4296 if (arg_count) {
Michal Vaskod3678892020-05-21 10:06:58 +02004297 if (args[0]->type != LYXP_SET_NODE_SET) {
4298 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]),
4299 "namespace-uri(node-set?)");
4300 return LY_EVALID;
4301 } else if (!args[0]->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004302 set_fill_string(set, "", 0);
4303 return LY_SUCCESS;
4304 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02004305
4306 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004307 assert(!set_sort(args[0]));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004308
4309 item = &args[0]->val.nodes[0];
4310 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004311 if (set->type != LYXP_SET_NODE_SET) {
4312 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INCTX, print_set_type(set), "namespace-uri(node-set?)");
4313 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004314 } else if (!set->used) {
4315 set_fill_string(set, "", 0);
4316 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004317 }
4318
4319 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004320 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004321
4322 item = &set->val.nodes[0];
4323 }
4324
4325 switch (item->type) {
Michal Vasko2caefc12019-11-14 16:07:56 +01004326 case LYXP_NODE_NONE:
4327 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004328 case LYXP_NODE_ROOT:
4329 case LYXP_NODE_ROOT_CONFIG:
4330 case LYXP_NODE_TEXT:
4331 set_fill_string(set, "", 0);
4332 break;
4333 case LYXP_NODE_ELEM:
Michal Vasko9f96a052020-03-10 09:41:45 +01004334 case LYXP_NODE_META:
Michal Vasko03ff5a72019-09-11 13:49:33 +02004335 if (item->type == LYXP_NODE_ELEM) {
4336 mod = item->node->schema->module;
Michal Vasko9f96a052020-03-10 09:41:45 +01004337 } else { /* LYXP_NODE_META */
Michal Vasko03ff5a72019-09-11 13:49:33 +02004338 /* annotations */
Michal Vasko9f96a052020-03-10 09:41:45 +01004339 mod = ((struct lyd_meta *)item->node)->annotation->module;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004340 }
4341
4342 set_fill_string(set, mod->ns, strlen(mod->ns));
4343 break;
4344 }
4345
4346 return LY_SUCCESS;
4347}
4348
4349/**
4350 * @brief Execute the XPath node() function (node type). Returns LYXP_SET_NODE_SET
4351 * with only nodes from the context. In practice it either leaves the context
4352 * as it is or returns an empty node set.
4353 *
4354 * @param[in] args Array of arguments.
4355 * @param[in] arg_count Count of elements in @p args.
4356 * @param[in,out] set Context and result set at the same time.
4357 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004358 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004359 */
4360static LY_ERR
4361xpath_node(struct lyxp_set **UNUSED(args), uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
4362{
4363 if (options & LYXP_SCNODE_ALL) {
4364 set_scnode_clear_ctx(set);
4365 return LY_SUCCESS;
4366 }
4367
4368 if (set->type != LYXP_SET_NODE_SET) {
Michal Vaskod3678892020-05-21 10:06:58 +02004369 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004370 }
4371 return LY_SUCCESS;
4372}
4373
4374/**
4375 * @brief Execute the XPath normalize-space(string?) function. Returns LYXP_SET_STRING
4376 * with normalized value (no leading, trailing, double white spaces) of the node
4377 * from the argument or the context.
4378 *
4379 * @param[in] args Array of arguments.
4380 * @param[in] arg_count Count of elements in @p args.
4381 * @param[in,out] set Context and result set at the same time.
4382 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004383 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004384 */
4385static LY_ERR
4386xpath_normalize_space(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, int options)
4387{
4388 uint16_t i, new_used;
4389 char *new;
4390 int have_spaces = 0, space_before = 0;
4391 struct lysc_node_leaf *sleaf;
4392 LY_ERR rc = LY_SUCCESS;
4393
4394 if (options & LYXP_SCNODE_ALL) {
4395 if (arg_count && (args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4396 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4397 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 +02004398 } else if (!warn_is_string_type(sleaf->type)) {
4399 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004400 }
4401 }
4402 set_scnode_clear_ctx(set);
4403 return rc;
4404 }
4405
4406 if (arg_count) {
4407 set_fill_set(set, args[0]);
4408 }
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004409 rc = lyxp_set_cast(set, LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004410 LY_CHECK_RET(rc);
4411
4412 /* is there any normalization necessary? */
4413 for (i = 0; set->val.str[i]; ++i) {
4414 if (is_xmlws(set->val.str[i])) {
4415 if ((i == 0) || space_before || (!set->val.str[i + 1])) {
4416 have_spaces = 1;
4417 break;
4418 }
4419 space_before = 1;
4420 } else {
4421 space_before = 0;
4422 }
4423 }
4424
4425 /* yep, there is */
4426 if (have_spaces) {
4427 /* it's enough, at least one character will go, makes space for ending '\0' */
4428 new = malloc(strlen(set->val.str) * sizeof(char));
4429 LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM);
4430 new_used = 0;
4431
4432 space_before = 0;
4433 for (i = 0; set->val.str[i]; ++i) {
4434 if (is_xmlws(set->val.str[i])) {
4435 if ((i == 0) || space_before) {
4436 space_before = 1;
4437 continue;
4438 } else {
4439 space_before = 1;
4440 }
4441 } else {
4442 space_before = 0;
4443 }
4444
4445 new[new_used] = (space_before ? ' ' : set->val.str[i]);
4446 ++new_used;
4447 }
4448
4449 /* at worst there is one trailing space now */
4450 if (new_used && is_xmlws(new[new_used - 1])) {
4451 --new_used;
4452 }
4453
4454 new = ly_realloc(new, (new_used + 1) * sizeof(char));
4455 LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM);
4456 new[new_used] = '\0';
4457
4458 free(set->val.str);
4459 set->val.str = new;
4460 }
4461
4462 return LY_SUCCESS;
4463}
4464
4465/**
4466 * @brief Execute the XPath not(boolean) function. Returns LYXP_SET_BOOLEAN
4467 * with the argument converted to boolean and logically inverted.
4468 *
4469 * @param[in] args Array of arguments.
4470 * @param[in] arg_count Count of elements in @p args.
4471 * @param[in,out] set Context and result set at the same time.
4472 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004473 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004474 */
4475static LY_ERR
4476xpath_not(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
4477{
4478 if (options & LYXP_SCNODE_ALL) {
4479 set_scnode_clear_ctx(set);
4480 return LY_SUCCESS;
4481 }
4482
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004483 lyxp_set_cast(args[0], LYXP_SET_BOOLEAN);
Michal Vasko004d3152020-06-11 19:59:22 +02004484 if (args[0]->val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004485 set_fill_boolean(set, 0);
4486 } else {
4487 set_fill_boolean(set, 1);
4488 }
4489
4490 return LY_SUCCESS;
4491}
4492
4493/**
4494 * @brief Execute the XPath number(object?) function. Returns LYXP_SET_NUMBER
4495 * with the number representation of either the argument or the context.
4496 *
4497 * @param[in] args Array of arguments.
4498 * @param[in] arg_count Count of elements in @p args.
4499 * @param[in,out] set Context and result set at the same time.
4500 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004501 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004502 */
4503static LY_ERR
4504xpath_number(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, int options)
4505{
4506 LY_ERR rc;
4507
4508 if (options & LYXP_SCNODE_ALL) {
4509 set_scnode_clear_ctx(set);
4510 return LY_SUCCESS;
4511 }
4512
4513 if (arg_count) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004514 rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004515 LY_CHECK_RET(rc);
4516 set_fill_set(set, args[0]);
4517 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004518 rc = lyxp_set_cast(set, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004519 LY_CHECK_RET(rc);
4520 }
4521
4522 return LY_SUCCESS;
4523}
4524
4525/**
4526 * @brief Execute the XPath position() function. Returns LYXP_SET_NUMBER
4527 * with the context position.
4528 *
4529 * @param[in] args Array of arguments.
4530 * @param[in] arg_count Count of elements in @p args.
4531 * @param[in,out] set Context and result set at the same time.
4532 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004533 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004534 */
4535static LY_ERR
4536xpath_position(struct lyxp_set **UNUSED(args), uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
4537{
4538 if (options & LYXP_SCNODE_ALL) {
4539 set_scnode_clear_ctx(set);
4540 return LY_SUCCESS;
4541 }
4542
Michal Vasko03ff5a72019-09-11 13:49:33 +02004543 if (set->type != LYXP_SET_NODE_SET) {
4544 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INCTX, print_set_type(set), "position()");
4545 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004546 } else if (!set->used) {
4547 set_fill_number(set, 0);
4548 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004549 }
4550
4551 set_fill_number(set, set->ctx_pos);
4552
4553 /* UNUSED in 'Release' build type */
4554 (void)options;
4555 return LY_SUCCESS;
4556}
4557
4558/**
4559 * @brief Execute the YANG 1.1 re-match(string, string) function. Returns LYXP_SET_BOOLEAN
4560 * depending on whether the second argument regex matches the first argument string. For details refer to
4561 * YANG 1.1 RFC section 10.2.1.
4562 *
4563 * @param[in] args Array of arguments.
4564 * @param[in] arg_count Count of elements in @p args.
4565 * @param[in,out] set Context and result set at the same time.
4566 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004567 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004568 */
4569static LY_ERR
4570xpath_re_match(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
4571{
4572 struct lysc_pattern **patterns = NULL, **pattern;
4573 struct lysc_node_leaf *sleaf;
4574 char *path;
4575 LY_ERR rc = LY_SUCCESS;
4576 struct ly_err_item *err;
4577
4578 if (options & LYXP_SCNODE_ALL) {
4579 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4580 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4581 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 +02004582 } else if (!warn_is_string_type(sleaf->type)) {
4583 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004584 }
4585 }
4586
4587 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4588 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4589 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 +02004590 } else if (!warn_is_string_type(sleaf->type)) {
4591 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004592 }
4593 }
4594 set_scnode_clear_ctx(set);
4595 return rc;
4596 }
4597
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004598 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004599 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004600 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004601 LY_CHECK_RET(rc);
4602
4603 LY_ARRAY_NEW_RET(set->ctx, patterns, pattern, LY_EMEM);
4604 *pattern = malloc(sizeof **pattern);
4605 path = lyd_path(set->ctx_node, LYD_PATH_LOG, NULL, 0);
4606 rc = lys_compile_type_pattern_check(set->ctx, path, args[1]->val.str, &(*pattern)->code);
4607 free(path);
4608 if (rc != LY_SUCCESS) {
4609 LY_ARRAY_FREE(patterns);
4610 return rc;
4611 }
4612
4613 rc = ly_type_validate_patterns(patterns, args[0]->val.str, strlen(args[0]->val.str), &err);
4614 pcre2_code_free((*pattern)->code);
4615 free(*pattern);
4616 LY_ARRAY_FREE(patterns);
4617 if (rc && (rc != LY_EVALID)) {
4618 ly_err_print(err);
4619 ly_err_free(err);
4620 return rc;
4621 }
4622
4623 if (rc == LY_EVALID) {
4624 ly_err_free(err);
4625 set_fill_boolean(set, 0);
4626 } else {
4627 set_fill_boolean(set, 1);
4628 }
4629
4630 return LY_SUCCESS;
4631}
4632
4633/**
4634 * @brief Execute the XPath round(number) function. Returns LYXP_SET_NUMBER
4635 * with the rounded first argument. For details refer to
4636 * http://www.w3.org/TR/1999/REC-xpath-19991116/#function-round.
4637 *
4638 * @param[in] args Array of arguments.
4639 * @param[in] arg_count Count of elements in @p args.
4640 * @param[in,out] set Context and result set at the same time.
4641 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004642 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004643 */
4644static LY_ERR
4645xpath_round(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
4646{
4647 struct lysc_node_leaf *sleaf;
4648 LY_ERR rc = LY_SUCCESS;
4649
4650 if (options & LYXP_SCNODE_ALL) {
4651 if ((args[0]->type != LYXP_SET_SCNODE_SET) || !(sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4652 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004653 } else if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4654 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 +02004655 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_DEC64)) {
4656 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"decimal64\".", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004657 }
4658 set_scnode_clear_ctx(set);
4659 return rc;
4660 }
4661
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004662 rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004663 LY_CHECK_RET(rc);
4664
4665 /* cover only the cases where floor can't be used */
4666 if ((args[0]->val.num == -0.0f) || ((args[0]->val.num < 0) && (args[0]->val.num >= -0.5))) {
4667 set_fill_number(set, -0.0f);
4668 } else {
4669 args[0]->val.num += 0.5;
4670 rc = xpath_floor(args, 1, args[0], options);
4671 LY_CHECK_RET(rc);
4672 set_fill_number(set, args[0]->val.num);
4673 }
4674
4675 return LY_SUCCESS;
4676}
4677
4678/**
4679 * @brief Execute the XPath starts-with(string, string) function.
4680 * Returns LYXP_SET_BOOLEAN whether the second argument is
4681 * the prefix of the first or not.
4682 *
4683 * @param[in] args Array of arguments.
4684 * @param[in] arg_count Count of elements in @p args.
4685 * @param[in,out] set Context and result set at the same time.
4686 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004687 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004688 */
4689static LY_ERR
4690xpath_starts_with(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
4691{
4692 struct lysc_node_leaf *sleaf;
4693 LY_ERR rc = LY_SUCCESS;
4694
4695 if (options & LYXP_SCNODE_ALL) {
4696 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4697 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4698 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 +02004699 } else if (!warn_is_string_type(sleaf->type)) {
4700 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004701 }
4702 }
4703
4704 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4705 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4706 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 +02004707 } else if (!warn_is_string_type(sleaf->type)) {
4708 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004709 }
4710 }
4711 set_scnode_clear_ctx(set);
4712 return rc;
4713 }
4714
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004715 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004716 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004717 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004718 LY_CHECK_RET(rc);
4719
4720 if (strncmp(args[0]->val.str, args[1]->val.str, strlen(args[1]->val.str))) {
4721 set_fill_boolean(set, 0);
4722 } else {
4723 set_fill_boolean(set, 1);
4724 }
4725
4726 return LY_SUCCESS;
4727}
4728
4729/**
4730 * @brief Execute the XPath string(object?) function. Returns LYXP_SET_STRING
4731 * with the string representation of either the argument or the context.
4732 *
4733 * @param[in] args Array of arguments.
4734 * @param[in] arg_count Count of elements in @p args.
4735 * @param[in,out] set Context and result set at the same time.
4736 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004737 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004738 */
4739static LY_ERR
4740xpath_string(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, int options)
4741{
4742 LY_ERR rc;
4743
4744 if (options & LYXP_SCNODE_ALL) {
4745 set_scnode_clear_ctx(set);
4746 return LY_SUCCESS;
4747 }
4748
4749 if (arg_count) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004750 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004751 LY_CHECK_RET(rc);
4752 set_fill_set(set, args[0]);
4753 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004754 rc = lyxp_set_cast(set, LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004755 LY_CHECK_RET(rc);
4756 }
4757
4758 return LY_SUCCESS;
4759}
4760
4761/**
4762 * @brief Execute the XPath string-length(string?) function. Returns LYXP_SET_NUMBER
4763 * with the length of the string in either the argument or the context.
4764 *
4765 * @param[in] args Array of arguments.
4766 * @param[in] arg_count Count of elements in @p args.
4767 * @param[in,out] set Context and result set at the same time.
4768 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004769 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004770 */
4771static LY_ERR
4772xpath_string_length(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, int options)
4773{
4774 struct lysc_node_leaf *sleaf;
4775 LY_ERR rc = LY_SUCCESS;
4776
4777 if (options & LYXP_SCNODE_ALL) {
4778 if (arg_count && (args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4779 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4780 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 +02004781 } else if (!warn_is_string_type(sleaf->type)) {
4782 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004783 }
4784 }
4785 if (!arg_count && (set->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(set))) {
4786 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4787 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 +02004788 } else if (!warn_is_string_type(sleaf->type)) {
4789 LOGWRN(set->ctx, "Argument #0 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004790 }
4791 }
4792 set_scnode_clear_ctx(set);
4793 return rc;
4794 }
4795
4796 if (arg_count) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004797 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004798 LY_CHECK_RET(rc);
4799 set_fill_number(set, strlen(args[0]->val.str));
4800 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004801 rc = lyxp_set_cast(set, LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004802 LY_CHECK_RET(rc);
4803 set_fill_number(set, strlen(set->val.str));
4804 }
4805
4806 return LY_SUCCESS;
4807}
4808
4809/**
4810 * @brief Execute the XPath substring(string, number, number?) function.
4811 * Returns LYXP_SET_STRING substring of the first argument starting
4812 * on the second argument index ending on the third argument index,
4813 * indexed from 1. For exact definition refer to
4814 * http://www.w3.org/TR/1999/REC-xpath-19991116/#function-substring.
4815 *
4816 * @param[in] args Array of arguments.
4817 * @param[in] arg_count Count of elements in @p args.
4818 * @param[in,out] set Context and result set at the same time.
4819 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004820 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004821 */
4822static LY_ERR
4823xpath_substring(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, int options)
4824{
4825 int start, len;
4826 uint16_t str_start, str_len, pos;
4827 struct lysc_node_leaf *sleaf;
4828 LY_ERR rc = LY_SUCCESS;
4829
4830 if (options & LYXP_SCNODE_ALL) {
4831 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4832 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4833 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 +02004834 } else if (!warn_is_string_type(sleaf->type)) {
4835 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004836 }
4837 }
4838
4839 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4840 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4841 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 +02004842 } else if (!warn_is_numeric_type(sleaf->type)) {
4843 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of numeric type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004844 }
4845 }
4846
4847 if ((arg_count == 3) && (args[2]->type == LYXP_SET_SCNODE_SET)
4848 && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[2]))) {
4849 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4850 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 +02004851 } else if (!warn_is_numeric_type(sleaf->type)) {
4852 LOGWRN(set->ctx, "Argument #3 of %s is node \"%s\", not of numeric type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004853 }
4854 }
4855 set_scnode_clear_ctx(set);
4856 return rc;
4857 }
4858
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004859 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004860 LY_CHECK_RET(rc);
4861
4862 /* start */
4863 if (xpath_round(&args[1], 1, args[1], options)) {
4864 return -1;
4865 }
4866 if (isfinite(args[1]->val.num)) {
4867 start = args[1]->val.num - 1;
4868 } else if (isinf(args[1]->val.num) && signbit(args[1]->val.num)) {
4869 start = INT_MIN;
4870 } else {
4871 start = INT_MAX;
4872 }
4873
4874 /* len */
4875 if (arg_count == 3) {
4876 rc = xpath_round(&args[2], 1, args[2], options);
4877 LY_CHECK_RET(rc);
4878 if (isfinite(args[2]->val.num)) {
4879 len = args[2]->val.num;
4880 } else if (isnan(args[2]->val.num) || signbit(args[2]->val.num)) {
4881 len = 0;
4882 } else {
4883 len = INT_MAX;
4884 }
4885 } else {
4886 len = INT_MAX;
4887 }
4888
4889 /* find matching character positions */
4890 str_start = 0;
4891 str_len = 0;
4892 for (pos = 0; args[0]->val.str[pos]; ++pos) {
4893 if (pos < start) {
4894 ++str_start;
4895 } else if (pos < start + len) {
4896 ++str_len;
4897 } else {
4898 break;
4899 }
4900 }
4901
4902 set_fill_string(set, args[0]->val.str + str_start, str_len);
4903 return LY_SUCCESS;
4904}
4905
4906/**
4907 * @brief Execute the XPath substring-after(string, string) function.
4908 * Returns LYXP_SET_STRING with the string succeeding the occurance
4909 * of the second argument in the first or an empty string.
4910 *
4911 * @param[in] args Array of arguments.
4912 * @param[in] arg_count Count of elements in @p args.
4913 * @param[in,out] set Context and result set at the same time.
4914 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004915 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004916 */
4917static LY_ERR
4918xpath_substring_after(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
4919{
4920 char *ptr;
4921 struct lysc_node_leaf *sleaf;
4922 LY_ERR rc = LY_SUCCESS;
4923
4924 if (options & LYXP_SCNODE_ALL) {
4925 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4926 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4927 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 +02004928 } else if (!warn_is_string_type(sleaf->type)) {
4929 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004930 }
4931 }
4932
4933 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4934 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4935 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 +02004936 } else if (!warn_is_string_type(sleaf->type)) {
4937 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004938 }
4939 }
4940 set_scnode_clear_ctx(set);
4941 return rc;
4942 }
4943
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004944 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004945 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004946 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004947 LY_CHECK_RET(rc);
4948
4949 ptr = strstr(args[0]->val.str, args[1]->val.str);
4950 if (ptr) {
4951 set_fill_string(set, ptr + strlen(args[1]->val.str), strlen(ptr + strlen(args[1]->val.str)));
4952 } else {
4953 set_fill_string(set, "", 0);
4954 }
4955
4956 return LY_SUCCESS;
4957}
4958
4959/**
4960 * @brief Execute the XPath substring-before(string, string) function.
4961 * Returns LYXP_SET_STRING with the string preceding the occurance
4962 * of the second argument in the first or an empty string.
4963 *
4964 * @param[in] args Array of arguments.
4965 * @param[in] arg_count Count of elements in @p args.
4966 * @param[in,out] set Context and result set at the same time.
4967 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004968 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004969 */
4970static LY_ERR
4971xpath_substring_before(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
4972{
4973 char *ptr;
4974 struct lysc_node_leaf *sleaf;
4975 LY_ERR rc = LY_SUCCESS;
4976
4977 if (options & LYXP_SCNODE_ALL) {
4978 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4979 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4980 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004981 } else if (!warn_is_string_type(sleaf->type)) {
4982 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004983 }
4984 }
4985
4986 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4987 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4988 LOGWRN(set->ctx, "Argument #2 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004989 } else if (!warn_is_string_type(sleaf->type)) {
4990 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004991 }
4992 }
4993 set_scnode_clear_ctx(set);
4994 return rc;
4995 }
4996
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004997 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004998 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004999 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005000 LY_CHECK_RET(rc);
5001
5002 ptr = strstr(args[0]->val.str, args[1]->val.str);
5003 if (ptr) {
5004 set_fill_string(set, args[0]->val.str, ptr - args[0]->val.str);
5005 } else {
5006 set_fill_string(set, "", 0);
5007 }
5008
5009 return LY_SUCCESS;
5010}
5011
5012/**
5013 * @brief Execute the XPath sum(node-set) function. Returns LYXP_SET_NUMBER
5014 * with the sum of all the nodes in the context.
5015 *
5016 * @param[in] args Array of arguments.
5017 * @param[in] arg_count Count of elements in @p args.
5018 * @param[in,out] set Context and result set at the same time.
5019 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005020 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005021 */
5022static LY_ERR
5023xpath_sum(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
5024{
5025 long double num;
5026 char *str;
5027 uint16_t i;
5028 struct lyxp_set set_item;
5029 struct lysc_node_leaf *sleaf;
5030 LY_ERR rc = LY_SUCCESS;
5031
5032 if (options & LYXP_SCNODE_ALL) {
5033 if (args[0]->type == LYXP_SET_SCNODE_SET) {
5034 for (i = 0; i < args[0]->used; ++i) {
5035 if (args[0]->val.scnodes[i].in_ctx == 1) {
5036 sleaf = (struct lysc_node_leaf *)args[0]->val.scnodes[i].scnode;
5037 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5038 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__,
5039 lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005040 } else if (!warn_is_numeric_type(sleaf->type)) {
5041 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of numeric type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005042 }
5043 }
5044 }
5045 }
5046 set_scnode_clear_ctx(set);
5047 return rc;
5048 }
5049
5050 set_fill_number(set, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005051
5052 if (args[0]->type != LYXP_SET_NODE_SET) {
5053 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "sum(node-set)");
5054 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02005055 } else if (!args[0]->used) {
5056 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005057 }
5058
Michal Vasko5c4e5892019-11-14 12:31:38 +01005059 set_init(&set_item, set);
5060
Michal Vasko03ff5a72019-09-11 13:49:33 +02005061 set_item.type = LYXP_SET_NODE_SET;
5062 set_item.val.nodes = malloc(sizeof *set_item.val.nodes);
5063 LY_CHECK_ERR_RET(!set_item.val.nodes, LOGMEM(set->ctx), LY_EMEM);
5064
5065 set_item.used = 1;
5066 set_item.size = 1;
5067
5068 for (i = 0; i < args[0]->used; ++i) {
5069 set_item.val.nodes[0] = args[0]->val.nodes[i];
5070
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005071 rc = cast_node_set_to_string(&set_item, &str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005072 LY_CHECK_RET(rc);
5073 num = cast_string_to_number(str);
5074 free(str);
5075 set->val.num += num;
5076 }
5077
5078 free(set_item.val.nodes);
5079
5080 return LY_SUCCESS;
5081}
5082
5083/**
5084 * @brief Execute the XPath text() function (node type). Returns LYXP_SET_NODE_SET
5085 * with the text content of the nodes in the context.
5086 *
5087 * @param[in] args Array of arguments.
5088 * @param[in] arg_count Count of elements in @p args.
5089 * @param[in,out] set Context and result set at the same time.
5090 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005091 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005092 */
5093static LY_ERR
5094xpath_text(struct lyxp_set **UNUSED(args), uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
5095{
5096 uint32_t i;
5097
5098 if (options & LYXP_SCNODE_ALL) {
5099 set_scnode_clear_ctx(set);
5100 return LY_SUCCESS;
5101 }
5102
Michal Vasko03ff5a72019-09-11 13:49:33 +02005103 if (set->type != LYXP_SET_NODE_SET) {
5104 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INCTX, print_set_type(set), "text()");
5105 return LY_EVALID;
5106 }
5107
5108 for (i = 0; i < set->used;) {
5109 switch (set->val.nodes[i].type) {
Michal Vasko2caefc12019-11-14 16:07:56 +01005110 case LYXP_NODE_NONE:
5111 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005112 case LYXP_NODE_ELEM:
Michal Vasko03ff5a72019-09-11 13:49:33 +02005113 if (set->val.nodes[i].node->schema->nodetype & (LYS_LEAF | LYS_LEAFLIST)) {
5114 set->val.nodes[i].type = LYXP_NODE_TEXT;
5115 ++i;
5116 break;
5117 }
5118 /* fall through */
5119 case LYXP_NODE_ROOT:
5120 case LYXP_NODE_ROOT_CONFIG:
5121 case LYXP_NODE_TEXT:
Michal Vasko9f96a052020-03-10 09:41:45 +01005122 case LYXP_NODE_META:
Michal Vasko03ff5a72019-09-11 13:49:33 +02005123 set_remove_node(set, i);
5124 break;
5125 }
5126 }
5127
5128 return LY_SUCCESS;
5129}
5130
5131/**
5132 * @brief Execute the XPath translate(string, string, string) function.
5133 * Returns LYXP_SET_STRING with the first argument with the characters
5134 * from the second argument replaced by those on the corresponding
5135 * positions in the third argument.
5136 *
5137 * @param[in] args Array of arguments.
5138 * @param[in] arg_count Count of elements in @p args.
5139 * @param[in,out] set Context and result set at the same time.
5140 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005141 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005142 */
5143static LY_ERR
5144xpath_translate(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
5145{
5146 uint16_t i, j, new_used;
5147 char *new;
5148 int found, have_removed;
5149 struct lysc_node_leaf *sleaf;
5150 LY_ERR rc = LY_SUCCESS;
5151
5152 if (options & LYXP_SCNODE_ALL) {
5153 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
5154 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5155 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 +02005156 } else if (!warn_is_string_type(sleaf->type)) {
5157 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005158 }
5159 }
5160
5161 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
5162 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5163 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 +02005164 } else if (!warn_is_string_type(sleaf->type)) {
5165 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005166 }
5167 }
5168
5169 if ((args[2]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[2]))) {
5170 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5171 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 +02005172 } else if (!warn_is_string_type(sleaf->type)) {
5173 LOGWRN(set->ctx, "Argument #3 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005174 }
5175 }
5176 set_scnode_clear_ctx(set);
5177 return rc;
5178 }
5179
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005180 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005181 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005182 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005183 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005184 rc = lyxp_set_cast(args[2], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005185 LY_CHECK_RET(rc);
5186
5187 new = malloc((strlen(args[0]->val.str) + 1) * sizeof(char));
5188 LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM);
5189 new_used = 0;
5190
5191 have_removed = 0;
5192 for (i = 0; args[0]->val.str[i]; ++i) {
5193 found = 0;
5194
5195 for (j = 0; args[1]->val.str[j]; ++j) {
5196 if (args[0]->val.str[i] == args[1]->val.str[j]) {
5197 /* removing this char */
5198 if (j >= strlen(args[2]->val.str)) {
5199 have_removed = 1;
5200 found = 1;
5201 break;
5202 }
5203 /* replacing this char */
5204 new[new_used] = args[2]->val.str[j];
5205 ++new_used;
5206 found = 1;
5207 break;
5208 }
5209 }
5210
5211 /* copying this char */
5212 if (!found) {
5213 new[new_used] = args[0]->val.str[i];
5214 ++new_used;
5215 }
5216 }
5217
5218 if (have_removed) {
5219 new = ly_realloc(new, (new_used + 1) * sizeof(char));
5220 LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM);
5221 }
5222 new[new_used] = '\0';
5223
Michal Vaskod3678892020-05-21 10:06:58 +02005224 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005225 set->type = LYXP_SET_STRING;
5226 set->val.str = new;
5227
5228 return LY_SUCCESS;
5229}
5230
5231/**
5232 * @brief Execute the XPath true() function. Returns LYXP_SET_BOOLEAN
5233 * with true value.
5234 *
5235 * @param[in] args Array of arguments.
5236 * @param[in] arg_count Count of elements in @p args.
5237 * @param[in,out] set Context and result set at the same time.
5238 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005239 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005240 */
5241static LY_ERR
5242xpath_true(struct lyxp_set **UNUSED(args), uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
5243{
5244 if (options & LYXP_SCNODE_ALL) {
5245 set_scnode_clear_ctx(set);
5246 return LY_SUCCESS;
5247 }
5248
5249 set_fill_boolean(set, 1);
5250 return LY_SUCCESS;
5251}
5252
5253/*
5254 * moveto functions
5255 *
5256 * They and only they actually change the context (set).
5257 */
5258
5259/**
Michal Vasko6346ece2019-09-24 13:12:53 +02005260 * @brief Skip prefix and return corresponding model if there is a prefix. Logs directly.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005261 *
Michal Vasko2104e9f2020-03-06 08:23:25 +01005262 * XPath @p set is expected to be a (sc)node set!
5263 *
Michal Vasko6346ece2019-09-24 13:12:53 +02005264 * @param[in,out] qname Qualified node name. If includes prefix, it is skipped.
5265 * @param[in,out] qname_len Length of @p qname, is updated accordingly.
5266 * @param[in] set Set with XPath context.
5267 * @param[out] moveto_mod Expected module of a matching node.
5268 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005269 */
Michal Vasko6346ece2019-09-24 13:12:53 +02005270static LY_ERR
5271moveto_resolve_model(const char **qname, uint16_t *qname_len, struct lyxp_set *set, const struct lys_module **moveto_mod)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005272{
Michal Vaskoed4fcfe2020-07-08 10:38:56 +02005273 const struct lys_module *mod = NULL;
Michal Vasko6346ece2019-09-24 13:12:53 +02005274 const char *ptr;
5275 int pref_len;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005276
Michal Vasko2104e9f2020-03-06 08:23:25 +01005277 assert((set->type == LYXP_SET_NODE_SET) || (set->type == LYXP_SET_SCNODE_SET));
5278
Michal Vasko6346ece2019-09-24 13:12:53 +02005279 if ((ptr = ly_strnchr(*qname, ':', *qname_len))) {
5280 /* specific module */
5281 pref_len = ptr - *qname;
Michal Vaskoc8a230d2020-08-14 12:17:10 +02005282 mod = ly_resolve_prefix(set->ctx, *qname, pref_len, set->format, (void *)set->local_mod);
Michal Vasko6346ece2019-09-24 13:12:53 +02005283
Michal Vasko004d3152020-06-11 19:59:22 +02005284 /* check for errors and non-implemented modules, as they are not valid */
Juraj Vijtiukd75faa62019-11-26 14:10:10 +01005285 if (!mod || !mod->implemented) {
Michal Vasko2104e9f2020-03-06 08:23:25 +01005286 if (set->type == LYXP_SET_SCNODE_SET) {
5287 LOGVAL(set->ctx, LY_VLOG_LYSC, set->ctx_scnode, LY_VCODE_XP_INMOD, pref_len, *qname);
5288 } else {
5289 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INMOD, pref_len, *qname);
5290 }
Michal Vasko6346ece2019-09-24 13:12:53 +02005291 return LY_EVALID;
5292 }
Juraj Vijtiukd75faa62019-11-26 14:10:10 +01005293
Michal Vasko6346ece2019-09-24 13:12:53 +02005294 *qname += pref_len + 1;
5295 *qname_len -= pref_len + 1;
5296 } else if (((*qname)[0] == '*') && (*qname_len == 1)) {
5297 /* all modules - special case */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005298 mod = NULL;
Michal Vasko004d3152020-06-11 19:59:22 +02005299 } else if (set->type == LYXP_SET_SCNODE_SET) {
5300 /* current node module */
5301 mod = set->ctx_scnode->module;
Michal Vasko6346ece2019-09-24 13:12:53 +02005302 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02005303 /* current node module */
5304 mod = set->ctx_node->schema->module;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005305 }
5306
Michal Vasko6346ece2019-09-24 13:12:53 +02005307 *moveto_mod = mod;
5308 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005309}
5310
5311/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02005312 * @brief Move context @p set to the root. Handles absolute path.
5313 * Result is LYXP_SET_NODE_SET.
5314 *
5315 * @param[in,out] set Set to use.
5316 * @param[in] options Xpath options.
5317 */
5318static void
5319moveto_root(struct lyxp_set *set, int options)
5320{
Michal Vasko03ff5a72019-09-11 13:49:33 +02005321 if (!set) {
5322 return;
5323 }
5324
5325 if (options & LYXP_SCNODE_ALL) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005326 set_scnode_clear_ctx(set);
Michal Vaskoecd62de2019-11-13 12:35:11 +01005327 lyxp_set_scnode_insert_node(set, NULL, set->root_type);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005328 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02005329 set->type = LYXP_SET_NODE_SET;
5330 set->used = 0;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005331 set_insert_node(set, NULL, 0, set->root_type, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005332 }
5333}
5334
5335/**
Michal Vaskoa1424542019-11-14 16:08:52 +01005336 * @brief Check whether a node has some unresolved "when".
5337 *
5338 * @param[in] node Node to check.
5339 * @return LY_ERR value (LY_EINCOMPLETE if there are some unresolved "when")
5340 */
5341static LY_ERR
5342moveto_when_check(const struct lyd_node *node)
5343{
5344 const struct lysc_node *schema;
5345
5346 if (!node) {
5347 return LY_SUCCESS;
5348 }
5349
5350 schema = node->schema;
5351 do {
5352 if (schema->when && !(node->flags & LYD_WHEN_TRUE)) {
5353 return LY_EINCOMPLETE;
5354 }
5355 schema = schema->parent;
5356 } while (schema && (schema->nodetype & (LYS_CASE | LYS_CHOICE)));
5357
5358 return LY_SUCCESS;
5359}
5360
5361/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02005362 * @brief Check @p node as a part of NameTest processing.
5363 *
5364 * @param[in] node Node to check.
5365 * @param[in] root_type XPath root node type.
Michal Vasko6b26e742020-07-17 15:02:10 +02005366 * @param[in] context_op XPath operation parent.
Michal Vaskod3678892020-05-21 10:06:58 +02005367 * @param[in] node_name Node name in the dictionary to move to, NULL for any node.
5368 * @param[in] moveto_mod Expected module of the node, NULL for any.
Michal Vasko6346ece2019-09-24 13:12:53 +02005369 * @return LY_ERR (LY_ENOT if node does not match, LY_EINCOMPLETE on unresolved when,
5370 * LY_EINVAL if netither node nor any children match)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005371 */
5372static LY_ERR
Michal Vasko6b26e742020-07-17 15:02:10 +02005373moveto_node_check(const struct lyd_node *node, enum lyxp_node_type root_type, const struct lysc_node *context_op,
5374 const char *node_name, const struct lys_module *moveto_mod)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005375{
5376 /* module check */
5377 if (moveto_mod && (node->schema->module != moveto_mod)) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005378 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005379 }
5380
Michal Vasko5c4e5892019-11-14 12:31:38 +01005381 /* context check */
5382 if ((root_type == LYXP_NODE_ROOT_CONFIG) && (node->schema->flags & LYS_CONFIG_R)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005383 return LY_EINVAL;
Michal Vasko6b26e742020-07-17 15:02:10 +02005384 } else if (context_op && (node->schema->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) && (node->schema != context_op)) {
5385 return LY_EINVAL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005386 }
5387
5388 /* name check */
Michal Vasko61ac2f62020-05-25 12:39:51 +02005389 if (node_name && strcmp(node_name, "*") && (node->schema->name != node_name)) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005390 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005391 }
5392
Michal Vaskoa1424542019-11-14 16:08:52 +01005393 /* when check */
5394 if (moveto_when_check(node)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005395 return LY_EINCOMPLETE;
Michal Vaskoa1424542019-11-14 16:08:52 +01005396 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005397
5398 /* match */
5399 return LY_SUCCESS;
5400}
5401
5402/**
5403 * @brief Check @p node as a part of schema NameTest processing.
5404 *
5405 * @param[in] node Schema node to check.
5406 * @param[in] root_type XPath root node type.
Michal Vasko6b26e742020-07-17 15:02:10 +02005407 * @param[in] context_op XPath operation parent.
Michal Vaskod3678892020-05-21 10:06:58 +02005408 * @param[in] node_name Node name in the dictionary to move to, NULL for any nodes.
5409 * @param[in] moveto_mod Expected module of the node, NULL for any.
Michal Vasko6346ece2019-09-24 13:12:53 +02005410 * @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 +02005411 */
5412static LY_ERR
Michal Vasko6b26e742020-07-17 15:02:10 +02005413moveto_scnode_check(const struct lysc_node *node, enum lyxp_node_type root_type, const struct lysc_node *context_op,
5414 const char *node_name, const struct lys_module *moveto_mod)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005415{
Michal Vasko03ff5a72019-09-11 13:49:33 +02005416 /* module check */
Michal Vaskod3678892020-05-21 10:06:58 +02005417 if (moveto_mod && (node->module != moveto_mod)) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005418 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005419 }
5420
5421 /* context check */
5422 if ((root_type == LYXP_NODE_ROOT_CONFIG) && (node->flags & LYS_CONFIG_R)) {
5423 return LY_EINVAL;
Michal Vasko6b26e742020-07-17 15:02:10 +02005424 } else if (context_op && (node->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) && (node != context_op)) {
5425 return LY_EINVAL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005426 }
5427
5428 /* name check */
Michal Vasko61ac2f62020-05-25 12:39:51 +02005429 if (node_name && strcmp(node_name, "*") && (node->name != node_name)) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005430 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005431 }
5432
5433 /* match */
5434 return LY_SUCCESS;
5435}
5436
5437/**
Michal Vaskod3678892020-05-21 10:06:58 +02005438 * @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 +02005439 *
5440 * @param[in,out] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02005441 * @param[in] mod Matching node module, NULL for any.
5442 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005443 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
5444 */
5445static LY_ERR
Michal Vaskod3678892020-05-21 10:06:58 +02005446moveto_node(struct lyxp_set *set, const struct lys_module *mod, const char *ncname)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005447{
Michal Vaskof03ed032020-03-04 13:31:44 +01005448 uint32_t i;
Michal Vasko6346ece2019-09-24 13:12:53 +02005449 int replaced;
Michal Vaskod3678892020-05-21 10:06:58 +02005450 const struct lyd_node *siblings, *sub;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005451 LY_ERR rc;
5452
Michal Vaskod3678892020-05-21 10:06:58 +02005453 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005454 return LY_SUCCESS;
5455 }
5456
5457 if (set->type != LYXP_SET_NODE_SET) {
5458 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
5459 return LY_EVALID;
5460 }
5461
Michal Vasko03ff5a72019-09-11 13:49:33 +02005462 for (i = 0; i < set->used; ) {
5463 replaced = 0;
5464
5465 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 +01005466 assert(!set->val.nodes[i].node);
Michal Vaskod3678892020-05-21 10:06:58 +02005467
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005468 /* search in all the trees */
Michal Vaskod3678892020-05-21 10:06:58 +02005469 siblings = set->tree;
Michal Vasko5bfd4be2020-06-23 13:26:19 +02005470 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02005471 /* search in children */
Michal Vasko5bfd4be2020-06-23 13:26:19 +02005472 siblings = lyd_node_children(set->val.nodes[i].node, 0);
Michal Vaskod3678892020-05-21 10:06:58 +02005473 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005474
Michal Vaskod3678892020-05-21 10:06:58 +02005475 for (sub = siblings; sub; sub = sub->next) {
Michal Vasko6b26e742020-07-17 15:02:10 +02005476 rc = moveto_node_check(sub, set->root_type, set->context_op, ncname, mod);
Michal Vaskod3678892020-05-21 10:06:58 +02005477 if (rc == LY_SUCCESS) {
5478 if (!replaced) {
5479 set_replace_node(set, sub, 0, LYXP_NODE_ELEM, i);
5480 replaced = 1;
5481 } else {
5482 set_insert_node(set, sub, 0, LYXP_NODE_ELEM, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005483 }
Michal Vaskod3678892020-05-21 10:06:58 +02005484 ++i;
5485 } else if (rc == LY_EINCOMPLETE) {
5486 return rc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005487 }
5488 }
5489
5490 if (!replaced) {
5491 /* no match */
5492 set_remove_node(set, i);
5493 }
5494 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005495
5496 return LY_SUCCESS;
5497}
5498
5499/**
Michal Vaskod3678892020-05-21 10:06:58 +02005500 * @brief Move context @p set to a node using hashes. Result is LYXP_SET_NODE_SET (or LYXP_SET_EMPTY).
5501 * Context position aware.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005502 *
5503 * @param[in,out] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02005504 * @param[in] scnode Matching node schema.
Michal Vasko004d3152020-06-11 19:59:22 +02005505 * @param[in] predicates If @p scnode is ::LYS_LIST or ::LYS_LEAFLIST, the predicates specifying a single instance.
Michal Vaskod3678892020-05-21 10:06:58 +02005506 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
5507 */
5508static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02005509moveto_node_hash(struct lyxp_set *set, const struct lysc_node *scnode, const struct ly_path_predicate *predicates)
Michal Vaskod3678892020-05-21 10:06:58 +02005510{
Michal Vasko004d3152020-06-11 19:59:22 +02005511 LY_ERR ret = LY_SUCCESS;
Michal Vaskod3678892020-05-21 10:06:58 +02005512 uint32_t i;
Michal Vaskod3678892020-05-21 10:06:58 +02005513 const struct lyd_node *siblings;
Michal Vasko004d3152020-06-11 19:59:22 +02005514 struct lyd_node *sub, *inst = NULL;
Michal Vaskod3678892020-05-21 10:06:58 +02005515
Michal Vasko004d3152020-06-11 19:59:22 +02005516 assert(scnode && (!(scnode->nodetype & (LYS_LIST | LYS_LEAFLIST)) || predicates));
Michal Vaskod3678892020-05-21 10:06:58 +02005517
5518 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02005519 goto cleanup;
Michal Vaskod3678892020-05-21 10:06:58 +02005520 }
5521
5522 if (set->type != LYXP_SET_NODE_SET) {
5523 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko004d3152020-06-11 19:59:22 +02005524 ret = LY_EVALID;
5525 goto cleanup;
Michal Vaskod3678892020-05-21 10:06:58 +02005526 }
5527
5528 /* context check for all the nodes since we have the schema node */
5529 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (scnode->flags & LYS_CONFIG_R)) {
5530 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02005531 goto cleanup;
Michal Vasko6b26e742020-07-17 15:02:10 +02005532 } else if (set->context_op && (scnode->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF))
5533 && (scnode != set->context_op)) {
5534 lyxp_set_free_content(set);
5535 goto cleanup;
Michal Vasko004d3152020-06-11 19:59:22 +02005536 }
5537
5538 /* create specific data instance if needed */
5539 if (scnode->nodetype == LYS_LIST) {
5540 LY_CHECK_GOTO(ret = lyd_create_list(scnode, predicates, &inst), cleanup);
5541 } else if (scnode->nodetype == LYS_LEAFLIST) {
5542 LY_CHECK_GOTO(ret = lyd_create_term2(scnode, &predicates[0].value, &inst), cleanup);
Michal Vaskod3678892020-05-21 10:06:58 +02005543 }
5544
5545 for (i = 0; i < set->used; ) {
Michal Vaskod3678892020-05-21 10:06:58 +02005546 siblings = NULL;
5547
5548 if ((set->val.nodes[i].type == LYXP_NODE_ROOT_CONFIG) || (set->val.nodes[i].type == LYXP_NODE_ROOT)) {
5549 assert(!set->val.nodes[i].node);
5550
5551 /* search in all the trees */
5552 siblings = set->tree;
5553 } else if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
5554 /* search in children */
Michal Vasko5bfd4be2020-06-23 13:26:19 +02005555 siblings = lyd_node_children(set->val.nodes[i].node, 0);
Michal Vaskod3678892020-05-21 10:06:58 +02005556 }
5557
5558 /* find the node using hashes */
Michal Vasko004d3152020-06-11 19:59:22 +02005559 if (inst) {
5560 lyd_find_sibling_first(siblings, inst, &sub);
Michal Vaskod3678892020-05-21 10:06:58 +02005561 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02005562 lyd_find_sibling_val(siblings, scnode, NULL, 0, &sub);
Michal Vaskod3678892020-05-21 10:06:58 +02005563 }
5564
5565 /* when check */
5566 if (sub && moveto_when_check(sub)) {
Michal Vasko004d3152020-06-11 19:59:22 +02005567 ret = LY_EINCOMPLETE;
5568 goto cleanup;
Michal Vaskod3678892020-05-21 10:06:58 +02005569 }
5570
5571 if (sub) {
5572 /* pos filled later */
Michal Vaskocb1b7c02020-07-03 13:38:12 +02005573 set_replace_node(set, sub, 0, LYXP_NODE_ELEM, i);
Michal Vaskod3678892020-05-21 10:06:58 +02005574 ++i;
Michal Vaskocb1b7c02020-07-03 13:38:12 +02005575 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02005576 /* no match */
5577 set_remove_node(set, i);
5578 }
5579 }
5580
Michal Vasko004d3152020-06-11 19:59:22 +02005581cleanup:
5582 lyd_free_tree(inst);
5583 return ret;
Michal Vaskod3678892020-05-21 10:06:58 +02005584}
5585
5586/**
5587 * @brief Move context @p set to a schema node. Result is LYXP_SET_SCNODE_SET (or LYXP_SET_EMPTY).
5588 *
5589 * @param[in,out] set Set to use.
5590 * @param[in] mod Matching node module, NULL for any.
5591 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005592 * @param[in] options XPath options.
5593 * @return LY_ERR
5594 */
5595static LY_ERR
Michal Vaskod3678892020-05-21 10:06:58 +02005596moveto_scnode(struct lyxp_set *set, const struct lys_module *mod, const char *ncname, int options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005597{
Michal Vaskocafad9d2019-11-07 15:20:03 +01005598 int i, orig_used, idx, temp_ctx = 0, getnext_opts;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005599 uint32_t mod_idx;
Michal Vasko519fd602020-05-26 12:17:39 +02005600 const struct lysc_node *iter, *start_parent;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005601
Michal Vaskod3678892020-05-21 10:06:58 +02005602 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005603 return LY_SUCCESS;
5604 }
5605
5606 if (set->type != LYXP_SET_SCNODE_SET) {
Michal Vaskof6e51882019-12-16 09:59:45 +01005607 LOGVAL(set->ctx, LY_VLOG_LYSC, set->ctx_scnode, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005608 return LY_EVALID;
5609 }
5610
Michal Vaskocafad9d2019-11-07 15:20:03 +01005611 /* getnext opts */
5612 getnext_opts = LYS_GETNEXT_NOSTATECHECK;
5613 if (options & LYXP_SCNODE_OUTPUT) {
5614 getnext_opts |= LYS_GETNEXT_OUTPUT;
5615 }
5616
Michal Vasko03ff5a72019-09-11 13:49:33 +02005617 orig_used = set->used;
5618 for (i = 0; i < orig_used; ++i) {
5619 if (set->val.scnodes[i].in_ctx != 1) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01005620 if (set->val.scnodes[i].in_ctx != -2) {
5621 continue;
5622 }
5623
5624 /* remember context node */
5625 set->val.scnodes[i].in_ctx = -1;
Michal Vaskoec4df482019-12-16 10:02:18 +01005626 } else {
5627 set->val.scnodes[i].in_ctx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005628 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005629
5630 start_parent = set->val.scnodes[i].scnode;
5631
5632 if ((set->val.scnodes[i].type == LYXP_NODE_ROOT_CONFIG) || (set->val.scnodes[i].type == LYXP_NODE_ROOT)) {
Michal Vaskod3678892020-05-21 10:06:58 +02005633 /* it can actually be in any module, it's all <running>, but we know it's mod (if set),
Michal Vasko03ff5a72019-09-11 13:49:33 +02005634 * so use it directly (root node itself is useless in this case) */
5635 mod_idx = 0;
Michal Vaskod3678892020-05-21 10:06:58 +02005636 while (mod || (mod = (struct lys_module *)ly_ctx_get_module_iter(set->ctx, &mod_idx))) {
Michal Vasko519fd602020-05-26 12:17:39 +02005637 iter = NULL;
Michal Vasko509de4d2019-12-10 14:51:30 +01005638 /* module may not be implemented */
Michal Vasko519fd602020-05-26 12:17:39 +02005639 while (mod->implemented && (iter = lys_getnext(iter, NULL, mod->compiled, getnext_opts))) {
Michal Vasko6b26e742020-07-17 15:02:10 +02005640 if (!moveto_scnode_check(iter, set->root_type, set->context_op, ncname, mod)) {
Michal Vasko519fd602020-05-26 12:17:39 +02005641 idx = lyxp_set_scnode_insert_node(set, iter, LYXP_NODE_ELEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005642 /* we need to prevent these nodes from being considered in this moveto */
5643 if ((idx < orig_used) && (idx > i)) {
5644 set->val.scnodes[idx].in_ctx = 2;
5645 temp_ctx = 1;
5646 }
5647 }
5648 }
5649
5650 if (!mod_idx) {
Michal Vaskod3678892020-05-21 10:06:58 +02005651 /* mod was specified, we are not going through the whole context */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005652 break;
5653 }
5654 /* next iteration */
Michal Vaskod3678892020-05-21 10:06:58 +02005655 mod = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005656 }
5657
Michal Vasko519fd602020-05-26 12:17:39 +02005658 } else if (set->val.scnodes[i].type == LYXP_NODE_ELEM) {
5659 iter = NULL;
5660 while ((iter = lys_getnext(iter, start_parent, NULL, getnext_opts))) {
Michal Vasko6b26e742020-07-17 15:02:10 +02005661 if (!moveto_scnode_check(iter, set->root_type, set->context_op, ncname, (mod ? mod : set->local_mod))) {
Michal Vasko519fd602020-05-26 12:17:39 +02005662 idx = lyxp_set_scnode_insert_node(set, iter, LYXP_NODE_ELEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005663 if ((idx < orig_used) && (idx > i)) {
5664 set->val.scnodes[idx].in_ctx = 2;
5665 temp_ctx = 1;
5666 }
5667 }
5668 }
5669 }
5670 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005671
5672 /* correct temporary in_ctx values */
5673 if (temp_ctx) {
5674 for (i = 0; i < orig_used; ++i) {
5675 if (set->val.scnodes[i].in_ctx == 2) {
5676 set->val.scnodes[i].in_ctx = 1;
5677 }
5678 }
5679 }
5680
5681 return LY_SUCCESS;
5682}
5683
5684/**
Michal Vaskod3678892020-05-21 10:06:58 +02005685 * @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 +02005686 * Context position aware.
5687 *
5688 * @param[in] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02005689 * @param[in] mod Matching node module, NULL for any.
5690 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005691 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
5692 */
5693static LY_ERR
Michal Vaskod3678892020-05-21 10:06:58 +02005694moveto_node_alldesc(struct lyxp_set *set, const struct lys_module *mod, const char *ncname)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005695{
5696 uint32_t i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005697 const struct lyd_node *next, *elem, *start;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005698 struct lyxp_set ret_set;
5699 LY_ERR rc;
5700
Michal Vaskod3678892020-05-21 10:06:58 +02005701 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005702 return LY_SUCCESS;
5703 }
5704
5705 if (set->type != LYXP_SET_NODE_SET) {
5706 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
5707 return LY_EVALID;
5708 }
5709
Michal Vasko9f96a052020-03-10 09:41:45 +01005710 /* replace the original nodes (and throws away all text and meta nodes, root is replaced by a child) */
Michal Vaskod3678892020-05-21 10:06:58 +02005711 rc = moveto_node(set, NULL, NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005712 LY_CHECK_RET(rc);
5713
Michal Vasko6346ece2019-09-24 13:12:53 +02005714 /* this loop traverses all the nodes in the set and adds/keeps only those that match qname */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005715 set_init(&ret_set, set);
5716 for (i = 0; i < set->used; ++i) {
5717
5718 /* TREE DFS */
5719 start = set->val.nodes[i].node;
5720 for (elem = next = start; elem; elem = next) {
Michal Vasko6b26e742020-07-17 15:02:10 +02005721 rc = moveto_node_check(elem, set->root_type, set->context_op, ncname, mod);
Michal Vasko6346ece2019-09-24 13:12:53 +02005722 if (!rc) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005723 /* add matching node into result set */
5724 set_insert_node(&ret_set, elem, 0, LYXP_NODE_ELEM, ret_set.used);
5725 if (set_dup_node_check(set, elem, LYXP_NODE_ELEM, i)) {
5726 /* the node is a duplicate, we'll process it later in the set */
5727 goto skip_children;
5728 }
Michal Vasko6346ece2019-09-24 13:12:53 +02005729 } else if (rc == LY_EINCOMPLETE) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005730 return rc;
5731 } else if (rc == LY_EINVAL) {
5732 goto skip_children;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005733 }
5734
5735 /* TREE DFS NEXT ELEM */
5736 /* select element for the next run - children first */
Michal Vasko5bfd4be2020-06-23 13:26:19 +02005737 next = lyd_node_children(elem, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005738 if (!next) {
5739skip_children:
5740 /* no children, so try siblings, but only if it's not the start,
5741 * that is considered to be the root and it's siblings are not traversed */
5742 if (elem != start) {
5743 next = elem->next;
5744 } else {
5745 break;
5746 }
5747 }
5748 while (!next) {
5749 /* no siblings, go back through the parents */
5750 if ((struct lyd_node *)elem->parent == start) {
5751 /* we are done, no next element to process */
5752 break;
5753 }
5754 /* parent is already processed, go to its sibling */
5755 elem = (struct lyd_node *)elem->parent;
5756 next = elem->next;
5757 }
5758 }
5759 }
5760
5761 /* make the temporary set the current one */
5762 ret_set.ctx_pos = set->ctx_pos;
5763 ret_set.ctx_size = set->ctx_size;
Michal Vaskod3678892020-05-21 10:06:58 +02005764 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005765 memcpy(set, &ret_set, sizeof *set);
5766
5767 return LY_SUCCESS;
5768}
5769
5770/**
Michal Vasko61ac2f62020-05-25 12:39:51 +02005771 * @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 +02005772 *
5773 * @param[in] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02005774 * @param[in] mod Matching node module, NULL for any.
5775 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005776 * @param[in] options XPath options.
5777 * @return LY_ERR
5778 */
5779static LY_ERR
Michal Vaskod3678892020-05-21 10:06:58 +02005780moveto_scnode_alldesc(struct lyxp_set *set, const struct lys_module *mod, const char *ncname, int options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005781{
Michal Vasko6346ece2019-09-24 13:12:53 +02005782 int i, orig_used, idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005783 const struct lysc_node *next, *elem, *start;
Michal Vasko6346ece2019-09-24 13:12:53 +02005784 LY_ERR rc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005785
Michal Vaskod3678892020-05-21 10:06:58 +02005786 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005787 return LY_SUCCESS;
5788 }
5789
5790 if (set->type != LYXP_SET_SCNODE_SET) {
Michal Vaskof6e51882019-12-16 09:59:45 +01005791 LOGVAL(set->ctx, LY_VLOG_LYSC, set->ctx_scnode, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005792 return LY_EVALID;
5793 }
5794
Michal Vasko03ff5a72019-09-11 13:49:33 +02005795 orig_used = set->used;
5796 for (i = 0; i < orig_used; ++i) {
5797 if (set->val.scnodes[i].in_ctx != 1) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01005798 if (set->val.scnodes[i].in_ctx != -2) {
5799 continue;
5800 }
5801
5802 /* remember context node */
5803 set->val.scnodes[i].in_ctx = -1;
Michal Vaskoec4df482019-12-16 10:02:18 +01005804 } else {
5805 set->val.scnodes[i].in_ctx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005806 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005807
5808 /* TREE DFS */
5809 start = set->val.scnodes[i].scnode;
5810 for (elem = next = start; elem; elem = next) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005811 if ((elem == start) || (elem->nodetype & (LYS_CHOICE | LYS_CASE))) {
5812 /* schema-only nodes, skip root */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005813 goto next_iter;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005814 }
5815
Michal Vasko6b26e742020-07-17 15:02:10 +02005816 rc = moveto_scnode_check(elem, set->root_type, set->context_op, ncname, mod);
Michal Vasko6346ece2019-09-24 13:12:53 +02005817 if (!rc) {
Michal Vaskoecd62de2019-11-13 12:35:11 +01005818 if ((idx = lyxp_set_scnode_dup_node_check(set, elem, LYXP_NODE_ELEM, i)) > -1) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005819 set->val.scnodes[idx].in_ctx = 1;
5820 if (idx > i) {
5821 /* we will process it later in the set */
5822 goto skip_children;
5823 }
5824 } else {
Michal Vaskoecd62de2019-11-13 12:35:11 +01005825 lyxp_set_scnode_insert_node(set, elem, LYXP_NODE_ELEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005826 }
Michal Vasko6346ece2019-09-24 13:12:53 +02005827 } else if (rc == LY_EINVAL) {
5828 goto skip_children;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005829 }
5830
5831next_iter:
5832 /* TREE DFS NEXT ELEM */
5833 /* select element for the next run - children first */
5834 next = lysc_node_children(elem, options & LYXP_SCNODE_OUTPUT ? LYS_CONFIG_R : LYS_CONFIG_W);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005835 if (!next) {
5836skip_children:
5837 /* no children, so try siblings, but only if it's not the start,
5838 * that is considered to be the root and it's siblings are not traversed */
5839 if (elem != start) {
5840 next = elem->next;
5841 } else {
5842 break;
5843 }
5844 }
5845 while (!next) {
5846 /* no siblings, go back through the parents */
5847 if (elem->parent == start) {
5848 /* we are done, no next element to process */
5849 break;
5850 }
5851 /* parent is already processed, go to its sibling */
5852 elem = elem->parent;
5853 next = elem->next;
5854 }
5855 }
5856 }
5857
5858 return LY_SUCCESS;
5859}
5860
5861/**
Michal Vasko61ac2f62020-05-25 12:39:51 +02005862 * @brief Move context @p set to an attribute. Result is LYXP_SET_NODE_SET.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005863 * Indirectly context position aware.
5864 *
5865 * @param[in,out] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02005866 * @param[in] mod Matching metadata module, NULL for any.
5867 * @param[in] ncname Matching metadata name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005868 * @return LY_ERR
5869 */
5870static LY_ERR
Michal Vaskod3678892020-05-21 10:06:58 +02005871moveto_attr(struct lyxp_set *set, const struct lys_module *mod, const char *ncname)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005872{
5873 uint32_t i;
Michal Vaskod3678892020-05-21 10:06:58 +02005874 int replaced;
Michal Vasko9f96a052020-03-10 09:41:45 +01005875 struct lyd_meta *sub;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005876
Michal Vaskod3678892020-05-21 10:06:58 +02005877 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005878 return LY_SUCCESS;
5879 }
5880
5881 if (set->type != LYXP_SET_NODE_SET) {
5882 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
5883 return LY_EVALID;
5884 }
5885
Michal Vasko03ff5a72019-09-11 13:49:33 +02005886 for (i = 0; i < set->used; ) {
5887 replaced = 0;
5888
5889 /* only attributes of an elem (not dummy) can be in the result, skip all the rest;
5890 * our attributes are always qualified */
Michal Vasko5c4e5892019-11-14 12:31:38 +01005891 if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
Michal Vasko9f96a052020-03-10 09:41:45 +01005892 for (sub = set->val.nodes[i].node->meta; sub; sub = sub->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005893
5894 /* check "namespace" */
Michal Vaskod3678892020-05-21 10:06:58 +02005895 if (mod && (sub->annotation->module != mod)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005896 continue;
5897 }
5898
Michal Vaskod3678892020-05-21 10:06:58 +02005899 if (!ncname || (sub->name == ncname)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005900 /* match */
5901 if (!replaced) {
Michal Vasko9f96a052020-03-10 09:41:45 +01005902 set->val.meta[i].meta = sub;
5903 set->val.meta[i].type = LYXP_NODE_META;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005904 /* pos does not change */
5905 replaced = 1;
5906 } else {
Michal Vasko9f96a052020-03-10 09:41:45 +01005907 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 +02005908 }
5909 ++i;
5910 }
5911 }
5912 }
5913
5914 if (!replaced) {
5915 /* no match */
5916 set_remove_node(set, i);
5917 }
5918 }
5919
5920 return LY_SUCCESS;
5921}
5922
5923/**
5924 * @brief Move context @p set1 to union with @p set2. @p set2 is emptied afterwards.
Michal Vasko61ac2f62020-05-25 12:39:51 +02005925 * Result is LYXP_SET_NODE_SET. Context position aware.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005926 *
5927 * @param[in,out] set1 Set to use for the result.
5928 * @param[in] set2 Set that is copied to @p set1.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005929 * @return LY_ERR
5930 */
5931static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005932moveto_union(struct lyxp_set *set1, struct lyxp_set *set2)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005933{
5934 LY_ERR rc;
5935
Michal Vaskod3678892020-05-21 10:06:58 +02005936 if ((set1->type != LYXP_SET_NODE_SET) || (set2->type != LYXP_SET_NODE_SET)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005937 LOGVAL(set1->ctx, LY_VLOG_LYD, set1->ctx_node, LY_VCODE_XP_INOP_2, "union", print_set_type(set1), print_set_type(set2));
5938 return LY_EVALID;
5939 }
5940
5941 /* set2 is empty or both set1 and set2 */
Michal Vaskod3678892020-05-21 10:06:58 +02005942 if (!set2->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005943 return LY_SUCCESS;
5944 }
5945
Michal Vaskod3678892020-05-21 10:06:58 +02005946 if (!set1->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005947 memcpy(set1, set2, sizeof *set1);
5948 /* dynamic memory belongs to set1 now, do not free */
Michal Vaskod3678892020-05-21 10:06:58 +02005949 memset(set2, 0, sizeof *set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005950 return LY_SUCCESS;
5951 }
5952
5953 /* we assume sets are sorted */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005954 assert(!set_sort(set1) && !set_sort(set2));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005955
5956 /* sort, remove duplicates */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005957 rc = set_sorted_merge(set1, set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005958 LY_CHECK_RET(rc);
5959
5960 /* final set must be sorted */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005961 assert(!set_sort(set1));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005962
5963 return LY_SUCCESS;
5964}
5965
5966/**
Michal Vasko61ac2f62020-05-25 12:39:51 +02005967 * @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 +02005968 * Context position aware.
5969 *
5970 * @param[in,out] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02005971 * @param[in] mod Matching metadata module, NULL for any.
5972 * @param[in] ncname Matching metadata name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005973 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
5974 */
5975static int
Michal Vaskod3678892020-05-21 10:06:58 +02005976moveto_attr_alldesc(struct lyxp_set *set, const struct lys_module *mod, const char *ncname)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005977{
5978 uint32_t i;
Michal Vaskod3678892020-05-21 10:06:58 +02005979 int replaced;
Michal Vasko9f96a052020-03-10 09:41:45 +01005980 struct lyd_meta *sub;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005981 struct lyxp_set *set_all_desc = NULL;
5982 LY_ERR rc;
5983
Michal Vaskod3678892020-05-21 10:06:58 +02005984 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005985 return LY_SUCCESS;
5986 }
5987
5988 if (set->type != LYXP_SET_NODE_SET) {
5989 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
5990 return LY_EVALID;
5991 }
5992
Michal Vasko03ff5a72019-09-11 13:49:33 +02005993 /* can be optimized similarly to moveto_node_alldesc() and save considerable amount of memory,
5994 * but it likely won't be used much, so it's a waste of time */
5995 /* copy the context */
5996 set_all_desc = set_copy(set);
5997 /* get all descendant nodes (the original context nodes are removed) */
Michal Vaskod3678892020-05-21 10:06:58 +02005998 rc = moveto_node_alldesc(set_all_desc, NULL, NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005999 if (rc != LY_SUCCESS) {
6000 lyxp_set_free(set_all_desc);
6001 return rc;
6002 }
6003 /* prepend the original context nodes */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006004 rc = moveto_union(set, set_all_desc);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006005 if (rc != LY_SUCCESS) {
6006 lyxp_set_free(set_all_desc);
6007 return rc;
6008 }
6009 lyxp_set_free(set_all_desc);
6010
Michal Vasko03ff5a72019-09-11 13:49:33 +02006011 for (i = 0; i < set->used; ) {
6012 replaced = 0;
6013
6014 /* only attributes of an elem can be in the result, skip all the rest,
6015 * we have all attributes qualified in lyd tree */
6016 if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
Michal Vasko9f96a052020-03-10 09:41:45 +01006017 for (sub = set->val.nodes[i].node->meta; sub; sub = sub->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006018 /* check "namespace" */
Michal Vaskod3678892020-05-21 10:06:58 +02006019 if (mod && (sub->annotation->module != mod)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006020 continue;
6021 }
6022
Michal Vaskod3678892020-05-21 10:06:58 +02006023 if (!ncname || (sub->name == ncname)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006024 /* match */
6025 if (!replaced) {
Michal Vasko9f96a052020-03-10 09:41:45 +01006026 set->val.meta[i].meta = sub;
6027 set->val.meta[i].type = LYXP_NODE_META;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006028 /* pos does not change */
6029 replaced = 1;
6030 } else {
Michal Vasko9f96a052020-03-10 09:41:45 +01006031 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 +02006032 }
6033 ++i;
6034 }
6035 }
6036 }
6037
6038 if (!replaced) {
6039 /* no match */
6040 set_remove_node(set, i);
6041 }
6042 }
6043
6044 return LY_SUCCESS;
6045}
6046
6047/**
Michal Vasko61ac2f62020-05-25 12:39:51 +02006048 * @brief Move context @p set to self and al chilren, recursively. Handles '/' or '//' and '.'. Result is LYXP_SET_NODE_SET.
6049 * Context position aware.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006050 *
6051 * @param[in] parent Current parent.
6052 * @param[in] parent_pos Position of @p parent.
6053 * @param[in] parent_type Node type of @p parent.
6054 * @param[in,out] to_set Set to use.
6055 * @param[in] dup_check_set Set for checking duplicities.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006056 * @param[in] options XPath options.
6057 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6058 */
6059static LY_ERR
6060moveto_self_add_children_r(const struct lyd_node *parent, uint32_t parent_pos, enum lyxp_node_type parent_type,
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006061 struct lyxp_set *to_set, const struct lyxp_set *dup_check_set, int options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006062{
Michal Vasko61ac2f62020-05-25 12:39:51 +02006063 const struct lyd_node *iter, *first;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006064 LY_ERR rc;
6065
6066 switch (parent_type) {
6067 case LYXP_NODE_ROOT:
6068 case LYXP_NODE_ROOT_CONFIG:
Michal Vasko61ac2f62020-05-25 12:39:51 +02006069 assert(!parent);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006070
Michal Vasko61ac2f62020-05-25 12:39:51 +02006071 /* add all top-level nodes as elements */
6072 first = to_set->tree;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006073 break;
6074 case LYXP_NODE_ELEM:
Michal Vasko61ac2f62020-05-25 12:39:51 +02006075 /* add just the text node of this term element node */
6076 if (parent->schema->nodetype & (LYD_NODE_TERM | LYD_NODE_ANY)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006077 if (!set_dup_node_check(dup_check_set, parent, LYXP_NODE_TEXT, -1)) {
6078 set_insert_node(to_set, parent, parent_pos, LYXP_NODE_TEXT, to_set->used);
6079 }
Michal Vasko61ac2f62020-05-25 12:39:51 +02006080 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006081 }
Michal Vasko61ac2f62020-05-25 12:39:51 +02006082
6083 /* add all the children of this node */
Michal Vasko5bfd4be2020-06-23 13:26:19 +02006084 first = lyd_node_children(parent, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006085 break;
6086 default:
6087 LOGINT_RET(parent->schema->module->ctx);
6088 }
6089
Michal Vasko61ac2f62020-05-25 12:39:51 +02006090 /* add all top-level nodes as elements */
6091 LY_LIST_FOR(first, iter) {
6092 /* context check */
6093 if ((parent_type == LYXP_NODE_ROOT_CONFIG) && (iter->schema->flags & LYS_CONFIG_R)) {
6094 continue;
6095 }
6096
6097 /* when check */
6098 if (moveto_when_check(iter)) {
6099 return LY_EINCOMPLETE;
6100 }
6101
6102 if (!set_dup_node_check(dup_check_set, iter, LYXP_NODE_ELEM, -1)) {
6103 set_insert_node(to_set, iter, 0, LYXP_NODE_ELEM, to_set->used);
6104
6105 /* also add all the children of this node, recursively */
6106 rc = moveto_self_add_children_r(iter, 0, LYXP_NODE_ELEM, to_set, dup_check_set, options);
6107 LY_CHECK_RET(rc);
6108 }
6109 }
6110
Michal Vasko03ff5a72019-09-11 13:49:33 +02006111 return LY_SUCCESS;
6112}
6113
6114/**
6115 * @brief Move context @p set to self. Handles '/' or '//' and '.'. Result is LYXP_SET_NODE_SET
6116 * (or LYXP_SET_EMPTY). Context position aware.
6117 *
6118 * @param[in,out] set Set to use.
6119 * @param[in] all_desc Whether to go to all descendants ('//') or not ('/').
6120 * @param[in] options XPath options.
6121 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6122 */
6123static LY_ERR
6124moveto_self(struct lyxp_set *set, int all_desc, int options)
6125{
6126 uint32_t i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006127 struct lyxp_set ret_set;
6128 LY_ERR rc;
6129
Michal Vaskod3678892020-05-21 10:06:58 +02006130 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006131 return LY_SUCCESS;
6132 }
6133
6134 if (set->type != LYXP_SET_NODE_SET) {
6135 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
6136 return LY_EVALID;
6137 }
6138
6139 /* nothing to do */
6140 if (!all_desc) {
6141 return LY_SUCCESS;
6142 }
6143
Michal Vasko03ff5a72019-09-11 13:49:33 +02006144 /* add all the children, they get added recursively */
6145 set_init(&ret_set, set);
6146 for (i = 0; i < set->used; ++i) {
6147 /* copy the current node to tmp */
6148 set_insert_node(&ret_set, set->val.nodes[i].node, set->val.nodes[i].pos, set->val.nodes[i].type, ret_set.used);
6149
6150 /* do not touch attributes and text nodes */
Michal Vasko9f96a052020-03-10 09:41:45 +01006151 if ((set->val.nodes[i].type == LYXP_NODE_TEXT) || (set->val.nodes[i].type == LYXP_NODE_META)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006152 continue;
6153 }
6154
Michal Vasko03ff5a72019-09-11 13:49:33 +02006155 /* add all the children */
6156 rc = moveto_self_add_children_r(set->val.nodes[i].node, set->val.nodes[i].pos, set->val.nodes[i].type, &ret_set,
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006157 set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006158 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02006159 lyxp_set_free_content(&ret_set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006160 return rc;
6161 }
6162 }
6163
6164 /* use the temporary set as the current one */
6165 ret_set.ctx_pos = set->ctx_pos;
6166 ret_set.ctx_size = set->ctx_size;
Michal Vaskod3678892020-05-21 10:06:58 +02006167 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006168 memcpy(set, &ret_set, sizeof *set);
6169
6170 return LY_SUCCESS;
6171}
6172
6173/**
6174 * @brief Move context schema @p set to self. Handles '/' or '//' and '.'. Result is LYXP_SET_SCNODE_SET
6175 * (or LYXP_SET_EMPTY).
6176 *
6177 * @param[in,out] set Set to use.
6178 * @param[in] all_desc Whether to go to all descendants ('//') or not ('/').
6179 * @param[in] options XPath options.
6180 * @return LY_ERR
6181 */
6182static LY_ERR
6183moveto_scnode_self(struct lyxp_set *set, int all_desc, int options)
6184{
Michal Vasko519fd602020-05-26 12:17:39 +02006185 int getnext_opts;
6186 uint32_t i, mod_idx;
6187 const struct lysc_node *iter, *start_parent;
6188 const struct lys_module *mod;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006189
Michal Vaskod3678892020-05-21 10:06:58 +02006190 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006191 return LY_SUCCESS;
6192 }
6193
6194 if (set->type != LYXP_SET_SCNODE_SET) {
Michal Vaskof6e51882019-12-16 09:59:45 +01006195 LOGVAL(set->ctx, LY_VLOG_LYSC, set->ctx_scnode, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006196 return LY_EVALID;
6197 }
6198
6199 /* nothing to do */
6200 if (!all_desc) {
6201 return LY_SUCCESS;
6202 }
6203
Michal Vasko519fd602020-05-26 12:17:39 +02006204 /* getnext opts */
6205 getnext_opts = LYS_GETNEXT_NOSTATECHECK;
6206 if (options & LYXP_SCNODE_OUTPUT) {
6207 getnext_opts |= LYS_GETNEXT_OUTPUT;
6208 }
6209
6210 /* add all the children, recursively as they are being added into the same set */
Michal Vasko03ff5a72019-09-11 13:49:33 +02006211 for (i = 0; i < set->used; ++i) {
6212 if (set->val.scnodes[i].in_ctx != 1) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01006213 if (set->val.scnodes[i].in_ctx != -2) {
6214 continue;
6215 }
6216
Michal Vasko519fd602020-05-26 12:17:39 +02006217 /* remember context node */
6218 set->val.scnodes[i].in_ctx = -1;
6219 } else {
6220 set->val.scnodes[i].in_ctx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006221 }
6222
Michal Vasko519fd602020-05-26 12:17:39 +02006223 start_parent = set->val.scnodes[i].scnode;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006224
Michal Vasko519fd602020-05-26 12:17:39 +02006225 if ((set->val.scnodes[i].type == LYXP_NODE_ROOT_CONFIG) || (set->val.scnodes[i].type == LYXP_NODE_ROOT)) {
6226 /* it can actually be in any module, it's all <running> */
6227 mod_idx = 0;
6228 while ((mod = (struct lys_module *)ly_ctx_get_module_iter(set->ctx, &mod_idx))) {
6229 iter = NULL;
6230 /* module may not be implemented */
6231 while (mod->implemented && (iter = lys_getnext(iter, NULL, mod->compiled, getnext_opts))) {
6232 /* context check */
6233 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (iter->flags & LYS_CONFIG_R)) {
6234 continue;
6235 }
6236
6237 lyxp_set_scnode_insert_node(set, iter, LYXP_NODE_ELEM);
6238 /* throw away the insert index, we want to consider that node again, recursively */
6239 }
6240 }
6241
6242 } else if (set->val.scnodes[i].type == LYXP_NODE_ELEM) {
6243 iter = NULL;
6244 while ((iter = lys_getnext(iter, start_parent, NULL, getnext_opts))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006245 /* context check */
Michal Vasko519fd602020-05-26 12:17:39 +02006246 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (iter->flags & LYS_CONFIG_R)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006247 continue;
6248 }
6249
Michal Vasko519fd602020-05-26 12:17:39 +02006250 lyxp_set_scnode_insert_node(set, iter, LYXP_NODE_ELEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006251 }
6252 }
6253 }
6254
6255 return LY_SUCCESS;
6256}
6257
6258/**
6259 * @brief Move context @p set to parent. Handles '/' or '//' and '..'. Result is LYXP_SET_NODE_SET
6260 * (or LYXP_SET_EMPTY). Context position aware.
6261 *
6262 * @param[in] set Set to use.
6263 * @param[in] all_desc Whether to go to all descendants ('//') or not ('/').
6264 * @param[in] options XPath options.
6265 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6266 */
6267static LY_ERR
6268moveto_parent(struct lyxp_set *set, int all_desc, int options)
6269{
6270 LY_ERR rc;
6271 uint32_t i;
6272 struct lyd_node *node, *new_node;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006273 enum lyxp_node_type new_type;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006274
Michal Vaskod3678892020-05-21 10:06:58 +02006275 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006276 return LY_SUCCESS;
6277 }
6278
6279 if (set->type != LYXP_SET_NODE_SET) {
6280 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
6281 return LY_EVALID;
6282 }
6283
6284 if (all_desc) {
6285 /* <path>//.. == <path>//./.. */
6286 rc = moveto_self(set, 1, options);
6287 LY_CHECK_RET(rc);
6288 }
6289
Michal Vasko57eab132019-09-24 11:46:26 +02006290 for (i = 0; i < set->used; ++i) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006291 node = set->val.nodes[i].node;
6292
6293 if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
6294 new_node = (struct lyd_node *)node->parent;
6295 } else if (set->val.nodes[i].type == LYXP_NODE_TEXT) {
6296 new_node = node;
Michal Vasko9f96a052020-03-10 09:41:45 +01006297 } else if (set->val.nodes[i].type == LYXP_NODE_META) {
6298 new_node = set->val.meta[i].meta->parent;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006299 if (!new_node) {
6300 LOGINT_RET(set->ctx);
6301 }
6302 } else {
6303 /* root does not have a parent */
Michal Vasko2caefc12019-11-14 16:07:56 +01006304 set_remove_node_none(set, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006305 continue;
6306 }
6307
Michal Vaskoa1424542019-11-14 16:08:52 +01006308 /* when check */
6309 if (moveto_when_check(new_node)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006310 return LY_EINCOMPLETE;
Michal Vaskoa1424542019-11-14 16:08:52 +01006311 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02006312
6313 /* node already there can also be the root */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006314 if (!new_node) {
6315 new_type = set->root_type;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006316
6317 /* node has a standard parent (it can equal the root, it's not the root yet since they are fake) */
6318 } else {
6319 new_type = LYXP_NODE_ELEM;
6320 }
6321
Michal Vasko03ff5a72019-09-11 13:49:33 +02006322 if (set_dup_node_check(set, new_node, new_type, -1)) {
Michal Vasko2caefc12019-11-14 16:07:56 +01006323 set_remove_node_none(set, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006324 } else {
6325 set_replace_node(set, new_node, 0, new_type, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006326 }
6327 }
6328
Michal Vasko2caefc12019-11-14 16:07:56 +01006329 set_remove_nodes_none(set);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006330 assert(!set_sort(set) && !set_sorted_dup_node_clean(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006331
6332 return LY_SUCCESS;
6333}
6334
6335/**
6336 * @brief Move context schema @p set to parent. Handles '/' or '//' and '..'. Result is LYXP_SET_SCNODE_SET
6337 * (or LYXP_SET_EMPTY).
6338 *
6339 * @param[in] set Set to use.
6340 * @param[in] all_desc Whether to go to all descendants ('//') or not ('/').
6341 * @param[in] options XPath options.
6342 * @return LY_ERR
6343 */
6344static LY_ERR
6345moveto_scnode_parent(struct lyxp_set *set, int all_desc, int options)
6346{
6347 int idx, i, orig_used, temp_ctx = 0;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006348 const struct lysc_node *node, *new_node;
6349 enum lyxp_node_type new_type;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006350 LY_ERR rc;
6351
Michal Vaskod3678892020-05-21 10:06:58 +02006352 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006353 return LY_SUCCESS;
6354 }
6355
6356 if (set->type != LYXP_SET_SCNODE_SET) {
Michal Vaskof6e51882019-12-16 09:59:45 +01006357 LOGVAL(set->ctx, LY_VLOG_LYSC, set->ctx_scnode, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006358 return LY_EVALID;
6359 }
6360
6361 if (all_desc) {
6362 /* <path>//.. == <path>//./.. */
6363 rc = moveto_scnode_self(set, 1, options);
6364 LY_CHECK_RET(rc);
6365 }
6366
Michal Vasko03ff5a72019-09-11 13:49:33 +02006367 orig_used = set->used;
6368 for (i = 0; i < orig_used; ++i) {
6369 if (set->val.scnodes[i].in_ctx != 1) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01006370 if (set->val.scnodes[i].in_ctx != -2) {
6371 continue;
6372 }
6373
6374 /* remember context node */
6375 set->val.scnodes[i].in_ctx = -1;
Michal Vaskoec4df482019-12-16 10:02:18 +01006376 } else {
6377 set->val.scnodes[i].in_ctx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006378 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02006379
6380 node = set->val.scnodes[i].scnode;
6381
6382 if (set->val.scnodes[i].type == LYXP_NODE_ELEM) {
Michal Vaskod3678892020-05-21 10:06:58 +02006383 new_node = lysc_data_parent(node);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006384 } else {
6385 /* root does not have a parent */
6386 continue;
6387 }
6388
Michal Vasko03ff5a72019-09-11 13:49:33 +02006389 /* node has no parent */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006390 if (!new_node) {
6391 new_type = set->root_type;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006392
6393 /* node has a standard parent (it can equal the root, it's not the root yet since they are fake) */
6394 } else {
6395 new_type = LYXP_NODE_ELEM;
6396 }
6397
Michal Vaskoecd62de2019-11-13 12:35:11 +01006398 idx = lyxp_set_scnode_insert_node(set, new_node, new_type);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006399 if ((idx < orig_used) && (idx > i)) {
6400 set->val.scnodes[idx].in_ctx = 2;
6401 temp_ctx = 1;
6402 }
6403 }
6404
6405 if (temp_ctx) {
6406 for (i = 0; i < orig_used; ++i) {
6407 if (set->val.scnodes[i].in_ctx == 2) {
6408 set->val.scnodes[i].in_ctx = 1;
6409 }
6410 }
6411 }
6412
6413 return LY_SUCCESS;
6414}
6415
6416/**
6417 * @brief Move context @p set to the result of a comparison. Handles '=', '!=', '<=', '<', '>=', or '>'.
6418 * Result is LYXP_SET_BOOLEAN. Indirectly context position aware.
6419 *
6420 * @param[in,out] set1 Set to use for the result.
6421 * @param[in] set2 Set acting as the second operand for @p op.
6422 * @param[in] op Comparison operator to process.
6423 * @param[in] options XPath options.
6424 * @return LY_ERR
6425 */
6426static LY_ERR
6427moveto_op_comp(struct lyxp_set *set1, struct lyxp_set *set2, const char *op, int options)
6428{
6429 /*
6430 * NODE SET + NODE SET = NODE SET + STRING /(1 NODE SET) 2 STRING
6431 * NODE SET + STRING = STRING + STRING /1 STRING (2 STRING)
6432 * NODE SET + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
6433 * NODE SET + BOOLEAN = BOOLEAN + BOOLEAN /1 BOOLEAN (2 BOOLEAN)
6434 * STRING + NODE SET = STRING + STRING /(1 STRING) 2 STRING
6435 * NUMBER + NODE SET = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
6436 * BOOLEAN + NODE SET = BOOLEAN + BOOLEAN /(1 BOOLEAN) 2 BOOLEAN
6437 *
6438 * '=' or '!='
6439 * BOOLEAN + BOOLEAN
6440 * BOOLEAN + STRING = BOOLEAN + BOOLEAN /(1 BOOLEAN) 2 BOOLEAN
6441 * BOOLEAN + NUMBER = BOOLEAN + BOOLEAN /(1 BOOLEAN) 2 BOOLEAN
6442 * STRING + BOOLEAN = BOOLEAN + BOOLEAN /1 BOOLEAN (2 BOOLEAN)
6443 * NUMBER + BOOLEAN = BOOLEAN + BOOLEAN /1 BOOLEAN (2 BOOLEAN)
6444 * NUMBER + NUMBER
6445 * NUMBER + STRING = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
6446 * STRING + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
6447 * STRING + STRING
6448 *
6449 * '<=', '<', '>=', '>'
6450 * NUMBER + NUMBER
6451 * BOOLEAN + BOOLEAN = NUMBER + NUMBER /1 NUMBER, 2 NUMBER
6452 * BOOLEAN + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
6453 * BOOLEAN + STRING = NUMBER + NUMBER /1 NUMBER, 2 NUMBER
6454 * NUMBER + STRING = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
6455 * STRING + STRING = NUMBER + NUMBER /1 NUMBER, 2 NUMBER
6456 * STRING + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
6457 * NUMBER + BOOLEAN = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
6458 * STRING + BOOLEAN = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
6459 */
6460 struct lyxp_set iter1, iter2;
6461 int result;
6462 int64_t i;
6463 LY_ERR rc;
6464
Michal Vasko004d3152020-06-11 19:59:22 +02006465 memset(&iter1, 0, sizeof iter1);
6466 memset(&iter2, 0, sizeof iter2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006467
6468 /* iterative evaluation with node-sets */
6469 if ((set1->type == LYXP_SET_NODE_SET) || (set2->type == LYXP_SET_NODE_SET)) {
6470 if (set1->type == LYXP_SET_NODE_SET) {
6471 for (i = 0; i < set1->used; ++i) {
Michal Vasko4c7763f2020-07-27 17:40:37 +02006472 /* cast set1 */
Michal Vasko03ff5a72019-09-11 13:49:33 +02006473 switch (set2->type) {
6474 case LYXP_SET_NUMBER:
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006475 rc = set_comp_cast(&iter1, set1, LYXP_SET_NUMBER, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006476 break;
6477 case LYXP_SET_BOOLEAN:
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006478 rc = set_comp_cast(&iter1, set1, LYXP_SET_BOOLEAN, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006479 break;
6480 default:
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006481 rc = set_comp_cast(&iter1, set1, LYXP_SET_STRING, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006482 break;
6483 }
6484 LY_CHECK_RET(rc);
6485
Michal Vasko4c7763f2020-07-27 17:40:37 +02006486 /* canonize set2 */
6487 LY_CHECK_ERR_RET(rc = set_comp_canonize(&iter2, set2, &set1->val.nodes[i]), lyxp_set_free_content(&iter1), rc);
6488
6489 /* compare recursively */
6490 rc = moveto_op_comp(&iter1, &iter2, op, options);
6491 lyxp_set_free_content(&iter2);
6492 LY_CHECK_ERR_RET(rc, lyxp_set_free_content(&iter1), rc);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006493
6494 /* lazy evaluation until true */
Michal Vasko004d3152020-06-11 19:59:22 +02006495 if (iter1.val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006496 set_fill_boolean(set1, 1);
6497 return LY_SUCCESS;
6498 }
6499 }
6500 } else {
6501 for (i = 0; i < set2->used; ++i) {
Michal Vasko4c7763f2020-07-27 17:40:37 +02006502 /* set set2 */
Michal Vasko03ff5a72019-09-11 13:49:33 +02006503 switch (set1->type) {
Michal Vasko4c7763f2020-07-27 17:40:37 +02006504 case LYXP_SET_NUMBER:
6505 rc = set_comp_cast(&iter2, set2, LYXP_SET_NUMBER, i);
6506 break;
6507 case LYXP_SET_BOOLEAN:
6508 rc = set_comp_cast(&iter2, set2, LYXP_SET_BOOLEAN, i);
6509 break;
6510 default:
6511 rc = set_comp_cast(&iter2, set2, LYXP_SET_STRING, i);
6512 break;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006513 }
6514 LY_CHECK_RET(rc);
6515
Michal Vasko4c7763f2020-07-27 17:40:37 +02006516 /* canonize set1 */
6517 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 +02006518
Michal Vasko4c7763f2020-07-27 17:40:37 +02006519 /* compare recursively */
Michal Vasko03ff5a72019-09-11 13:49:33 +02006520 rc = moveto_op_comp(&iter1, &iter2, op, options);
Michal Vaskod3678892020-05-21 10:06:58 +02006521 lyxp_set_free_content(&iter2);
Michal Vasko4c7763f2020-07-27 17:40:37 +02006522 LY_CHECK_ERR_RET(rc, lyxp_set_free_content(&iter1), rc);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006523
6524 /* lazy evaluation until true */
Michal Vasko004d3152020-06-11 19:59:22 +02006525 if (iter1.val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006526 set_fill_boolean(set1, 1);
6527 return LY_SUCCESS;
6528 }
6529 }
6530 }
6531
6532 /* false for all nodes */
6533 set_fill_boolean(set1, 0);
6534 return LY_SUCCESS;
6535 }
6536
6537 /* first convert properly */
6538 if ((op[0] == '=') || (op[0] == '!')) {
6539 if ((set1->type == LYXP_SET_BOOLEAN) || (set2->type == LYXP_SET_BOOLEAN)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006540 lyxp_set_cast(set1, LYXP_SET_BOOLEAN);
6541 lyxp_set_cast(set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006542 } else if ((set1->type == LYXP_SET_NUMBER) || (set2->type == LYXP_SET_NUMBER)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006543 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006544 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006545 rc = lyxp_set_cast(set2, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006546 LY_CHECK_RET(rc);
6547 } /* else we have 2 strings */
6548 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006549 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006550 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006551 rc = lyxp_set_cast(set2, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006552 LY_CHECK_RET(rc);
6553 }
6554
6555 assert(set1->type == set2->type);
6556
6557 /* compute result */
6558 if (op[0] == '=') {
6559 if (set1->type == LYXP_SET_BOOLEAN) {
Michal Vasko004d3152020-06-11 19:59:22 +02006560 result = (set1->val.bln == set2->val.bln);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006561 } else if (set1->type == LYXP_SET_NUMBER) {
6562 result = (set1->val.num == set2->val.num);
6563 } else {
6564 assert(set1->type == LYXP_SET_STRING);
Michal Vaskoac6c72f2019-11-14 16:09:34 +01006565 result = !strcmp(set1->val.str, set2->val.str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006566 }
6567 } else if (op[0] == '!') {
6568 if (set1->type == LYXP_SET_BOOLEAN) {
Michal Vasko004d3152020-06-11 19:59:22 +02006569 result = (set1->val.bln != set2->val.bln);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006570 } else if (set1->type == LYXP_SET_NUMBER) {
6571 result = (set1->val.num != set2->val.num);
6572 } else {
6573 assert(set1->type == LYXP_SET_STRING);
Michal Vaskoac6c72f2019-11-14 16:09:34 +01006574 result = !strcmp(set1->val.str, set2->val.str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006575 }
6576 } else {
6577 assert(set1->type == LYXP_SET_NUMBER);
6578 if (op[0] == '<') {
6579 if (op[1] == '=') {
6580 result = (set1->val.num <= set2->val.num);
6581 } else {
6582 result = (set1->val.num < set2->val.num);
6583 }
6584 } else {
6585 if (op[1] == '=') {
6586 result = (set1->val.num >= set2->val.num);
6587 } else {
6588 result = (set1->val.num > set2->val.num);
6589 }
6590 }
6591 }
6592
6593 /* assign result */
6594 if (result) {
6595 set_fill_boolean(set1, 1);
6596 } else {
6597 set_fill_boolean(set1, 0);
6598 }
6599
6600 return LY_SUCCESS;
6601}
6602
6603/**
6604 * @brief Move context @p set to the result of a basic operation. Handles '+', '-', unary '-', '*', 'div',
6605 * or 'mod'. Result is LYXP_SET_NUMBER. Indirectly context position aware.
6606 *
6607 * @param[in,out] set1 Set to use for the result.
6608 * @param[in] set2 Set acting as the second operand for @p op.
6609 * @param[in] op Operator to process.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006610 * @return LY_ERR
6611 */
6612static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006613moveto_op_math(struct lyxp_set *set1, struct lyxp_set *set2, const char *op)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006614{
6615 LY_ERR rc;
6616
6617 /* unary '-' */
6618 if (!set2 && (op[0] == '-')) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006619 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006620 LY_CHECK_RET(rc);
6621 set1->val.num *= -1;
6622 lyxp_set_free(set2);
6623 return LY_SUCCESS;
6624 }
6625
6626 assert(set1 && set2);
6627
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006628 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006629 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006630 rc = lyxp_set_cast(set2, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006631 LY_CHECK_RET(rc);
6632
6633 switch (op[0]) {
6634 /* '+' */
6635 case '+':
6636 set1->val.num += set2->val.num;
6637 break;
6638
6639 /* '-' */
6640 case '-':
6641 set1->val.num -= set2->val.num;
6642 break;
6643
6644 /* '*' */
6645 case '*':
6646 set1->val.num *= set2->val.num;
6647 break;
6648
6649 /* 'div' */
6650 case 'd':
6651 set1->val.num /= set2->val.num;
6652 break;
6653
6654 /* 'mod' */
6655 case 'm':
6656 set1->val.num = ((long long)set1->val.num) % ((long long)set2->val.num);
6657 break;
6658
6659 default:
6660 LOGINT_RET(set1->ctx);
6661 }
6662
6663 return LY_SUCCESS;
6664}
6665
6666/*
6667 * eval functions
6668 *
6669 * They execute a parsed XPath expression on some data subtree.
6670 */
6671
6672/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02006673 * @brief Evaluate Predicate. Logs directly on error.
6674 *
Michal Vaskod3678892020-05-21 10:06:58 +02006675 * [9] Predicate ::= '[' Expr ']'
Michal Vasko03ff5a72019-09-11 13:49:33 +02006676 *
6677 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02006678 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006679 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
6680 * @param[in] options XPath options.
6681 * @param[in] parent_pos_pred Whether parent predicate was a positional one.
6682 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6683 */
6684static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02006685eval_predicate(struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set, int options, int parent_pos_pred)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006686{
6687 LY_ERR rc;
Michal Vasko57eab132019-09-24 11:46:26 +02006688 uint16_t i, orig_exp;
Michal Vasko5c4e5892019-11-14 12:31:38 +01006689 uint32_t orig_pos, orig_size;
6690 int32_t pred_in_ctx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006691 struct lyxp_set set2;
6692 struct lyd_node *orig_parent;
6693
6694 /* '[' */
6695 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02006696 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
6697 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006698
6699 if (!set) {
6700only_parse:
Michal Vasko004d3152020-06-11 19:59:22 +02006701 rc = eval_expr_select(exp, tok_idx, 0, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006702 LY_CHECK_RET(rc);
6703 } else if (set->type == LYXP_SET_NODE_SET) {
6704 /* 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 +01006705 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006706
6707 /* empty set, nothing to evaluate */
6708 if (!set->used) {
6709 goto only_parse;
6710 }
6711
Michal Vasko004d3152020-06-11 19:59:22 +02006712 orig_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006713 orig_pos = 0;
6714 orig_size = set->used;
6715 orig_parent = NULL;
Michal Vasko39dbf352020-05-21 10:08:59 +02006716 for (i = 0; i < set->used; ++i) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006717 set_init(&set2, set);
6718 set_insert_node(&set2, set->val.nodes[i].node, set->val.nodes[i].pos, set->val.nodes[i].type, 0);
6719 /* remember the node context position for position() and context size for last(),
6720 * predicates should always be evaluated with respect to the child axis (since we do
6721 * not support explicit axes) so we assign positions based on their parents */
6722 if (parent_pos_pred && ((struct lyd_node *)set->val.nodes[i].node->parent != orig_parent)) {
6723 orig_parent = (struct lyd_node *)set->val.nodes[i].node->parent;
6724 orig_pos = 1;
6725 } else {
6726 ++orig_pos;
6727 }
6728
6729 set2.ctx_pos = orig_pos;
6730 set2.ctx_size = orig_size;
Michal Vasko004d3152020-06-11 19:59:22 +02006731 *tok_idx = orig_exp;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006732
Michal Vasko004d3152020-06-11 19:59:22 +02006733 rc = eval_expr_select(exp, tok_idx, 0, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006734 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02006735 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006736 return rc;
6737 }
6738
6739 /* number is a position */
6740 if (set2.type == LYXP_SET_NUMBER) {
6741 if ((long long)set2.val.num == orig_pos) {
6742 set2.val.num = 1;
6743 } else {
6744 set2.val.num = 0;
6745 }
6746 }
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006747 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006748
6749 /* predicate satisfied or not? */
Michal Vasko004d3152020-06-11 19:59:22 +02006750 if (!set2.val.bln) {
Michal Vasko2caefc12019-11-14 16:07:56 +01006751 set_remove_node_none(set, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006752 }
6753 }
Michal Vasko2caefc12019-11-14 16:07:56 +01006754 set_remove_nodes_none(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006755
6756 } else if (set->type == LYXP_SET_SCNODE_SET) {
6757 for (i = 0; i < set->used; ++i) {
6758 if (set->val.scnodes[i].in_ctx == 1) {
6759 /* there is a currently-valid node */
6760 break;
6761 }
6762 }
6763 /* empty set, nothing to evaluate */
6764 if (i == set->used) {
6765 goto only_parse;
6766 }
6767
Michal Vasko004d3152020-06-11 19:59:22 +02006768 orig_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006769
Michal Vasko03ff5a72019-09-11 13:49:33 +02006770 /* set special in_ctx to all the valid snodes */
6771 pred_in_ctx = set_scnode_new_in_ctx(set);
6772
6773 /* use the valid snodes one-by-one */
6774 for (i = 0; i < set->used; ++i) {
6775 if (set->val.scnodes[i].in_ctx != pred_in_ctx) {
6776 continue;
6777 }
6778 set->val.scnodes[i].in_ctx = 1;
6779
Michal Vasko004d3152020-06-11 19:59:22 +02006780 *tok_idx = orig_exp;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006781
Michal Vasko004d3152020-06-11 19:59:22 +02006782 rc = eval_expr_select(exp, tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006783 LY_CHECK_RET(rc);
6784
6785 set->val.scnodes[i].in_ctx = pred_in_ctx;
6786 }
6787
6788 /* restore the state as it was before the predicate */
6789 for (i = 0; i < set->used; ++i) {
6790 if (set->val.scnodes[i].in_ctx == 1) {
6791 set->val.scnodes[i].in_ctx = 0;
6792 } else if (set->val.scnodes[i].in_ctx == pred_in_ctx) {
6793 set->val.scnodes[i].in_ctx = 1;
6794 }
6795 }
6796
6797 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02006798 set2.type = LYXP_SET_NODE_SET;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006799 set_fill_set(&set2, set);
6800
Michal Vasko004d3152020-06-11 19:59:22 +02006801 rc = eval_expr_select(exp, tok_idx, 0, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006802 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02006803 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006804 return rc;
6805 }
6806
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006807 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko004d3152020-06-11 19:59:22 +02006808 if (!set2.val.bln) {
Michal Vaskod3678892020-05-21 10:06:58 +02006809 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006810 }
Michal Vaskod3678892020-05-21 10:06:58 +02006811 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006812 }
6813
6814 /* ']' */
Michal Vasko004d3152020-06-11 19:59:22 +02006815 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_BRACK2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006816 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02006817 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
6818 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006819
6820 return LY_SUCCESS;
6821}
6822
6823/**
Michal Vaskod3678892020-05-21 10:06:58 +02006824 * @brief Evaluate Literal. Logs directly on error.
6825 *
6826 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02006827 * @param[in] tok_idx Position in the expression @p exp.
Michal Vaskod3678892020-05-21 10:06:58 +02006828 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
6829 */
6830static void
Michal Vasko004d3152020-06-11 19:59:22 +02006831eval_literal(struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set)
Michal Vaskod3678892020-05-21 10:06:58 +02006832{
6833 if (set) {
Michal Vasko004d3152020-06-11 19:59:22 +02006834 if (exp->tok_len[*tok_idx] == 2) {
Michal Vaskod3678892020-05-21 10:06:58 +02006835 set_fill_string(set, "", 0);
6836 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02006837 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 +02006838 }
6839 }
6840 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02006841 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
6842 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02006843}
6844
6845/**
Michal Vasko004d3152020-06-11 19:59:22 +02006846 * @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 +02006847 *
Michal Vasko004d3152020-06-11 19:59:22 +02006848 * @param[in] exp Full parsed XPath expression.
6849 * @param[in,out] tok_idx Index in @p exp at the beginning of the predicate, is updated on success.
6850 * @param[in] scnode Found schema node as context for the predicate.
6851 * @param[in] format Format of any prefixes in key names/values.
6852 * @param[out] predicates Parsed predicates.
6853 * @param[out] pred_type Type of @p predicates.
6854 * @return LY_SUCCESS on success,
6855 * @return LY_ERR on any error.
Michal Vaskod3678892020-05-21 10:06:58 +02006856 */
6857static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02006858eval_name_test_try_compile_predicates(struct lyxp_expr *exp, uint16_t *tok_idx, const struct lysc_node *scnode,
Michal Vaskoc8a230d2020-08-14 12:17:10 +02006859 LY_PREFIX_FORMAT format, struct ly_path_predicate **predicates,
6860 enum ly_path_pred_type *pred_type)
Michal Vaskod3678892020-05-21 10:06:58 +02006861{
Michal Vasko004d3152020-06-11 19:59:22 +02006862 LY_ERR ret = LY_SUCCESS;
6863 uint16_t key_count, e_idx, pred_idx = 0;
Michal Vaskod3678892020-05-21 10:06:58 +02006864 const struct lysc_node *key;
Michal Vasko004d3152020-06-11 19:59:22 +02006865 size_t pred_len;
6866 int prev_lo;
6867 struct lyxp_expr *exp2 = NULL;
Michal Vaskod3678892020-05-21 10:06:58 +02006868
Michal Vasko004d3152020-06-11 19:59:22 +02006869 assert(scnode->nodetype & (LYS_LIST | LYS_LEAFLIST));
Michal Vaskod3678892020-05-21 10:06:58 +02006870
Michal Vasko004d3152020-06-11 19:59:22 +02006871 if (scnode->nodetype == LYS_LIST) {
6872 /* get key count */
6873 if (scnode->flags & LYS_KEYLESS) {
6874 return LY_EINVAL;
6875 }
6876 for (key_count = 0, key = lysc_node_children(scnode, 0); key && (key->flags & LYS_KEY); key = key->next, ++key_count);
6877 assert(key_count);
Michal Vaskod3678892020-05-21 10:06:58 +02006878
Michal Vasko004d3152020-06-11 19:59:22 +02006879 /* learn where the predicates end */
6880 e_idx = *tok_idx;
6881 while (key_count) {
6882 /* '[' */
6883 if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK1)) {
6884 return LY_EINVAL;
6885 }
6886 ++e_idx;
6887
6888 /* ']' */
6889 while (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK2)) {
6890 ++e_idx;
6891 }
6892 ++e_idx;
6893
6894 /* another presumably key predicate parsed */
6895 --key_count;
6896 }
Michal Vasko004d3152020-06-11 19:59:22 +02006897 } else {
6898 /* learn just where this single predicate ends */
6899 e_idx = *tok_idx;
6900
Michal Vaskod3678892020-05-21 10:06:58 +02006901 /* '[' */
Michal Vasko004d3152020-06-11 19:59:22 +02006902 if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK1)) {
6903 return LY_EINVAL;
6904 }
6905 ++e_idx;
Michal Vaskod3678892020-05-21 10:06:58 +02006906
6907 /* ']' */
Michal Vasko004d3152020-06-11 19:59:22 +02006908 while (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK2)) {
6909 ++e_idx;
6910 }
6911 ++e_idx;
Michal Vaskod3678892020-05-21 10:06:58 +02006912 }
6913
Michal Vasko004d3152020-06-11 19:59:22 +02006914 /* get the joined length of all the keys predicates/of the single leaf-list predicate */
6915 pred_len = (exp->tok_pos[e_idx - 1] + exp->tok_len[e_idx - 1]) - exp->tok_pos[*tok_idx];
6916
6917 /* turn logging off */
6918 prev_lo = ly_log_options(0);
6919
6920 /* parse the predicate(s) */
Michal Vasko6b26e742020-07-17 15:02:10 +02006921 LY_CHECK_GOTO(ret = ly_path_parse_predicate(scnode->module->ctx, scnode, exp->expr + exp->tok_pos[*tok_idx], pred_len,
Michal Vasko004d3152020-06-11 19:59:22 +02006922 LY_PATH_PREFIX_OPTIONAL, LY_PATH_PRED_SIMPLE, &exp2), cleanup);
6923
6924 /* compile */
Michal Vaskoc8a230d2020-08-14 12:17:10 +02006925 ret = ly_path_compile_predicate(scnode->module->ctx, scnode, scnode->module, scnode, exp2, &pred_idx,
6926 format, scnode->module, predicates, pred_type);
Michal Vasko004d3152020-06-11 19:59:22 +02006927 LY_CHECK_GOTO(ret, cleanup);
6928
6929 /* success, the predicate must include all the needed information for hash-based search */
6930 *tok_idx = e_idx;
6931
6932cleanup:
6933 ly_log_options(prev_lo);
6934 lyxp_expr_free(scnode->module->ctx, exp2);
6935 return ret;
Michal Vaskod3678892020-05-21 10:06:58 +02006936}
6937
6938/**
6939 * @brief Evaluate NameTest and any following Predicates. Logs directly on error.
6940 *
6941 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
6942 * [6] NodeTest ::= NameTest | NodeType '(' ')'
6943 * [7] NameTest ::= '*' | NCName ':' '*' | QName
6944 *
6945 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02006946 * @param[in] tok_idx Position in the expression @p exp.
Michal Vaskod3678892020-05-21 10:06:58 +02006947 * @param[in] attr_axis Whether to search attributes or standard nodes.
6948 * @param[in] all_desc Whether to search all the descendants or children only.
6949 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
6950 * @param[in] options XPath options.
6951 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6952 */
6953static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02006954eval_name_test_with_predicate(struct lyxp_expr *exp, uint16_t *tok_idx, int attr_axis, int all_desc, struct lyxp_set *set,
Michal Vaskod3678892020-05-21 10:06:58 +02006955 int options)
6956{
6957 int i;
6958 char *path;
Michal Vasko004d3152020-06-11 19:59:22 +02006959 const char *ncname, *ncname_dict = NULL;
6960 uint16_t ncname_len;
Michal Vaskod3678892020-05-21 10:06:58 +02006961 const struct lys_module *moveto_mod;
6962 const struct lysc_node *scnode = NULL, *tmp;
Michal Vasko004d3152020-06-11 19:59:22 +02006963 struct ly_path_predicate *predicates = NULL;
6964 enum ly_path_pred_type pred_type = 0;
Michal Vaskod3678892020-05-21 10:06:58 +02006965 LY_ERR rc = LY_SUCCESS;
6966
6967 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02006968 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
6969 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02006970
6971 if (!set) {
6972 goto moveto;
6973 }
6974
Michal Vasko004d3152020-06-11 19:59:22 +02006975 ncname = &exp->expr[exp->tok_pos[*tok_idx - 1]];
6976 ncname_len = exp->tok_len[*tok_idx - 1];
Michal Vaskod3678892020-05-21 10:06:58 +02006977
6978 /* parse (and skip) module name */
6979 rc = moveto_resolve_model(&ncname, &ncname_len, set, &moveto_mod);
6980 LY_CHECK_GOTO(rc, cleanup);
6981
6982 if (moveto_mod && !attr_axis && !all_desc && (set->type == LYXP_SET_NODE_SET)) {
6983 /* find the matching schema node in some parent in the context */
6984 for (i = 0; i < (signed)set->used; ++i) {
6985 if (set->val.nodes[i].type == set->root_type) {
6986 tmp = lys_find_child(NULL, moveto_mod, ncname, ncname_len, 0, 0);
6987 } else if ((set->val.nodes[i].type == LYXP_NODE_ELEM)
6988 && (!scnode || (lysc_data_parent(scnode) != set->val.nodes[i].node->schema))) {
6989 /* do not repeat the same search */
6990 tmp = lys_find_child(set->val.nodes[i].node->schema, moveto_mod, ncname, ncname_len, 0, 0);
Radek Krejcib1247842020-07-02 16:22:38 +02006991 } else {
6992 tmp = NULL;
Michal Vaskod3678892020-05-21 10:06:58 +02006993 }
6994
6995 /* additional context check */
6996 if (tmp && (set->root_type == LYXP_NODE_ROOT_CONFIG) && (tmp->flags & LYS_CONFIG_R)) {
6997 tmp = NULL;
6998 }
6999
7000 if (tmp) {
7001 if (scnode) {
7002 /* we found a schema node with the same name but at different level, give up, too complicated */
7003 scnode = NULL;
7004 break;
7005 } else {
7006 /* remember the found schema node and continue to make sure it can be used */
7007 scnode = tmp;
7008 }
Michal Vaskod3678892020-05-21 10:06:58 +02007009 }
7010 }
7011
Michal Vasko004d3152020-06-11 19:59:22 +02007012 if (scnode && (scnode->nodetype & (LYS_LIST | LYS_LEAFLIST))) {
7013 /* try to create the predicates */
7014 if (eval_name_test_try_compile_predicates(exp, tok_idx, scnode, set->format, &predicates, &pred_type)) {
7015 /* hashes cannot be used */
Michal Vaskod3678892020-05-21 10:06:58 +02007016 scnode = NULL;
7017 }
7018 }
7019 }
7020
Michal Vasko004d3152020-06-11 19:59:22 +02007021 if (!scnode && moveto_mod) {
7022 /* we are not able to match based on a schema node and not all the modules match,
7023 * use dictionary for efficient comparison */
7024 ncname_dict = lydict_insert(set->ctx, ncname, ncname_len);
Michal Vaskod3678892020-05-21 10:06:58 +02007025 }
7026
7027moveto:
7028 /* move to the attribute(s), data node(s), or schema node(s) */
7029 if (attr_axis) {
7030 if (set && (options & LYXP_SCNODE_ALL)) {
7031 set_scnode_clear_ctx(set);
7032 } else {
7033 if (all_desc) {
Michal Vasko004d3152020-06-11 19:59:22 +02007034 rc = moveto_attr_alldesc(set, moveto_mod, ncname_dict);
Michal Vaskod3678892020-05-21 10:06:58 +02007035 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007036 rc = moveto_attr(set, moveto_mod, ncname_dict);
Michal Vaskod3678892020-05-21 10:06:58 +02007037 }
7038 LY_CHECK_GOTO(rc, cleanup);
7039 }
7040 } else {
7041 if (set && (options & LYXP_SCNODE_ALL)) {
7042 if (all_desc) {
Michal Vasko004d3152020-06-11 19:59:22 +02007043 rc = moveto_scnode_alldesc(set, moveto_mod, ncname_dict, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007044 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007045 rc = moveto_scnode(set, moveto_mod, ncname_dict, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007046 }
7047 LY_CHECK_GOTO(rc, cleanup);
7048
7049 for (i = set->used - 1; i > -1; --i) {
7050 if (set->val.scnodes[i].in_ctx > 0) {
7051 break;
7052 }
7053 }
7054 if (i == -1) {
7055 path = lysc_path(set->ctx_scnode, LYSC_PATH_LOG, NULL, 0);
7056 LOGWRN(set->ctx, "Schema node \"%.*s\" not found (%.*s) with context node \"%s\".",
Michal Vasko6b26e742020-07-17 15:02:10 +02007057 ncname_len, ncname, ncname - exp->expr, exp->expr, path);
Michal Vaskod3678892020-05-21 10:06:58 +02007058 free(path);
7059 }
7060 } else {
7061 if (all_desc) {
Michal Vasko004d3152020-06-11 19:59:22 +02007062 rc = moveto_node_alldesc(set, moveto_mod, ncname_dict);
Michal Vaskod3678892020-05-21 10:06:58 +02007063 } else {
7064 if (scnode) {
7065 /* we can find the nodes using hashes */
Michal Vasko004d3152020-06-11 19:59:22 +02007066 rc = moveto_node_hash(set, scnode, predicates);
Michal Vaskod3678892020-05-21 10:06:58 +02007067 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007068 rc = moveto_node(set, moveto_mod, ncname_dict);
Michal Vaskod3678892020-05-21 10:06:58 +02007069 }
7070 }
7071 LY_CHECK_GOTO(rc, cleanup);
7072 }
7073 }
7074
7075 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007076 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
7077 rc = eval_predicate(exp, tok_idx, set, options, 1);
Michal Vaskod3678892020-05-21 10:06:58 +02007078 LY_CHECK_RET(rc);
7079 }
7080
7081cleanup:
Michal Vaskodb51a8d2020-05-27 15:22:29 +02007082 if (set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007083 lydict_remove(set->ctx, ncname_dict);
7084 ly_path_predicates_free(set->ctx, pred_type, scnode, predicates);
Michal Vaskodb51a8d2020-05-27 15:22:29 +02007085 }
Michal Vaskod3678892020-05-21 10:06:58 +02007086 return rc;
7087}
7088
7089/**
7090 * @brief Evaluate NodeType and any following Predicates. Logs directly on error.
7091 *
7092 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
7093 * [6] NodeTest ::= NameTest | NodeType '(' ')'
7094 * [8] NodeType ::= 'text' | 'node'
7095 *
7096 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007097 * @param[in] tok_idx Position in the expression @p exp.
Michal Vaskod3678892020-05-21 10:06:58 +02007098 * @param[in] attr_axis Whether to search attributes or standard nodes.
7099 * @param[in] all_desc Whether to search all the descendants or children only.
7100 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7101 * @param[in] options XPath options.
7102 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7103 */
7104static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007105eval_node_type_with_predicate(struct lyxp_expr *exp, uint16_t *tok_idx, int attr_axis, int all_desc,
Michal Vaskod3678892020-05-21 10:06:58 +02007106 struct lyxp_set *set, int options)
7107{
7108 LY_ERR rc;
7109
7110 /* TODO */
7111 (void)attr_axis;
7112 (void)all_desc;
7113
7114 if (set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007115 assert(exp->tok_len[*tok_idx] == 4);
Michal Vaskod3678892020-05-21 10:06:58 +02007116 if (set->type == LYXP_SET_SCNODE_SET) {
7117 set_scnode_clear_ctx(set);
7118 /* just for the debug message below */
7119 set = NULL;
7120 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007121 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "node", 4)) {
Michal Vaskod3678892020-05-21 10:06:58 +02007122 rc = xpath_node(NULL, 0, set, options);
7123 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007124 assert(!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "text", 4));
Michal Vaskod3678892020-05-21 10:06:58 +02007125 rc = xpath_text(NULL, 0, set, options);
7126 }
7127 LY_CHECK_RET(rc);
7128 }
7129 }
7130 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007131 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7132 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007133
7134 /* '(' */
Michal Vasko004d3152020-06-11 19:59:22 +02007135 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR1);
Michal Vaskod3678892020-05-21 10:06:58 +02007136 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007137 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7138 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007139
7140 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02007141 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR2);
Michal Vaskod3678892020-05-21 10:06:58 +02007142 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007143 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7144 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007145
7146 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007147 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
7148 rc = eval_predicate(exp, tok_idx, set, options, 1);
Michal Vaskod3678892020-05-21 10:06:58 +02007149 LY_CHECK_RET(rc);
7150 }
7151
7152 return LY_SUCCESS;
7153}
7154
7155/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02007156 * @brief Evaluate RelativeLocationPath. Logs directly on error.
7157 *
7158 * [4] RelativeLocationPath ::= Step | RelativeLocationPath '/' Step | RelativeLocationPath '//' Step
7159 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
Michal Vaskod3678892020-05-21 10:06:58 +02007160 * [6] NodeTest ::= NameTest | NodeType '(' ')'
Michal Vasko03ff5a72019-09-11 13:49:33 +02007161 *
7162 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007163 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007164 * @param[in] all_desc Whether to search all the descendants or children only.
7165 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7166 * @param[in] options XPath options.
7167 * @return LY_ERR (YL_EINCOMPLETE on unresolved when)
7168 */
7169static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007170eval_relative_location_path(struct lyxp_expr *exp, uint16_t *tok_idx, int all_desc, struct lyxp_set *set, int options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007171{
7172 int attr_axis;
7173 LY_ERR rc;
7174
7175 goto step;
7176 do {
7177 /* evaluate '/' or '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02007178 if (exp->tok_len[*tok_idx] == 1) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007179 all_desc = 0;
7180 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007181 assert(exp->tok_len[*tok_idx] == 2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007182 all_desc = 1;
7183 }
7184 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007185 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7186 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007187
7188step:
Michal Vaskod3678892020-05-21 10:06:58 +02007189 /* evaluate abbreviated axis '@'? if any */
Michal Vasko004d3152020-06-11 19:59:22 +02007190 if (exp->tokens[*tok_idx] == LYXP_TOKEN_AT) {
Michal Vaskod3678892020-05-21 10:06:58 +02007191 attr_axis = 1;
7192
7193 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007194 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7195 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007196 } else {
7197 attr_axis = 0;
7198 }
7199
Michal Vasko03ff5a72019-09-11 13:49:33 +02007200 /* Step */
Michal Vasko004d3152020-06-11 19:59:22 +02007201 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007202 case LYXP_TOKEN_DOT:
7203 /* evaluate '.' */
7204 if (set && (options & LYXP_SCNODE_ALL)) {
7205 rc = moveto_scnode_self(set, all_desc, options);
7206 } else {
7207 rc = moveto_self(set, all_desc, options);
7208 }
7209 LY_CHECK_RET(rc);
7210 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007211 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7212 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007213 break;
7214
7215 case LYXP_TOKEN_DDOT:
7216 /* evaluate '..' */
7217 if (set && (options & LYXP_SCNODE_ALL)) {
7218 rc = moveto_scnode_parent(set, all_desc, options);
7219 } else {
7220 rc = moveto_parent(set, all_desc, options);
7221 }
7222 LY_CHECK_RET(rc);
7223 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007224 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7225 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007226 break;
7227
Michal Vasko03ff5a72019-09-11 13:49:33 +02007228 case LYXP_TOKEN_NAMETEST:
Michal Vaskod3678892020-05-21 10:06:58 +02007229 /* evaluate NameTest Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007230 rc = eval_name_test_with_predicate(exp, tok_idx, attr_axis, all_desc, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007231 LY_CHECK_RET(rc);
Michal Vaskod3678892020-05-21 10:06:58 +02007232 break;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007233
Michal Vaskod3678892020-05-21 10:06:58 +02007234 case LYXP_TOKEN_NODETYPE:
7235 /* evaluate NodeType Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007236 rc = eval_node_type_with_predicate(exp, tok_idx, attr_axis, all_desc, set, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007237 LY_CHECK_RET(rc);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007238 break;
7239
7240 default:
Michal Vasko02a77382019-09-12 11:47:35 +02007241 LOGINT_RET(set ? set->ctx : NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007242 }
Michal Vasko004d3152020-06-11 19:59:22 +02007243 } while (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007244
7245 return LY_SUCCESS;
7246}
7247
7248/**
7249 * @brief Evaluate AbsoluteLocationPath. Logs directly on error.
7250 *
7251 * [3] AbsoluteLocationPath ::= '/' RelativeLocationPath? | '//' RelativeLocationPath
7252 *
7253 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007254 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007255 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7256 * @param[in] options XPath options.
7257 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7258 */
7259static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007260eval_absolute_location_path(struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set, int options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007261{
7262 int all_desc;
7263 LY_ERR rc;
7264
7265 if (set) {
7266 /* no matter what tokens follow, we need to be at the root */
7267 moveto_root(set, options);
7268 }
7269
7270 /* '/' RelativeLocationPath? */
Michal Vasko004d3152020-06-11 19:59:22 +02007271 if (exp->tok_len[*tok_idx] == 1) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007272 /* evaluate '/' - deferred */
7273 all_desc = 0;
7274 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007275 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7276 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007277
Michal Vasko004d3152020-06-11 19:59:22 +02007278 if (lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_NONE)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007279 return LY_SUCCESS;
7280 }
Michal Vasko004d3152020-06-11 19:59:22 +02007281 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007282 case LYXP_TOKEN_DOT:
7283 case LYXP_TOKEN_DDOT:
7284 case LYXP_TOKEN_AT:
7285 case LYXP_TOKEN_NAMETEST:
7286 case LYXP_TOKEN_NODETYPE:
Michal Vasko004d3152020-06-11 19:59:22 +02007287 rc = eval_relative_location_path(exp, tok_idx, all_desc, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007288 LY_CHECK_RET(rc);
7289 break;
7290 default:
7291 break;
7292 }
7293
7294 /* '//' RelativeLocationPath */
7295 } else {
7296 /* evaluate '//' - deferred so as not to waste memory by remembering all the nodes */
7297 all_desc = 1;
7298 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007299 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7300 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007301
Michal Vasko004d3152020-06-11 19:59:22 +02007302 rc = eval_relative_location_path(exp, tok_idx, all_desc, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007303 LY_CHECK_RET(rc);
7304 }
7305
7306 return LY_SUCCESS;
7307}
7308
7309/**
7310 * @brief Evaluate FunctionCall. Logs directly on error.
7311 *
Michal Vaskod3678892020-05-21 10:06:58 +02007312 * [11] FunctionCall ::= FunctionName '(' ( Expr ( ',' Expr )* )? ')'
Michal Vasko03ff5a72019-09-11 13:49:33 +02007313 *
7314 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007315 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007316 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7317 * @param[in] options XPath options.
7318 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7319 */
7320static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007321eval_function_call(struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set, int options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007322{
7323 LY_ERR rc;
7324 LY_ERR (*xpath_func)(struct lyxp_set **, uint16_t, struct lyxp_set *, int) = NULL;
Michal Vasko0cbf54f2019-12-16 10:01:06 +01007325 uint16_t arg_count = 0, i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007326 struct lyxp_set **args = NULL, **args_aux;
7327
7328 if (set) {
7329 /* FunctionName */
Michal Vasko004d3152020-06-11 19:59:22 +02007330 switch (exp->tok_len[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007331 case 3:
Michal Vasko004d3152020-06-11 19:59:22 +02007332 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "not", 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007333 xpath_func = &xpath_not;
Michal Vasko004d3152020-06-11 19:59:22 +02007334 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "sum", 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007335 xpath_func = &xpath_sum;
7336 }
7337 break;
7338 case 4:
Michal Vasko004d3152020-06-11 19:59:22 +02007339 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "lang", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007340 xpath_func = &xpath_lang;
Michal Vasko004d3152020-06-11 19:59:22 +02007341 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "last", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007342 xpath_func = &xpath_last;
Michal Vasko004d3152020-06-11 19:59:22 +02007343 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "name", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007344 xpath_func = &xpath_name;
Michal Vasko004d3152020-06-11 19:59:22 +02007345 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "true", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007346 xpath_func = &xpath_true;
7347 }
7348 break;
7349 case 5:
Michal Vasko004d3152020-06-11 19:59:22 +02007350 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "count", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007351 xpath_func = &xpath_count;
Michal Vasko004d3152020-06-11 19:59:22 +02007352 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "false", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007353 xpath_func = &xpath_false;
Michal Vasko004d3152020-06-11 19:59:22 +02007354 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "floor", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007355 xpath_func = &xpath_floor;
Michal Vasko004d3152020-06-11 19:59:22 +02007356 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "round", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007357 xpath_func = &xpath_round;
Michal Vasko004d3152020-06-11 19:59:22 +02007358 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "deref", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007359 xpath_func = &xpath_deref;
7360 }
7361 break;
7362 case 6:
Michal Vasko004d3152020-06-11 19:59:22 +02007363 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "concat", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007364 xpath_func = &xpath_concat;
Michal Vasko004d3152020-06-11 19:59:22 +02007365 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "number", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007366 xpath_func = &xpath_number;
Michal Vasko004d3152020-06-11 19:59:22 +02007367 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007368 xpath_func = &xpath_string;
7369 }
7370 break;
7371 case 7:
Michal Vasko004d3152020-06-11 19:59:22 +02007372 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "boolean", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007373 xpath_func = &xpath_boolean;
Michal Vasko004d3152020-06-11 19:59:22 +02007374 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "ceiling", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007375 xpath_func = &xpath_ceiling;
Michal Vasko004d3152020-06-11 19:59:22 +02007376 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "current", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007377 xpath_func = &xpath_current;
7378 }
7379 break;
7380 case 8:
Michal Vasko004d3152020-06-11 19:59:22 +02007381 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "contains", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007382 xpath_func = &xpath_contains;
Michal Vasko004d3152020-06-11 19:59:22 +02007383 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "position", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007384 xpath_func = &xpath_position;
Michal Vasko004d3152020-06-11 19:59:22 +02007385 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "re-match", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007386 xpath_func = &xpath_re_match;
7387 }
7388 break;
7389 case 9:
Michal Vasko004d3152020-06-11 19:59:22 +02007390 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring", 9)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007391 xpath_func = &xpath_substring;
Michal Vasko004d3152020-06-11 19:59:22 +02007392 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "translate", 9)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007393 xpath_func = &xpath_translate;
7394 }
7395 break;
7396 case 10:
Michal Vasko004d3152020-06-11 19:59:22 +02007397 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "local-name", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007398 xpath_func = &xpath_local_name;
Michal Vasko004d3152020-06-11 19:59:22 +02007399 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "enum-value", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007400 xpath_func = &xpath_enum_value;
Michal Vasko004d3152020-06-11 19:59:22 +02007401 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "bit-is-set", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007402 xpath_func = &xpath_bit_is_set;
7403 }
7404 break;
7405 case 11:
Michal Vasko004d3152020-06-11 19:59:22 +02007406 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "starts-with", 11)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007407 xpath_func = &xpath_starts_with;
7408 }
7409 break;
7410 case 12:
Michal Vasko004d3152020-06-11 19:59:22 +02007411 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from", 12)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007412 xpath_func = &xpath_derived_from;
7413 }
7414 break;
7415 case 13:
Michal Vasko004d3152020-06-11 19:59:22 +02007416 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "namespace-uri", 13)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007417 xpath_func = &xpath_namespace_uri;
Michal Vasko004d3152020-06-11 19:59:22 +02007418 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string-length", 13)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007419 xpath_func = &xpath_string_length;
7420 }
7421 break;
7422 case 15:
Michal Vasko004d3152020-06-11 19:59:22 +02007423 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "normalize-space", 15)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007424 xpath_func = &xpath_normalize_space;
Michal Vasko004d3152020-06-11 19:59:22 +02007425 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-after", 15)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007426 xpath_func = &xpath_substring_after;
7427 }
7428 break;
7429 case 16:
Michal Vasko004d3152020-06-11 19:59:22 +02007430 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-before", 16)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007431 xpath_func = &xpath_substring_before;
7432 }
7433 break;
7434 case 20:
Michal Vasko004d3152020-06-11 19:59:22 +02007435 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from-or-self", 20)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007436 xpath_func = &xpath_derived_from_or_self;
7437 }
7438 break;
7439 }
7440
7441 if (!xpath_func) {
Michal Vasko004d3152020-06-11 19:59:22 +02007442 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INFUNC, exp->tok_len[*tok_idx], &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007443 return LY_EVALID;
7444 }
7445 }
7446
7447 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007448 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7449 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007450
7451 /* '(' */
Michal Vasko004d3152020-06-11 19:59:22 +02007452 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007453 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007454 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7455 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007456
7457 /* ( Expr ( ',' Expr )* )? */
Michal Vasko004d3152020-06-11 19:59:22 +02007458 if (exp->tokens[*tok_idx] != LYXP_TOKEN_PAR2) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007459 if (set) {
7460 args = malloc(sizeof *args);
7461 LY_CHECK_ERR_GOTO(!args, LOGMEM(set->ctx); rc = LY_EMEM, cleanup);
7462 arg_count = 1;
7463 args[0] = set_copy(set);
7464 if (!args[0]) {
7465 rc = LY_EMEM;
7466 goto cleanup;
7467 }
7468
Michal Vasko004d3152020-06-11 19:59:22 +02007469 rc = eval_expr_select(exp, tok_idx, 0, args[0], options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007470 LY_CHECK_GOTO(rc, cleanup);
7471 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007472 rc = eval_expr_select(exp, tok_idx, 0, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007473 LY_CHECK_GOTO(rc, cleanup);
7474 }
7475 }
Michal Vasko004d3152020-06-11 19:59:22 +02007476 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_COMMA)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007477 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007478 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7479 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007480
7481 if (set) {
7482 ++arg_count;
7483 args_aux = realloc(args, arg_count * sizeof *args);
7484 LY_CHECK_ERR_GOTO(!args_aux, arg_count--; LOGMEM(set->ctx); rc = LY_EMEM, cleanup);
7485 args = args_aux;
7486 args[arg_count - 1] = set_copy(set);
7487 if (!args[arg_count - 1]) {
7488 rc = LY_EMEM;
7489 goto cleanup;
7490 }
7491
Michal Vasko004d3152020-06-11 19:59:22 +02007492 rc = eval_expr_select(exp, tok_idx, 0, args[arg_count - 1], options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007493 LY_CHECK_GOTO(rc, cleanup);
7494 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007495 rc = eval_expr_select(exp, tok_idx, 0, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007496 LY_CHECK_GOTO(rc, cleanup);
7497 }
7498 }
7499
7500 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02007501 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007502 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007503 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7504 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007505
7506 if (set) {
7507 /* evaluate function */
7508 rc = xpath_func(args, arg_count, set, options);
7509
7510 if (options & LYXP_SCNODE_ALL) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007511 /* merge all nodes from arg evaluations */
7512 for (i = 0; i < arg_count; ++i) {
7513 set_scnode_clear_ctx(args[i]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01007514 lyxp_set_scnode_merge(set, args[i]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007515 }
7516 }
7517 } else {
7518 rc = LY_SUCCESS;
7519 }
7520
7521cleanup:
7522 for (i = 0; i < arg_count; ++i) {
7523 lyxp_set_free(args[i]);
7524 }
7525 free(args);
7526
7527 return rc;
7528}
7529
7530/**
7531 * @brief Evaluate Number. Logs directly on error.
7532 *
7533 * @param[in] ctx Context for errors.
7534 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007535 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007536 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7537 * @return LY_ERR
7538 */
7539static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007540eval_number(struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007541{
7542 long double num;
7543 char *endptr;
7544
7545 if (set) {
7546 errno = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02007547 num = strtold(&exp->expr[exp->tok_pos[*tok_idx]], &endptr);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007548 if (errno) {
Michal Vasko004d3152020-06-11 19:59:22 +02007549 LOGVAL(ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INTOK, "Unknown", &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007550 LOGVAL(ctx, LY_VLOG_LYD, set->ctx_node, LYVE_XPATH, "Failed to convert \"%.*s\" into a long double (%s).",
Michal Vasko004d3152020-06-11 19:59:22 +02007551 exp->tok_len[*tok_idx], &exp->expr[exp->tok_pos[*tok_idx]], strerror(errno));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007552 return LY_EVALID;
Michal Vasko004d3152020-06-11 19:59:22 +02007553 } else if (endptr - &exp->expr[exp->tok_pos[*tok_idx]] != exp->tok_len[*tok_idx]) {
7554 LOGVAL(ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INTOK, "Unknown", &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007555 LOGVAL(ctx, LY_VLOG_LYD, set->ctx_node, LYVE_XPATH, "Failed to convert \"%.*s\" into a long double.",
Michal Vasko004d3152020-06-11 19:59:22 +02007556 exp->tok_len[*tok_idx], &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007557 return LY_EVALID;
7558 }
7559
7560 set_fill_number(set, num);
7561 }
7562
7563 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007564 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7565 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007566 return LY_SUCCESS;
7567}
7568
7569/**
7570 * @brief Evaluate PathExpr. Logs directly on error.
7571 *
Michal Vaskod3678892020-05-21 10:06:58 +02007572 * [12] PathExpr ::= LocationPath | PrimaryExpr Predicate*
Michal Vasko03ff5a72019-09-11 13:49:33 +02007573 * | PrimaryExpr Predicate* '/' RelativeLocationPath
7574 * | PrimaryExpr Predicate* '//' RelativeLocationPath
7575 * [2] LocationPath ::= RelativeLocationPath | AbsoluteLocationPath
Michal Vaskod3678892020-05-21 10:06:58 +02007576 * [10] PrimaryExpr ::= '(' Expr ')' | Literal | Number | FunctionCall
Michal Vasko03ff5a72019-09-11 13:49:33 +02007577 *
7578 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007579 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007580 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7581 * @param[in] options XPath options.
7582 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7583 */
7584static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007585eval_path_expr(struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set, int options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007586{
7587 int all_desc, parent_pos_pred;
7588 LY_ERR rc;
7589
Michal Vasko004d3152020-06-11 19:59:22 +02007590 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007591 case LYXP_TOKEN_PAR1:
7592 /* '(' Expr ')' */
7593
7594 /* '(' */
7595 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007596 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7597 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007598
7599 /* Expr */
Michal Vasko004d3152020-06-11 19:59:22 +02007600 rc = eval_expr_select(exp, tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007601 LY_CHECK_RET(rc);
7602
7603 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02007604 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007605 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007606 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7607 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007608
7609 parent_pos_pred = 0;
7610 goto predicate;
7611
7612 case LYXP_TOKEN_DOT:
7613 case LYXP_TOKEN_DDOT:
7614 case LYXP_TOKEN_AT:
7615 case LYXP_TOKEN_NAMETEST:
7616 case LYXP_TOKEN_NODETYPE:
7617 /* RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02007618 rc = eval_relative_location_path(exp, tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007619 LY_CHECK_RET(rc);
7620 break;
7621
7622 case LYXP_TOKEN_FUNCNAME:
7623 /* FunctionCall */
7624 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007625 rc = eval_function_call(exp, tok_idx, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007626 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007627 rc = eval_function_call(exp, tok_idx, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007628 }
7629 LY_CHECK_RET(rc);
7630
7631 parent_pos_pred = 1;
7632 goto predicate;
7633
Michal Vasko3e48bf32020-06-01 08:39:07 +02007634 case LYXP_TOKEN_OPER_PATH:
7635 case LYXP_TOKEN_OPER_RPATH:
Michal Vasko03ff5a72019-09-11 13:49:33 +02007636 /* AbsoluteLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02007637 rc = eval_absolute_location_path(exp, tok_idx, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007638 LY_CHECK_RET(rc);
7639 break;
7640
7641 case LYXP_TOKEN_LITERAL:
7642 /* Literal */
7643 if (!set || (options & LYXP_SCNODE_ALL)) {
7644 if (set) {
7645 set_scnode_clear_ctx(set);
7646 }
Michal Vasko004d3152020-06-11 19:59:22 +02007647 eval_literal(exp, tok_idx, NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007648 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007649 eval_literal(exp, tok_idx, set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007650 }
7651
7652 parent_pos_pred = 1;
7653 goto predicate;
7654
7655 case LYXP_TOKEN_NUMBER:
7656 /* Number */
7657 if (!set || (options & LYXP_SCNODE_ALL)) {
7658 if (set) {
7659 set_scnode_clear_ctx(set);
7660 }
Michal Vasko004d3152020-06-11 19:59:22 +02007661 rc = eval_number(NULL, exp, tok_idx, NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007662 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007663 rc = eval_number(set->ctx, exp, tok_idx, set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007664 }
7665 LY_CHECK_RET(rc);
7666
7667 parent_pos_pred = 1;
7668 goto predicate;
7669
7670 default:
Michal Vasko004d3152020-06-11 19:59:22 +02007671 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INTOK, lyxp_print_token(exp->tokens[*tok_idx]),
7672 &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007673 return LY_EVALID;
7674 }
7675
7676 return LY_SUCCESS;
7677
7678predicate:
7679 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007680 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
7681 rc = eval_predicate(exp, tok_idx, set, options, parent_pos_pred);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007682 LY_CHECK_RET(rc);
7683 }
7684
7685 /* ('/' or '//') RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02007686 if (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007687
7688 /* evaluate '/' or '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02007689 if (exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_PATH) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007690 all_desc = 0;
7691 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007692 all_desc = 1;
7693 }
7694
7695 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007696 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7697 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007698
Michal Vasko004d3152020-06-11 19:59:22 +02007699 rc = eval_relative_location_path(exp, tok_idx, all_desc, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007700 LY_CHECK_RET(rc);
7701 }
7702
7703 return LY_SUCCESS;
7704}
7705
7706/**
7707 * @brief Evaluate UnionExpr. Logs directly on error.
7708 *
Michal Vaskod3678892020-05-21 10:06:58 +02007709 * [20] UnionExpr ::= PathExpr | UnionExpr '|' PathExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02007710 *
7711 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007712 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007713 * @param[in] repeat How many times this expression is repeated.
7714 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7715 * @param[in] options XPath options.
7716 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7717 */
7718static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007719eval_union_expr(struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, int options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007720{
7721 LY_ERR rc = LY_SUCCESS;
7722 struct lyxp_set orig_set, set2;
7723 uint16_t i;
7724
7725 assert(repeat);
7726
7727 set_init(&orig_set, set);
7728 set_init(&set2, set);
7729
7730 set_fill_set(&orig_set, set);
7731
Michal Vasko004d3152020-06-11 19:59:22 +02007732 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNION, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007733 LY_CHECK_GOTO(rc, cleanup);
7734
7735 /* ('|' PathExpr)* */
7736 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02007737 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_UNI);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007738 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007739 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7740 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007741
7742 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007743 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNION, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007744 LY_CHECK_GOTO(rc, cleanup);
7745 continue;
7746 }
7747
7748 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02007749 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNION, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007750 LY_CHECK_GOTO(rc, cleanup);
7751
7752 /* eval */
7753 if (options & LYXP_SCNODE_ALL) {
Michal Vaskoecd62de2019-11-13 12:35:11 +01007754 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007755 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007756 rc = moveto_union(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007757 LY_CHECK_GOTO(rc, cleanup);
7758 }
7759 }
7760
7761cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02007762 lyxp_set_free_content(&orig_set);
7763 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007764 return rc;
7765}
7766
7767/**
7768 * @brief Evaluate UnaryExpr. Logs directly on error.
7769 *
Michal Vaskod3678892020-05-21 10:06:58 +02007770 * [19] UnaryExpr ::= UnionExpr | '-' UnaryExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02007771 *
7772 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007773 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007774 * @param[in] repeat How many times this expression is repeated.
7775 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7776 * @param[in] options XPath options.
7777 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7778 */
7779static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007780eval_unary_expr(struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, int options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007781{
7782 LY_ERR rc;
7783 uint16_t this_op, i;
7784
7785 assert(repeat);
7786
7787 /* ('-')+ */
Michal Vasko004d3152020-06-11 19:59:22 +02007788 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007789 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02007790 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 +02007791
7792 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007793 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7794 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007795 }
7796
Michal Vasko004d3152020-06-11 19:59:22 +02007797 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNARY, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007798 LY_CHECK_RET(rc);
7799
7800 if (set && (repeat % 2)) {
7801 if (options & LYXP_SCNODE_ALL) {
7802 warn_operands(set->ctx, set, NULL, 1, exp->expr, exp->tok_pos[this_op]);
7803 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007804 rc = moveto_op_math(set, NULL, &exp->expr[exp->tok_pos[this_op]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007805 LY_CHECK_RET(rc);
7806 }
7807 }
7808
7809 return LY_SUCCESS;
7810}
7811
7812/**
7813 * @brief Evaluate MultiplicativeExpr. Logs directly on error.
7814 *
Michal Vaskod3678892020-05-21 10:06:58 +02007815 * [18] MultiplicativeExpr ::= UnaryExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02007816 * | MultiplicativeExpr '*' UnaryExpr
7817 * | MultiplicativeExpr 'div' UnaryExpr
7818 * | MultiplicativeExpr 'mod' UnaryExpr
7819 *
7820 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007821 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007822 * @param[in] repeat How many times this expression is repeated.
7823 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7824 * @param[in] options XPath options.
7825 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7826 */
7827static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007828eval_multiplicative_expr(struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, int options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007829{
7830 LY_ERR rc;
7831 uint16_t this_op;
7832 struct lyxp_set orig_set, set2;
7833 uint16_t i;
7834
7835 assert(repeat);
7836
7837 set_init(&orig_set, set);
7838 set_init(&set2, set);
7839
7840 set_fill_set(&orig_set, set);
7841
Michal Vasko004d3152020-06-11 19:59:22 +02007842 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_MULTIPLICATIVE, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007843 LY_CHECK_GOTO(rc, cleanup);
7844
7845 /* ('*' / 'div' / 'mod' UnaryExpr)* */
7846 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02007847 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007848
Michal Vasko004d3152020-06-11 19:59:22 +02007849 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_MATH);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007850 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007851 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7852 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007853
7854 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007855 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_MULTIPLICATIVE, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007856 LY_CHECK_GOTO(rc, cleanup);
7857 continue;
7858 }
7859
7860 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02007861 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_MULTIPLICATIVE, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007862 LY_CHECK_GOTO(rc, cleanup);
7863
7864 /* eval */
7865 if (options & LYXP_SCNODE_ALL) {
7866 warn_operands(set->ctx, set, &set2, 1, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01007867 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007868 set_scnode_clear_ctx(set);
7869 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007870 rc = moveto_op_math(set, &set2, &exp->expr[exp->tok_pos[this_op]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007871 LY_CHECK_GOTO(rc, cleanup);
7872 }
7873 }
7874
7875cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02007876 lyxp_set_free_content(&orig_set);
7877 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007878 return rc;
7879}
7880
7881/**
7882 * @brief Evaluate AdditiveExpr. Logs directly on error.
7883 *
Michal Vaskod3678892020-05-21 10:06:58 +02007884 * [17] AdditiveExpr ::= MultiplicativeExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02007885 * | AdditiveExpr '+' MultiplicativeExpr
7886 * | AdditiveExpr '-' MultiplicativeExpr
7887 *
7888 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007889 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007890 * @param[in] repeat How many times this expression is repeated.
7891 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7892 * @param[in] options XPath options.
7893 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7894 */
7895static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007896eval_additive_expr(struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, int options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007897{
7898 LY_ERR rc;
7899 uint16_t this_op;
7900 struct lyxp_set orig_set, set2;
7901 uint16_t i;
7902
7903 assert(repeat);
7904
7905 set_init(&orig_set, set);
7906 set_init(&set2, set);
7907
7908 set_fill_set(&orig_set, set);
7909
Michal Vasko004d3152020-06-11 19:59:22 +02007910 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_ADDITIVE, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007911 LY_CHECK_GOTO(rc, cleanup);
7912
7913 /* ('+' / '-' MultiplicativeExpr)* */
7914 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02007915 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007916
Michal Vasko004d3152020-06-11 19:59:22 +02007917 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_MATH);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007918 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007919 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7920 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007921
7922 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007923 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_ADDITIVE, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007924 LY_CHECK_GOTO(rc, cleanup);
7925 continue;
7926 }
7927
7928 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02007929 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_ADDITIVE, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007930 LY_CHECK_GOTO(rc, cleanup);
7931
7932 /* eval */
7933 if (options & LYXP_SCNODE_ALL) {
7934 warn_operands(set->ctx, set, &set2, 1, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01007935 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007936 set_scnode_clear_ctx(set);
7937 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007938 rc = moveto_op_math(set, &set2, &exp->expr[exp->tok_pos[this_op]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007939 LY_CHECK_GOTO(rc, cleanup);
7940 }
7941 }
7942
7943cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02007944 lyxp_set_free_content(&orig_set);
7945 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007946 return rc;
7947}
7948
7949/**
7950 * @brief Evaluate RelationalExpr. Logs directly on error.
7951 *
Michal Vaskod3678892020-05-21 10:06:58 +02007952 * [16] RelationalExpr ::= AdditiveExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02007953 * | RelationalExpr '<' AdditiveExpr
7954 * | RelationalExpr '>' AdditiveExpr
7955 * | RelationalExpr '<=' AdditiveExpr
7956 * | RelationalExpr '>=' AdditiveExpr
7957 *
7958 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007959 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007960 * @param[in] repeat How many times this expression is repeated.
7961 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7962 * @param[in] options XPath options.
7963 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7964 */
7965static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007966eval_relational_expr(struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, int options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007967{
7968 LY_ERR rc;
7969 uint16_t this_op;
7970 struct lyxp_set orig_set, set2;
7971 uint16_t i;
7972
7973 assert(repeat);
7974
7975 set_init(&orig_set, set);
7976 set_init(&set2, set);
7977
7978 set_fill_set(&orig_set, set);
7979
Michal Vasko004d3152020-06-11 19:59:22 +02007980 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_RELATIONAL, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007981 LY_CHECK_GOTO(rc, cleanup);
7982
7983 /* ('<' / '>' / '<=' / '>=' AdditiveExpr)* */
7984 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02007985 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007986
Michal Vasko004d3152020-06-11 19:59:22 +02007987 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_COMP);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007988 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007989 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7990 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007991
7992 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007993 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_RELATIONAL, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007994 LY_CHECK_GOTO(rc, cleanup);
7995 continue;
7996 }
7997
7998 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02007999 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_RELATIONAL, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008000 LY_CHECK_GOTO(rc, cleanup);
8001
8002 /* eval */
8003 if (options & LYXP_SCNODE_ALL) {
8004 warn_operands(set->ctx, set, &set2, 1, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008005 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008006 set_scnode_clear_ctx(set);
8007 } else {
8008 rc = moveto_op_comp(set, &set2, &exp->expr[exp->tok_pos[this_op]], options);
8009 LY_CHECK_GOTO(rc, cleanup);
8010 }
8011 }
8012
8013cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008014 lyxp_set_free_content(&orig_set);
8015 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008016 return rc;
8017}
8018
8019/**
8020 * @brief Evaluate EqualityExpr. Logs directly on error.
8021 *
Michal Vaskod3678892020-05-21 10:06:58 +02008022 * [15] EqualityExpr ::= RelationalExpr | EqualityExpr '=' RelationalExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008023 * | EqualityExpr '!=' RelationalExpr
8024 *
8025 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008026 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008027 * @param[in] repeat How many times this expression is repeated.
8028 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
8029 * @param[in] options XPath options.
8030 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8031 */
8032static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02008033eval_equality_expr(struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, int options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008034{
8035 LY_ERR rc;
8036 uint16_t this_op;
8037 struct lyxp_set orig_set, set2;
8038 uint16_t i;
8039
8040 assert(repeat);
8041
8042 set_init(&orig_set, set);
8043 set_init(&set2, set);
8044
8045 set_fill_set(&orig_set, set);
8046
Michal Vasko004d3152020-06-11 19:59:22 +02008047 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_EQUALITY, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008048 LY_CHECK_GOTO(rc, cleanup);
8049
8050 /* ('=' / '!=' RelationalExpr)* */
8051 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008052 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008053
Michal Vasko004d3152020-06-11 19:59:22 +02008054 assert((exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_EQUAL) || (exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_NEQUAL));
Michal Vasko03ff5a72019-09-11 13:49:33 +02008055 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02008056 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
8057 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008058
8059 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02008060 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_EQUALITY, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008061 LY_CHECK_GOTO(rc, cleanup);
8062 continue;
8063 }
8064
8065 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02008066 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_EQUALITY, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008067 LY_CHECK_GOTO(rc, cleanup);
8068
8069 /* eval */
8070 if (options & LYXP_SCNODE_ALL) {
8071 warn_operands(set->ctx, set, &set2, 0, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vasko004d3152020-06-11 19:59:22 +02008072 warn_equality_value(exp, set, *tok_idx - 1, this_op - 1, *tok_idx - 1);
8073 warn_equality_value(exp, &set2, this_op - 1, this_op - 1, *tok_idx - 1);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008074 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008075 set_scnode_clear_ctx(set);
8076 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008077 rc = moveto_op_comp(set, &set2, &exp->expr[exp->tok_pos[this_op]], options);
8078 LY_CHECK_GOTO(rc, cleanup);
8079 }
8080 }
8081
8082cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008083 lyxp_set_free_content(&orig_set);
8084 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008085 return rc;
8086}
8087
8088/**
8089 * @brief Evaluate AndExpr. Logs directly on error.
8090 *
Michal Vaskod3678892020-05-21 10:06:58 +02008091 * [14] AndExpr ::= EqualityExpr | AndExpr 'and' EqualityExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008092 *
8093 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008094 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008095 * @param[in] repeat How many times this expression is repeated.
8096 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
8097 * @param[in] options XPath options.
8098 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8099 */
8100static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02008101eval_and_expr(struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, int options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008102{
8103 LY_ERR rc;
8104 struct lyxp_set orig_set, set2;
8105 uint16_t i;
8106
8107 assert(repeat);
8108
8109 set_init(&orig_set, set);
8110 set_init(&set2, set);
8111
8112 set_fill_set(&orig_set, set);
8113
Michal Vasko004d3152020-06-11 19:59:22 +02008114 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_AND, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008115 LY_CHECK_GOTO(rc, cleanup);
8116
8117 /* cast to boolean, we know that will be the final result */
8118 if (set && (options & LYXP_SCNODE_ALL)) {
8119 set_scnode_clear_ctx(set);
8120 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008121 lyxp_set_cast(set, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008122 }
8123
8124 /* ('and' EqualityExpr)* */
8125 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008126 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_LOG);
8127 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (!set || !set->val.bln ? "skipped" : "parsed"),
8128 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
8129 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008130
8131 /* lazy evaluation */
Michal Vasko004d3152020-06-11 19:59:22 +02008132 if (!set || ((set->type == LYXP_SET_BOOLEAN) && !set->val.bln)) {
8133 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_AND, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008134 LY_CHECK_GOTO(rc, cleanup);
8135 continue;
8136 }
8137
8138 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02008139 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_AND, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008140 LY_CHECK_GOTO(rc, cleanup);
8141
8142 /* eval - just get boolean value actually */
8143 if (set->type == LYXP_SET_SCNODE_SET) {
8144 set_scnode_clear_ctx(&set2);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008145 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008146 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008147 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008148 set_fill_set(set, &set2);
8149 }
8150 }
8151
8152cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008153 lyxp_set_free_content(&orig_set);
8154 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008155 return rc;
8156}
8157
8158/**
8159 * @brief Evaluate OrExpr. Logs directly on error.
8160 *
Michal Vaskod3678892020-05-21 10:06:58 +02008161 * [13] OrExpr ::= AndExpr | OrExpr 'or' AndExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008162 *
8163 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008164 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008165 * @param[in] repeat How many times this expression is repeated.
8166 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
8167 * @param[in] options XPath options.
8168 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8169 */
8170static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02008171eval_or_expr(struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, int options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008172{
8173 LY_ERR rc;
8174 struct lyxp_set orig_set, set2;
8175 uint16_t i;
8176
8177 assert(repeat);
8178
8179 set_init(&orig_set, set);
8180 set_init(&set2, set);
8181
8182 set_fill_set(&orig_set, set);
8183
Michal Vasko004d3152020-06-11 19:59:22 +02008184 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_OR, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008185 LY_CHECK_GOTO(rc, cleanup);
8186
8187 /* cast to boolean, we know that will be the final result */
8188 if (set && (options & LYXP_SCNODE_ALL)) {
8189 set_scnode_clear_ctx(set);
8190 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008191 lyxp_set_cast(set, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008192 }
8193
8194 /* ('or' AndExpr)* */
8195 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008196 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_LOG);
8197 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (!set || set->val.bln ? "skipped" : "parsed"),
8198 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
8199 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008200
8201 /* lazy evaluation */
Michal Vasko004d3152020-06-11 19:59:22 +02008202 if (!set || ((set->type == LYXP_SET_BOOLEAN) && set->val.bln)) {
8203 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_OR, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008204 LY_CHECK_GOTO(rc, cleanup);
8205 continue;
8206 }
8207
8208 set_fill_set(&set2, &orig_set);
8209 /* expr_type cound have been LYXP_EXPR_NONE in all these later calls (except for the first one),
8210 * but it does not matter */
Michal Vasko004d3152020-06-11 19:59:22 +02008211 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_OR, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008212 LY_CHECK_GOTO(rc, cleanup);
8213
8214 /* eval - just get boolean value actually */
8215 if (set->type == LYXP_SET_SCNODE_SET) {
8216 set_scnode_clear_ctx(&set2);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008217 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008218 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008219 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008220 set_fill_set(set, &set2);
8221 }
8222 }
8223
8224cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008225 lyxp_set_free_content(&orig_set);
8226 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008227 return rc;
8228}
8229
8230/**
Michal Vasko004d3152020-06-11 19:59:22 +02008231 * @brief Decide what expression is at the pointer @p tok_idx and evaluate it accordingly.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008232 *
8233 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008234 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008235 * @param[in] etype Expression type to evaluate.
8236 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
8237 * @param[in] options XPath options.
8238 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8239 */
8240static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02008241eval_expr_select(struct lyxp_expr *exp, uint16_t *tok_idx, enum lyxp_expr_type etype, struct lyxp_set *set, int options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008242{
8243 uint16_t i, count;
8244 enum lyxp_expr_type next_etype;
8245 LY_ERR rc;
8246
8247 /* process operator repeats */
Michal Vasko004d3152020-06-11 19:59:22 +02008248 if (!exp->repeat[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008249 next_etype = LYXP_EXPR_NONE;
8250 } else {
8251 /* find etype repeat */
Michal Vasko004d3152020-06-11 19:59:22 +02008252 for (i = 0; exp->repeat[*tok_idx][i] > etype; ++i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008253
8254 /* select one-priority lower because etype expression called us */
8255 if (i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008256 next_etype = exp->repeat[*tok_idx][i - 1];
Michal Vasko03ff5a72019-09-11 13:49:33 +02008257 /* count repeats for that expression */
Michal Vasko004d3152020-06-11 19:59:22 +02008258 for (count = 0; i && exp->repeat[*tok_idx][i - 1] == next_etype; ++count, --i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008259 } else {
8260 next_etype = LYXP_EXPR_NONE;
8261 }
8262 }
8263
8264 /* decide what expression are we parsing based on the repeat */
8265 switch (next_etype) {
8266 case LYXP_EXPR_OR:
Michal Vasko004d3152020-06-11 19:59:22 +02008267 rc = eval_or_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008268 break;
8269 case LYXP_EXPR_AND:
Michal Vasko004d3152020-06-11 19:59:22 +02008270 rc = eval_and_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008271 break;
8272 case LYXP_EXPR_EQUALITY:
Michal Vasko004d3152020-06-11 19:59:22 +02008273 rc = eval_equality_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008274 break;
8275 case LYXP_EXPR_RELATIONAL:
Michal Vasko004d3152020-06-11 19:59:22 +02008276 rc = eval_relational_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008277 break;
8278 case LYXP_EXPR_ADDITIVE:
Michal Vasko004d3152020-06-11 19:59:22 +02008279 rc = eval_additive_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008280 break;
8281 case LYXP_EXPR_MULTIPLICATIVE:
Michal Vasko004d3152020-06-11 19:59:22 +02008282 rc = eval_multiplicative_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008283 break;
8284 case LYXP_EXPR_UNARY:
Michal Vasko004d3152020-06-11 19:59:22 +02008285 rc = eval_unary_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008286 break;
8287 case LYXP_EXPR_UNION:
Michal Vasko004d3152020-06-11 19:59:22 +02008288 rc = eval_union_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008289 break;
8290 case LYXP_EXPR_NONE:
Michal Vasko004d3152020-06-11 19:59:22 +02008291 rc = eval_path_expr(exp, tok_idx, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008292 break;
8293 default:
8294 LOGINT_RET(set->ctx);
8295 }
8296
8297 return rc;
8298}
8299
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008300/**
8301 * @brief Get root type.
8302 *
8303 * @param[in] ctx_node Context node.
8304 * @param[in] ctx_scnode Schema context node.
8305 * @param[in] options XPath options.
8306 * @return Root type.
8307 */
8308static enum lyxp_node_type
8309lyxp_get_root_type(const struct lyd_node *ctx_node, const struct lysc_node *ctx_scnode, int options)
8310{
Michal Vasko6b26e742020-07-17 15:02:10 +02008311 const struct lysc_node *op;
8312
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008313 if (options & LYXP_SCNODE_ALL) {
Michal Vasko6b26e742020-07-17 15:02:10 +02008314 for (op = ctx_scnode; op && !(op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)); op = op->parent);
8315
8316 if (op || (options & LYXP_SCNODE)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008317 /* general root that can access everything */
8318 return LYXP_NODE_ROOT;
8319 } else if (!ctx_scnode || (ctx_scnode->flags & LYS_CONFIG_W)) {
8320 /* root context node can access only config data (because we said so, it is unspecified) */
8321 return LYXP_NODE_ROOT_CONFIG;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008322 }
Michal Vasko6b26e742020-07-17 15:02:10 +02008323 return LYXP_NODE_ROOT;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008324 }
8325
Michal Vasko6b26e742020-07-17 15:02:10 +02008326 op = ctx_node ? ctx_node->schema : NULL;
8327 for (; op && !(op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)); op = op->parent);
8328
8329 if (!ctx_node || (!op && (ctx_node->schema->flags & LYS_CONFIG_W))) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008330 /* root context node can access only config data (because we said so, it is unspecified) */
8331 return LYXP_NODE_ROOT_CONFIG;
8332 }
8333
8334 return LYXP_NODE_ROOT;
8335}
8336
Michal Vasko03ff5a72019-09-11 13:49:33 +02008337LY_ERR
Michal Vaskoc8a230d2020-08-14 12:17:10 +02008338lyxp_eval(struct lyxp_expr *exp, LY_PREFIX_FORMAT format, const struct lys_module *local_mod, const struct lyd_node *ctx_node,
Michal Vaskof03ed032020-03-04 13:31:44 +01008339 enum lyxp_node_type ctx_node_type, const struct lyd_node *tree, struct lyxp_set *set, int options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008340{
Michal Vasko004d3152020-06-11 19:59:22 +02008341 uint16_t tok_idx = 0;
8342 const struct lyd_node *real_ctx_node;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008343 LY_ERR rc;
8344
Michal Vasko004d3152020-06-11 19:59:22 +02008345 LY_CHECK_ARG_RET(NULL, exp, local_mod, ctx_node, set, LY_EINVAL);
8346
8347 if ((ctx_node_type == LYXP_NODE_ROOT) || (ctx_node_type == LYXP_NODE_ROOT_CONFIG)) {
8348 /* we always need some context node because it is used for resolving unqualified names */
8349 real_ctx_node = NULL;
8350 } else {
8351 real_ctx_node = ctx_node;
8352 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02008353
8354 /* prepare set for evaluation */
Michal Vasko004d3152020-06-11 19:59:22 +02008355 tok_idx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008356 memset(set, 0, sizeof *set);
Michal Vaskod3678892020-05-21 10:06:58 +02008357 set->type = LYXP_SET_NODE_SET;
Michal Vasko004d3152020-06-11 19:59:22 +02008358 set_insert_node(set, (struct lyd_node *)real_ctx_node, 0, ctx_node_type, 0);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008359 set->ctx = local_mod->ctx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008360 set->ctx_node = ctx_node;
Michal Vasko004d3152020-06-11 19:59:22 +02008361 set->root_type = lyxp_get_root_type(real_ctx_node, NULL, options);
Michal Vasko6b26e742020-07-17 15:02:10 +02008362 for (set->context_op = ctx_node->schema;
8363 set->context_op && !(set->context_op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF));
8364 set->context_op = set->context_op->parent);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008365 set->local_mod = local_mod;
Michal Vaskof03ed032020-03-04 13:31:44 +01008366 set->tree = tree;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008367 set->format = format;
8368
8369 /* evaluate */
Michal Vasko004d3152020-06-11 19:59:22 +02008370 rc = eval_expr_select(exp, &tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008371 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02008372 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008373 }
8374
Michal Vasko03ff5a72019-09-11 13:49:33 +02008375 return rc;
8376}
8377
8378#if 0
8379
8380/* full xml printing of set elements, not used currently */
8381
8382void
8383lyxp_set_print_xml(FILE *f, struct lyxp_set *set)
8384{
8385 uint32_t i;
8386 char *str_num;
8387 struct lyout out;
8388
8389 memset(&out, 0, sizeof out);
8390
8391 out.type = LYOUT_STREAM;
8392 out.method.f = f;
8393
8394 switch (set->type) {
8395 case LYXP_SET_EMPTY:
Michal Vasko5233e962020-08-14 14:26:20 +02008396 ly_print_(&out, "Empty XPath set\n\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008397 break;
8398 case LYXP_SET_BOOLEAN:
Michal Vasko5233e962020-08-14 14:26:20 +02008399 ly_print_(&out, "Boolean XPath set:\n");
8400 ly_print_(&out, "%s\n\n", set->value.bool ? "true" : "false");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008401 break;
8402 case LYXP_SET_STRING:
Michal Vasko5233e962020-08-14 14:26:20 +02008403 ly_print_(&out, "String XPath set:\n");
8404 ly_print_(&out, "\"%s\"\n\n", set->value.str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008405 break;
8406 case LYXP_SET_NUMBER:
Michal Vasko5233e962020-08-14 14:26:20 +02008407 ly_print_(&out, "Number XPath set:\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008408
8409 if (isnan(set->value.num)) {
8410 str_num = strdup("NaN");
8411 } else if ((set->value.num == 0) || (set->value.num == -0.0f)) {
8412 str_num = strdup("0");
8413 } else if (isinf(set->value.num) && !signbit(set->value.num)) {
8414 str_num = strdup("Infinity");
8415 } else if (isinf(set->value.num) && signbit(set->value.num)) {
8416 str_num = strdup("-Infinity");
8417 } else if ((long long)set->value.num == set->value.num) {
8418 if (asprintf(&str_num, "%lld", (long long)set->value.num) == -1) {
8419 str_num = NULL;
8420 }
8421 } else {
8422 if (asprintf(&str_num, "%03.1Lf", set->value.num) == -1) {
8423 str_num = NULL;
8424 }
8425 }
8426 if (!str_num) {
8427 LOGMEM;
8428 return;
8429 }
Michal Vasko5233e962020-08-14 14:26:20 +02008430 ly_print_(&out, "%s\n\n", str_num);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008431 free(str_num);
8432 break;
8433 case LYXP_SET_NODE_SET:
Michal Vasko5233e962020-08-14 14:26:20 +02008434 ly_print_(&out, "Node XPath set:\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008435
8436 for (i = 0; i < set->used; ++i) {
Michal Vasko5233e962020-08-14 14:26:20 +02008437 ly_print_(&out, "%d. ", i + 1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008438 switch (set->node_type[i]) {
8439 case LYXP_NODE_ROOT_ALL:
Michal Vasko5233e962020-08-14 14:26:20 +02008440 ly_print_(&out, "ROOT all\n\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008441 break;
8442 case LYXP_NODE_ROOT_CONFIG:
Michal Vasko5233e962020-08-14 14:26:20 +02008443 ly_print_(&out, "ROOT config\n\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008444 break;
8445 case LYXP_NODE_ROOT_STATE:
Michal Vasko5233e962020-08-14 14:26:20 +02008446 ly_print_(&out, "ROOT state\n\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008447 break;
8448 case LYXP_NODE_ROOT_NOTIF:
Michal Vasko5233e962020-08-14 14:26:20 +02008449 ly_print_(&out, "ROOT notification \"%s\"\n\n", set->value.nodes[i]->schema->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008450 break;
8451 case LYXP_NODE_ROOT_RPC:
Michal Vasko5233e962020-08-14 14:26:20 +02008452 ly_print_(&out, "ROOT rpc \"%s\"\n\n", set->value.nodes[i]->schema->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008453 break;
8454 case LYXP_NODE_ROOT_OUTPUT:
Michal Vasko5233e962020-08-14 14:26:20 +02008455 ly_print_(&out, "ROOT output \"%s\"\n\n", set->value.nodes[i]->schema->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008456 break;
8457 case LYXP_NODE_ELEM:
Michal Vasko5233e962020-08-14 14:26:20 +02008458 ly_print_(&out, "ELEM \"%s\"\n", set->value.nodes[i]->schema->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008459 xml_print_node(&out, 1, set->value.nodes[i], 1, LYP_FORMAT);
Michal Vasko5233e962020-08-14 14:26:20 +02008460 ly_print_(&out, "\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008461 break;
8462 case LYXP_NODE_TEXT:
Michal Vasko5233e962020-08-14 14:26:20 +02008463 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 +02008464 break;
8465 case LYXP_NODE_ATTR:
Michal Vasko5233e962020-08-14 14:26:20 +02008466 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 +02008467 break;
8468 }
8469 }
8470 break;
8471 }
8472}
8473
8474#endif
8475
8476LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008477lyxp_set_cast(struct lyxp_set *set, enum lyxp_set_type target)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008478{
8479 long double num;
8480 char *str;
8481 LY_ERR rc;
8482
8483 if (!set || (set->type == target)) {
8484 return LY_SUCCESS;
8485 }
8486
8487 /* it's not possible to convert anything into a node set */
Michal Vaskod3678892020-05-21 10:06:58 +02008488 assert(target != LYXP_SET_NODE_SET);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008489
8490 if (set->type == LYXP_SET_SCNODE_SET) {
Michal Vaskod3678892020-05-21 10:06:58 +02008491 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008492 return LY_EINVAL;
8493 }
8494
8495 /* to STRING */
Michal Vaskod3678892020-05-21 10:06:58 +02008496 if ((target == LYXP_SET_STRING) || ((target == LYXP_SET_NUMBER) && (set->type == LYXP_SET_NODE_SET))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008497 switch (set->type) {
8498 case LYXP_SET_NUMBER:
8499 if (isnan(set->val.num)) {
8500 set->val.str = strdup("NaN");
8501 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
8502 } else if ((set->val.num == 0) || (set->val.num == -0.0f)) {
8503 set->val.str = strdup("0");
8504 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
8505 } else if (isinf(set->val.num) && !signbit(set->val.num)) {
8506 set->val.str = strdup("Infinity");
8507 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
8508 } else if (isinf(set->val.num) && signbit(set->val.num)) {
8509 set->val.str = strdup("-Infinity");
8510 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
8511 } else if ((long long)set->val.num == set->val.num) {
8512 if (asprintf(&str, "%lld", (long long)set->val.num) == -1) {
8513 LOGMEM_RET(set->ctx);
8514 }
8515 set->val.str = str;
8516 } else {
8517 if (asprintf(&str, "%03.1Lf", set->val.num) == -1) {
8518 LOGMEM_RET(set->ctx);
8519 }
8520 set->val.str = str;
8521 }
8522 break;
8523 case LYXP_SET_BOOLEAN:
Michal Vasko004d3152020-06-11 19:59:22 +02008524 if (set->val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008525 set->val.str = strdup("true");
8526 } else {
8527 set->val.str = strdup("false");
8528 }
8529 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), LY_EMEM);
8530 break;
8531 case LYXP_SET_NODE_SET:
8532 assert(set->used);
8533
8534 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008535 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02008536
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008537 rc = cast_node_set_to_string(set, &str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008538 LY_CHECK_RET(rc);
Michal Vaskod3678892020-05-21 10:06:58 +02008539 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008540 set->val.str = str;
8541 break;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008542 default:
8543 LOGINT_RET(set->ctx);
8544 }
8545 set->type = LYXP_SET_STRING;
8546 }
8547
8548 /* to NUMBER */
8549 if (target == LYXP_SET_NUMBER) {
8550 switch (set->type) {
8551 case LYXP_SET_STRING:
8552 num = cast_string_to_number(set->val.str);
Michal Vaskod3678892020-05-21 10:06:58 +02008553 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008554 set->val.num = num;
8555 break;
8556 case LYXP_SET_BOOLEAN:
Michal Vasko004d3152020-06-11 19:59:22 +02008557 if (set->val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008558 set->val.num = 1;
8559 } else {
8560 set->val.num = 0;
8561 }
8562 break;
8563 default:
8564 LOGINT_RET(set->ctx);
8565 }
8566 set->type = LYXP_SET_NUMBER;
8567 }
8568
8569 /* to BOOLEAN */
8570 if (target == LYXP_SET_BOOLEAN) {
8571 switch (set->type) {
8572 case LYXP_SET_NUMBER:
8573 if ((set->val.num == 0) || (set->val.num == -0.0f) || isnan(set->val.num)) {
Michal Vasko004d3152020-06-11 19:59:22 +02008574 set->val.bln = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008575 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02008576 set->val.bln = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008577 }
8578 break;
8579 case LYXP_SET_STRING:
8580 if (set->val.str[0]) {
Michal Vaskod3678892020-05-21 10:06:58 +02008581 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02008582 set->val.bln = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008583 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02008584 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02008585 set->val.bln = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008586 }
8587 break;
8588 case LYXP_SET_NODE_SET:
Michal Vaskod3678892020-05-21 10:06:58 +02008589 if (set->used) {
8590 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02008591 set->val.bln = 1;
Michal Vaskod3678892020-05-21 10:06:58 +02008592 } else {
8593 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02008594 set->val.bln = 0;
Michal Vaskod3678892020-05-21 10:06:58 +02008595 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02008596 break;
8597 default:
8598 LOGINT_RET(set->ctx);
8599 }
8600 set->type = LYXP_SET_BOOLEAN;
8601 }
8602
Michal Vasko03ff5a72019-09-11 13:49:33 +02008603 return LY_SUCCESS;
8604}
8605
8606LY_ERR
Michal Vaskoc8a230d2020-08-14 12:17:10 +02008607lyxp_atomize(struct lyxp_expr *exp, LY_PREFIX_FORMAT format, const struct lys_module *local_mod,
8608 const struct lysc_node *ctx_scnode, enum lyxp_node_type ctx_scnode_type, struct lyxp_set *set, int options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008609{
8610 struct ly_ctx *ctx;
Michal Vasko004d3152020-06-11 19:59:22 +02008611 const struct lysc_node *real_ctx_scnode;
8612 uint16_t tok_idx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008613
Michal Vasko004d3152020-06-11 19:59:22 +02008614 LY_CHECK_ARG_RET(NULL, exp, local_mod, ctx_scnode, set, LY_EINVAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008615
8616 ctx = local_mod->ctx;
Michal Vasko004d3152020-06-11 19:59:22 +02008617 if ((ctx_scnode_type == LYXP_NODE_ROOT) || (ctx_scnode_type == LYXP_NODE_ROOT_CONFIG)) {
8618 /* we always need some context node because it is used for resolving unqualified names */
8619 real_ctx_scnode = NULL;
8620 } else {
8621 real_ctx_scnode = ctx_scnode;
8622 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02008623
8624 /* prepare set for evaluation */
Michal Vasko004d3152020-06-11 19:59:22 +02008625 tok_idx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008626 memset(set, 0, sizeof *set);
8627 set->type = LYXP_SET_SCNODE_SET;
Michal Vasko004d3152020-06-11 19:59:22 +02008628 lyxp_set_scnode_insert_node(set, real_ctx_scnode, ctx_scnode_type);
Michal Vasko5c4e5892019-11-14 12:31:38 +01008629 set->val.scnodes[0].in_ctx = -2;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008630 set->ctx = ctx;
8631 set->ctx_scnode = ctx_scnode;
Michal Vasko004d3152020-06-11 19:59:22 +02008632 set->root_type = lyxp_get_root_type(NULL, real_ctx_scnode, options);
Michal Vasko6b26e742020-07-17 15:02:10 +02008633 for (set->context_op = ctx_scnode;
8634 set->context_op && !(set->context_op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF));
8635 set->context_op = set->context_op->parent);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008636 set->local_mod = local_mod;
8637 set->format = format;
8638
8639 /* evaluate */
Michal Vasko004d3152020-06-11 19:59:22 +02008640 return eval_expr_select(exp, &tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008641}
Michal Vaskod43d71a2020-08-07 14:54:58 +02008642
8643API const char *
8644lyxp_get_expr(const struct lyxp_expr *path)
8645{
8646 if (!path) {
8647 return NULL;
8648 }
8649
8650 return path->expr;
8651}