blob: b0a3d1bcf19e9575ba4ee93a74f7a7dea0406cfe [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),
1569 LY_TYPE_OPTS_STORE | LY_TYPE_OPTS_INCOMPLETE_DATA | LY_TYPE_OPTS_DYNAMIC, NULL,
1570 NULL, LYD_JSON, NULL, NULL, &val, NULL, &err);
1571 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 */
1579 str = (char *)type->plugin->print(&val, LYD_JSON, json_print_get_prefix, NULL, &dynamic);
1580
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 Vasko93b18da2020-08-05 13:27:55 +02003336 rc = type->plugin->store(set->ctx, type, value, strlen(value), LY_TYPE_OPTS_SCHEMA, lys_resolve_prefix,
3337 (void *)set->local_mod, LYD_XML, 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 */
3700 if (set->format == LYD_JSON) {
Michal Vasko00cbf532020-06-15 13:58:47 +02003701 rc = ly_path_compile(set->ctx, sleaf->module, (struct lysc_node *)sleaf, lref->path, LY_PATH_LREF_TRUE,
3702 oper, LY_PATH_TARGET_MANY, lydjson_resolve_prefix, NULL, LYD_JSON, &p);
Michal Vasko004d3152020-06-11 19:59:22 +02003703 } else {
3704 assert(set->format == LYD_SCHEMA);
Michal Vasko00cbf532020-06-15 13:58:47 +02003705 rc = ly_path_compile(set->ctx, sleaf->module, (struct lysc_node *)sleaf, lref->path, LY_PATH_LREF_TRUE,
3706 oper, LY_PATH_TARGET_MANY, lys_resolve_prefix, lref->path_context, LYD_SCHEMA, &p);
Michal Vaskoae9e4cb2019-09-25 08:43:05 +02003707 }
Michal Vasko004d3152020-06-11 19:59:22 +02003708 assert(!rc);
3709
3710 /* get the target node */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003711 target = p[LY_ARRAY_COUNT(p) - 1].node;
Michal Vasko004d3152020-06-11 19:59:22 +02003712 ly_path_free(set->ctx, p);
3713
3714 lyxp_set_scnode_insert_node(set, target, LYXP_NODE_ELEM);
Michal Vaskoae9e4cb2019-09-25 08:43:05 +02003715 }
3716
Michal Vasko03ff5a72019-09-11 13:49:33 +02003717 return rc;
3718 }
3719
Michal Vaskod3678892020-05-21 10:06:58 +02003720 if (args[0]->type != LYXP_SET_NODE_SET) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003721 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "deref(node-set)");
3722 return LY_EVALID;
3723 }
3724
Michal Vaskod3678892020-05-21 10:06:58 +02003725 lyxp_set_free_content(set);
3726 if (args[0]->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003727 leaf = (struct lyd_node_term *)args[0]->val.nodes[0].node;
3728 sleaf = (struct lysc_node_leaf *)leaf->schema;
3729 if (sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST)) {
3730 if (sleaf->type->basetype == LY_TYPE_LEAFREF) {
3731 /* find leafref target */
Michal Vasko004d3152020-06-11 19:59:22 +02003732 if (ly_type_find_leafref((struct lysc_type_leafref *)sleaf->type, (struct lyd_node *)leaf,
3733 &leaf->value, set->tree, &node, &errmsg)) {
3734 LOGERR(set->ctx, LY_EVALID, errmsg);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003735 free(errmsg);
Michal Vasko004d3152020-06-11 19:59:22 +02003736 return LY_EVALID;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003737 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02003738 } else {
3739 assert(sleaf->type->basetype == LY_TYPE_INST);
Michal Vasko004d3152020-06-11 19:59:22 +02003740 if (ly_path_eval(leaf->value.target, set->tree, &node)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003741 val = lyd_value2str(leaf, &dynamic);
3742 LOGERR(set->ctx, LY_EVALID, "Invalid instance-identifier \"%s\" value - required instance not found.", val);
3743 if (dynamic) {
3744 free((char *)val);
3745 }
3746 return LY_EVALID;
3747 }
3748 }
Michal Vasko004d3152020-06-11 19:59:22 +02003749
3750 /* insert it */
3751 set_insert_node(set, node, 0, LYXP_NODE_ELEM, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003752 }
3753 }
3754
3755 return LY_SUCCESS;
3756}
3757
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003758static LY_ERR
3759xpath_derived_(struct lyxp_set **args, struct lyxp_set *set, int options, int self_match, const char *func)
3760{
3761 uint16_t i;
3762 LY_ARRAY_COUNT_TYPE u;
3763 struct lyd_node_term *leaf;
3764 struct lysc_node_leaf *sleaf;
3765 struct lyd_meta *meta;
3766 struct lyd_value data = {0}, *val;
3767 struct ly_err_item *err = NULL;
3768 LY_ERR rc = LY_SUCCESS;
3769 int found;
3770
3771 if (options & LYXP_SCNODE_ALL) {
3772 if ((args[0]->type != LYXP_SET_SCNODE_SET) || !(sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3773 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", func);
3774 } else if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3775 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", func, lys_nodetype2str(sleaf->nodetype),
3776 sleaf->name);
3777 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_IDENT)) {
3778 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"identityref\".", func, sleaf->name);
3779 }
3780
3781 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
3782 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3783 LOGWRN(set->ctx, "Argument #2 of %s is a %s node \"%s\".", func, lys_nodetype2str(sleaf->nodetype),
3784 sleaf->name);
3785 } else if (!warn_is_string_type(sleaf->type)) {
3786 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", func, sleaf->name);
3787 }
3788 }
3789 set_scnode_clear_ctx(set);
3790 return rc;
3791 }
3792
3793 if (args[0]->type != LYXP_SET_NODE_SET) {
3794 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]),
3795 "derived-from(-or-self)(node-set, string)");
3796 return LY_EVALID;
3797 }
3798 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
3799 LY_CHECK_RET(rc);
3800
3801 set_fill_boolean(set, 0);
3802 found = 0;
3803 for (i = 0; i < args[0]->used; ++i) {
3804 if ((args[0]->val.nodes[i].type != LYXP_NODE_ELEM) && (args[0]->val.nodes[i].type != LYXP_NODE_META)) {
3805 continue;
3806 }
3807
3808 if (args[0]->val.nodes[i].type == LYXP_NODE_ELEM) {
3809 leaf = (struct lyd_node_term *)args[0]->val.nodes[i].node;
3810 sleaf = (struct lysc_node_leaf *)leaf->schema;
3811 val = &leaf->value;
3812 if (!(sleaf->nodetype & LYD_NODE_TERM) || (leaf->value.realtype->basetype != LY_TYPE_IDENT)) {
3813 /* uninteresting */
3814 continue;
3815 }
3816
3817 /* store args[1] as ident */
3818 rc = val->realtype->plugin->store(set->ctx, val->realtype, args[1]->val.str, strlen(args[1]->val.str),
Michal Vasko93b18da2020-08-05 13:27:55 +02003819 LY_TYPE_OPTS_STORE, lys_resolve_prefix, (void *)set->local_mod,
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003820 set->format, (struct lyd_node *)leaf, set->tree, &data, NULL, &err);
3821 } else {
3822 meta = args[0]->val.meta[i].meta;
3823 val = &meta->value;
3824 if (val->realtype->basetype != LY_TYPE_IDENT) {
3825 /* uninteresting */
3826 continue;
3827 }
3828
3829 /* store args[1] as ident */
3830 rc = val->realtype->plugin->store(set->ctx, val->realtype, args[1]->val.str, strlen(args[1]->val.str),
3831 LY_TYPE_OPTS_STORE, lys_resolve_prefix, (void *)meta->annotation->module,
3832 set->format, meta->parent, set->tree, &data, NULL, &err);
3833 }
3834
3835 if (err) {
3836 ly_err_print(err);
3837 ly_err_free(err);
3838 }
3839 LY_CHECK_RET(rc);
3840
3841 /* finally check the identity itself */
3842 if (self_match && (data.ident == val->ident)) {
3843 set_fill_boolean(set, 1);
3844 found = 1;
3845 }
3846 if (!found) {
3847 LY_ARRAY_FOR(data.ident->derived, u) {
3848 if (data.ident->derived[u] == val->ident) {
3849 set_fill_boolean(set, 1);
3850 found = 1;
3851 break;
3852 }
3853 }
3854 }
3855
3856 /* free temporary value */
3857 val->realtype->plugin->free(set->ctx, &data);
3858 if (found) {
3859 break;
3860 }
3861 }
3862
3863 return LY_SUCCESS;
3864}
3865
Michal Vasko03ff5a72019-09-11 13:49:33 +02003866/**
3867 * @brief Execute the YANG 1.1 derived-from(node-set, string) function. Returns LYXP_SET_BOOLEAN depending
3868 * on whether the first argument nodes contain a node of an identity derived from the second
3869 * argument identity.
3870 *
3871 * @param[in] args Array of arguments.
3872 * @param[in] arg_count Count of elements in @p args.
3873 * @param[in,out] set Context and result set at the same time.
3874 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003875 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003876 */
3877static LY_ERR
3878xpath_derived_from(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
3879{
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003880 return xpath_derived_(args, set, options, 0, __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003881}
3882
3883/**
3884 * @brief Execute the YANG 1.1 derived-from-or-self(node-set, string) function. Returns LYXP_SET_BOOLEAN depending
3885 * on whether the first argument nodes contain a node of an identity that either is or is derived from
3886 * the second argument identity.
3887 *
3888 * @param[in] args Array of arguments.
3889 * @param[in] arg_count Count of elements in @p args.
3890 * @param[in,out] set Context and result set at the same time.
3891 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003892 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003893 */
3894static LY_ERR
3895xpath_derived_from_or_self(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
3896{
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003897 return xpath_derived_(args, set, options, 1, __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003898}
3899
3900/**
3901 * @brief Execute the YANG 1.1 enum-value(node-set) function. Returns LYXP_SET_NUMBER
3902 * with the integer value of the first node's enum value, otherwise NaN.
3903 *
3904 * @param[in] args Array of arguments.
3905 * @param[in] arg_count Count of elements in @p args.
3906 * @param[in,out] set Context and result set at the same time.
3907 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003908 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003909 */
3910static LY_ERR
3911xpath_enum_value(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
3912{
3913 struct lyd_node_term *leaf;
3914 struct lysc_node_leaf *sleaf;
3915 LY_ERR rc = LY_SUCCESS;
3916
3917 if (options & LYXP_SCNODE_ALL) {
3918 if ((args[0]->type != LYXP_SET_SCNODE_SET) || !(sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3919 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003920 } else if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3921 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 +02003922 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_ENUM)) {
3923 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"enumeration\".", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003924 }
3925 set_scnode_clear_ctx(set);
3926 return rc;
3927 }
3928
Michal Vaskod3678892020-05-21 10:06:58 +02003929 if (args[0]->type != LYXP_SET_NODE_SET) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003930 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "enum-value(node-set)");
3931 return LY_EVALID;
3932 }
3933
3934 set_fill_number(set, NAN);
Michal Vaskod3678892020-05-21 10:06:58 +02003935 if (args[0]->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003936 leaf = (struct lyd_node_term *)args[0]->val.nodes[0].node;
3937 sleaf = (struct lysc_node_leaf *)leaf->schema;
3938 if ((sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST)) && (sleaf->type->basetype == LY_TYPE_ENUM)) {
3939 set_fill_number(set, leaf->value.enum_item->value);
3940 }
3941 }
3942
3943 return LY_SUCCESS;
3944}
3945
3946/**
3947 * @brief Execute the XPath false() function. Returns LYXP_SET_BOOLEAN
3948 * with false value.
3949 *
3950 * @param[in] args Array of arguments.
3951 * @param[in] arg_count Count of elements in @p args.
3952 * @param[in,out] set Context and result set at the same time.
3953 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003954 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003955 */
3956static LY_ERR
3957xpath_false(struct lyxp_set **UNUSED(args), uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
3958{
3959 if (options & LYXP_SCNODE_ALL) {
3960 set_scnode_clear_ctx(set);
3961 return LY_SUCCESS;
3962 }
3963
3964 set_fill_boolean(set, 0);
3965 return LY_SUCCESS;
3966}
3967
3968/**
3969 * @brief Execute the XPath floor(number) function. Returns LYXP_SET_NUMBER
3970 * with the first argument floored (truncated).
3971 *
3972 * @param[in] args Array of arguments.
3973 * @param[in] arg_count Count of elements in @p args.
3974 * @param[in,out] set Context and result set at the same time.
3975 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003976 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003977 */
3978static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003979xpath_floor(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, int UNUSED(options))
Michal Vasko03ff5a72019-09-11 13:49:33 +02003980{
3981 LY_ERR rc;
3982
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003983 rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003984 LY_CHECK_RET(rc);
3985 if (isfinite(args[0]->val.num)) {
3986 set_fill_number(set, (long long)args[0]->val.num);
3987 }
3988
3989 return LY_SUCCESS;
3990}
3991
3992/**
3993 * @brief Execute the XPath lang(string) function. Returns LYXP_SET_BOOLEAN
3994 * whether the language of the text matches the one from the argument.
3995 *
3996 * @param[in] args Array of arguments.
3997 * @param[in] arg_count Count of elements in @p args.
3998 * @param[in,out] set Context and result set at the same time.
3999 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004000 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004001 */
4002static LY_ERR
4003xpath_lang(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
4004{
4005 const struct lyd_node *node;
4006 struct lysc_node_leaf *sleaf;
Michal Vasko9f96a052020-03-10 09:41:45 +01004007 struct lyd_meta *meta = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004008 const char *val;
4009 int i, dynamic;
4010 LY_ERR rc = LY_SUCCESS;
4011
4012 if (options & LYXP_SCNODE_ALL) {
4013 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4014 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4015 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 +02004016 } else if (!warn_is_string_type(sleaf->type)) {
4017 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004018 }
4019 }
4020 set_scnode_clear_ctx(set);
4021 return rc;
4022 }
4023
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004024 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004025 LY_CHECK_RET(rc);
4026
Michal Vasko03ff5a72019-09-11 13:49:33 +02004027 if (set->type != LYXP_SET_NODE_SET) {
4028 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INCTX, print_set_type(set), "lang(string)");
4029 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004030 } else if (!set->used) {
4031 set_fill_boolean(set, 0);
4032 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004033 }
4034
4035 switch (set->val.nodes[0].type) {
4036 case LYXP_NODE_ELEM:
4037 case LYXP_NODE_TEXT:
4038 node = set->val.nodes[0].node;
4039 break;
Michal Vasko9f96a052020-03-10 09:41:45 +01004040 case LYXP_NODE_META:
4041 node = set->val.meta[0].meta->parent;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004042 break;
4043 default:
4044 /* nothing to do with roots */
4045 set_fill_boolean(set, 0);
4046 return LY_SUCCESS;
4047 }
4048
Michal Vasko9f96a052020-03-10 09:41:45 +01004049 /* find lang metadata */
Michal Vasko03ff5a72019-09-11 13:49:33 +02004050 for (; node; node = (struct lyd_node *)node->parent) {
Michal Vasko9f96a052020-03-10 09:41:45 +01004051 for (meta = node->meta; meta; meta = meta->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004052 /* annotations */
Michal Vasko9f96a052020-03-10 09:41:45 +01004053 if (meta->name && !strcmp(meta->name, "lang") && !strcmp(meta->annotation->module->name, "xml")) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004054 break;
4055 }
4056 }
4057
Michal Vasko9f96a052020-03-10 09:41:45 +01004058 if (meta) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004059 break;
4060 }
4061 }
4062
4063 /* compare languages */
Michal Vasko9f96a052020-03-10 09:41:45 +01004064 if (!meta) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004065 set_fill_boolean(set, 0);
4066 } else {
Michal Vasko9f96a052020-03-10 09:41:45 +01004067 val = lyd_meta2str(meta, &dynamic);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004068 for (i = 0; args[0]->val.str[i]; ++i) {
4069 if (tolower(args[0]->val.str[i]) != tolower(val[i])) {
4070 set_fill_boolean(set, 0);
4071 break;
4072 }
4073 }
4074 if (!args[0]->val.str[i]) {
4075 if (!val[i] || (val[i] == '-')) {
4076 set_fill_boolean(set, 1);
4077 } else {
4078 set_fill_boolean(set, 0);
4079 }
4080 }
4081 if (dynamic) {
4082 free((char *)val);
4083 }
4084 }
4085
4086 return LY_SUCCESS;
4087}
4088
4089/**
4090 * @brief Execute the XPath last() function. Returns LYXP_SET_NUMBER
4091 * with the context size.
4092 *
4093 * @param[in] args Array of arguments.
4094 * @param[in] arg_count Count of elements in @p args.
4095 * @param[in,out] set Context and result set at the same time.
4096 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004097 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004098 */
4099static LY_ERR
4100xpath_last(struct lyxp_set **UNUSED(args), uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
4101{
4102 if (options & LYXP_SCNODE_ALL) {
4103 set_scnode_clear_ctx(set);
4104 return LY_SUCCESS;
4105 }
4106
Michal Vasko03ff5a72019-09-11 13:49:33 +02004107 if (set->type != LYXP_SET_NODE_SET) {
4108 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INCTX, print_set_type(set), "last()");
4109 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004110 } else if (!set->used) {
4111 set_fill_number(set, 0);
4112 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004113 }
4114
4115 set_fill_number(set, set->ctx_size);
4116 return LY_SUCCESS;
4117}
4118
4119/**
4120 * @brief Execute the XPath local-name(node-set?) function. Returns LYXP_SET_STRING
4121 * with the node name without namespace from the argument or the context.
4122 *
4123 * @param[in] args Array of arguments.
4124 * @param[in] arg_count Count of elements in @p args.
4125 * @param[in,out] set Context and result set at the same time.
4126 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004127 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004128 */
4129static LY_ERR
4130xpath_local_name(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, int options)
4131{
4132 struct lyxp_set_node *item;
4133 /* suppress unused variable warning */
4134 (void)options;
4135
4136 if (options & LYXP_SCNODE_ALL) {
4137 set_scnode_clear_ctx(set);
4138 return LY_SUCCESS;
4139 }
4140
4141 if (arg_count) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004142 if (args[0]->type != LYXP_SET_NODE_SET) {
4143 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "local-name(node-set?)");
4144 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004145 } else if (!args[0]->used) {
4146 set_fill_string(set, "", 0);
4147 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004148 }
4149
4150 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004151 assert(!set_sort(args[0]));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004152
4153 item = &args[0]->val.nodes[0];
4154 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004155 if (set->type != LYXP_SET_NODE_SET) {
4156 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INCTX, print_set_type(set), "local-name(node-set?)");
4157 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004158 } else if (!set->used) {
4159 set_fill_string(set, "", 0);
4160 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004161 }
4162
4163 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004164 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004165
4166 item = &set->val.nodes[0];
4167 }
4168
4169 switch (item->type) {
Michal Vasko2caefc12019-11-14 16:07:56 +01004170 case LYXP_NODE_NONE:
4171 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004172 case LYXP_NODE_ROOT:
4173 case LYXP_NODE_ROOT_CONFIG:
4174 case LYXP_NODE_TEXT:
4175 set_fill_string(set, "", 0);
4176 break;
4177 case LYXP_NODE_ELEM:
4178 set_fill_string(set, item->node->schema->name, strlen(item->node->schema->name));
4179 break;
Michal Vasko9f96a052020-03-10 09:41:45 +01004180 case LYXP_NODE_META:
4181 set_fill_string(set, ((struct lyd_meta *)item->node)->name, strlen(((struct lyd_meta *)item->node)->name));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004182 break;
4183 }
4184
4185 return LY_SUCCESS;
4186}
4187
4188/**
4189 * @brief Execute the XPath name(node-set?) function. Returns LYXP_SET_STRING
4190 * with the node name fully qualified (with namespace) from the argument or the context.
4191 *
4192 * @param[in] args Array of arguments.
4193 * @param[in] arg_count Count of elements in @p args.
4194 * @param[in,out] set Context and result set at the same time.
4195 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004196 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004197 */
4198static LY_ERR
4199xpath_name(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, int options)
4200{
4201 struct lyxp_set_node *item;
Michal Vaskoed4fcfe2020-07-08 10:38:56 +02004202 struct lys_module *mod = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004203 char *str;
Michal Vaskoed4fcfe2020-07-08 10:38:56 +02004204 const char *name = NULL;
4205 int rc = -1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004206
4207 if (options & LYXP_SCNODE_ALL) {
4208 set_scnode_clear_ctx(set);
4209 return LY_SUCCESS;
4210 }
4211
4212 if (arg_count) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004213 if (args[0]->type != LYXP_SET_NODE_SET) {
4214 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "name(node-set?)");
4215 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004216 } else if (!args[0]->used) {
4217 set_fill_string(set, "", 0);
4218 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004219 }
4220
4221 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004222 assert(!set_sort(args[0]));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004223
4224 item = &args[0]->val.nodes[0];
4225 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004226 if (set->type != LYXP_SET_NODE_SET) {
4227 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INCTX, print_set_type(set), "name(node-set?)");
4228 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004229 } else if (!set->used) {
4230 set_fill_string(set, "", 0);
4231 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004232 }
4233
4234 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004235 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004236
4237 item = &set->val.nodes[0];
4238 }
4239
4240 switch (item->type) {
Michal Vasko2caefc12019-11-14 16:07:56 +01004241 case LYXP_NODE_NONE:
4242 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004243 case LYXP_NODE_ROOT:
4244 case LYXP_NODE_ROOT_CONFIG:
4245 case LYXP_NODE_TEXT:
Michal Vaskoed4fcfe2020-07-08 10:38:56 +02004246 /* keep NULL */
Michal Vasko03ff5a72019-09-11 13:49:33 +02004247 break;
4248 case LYXP_NODE_ELEM:
4249 mod = item->node->schema->module;
4250 name = item->node->schema->name;
4251 break;
Michal Vasko9f96a052020-03-10 09:41:45 +01004252 case LYXP_NODE_META:
4253 mod = ((struct lyd_meta *)item->node)->annotation->module;
4254 name = ((struct lyd_meta *)item->node)->name;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004255 break;
4256 }
4257
4258 if (mod && name) {
4259 switch (set->format) {
Michal Vasko52927e22020-03-16 17:26:14 +01004260 case LYD_SCHEMA:
Michal Vasko03ff5a72019-09-11 13:49:33 +02004261 rc = asprintf(&str, "%s:%s", lys_prefix_find_module(set->local_mod, mod), name);
4262 break;
4263 case LYD_JSON:
4264 rc = asprintf(&str, "%s:%s", mod->name, name);
4265 break;
Michal Vasko52927e22020-03-16 17:26:14 +01004266 case LYD_XML:
Michal Vasko60ea6352020-06-29 13:39:39 +02004267 case LYD_LYB:
Michal Vasko9409ef62019-09-12 11:47:17 +02004268 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004269 }
4270 LY_CHECK_ERR_RET(rc == -1, LOGMEM(set->ctx), LY_EMEM);
4271 set_fill_string(set, str, strlen(str));
4272 free(str);
4273 } else {
4274 set_fill_string(set, "", 0);
4275 }
4276
4277 return LY_SUCCESS;
4278}
4279
4280/**
4281 * @brief Execute the XPath namespace-uri(node-set?) function. Returns LYXP_SET_STRING
4282 * with the namespace of the node from the argument or the context.
4283 *
4284 * @param[in] args Array of arguments.
4285 * @param[in] arg_count Count of elements in @p args.
4286 * @param[in,out] set Context and result set at the same time.
4287 * @param[in] options XPath options.
4288 * @return LY_ERR (LY_EINVAL for wrong arguments on schema)
4289 */
4290static LY_ERR
4291xpath_namespace_uri(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, int options)
4292{
4293 struct lyxp_set_node *item;
4294 struct lys_module *mod;
4295 /* suppress unused variable warning */
4296 (void)options;
4297
4298 if (options & LYXP_SCNODE_ALL) {
4299 set_scnode_clear_ctx(set);
4300 return LY_SUCCESS;
4301 }
4302
4303 if (arg_count) {
Michal Vaskod3678892020-05-21 10:06:58 +02004304 if (args[0]->type != LYXP_SET_NODE_SET) {
4305 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]),
4306 "namespace-uri(node-set?)");
4307 return LY_EVALID;
4308 } else if (!args[0]->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004309 set_fill_string(set, "", 0);
4310 return LY_SUCCESS;
4311 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02004312
4313 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004314 assert(!set_sort(args[0]));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004315
4316 item = &args[0]->val.nodes[0];
4317 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004318 if (set->type != LYXP_SET_NODE_SET) {
4319 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INCTX, print_set_type(set), "namespace-uri(node-set?)");
4320 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004321 } else if (!set->used) {
4322 set_fill_string(set, "", 0);
4323 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004324 }
4325
4326 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004327 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004328
4329 item = &set->val.nodes[0];
4330 }
4331
4332 switch (item->type) {
Michal Vasko2caefc12019-11-14 16:07:56 +01004333 case LYXP_NODE_NONE:
4334 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004335 case LYXP_NODE_ROOT:
4336 case LYXP_NODE_ROOT_CONFIG:
4337 case LYXP_NODE_TEXT:
4338 set_fill_string(set, "", 0);
4339 break;
4340 case LYXP_NODE_ELEM:
Michal Vasko9f96a052020-03-10 09:41:45 +01004341 case LYXP_NODE_META:
Michal Vasko03ff5a72019-09-11 13:49:33 +02004342 if (item->type == LYXP_NODE_ELEM) {
4343 mod = item->node->schema->module;
Michal Vasko9f96a052020-03-10 09:41:45 +01004344 } else { /* LYXP_NODE_META */
Michal Vasko03ff5a72019-09-11 13:49:33 +02004345 /* annotations */
Michal Vasko9f96a052020-03-10 09:41:45 +01004346 mod = ((struct lyd_meta *)item->node)->annotation->module;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004347 }
4348
4349 set_fill_string(set, mod->ns, strlen(mod->ns));
4350 break;
4351 }
4352
4353 return LY_SUCCESS;
4354}
4355
4356/**
4357 * @brief Execute the XPath node() function (node type). Returns LYXP_SET_NODE_SET
4358 * with only nodes from the context. In practice it either leaves the context
4359 * as it is or returns an empty node set.
4360 *
4361 * @param[in] args Array of arguments.
4362 * @param[in] arg_count Count of elements in @p args.
4363 * @param[in,out] set Context and result set at the same time.
4364 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004365 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004366 */
4367static LY_ERR
4368xpath_node(struct lyxp_set **UNUSED(args), uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
4369{
4370 if (options & LYXP_SCNODE_ALL) {
4371 set_scnode_clear_ctx(set);
4372 return LY_SUCCESS;
4373 }
4374
4375 if (set->type != LYXP_SET_NODE_SET) {
Michal Vaskod3678892020-05-21 10:06:58 +02004376 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004377 }
4378 return LY_SUCCESS;
4379}
4380
4381/**
4382 * @brief Execute the XPath normalize-space(string?) function. Returns LYXP_SET_STRING
4383 * with normalized value (no leading, trailing, double white spaces) of the node
4384 * from the argument or the context.
4385 *
4386 * @param[in] args Array of arguments.
4387 * @param[in] arg_count Count of elements in @p args.
4388 * @param[in,out] set Context and result set at the same time.
4389 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004390 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004391 */
4392static LY_ERR
4393xpath_normalize_space(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, int options)
4394{
4395 uint16_t i, new_used;
4396 char *new;
4397 int have_spaces = 0, space_before = 0;
4398 struct lysc_node_leaf *sleaf;
4399 LY_ERR rc = LY_SUCCESS;
4400
4401 if (options & LYXP_SCNODE_ALL) {
4402 if (arg_count && (args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4403 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4404 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 +02004405 } else if (!warn_is_string_type(sleaf->type)) {
4406 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004407 }
4408 }
4409 set_scnode_clear_ctx(set);
4410 return rc;
4411 }
4412
4413 if (arg_count) {
4414 set_fill_set(set, args[0]);
4415 }
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004416 rc = lyxp_set_cast(set, LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004417 LY_CHECK_RET(rc);
4418
4419 /* is there any normalization necessary? */
4420 for (i = 0; set->val.str[i]; ++i) {
4421 if (is_xmlws(set->val.str[i])) {
4422 if ((i == 0) || space_before || (!set->val.str[i + 1])) {
4423 have_spaces = 1;
4424 break;
4425 }
4426 space_before = 1;
4427 } else {
4428 space_before = 0;
4429 }
4430 }
4431
4432 /* yep, there is */
4433 if (have_spaces) {
4434 /* it's enough, at least one character will go, makes space for ending '\0' */
4435 new = malloc(strlen(set->val.str) * sizeof(char));
4436 LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM);
4437 new_used = 0;
4438
4439 space_before = 0;
4440 for (i = 0; set->val.str[i]; ++i) {
4441 if (is_xmlws(set->val.str[i])) {
4442 if ((i == 0) || space_before) {
4443 space_before = 1;
4444 continue;
4445 } else {
4446 space_before = 1;
4447 }
4448 } else {
4449 space_before = 0;
4450 }
4451
4452 new[new_used] = (space_before ? ' ' : set->val.str[i]);
4453 ++new_used;
4454 }
4455
4456 /* at worst there is one trailing space now */
4457 if (new_used && is_xmlws(new[new_used - 1])) {
4458 --new_used;
4459 }
4460
4461 new = ly_realloc(new, (new_used + 1) * sizeof(char));
4462 LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM);
4463 new[new_used] = '\0';
4464
4465 free(set->val.str);
4466 set->val.str = new;
4467 }
4468
4469 return LY_SUCCESS;
4470}
4471
4472/**
4473 * @brief Execute the XPath not(boolean) function. Returns LYXP_SET_BOOLEAN
4474 * with the argument converted to boolean and logically inverted.
4475 *
4476 * @param[in] args Array of arguments.
4477 * @param[in] arg_count Count of elements in @p args.
4478 * @param[in,out] set Context and result set at the same time.
4479 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004480 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004481 */
4482static LY_ERR
4483xpath_not(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
4484{
4485 if (options & LYXP_SCNODE_ALL) {
4486 set_scnode_clear_ctx(set);
4487 return LY_SUCCESS;
4488 }
4489
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004490 lyxp_set_cast(args[0], LYXP_SET_BOOLEAN);
Michal Vasko004d3152020-06-11 19:59:22 +02004491 if (args[0]->val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004492 set_fill_boolean(set, 0);
4493 } else {
4494 set_fill_boolean(set, 1);
4495 }
4496
4497 return LY_SUCCESS;
4498}
4499
4500/**
4501 * @brief Execute the XPath number(object?) function. Returns LYXP_SET_NUMBER
4502 * with the number representation of either the argument or the context.
4503 *
4504 * @param[in] args Array of arguments.
4505 * @param[in] arg_count Count of elements in @p args.
4506 * @param[in,out] set Context and result set at the same time.
4507 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004508 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004509 */
4510static LY_ERR
4511xpath_number(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, int options)
4512{
4513 LY_ERR rc;
4514
4515 if (options & LYXP_SCNODE_ALL) {
4516 set_scnode_clear_ctx(set);
4517 return LY_SUCCESS;
4518 }
4519
4520 if (arg_count) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004521 rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004522 LY_CHECK_RET(rc);
4523 set_fill_set(set, args[0]);
4524 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004525 rc = lyxp_set_cast(set, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004526 LY_CHECK_RET(rc);
4527 }
4528
4529 return LY_SUCCESS;
4530}
4531
4532/**
4533 * @brief Execute the XPath position() function. Returns LYXP_SET_NUMBER
4534 * with the context position.
4535 *
4536 * @param[in] args Array of arguments.
4537 * @param[in] arg_count Count of elements in @p args.
4538 * @param[in,out] set Context and result set at the same time.
4539 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004540 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004541 */
4542static LY_ERR
4543xpath_position(struct lyxp_set **UNUSED(args), uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
4544{
4545 if (options & LYXP_SCNODE_ALL) {
4546 set_scnode_clear_ctx(set);
4547 return LY_SUCCESS;
4548 }
4549
Michal Vasko03ff5a72019-09-11 13:49:33 +02004550 if (set->type != LYXP_SET_NODE_SET) {
4551 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INCTX, print_set_type(set), "position()");
4552 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004553 } else if (!set->used) {
4554 set_fill_number(set, 0);
4555 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004556 }
4557
4558 set_fill_number(set, set->ctx_pos);
4559
4560 /* UNUSED in 'Release' build type */
4561 (void)options;
4562 return LY_SUCCESS;
4563}
4564
4565/**
4566 * @brief Execute the YANG 1.1 re-match(string, string) function. Returns LYXP_SET_BOOLEAN
4567 * depending on whether the second argument regex matches the first argument string. For details refer to
4568 * YANG 1.1 RFC section 10.2.1.
4569 *
4570 * @param[in] args Array of arguments.
4571 * @param[in] arg_count Count of elements in @p args.
4572 * @param[in,out] set Context and result set at the same time.
4573 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004574 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004575 */
4576static LY_ERR
4577xpath_re_match(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
4578{
4579 struct lysc_pattern **patterns = NULL, **pattern;
4580 struct lysc_node_leaf *sleaf;
4581 char *path;
4582 LY_ERR rc = LY_SUCCESS;
4583 struct ly_err_item *err;
4584
4585 if (options & LYXP_SCNODE_ALL) {
4586 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4587 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4588 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 +02004589 } else if (!warn_is_string_type(sleaf->type)) {
4590 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004591 }
4592 }
4593
4594 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4595 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4596 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 +02004597 } else if (!warn_is_string_type(sleaf->type)) {
4598 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004599 }
4600 }
4601 set_scnode_clear_ctx(set);
4602 return rc;
4603 }
4604
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004605 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004606 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004607 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004608 LY_CHECK_RET(rc);
4609
4610 LY_ARRAY_NEW_RET(set->ctx, patterns, pattern, LY_EMEM);
4611 *pattern = malloc(sizeof **pattern);
4612 path = lyd_path(set->ctx_node, LYD_PATH_LOG, NULL, 0);
4613 rc = lys_compile_type_pattern_check(set->ctx, path, args[1]->val.str, &(*pattern)->code);
4614 free(path);
4615 if (rc != LY_SUCCESS) {
4616 LY_ARRAY_FREE(patterns);
4617 return rc;
4618 }
4619
4620 rc = ly_type_validate_patterns(patterns, args[0]->val.str, strlen(args[0]->val.str), &err);
4621 pcre2_code_free((*pattern)->code);
4622 free(*pattern);
4623 LY_ARRAY_FREE(patterns);
4624 if (rc && (rc != LY_EVALID)) {
4625 ly_err_print(err);
4626 ly_err_free(err);
4627 return rc;
4628 }
4629
4630 if (rc == LY_EVALID) {
4631 ly_err_free(err);
4632 set_fill_boolean(set, 0);
4633 } else {
4634 set_fill_boolean(set, 1);
4635 }
4636
4637 return LY_SUCCESS;
4638}
4639
4640/**
4641 * @brief Execute the XPath round(number) function. Returns LYXP_SET_NUMBER
4642 * with the rounded first argument. For details refer to
4643 * http://www.w3.org/TR/1999/REC-xpath-19991116/#function-round.
4644 *
4645 * @param[in] args Array of arguments.
4646 * @param[in] arg_count Count of elements in @p args.
4647 * @param[in,out] set Context and result set at the same time.
4648 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004649 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004650 */
4651static LY_ERR
4652xpath_round(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
4653{
4654 struct lysc_node_leaf *sleaf;
4655 LY_ERR rc = LY_SUCCESS;
4656
4657 if (options & LYXP_SCNODE_ALL) {
4658 if ((args[0]->type != LYXP_SET_SCNODE_SET) || !(sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4659 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004660 } else if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4661 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 +02004662 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_DEC64)) {
4663 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"decimal64\".", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004664 }
4665 set_scnode_clear_ctx(set);
4666 return rc;
4667 }
4668
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004669 rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004670 LY_CHECK_RET(rc);
4671
4672 /* cover only the cases where floor can't be used */
4673 if ((args[0]->val.num == -0.0f) || ((args[0]->val.num < 0) && (args[0]->val.num >= -0.5))) {
4674 set_fill_number(set, -0.0f);
4675 } else {
4676 args[0]->val.num += 0.5;
4677 rc = xpath_floor(args, 1, args[0], options);
4678 LY_CHECK_RET(rc);
4679 set_fill_number(set, args[0]->val.num);
4680 }
4681
4682 return LY_SUCCESS;
4683}
4684
4685/**
4686 * @brief Execute the XPath starts-with(string, string) function.
4687 * Returns LYXP_SET_BOOLEAN whether the second argument is
4688 * the prefix of the first or not.
4689 *
4690 * @param[in] args Array of arguments.
4691 * @param[in] arg_count Count of elements in @p args.
4692 * @param[in,out] set Context and result set at the same time.
4693 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004694 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004695 */
4696static LY_ERR
4697xpath_starts_with(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
4698{
4699 struct lysc_node_leaf *sleaf;
4700 LY_ERR rc = LY_SUCCESS;
4701
4702 if (options & LYXP_SCNODE_ALL) {
4703 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4704 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4705 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 +02004706 } else if (!warn_is_string_type(sleaf->type)) {
4707 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004708 }
4709 }
4710
4711 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4712 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4713 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 +02004714 } else if (!warn_is_string_type(sleaf->type)) {
4715 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004716 }
4717 }
4718 set_scnode_clear_ctx(set);
4719 return rc;
4720 }
4721
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004722 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004723 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004724 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004725 LY_CHECK_RET(rc);
4726
4727 if (strncmp(args[0]->val.str, args[1]->val.str, strlen(args[1]->val.str))) {
4728 set_fill_boolean(set, 0);
4729 } else {
4730 set_fill_boolean(set, 1);
4731 }
4732
4733 return LY_SUCCESS;
4734}
4735
4736/**
4737 * @brief Execute the XPath string(object?) function. Returns LYXP_SET_STRING
4738 * with the string representation of either the argument or the context.
4739 *
4740 * @param[in] args Array of arguments.
4741 * @param[in] arg_count Count of elements in @p args.
4742 * @param[in,out] set Context and result set at the same time.
4743 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004744 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004745 */
4746static LY_ERR
4747xpath_string(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, int options)
4748{
4749 LY_ERR rc;
4750
4751 if (options & LYXP_SCNODE_ALL) {
4752 set_scnode_clear_ctx(set);
4753 return LY_SUCCESS;
4754 }
4755
4756 if (arg_count) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004757 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004758 LY_CHECK_RET(rc);
4759 set_fill_set(set, args[0]);
4760 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004761 rc = lyxp_set_cast(set, LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004762 LY_CHECK_RET(rc);
4763 }
4764
4765 return LY_SUCCESS;
4766}
4767
4768/**
4769 * @brief Execute the XPath string-length(string?) function. Returns LYXP_SET_NUMBER
4770 * with the length of the string in either the argument or the context.
4771 *
4772 * @param[in] args Array of arguments.
4773 * @param[in] arg_count Count of elements in @p args.
4774 * @param[in,out] set Context and result set at the same time.
4775 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004776 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004777 */
4778static LY_ERR
4779xpath_string_length(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, int options)
4780{
4781 struct lysc_node_leaf *sleaf;
4782 LY_ERR rc = LY_SUCCESS;
4783
4784 if (options & LYXP_SCNODE_ALL) {
4785 if (arg_count && (args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4786 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4787 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 +02004788 } else if (!warn_is_string_type(sleaf->type)) {
4789 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004790 }
4791 }
4792 if (!arg_count && (set->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(set))) {
4793 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4794 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 +02004795 } else if (!warn_is_string_type(sleaf->type)) {
4796 LOGWRN(set->ctx, "Argument #0 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004797 }
4798 }
4799 set_scnode_clear_ctx(set);
4800 return rc;
4801 }
4802
4803 if (arg_count) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004804 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004805 LY_CHECK_RET(rc);
4806 set_fill_number(set, strlen(args[0]->val.str));
4807 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004808 rc = lyxp_set_cast(set, LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004809 LY_CHECK_RET(rc);
4810 set_fill_number(set, strlen(set->val.str));
4811 }
4812
4813 return LY_SUCCESS;
4814}
4815
4816/**
4817 * @brief Execute the XPath substring(string, number, number?) function.
4818 * Returns LYXP_SET_STRING substring of the first argument starting
4819 * on the second argument index ending on the third argument index,
4820 * indexed from 1. For exact definition refer to
4821 * http://www.w3.org/TR/1999/REC-xpath-19991116/#function-substring.
4822 *
4823 * @param[in] args Array of arguments.
4824 * @param[in] arg_count Count of elements in @p args.
4825 * @param[in,out] set Context and result set at the same time.
4826 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004827 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004828 */
4829static LY_ERR
4830xpath_substring(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, int options)
4831{
4832 int start, len;
4833 uint16_t str_start, str_len, pos;
4834 struct lysc_node_leaf *sleaf;
4835 LY_ERR rc = LY_SUCCESS;
4836
4837 if (options & LYXP_SCNODE_ALL) {
4838 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4839 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4840 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 +02004841 } else if (!warn_is_string_type(sleaf->type)) {
4842 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004843 }
4844 }
4845
4846 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4847 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4848 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 +02004849 } else if (!warn_is_numeric_type(sleaf->type)) {
4850 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of numeric type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004851 }
4852 }
4853
4854 if ((arg_count == 3) && (args[2]->type == LYXP_SET_SCNODE_SET)
4855 && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[2]))) {
4856 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4857 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 +02004858 } else if (!warn_is_numeric_type(sleaf->type)) {
4859 LOGWRN(set->ctx, "Argument #3 of %s is node \"%s\", not of numeric type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004860 }
4861 }
4862 set_scnode_clear_ctx(set);
4863 return rc;
4864 }
4865
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004866 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004867 LY_CHECK_RET(rc);
4868
4869 /* start */
4870 if (xpath_round(&args[1], 1, args[1], options)) {
4871 return -1;
4872 }
4873 if (isfinite(args[1]->val.num)) {
4874 start = args[1]->val.num - 1;
4875 } else if (isinf(args[1]->val.num) && signbit(args[1]->val.num)) {
4876 start = INT_MIN;
4877 } else {
4878 start = INT_MAX;
4879 }
4880
4881 /* len */
4882 if (arg_count == 3) {
4883 rc = xpath_round(&args[2], 1, args[2], options);
4884 LY_CHECK_RET(rc);
4885 if (isfinite(args[2]->val.num)) {
4886 len = args[2]->val.num;
4887 } else if (isnan(args[2]->val.num) || signbit(args[2]->val.num)) {
4888 len = 0;
4889 } else {
4890 len = INT_MAX;
4891 }
4892 } else {
4893 len = INT_MAX;
4894 }
4895
4896 /* find matching character positions */
4897 str_start = 0;
4898 str_len = 0;
4899 for (pos = 0; args[0]->val.str[pos]; ++pos) {
4900 if (pos < start) {
4901 ++str_start;
4902 } else if (pos < start + len) {
4903 ++str_len;
4904 } else {
4905 break;
4906 }
4907 }
4908
4909 set_fill_string(set, args[0]->val.str + str_start, str_len);
4910 return LY_SUCCESS;
4911}
4912
4913/**
4914 * @brief Execute the XPath substring-after(string, string) function.
4915 * Returns LYXP_SET_STRING with the string succeeding the occurance
4916 * of the second argument in the first or an empty string.
4917 *
4918 * @param[in] args Array of arguments.
4919 * @param[in] arg_count Count of elements in @p args.
4920 * @param[in,out] set Context and result set at the same time.
4921 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004922 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004923 */
4924static LY_ERR
4925xpath_substring_after(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
4926{
4927 char *ptr;
4928 struct lysc_node_leaf *sleaf;
4929 LY_ERR rc = LY_SUCCESS;
4930
4931 if (options & LYXP_SCNODE_ALL) {
4932 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4933 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4934 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004935 } else if (!warn_is_string_type(sleaf->type)) {
4936 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004937 }
4938 }
4939
4940 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4941 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4942 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 +02004943 } else if (!warn_is_string_type(sleaf->type)) {
4944 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004945 }
4946 }
4947 set_scnode_clear_ctx(set);
4948 return rc;
4949 }
4950
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004951 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004952 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004953 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004954 LY_CHECK_RET(rc);
4955
4956 ptr = strstr(args[0]->val.str, args[1]->val.str);
4957 if (ptr) {
4958 set_fill_string(set, ptr + strlen(args[1]->val.str), strlen(ptr + strlen(args[1]->val.str)));
4959 } else {
4960 set_fill_string(set, "", 0);
4961 }
4962
4963 return LY_SUCCESS;
4964}
4965
4966/**
4967 * @brief Execute the XPath substring-before(string, string) function.
4968 * Returns LYXP_SET_STRING with the string preceding the occurance
4969 * of the second argument in the first or an empty string.
4970 *
4971 * @param[in] args Array of arguments.
4972 * @param[in] arg_count Count of elements in @p args.
4973 * @param[in,out] set Context and result set at the same time.
4974 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004975 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004976 */
4977static LY_ERR
4978xpath_substring_before(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
4979{
4980 char *ptr;
4981 struct lysc_node_leaf *sleaf;
4982 LY_ERR rc = LY_SUCCESS;
4983
4984 if (options & LYXP_SCNODE_ALL) {
4985 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4986 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4987 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 +02004988 } else if (!warn_is_string_type(sleaf->type)) {
4989 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004990 }
4991 }
4992
4993 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4994 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4995 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 +02004996 } else if (!warn_is_string_type(sleaf->type)) {
4997 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004998 }
4999 }
5000 set_scnode_clear_ctx(set);
5001 return rc;
5002 }
5003
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005004 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005005 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005006 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005007 LY_CHECK_RET(rc);
5008
5009 ptr = strstr(args[0]->val.str, args[1]->val.str);
5010 if (ptr) {
5011 set_fill_string(set, args[0]->val.str, ptr - args[0]->val.str);
5012 } else {
5013 set_fill_string(set, "", 0);
5014 }
5015
5016 return LY_SUCCESS;
5017}
5018
5019/**
5020 * @brief Execute the XPath sum(node-set) function. Returns LYXP_SET_NUMBER
5021 * with the sum of all the nodes in the context.
5022 *
5023 * @param[in] args Array of arguments.
5024 * @param[in] arg_count Count of elements in @p args.
5025 * @param[in,out] set Context and result set at the same time.
5026 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005027 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005028 */
5029static LY_ERR
5030xpath_sum(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
5031{
5032 long double num;
5033 char *str;
5034 uint16_t i;
5035 struct lyxp_set set_item;
5036 struct lysc_node_leaf *sleaf;
5037 LY_ERR rc = LY_SUCCESS;
5038
5039 if (options & LYXP_SCNODE_ALL) {
5040 if (args[0]->type == LYXP_SET_SCNODE_SET) {
5041 for (i = 0; i < args[0]->used; ++i) {
5042 if (args[0]->val.scnodes[i].in_ctx == 1) {
5043 sleaf = (struct lysc_node_leaf *)args[0]->val.scnodes[i].scnode;
5044 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5045 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__,
5046 lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005047 } else if (!warn_is_numeric_type(sleaf->type)) {
5048 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of numeric type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005049 }
5050 }
5051 }
5052 }
5053 set_scnode_clear_ctx(set);
5054 return rc;
5055 }
5056
5057 set_fill_number(set, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005058
5059 if (args[0]->type != LYXP_SET_NODE_SET) {
5060 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "sum(node-set)");
5061 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02005062 } else if (!args[0]->used) {
5063 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005064 }
5065
Michal Vasko5c4e5892019-11-14 12:31:38 +01005066 set_init(&set_item, set);
5067
Michal Vasko03ff5a72019-09-11 13:49:33 +02005068 set_item.type = LYXP_SET_NODE_SET;
5069 set_item.val.nodes = malloc(sizeof *set_item.val.nodes);
5070 LY_CHECK_ERR_RET(!set_item.val.nodes, LOGMEM(set->ctx), LY_EMEM);
5071
5072 set_item.used = 1;
5073 set_item.size = 1;
5074
5075 for (i = 0; i < args[0]->used; ++i) {
5076 set_item.val.nodes[0] = args[0]->val.nodes[i];
5077
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005078 rc = cast_node_set_to_string(&set_item, &str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005079 LY_CHECK_RET(rc);
5080 num = cast_string_to_number(str);
5081 free(str);
5082 set->val.num += num;
5083 }
5084
5085 free(set_item.val.nodes);
5086
5087 return LY_SUCCESS;
5088}
5089
5090/**
5091 * @brief Execute the XPath text() function (node type). Returns LYXP_SET_NODE_SET
5092 * with the text content of the nodes in the context.
5093 *
5094 * @param[in] args Array of arguments.
5095 * @param[in] arg_count Count of elements in @p args.
5096 * @param[in,out] set Context and result set at the same time.
5097 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005098 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005099 */
5100static LY_ERR
5101xpath_text(struct lyxp_set **UNUSED(args), uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
5102{
5103 uint32_t i;
5104
5105 if (options & LYXP_SCNODE_ALL) {
5106 set_scnode_clear_ctx(set);
5107 return LY_SUCCESS;
5108 }
5109
Michal Vasko03ff5a72019-09-11 13:49:33 +02005110 if (set->type != LYXP_SET_NODE_SET) {
5111 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INCTX, print_set_type(set), "text()");
5112 return LY_EVALID;
5113 }
5114
5115 for (i = 0; i < set->used;) {
5116 switch (set->val.nodes[i].type) {
Michal Vasko2caefc12019-11-14 16:07:56 +01005117 case LYXP_NODE_NONE:
5118 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005119 case LYXP_NODE_ELEM:
Michal Vasko03ff5a72019-09-11 13:49:33 +02005120 if (set->val.nodes[i].node->schema->nodetype & (LYS_LEAF | LYS_LEAFLIST)) {
5121 set->val.nodes[i].type = LYXP_NODE_TEXT;
5122 ++i;
5123 break;
5124 }
5125 /* fall through */
5126 case LYXP_NODE_ROOT:
5127 case LYXP_NODE_ROOT_CONFIG:
5128 case LYXP_NODE_TEXT:
Michal Vasko9f96a052020-03-10 09:41:45 +01005129 case LYXP_NODE_META:
Michal Vasko03ff5a72019-09-11 13:49:33 +02005130 set_remove_node(set, i);
5131 break;
5132 }
5133 }
5134
5135 return LY_SUCCESS;
5136}
5137
5138/**
5139 * @brief Execute the XPath translate(string, string, string) function.
5140 * Returns LYXP_SET_STRING with the first argument with the characters
5141 * from the second argument replaced by those on the corresponding
5142 * positions in the third argument.
5143 *
5144 * @param[in] args Array of arguments.
5145 * @param[in] arg_count Count of elements in @p args.
5146 * @param[in,out] set Context and result set at the same time.
5147 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005148 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005149 */
5150static LY_ERR
5151xpath_translate(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
5152{
5153 uint16_t i, j, new_used;
5154 char *new;
5155 int found, have_removed;
5156 struct lysc_node_leaf *sleaf;
5157 LY_ERR rc = LY_SUCCESS;
5158
5159 if (options & LYXP_SCNODE_ALL) {
5160 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
5161 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5162 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 +02005163 } else if (!warn_is_string_type(sleaf->type)) {
5164 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005165 }
5166 }
5167
5168 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
5169 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5170 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 +02005171 } else if (!warn_is_string_type(sleaf->type)) {
5172 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005173 }
5174 }
5175
5176 if ((args[2]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[2]))) {
5177 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5178 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 +02005179 } else if (!warn_is_string_type(sleaf->type)) {
5180 LOGWRN(set->ctx, "Argument #3 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005181 }
5182 }
5183 set_scnode_clear_ctx(set);
5184 return rc;
5185 }
5186
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005187 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005188 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005189 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005190 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005191 rc = lyxp_set_cast(args[2], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005192 LY_CHECK_RET(rc);
5193
5194 new = malloc((strlen(args[0]->val.str) + 1) * sizeof(char));
5195 LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM);
5196 new_used = 0;
5197
5198 have_removed = 0;
5199 for (i = 0; args[0]->val.str[i]; ++i) {
5200 found = 0;
5201
5202 for (j = 0; args[1]->val.str[j]; ++j) {
5203 if (args[0]->val.str[i] == args[1]->val.str[j]) {
5204 /* removing this char */
5205 if (j >= strlen(args[2]->val.str)) {
5206 have_removed = 1;
5207 found = 1;
5208 break;
5209 }
5210 /* replacing this char */
5211 new[new_used] = args[2]->val.str[j];
5212 ++new_used;
5213 found = 1;
5214 break;
5215 }
5216 }
5217
5218 /* copying this char */
5219 if (!found) {
5220 new[new_used] = args[0]->val.str[i];
5221 ++new_used;
5222 }
5223 }
5224
5225 if (have_removed) {
5226 new = ly_realloc(new, (new_used + 1) * sizeof(char));
5227 LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM);
5228 }
5229 new[new_used] = '\0';
5230
Michal Vaskod3678892020-05-21 10:06:58 +02005231 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005232 set->type = LYXP_SET_STRING;
5233 set->val.str = new;
5234
5235 return LY_SUCCESS;
5236}
5237
5238/**
5239 * @brief Execute the XPath true() function. Returns LYXP_SET_BOOLEAN
5240 * with true value.
5241 *
5242 * @param[in] args Array of arguments.
5243 * @param[in] arg_count Count of elements in @p args.
5244 * @param[in,out] set Context and result set at the same time.
5245 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005246 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005247 */
5248static LY_ERR
5249xpath_true(struct lyxp_set **UNUSED(args), uint16_t UNUSED(arg_count), struct lyxp_set *set, int options)
5250{
5251 if (options & LYXP_SCNODE_ALL) {
5252 set_scnode_clear_ctx(set);
5253 return LY_SUCCESS;
5254 }
5255
5256 set_fill_boolean(set, 1);
5257 return LY_SUCCESS;
5258}
5259
5260/*
5261 * moveto functions
5262 *
5263 * They and only they actually change the context (set).
5264 */
5265
5266/**
Michal Vasko6346ece2019-09-24 13:12:53 +02005267 * @brief Skip prefix and return corresponding model if there is a prefix. Logs directly.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005268 *
Michal Vasko2104e9f2020-03-06 08:23:25 +01005269 * XPath @p set is expected to be a (sc)node set!
5270 *
Michal Vasko6346ece2019-09-24 13:12:53 +02005271 * @param[in,out] qname Qualified node name. If includes prefix, it is skipped.
5272 * @param[in,out] qname_len Length of @p qname, is updated accordingly.
5273 * @param[in] set Set with XPath context.
5274 * @param[out] moveto_mod Expected module of a matching node.
5275 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005276 */
Michal Vasko6346ece2019-09-24 13:12:53 +02005277static LY_ERR
5278moveto_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 +02005279{
Michal Vaskoed4fcfe2020-07-08 10:38:56 +02005280 const struct lys_module *mod = NULL;
Michal Vasko6346ece2019-09-24 13:12:53 +02005281 const char *ptr;
5282 int pref_len;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005283
Michal Vasko2104e9f2020-03-06 08:23:25 +01005284 assert((set->type == LYXP_SET_NODE_SET) || (set->type == LYXP_SET_SCNODE_SET));
5285
Michal Vasko6346ece2019-09-24 13:12:53 +02005286 if ((ptr = ly_strnchr(*qname, ':', *qname_len))) {
5287 /* specific module */
5288 pref_len = ptr - *qname;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005289
Michal Vasko6346ece2019-09-24 13:12:53 +02005290 switch (set->format) {
Michal Vasko52927e22020-03-16 17:26:14 +01005291 case LYD_SCHEMA:
Michal Vasko6346ece2019-09-24 13:12:53 +02005292 /* schema, search all local module imports */
5293 mod = lys_module_find_prefix(set->local_mod, *qname, pref_len);
5294 break;
5295 case LYD_JSON:
5296 /* JSON data, search in context */
Radek Krejci0ad51f12020-07-16 12:08:12 +02005297 mod = ly_ctx_get_module_implemented2(set->ctx, *qname, pref_len);
Michal Vasko6346ece2019-09-24 13:12:53 +02005298 break;
Michal Vasko52927e22020-03-16 17:26:14 +01005299 case LYD_XML:
Michal Vasko60ea6352020-06-29 13:39:39 +02005300 case LYD_LYB:
Michal Vasko6346ece2019-09-24 13:12:53 +02005301 LOGINT_RET(set->ctx);
5302 }
5303
Michal Vasko004d3152020-06-11 19:59:22 +02005304 /* check for errors and non-implemented modules, as they are not valid */
Juraj Vijtiukd75faa62019-11-26 14:10:10 +01005305 if (!mod || !mod->implemented) {
Michal Vasko2104e9f2020-03-06 08:23:25 +01005306 if (set->type == LYXP_SET_SCNODE_SET) {
5307 LOGVAL(set->ctx, LY_VLOG_LYSC, set->ctx_scnode, LY_VCODE_XP_INMOD, pref_len, *qname);
5308 } else {
5309 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INMOD, pref_len, *qname);
5310 }
Michal Vasko6346ece2019-09-24 13:12:53 +02005311 return LY_EVALID;
5312 }
Juraj Vijtiukd75faa62019-11-26 14:10:10 +01005313
Michal Vasko6346ece2019-09-24 13:12:53 +02005314 *qname += pref_len + 1;
5315 *qname_len -= pref_len + 1;
5316 } else if (((*qname)[0] == '*') && (*qname_len == 1)) {
5317 /* all modules - special case */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005318 mod = NULL;
Michal Vasko004d3152020-06-11 19:59:22 +02005319 } else if (set->type == LYXP_SET_SCNODE_SET) {
5320 /* current node module */
5321 mod = set->ctx_scnode->module;
Michal Vasko6346ece2019-09-24 13:12:53 +02005322 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02005323 /* current node module */
5324 mod = set->ctx_node->schema->module;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005325 }
5326
Michal Vasko6346ece2019-09-24 13:12:53 +02005327 *moveto_mod = mod;
5328 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005329}
5330
5331/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02005332 * @brief Move context @p set to the root. Handles absolute path.
5333 * Result is LYXP_SET_NODE_SET.
5334 *
5335 * @param[in,out] set Set to use.
5336 * @param[in] options Xpath options.
5337 */
5338static void
5339moveto_root(struct lyxp_set *set, int options)
5340{
Michal Vasko03ff5a72019-09-11 13:49:33 +02005341 if (!set) {
5342 return;
5343 }
5344
5345 if (options & LYXP_SCNODE_ALL) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005346 set_scnode_clear_ctx(set);
Michal Vaskoecd62de2019-11-13 12:35:11 +01005347 lyxp_set_scnode_insert_node(set, NULL, set->root_type);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005348 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02005349 set->type = LYXP_SET_NODE_SET;
5350 set->used = 0;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005351 set_insert_node(set, NULL, 0, set->root_type, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005352 }
5353}
5354
5355/**
Michal Vaskoa1424542019-11-14 16:08:52 +01005356 * @brief Check whether a node has some unresolved "when".
5357 *
5358 * @param[in] node Node to check.
5359 * @return LY_ERR value (LY_EINCOMPLETE if there are some unresolved "when")
5360 */
5361static LY_ERR
5362moveto_when_check(const struct lyd_node *node)
5363{
5364 const struct lysc_node *schema;
5365
5366 if (!node) {
5367 return LY_SUCCESS;
5368 }
5369
5370 schema = node->schema;
5371 do {
5372 if (schema->when && !(node->flags & LYD_WHEN_TRUE)) {
5373 return LY_EINCOMPLETE;
5374 }
5375 schema = schema->parent;
5376 } while (schema && (schema->nodetype & (LYS_CASE | LYS_CHOICE)));
5377
5378 return LY_SUCCESS;
5379}
5380
5381/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02005382 * @brief Check @p node as a part of NameTest processing.
5383 *
5384 * @param[in] node Node to check.
5385 * @param[in] root_type XPath root node type.
Michal Vasko6b26e742020-07-17 15:02:10 +02005386 * @param[in] context_op XPath operation parent.
Michal Vaskod3678892020-05-21 10:06:58 +02005387 * @param[in] node_name Node name in the dictionary to move to, NULL for any node.
5388 * @param[in] moveto_mod Expected module of the node, NULL for any.
Michal Vasko6346ece2019-09-24 13:12:53 +02005389 * @return LY_ERR (LY_ENOT if node does not match, LY_EINCOMPLETE on unresolved when,
5390 * LY_EINVAL if netither node nor any children match)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005391 */
5392static LY_ERR
Michal Vasko6b26e742020-07-17 15:02:10 +02005393moveto_node_check(const struct lyd_node *node, enum lyxp_node_type root_type, const struct lysc_node *context_op,
5394 const char *node_name, const struct lys_module *moveto_mod)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005395{
5396 /* module check */
5397 if (moveto_mod && (node->schema->module != moveto_mod)) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005398 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005399 }
5400
Michal Vasko5c4e5892019-11-14 12:31:38 +01005401 /* context check */
5402 if ((root_type == LYXP_NODE_ROOT_CONFIG) && (node->schema->flags & LYS_CONFIG_R)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005403 return LY_EINVAL;
Michal Vasko6b26e742020-07-17 15:02:10 +02005404 } else if (context_op && (node->schema->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) && (node->schema != context_op)) {
5405 return LY_EINVAL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005406 }
5407
5408 /* name check */
Michal Vasko61ac2f62020-05-25 12:39:51 +02005409 if (node_name && strcmp(node_name, "*") && (node->schema->name != node_name)) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005410 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005411 }
5412
Michal Vaskoa1424542019-11-14 16:08:52 +01005413 /* when check */
5414 if (moveto_when_check(node)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005415 return LY_EINCOMPLETE;
Michal Vaskoa1424542019-11-14 16:08:52 +01005416 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005417
5418 /* match */
5419 return LY_SUCCESS;
5420}
5421
5422/**
5423 * @brief Check @p node as a part of schema NameTest processing.
5424 *
5425 * @param[in] node Schema node to check.
5426 * @param[in] root_type XPath root node type.
Michal Vasko6b26e742020-07-17 15:02:10 +02005427 * @param[in] context_op XPath operation parent.
Michal Vaskod3678892020-05-21 10:06:58 +02005428 * @param[in] node_name Node name in the dictionary to move to, NULL for any nodes.
5429 * @param[in] moveto_mod Expected module of the node, NULL for any.
Michal Vasko6346ece2019-09-24 13:12:53 +02005430 * @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 +02005431 */
5432static LY_ERR
Michal Vasko6b26e742020-07-17 15:02:10 +02005433moveto_scnode_check(const struct lysc_node *node, enum lyxp_node_type root_type, const struct lysc_node *context_op,
5434 const char *node_name, const struct lys_module *moveto_mod)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005435{
Michal Vasko03ff5a72019-09-11 13:49:33 +02005436 /* module check */
Michal Vaskod3678892020-05-21 10:06:58 +02005437 if (moveto_mod && (node->module != moveto_mod)) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005438 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005439 }
5440
5441 /* context check */
5442 if ((root_type == LYXP_NODE_ROOT_CONFIG) && (node->flags & LYS_CONFIG_R)) {
5443 return LY_EINVAL;
Michal Vasko6b26e742020-07-17 15:02:10 +02005444 } else if (context_op && (node->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) && (node != context_op)) {
5445 return LY_EINVAL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005446 }
5447
5448 /* name check */
Michal Vasko61ac2f62020-05-25 12:39:51 +02005449 if (node_name && strcmp(node_name, "*") && (node->name != node_name)) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005450 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005451 }
5452
5453 /* match */
5454 return LY_SUCCESS;
5455}
5456
5457/**
Michal Vaskod3678892020-05-21 10:06:58 +02005458 * @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 +02005459 *
5460 * @param[in,out] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02005461 * @param[in] mod Matching node module, NULL for any.
5462 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005463 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
5464 */
5465static LY_ERR
Michal Vaskod3678892020-05-21 10:06:58 +02005466moveto_node(struct lyxp_set *set, const struct lys_module *mod, const char *ncname)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005467{
Michal Vaskof03ed032020-03-04 13:31:44 +01005468 uint32_t i;
Michal Vasko6346ece2019-09-24 13:12:53 +02005469 int replaced;
Michal Vaskod3678892020-05-21 10:06:58 +02005470 const struct lyd_node *siblings, *sub;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005471 LY_ERR rc;
5472
Michal Vaskod3678892020-05-21 10:06:58 +02005473 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005474 return LY_SUCCESS;
5475 }
5476
5477 if (set->type != LYXP_SET_NODE_SET) {
5478 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
5479 return LY_EVALID;
5480 }
5481
Michal Vasko03ff5a72019-09-11 13:49:33 +02005482 for (i = 0; i < set->used; ) {
5483 replaced = 0;
5484
5485 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 +01005486 assert(!set->val.nodes[i].node);
Michal Vaskod3678892020-05-21 10:06:58 +02005487
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005488 /* search in all the trees */
Michal Vaskod3678892020-05-21 10:06:58 +02005489 siblings = set->tree;
Michal Vasko5bfd4be2020-06-23 13:26:19 +02005490 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02005491 /* search in children */
Michal Vasko5bfd4be2020-06-23 13:26:19 +02005492 siblings = lyd_node_children(set->val.nodes[i].node, 0);
Michal Vaskod3678892020-05-21 10:06:58 +02005493 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005494
Michal Vaskod3678892020-05-21 10:06:58 +02005495 for (sub = siblings; sub; sub = sub->next) {
Michal Vasko6b26e742020-07-17 15:02:10 +02005496 rc = moveto_node_check(sub, set->root_type, set->context_op, ncname, mod);
Michal Vaskod3678892020-05-21 10:06:58 +02005497 if (rc == LY_SUCCESS) {
5498 if (!replaced) {
5499 set_replace_node(set, sub, 0, LYXP_NODE_ELEM, i);
5500 replaced = 1;
5501 } else {
5502 set_insert_node(set, sub, 0, LYXP_NODE_ELEM, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005503 }
Michal Vaskod3678892020-05-21 10:06:58 +02005504 ++i;
5505 } else if (rc == LY_EINCOMPLETE) {
5506 return rc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005507 }
5508 }
5509
5510 if (!replaced) {
5511 /* no match */
5512 set_remove_node(set, i);
5513 }
5514 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005515
5516 return LY_SUCCESS;
5517}
5518
5519/**
Michal Vaskod3678892020-05-21 10:06:58 +02005520 * @brief Move context @p set to a node using hashes. Result is LYXP_SET_NODE_SET (or LYXP_SET_EMPTY).
5521 * Context position aware.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005522 *
5523 * @param[in,out] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02005524 * @param[in] scnode Matching node schema.
Michal Vasko004d3152020-06-11 19:59:22 +02005525 * @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 +02005526 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
5527 */
5528static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02005529moveto_node_hash(struct lyxp_set *set, const struct lysc_node *scnode, const struct ly_path_predicate *predicates)
Michal Vaskod3678892020-05-21 10:06:58 +02005530{
Michal Vasko004d3152020-06-11 19:59:22 +02005531 LY_ERR ret = LY_SUCCESS;
Michal Vaskod3678892020-05-21 10:06:58 +02005532 uint32_t i;
Michal Vaskod3678892020-05-21 10:06:58 +02005533 const struct lyd_node *siblings;
Michal Vasko004d3152020-06-11 19:59:22 +02005534 struct lyd_node *sub, *inst = NULL;
Michal Vaskod3678892020-05-21 10:06:58 +02005535
Michal Vasko004d3152020-06-11 19:59:22 +02005536 assert(scnode && (!(scnode->nodetype & (LYS_LIST | LYS_LEAFLIST)) || predicates));
Michal Vaskod3678892020-05-21 10:06:58 +02005537
5538 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02005539 goto cleanup;
Michal Vaskod3678892020-05-21 10:06:58 +02005540 }
5541
5542 if (set->type != LYXP_SET_NODE_SET) {
5543 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 +02005544 ret = LY_EVALID;
5545 goto cleanup;
Michal Vaskod3678892020-05-21 10:06:58 +02005546 }
5547
5548 /* context check for all the nodes since we have the schema node */
5549 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (scnode->flags & LYS_CONFIG_R)) {
5550 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02005551 goto cleanup;
Michal Vasko6b26e742020-07-17 15:02:10 +02005552 } else if (set->context_op && (scnode->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF))
5553 && (scnode != set->context_op)) {
5554 lyxp_set_free_content(set);
5555 goto cleanup;
Michal Vasko004d3152020-06-11 19:59:22 +02005556 }
5557
5558 /* create specific data instance if needed */
5559 if (scnode->nodetype == LYS_LIST) {
5560 LY_CHECK_GOTO(ret = lyd_create_list(scnode, predicates, &inst), cleanup);
5561 } else if (scnode->nodetype == LYS_LEAFLIST) {
5562 LY_CHECK_GOTO(ret = lyd_create_term2(scnode, &predicates[0].value, &inst), cleanup);
Michal Vaskod3678892020-05-21 10:06:58 +02005563 }
5564
5565 for (i = 0; i < set->used; ) {
Michal Vaskod3678892020-05-21 10:06:58 +02005566 siblings = NULL;
5567
5568 if ((set->val.nodes[i].type == LYXP_NODE_ROOT_CONFIG) || (set->val.nodes[i].type == LYXP_NODE_ROOT)) {
5569 assert(!set->val.nodes[i].node);
5570
5571 /* search in all the trees */
5572 siblings = set->tree;
5573 } else if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
5574 /* search in children */
Michal Vasko5bfd4be2020-06-23 13:26:19 +02005575 siblings = lyd_node_children(set->val.nodes[i].node, 0);
Michal Vaskod3678892020-05-21 10:06:58 +02005576 }
5577
5578 /* find the node using hashes */
Michal Vasko004d3152020-06-11 19:59:22 +02005579 if (inst) {
5580 lyd_find_sibling_first(siblings, inst, &sub);
Michal Vaskod3678892020-05-21 10:06:58 +02005581 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02005582 lyd_find_sibling_val(siblings, scnode, NULL, 0, &sub);
Michal Vaskod3678892020-05-21 10:06:58 +02005583 }
5584
5585 /* when check */
5586 if (sub && moveto_when_check(sub)) {
Michal Vasko004d3152020-06-11 19:59:22 +02005587 ret = LY_EINCOMPLETE;
5588 goto cleanup;
Michal Vaskod3678892020-05-21 10:06:58 +02005589 }
5590
5591 if (sub) {
5592 /* pos filled later */
Michal Vaskocb1b7c02020-07-03 13:38:12 +02005593 set_replace_node(set, sub, 0, LYXP_NODE_ELEM, i);
Michal Vaskod3678892020-05-21 10:06:58 +02005594 ++i;
Michal Vaskocb1b7c02020-07-03 13:38:12 +02005595 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02005596 /* no match */
5597 set_remove_node(set, i);
5598 }
5599 }
5600
Michal Vasko004d3152020-06-11 19:59:22 +02005601cleanup:
5602 lyd_free_tree(inst);
5603 return ret;
Michal Vaskod3678892020-05-21 10:06:58 +02005604}
5605
5606/**
5607 * @brief Move context @p set to a schema node. Result is LYXP_SET_SCNODE_SET (or LYXP_SET_EMPTY).
5608 *
5609 * @param[in,out] set Set to use.
5610 * @param[in] mod Matching node module, NULL for any.
5611 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005612 * @param[in] options XPath options.
5613 * @return LY_ERR
5614 */
5615static LY_ERR
Michal Vaskod3678892020-05-21 10:06:58 +02005616moveto_scnode(struct lyxp_set *set, const struct lys_module *mod, const char *ncname, int options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005617{
Michal Vaskocafad9d2019-11-07 15:20:03 +01005618 int i, orig_used, idx, temp_ctx = 0, getnext_opts;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005619 uint32_t mod_idx;
Michal Vasko519fd602020-05-26 12:17:39 +02005620 const struct lysc_node *iter, *start_parent;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005621
Michal Vaskod3678892020-05-21 10:06:58 +02005622 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005623 return LY_SUCCESS;
5624 }
5625
5626 if (set->type != LYXP_SET_SCNODE_SET) {
Michal Vaskof6e51882019-12-16 09:59:45 +01005627 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 +02005628 return LY_EVALID;
5629 }
5630
Michal Vaskocafad9d2019-11-07 15:20:03 +01005631 /* getnext opts */
5632 getnext_opts = LYS_GETNEXT_NOSTATECHECK;
5633 if (options & LYXP_SCNODE_OUTPUT) {
5634 getnext_opts |= LYS_GETNEXT_OUTPUT;
5635 }
5636
Michal Vasko03ff5a72019-09-11 13:49:33 +02005637 orig_used = set->used;
5638 for (i = 0; i < orig_used; ++i) {
5639 if (set->val.scnodes[i].in_ctx != 1) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01005640 if (set->val.scnodes[i].in_ctx != -2) {
5641 continue;
5642 }
5643
5644 /* remember context node */
5645 set->val.scnodes[i].in_ctx = -1;
Michal Vaskoec4df482019-12-16 10:02:18 +01005646 } else {
5647 set->val.scnodes[i].in_ctx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005648 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005649
5650 start_parent = set->val.scnodes[i].scnode;
5651
5652 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 +02005653 /* 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 +02005654 * so use it directly (root node itself is useless in this case) */
5655 mod_idx = 0;
Michal Vaskod3678892020-05-21 10:06:58 +02005656 while (mod || (mod = (struct lys_module *)ly_ctx_get_module_iter(set->ctx, &mod_idx))) {
Michal Vasko519fd602020-05-26 12:17:39 +02005657 iter = NULL;
Michal Vasko509de4d2019-12-10 14:51:30 +01005658 /* module may not be implemented */
Michal Vasko519fd602020-05-26 12:17:39 +02005659 while (mod->implemented && (iter = lys_getnext(iter, NULL, mod->compiled, getnext_opts))) {
Michal Vasko6b26e742020-07-17 15:02:10 +02005660 if (!moveto_scnode_check(iter, set->root_type, set->context_op, ncname, mod)) {
Michal Vasko519fd602020-05-26 12:17:39 +02005661 idx = lyxp_set_scnode_insert_node(set, iter, LYXP_NODE_ELEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005662 /* we need to prevent these nodes from being considered in this moveto */
5663 if ((idx < orig_used) && (idx > i)) {
5664 set->val.scnodes[idx].in_ctx = 2;
5665 temp_ctx = 1;
5666 }
5667 }
5668 }
5669
5670 if (!mod_idx) {
Michal Vaskod3678892020-05-21 10:06:58 +02005671 /* mod was specified, we are not going through the whole context */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005672 break;
5673 }
5674 /* next iteration */
Michal Vaskod3678892020-05-21 10:06:58 +02005675 mod = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005676 }
5677
Michal Vasko519fd602020-05-26 12:17:39 +02005678 } else if (set->val.scnodes[i].type == LYXP_NODE_ELEM) {
5679 iter = NULL;
5680 while ((iter = lys_getnext(iter, start_parent, NULL, getnext_opts))) {
Michal Vasko6b26e742020-07-17 15:02:10 +02005681 if (!moveto_scnode_check(iter, set->root_type, set->context_op, ncname, (mod ? mod : set->local_mod))) {
Michal Vasko519fd602020-05-26 12:17:39 +02005682 idx = lyxp_set_scnode_insert_node(set, iter, LYXP_NODE_ELEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005683 if ((idx < orig_used) && (idx > i)) {
5684 set->val.scnodes[idx].in_ctx = 2;
5685 temp_ctx = 1;
5686 }
5687 }
5688 }
5689 }
5690 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005691
5692 /* correct temporary in_ctx values */
5693 if (temp_ctx) {
5694 for (i = 0; i < orig_used; ++i) {
5695 if (set->val.scnodes[i].in_ctx == 2) {
5696 set->val.scnodes[i].in_ctx = 1;
5697 }
5698 }
5699 }
5700
5701 return LY_SUCCESS;
5702}
5703
5704/**
Michal Vaskod3678892020-05-21 10:06:58 +02005705 * @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 +02005706 * Context position aware.
5707 *
5708 * @param[in] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02005709 * @param[in] mod Matching node module, NULL for any.
5710 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005711 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
5712 */
5713static LY_ERR
Michal Vaskod3678892020-05-21 10:06:58 +02005714moveto_node_alldesc(struct lyxp_set *set, const struct lys_module *mod, const char *ncname)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005715{
5716 uint32_t i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005717 const struct lyd_node *next, *elem, *start;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005718 struct lyxp_set ret_set;
5719 LY_ERR rc;
5720
Michal Vaskod3678892020-05-21 10:06:58 +02005721 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005722 return LY_SUCCESS;
5723 }
5724
5725 if (set->type != LYXP_SET_NODE_SET) {
5726 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
5727 return LY_EVALID;
5728 }
5729
Michal Vasko9f96a052020-03-10 09:41:45 +01005730 /* 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 +02005731 rc = moveto_node(set, NULL, NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005732 LY_CHECK_RET(rc);
5733
Michal Vasko6346ece2019-09-24 13:12:53 +02005734 /* this loop traverses all the nodes in the set and adds/keeps only those that match qname */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005735 set_init(&ret_set, set);
5736 for (i = 0; i < set->used; ++i) {
5737
5738 /* TREE DFS */
5739 start = set->val.nodes[i].node;
5740 for (elem = next = start; elem; elem = next) {
Michal Vasko6b26e742020-07-17 15:02:10 +02005741 rc = moveto_node_check(elem, set->root_type, set->context_op, ncname, mod);
Michal Vasko6346ece2019-09-24 13:12:53 +02005742 if (!rc) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005743 /* add matching node into result set */
5744 set_insert_node(&ret_set, elem, 0, LYXP_NODE_ELEM, ret_set.used);
5745 if (set_dup_node_check(set, elem, LYXP_NODE_ELEM, i)) {
5746 /* the node is a duplicate, we'll process it later in the set */
5747 goto skip_children;
5748 }
Michal Vasko6346ece2019-09-24 13:12:53 +02005749 } else if (rc == LY_EINCOMPLETE) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005750 return rc;
5751 } else if (rc == LY_EINVAL) {
5752 goto skip_children;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005753 }
5754
5755 /* TREE DFS NEXT ELEM */
5756 /* select element for the next run - children first */
Michal Vasko5bfd4be2020-06-23 13:26:19 +02005757 next = lyd_node_children(elem, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005758 if (!next) {
5759skip_children:
5760 /* no children, so try siblings, but only if it's not the start,
5761 * that is considered to be the root and it's siblings are not traversed */
5762 if (elem != start) {
5763 next = elem->next;
5764 } else {
5765 break;
5766 }
5767 }
5768 while (!next) {
5769 /* no siblings, go back through the parents */
5770 if ((struct lyd_node *)elem->parent == start) {
5771 /* we are done, no next element to process */
5772 break;
5773 }
5774 /* parent is already processed, go to its sibling */
5775 elem = (struct lyd_node *)elem->parent;
5776 next = elem->next;
5777 }
5778 }
5779 }
5780
5781 /* make the temporary set the current one */
5782 ret_set.ctx_pos = set->ctx_pos;
5783 ret_set.ctx_size = set->ctx_size;
Michal Vaskod3678892020-05-21 10:06:58 +02005784 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005785 memcpy(set, &ret_set, sizeof *set);
5786
5787 return LY_SUCCESS;
5788}
5789
5790/**
Michal Vasko61ac2f62020-05-25 12:39:51 +02005791 * @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 +02005792 *
5793 * @param[in] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02005794 * @param[in] mod Matching node module, NULL for any.
5795 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005796 * @param[in] options XPath options.
5797 * @return LY_ERR
5798 */
5799static LY_ERR
Michal Vaskod3678892020-05-21 10:06:58 +02005800moveto_scnode_alldesc(struct lyxp_set *set, const struct lys_module *mod, const char *ncname, int options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005801{
Michal Vasko6346ece2019-09-24 13:12:53 +02005802 int i, orig_used, idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005803 const struct lysc_node *next, *elem, *start;
Michal Vasko6346ece2019-09-24 13:12:53 +02005804 LY_ERR rc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005805
Michal Vaskod3678892020-05-21 10:06:58 +02005806 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005807 return LY_SUCCESS;
5808 }
5809
5810 if (set->type != LYXP_SET_SCNODE_SET) {
Michal Vaskof6e51882019-12-16 09:59:45 +01005811 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 +02005812 return LY_EVALID;
5813 }
5814
Michal Vasko03ff5a72019-09-11 13:49:33 +02005815 orig_used = set->used;
5816 for (i = 0; i < orig_used; ++i) {
5817 if (set->val.scnodes[i].in_ctx != 1) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01005818 if (set->val.scnodes[i].in_ctx != -2) {
5819 continue;
5820 }
5821
5822 /* remember context node */
5823 set->val.scnodes[i].in_ctx = -1;
Michal Vaskoec4df482019-12-16 10:02:18 +01005824 } else {
5825 set->val.scnodes[i].in_ctx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005826 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005827
5828 /* TREE DFS */
5829 start = set->val.scnodes[i].scnode;
5830 for (elem = next = start; elem; elem = next) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005831 if ((elem == start) || (elem->nodetype & (LYS_CHOICE | LYS_CASE))) {
5832 /* schema-only nodes, skip root */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005833 goto next_iter;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005834 }
5835
Michal Vasko6b26e742020-07-17 15:02:10 +02005836 rc = moveto_scnode_check(elem, set->root_type, set->context_op, ncname, mod);
Michal Vasko6346ece2019-09-24 13:12:53 +02005837 if (!rc) {
Michal Vaskoecd62de2019-11-13 12:35:11 +01005838 if ((idx = lyxp_set_scnode_dup_node_check(set, elem, LYXP_NODE_ELEM, i)) > -1) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005839 set->val.scnodes[idx].in_ctx = 1;
5840 if (idx > i) {
5841 /* we will process it later in the set */
5842 goto skip_children;
5843 }
5844 } else {
Michal Vaskoecd62de2019-11-13 12:35:11 +01005845 lyxp_set_scnode_insert_node(set, elem, LYXP_NODE_ELEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005846 }
Michal Vasko6346ece2019-09-24 13:12:53 +02005847 } else if (rc == LY_EINVAL) {
5848 goto skip_children;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005849 }
5850
5851next_iter:
5852 /* TREE DFS NEXT ELEM */
5853 /* select element for the next run - children first */
5854 next = lysc_node_children(elem, options & LYXP_SCNODE_OUTPUT ? LYS_CONFIG_R : LYS_CONFIG_W);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005855 if (!next) {
5856skip_children:
5857 /* no children, so try siblings, but only if it's not the start,
5858 * that is considered to be the root and it's siblings are not traversed */
5859 if (elem != start) {
5860 next = elem->next;
5861 } else {
5862 break;
5863 }
5864 }
5865 while (!next) {
5866 /* no siblings, go back through the parents */
5867 if (elem->parent == start) {
5868 /* we are done, no next element to process */
5869 break;
5870 }
5871 /* parent is already processed, go to its sibling */
5872 elem = elem->parent;
5873 next = elem->next;
5874 }
5875 }
5876 }
5877
5878 return LY_SUCCESS;
5879}
5880
5881/**
Michal Vasko61ac2f62020-05-25 12:39:51 +02005882 * @brief Move context @p set to an attribute. Result is LYXP_SET_NODE_SET.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005883 * Indirectly context position aware.
5884 *
5885 * @param[in,out] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02005886 * @param[in] mod Matching metadata module, NULL for any.
5887 * @param[in] ncname Matching metadata name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005888 * @return LY_ERR
5889 */
5890static LY_ERR
Michal Vaskod3678892020-05-21 10:06:58 +02005891moveto_attr(struct lyxp_set *set, const struct lys_module *mod, const char *ncname)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005892{
5893 uint32_t i;
Michal Vaskod3678892020-05-21 10:06:58 +02005894 int replaced;
Michal Vasko9f96a052020-03-10 09:41:45 +01005895 struct lyd_meta *sub;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005896
Michal Vaskod3678892020-05-21 10:06:58 +02005897 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005898 return LY_SUCCESS;
5899 }
5900
5901 if (set->type != LYXP_SET_NODE_SET) {
5902 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
5903 return LY_EVALID;
5904 }
5905
Michal Vasko03ff5a72019-09-11 13:49:33 +02005906 for (i = 0; i < set->used; ) {
5907 replaced = 0;
5908
5909 /* only attributes of an elem (not dummy) can be in the result, skip all the rest;
5910 * our attributes are always qualified */
Michal Vasko5c4e5892019-11-14 12:31:38 +01005911 if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
Michal Vasko9f96a052020-03-10 09:41:45 +01005912 for (sub = set->val.nodes[i].node->meta; sub; sub = sub->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005913
5914 /* check "namespace" */
Michal Vaskod3678892020-05-21 10:06:58 +02005915 if (mod && (sub->annotation->module != mod)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005916 continue;
5917 }
5918
Michal Vaskod3678892020-05-21 10:06:58 +02005919 if (!ncname || (sub->name == ncname)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005920 /* match */
5921 if (!replaced) {
Michal Vasko9f96a052020-03-10 09:41:45 +01005922 set->val.meta[i].meta = sub;
5923 set->val.meta[i].type = LYXP_NODE_META;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005924 /* pos does not change */
5925 replaced = 1;
5926 } else {
Michal Vasko9f96a052020-03-10 09:41:45 +01005927 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 +02005928 }
5929 ++i;
5930 }
5931 }
5932 }
5933
5934 if (!replaced) {
5935 /* no match */
5936 set_remove_node(set, i);
5937 }
5938 }
5939
5940 return LY_SUCCESS;
5941}
5942
5943/**
5944 * @brief Move context @p set1 to union with @p set2. @p set2 is emptied afterwards.
Michal Vasko61ac2f62020-05-25 12:39:51 +02005945 * Result is LYXP_SET_NODE_SET. Context position aware.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005946 *
5947 * @param[in,out] set1 Set to use for the result.
5948 * @param[in] set2 Set that is copied to @p set1.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005949 * @return LY_ERR
5950 */
5951static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005952moveto_union(struct lyxp_set *set1, struct lyxp_set *set2)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005953{
5954 LY_ERR rc;
5955
Michal Vaskod3678892020-05-21 10:06:58 +02005956 if ((set1->type != LYXP_SET_NODE_SET) || (set2->type != LYXP_SET_NODE_SET)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005957 LOGVAL(set1->ctx, LY_VLOG_LYD, set1->ctx_node, LY_VCODE_XP_INOP_2, "union", print_set_type(set1), print_set_type(set2));
5958 return LY_EVALID;
5959 }
5960
5961 /* set2 is empty or both set1 and set2 */
Michal Vaskod3678892020-05-21 10:06:58 +02005962 if (!set2->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005963 return LY_SUCCESS;
5964 }
5965
Michal Vaskod3678892020-05-21 10:06:58 +02005966 if (!set1->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005967 memcpy(set1, set2, sizeof *set1);
5968 /* dynamic memory belongs to set1 now, do not free */
Michal Vaskod3678892020-05-21 10:06:58 +02005969 memset(set2, 0, sizeof *set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005970 return LY_SUCCESS;
5971 }
5972
5973 /* we assume sets are sorted */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005974 assert(!set_sort(set1) && !set_sort(set2));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005975
5976 /* sort, remove duplicates */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005977 rc = set_sorted_merge(set1, set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005978 LY_CHECK_RET(rc);
5979
5980 /* final set must be sorted */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005981 assert(!set_sort(set1));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005982
5983 return LY_SUCCESS;
5984}
5985
5986/**
Michal Vasko61ac2f62020-05-25 12:39:51 +02005987 * @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 +02005988 * Context position aware.
5989 *
5990 * @param[in,out] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02005991 * @param[in] mod Matching metadata module, NULL for any.
5992 * @param[in] ncname Matching metadata name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005993 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
5994 */
5995static int
Michal Vaskod3678892020-05-21 10:06:58 +02005996moveto_attr_alldesc(struct lyxp_set *set, const struct lys_module *mod, const char *ncname)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005997{
5998 uint32_t i;
Michal Vaskod3678892020-05-21 10:06:58 +02005999 int replaced;
Michal Vasko9f96a052020-03-10 09:41:45 +01006000 struct lyd_meta *sub;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006001 struct lyxp_set *set_all_desc = NULL;
6002 LY_ERR rc;
6003
Michal Vaskod3678892020-05-21 10:06:58 +02006004 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006005 return LY_SUCCESS;
6006 }
6007
6008 if (set->type != LYXP_SET_NODE_SET) {
6009 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
6010 return LY_EVALID;
6011 }
6012
Michal Vasko03ff5a72019-09-11 13:49:33 +02006013 /* can be optimized similarly to moveto_node_alldesc() and save considerable amount of memory,
6014 * but it likely won't be used much, so it's a waste of time */
6015 /* copy the context */
6016 set_all_desc = set_copy(set);
6017 /* get all descendant nodes (the original context nodes are removed) */
Michal Vaskod3678892020-05-21 10:06:58 +02006018 rc = moveto_node_alldesc(set_all_desc, NULL, NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006019 if (rc != LY_SUCCESS) {
6020 lyxp_set_free(set_all_desc);
6021 return rc;
6022 }
6023 /* prepend the original context nodes */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006024 rc = moveto_union(set, set_all_desc);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006025 if (rc != LY_SUCCESS) {
6026 lyxp_set_free(set_all_desc);
6027 return rc;
6028 }
6029 lyxp_set_free(set_all_desc);
6030
Michal Vasko03ff5a72019-09-11 13:49:33 +02006031 for (i = 0; i < set->used; ) {
6032 replaced = 0;
6033
6034 /* only attributes of an elem can be in the result, skip all the rest,
6035 * we have all attributes qualified in lyd tree */
6036 if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
Michal Vasko9f96a052020-03-10 09:41:45 +01006037 for (sub = set->val.nodes[i].node->meta; sub; sub = sub->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006038 /* check "namespace" */
Michal Vaskod3678892020-05-21 10:06:58 +02006039 if (mod && (sub->annotation->module != mod)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006040 continue;
6041 }
6042
Michal Vaskod3678892020-05-21 10:06:58 +02006043 if (!ncname || (sub->name == ncname)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006044 /* match */
6045 if (!replaced) {
Michal Vasko9f96a052020-03-10 09:41:45 +01006046 set->val.meta[i].meta = sub;
6047 set->val.meta[i].type = LYXP_NODE_META;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006048 /* pos does not change */
6049 replaced = 1;
6050 } else {
Michal Vasko9f96a052020-03-10 09:41:45 +01006051 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 +02006052 }
6053 ++i;
6054 }
6055 }
6056 }
6057
6058 if (!replaced) {
6059 /* no match */
6060 set_remove_node(set, i);
6061 }
6062 }
6063
6064 return LY_SUCCESS;
6065}
6066
6067/**
Michal Vasko61ac2f62020-05-25 12:39:51 +02006068 * @brief Move context @p set to self and al chilren, recursively. Handles '/' or '//' and '.'. Result is LYXP_SET_NODE_SET.
6069 * Context position aware.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006070 *
6071 * @param[in] parent Current parent.
6072 * @param[in] parent_pos Position of @p parent.
6073 * @param[in] parent_type Node type of @p parent.
6074 * @param[in,out] to_set Set to use.
6075 * @param[in] dup_check_set Set for checking duplicities.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006076 * @param[in] options XPath options.
6077 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6078 */
6079static LY_ERR
6080moveto_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 +01006081 struct lyxp_set *to_set, const struct lyxp_set *dup_check_set, int options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006082{
Michal Vasko61ac2f62020-05-25 12:39:51 +02006083 const struct lyd_node *iter, *first;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006084 LY_ERR rc;
6085
6086 switch (parent_type) {
6087 case LYXP_NODE_ROOT:
6088 case LYXP_NODE_ROOT_CONFIG:
Michal Vasko61ac2f62020-05-25 12:39:51 +02006089 assert(!parent);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006090
Michal Vasko61ac2f62020-05-25 12:39:51 +02006091 /* add all top-level nodes as elements */
6092 first = to_set->tree;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006093 break;
6094 case LYXP_NODE_ELEM:
Michal Vasko61ac2f62020-05-25 12:39:51 +02006095 /* add just the text node of this term element node */
6096 if (parent->schema->nodetype & (LYD_NODE_TERM | LYD_NODE_ANY)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006097 if (!set_dup_node_check(dup_check_set, parent, LYXP_NODE_TEXT, -1)) {
6098 set_insert_node(to_set, parent, parent_pos, LYXP_NODE_TEXT, to_set->used);
6099 }
Michal Vasko61ac2f62020-05-25 12:39:51 +02006100 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006101 }
Michal Vasko61ac2f62020-05-25 12:39:51 +02006102
6103 /* add all the children of this node */
Michal Vasko5bfd4be2020-06-23 13:26:19 +02006104 first = lyd_node_children(parent, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006105 break;
6106 default:
6107 LOGINT_RET(parent->schema->module->ctx);
6108 }
6109
Michal Vasko61ac2f62020-05-25 12:39:51 +02006110 /* add all top-level nodes as elements */
6111 LY_LIST_FOR(first, iter) {
6112 /* context check */
6113 if ((parent_type == LYXP_NODE_ROOT_CONFIG) && (iter->schema->flags & LYS_CONFIG_R)) {
6114 continue;
6115 }
6116
6117 /* when check */
6118 if (moveto_when_check(iter)) {
6119 return LY_EINCOMPLETE;
6120 }
6121
6122 if (!set_dup_node_check(dup_check_set, iter, LYXP_NODE_ELEM, -1)) {
6123 set_insert_node(to_set, iter, 0, LYXP_NODE_ELEM, to_set->used);
6124
6125 /* also add all the children of this node, recursively */
6126 rc = moveto_self_add_children_r(iter, 0, LYXP_NODE_ELEM, to_set, dup_check_set, options);
6127 LY_CHECK_RET(rc);
6128 }
6129 }
6130
Michal Vasko03ff5a72019-09-11 13:49:33 +02006131 return LY_SUCCESS;
6132}
6133
6134/**
6135 * @brief Move context @p set to self. Handles '/' or '//' and '.'. Result is LYXP_SET_NODE_SET
6136 * (or LYXP_SET_EMPTY). Context position aware.
6137 *
6138 * @param[in,out] set Set to use.
6139 * @param[in] all_desc Whether to go to all descendants ('//') or not ('/').
6140 * @param[in] options XPath options.
6141 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6142 */
6143static LY_ERR
6144moveto_self(struct lyxp_set *set, int all_desc, int options)
6145{
6146 uint32_t i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006147 struct lyxp_set ret_set;
6148 LY_ERR rc;
6149
Michal Vaskod3678892020-05-21 10:06:58 +02006150 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006151 return LY_SUCCESS;
6152 }
6153
6154 if (set->type != LYXP_SET_NODE_SET) {
6155 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
6156 return LY_EVALID;
6157 }
6158
6159 /* nothing to do */
6160 if (!all_desc) {
6161 return LY_SUCCESS;
6162 }
6163
Michal Vasko03ff5a72019-09-11 13:49:33 +02006164 /* add all the children, they get added recursively */
6165 set_init(&ret_set, set);
6166 for (i = 0; i < set->used; ++i) {
6167 /* copy the current node to tmp */
6168 set_insert_node(&ret_set, set->val.nodes[i].node, set->val.nodes[i].pos, set->val.nodes[i].type, ret_set.used);
6169
6170 /* do not touch attributes and text nodes */
Michal Vasko9f96a052020-03-10 09:41:45 +01006171 if ((set->val.nodes[i].type == LYXP_NODE_TEXT) || (set->val.nodes[i].type == LYXP_NODE_META)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006172 continue;
6173 }
6174
Michal Vasko03ff5a72019-09-11 13:49:33 +02006175 /* add all the children */
6176 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 +01006177 set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006178 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02006179 lyxp_set_free_content(&ret_set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006180 return rc;
6181 }
6182 }
6183
6184 /* use the temporary set as the current one */
6185 ret_set.ctx_pos = set->ctx_pos;
6186 ret_set.ctx_size = set->ctx_size;
Michal Vaskod3678892020-05-21 10:06:58 +02006187 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006188 memcpy(set, &ret_set, sizeof *set);
6189
6190 return LY_SUCCESS;
6191}
6192
6193/**
6194 * @brief Move context schema @p set to self. Handles '/' or '//' and '.'. Result is LYXP_SET_SCNODE_SET
6195 * (or LYXP_SET_EMPTY).
6196 *
6197 * @param[in,out] set Set to use.
6198 * @param[in] all_desc Whether to go to all descendants ('//') or not ('/').
6199 * @param[in] options XPath options.
6200 * @return LY_ERR
6201 */
6202static LY_ERR
6203moveto_scnode_self(struct lyxp_set *set, int all_desc, int options)
6204{
Michal Vasko519fd602020-05-26 12:17:39 +02006205 int getnext_opts;
6206 uint32_t i, mod_idx;
6207 const struct lysc_node *iter, *start_parent;
6208 const struct lys_module *mod;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006209
Michal Vaskod3678892020-05-21 10:06:58 +02006210 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006211 return LY_SUCCESS;
6212 }
6213
6214 if (set->type != LYXP_SET_SCNODE_SET) {
Michal Vaskof6e51882019-12-16 09:59:45 +01006215 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 +02006216 return LY_EVALID;
6217 }
6218
6219 /* nothing to do */
6220 if (!all_desc) {
6221 return LY_SUCCESS;
6222 }
6223
Michal Vasko519fd602020-05-26 12:17:39 +02006224 /* getnext opts */
6225 getnext_opts = LYS_GETNEXT_NOSTATECHECK;
6226 if (options & LYXP_SCNODE_OUTPUT) {
6227 getnext_opts |= LYS_GETNEXT_OUTPUT;
6228 }
6229
6230 /* add all the children, recursively as they are being added into the same set */
Michal Vasko03ff5a72019-09-11 13:49:33 +02006231 for (i = 0; i < set->used; ++i) {
6232 if (set->val.scnodes[i].in_ctx != 1) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01006233 if (set->val.scnodes[i].in_ctx != -2) {
6234 continue;
6235 }
6236
Michal Vasko519fd602020-05-26 12:17:39 +02006237 /* remember context node */
6238 set->val.scnodes[i].in_ctx = -1;
6239 } else {
6240 set->val.scnodes[i].in_ctx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006241 }
6242
Michal Vasko519fd602020-05-26 12:17:39 +02006243 start_parent = set->val.scnodes[i].scnode;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006244
Michal Vasko519fd602020-05-26 12:17:39 +02006245 if ((set->val.scnodes[i].type == LYXP_NODE_ROOT_CONFIG) || (set->val.scnodes[i].type == LYXP_NODE_ROOT)) {
6246 /* it can actually be in any module, it's all <running> */
6247 mod_idx = 0;
6248 while ((mod = (struct lys_module *)ly_ctx_get_module_iter(set->ctx, &mod_idx))) {
6249 iter = NULL;
6250 /* module may not be implemented */
6251 while (mod->implemented && (iter = lys_getnext(iter, NULL, mod->compiled, getnext_opts))) {
6252 /* context check */
6253 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (iter->flags & LYS_CONFIG_R)) {
6254 continue;
6255 }
6256
6257 lyxp_set_scnode_insert_node(set, iter, LYXP_NODE_ELEM);
6258 /* throw away the insert index, we want to consider that node again, recursively */
6259 }
6260 }
6261
6262 } else if (set->val.scnodes[i].type == LYXP_NODE_ELEM) {
6263 iter = NULL;
6264 while ((iter = lys_getnext(iter, start_parent, NULL, getnext_opts))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006265 /* context check */
Michal Vasko519fd602020-05-26 12:17:39 +02006266 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (iter->flags & LYS_CONFIG_R)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006267 continue;
6268 }
6269
Michal Vasko519fd602020-05-26 12:17:39 +02006270 lyxp_set_scnode_insert_node(set, iter, LYXP_NODE_ELEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006271 }
6272 }
6273 }
6274
6275 return LY_SUCCESS;
6276}
6277
6278/**
6279 * @brief Move context @p set to parent. Handles '/' or '//' and '..'. Result is LYXP_SET_NODE_SET
6280 * (or LYXP_SET_EMPTY). Context position aware.
6281 *
6282 * @param[in] set Set to use.
6283 * @param[in] all_desc Whether to go to all descendants ('//') or not ('/').
6284 * @param[in] options XPath options.
6285 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6286 */
6287static LY_ERR
6288moveto_parent(struct lyxp_set *set, int all_desc, int options)
6289{
6290 LY_ERR rc;
6291 uint32_t i;
6292 struct lyd_node *node, *new_node;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006293 enum lyxp_node_type new_type;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006294
Michal Vaskod3678892020-05-21 10:06:58 +02006295 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006296 return LY_SUCCESS;
6297 }
6298
6299 if (set->type != LYXP_SET_NODE_SET) {
6300 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
6301 return LY_EVALID;
6302 }
6303
6304 if (all_desc) {
6305 /* <path>//.. == <path>//./.. */
6306 rc = moveto_self(set, 1, options);
6307 LY_CHECK_RET(rc);
6308 }
6309
Michal Vasko57eab132019-09-24 11:46:26 +02006310 for (i = 0; i < set->used; ++i) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006311 node = set->val.nodes[i].node;
6312
6313 if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
6314 new_node = (struct lyd_node *)node->parent;
6315 } else if (set->val.nodes[i].type == LYXP_NODE_TEXT) {
6316 new_node = node;
Michal Vasko9f96a052020-03-10 09:41:45 +01006317 } else if (set->val.nodes[i].type == LYXP_NODE_META) {
6318 new_node = set->val.meta[i].meta->parent;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006319 if (!new_node) {
6320 LOGINT_RET(set->ctx);
6321 }
6322 } else {
6323 /* root does not have a parent */
Michal Vasko2caefc12019-11-14 16:07:56 +01006324 set_remove_node_none(set, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006325 continue;
6326 }
6327
Michal Vaskoa1424542019-11-14 16:08:52 +01006328 /* when check */
6329 if (moveto_when_check(new_node)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006330 return LY_EINCOMPLETE;
Michal Vaskoa1424542019-11-14 16:08:52 +01006331 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02006332
6333 /* node already there can also be the root */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006334 if (!new_node) {
6335 new_type = set->root_type;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006336
6337 /* node has a standard parent (it can equal the root, it's not the root yet since they are fake) */
6338 } else {
6339 new_type = LYXP_NODE_ELEM;
6340 }
6341
Michal Vasko03ff5a72019-09-11 13:49:33 +02006342 if (set_dup_node_check(set, new_node, new_type, -1)) {
Michal Vasko2caefc12019-11-14 16:07:56 +01006343 set_remove_node_none(set, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006344 } else {
6345 set_replace_node(set, new_node, 0, new_type, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006346 }
6347 }
6348
Michal Vasko2caefc12019-11-14 16:07:56 +01006349 set_remove_nodes_none(set);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006350 assert(!set_sort(set) && !set_sorted_dup_node_clean(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006351
6352 return LY_SUCCESS;
6353}
6354
6355/**
6356 * @brief Move context schema @p set to parent. Handles '/' or '//' and '..'. Result is LYXP_SET_SCNODE_SET
6357 * (or LYXP_SET_EMPTY).
6358 *
6359 * @param[in] set Set to use.
6360 * @param[in] all_desc Whether to go to all descendants ('//') or not ('/').
6361 * @param[in] options XPath options.
6362 * @return LY_ERR
6363 */
6364static LY_ERR
6365moveto_scnode_parent(struct lyxp_set *set, int all_desc, int options)
6366{
6367 int idx, i, orig_used, temp_ctx = 0;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006368 const struct lysc_node *node, *new_node;
6369 enum lyxp_node_type new_type;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006370 LY_ERR rc;
6371
Michal Vaskod3678892020-05-21 10:06:58 +02006372 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006373 return LY_SUCCESS;
6374 }
6375
6376 if (set->type != LYXP_SET_SCNODE_SET) {
Michal Vaskof6e51882019-12-16 09:59:45 +01006377 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 +02006378 return LY_EVALID;
6379 }
6380
6381 if (all_desc) {
6382 /* <path>//.. == <path>//./.. */
6383 rc = moveto_scnode_self(set, 1, options);
6384 LY_CHECK_RET(rc);
6385 }
6386
Michal Vasko03ff5a72019-09-11 13:49:33 +02006387 orig_used = set->used;
6388 for (i = 0; i < orig_used; ++i) {
6389 if (set->val.scnodes[i].in_ctx != 1) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01006390 if (set->val.scnodes[i].in_ctx != -2) {
6391 continue;
6392 }
6393
6394 /* remember context node */
6395 set->val.scnodes[i].in_ctx = -1;
Michal Vaskoec4df482019-12-16 10:02:18 +01006396 } else {
6397 set->val.scnodes[i].in_ctx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006398 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02006399
6400 node = set->val.scnodes[i].scnode;
6401
6402 if (set->val.scnodes[i].type == LYXP_NODE_ELEM) {
Michal Vaskod3678892020-05-21 10:06:58 +02006403 new_node = lysc_data_parent(node);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006404 } else {
6405 /* root does not have a parent */
6406 continue;
6407 }
6408
Michal Vasko03ff5a72019-09-11 13:49:33 +02006409 /* node has no parent */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006410 if (!new_node) {
6411 new_type = set->root_type;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006412
6413 /* node has a standard parent (it can equal the root, it's not the root yet since they are fake) */
6414 } else {
6415 new_type = LYXP_NODE_ELEM;
6416 }
6417
Michal Vaskoecd62de2019-11-13 12:35:11 +01006418 idx = lyxp_set_scnode_insert_node(set, new_node, new_type);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006419 if ((idx < orig_used) && (idx > i)) {
6420 set->val.scnodes[idx].in_ctx = 2;
6421 temp_ctx = 1;
6422 }
6423 }
6424
6425 if (temp_ctx) {
6426 for (i = 0; i < orig_used; ++i) {
6427 if (set->val.scnodes[i].in_ctx == 2) {
6428 set->val.scnodes[i].in_ctx = 1;
6429 }
6430 }
6431 }
6432
6433 return LY_SUCCESS;
6434}
6435
6436/**
6437 * @brief Move context @p set to the result of a comparison. Handles '=', '!=', '<=', '<', '>=', or '>'.
6438 * Result is LYXP_SET_BOOLEAN. Indirectly context position aware.
6439 *
6440 * @param[in,out] set1 Set to use for the result.
6441 * @param[in] set2 Set acting as the second operand for @p op.
6442 * @param[in] op Comparison operator to process.
6443 * @param[in] options XPath options.
6444 * @return LY_ERR
6445 */
6446static LY_ERR
6447moveto_op_comp(struct lyxp_set *set1, struct lyxp_set *set2, const char *op, int options)
6448{
6449 /*
6450 * NODE SET + NODE SET = NODE SET + STRING /(1 NODE SET) 2 STRING
6451 * NODE SET + STRING = STRING + STRING /1 STRING (2 STRING)
6452 * NODE SET + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
6453 * NODE SET + BOOLEAN = BOOLEAN + BOOLEAN /1 BOOLEAN (2 BOOLEAN)
6454 * STRING + NODE SET = STRING + STRING /(1 STRING) 2 STRING
6455 * NUMBER + NODE SET = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
6456 * BOOLEAN + NODE SET = BOOLEAN + BOOLEAN /(1 BOOLEAN) 2 BOOLEAN
6457 *
6458 * '=' or '!='
6459 * BOOLEAN + BOOLEAN
6460 * BOOLEAN + STRING = BOOLEAN + BOOLEAN /(1 BOOLEAN) 2 BOOLEAN
6461 * BOOLEAN + NUMBER = BOOLEAN + BOOLEAN /(1 BOOLEAN) 2 BOOLEAN
6462 * STRING + BOOLEAN = BOOLEAN + BOOLEAN /1 BOOLEAN (2 BOOLEAN)
6463 * NUMBER + BOOLEAN = BOOLEAN + BOOLEAN /1 BOOLEAN (2 BOOLEAN)
6464 * NUMBER + NUMBER
6465 * NUMBER + STRING = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
6466 * STRING + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
6467 * STRING + STRING
6468 *
6469 * '<=', '<', '>=', '>'
6470 * NUMBER + NUMBER
6471 * BOOLEAN + BOOLEAN = NUMBER + NUMBER /1 NUMBER, 2 NUMBER
6472 * BOOLEAN + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
6473 * BOOLEAN + STRING = NUMBER + NUMBER /1 NUMBER, 2 NUMBER
6474 * NUMBER + STRING = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
6475 * STRING + STRING = NUMBER + NUMBER /1 NUMBER, 2 NUMBER
6476 * STRING + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
6477 * NUMBER + BOOLEAN = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
6478 * STRING + BOOLEAN = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
6479 */
6480 struct lyxp_set iter1, iter2;
6481 int result;
6482 int64_t i;
6483 LY_ERR rc;
6484
Michal Vasko004d3152020-06-11 19:59:22 +02006485 memset(&iter1, 0, sizeof iter1);
6486 memset(&iter2, 0, sizeof iter2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006487
6488 /* iterative evaluation with node-sets */
6489 if ((set1->type == LYXP_SET_NODE_SET) || (set2->type == LYXP_SET_NODE_SET)) {
6490 if (set1->type == LYXP_SET_NODE_SET) {
6491 for (i = 0; i < set1->used; ++i) {
Michal Vasko4c7763f2020-07-27 17:40:37 +02006492 /* cast set1 */
Michal Vasko03ff5a72019-09-11 13:49:33 +02006493 switch (set2->type) {
6494 case LYXP_SET_NUMBER:
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006495 rc = set_comp_cast(&iter1, set1, LYXP_SET_NUMBER, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006496 break;
6497 case LYXP_SET_BOOLEAN:
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006498 rc = set_comp_cast(&iter1, set1, LYXP_SET_BOOLEAN, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006499 break;
6500 default:
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006501 rc = set_comp_cast(&iter1, set1, LYXP_SET_STRING, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006502 break;
6503 }
6504 LY_CHECK_RET(rc);
6505
Michal Vasko4c7763f2020-07-27 17:40:37 +02006506 /* canonize set2 */
6507 LY_CHECK_ERR_RET(rc = set_comp_canonize(&iter2, set2, &set1->val.nodes[i]), lyxp_set_free_content(&iter1), rc);
6508
6509 /* compare recursively */
6510 rc = moveto_op_comp(&iter1, &iter2, op, options);
6511 lyxp_set_free_content(&iter2);
6512 LY_CHECK_ERR_RET(rc, lyxp_set_free_content(&iter1), rc);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006513
6514 /* lazy evaluation until true */
Michal Vasko004d3152020-06-11 19:59:22 +02006515 if (iter1.val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006516 set_fill_boolean(set1, 1);
6517 return LY_SUCCESS;
6518 }
6519 }
6520 } else {
6521 for (i = 0; i < set2->used; ++i) {
Michal Vasko4c7763f2020-07-27 17:40:37 +02006522 /* set set2 */
Michal Vasko03ff5a72019-09-11 13:49:33 +02006523 switch (set1->type) {
Michal Vasko4c7763f2020-07-27 17:40:37 +02006524 case LYXP_SET_NUMBER:
6525 rc = set_comp_cast(&iter2, set2, LYXP_SET_NUMBER, i);
6526 break;
6527 case LYXP_SET_BOOLEAN:
6528 rc = set_comp_cast(&iter2, set2, LYXP_SET_BOOLEAN, i);
6529 break;
6530 default:
6531 rc = set_comp_cast(&iter2, set2, LYXP_SET_STRING, i);
6532 break;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006533 }
6534 LY_CHECK_RET(rc);
6535
Michal Vasko4c7763f2020-07-27 17:40:37 +02006536 /* canonize set1 */
6537 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 +02006538
Michal Vasko4c7763f2020-07-27 17:40:37 +02006539 /* compare recursively */
Michal Vasko03ff5a72019-09-11 13:49:33 +02006540 rc = moveto_op_comp(&iter1, &iter2, op, options);
Michal Vaskod3678892020-05-21 10:06:58 +02006541 lyxp_set_free_content(&iter2);
Michal Vasko4c7763f2020-07-27 17:40:37 +02006542 LY_CHECK_ERR_RET(rc, lyxp_set_free_content(&iter1), rc);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006543
6544 /* lazy evaluation until true */
Michal Vasko004d3152020-06-11 19:59:22 +02006545 if (iter1.val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006546 set_fill_boolean(set1, 1);
6547 return LY_SUCCESS;
6548 }
6549 }
6550 }
6551
6552 /* false for all nodes */
6553 set_fill_boolean(set1, 0);
6554 return LY_SUCCESS;
6555 }
6556
6557 /* first convert properly */
6558 if ((op[0] == '=') || (op[0] == '!')) {
6559 if ((set1->type == LYXP_SET_BOOLEAN) || (set2->type == LYXP_SET_BOOLEAN)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006560 lyxp_set_cast(set1, LYXP_SET_BOOLEAN);
6561 lyxp_set_cast(set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006562 } else if ((set1->type == LYXP_SET_NUMBER) || (set2->type == LYXP_SET_NUMBER)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006563 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006564 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006565 rc = lyxp_set_cast(set2, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006566 LY_CHECK_RET(rc);
6567 } /* else we have 2 strings */
6568 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006569 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006570 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006571 rc = lyxp_set_cast(set2, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006572 LY_CHECK_RET(rc);
6573 }
6574
6575 assert(set1->type == set2->type);
6576
6577 /* compute result */
6578 if (op[0] == '=') {
6579 if (set1->type == LYXP_SET_BOOLEAN) {
Michal Vasko004d3152020-06-11 19:59:22 +02006580 result = (set1->val.bln == set2->val.bln);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006581 } else if (set1->type == LYXP_SET_NUMBER) {
6582 result = (set1->val.num == set2->val.num);
6583 } else {
6584 assert(set1->type == LYXP_SET_STRING);
Michal Vaskoac6c72f2019-11-14 16:09:34 +01006585 result = !strcmp(set1->val.str, set2->val.str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006586 }
6587 } else if (op[0] == '!') {
6588 if (set1->type == LYXP_SET_BOOLEAN) {
Michal Vasko004d3152020-06-11 19:59:22 +02006589 result = (set1->val.bln != set2->val.bln);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006590 } else if (set1->type == LYXP_SET_NUMBER) {
6591 result = (set1->val.num != set2->val.num);
6592 } else {
6593 assert(set1->type == LYXP_SET_STRING);
Michal Vaskoac6c72f2019-11-14 16:09:34 +01006594 result = !strcmp(set1->val.str, set2->val.str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006595 }
6596 } else {
6597 assert(set1->type == LYXP_SET_NUMBER);
6598 if (op[0] == '<') {
6599 if (op[1] == '=') {
6600 result = (set1->val.num <= set2->val.num);
6601 } else {
6602 result = (set1->val.num < set2->val.num);
6603 }
6604 } else {
6605 if (op[1] == '=') {
6606 result = (set1->val.num >= set2->val.num);
6607 } else {
6608 result = (set1->val.num > set2->val.num);
6609 }
6610 }
6611 }
6612
6613 /* assign result */
6614 if (result) {
6615 set_fill_boolean(set1, 1);
6616 } else {
6617 set_fill_boolean(set1, 0);
6618 }
6619
6620 return LY_SUCCESS;
6621}
6622
6623/**
6624 * @brief Move context @p set to the result of a basic operation. Handles '+', '-', unary '-', '*', 'div',
6625 * or 'mod'. Result is LYXP_SET_NUMBER. Indirectly context position aware.
6626 *
6627 * @param[in,out] set1 Set to use for the result.
6628 * @param[in] set2 Set acting as the second operand for @p op.
6629 * @param[in] op Operator to process.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006630 * @return LY_ERR
6631 */
6632static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006633moveto_op_math(struct lyxp_set *set1, struct lyxp_set *set2, const char *op)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006634{
6635 LY_ERR rc;
6636
6637 /* unary '-' */
6638 if (!set2 && (op[0] == '-')) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006639 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006640 LY_CHECK_RET(rc);
6641 set1->val.num *= -1;
6642 lyxp_set_free(set2);
6643 return LY_SUCCESS;
6644 }
6645
6646 assert(set1 && set2);
6647
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006648 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006649 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006650 rc = lyxp_set_cast(set2, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006651 LY_CHECK_RET(rc);
6652
6653 switch (op[0]) {
6654 /* '+' */
6655 case '+':
6656 set1->val.num += set2->val.num;
6657 break;
6658
6659 /* '-' */
6660 case '-':
6661 set1->val.num -= set2->val.num;
6662 break;
6663
6664 /* '*' */
6665 case '*':
6666 set1->val.num *= set2->val.num;
6667 break;
6668
6669 /* 'div' */
6670 case 'd':
6671 set1->val.num /= set2->val.num;
6672 break;
6673
6674 /* 'mod' */
6675 case 'm':
6676 set1->val.num = ((long long)set1->val.num) % ((long long)set2->val.num);
6677 break;
6678
6679 default:
6680 LOGINT_RET(set1->ctx);
6681 }
6682
6683 return LY_SUCCESS;
6684}
6685
6686/*
6687 * eval functions
6688 *
6689 * They execute a parsed XPath expression on some data subtree.
6690 */
6691
6692/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02006693 * @brief Evaluate Predicate. Logs directly on error.
6694 *
Michal Vaskod3678892020-05-21 10:06:58 +02006695 * [9] Predicate ::= '[' Expr ']'
Michal Vasko03ff5a72019-09-11 13:49:33 +02006696 *
6697 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02006698 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006699 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
6700 * @param[in] options XPath options.
6701 * @param[in] parent_pos_pred Whether parent predicate was a positional one.
6702 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6703 */
6704static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02006705eval_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 +02006706{
6707 LY_ERR rc;
Michal Vasko57eab132019-09-24 11:46:26 +02006708 uint16_t i, orig_exp;
Michal Vasko5c4e5892019-11-14 12:31:38 +01006709 uint32_t orig_pos, orig_size;
6710 int32_t pred_in_ctx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006711 struct lyxp_set set2;
6712 struct lyd_node *orig_parent;
6713
6714 /* '[' */
6715 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02006716 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
6717 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006718
6719 if (!set) {
6720only_parse:
Michal Vasko004d3152020-06-11 19:59:22 +02006721 rc = eval_expr_select(exp, tok_idx, 0, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006722 LY_CHECK_RET(rc);
6723 } else if (set->type == LYXP_SET_NODE_SET) {
6724 /* 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 +01006725 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006726
6727 /* empty set, nothing to evaluate */
6728 if (!set->used) {
6729 goto only_parse;
6730 }
6731
Michal Vasko004d3152020-06-11 19:59:22 +02006732 orig_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006733 orig_pos = 0;
6734 orig_size = set->used;
6735 orig_parent = NULL;
Michal Vasko39dbf352020-05-21 10:08:59 +02006736 for (i = 0; i < set->used; ++i) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006737 set_init(&set2, set);
6738 set_insert_node(&set2, set->val.nodes[i].node, set->val.nodes[i].pos, set->val.nodes[i].type, 0);
6739 /* remember the node context position for position() and context size for last(),
6740 * predicates should always be evaluated with respect to the child axis (since we do
6741 * not support explicit axes) so we assign positions based on their parents */
6742 if (parent_pos_pred && ((struct lyd_node *)set->val.nodes[i].node->parent != orig_parent)) {
6743 orig_parent = (struct lyd_node *)set->val.nodes[i].node->parent;
6744 orig_pos = 1;
6745 } else {
6746 ++orig_pos;
6747 }
6748
6749 set2.ctx_pos = orig_pos;
6750 set2.ctx_size = orig_size;
Michal Vasko004d3152020-06-11 19:59:22 +02006751 *tok_idx = orig_exp;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006752
Michal Vasko004d3152020-06-11 19:59:22 +02006753 rc = eval_expr_select(exp, tok_idx, 0, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006754 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02006755 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006756 return rc;
6757 }
6758
6759 /* number is a position */
6760 if (set2.type == LYXP_SET_NUMBER) {
6761 if ((long long)set2.val.num == orig_pos) {
6762 set2.val.num = 1;
6763 } else {
6764 set2.val.num = 0;
6765 }
6766 }
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006767 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006768
6769 /* predicate satisfied or not? */
Michal Vasko004d3152020-06-11 19:59:22 +02006770 if (!set2.val.bln) {
Michal Vasko2caefc12019-11-14 16:07:56 +01006771 set_remove_node_none(set, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006772 }
6773 }
Michal Vasko2caefc12019-11-14 16:07:56 +01006774 set_remove_nodes_none(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006775
6776 } else if (set->type == LYXP_SET_SCNODE_SET) {
6777 for (i = 0; i < set->used; ++i) {
6778 if (set->val.scnodes[i].in_ctx == 1) {
6779 /* there is a currently-valid node */
6780 break;
6781 }
6782 }
6783 /* empty set, nothing to evaluate */
6784 if (i == set->used) {
6785 goto only_parse;
6786 }
6787
Michal Vasko004d3152020-06-11 19:59:22 +02006788 orig_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006789
Michal Vasko03ff5a72019-09-11 13:49:33 +02006790 /* set special in_ctx to all the valid snodes */
6791 pred_in_ctx = set_scnode_new_in_ctx(set);
6792
6793 /* use the valid snodes one-by-one */
6794 for (i = 0; i < set->used; ++i) {
6795 if (set->val.scnodes[i].in_ctx != pred_in_ctx) {
6796 continue;
6797 }
6798 set->val.scnodes[i].in_ctx = 1;
6799
Michal Vasko004d3152020-06-11 19:59:22 +02006800 *tok_idx = orig_exp;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006801
Michal Vasko004d3152020-06-11 19:59:22 +02006802 rc = eval_expr_select(exp, tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006803 LY_CHECK_RET(rc);
6804
6805 set->val.scnodes[i].in_ctx = pred_in_ctx;
6806 }
6807
6808 /* restore the state as it was before the predicate */
6809 for (i = 0; i < set->used; ++i) {
6810 if (set->val.scnodes[i].in_ctx == 1) {
6811 set->val.scnodes[i].in_ctx = 0;
6812 } else if (set->val.scnodes[i].in_ctx == pred_in_ctx) {
6813 set->val.scnodes[i].in_ctx = 1;
6814 }
6815 }
6816
6817 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02006818 set2.type = LYXP_SET_NODE_SET;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006819 set_fill_set(&set2, set);
6820
Michal Vasko004d3152020-06-11 19:59:22 +02006821 rc = eval_expr_select(exp, tok_idx, 0, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006822 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02006823 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006824 return rc;
6825 }
6826
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006827 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko004d3152020-06-11 19:59:22 +02006828 if (!set2.val.bln) {
Michal Vaskod3678892020-05-21 10:06:58 +02006829 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006830 }
Michal Vaskod3678892020-05-21 10:06:58 +02006831 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006832 }
6833
6834 /* ']' */
Michal Vasko004d3152020-06-11 19:59:22 +02006835 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_BRACK2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006836 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02006837 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
6838 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006839
6840 return LY_SUCCESS;
6841}
6842
6843/**
Michal Vaskod3678892020-05-21 10:06:58 +02006844 * @brief Evaluate Literal. Logs directly on error.
6845 *
6846 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02006847 * @param[in] tok_idx Position in the expression @p exp.
Michal Vaskod3678892020-05-21 10:06:58 +02006848 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
6849 */
6850static void
Michal Vasko004d3152020-06-11 19:59:22 +02006851eval_literal(struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set)
Michal Vaskod3678892020-05-21 10:06:58 +02006852{
6853 if (set) {
Michal Vasko004d3152020-06-11 19:59:22 +02006854 if (exp->tok_len[*tok_idx] == 2) {
Michal Vaskod3678892020-05-21 10:06:58 +02006855 set_fill_string(set, "", 0);
6856 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02006857 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 +02006858 }
6859 }
6860 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02006861 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
6862 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02006863}
6864
6865/**
Michal Vasko004d3152020-06-11 19:59:22 +02006866 * @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 +02006867 *
Michal Vasko004d3152020-06-11 19:59:22 +02006868 * @param[in] exp Full parsed XPath expression.
6869 * @param[in,out] tok_idx Index in @p exp at the beginning of the predicate, is updated on success.
6870 * @param[in] scnode Found schema node as context for the predicate.
6871 * @param[in] format Format of any prefixes in key names/values.
6872 * @param[out] predicates Parsed predicates.
6873 * @param[out] pred_type Type of @p predicates.
6874 * @return LY_SUCCESS on success,
6875 * @return LY_ERR on any error.
Michal Vaskod3678892020-05-21 10:06:58 +02006876 */
6877static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02006878eval_name_test_try_compile_predicates(struct lyxp_expr *exp, uint16_t *tok_idx, const struct lysc_node *scnode,
6879 LYD_FORMAT format, struct ly_path_predicate **predicates, enum ly_path_pred_type *pred_type)
Michal Vaskod3678892020-05-21 10:06:58 +02006880{
Michal Vasko004d3152020-06-11 19:59:22 +02006881 LY_ERR ret = LY_SUCCESS;
6882 uint16_t key_count, e_idx, pred_idx = 0;
Michal Vaskod3678892020-05-21 10:06:58 +02006883 const struct lysc_node *key;
Michal Vasko004d3152020-06-11 19:59:22 +02006884 size_t pred_len;
6885 int prev_lo;
6886 struct lyxp_expr *exp2 = NULL;
Michal Vaskod3678892020-05-21 10:06:58 +02006887
Michal Vasko004d3152020-06-11 19:59:22 +02006888 assert(scnode->nodetype & (LYS_LIST | LYS_LEAFLIST));
Michal Vaskod3678892020-05-21 10:06:58 +02006889
Michal Vasko004d3152020-06-11 19:59:22 +02006890 if (scnode->nodetype == LYS_LIST) {
6891 /* get key count */
6892 if (scnode->flags & LYS_KEYLESS) {
6893 return LY_EINVAL;
6894 }
6895 for (key_count = 0, key = lysc_node_children(scnode, 0); key && (key->flags & LYS_KEY); key = key->next, ++key_count);
6896 assert(key_count);
Michal Vaskod3678892020-05-21 10:06:58 +02006897
Michal Vasko004d3152020-06-11 19:59:22 +02006898 /* learn where the predicates end */
6899 e_idx = *tok_idx;
6900 while (key_count) {
6901 /* '[' */
6902 if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK1)) {
6903 return LY_EINVAL;
6904 }
6905 ++e_idx;
6906
6907 /* ']' */
6908 while (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK2)) {
6909 ++e_idx;
6910 }
6911 ++e_idx;
6912
6913 /* another presumably key predicate parsed */
6914 --key_count;
6915 }
Michal Vasko004d3152020-06-11 19:59:22 +02006916 } else {
6917 /* learn just where this single predicate ends */
6918 e_idx = *tok_idx;
6919
Michal Vaskod3678892020-05-21 10:06:58 +02006920 /* '[' */
Michal Vasko004d3152020-06-11 19:59:22 +02006921 if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK1)) {
6922 return LY_EINVAL;
6923 }
6924 ++e_idx;
Michal Vaskod3678892020-05-21 10:06:58 +02006925
6926 /* ']' */
Michal Vasko004d3152020-06-11 19:59:22 +02006927 while (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK2)) {
6928 ++e_idx;
6929 }
6930 ++e_idx;
Michal Vaskod3678892020-05-21 10:06:58 +02006931 }
6932
Michal Vasko004d3152020-06-11 19:59:22 +02006933 /* get the joined length of all the keys predicates/of the single leaf-list predicate */
6934 pred_len = (exp->tok_pos[e_idx - 1] + exp->tok_len[e_idx - 1]) - exp->tok_pos[*tok_idx];
6935
6936 /* turn logging off */
6937 prev_lo = ly_log_options(0);
6938
6939 /* parse the predicate(s) */
Michal Vasko6b26e742020-07-17 15:02:10 +02006940 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 +02006941 LY_PATH_PREFIX_OPTIONAL, LY_PATH_PRED_SIMPLE, &exp2), cleanup);
6942
6943 /* compile */
6944 switch (format) {
6945 case LYD_SCHEMA:
Michal Vasko6b26e742020-07-17 15:02:10 +02006946 ret = ly_path_compile_predicate(scnode->module->ctx, scnode, scnode->module, scnode, exp2, &pred_idx,
6947 lys_resolve_prefix, scnode->module, LYD_SCHEMA, predicates, pred_type);
Michal Vasko004d3152020-06-11 19:59:22 +02006948 break;
6949 case LYD_JSON:
Michal Vasko6b26e742020-07-17 15:02:10 +02006950 ret = ly_path_compile_predicate(scnode->module->ctx, scnode, scnode->module, scnode, exp2, &pred_idx,
Michal Vasko00cbf532020-06-15 13:58:47 +02006951 lydjson_resolve_prefix, NULL, LYD_JSON, predicates, pred_type);
Michal Vasko004d3152020-06-11 19:59:22 +02006952 break;
6953 case LYD_XML:
Michal Vasko60ea6352020-06-29 13:39:39 +02006954 case LYD_LYB:
Michal Vasko004d3152020-06-11 19:59:22 +02006955 ret = LY_EINT;
6956 goto cleanup;
6957 }
6958 LY_CHECK_GOTO(ret, cleanup);
6959
6960 /* success, the predicate must include all the needed information for hash-based search */
6961 *tok_idx = e_idx;
6962
6963cleanup:
6964 ly_log_options(prev_lo);
6965 lyxp_expr_free(scnode->module->ctx, exp2);
6966 return ret;
Michal Vaskod3678892020-05-21 10:06:58 +02006967}
6968
6969/**
6970 * @brief Evaluate NameTest and any following Predicates. Logs directly on error.
6971 *
6972 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
6973 * [6] NodeTest ::= NameTest | NodeType '(' ')'
6974 * [7] NameTest ::= '*' | NCName ':' '*' | QName
6975 *
6976 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02006977 * @param[in] tok_idx Position in the expression @p exp.
Michal Vaskod3678892020-05-21 10:06:58 +02006978 * @param[in] attr_axis Whether to search attributes or standard nodes.
6979 * @param[in] all_desc Whether to search all the descendants or children only.
6980 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
6981 * @param[in] options XPath options.
6982 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6983 */
6984static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02006985eval_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 +02006986 int options)
6987{
6988 int i;
6989 char *path;
Michal Vasko004d3152020-06-11 19:59:22 +02006990 const char *ncname, *ncname_dict = NULL;
6991 uint16_t ncname_len;
Michal Vaskod3678892020-05-21 10:06:58 +02006992 const struct lys_module *moveto_mod;
6993 const struct lysc_node *scnode = NULL, *tmp;
Michal Vasko004d3152020-06-11 19:59:22 +02006994 struct ly_path_predicate *predicates = NULL;
6995 enum ly_path_pred_type pred_type = 0;
Michal Vaskod3678892020-05-21 10:06:58 +02006996 LY_ERR rc = LY_SUCCESS;
6997
6998 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02006999 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7000 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007001
7002 if (!set) {
7003 goto moveto;
7004 }
7005
Michal Vasko004d3152020-06-11 19:59:22 +02007006 ncname = &exp->expr[exp->tok_pos[*tok_idx - 1]];
7007 ncname_len = exp->tok_len[*tok_idx - 1];
Michal Vaskod3678892020-05-21 10:06:58 +02007008
7009 /* parse (and skip) module name */
7010 rc = moveto_resolve_model(&ncname, &ncname_len, set, &moveto_mod);
7011 LY_CHECK_GOTO(rc, cleanup);
7012
7013 if (moveto_mod && !attr_axis && !all_desc && (set->type == LYXP_SET_NODE_SET)) {
7014 /* find the matching schema node in some parent in the context */
7015 for (i = 0; i < (signed)set->used; ++i) {
7016 if (set->val.nodes[i].type == set->root_type) {
7017 tmp = lys_find_child(NULL, moveto_mod, ncname, ncname_len, 0, 0);
7018 } else if ((set->val.nodes[i].type == LYXP_NODE_ELEM)
7019 && (!scnode || (lysc_data_parent(scnode) != set->val.nodes[i].node->schema))) {
7020 /* do not repeat the same search */
7021 tmp = lys_find_child(set->val.nodes[i].node->schema, moveto_mod, ncname, ncname_len, 0, 0);
Radek Krejcib1247842020-07-02 16:22:38 +02007022 } else {
7023 tmp = NULL;
Michal Vaskod3678892020-05-21 10:06:58 +02007024 }
7025
7026 /* additional context check */
7027 if (tmp && (set->root_type == LYXP_NODE_ROOT_CONFIG) && (tmp->flags & LYS_CONFIG_R)) {
7028 tmp = NULL;
7029 }
7030
7031 if (tmp) {
7032 if (scnode) {
7033 /* we found a schema node with the same name but at different level, give up, too complicated */
7034 scnode = NULL;
7035 break;
7036 } else {
7037 /* remember the found schema node and continue to make sure it can be used */
7038 scnode = tmp;
7039 }
Michal Vaskod3678892020-05-21 10:06:58 +02007040 }
7041 }
7042
Michal Vasko004d3152020-06-11 19:59:22 +02007043 if (scnode && (scnode->nodetype & (LYS_LIST | LYS_LEAFLIST))) {
7044 /* try to create the predicates */
7045 if (eval_name_test_try_compile_predicates(exp, tok_idx, scnode, set->format, &predicates, &pred_type)) {
7046 /* hashes cannot be used */
Michal Vaskod3678892020-05-21 10:06:58 +02007047 scnode = NULL;
7048 }
7049 }
7050 }
7051
Michal Vasko004d3152020-06-11 19:59:22 +02007052 if (!scnode && moveto_mod) {
7053 /* we are not able to match based on a schema node and not all the modules match,
7054 * use dictionary for efficient comparison */
7055 ncname_dict = lydict_insert(set->ctx, ncname, ncname_len);
Michal Vaskod3678892020-05-21 10:06:58 +02007056 }
7057
7058moveto:
7059 /* move to the attribute(s), data node(s), or schema node(s) */
7060 if (attr_axis) {
7061 if (set && (options & LYXP_SCNODE_ALL)) {
7062 set_scnode_clear_ctx(set);
7063 } else {
7064 if (all_desc) {
Michal Vasko004d3152020-06-11 19:59:22 +02007065 rc = moveto_attr_alldesc(set, moveto_mod, ncname_dict);
Michal Vaskod3678892020-05-21 10:06:58 +02007066 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007067 rc = moveto_attr(set, moveto_mod, ncname_dict);
Michal Vaskod3678892020-05-21 10:06:58 +02007068 }
7069 LY_CHECK_GOTO(rc, cleanup);
7070 }
7071 } else {
7072 if (set && (options & LYXP_SCNODE_ALL)) {
7073 if (all_desc) {
Michal Vasko004d3152020-06-11 19:59:22 +02007074 rc = moveto_scnode_alldesc(set, moveto_mod, ncname_dict, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007075 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007076 rc = moveto_scnode(set, moveto_mod, ncname_dict, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007077 }
7078 LY_CHECK_GOTO(rc, cleanup);
7079
7080 for (i = set->used - 1; i > -1; --i) {
7081 if (set->val.scnodes[i].in_ctx > 0) {
7082 break;
7083 }
7084 }
7085 if (i == -1) {
7086 path = lysc_path(set->ctx_scnode, LYSC_PATH_LOG, NULL, 0);
7087 LOGWRN(set->ctx, "Schema node \"%.*s\" not found (%.*s) with context node \"%s\".",
Michal Vasko6b26e742020-07-17 15:02:10 +02007088 ncname_len, ncname, ncname - exp->expr, exp->expr, path);
Michal Vaskod3678892020-05-21 10:06:58 +02007089 free(path);
7090 }
7091 } else {
7092 if (all_desc) {
Michal Vasko004d3152020-06-11 19:59:22 +02007093 rc = moveto_node_alldesc(set, moveto_mod, ncname_dict);
Michal Vaskod3678892020-05-21 10:06:58 +02007094 } else {
7095 if (scnode) {
7096 /* we can find the nodes using hashes */
Michal Vasko004d3152020-06-11 19:59:22 +02007097 rc = moveto_node_hash(set, scnode, predicates);
Michal Vaskod3678892020-05-21 10:06:58 +02007098 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007099 rc = moveto_node(set, moveto_mod, ncname_dict);
Michal Vaskod3678892020-05-21 10:06:58 +02007100 }
7101 }
7102 LY_CHECK_GOTO(rc, cleanup);
7103 }
7104 }
7105
7106 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007107 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
7108 rc = eval_predicate(exp, tok_idx, set, options, 1);
Michal Vaskod3678892020-05-21 10:06:58 +02007109 LY_CHECK_RET(rc);
7110 }
7111
7112cleanup:
Michal Vaskodb51a8d2020-05-27 15:22:29 +02007113 if (set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007114 lydict_remove(set->ctx, ncname_dict);
7115 ly_path_predicates_free(set->ctx, pred_type, scnode, predicates);
Michal Vaskodb51a8d2020-05-27 15:22:29 +02007116 }
Michal Vaskod3678892020-05-21 10:06:58 +02007117 return rc;
7118}
7119
7120/**
7121 * @brief Evaluate NodeType and any following Predicates. Logs directly on error.
7122 *
7123 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
7124 * [6] NodeTest ::= NameTest | NodeType '(' ')'
7125 * [8] NodeType ::= 'text' | 'node'
7126 *
7127 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007128 * @param[in] tok_idx Position in the expression @p exp.
Michal Vaskod3678892020-05-21 10:06:58 +02007129 * @param[in] attr_axis Whether to search attributes or standard nodes.
7130 * @param[in] all_desc Whether to search all the descendants or children only.
7131 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7132 * @param[in] options XPath options.
7133 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7134 */
7135static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007136eval_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 +02007137 struct lyxp_set *set, int options)
7138{
7139 LY_ERR rc;
7140
7141 /* TODO */
7142 (void)attr_axis;
7143 (void)all_desc;
7144
7145 if (set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007146 assert(exp->tok_len[*tok_idx] == 4);
Michal Vaskod3678892020-05-21 10:06:58 +02007147 if (set->type == LYXP_SET_SCNODE_SET) {
7148 set_scnode_clear_ctx(set);
7149 /* just for the debug message below */
7150 set = NULL;
7151 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007152 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "node", 4)) {
Michal Vaskod3678892020-05-21 10:06:58 +02007153 rc = xpath_node(NULL, 0, set, options);
7154 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007155 assert(!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "text", 4));
Michal Vaskod3678892020-05-21 10:06:58 +02007156 rc = xpath_text(NULL, 0, set, options);
7157 }
7158 LY_CHECK_RET(rc);
7159 }
7160 }
7161 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007162 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7163 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007164
7165 /* '(' */
Michal Vasko004d3152020-06-11 19:59:22 +02007166 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR1);
Michal Vaskod3678892020-05-21 10:06:58 +02007167 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007168 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7169 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007170
7171 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02007172 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR2);
Michal Vaskod3678892020-05-21 10:06:58 +02007173 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007174 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7175 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007176
7177 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007178 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
7179 rc = eval_predicate(exp, tok_idx, set, options, 1);
Michal Vaskod3678892020-05-21 10:06:58 +02007180 LY_CHECK_RET(rc);
7181 }
7182
7183 return LY_SUCCESS;
7184}
7185
7186/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02007187 * @brief Evaluate RelativeLocationPath. Logs directly on error.
7188 *
7189 * [4] RelativeLocationPath ::= Step | RelativeLocationPath '/' Step | RelativeLocationPath '//' Step
7190 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
Michal Vaskod3678892020-05-21 10:06:58 +02007191 * [6] NodeTest ::= NameTest | NodeType '(' ')'
Michal Vasko03ff5a72019-09-11 13:49:33 +02007192 *
7193 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007194 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007195 * @param[in] all_desc Whether to search all the descendants or children only.
7196 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7197 * @param[in] options XPath options.
7198 * @return LY_ERR (YL_EINCOMPLETE on unresolved when)
7199 */
7200static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007201eval_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 +02007202{
7203 int attr_axis;
7204 LY_ERR rc;
7205
7206 goto step;
7207 do {
7208 /* evaluate '/' or '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02007209 if (exp->tok_len[*tok_idx] == 1) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007210 all_desc = 0;
7211 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007212 assert(exp->tok_len[*tok_idx] == 2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007213 all_desc = 1;
7214 }
7215 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007216 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7217 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007218
7219step:
Michal Vaskod3678892020-05-21 10:06:58 +02007220 /* evaluate abbreviated axis '@'? if any */
Michal Vasko004d3152020-06-11 19:59:22 +02007221 if (exp->tokens[*tok_idx] == LYXP_TOKEN_AT) {
Michal Vaskod3678892020-05-21 10:06:58 +02007222 attr_axis = 1;
7223
7224 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007225 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7226 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007227 } else {
7228 attr_axis = 0;
7229 }
7230
Michal Vasko03ff5a72019-09-11 13:49:33 +02007231 /* Step */
Michal Vasko004d3152020-06-11 19:59:22 +02007232 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007233 case LYXP_TOKEN_DOT:
7234 /* evaluate '.' */
7235 if (set && (options & LYXP_SCNODE_ALL)) {
7236 rc = moveto_scnode_self(set, all_desc, options);
7237 } else {
7238 rc = moveto_self(set, all_desc, options);
7239 }
7240 LY_CHECK_RET(rc);
7241 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007242 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7243 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007244 break;
7245
7246 case LYXP_TOKEN_DDOT:
7247 /* evaluate '..' */
7248 if (set && (options & LYXP_SCNODE_ALL)) {
7249 rc = moveto_scnode_parent(set, all_desc, options);
7250 } else {
7251 rc = moveto_parent(set, all_desc, options);
7252 }
7253 LY_CHECK_RET(rc);
7254 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007255 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7256 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007257 break;
7258
Michal Vasko03ff5a72019-09-11 13:49:33 +02007259 case LYXP_TOKEN_NAMETEST:
Michal Vaskod3678892020-05-21 10:06:58 +02007260 /* evaluate NameTest Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007261 rc = eval_name_test_with_predicate(exp, tok_idx, attr_axis, all_desc, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007262 LY_CHECK_RET(rc);
Michal Vaskod3678892020-05-21 10:06:58 +02007263 break;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007264
Michal Vaskod3678892020-05-21 10:06:58 +02007265 case LYXP_TOKEN_NODETYPE:
7266 /* evaluate NodeType Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007267 rc = eval_node_type_with_predicate(exp, tok_idx, attr_axis, all_desc, set, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007268 LY_CHECK_RET(rc);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007269 break;
7270
7271 default:
Michal Vasko02a77382019-09-12 11:47:35 +02007272 LOGINT_RET(set ? set->ctx : NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007273 }
Michal Vasko004d3152020-06-11 19:59:22 +02007274 } while (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007275
7276 return LY_SUCCESS;
7277}
7278
7279/**
7280 * @brief Evaluate AbsoluteLocationPath. Logs directly on error.
7281 *
7282 * [3] AbsoluteLocationPath ::= '/' RelativeLocationPath? | '//' RelativeLocationPath
7283 *
7284 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007285 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007286 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7287 * @param[in] options XPath options.
7288 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7289 */
7290static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007291eval_absolute_location_path(struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set, int options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007292{
7293 int all_desc;
7294 LY_ERR rc;
7295
7296 if (set) {
7297 /* no matter what tokens follow, we need to be at the root */
7298 moveto_root(set, options);
7299 }
7300
7301 /* '/' RelativeLocationPath? */
Michal Vasko004d3152020-06-11 19:59:22 +02007302 if (exp->tok_len[*tok_idx] == 1) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007303 /* evaluate '/' - deferred */
7304 all_desc = 0;
7305 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007306 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7307 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007308
Michal Vasko004d3152020-06-11 19:59:22 +02007309 if (lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_NONE)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007310 return LY_SUCCESS;
7311 }
Michal Vasko004d3152020-06-11 19:59:22 +02007312 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007313 case LYXP_TOKEN_DOT:
7314 case LYXP_TOKEN_DDOT:
7315 case LYXP_TOKEN_AT:
7316 case LYXP_TOKEN_NAMETEST:
7317 case LYXP_TOKEN_NODETYPE:
Michal Vasko004d3152020-06-11 19:59:22 +02007318 rc = eval_relative_location_path(exp, tok_idx, all_desc, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007319 LY_CHECK_RET(rc);
7320 break;
7321 default:
7322 break;
7323 }
7324
7325 /* '//' RelativeLocationPath */
7326 } else {
7327 /* evaluate '//' - deferred so as not to waste memory by remembering all the nodes */
7328 all_desc = 1;
7329 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007330 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7331 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007332
Michal Vasko004d3152020-06-11 19:59:22 +02007333 rc = eval_relative_location_path(exp, tok_idx, all_desc, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007334 LY_CHECK_RET(rc);
7335 }
7336
7337 return LY_SUCCESS;
7338}
7339
7340/**
7341 * @brief Evaluate FunctionCall. Logs directly on error.
7342 *
Michal Vaskod3678892020-05-21 10:06:58 +02007343 * [11] FunctionCall ::= FunctionName '(' ( Expr ( ',' Expr )* )? ')'
Michal Vasko03ff5a72019-09-11 13:49:33 +02007344 *
7345 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007346 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007347 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7348 * @param[in] options XPath options.
7349 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7350 */
7351static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007352eval_function_call(struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set, int options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007353{
7354 LY_ERR rc;
7355 LY_ERR (*xpath_func)(struct lyxp_set **, uint16_t, struct lyxp_set *, int) = NULL;
Michal Vasko0cbf54f2019-12-16 10:01:06 +01007356 uint16_t arg_count = 0, i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007357 struct lyxp_set **args = NULL, **args_aux;
7358
7359 if (set) {
7360 /* FunctionName */
Michal Vasko004d3152020-06-11 19:59:22 +02007361 switch (exp->tok_len[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007362 case 3:
Michal Vasko004d3152020-06-11 19:59:22 +02007363 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "not", 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007364 xpath_func = &xpath_not;
Michal Vasko004d3152020-06-11 19:59:22 +02007365 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "sum", 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007366 xpath_func = &xpath_sum;
7367 }
7368 break;
7369 case 4:
Michal Vasko004d3152020-06-11 19:59:22 +02007370 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "lang", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007371 xpath_func = &xpath_lang;
Michal Vasko004d3152020-06-11 19:59:22 +02007372 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "last", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007373 xpath_func = &xpath_last;
Michal Vasko004d3152020-06-11 19:59:22 +02007374 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "name", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007375 xpath_func = &xpath_name;
Michal Vasko004d3152020-06-11 19:59:22 +02007376 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "true", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007377 xpath_func = &xpath_true;
7378 }
7379 break;
7380 case 5:
Michal Vasko004d3152020-06-11 19:59:22 +02007381 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "count", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007382 xpath_func = &xpath_count;
Michal Vasko004d3152020-06-11 19:59:22 +02007383 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "false", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007384 xpath_func = &xpath_false;
Michal Vasko004d3152020-06-11 19:59:22 +02007385 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "floor", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007386 xpath_func = &xpath_floor;
Michal Vasko004d3152020-06-11 19:59:22 +02007387 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "round", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007388 xpath_func = &xpath_round;
Michal Vasko004d3152020-06-11 19:59:22 +02007389 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "deref", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007390 xpath_func = &xpath_deref;
7391 }
7392 break;
7393 case 6:
Michal Vasko004d3152020-06-11 19:59:22 +02007394 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "concat", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007395 xpath_func = &xpath_concat;
Michal Vasko004d3152020-06-11 19:59:22 +02007396 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "number", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007397 xpath_func = &xpath_number;
Michal Vasko004d3152020-06-11 19:59:22 +02007398 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007399 xpath_func = &xpath_string;
7400 }
7401 break;
7402 case 7:
Michal Vasko004d3152020-06-11 19:59:22 +02007403 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "boolean", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007404 xpath_func = &xpath_boolean;
Michal Vasko004d3152020-06-11 19:59:22 +02007405 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "ceiling", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007406 xpath_func = &xpath_ceiling;
Michal Vasko004d3152020-06-11 19:59:22 +02007407 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "current", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007408 xpath_func = &xpath_current;
7409 }
7410 break;
7411 case 8:
Michal Vasko004d3152020-06-11 19:59:22 +02007412 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "contains", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007413 xpath_func = &xpath_contains;
Michal Vasko004d3152020-06-11 19:59:22 +02007414 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "position", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007415 xpath_func = &xpath_position;
Michal Vasko004d3152020-06-11 19:59:22 +02007416 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "re-match", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007417 xpath_func = &xpath_re_match;
7418 }
7419 break;
7420 case 9:
Michal Vasko004d3152020-06-11 19:59:22 +02007421 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring", 9)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007422 xpath_func = &xpath_substring;
Michal Vasko004d3152020-06-11 19:59:22 +02007423 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "translate", 9)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007424 xpath_func = &xpath_translate;
7425 }
7426 break;
7427 case 10:
Michal Vasko004d3152020-06-11 19:59:22 +02007428 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "local-name", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007429 xpath_func = &xpath_local_name;
Michal Vasko004d3152020-06-11 19:59:22 +02007430 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "enum-value", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007431 xpath_func = &xpath_enum_value;
Michal Vasko004d3152020-06-11 19:59:22 +02007432 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "bit-is-set", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007433 xpath_func = &xpath_bit_is_set;
7434 }
7435 break;
7436 case 11:
Michal Vasko004d3152020-06-11 19:59:22 +02007437 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "starts-with", 11)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007438 xpath_func = &xpath_starts_with;
7439 }
7440 break;
7441 case 12:
Michal Vasko004d3152020-06-11 19:59:22 +02007442 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from", 12)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007443 xpath_func = &xpath_derived_from;
7444 }
7445 break;
7446 case 13:
Michal Vasko004d3152020-06-11 19:59:22 +02007447 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "namespace-uri", 13)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007448 xpath_func = &xpath_namespace_uri;
Michal Vasko004d3152020-06-11 19:59:22 +02007449 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string-length", 13)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007450 xpath_func = &xpath_string_length;
7451 }
7452 break;
7453 case 15:
Michal Vasko004d3152020-06-11 19:59:22 +02007454 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "normalize-space", 15)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007455 xpath_func = &xpath_normalize_space;
Michal Vasko004d3152020-06-11 19:59:22 +02007456 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-after", 15)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007457 xpath_func = &xpath_substring_after;
7458 }
7459 break;
7460 case 16:
Michal Vasko004d3152020-06-11 19:59:22 +02007461 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-before", 16)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007462 xpath_func = &xpath_substring_before;
7463 }
7464 break;
7465 case 20:
Michal Vasko004d3152020-06-11 19:59:22 +02007466 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from-or-self", 20)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007467 xpath_func = &xpath_derived_from_or_self;
7468 }
7469 break;
7470 }
7471
7472 if (!xpath_func) {
Michal Vasko004d3152020-06-11 19:59:22 +02007473 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 +02007474 return LY_EVALID;
7475 }
7476 }
7477
7478 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007479 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7480 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007481
7482 /* '(' */
Michal Vasko004d3152020-06-11 19:59:22 +02007483 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007484 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007485 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7486 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007487
7488 /* ( Expr ( ',' Expr )* )? */
Michal Vasko004d3152020-06-11 19:59:22 +02007489 if (exp->tokens[*tok_idx] != LYXP_TOKEN_PAR2) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007490 if (set) {
7491 args = malloc(sizeof *args);
7492 LY_CHECK_ERR_GOTO(!args, LOGMEM(set->ctx); rc = LY_EMEM, cleanup);
7493 arg_count = 1;
7494 args[0] = set_copy(set);
7495 if (!args[0]) {
7496 rc = LY_EMEM;
7497 goto cleanup;
7498 }
7499
Michal Vasko004d3152020-06-11 19:59:22 +02007500 rc = eval_expr_select(exp, tok_idx, 0, args[0], options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007501 LY_CHECK_GOTO(rc, cleanup);
7502 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007503 rc = eval_expr_select(exp, tok_idx, 0, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007504 LY_CHECK_GOTO(rc, cleanup);
7505 }
7506 }
Michal Vasko004d3152020-06-11 19:59:22 +02007507 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_COMMA)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007508 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007509 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7510 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007511
7512 if (set) {
7513 ++arg_count;
7514 args_aux = realloc(args, arg_count * sizeof *args);
7515 LY_CHECK_ERR_GOTO(!args_aux, arg_count--; LOGMEM(set->ctx); rc = LY_EMEM, cleanup);
7516 args = args_aux;
7517 args[arg_count - 1] = set_copy(set);
7518 if (!args[arg_count - 1]) {
7519 rc = LY_EMEM;
7520 goto cleanup;
7521 }
7522
Michal Vasko004d3152020-06-11 19:59:22 +02007523 rc = eval_expr_select(exp, tok_idx, 0, args[arg_count - 1], options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007524 LY_CHECK_GOTO(rc, cleanup);
7525 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007526 rc = eval_expr_select(exp, tok_idx, 0, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007527 LY_CHECK_GOTO(rc, cleanup);
7528 }
7529 }
7530
7531 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02007532 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007533 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007534 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7535 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007536
7537 if (set) {
7538 /* evaluate function */
7539 rc = xpath_func(args, arg_count, set, options);
7540
7541 if (options & LYXP_SCNODE_ALL) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007542 /* merge all nodes from arg evaluations */
7543 for (i = 0; i < arg_count; ++i) {
7544 set_scnode_clear_ctx(args[i]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01007545 lyxp_set_scnode_merge(set, args[i]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007546 }
7547 }
7548 } else {
7549 rc = LY_SUCCESS;
7550 }
7551
7552cleanup:
7553 for (i = 0; i < arg_count; ++i) {
7554 lyxp_set_free(args[i]);
7555 }
7556 free(args);
7557
7558 return rc;
7559}
7560
7561/**
7562 * @brief Evaluate Number. Logs directly on error.
7563 *
7564 * @param[in] ctx Context for errors.
7565 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007566 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007567 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7568 * @return LY_ERR
7569 */
7570static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007571eval_number(struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007572{
7573 long double num;
7574 char *endptr;
7575
7576 if (set) {
7577 errno = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02007578 num = strtold(&exp->expr[exp->tok_pos[*tok_idx]], &endptr);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007579 if (errno) {
Michal Vasko004d3152020-06-11 19:59:22 +02007580 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 +02007581 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 +02007582 exp->tok_len[*tok_idx], &exp->expr[exp->tok_pos[*tok_idx]], strerror(errno));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007583 return LY_EVALID;
Michal Vasko004d3152020-06-11 19:59:22 +02007584 } else if (endptr - &exp->expr[exp->tok_pos[*tok_idx]] != exp->tok_len[*tok_idx]) {
7585 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 +02007586 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 +02007587 exp->tok_len[*tok_idx], &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007588 return LY_EVALID;
7589 }
7590
7591 set_fill_number(set, num);
7592 }
7593
7594 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007595 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7596 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007597 return LY_SUCCESS;
7598}
7599
7600/**
7601 * @brief Evaluate PathExpr. Logs directly on error.
7602 *
Michal Vaskod3678892020-05-21 10:06:58 +02007603 * [12] PathExpr ::= LocationPath | PrimaryExpr Predicate*
Michal Vasko03ff5a72019-09-11 13:49:33 +02007604 * | PrimaryExpr Predicate* '/' RelativeLocationPath
7605 * | PrimaryExpr Predicate* '//' RelativeLocationPath
7606 * [2] LocationPath ::= RelativeLocationPath | AbsoluteLocationPath
Michal Vaskod3678892020-05-21 10:06:58 +02007607 * [10] PrimaryExpr ::= '(' Expr ')' | Literal | Number | FunctionCall
Michal Vasko03ff5a72019-09-11 13:49:33 +02007608 *
7609 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007610 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007611 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7612 * @param[in] options XPath options.
7613 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7614 */
7615static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007616eval_path_expr(struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set, int options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007617{
7618 int all_desc, parent_pos_pred;
7619 LY_ERR rc;
7620
Michal Vasko004d3152020-06-11 19:59:22 +02007621 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007622 case LYXP_TOKEN_PAR1:
7623 /* '(' Expr ')' */
7624
7625 /* '(' */
7626 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007627 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7628 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007629
7630 /* Expr */
Michal Vasko004d3152020-06-11 19:59:22 +02007631 rc = eval_expr_select(exp, tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007632 LY_CHECK_RET(rc);
7633
7634 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02007635 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007636 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007637 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7638 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007639
7640 parent_pos_pred = 0;
7641 goto predicate;
7642
7643 case LYXP_TOKEN_DOT:
7644 case LYXP_TOKEN_DDOT:
7645 case LYXP_TOKEN_AT:
7646 case LYXP_TOKEN_NAMETEST:
7647 case LYXP_TOKEN_NODETYPE:
7648 /* RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02007649 rc = eval_relative_location_path(exp, tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007650 LY_CHECK_RET(rc);
7651 break;
7652
7653 case LYXP_TOKEN_FUNCNAME:
7654 /* FunctionCall */
7655 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007656 rc = eval_function_call(exp, tok_idx, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007657 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007658 rc = eval_function_call(exp, tok_idx, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007659 }
7660 LY_CHECK_RET(rc);
7661
7662 parent_pos_pred = 1;
7663 goto predicate;
7664
Michal Vasko3e48bf32020-06-01 08:39:07 +02007665 case LYXP_TOKEN_OPER_PATH:
7666 case LYXP_TOKEN_OPER_RPATH:
Michal Vasko03ff5a72019-09-11 13:49:33 +02007667 /* AbsoluteLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02007668 rc = eval_absolute_location_path(exp, tok_idx, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007669 LY_CHECK_RET(rc);
7670 break;
7671
7672 case LYXP_TOKEN_LITERAL:
7673 /* Literal */
7674 if (!set || (options & LYXP_SCNODE_ALL)) {
7675 if (set) {
7676 set_scnode_clear_ctx(set);
7677 }
Michal Vasko004d3152020-06-11 19:59:22 +02007678 eval_literal(exp, tok_idx, NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007679 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007680 eval_literal(exp, tok_idx, set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007681 }
7682
7683 parent_pos_pred = 1;
7684 goto predicate;
7685
7686 case LYXP_TOKEN_NUMBER:
7687 /* Number */
7688 if (!set || (options & LYXP_SCNODE_ALL)) {
7689 if (set) {
7690 set_scnode_clear_ctx(set);
7691 }
Michal Vasko004d3152020-06-11 19:59:22 +02007692 rc = eval_number(NULL, exp, tok_idx, NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007693 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007694 rc = eval_number(set->ctx, exp, tok_idx, set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007695 }
7696 LY_CHECK_RET(rc);
7697
7698 parent_pos_pred = 1;
7699 goto predicate;
7700
7701 default:
Michal Vasko004d3152020-06-11 19:59:22 +02007702 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INTOK, lyxp_print_token(exp->tokens[*tok_idx]),
7703 &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007704 return LY_EVALID;
7705 }
7706
7707 return LY_SUCCESS;
7708
7709predicate:
7710 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007711 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
7712 rc = eval_predicate(exp, tok_idx, set, options, parent_pos_pred);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007713 LY_CHECK_RET(rc);
7714 }
7715
7716 /* ('/' or '//') RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02007717 if (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007718
7719 /* evaluate '/' or '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02007720 if (exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_PATH) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007721 all_desc = 0;
7722 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007723 all_desc = 1;
7724 }
7725
7726 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007727 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7728 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007729
Michal Vasko004d3152020-06-11 19:59:22 +02007730 rc = eval_relative_location_path(exp, tok_idx, all_desc, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007731 LY_CHECK_RET(rc);
7732 }
7733
7734 return LY_SUCCESS;
7735}
7736
7737/**
7738 * @brief Evaluate UnionExpr. Logs directly on error.
7739 *
Michal Vaskod3678892020-05-21 10:06:58 +02007740 * [20] UnionExpr ::= PathExpr | UnionExpr '|' PathExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02007741 *
7742 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007743 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007744 * @param[in] repeat How many times this expression is repeated.
7745 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7746 * @param[in] options XPath options.
7747 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7748 */
7749static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007750eval_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 +02007751{
7752 LY_ERR rc = LY_SUCCESS;
7753 struct lyxp_set orig_set, set2;
7754 uint16_t i;
7755
7756 assert(repeat);
7757
7758 set_init(&orig_set, set);
7759 set_init(&set2, set);
7760
7761 set_fill_set(&orig_set, set);
7762
Michal Vasko004d3152020-06-11 19:59:22 +02007763 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNION, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007764 LY_CHECK_GOTO(rc, cleanup);
7765
7766 /* ('|' PathExpr)* */
7767 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02007768 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_UNI);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007769 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007770 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7771 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007772
7773 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007774 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNION, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007775 LY_CHECK_GOTO(rc, cleanup);
7776 continue;
7777 }
7778
7779 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02007780 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNION, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007781 LY_CHECK_GOTO(rc, cleanup);
7782
7783 /* eval */
7784 if (options & LYXP_SCNODE_ALL) {
Michal Vaskoecd62de2019-11-13 12:35:11 +01007785 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007786 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007787 rc = moveto_union(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007788 LY_CHECK_GOTO(rc, cleanup);
7789 }
7790 }
7791
7792cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02007793 lyxp_set_free_content(&orig_set);
7794 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007795 return rc;
7796}
7797
7798/**
7799 * @brief Evaluate UnaryExpr. Logs directly on error.
7800 *
Michal Vaskod3678892020-05-21 10:06:58 +02007801 * [19] UnaryExpr ::= UnionExpr | '-' UnaryExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02007802 *
7803 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007804 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007805 * @param[in] repeat How many times this expression is repeated.
7806 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7807 * @param[in] options XPath options.
7808 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7809 */
7810static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007811eval_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 +02007812{
7813 LY_ERR rc;
7814 uint16_t this_op, i;
7815
7816 assert(repeat);
7817
7818 /* ('-')+ */
Michal Vasko004d3152020-06-11 19:59:22 +02007819 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007820 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02007821 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 +02007822
7823 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007824 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7825 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007826 }
7827
Michal Vasko004d3152020-06-11 19:59:22 +02007828 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNARY, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007829 LY_CHECK_RET(rc);
7830
7831 if (set && (repeat % 2)) {
7832 if (options & LYXP_SCNODE_ALL) {
7833 warn_operands(set->ctx, set, NULL, 1, exp->expr, exp->tok_pos[this_op]);
7834 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007835 rc = moveto_op_math(set, NULL, &exp->expr[exp->tok_pos[this_op]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007836 LY_CHECK_RET(rc);
7837 }
7838 }
7839
7840 return LY_SUCCESS;
7841}
7842
7843/**
7844 * @brief Evaluate MultiplicativeExpr. Logs directly on error.
7845 *
Michal Vaskod3678892020-05-21 10:06:58 +02007846 * [18] MultiplicativeExpr ::= UnaryExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02007847 * | MultiplicativeExpr '*' UnaryExpr
7848 * | MultiplicativeExpr 'div' UnaryExpr
7849 * | MultiplicativeExpr 'mod' UnaryExpr
7850 *
7851 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007852 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007853 * @param[in] repeat How many times this expression is repeated.
7854 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7855 * @param[in] options XPath options.
7856 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7857 */
7858static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007859eval_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 +02007860{
7861 LY_ERR rc;
7862 uint16_t this_op;
7863 struct lyxp_set orig_set, set2;
7864 uint16_t i;
7865
7866 assert(repeat);
7867
7868 set_init(&orig_set, set);
7869 set_init(&set2, set);
7870
7871 set_fill_set(&orig_set, set);
7872
Michal Vasko004d3152020-06-11 19:59:22 +02007873 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_MULTIPLICATIVE, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007874 LY_CHECK_GOTO(rc, cleanup);
7875
7876 /* ('*' / 'div' / 'mod' UnaryExpr)* */
7877 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02007878 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007879
Michal Vasko004d3152020-06-11 19:59:22 +02007880 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_MATH);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007881 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007882 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7883 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007884
7885 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007886 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_MULTIPLICATIVE, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007887 LY_CHECK_GOTO(rc, cleanup);
7888 continue;
7889 }
7890
7891 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02007892 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_MULTIPLICATIVE, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007893 LY_CHECK_GOTO(rc, cleanup);
7894
7895 /* eval */
7896 if (options & LYXP_SCNODE_ALL) {
7897 warn_operands(set->ctx, set, &set2, 1, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01007898 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007899 set_scnode_clear_ctx(set);
7900 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007901 rc = moveto_op_math(set, &set2, &exp->expr[exp->tok_pos[this_op]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007902 LY_CHECK_GOTO(rc, cleanup);
7903 }
7904 }
7905
7906cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02007907 lyxp_set_free_content(&orig_set);
7908 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007909 return rc;
7910}
7911
7912/**
7913 * @brief Evaluate AdditiveExpr. Logs directly on error.
7914 *
Michal Vaskod3678892020-05-21 10:06:58 +02007915 * [17] AdditiveExpr ::= MultiplicativeExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02007916 * | AdditiveExpr '+' MultiplicativeExpr
7917 * | AdditiveExpr '-' MultiplicativeExpr
7918 *
7919 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007920 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007921 * @param[in] repeat How many times this expression is repeated.
7922 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7923 * @param[in] options XPath options.
7924 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7925 */
7926static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007927eval_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 +02007928{
7929 LY_ERR rc;
7930 uint16_t this_op;
7931 struct lyxp_set orig_set, set2;
7932 uint16_t i;
7933
7934 assert(repeat);
7935
7936 set_init(&orig_set, set);
7937 set_init(&set2, set);
7938
7939 set_fill_set(&orig_set, set);
7940
Michal Vasko004d3152020-06-11 19:59:22 +02007941 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_ADDITIVE, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007942 LY_CHECK_GOTO(rc, cleanup);
7943
7944 /* ('+' / '-' MultiplicativeExpr)* */
7945 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02007946 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007947
Michal Vasko004d3152020-06-11 19:59:22 +02007948 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_MATH);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007949 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007950 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7951 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007952
7953 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007954 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_ADDITIVE, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007955 LY_CHECK_GOTO(rc, cleanup);
7956 continue;
7957 }
7958
7959 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02007960 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_ADDITIVE, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007961 LY_CHECK_GOTO(rc, cleanup);
7962
7963 /* eval */
7964 if (options & LYXP_SCNODE_ALL) {
7965 warn_operands(set->ctx, set, &set2, 1, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01007966 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007967 set_scnode_clear_ctx(set);
7968 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007969 rc = moveto_op_math(set, &set2, &exp->expr[exp->tok_pos[this_op]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007970 LY_CHECK_GOTO(rc, cleanup);
7971 }
7972 }
7973
7974cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02007975 lyxp_set_free_content(&orig_set);
7976 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007977 return rc;
7978}
7979
7980/**
7981 * @brief Evaluate RelationalExpr. Logs directly on error.
7982 *
Michal Vaskod3678892020-05-21 10:06:58 +02007983 * [16] RelationalExpr ::= AdditiveExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02007984 * | RelationalExpr '<' AdditiveExpr
7985 * | RelationalExpr '>' AdditiveExpr
7986 * | RelationalExpr '<=' AdditiveExpr
7987 * | RelationalExpr '>=' AdditiveExpr
7988 *
7989 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007990 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007991 * @param[in] repeat How many times this expression is repeated.
7992 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7993 * @param[in] options XPath options.
7994 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7995 */
7996static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007997eval_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 +02007998{
7999 LY_ERR rc;
8000 uint16_t this_op;
8001 struct lyxp_set orig_set, set2;
8002 uint16_t i;
8003
8004 assert(repeat);
8005
8006 set_init(&orig_set, set);
8007 set_init(&set2, set);
8008
8009 set_fill_set(&orig_set, set);
8010
Michal Vasko004d3152020-06-11 19:59:22 +02008011 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_RELATIONAL, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008012 LY_CHECK_GOTO(rc, cleanup);
8013
8014 /* ('<' / '>' / '<=' / '>=' AdditiveExpr)* */
8015 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008016 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008017
Michal Vasko004d3152020-06-11 19:59:22 +02008018 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_COMP);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008019 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02008020 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
8021 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008022
8023 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02008024 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_RELATIONAL, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008025 LY_CHECK_GOTO(rc, cleanup);
8026 continue;
8027 }
8028
8029 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02008030 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_RELATIONAL, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008031 LY_CHECK_GOTO(rc, cleanup);
8032
8033 /* eval */
8034 if (options & LYXP_SCNODE_ALL) {
8035 warn_operands(set->ctx, set, &set2, 1, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008036 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008037 set_scnode_clear_ctx(set);
8038 } else {
8039 rc = moveto_op_comp(set, &set2, &exp->expr[exp->tok_pos[this_op]], options);
8040 LY_CHECK_GOTO(rc, cleanup);
8041 }
8042 }
8043
8044cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008045 lyxp_set_free_content(&orig_set);
8046 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008047 return rc;
8048}
8049
8050/**
8051 * @brief Evaluate EqualityExpr. Logs directly on error.
8052 *
Michal Vaskod3678892020-05-21 10:06:58 +02008053 * [15] EqualityExpr ::= RelationalExpr | EqualityExpr '=' RelationalExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008054 * | EqualityExpr '!=' RelationalExpr
8055 *
8056 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008057 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008058 * @param[in] repeat How many times this expression is repeated.
8059 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
8060 * @param[in] options XPath options.
8061 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8062 */
8063static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02008064eval_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 +02008065{
8066 LY_ERR rc;
8067 uint16_t this_op;
8068 struct lyxp_set orig_set, set2;
8069 uint16_t i;
8070
8071 assert(repeat);
8072
8073 set_init(&orig_set, set);
8074 set_init(&set2, set);
8075
8076 set_fill_set(&orig_set, set);
8077
Michal Vasko004d3152020-06-11 19:59:22 +02008078 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_EQUALITY, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008079 LY_CHECK_GOTO(rc, cleanup);
8080
8081 /* ('=' / '!=' RelationalExpr)* */
8082 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008083 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008084
Michal Vasko004d3152020-06-11 19:59:22 +02008085 assert((exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_EQUAL) || (exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_NEQUAL));
Michal Vasko03ff5a72019-09-11 13:49:33 +02008086 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02008087 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
8088 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008089
8090 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02008091 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_EQUALITY, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008092 LY_CHECK_GOTO(rc, cleanup);
8093 continue;
8094 }
8095
8096 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02008097 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_EQUALITY, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008098 LY_CHECK_GOTO(rc, cleanup);
8099
8100 /* eval */
8101 if (options & LYXP_SCNODE_ALL) {
8102 warn_operands(set->ctx, set, &set2, 0, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vasko004d3152020-06-11 19:59:22 +02008103 warn_equality_value(exp, set, *tok_idx - 1, this_op - 1, *tok_idx - 1);
8104 warn_equality_value(exp, &set2, this_op - 1, this_op - 1, *tok_idx - 1);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008105 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008106 set_scnode_clear_ctx(set);
8107 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008108 rc = moveto_op_comp(set, &set2, &exp->expr[exp->tok_pos[this_op]], options);
8109 LY_CHECK_GOTO(rc, cleanup);
8110 }
8111 }
8112
8113cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008114 lyxp_set_free_content(&orig_set);
8115 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008116 return rc;
8117}
8118
8119/**
8120 * @brief Evaluate AndExpr. Logs directly on error.
8121 *
Michal Vaskod3678892020-05-21 10:06:58 +02008122 * [14] AndExpr ::= EqualityExpr | AndExpr 'and' EqualityExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008123 *
8124 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008125 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008126 * @param[in] repeat How many times this expression is repeated.
8127 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
8128 * @param[in] options XPath options.
8129 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8130 */
8131static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02008132eval_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 +02008133{
8134 LY_ERR rc;
8135 struct lyxp_set orig_set, set2;
8136 uint16_t i;
8137
8138 assert(repeat);
8139
8140 set_init(&orig_set, set);
8141 set_init(&set2, set);
8142
8143 set_fill_set(&orig_set, set);
8144
Michal Vasko004d3152020-06-11 19:59:22 +02008145 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_AND, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008146 LY_CHECK_GOTO(rc, cleanup);
8147
8148 /* cast to boolean, we know that will be the final result */
8149 if (set && (options & LYXP_SCNODE_ALL)) {
8150 set_scnode_clear_ctx(set);
8151 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008152 lyxp_set_cast(set, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008153 }
8154
8155 /* ('and' EqualityExpr)* */
8156 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008157 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_LOG);
8158 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (!set || !set->val.bln ? "skipped" : "parsed"),
8159 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
8160 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008161
8162 /* lazy evaluation */
Michal Vasko004d3152020-06-11 19:59:22 +02008163 if (!set || ((set->type == LYXP_SET_BOOLEAN) && !set->val.bln)) {
8164 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_AND, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008165 LY_CHECK_GOTO(rc, cleanup);
8166 continue;
8167 }
8168
8169 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02008170 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_AND, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008171 LY_CHECK_GOTO(rc, cleanup);
8172
8173 /* eval - just get boolean value actually */
8174 if (set->type == LYXP_SET_SCNODE_SET) {
8175 set_scnode_clear_ctx(&set2);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008176 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008177 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008178 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008179 set_fill_set(set, &set2);
8180 }
8181 }
8182
8183cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008184 lyxp_set_free_content(&orig_set);
8185 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008186 return rc;
8187}
8188
8189/**
8190 * @brief Evaluate OrExpr. Logs directly on error.
8191 *
Michal Vaskod3678892020-05-21 10:06:58 +02008192 * [13] OrExpr ::= AndExpr | OrExpr 'or' AndExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008193 *
8194 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008195 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008196 * @param[in] repeat How many times this expression is repeated.
8197 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
8198 * @param[in] options XPath options.
8199 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8200 */
8201static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02008202eval_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 +02008203{
8204 LY_ERR rc;
8205 struct lyxp_set orig_set, set2;
8206 uint16_t i;
8207
8208 assert(repeat);
8209
8210 set_init(&orig_set, set);
8211 set_init(&set2, set);
8212
8213 set_fill_set(&orig_set, set);
8214
Michal Vasko004d3152020-06-11 19:59:22 +02008215 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_OR, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008216 LY_CHECK_GOTO(rc, cleanup);
8217
8218 /* cast to boolean, we know that will be the final result */
8219 if (set && (options & LYXP_SCNODE_ALL)) {
8220 set_scnode_clear_ctx(set);
8221 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008222 lyxp_set_cast(set, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008223 }
8224
8225 /* ('or' AndExpr)* */
8226 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008227 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_LOG);
8228 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (!set || set->val.bln ? "skipped" : "parsed"),
8229 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
8230 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008231
8232 /* lazy evaluation */
Michal Vasko004d3152020-06-11 19:59:22 +02008233 if (!set || ((set->type == LYXP_SET_BOOLEAN) && set->val.bln)) {
8234 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_OR, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008235 LY_CHECK_GOTO(rc, cleanup);
8236 continue;
8237 }
8238
8239 set_fill_set(&set2, &orig_set);
8240 /* expr_type cound have been LYXP_EXPR_NONE in all these later calls (except for the first one),
8241 * but it does not matter */
Michal Vasko004d3152020-06-11 19:59:22 +02008242 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_OR, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008243 LY_CHECK_GOTO(rc, cleanup);
8244
8245 /* eval - just get boolean value actually */
8246 if (set->type == LYXP_SET_SCNODE_SET) {
8247 set_scnode_clear_ctx(&set2);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008248 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008249 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008250 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008251 set_fill_set(set, &set2);
8252 }
8253 }
8254
8255cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008256 lyxp_set_free_content(&orig_set);
8257 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008258 return rc;
8259}
8260
8261/**
Michal Vasko004d3152020-06-11 19:59:22 +02008262 * @brief Decide what expression is at the pointer @p tok_idx and evaluate it accordingly.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008263 *
8264 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008265 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008266 * @param[in] etype Expression type to evaluate.
8267 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
8268 * @param[in] options XPath options.
8269 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8270 */
8271static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02008272eval_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 +02008273{
8274 uint16_t i, count;
8275 enum lyxp_expr_type next_etype;
8276 LY_ERR rc;
8277
8278 /* process operator repeats */
Michal Vasko004d3152020-06-11 19:59:22 +02008279 if (!exp->repeat[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008280 next_etype = LYXP_EXPR_NONE;
8281 } else {
8282 /* find etype repeat */
Michal Vasko004d3152020-06-11 19:59:22 +02008283 for (i = 0; exp->repeat[*tok_idx][i] > etype; ++i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008284
8285 /* select one-priority lower because etype expression called us */
8286 if (i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008287 next_etype = exp->repeat[*tok_idx][i - 1];
Michal Vasko03ff5a72019-09-11 13:49:33 +02008288 /* count repeats for that expression */
Michal Vasko004d3152020-06-11 19:59:22 +02008289 for (count = 0; i && exp->repeat[*tok_idx][i - 1] == next_etype; ++count, --i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008290 } else {
8291 next_etype = LYXP_EXPR_NONE;
8292 }
8293 }
8294
8295 /* decide what expression are we parsing based on the repeat */
8296 switch (next_etype) {
8297 case LYXP_EXPR_OR:
Michal Vasko004d3152020-06-11 19:59:22 +02008298 rc = eval_or_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008299 break;
8300 case LYXP_EXPR_AND:
Michal Vasko004d3152020-06-11 19:59:22 +02008301 rc = eval_and_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008302 break;
8303 case LYXP_EXPR_EQUALITY:
Michal Vasko004d3152020-06-11 19:59:22 +02008304 rc = eval_equality_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008305 break;
8306 case LYXP_EXPR_RELATIONAL:
Michal Vasko004d3152020-06-11 19:59:22 +02008307 rc = eval_relational_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008308 break;
8309 case LYXP_EXPR_ADDITIVE:
Michal Vasko004d3152020-06-11 19:59:22 +02008310 rc = eval_additive_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008311 break;
8312 case LYXP_EXPR_MULTIPLICATIVE:
Michal Vasko004d3152020-06-11 19:59:22 +02008313 rc = eval_multiplicative_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008314 break;
8315 case LYXP_EXPR_UNARY:
Michal Vasko004d3152020-06-11 19:59:22 +02008316 rc = eval_unary_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008317 break;
8318 case LYXP_EXPR_UNION:
Michal Vasko004d3152020-06-11 19:59:22 +02008319 rc = eval_union_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008320 break;
8321 case LYXP_EXPR_NONE:
Michal Vasko004d3152020-06-11 19:59:22 +02008322 rc = eval_path_expr(exp, tok_idx, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008323 break;
8324 default:
8325 LOGINT_RET(set->ctx);
8326 }
8327
8328 return rc;
8329}
8330
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008331/**
8332 * @brief Get root type.
8333 *
8334 * @param[in] ctx_node Context node.
8335 * @param[in] ctx_scnode Schema context node.
8336 * @param[in] options XPath options.
8337 * @return Root type.
8338 */
8339static enum lyxp_node_type
8340lyxp_get_root_type(const struct lyd_node *ctx_node, const struct lysc_node *ctx_scnode, int options)
8341{
Michal Vasko6b26e742020-07-17 15:02:10 +02008342 const struct lysc_node *op;
8343
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008344 if (options & LYXP_SCNODE_ALL) {
Michal Vasko6b26e742020-07-17 15:02:10 +02008345 for (op = ctx_scnode; op && !(op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)); op = op->parent);
8346
8347 if (op || (options & LYXP_SCNODE)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008348 /* general root that can access everything */
8349 return LYXP_NODE_ROOT;
8350 } else if (!ctx_scnode || (ctx_scnode->flags & LYS_CONFIG_W)) {
8351 /* root context node can access only config data (because we said so, it is unspecified) */
8352 return LYXP_NODE_ROOT_CONFIG;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008353 }
Michal Vasko6b26e742020-07-17 15:02:10 +02008354 return LYXP_NODE_ROOT;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008355 }
8356
Michal Vasko6b26e742020-07-17 15:02:10 +02008357 op = ctx_node ? ctx_node->schema : NULL;
8358 for (; op && !(op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)); op = op->parent);
8359
8360 if (!ctx_node || (!op && (ctx_node->schema->flags & LYS_CONFIG_W))) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008361 /* root context node can access only config data (because we said so, it is unspecified) */
8362 return LYXP_NODE_ROOT_CONFIG;
8363 }
8364
8365 return LYXP_NODE_ROOT;
8366}
8367
Michal Vasko03ff5a72019-09-11 13:49:33 +02008368LY_ERR
Michal Vaskoecd62de2019-11-13 12:35:11 +01008369lyxp_eval(struct lyxp_expr *exp, LYD_FORMAT format, const struct lys_module *local_mod, const struct lyd_node *ctx_node,
Michal Vaskof03ed032020-03-04 13:31:44 +01008370 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 +02008371{
Michal Vasko004d3152020-06-11 19:59:22 +02008372 uint16_t tok_idx = 0;
8373 const struct lyd_node *real_ctx_node;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008374 LY_ERR rc;
8375
Michal Vasko004d3152020-06-11 19:59:22 +02008376 LY_CHECK_ARG_RET(NULL, exp, local_mod, ctx_node, set, LY_EINVAL);
8377
8378 if ((ctx_node_type == LYXP_NODE_ROOT) || (ctx_node_type == LYXP_NODE_ROOT_CONFIG)) {
8379 /* we always need some context node because it is used for resolving unqualified names */
8380 real_ctx_node = NULL;
8381 } else {
8382 real_ctx_node = ctx_node;
8383 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02008384
8385 /* prepare set for evaluation */
Michal Vasko004d3152020-06-11 19:59:22 +02008386 tok_idx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008387 memset(set, 0, sizeof *set);
Michal Vaskod3678892020-05-21 10:06:58 +02008388 set->type = LYXP_SET_NODE_SET;
Michal Vasko004d3152020-06-11 19:59:22 +02008389 set_insert_node(set, (struct lyd_node *)real_ctx_node, 0, ctx_node_type, 0);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008390 set->ctx = local_mod->ctx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008391 set->ctx_node = ctx_node;
Michal Vasko004d3152020-06-11 19:59:22 +02008392 set->root_type = lyxp_get_root_type(real_ctx_node, NULL, options);
Michal Vasko6b26e742020-07-17 15:02:10 +02008393 for (set->context_op = ctx_node->schema;
8394 set->context_op && !(set->context_op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF));
8395 set->context_op = set->context_op->parent);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008396 set->local_mod = local_mod;
Michal Vaskof03ed032020-03-04 13:31:44 +01008397 set->tree = tree;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008398 set->format = format;
8399
8400 /* evaluate */
Michal Vasko004d3152020-06-11 19:59:22 +02008401 rc = eval_expr_select(exp, &tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008402 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02008403 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008404 }
8405
Michal Vasko03ff5a72019-09-11 13:49:33 +02008406 return rc;
8407}
8408
8409#if 0
8410
8411/* full xml printing of set elements, not used currently */
8412
8413void
8414lyxp_set_print_xml(FILE *f, struct lyxp_set *set)
8415{
8416 uint32_t i;
8417 char *str_num;
8418 struct lyout out;
8419
8420 memset(&out, 0, sizeof out);
8421
8422 out.type = LYOUT_STREAM;
8423 out.method.f = f;
8424
8425 switch (set->type) {
8426 case LYXP_SET_EMPTY:
8427 ly_print(&out, "Empty XPath set\n\n");
8428 break;
8429 case LYXP_SET_BOOLEAN:
8430 ly_print(&out, "Boolean XPath set:\n");
8431 ly_print(&out, "%s\n\n", set->value.bool ? "true" : "false");
8432 break;
8433 case LYXP_SET_STRING:
8434 ly_print(&out, "String XPath set:\n");
8435 ly_print(&out, "\"%s\"\n\n", set->value.str);
8436 break;
8437 case LYXP_SET_NUMBER:
8438 ly_print(&out, "Number XPath set:\n");
8439
8440 if (isnan(set->value.num)) {
8441 str_num = strdup("NaN");
8442 } else if ((set->value.num == 0) || (set->value.num == -0.0f)) {
8443 str_num = strdup("0");
8444 } else if (isinf(set->value.num) && !signbit(set->value.num)) {
8445 str_num = strdup("Infinity");
8446 } else if (isinf(set->value.num) && signbit(set->value.num)) {
8447 str_num = strdup("-Infinity");
8448 } else if ((long long)set->value.num == set->value.num) {
8449 if (asprintf(&str_num, "%lld", (long long)set->value.num) == -1) {
8450 str_num = NULL;
8451 }
8452 } else {
8453 if (asprintf(&str_num, "%03.1Lf", set->value.num) == -1) {
8454 str_num = NULL;
8455 }
8456 }
8457 if (!str_num) {
8458 LOGMEM;
8459 return;
8460 }
8461 ly_print(&out, "%s\n\n", str_num);
8462 free(str_num);
8463 break;
8464 case LYXP_SET_NODE_SET:
8465 ly_print(&out, "Node XPath set:\n");
8466
8467 for (i = 0; i < set->used; ++i) {
8468 ly_print(&out, "%d. ", i + 1);
8469 switch (set->node_type[i]) {
8470 case LYXP_NODE_ROOT_ALL:
8471 ly_print(&out, "ROOT all\n\n");
8472 break;
8473 case LYXP_NODE_ROOT_CONFIG:
8474 ly_print(&out, "ROOT config\n\n");
8475 break;
8476 case LYXP_NODE_ROOT_STATE:
8477 ly_print(&out, "ROOT state\n\n");
8478 break;
8479 case LYXP_NODE_ROOT_NOTIF:
8480 ly_print(&out, "ROOT notification \"%s\"\n\n", set->value.nodes[i]->schema->name);
8481 break;
8482 case LYXP_NODE_ROOT_RPC:
8483 ly_print(&out, "ROOT rpc \"%s\"\n\n", set->value.nodes[i]->schema->name);
8484 break;
8485 case LYXP_NODE_ROOT_OUTPUT:
8486 ly_print(&out, "ROOT output \"%s\"\n\n", set->value.nodes[i]->schema->name);
8487 break;
8488 case LYXP_NODE_ELEM:
8489 ly_print(&out, "ELEM \"%s\"\n", set->value.nodes[i]->schema->name);
8490 xml_print_node(&out, 1, set->value.nodes[i], 1, LYP_FORMAT);
8491 ly_print(&out, "\n");
8492 break;
8493 case LYXP_NODE_TEXT:
8494 ly_print(&out, "TEXT \"%s\"\n\n", ((struct lyd_node_leaf_list *)set->value.nodes[i])->value_str);
8495 break;
8496 case LYXP_NODE_ATTR:
8497 ly_print(&out, "ATTR \"%s\" = \"%s\"\n\n", set->value.attrs[i]->name, set->value.attrs[i]->value);
8498 break;
8499 }
8500 }
8501 break;
8502 }
8503}
8504
8505#endif
8506
8507LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008508lyxp_set_cast(struct lyxp_set *set, enum lyxp_set_type target)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008509{
8510 long double num;
8511 char *str;
8512 LY_ERR rc;
8513
8514 if (!set || (set->type == target)) {
8515 return LY_SUCCESS;
8516 }
8517
8518 /* it's not possible to convert anything into a node set */
Michal Vaskod3678892020-05-21 10:06:58 +02008519 assert(target != LYXP_SET_NODE_SET);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008520
8521 if (set->type == LYXP_SET_SCNODE_SET) {
Michal Vaskod3678892020-05-21 10:06:58 +02008522 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008523 return LY_EINVAL;
8524 }
8525
8526 /* to STRING */
Michal Vaskod3678892020-05-21 10:06:58 +02008527 if ((target == LYXP_SET_STRING) || ((target == LYXP_SET_NUMBER) && (set->type == LYXP_SET_NODE_SET))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008528 switch (set->type) {
8529 case LYXP_SET_NUMBER:
8530 if (isnan(set->val.num)) {
8531 set->val.str = strdup("NaN");
8532 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
8533 } else if ((set->val.num == 0) || (set->val.num == -0.0f)) {
8534 set->val.str = strdup("0");
8535 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
8536 } else if (isinf(set->val.num) && !signbit(set->val.num)) {
8537 set->val.str = strdup("Infinity");
8538 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
8539 } else if (isinf(set->val.num) && signbit(set->val.num)) {
8540 set->val.str = strdup("-Infinity");
8541 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
8542 } else if ((long long)set->val.num == set->val.num) {
8543 if (asprintf(&str, "%lld", (long long)set->val.num) == -1) {
8544 LOGMEM_RET(set->ctx);
8545 }
8546 set->val.str = str;
8547 } else {
8548 if (asprintf(&str, "%03.1Lf", set->val.num) == -1) {
8549 LOGMEM_RET(set->ctx);
8550 }
8551 set->val.str = str;
8552 }
8553 break;
8554 case LYXP_SET_BOOLEAN:
Michal Vasko004d3152020-06-11 19:59:22 +02008555 if (set->val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008556 set->val.str = strdup("true");
8557 } else {
8558 set->val.str = strdup("false");
8559 }
8560 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), LY_EMEM);
8561 break;
8562 case LYXP_SET_NODE_SET:
8563 assert(set->used);
8564
8565 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008566 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02008567
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008568 rc = cast_node_set_to_string(set, &str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008569 LY_CHECK_RET(rc);
Michal Vaskod3678892020-05-21 10:06:58 +02008570 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008571 set->val.str = str;
8572 break;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008573 default:
8574 LOGINT_RET(set->ctx);
8575 }
8576 set->type = LYXP_SET_STRING;
8577 }
8578
8579 /* to NUMBER */
8580 if (target == LYXP_SET_NUMBER) {
8581 switch (set->type) {
8582 case LYXP_SET_STRING:
8583 num = cast_string_to_number(set->val.str);
Michal Vaskod3678892020-05-21 10:06:58 +02008584 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008585 set->val.num = num;
8586 break;
8587 case LYXP_SET_BOOLEAN:
Michal Vasko004d3152020-06-11 19:59:22 +02008588 if (set->val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008589 set->val.num = 1;
8590 } else {
8591 set->val.num = 0;
8592 }
8593 break;
8594 default:
8595 LOGINT_RET(set->ctx);
8596 }
8597 set->type = LYXP_SET_NUMBER;
8598 }
8599
8600 /* to BOOLEAN */
8601 if (target == LYXP_SET_BOOLEAN) {
8602 switch (set->type) {
8603 case LYXP_SET_NUMBER:
8604 if ((set->val.num == 0) || (set->val.num == -0.0f) || isnan(set->val.num)) {
Michal Vasko004d3152020-06-11 19:59:22 +02008605 set->val.bln = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008606 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02008607 set->val.bln = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008608 }
8609 break;
8610 case LYXP_SET_STRING:
8611 if (set->val.str[0]) {
Michal Vaskod3678892020-05-21 10:06:58 +02008612 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02008613 set->val.bln = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008614 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02008615 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02008616 set->val.bln = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008617 }
8618 break;
8619 case LYXP_SET_NODE_SET:
Michal Vaskod3678892020-05-21 10:06:58 +02008620 if (set->used) {
8621 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02008622 set->val.bln = 1;
Michal Vaskod3678892020-05-21 10:06:58 +02008623 } else {
8624 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02008625 set->val.bln = 0;
Michal Vaskod3678892020-05-21 10:06:58 +02008626 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02008627 break;
8628 default:
8629 LOGINT_RET(set->ctx);
8630 }
8631 set->type = LYXP_SET_BOOLEAN;
8632 }
8633
Michal Vasko03ff5a72019-09-11 13:49:33 +02008634 return LY_SUCCESS;
8635}
8636
8637LY_ERR
8638lyxp_atomize(struct lyxp_expr *exp, LYD_FORMAT format, const struct lys_module *local_mod, const struct lysc_node *ctx_scnode,
8639 enum lyxp_node_type ctx_scnode_type, struct lyxp_set *set, int options)
8640{
8641 struct ly_ctx *ctx;
Michal Vasko004d3152020-06-11 19:59:22 +02008642 const struct lysc_node *real_ctx_scnode;
8643 uint16_t tok_idx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008644
Michal Vasko004d3152020-06-11 19:59:22 +02008645 LY_CHECK_ARG_RET(NULL, exp, local_mod, ctx_scnode, set, LY_EINVAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008646
8647 ctx = local_mod->ctx;
Michal Vasko004d3152020-06-11 19:59:22 +02008648 if ((ctx_scnode_type == LYXP_NODE_ROOT) || (ctx_scnode_type == LYXP_NODE_ROOT_CONFIG)) {
8649 /* we always need some context node because it is used for resolving unqualified names */
8650 real_ctx_scnode = NULL;
8651 } else {
8652 real_ctx_scnode = ctx_scnode;
8653 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02008654
8655 /* prepare set for evaluation */
Michal Vasko004d3152020-06-11 19:59:22 +02008656 tok_idx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008657 memset(set, 0, sizeof *set);
8658 set->type = LYXP_SET_SCNODE_SET;
Michal Vasko004d3152020-06-11 19:59:22 +02008659 lyxp_set_scnode_insert_node(set, real_ctx_scnode, ctx_scnode_type);
Michal Vasko5c4e5892019-11-14 12:31:38 +01008660 set->val.scnodes[0].in_ctx = -2;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008661 set->ctx = ctx;
8662 set->ctx_scnode = ctx_scnode;
Michal Vasko004d3152020-06-11 19:59:22 +02008663 set->root_type = lyxp_get_root_type(NULL, real_ctx_scnode, options);
Michal Vasko6b26e742020-07-17 15:02:10 +02008664 for (set->context_op = ctx_scnode;
8665 set->context_op && !(set->context_op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF));
8666 set->context_op = set->context_op->parent);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008667 set->local_mod = local_mod;
8668 set->format = format;
8669
8670 /* evaluate */
Michal Vasko004d3152020-06-11 19:59:22 +02008671 return eval_expr_select(exp, &tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008672}
Michal Vaskod43d71a2020-08-07 14:54:58 +02008673
8674API const char *
8675lyxp_get_expr(const struct lyxp_expr *path)
8676{
8677 if (!path) {
8678 return NULL;
8679 }
8680
8681 return path->expr;
8682}