blob: 61edb2dd98d05e242ae19f539993cbf041404d32 [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 char *str;
5284
Michal Vasko2104e9f2020-03-06 08:23:25 +01005285 assert((set->type == LYXP_SET_NODE_SET) || (set->type == LYXP_SET_SCNODE_SET));
5286
Michal Vasko6346ece2019-09-24 13:12:53 +02005287 if ((ptr = ly_strnchr(*qname, ':', *qname_len))) {
5288 /* specific module */
5289 pref_len = ptr - *qname;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005290
Michal Vasko6346ece2019-09-24 13:12:53 +02005291 switch (set->format) {
Michal Vasko52927e22020-03-16 17:26:14 +01005292 case LYD_SCHEMA:
Michal Vasko6346ece2019-09-24 13:12:53 +02005293 /* schema, search all local module imports */
5294 mod = lys_module_find_prefix(set->local_mod, *qname, pref_len);
5295 break;
5296 case LYD_JSON:
5297 /* JSON data, search in context */
5298 str = strndup(*qname, pref_len);
Michal Vasko97e76fd2020-05-27 15:22:01 +02005299 mod = ly_ctx_get_module_implemented(set->ctx, str);
Michal Vasko6346ece2019-09-24 13:12:53 +02005300 free(str);
5301 break;
Michal Vasko52927e22020-03-16 17:26:14 +01005302 case LYD_XML:
Michal Vasko60ea6352020-06-29 13:39:39 +02005303 case LYD_LYB:
Michal Vasko6346ece2019-09-24 13:12:53 +02005304 LOGINT_RET(set->ctx);
5305 }
5306
Michal Vasko004d3152020-06-11 19:59:22 +02005307 /* check for errors and non-implemented modules, as they are not valid */
Juraj Vijtiukd75faa62019-11-26 14:10:10 +01005308 if (!mod || !mod->implemented) {
Michal Vasko2104e9f2020-03-06 08:23:25 +01005309 if (set->type == LYXP_SET_SCNODE_SET) {
5310 LOGVAL(set->ctx, LY_VLOG_LYSC, set->ctx_scnode, LY_VCODE_XP_INMOD, pref_len, *qname);
5311 } else {
5312 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INMOD, pref_len, *qname);
5313 }
Michal Vasko6346ece2019-09-24 13:12:53 +02005314 return LY_EVALID;
5315 }
Juraj Vijtiukd75faa62019-11-26 14:10:10 +01005316
Michal Vasko6346ece2019-09-24 13:12:53 +02005317 *qname += pref_len + 1;
5318 *qname_len -= pref_len + 1;
5319 } else if (((*qname)[0] == '*') && (*qname_len == 1)) {
5320 /* all modules - special case */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005321 mod = NULL;
Michal Vasko004d3152020-06-11 19:59:22 +02005322 } else if (set->type == LYXP_SET_SCNODE_SET) {
5323 /* current node module */
5324 mod = set->ctx_scnode->module;
Michal Vasko6346ece2019-09-24 13:12:53 +02005325 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02005326 /* current node module */
5327 mod = set->ctx_node->schema->module;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005328 }
5329
Michal Vasko6346ece2019-09-24 13:12:53 +02005330 *moveto_mod = mod;
5331 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005332}
5333
5334/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02005335 * @brief Move context @p set to the root. Handles absolute path.
5336 * Result is LYXP_SET_NODE_SET.
5337 *
5338 * @param[in,out] set Set to use.
5339 * @param[in] options Xpath options.
5340 */
5341static void
5342moveto_root(struct lyxp_set *set, int options)
5343{
Michal Vasko03ff5a72019-09-11 13:49:33 +02005344 if (!set) {
5345 return;
5346 }
5347
5348 if (options & LYXP_SCNODE_ALL) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005349 set_scnode_clear_ctx(set);
Michal Vaskoecd62de2019-11-13 12:35:11 +01005350 lyxp_set_scnode_insert_node(set, NULL, set->root_type);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005351 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02005352 set->type = LYXP_SET_NODE_SET;
5353 set->used = 0;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005354 set_insert_node(set, NULL, 0, set->root_type, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005355 }
5356}
5357
5358/**
Michal Vaskoa1424542019-11-14 16:08:52 +01005359 * @brief Check whether a node has some unresolved "when".
5360 *
5361 * @param[in] node Node to check.
5362 * @return LY_ERR value (LY_EINCOMPLETE if there are some unresolved "when")
5363 */
5364static LY_ERR
5365moveto_when_check(const struct lyd_node *node)
5366{
5367 const struct lysc_node *schema;
5368
5369 if (!node) {
5370 return LY_SUCCESS;
5371 }
5372
5373 schema = node->schema;
5374 do {
5375 if (schema->when && !(node->flags & LYD_WHEN_TRUE)) {
5376 return LY_EINCOMPLETE;
5377 }
5378 schema = schema->parent;
5379 } while (schema && (schema->nodetype & (LYS_CASE | LYS_CHOICE)));
5380
5381 return LY_SUCCESS;
5382}
5383
5384/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02005385 * @brief Check @p node as a part of NameTest processing.
5386 *
5387 * @param[in] node Node to check.
5388 * @param[in] root_type XPath root node type.
Michal Vasko6b26e742020-07-17 15:02:10 +02005389 * @param[in] context_op XPath operation parent.
Michal Vaskod3678892020-05-21 10:06:58 +02005390 * @param[in] node_name Node name in the dictionary to move to, NULL for any node.
5391 * @param[in] moveto_mod Expected module of the node, NULL for any.
Michal Vasko6346ece2019-09-24 13:12:53 +02005392 * @return LY_ERR (LY_ENOT if node does not match, LY_EINCOMPLETE on unresolved when,
5393 * LY_EINVAL if netither node nor any children match)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005394 */
5395static LY_ERR
Michal Vasko6b26e742020-07-17 15:02:10 +02005396moveto_node_check(const struct lyd_node *node, enum lyxp_node_type root_type, const struct lysc_node *context_op,
5397 const char *node_name, const struct lys_module *moveto_mod)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005398{
5399 /* module check */
5400 if (moveto_mod && (node->schema->module != moveto_mod)) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005401 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005402 }
5403
Michal Vasko5c4e5892019-11-14 12:31:38 +01005404 /* context check */
5405 if ((root_type == LYXP_NODE_ROOT_CONFIG) && (node->schema->flags & LYS_CONFIG_R)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005406 return LY_EINVAL;
Michal Vasko6b26e742020-07-17 15:02:10 +02005407 } else if (context_op && (node->schema->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) && (node->schema != context_op)) {
5408 return LY_EINVAL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005409 }
5410
5411 /* name check */
Michal Vasko61ac2f62020-05-25 12:39:51 +02005412 if (node_name && strcmp(node_name, "*") && (node->schema->name != node_name)) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005413 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005414 }
5415
Michal Vaskoa1424542019-11-14 16:08:52 +01005416 /* when check */
5417 if (moveto_when_check(node)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005418 return LY_EINCOMPLETE;
Michal Vaskoa1424542019-11-14 16:08:52 +01005419 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005420
5421 /* match */
5422 return LY_SUCCESS;
5423}
5424
5425/**
5426 * @brief Check @p node as a part of schema NameTest processing.
5427 *
5428 * @param[in] node Schema node to check.
5429 * @param[in] root_type XPath root node type.
Michal Vasko6b26e742020-07-17 15:02:10 +02005430 * @param[in] context_op XPath operation parent.
Michal Vaskod3678892020-05-21 10:06:58 +02005431 * @param[in] node_name Node name in the dictionary to move to, NULL for any nodes.
5432 * @param[in] moveto_mod Expected module of the node, NULL for any.
Michal Vasko6346ece2019-09-24 13:12:53 +02005433 * @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 +02005434 */
5435static LY_ERR
Michal Vasko6b26e742020-07-17 15:02:10 +02005436moveto_scnode_check(const struct lysc_node *node, enum lyxp_node_type root_type, const struct lysc_node *context_op,
5437 const char *node_name, const struct lys_module *moveto_mod)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005438{
Michal Vasko03ff5a72019-09-11 13:49:33 +02005439 /* module check */
Michal Vaskod3678892020-05-21 10:06:58 +02005440 if (moveto_mod && (node->module != moveto_mod)) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005441 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005442 }
5443
5444 /* context check */
5445 if ((root_type == LYXP_NODE_ROOT_CONFIG) && (node->flags & LYS_CONFIG_R)) {
5446 return LY_EINVAL;
Michal Vasko6b26e742020-07-17 15:02:10 +02005447 } else if (context_op && (node->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) && (node != context_op)) {
5448 return LY_EINVAL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005449 }
5450
5451 /* name check */
Michal Vasko61ac2f62020-05-25 12:39:51 +02005452 if (node_name && strcmp(node_name, "*") && (node->name != node_name)) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005453 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005454 }
5455
5456 /* match */
5457 return LY_SUCCESS;
5458}
5459
5460/**
Michal Vaskod3678892020-05-21 10:06:58 +02005461 * @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 +02005462 *
5463 * @param[in,out] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02005464 * @param[in] mod Matching node module, NULL for any.
5465 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005466 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
5467 */
5468static LY_ERR
Michal Vaskod3678892020-05-21 10:06:58 +02005469moveto_node(struct lyxp_set *set, const struct lys_module *mod, const char *ncname)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005470{
Michal Vaskof03ed032020-03-04 13:31:44 +01005471 uint32_t i;
Michal Vasko6346ece2019-09-24 13:12:53 +02005472 int replaced;
Michal Vaskod3678892020-05-21 10:06:58 +02005473 const struct lyd_node *siblings, *sub;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005474 LY_ERR rc;
5475
Michal Vaskod3678892020-05-21 10:06:58 +02005476 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005477 return LY_SUCCESS;
5478 }
5479
5480 if (set->type != LYXP_SET_NODE_SET) {
5481 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
5482 return LY_EVALID;
5483 }
5484
Michal Vasko03ff5a72019-09-11 13:49:33 +02005485 for (i = 0; i < set->used; ) {
5486 replaced = 0;
5487
5488 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 +01005489 assert(!set->val.nodes[i].node);
Michal Vaskod3678892020-05-21 10:06:58 +02005490
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005491 /* search in all the trees */
Michal Vaskod3678892020-05-21 10:06:58 +02005492 siblings = set->tree;
Michal Vasko5bfd4be2020-06-23 13:26:19 +02005493 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02005494 /* search in children */
Michal Vasko5bfd4be2020-06-23 13:26:19 +02005495 siblings = lyd_node_children(set->val.nodes[i].node, 0);
Michal Vaskod3678892020-05-21 10:06:58 +02005496 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005497
Michal Vaskod3678892020-05-21 10:06:58 +02005498 for (sub = siblings; sub; sub = sub->next) {
Michal Vasko6b26e742020-07-17 15:02:10 +02005499 rc = moveto_node_check(sub, set->root_type, set->context_op, ncname, mod);
Michal Vaskod3678892020-05-21 10:06:58 +02005500 if (rc == LY_SUCCESS) {
5501 if (!replaced) {
5502 set_replace_node(set, sub, 0, LYXP_NODE_ELEM, i);
5503 replaced = 1;
5504 } else {
5505 set_insert_node(set, sub, 0, LYXP_NODE_ELEM, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005506 }
Michal Vaskod3678892020-05-21 10:06:58 +02005507 ++i;
5508 } else if (rc == LY_EINCOMPLETE) {
5509 return rc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005510 }
5511 }
5512
5513 if (!replaced) {
5514 /* no match */
5515 set_remove_node(set, i);
5516 }
5517 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005518
5519 return LY_SUCCESS;
5520}
5521
5522/**
Michal Vaskod3678892020-05-21 10:06:58 +02005523 * @brief Move context @p set to a node using hashes. Result is LYXP_SET_NODE_SET (or LYXP_SET_EMPTY).
5524 * Context position aware.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005525 *
5526 * @param[in,out] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02005527 * @param[in] scnode Matching node schema.
Michal Vasko004d3152020-06-11 19:59:22 +02005528 * @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 +02005529 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
5530 */
5531static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02005532moveto_node_hash(struct lyxp_set *set, const struct lysc_node *scnode, const struct ly_path_predicate *predicates)
Michal Vaskod3678892020-05-21 10:06:58 +02005533{
Michal Vasko004d3152020-06-11 19:59:22 +02005534 LY_ERR ret = LY_SUCCESS;
Michal Vaskod3678892020-05-21 10:06:58 +02005535 uint32_t i;
Michal Vaskod3678892020-05-21 10:06:58 +02005536 const struct lyd_node *siblings;
Michal Vasko004d3152020-06-11 19:59:22 +02005537 struct lyd_node *sub, *inst = NULL;
Michal Vaskod3678892020-05-21 10:06:58 +02005538
Michal Vasko004d3152020-06-11 19:59:22 +02005539 assert(scnode && (!(scnode->nodetype & (LYS_LIST | LYS_LEAFLIST)) || predicates));
Michal Vaskod3678892020-05-21 10:06:58 +02005540
5541 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02005542 goto cleanup;
Michal Vaskod3678892020-05-21 10:06:58 +02005543 }
5544
5545 if (set->type != LYXP_SET_NODE_SET) {
5546 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 +02005547 ret = LY_EVALID;
5548 goto cleanup;
Michal Vaskod3678892020-05-21 10:06:58 +02005549 }
5550
5551 /* context check for all the nodes since we have the schema node */
5552 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (scnode->flags & LYS_CONFIG_R)) {
5553 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02005554 goto cleanup;
Michal Vasko6b26e742020-07-17 15:02:10 +02005555 } else if (set->context_op && (scnode->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF))
5556 && (scnode != set->context_op)) {
5557 lyxp_set_free_content(set);
5558 goto cleanup;
Michal Vasko004d3152020-06-11 19:59:22 +02005559 }
5560
5561 /* create specific data instance if needed */
5562 if (scnode->nodetype == LYS_LIST) {
5563 LY_CHECK_GOTO(ret = lyd_create_list(scnode, predicates, &inst), cleanup);
5564 } else if (scnode->nodetype == LYS_LEAFLIST) {
5565 LY_CHECK_GOTO(ret = lyd_create_term2(scnode, &predicates[0].value, &inst), cleanup);
Michal Vaskod3678892020-05-21 10:06:58 +02005566 }
5567
5568 for (i = 0; i < set->used; ) {
Michal Vaskod3678892020-05-21 10:06:58 +02005569 siblings = NULL;
5570
5571 if ((set->val.nodes[i].type == LYXP_NODE_ROOT_CONFIG) || (set->val.nodes[i].type == LYXP_NODE_ROOT)) {
5572 assert(!set->val.nodes[i].node);
5573
5574 /* search in all the trees */
5575 siblings = set->tree;
5576 } else if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
5577 /* search in children */
Michal Vasko5bfd4be2020-06-23 13:26:19 +02005578 siblings = lyd_node_children(set->val.nodes[i].node, 0);
Michal Vaskod3678892020-05-21 10:06:58 +02005579 }
5580
5581 /* find the node using hashes */
Michal Vasko004d3152020-06-11 19:59:22 +02005582 if (inst) {
5583 lyd_find_sibling_first(siblings, inst, &sub);
Michal Vaskod3678892020-05-21 10:06:58 +02005584 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02005585 lyd_find_sibling_val(siblings, scnode, NULL, 0, &sub);
Michal Vaskod3678892020-05-21 10:06:58 +02005586 }
5587
5588 /* when check */
5589 if (sub && moveto_when_check(sub)) {
Michal Vasko004d3152020-06-11 19:59:22 +02005590 ret = LY_EINCOMPLETE;
5591 goto cleanup;
Michal Vaskod3678892020-05-21 10:06:58 +02005592 }
5593
5594 if (sub) {
5595 /* pos filled later */
Michal Vaskocb1b7c02020-07-03 13:38:12 +02005596 set_replace_node(set, sub, 0, LYXP_NODE_ELEM, i);
Michal Vaskod3678892020-05-21 10:06:58 +02005597 ++i;
Michal Vaskocb1b7c02020-07-03 13:38:12 +02005598 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02005599 /* no match */
5600 set_remove_node(set, i);
5601 }
5602 }
5603
Michal Vasko004d3152020-06-11 19:59:22 +02005604cleanup:
5605 lyd_free_tree(inst);
5606 return ret;
Michal Vaskod3678892020-05-21 10:06:58 +02005607}
5608
5609/**
5610 * @brief Move context @p set to a schema node. Result is LYXP_SET_SCNODE_SET (or LYXP_SET_EMPTY).
5611 *
5612 * @param[in,out] set Set to use.
5613 * @param[in] mod Matching node module, NULL for any.
5614 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005615 * @param[in] options XPath options.
5616 * @return LY_ERR
5617 */
5618static LY_ERR
Michal Vaskod3678892020-05-21 10:06:58 +02005619moveto_scnode(struct lyxp_set *set, const struct lys_module *mod, const char *ncname, int options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005620{
Michal Vaskocafad9d2019-11-07 15:20:03 +01005621 int i, orig_used, idx, temp_ctx = 0, getnext_opts;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005622 uint32_t mod_idx;
Michal Vasko519fd602020-05-26 12:17:39 +02005623 const struct lysc_node *iter, *start_parent;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005624
Michal Vaskod3678892020-05-21 10:06:58 +02005625 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005626 return LY_SUCCESS;
5627 }
5628
5629 if (set->type != LYXP_SET_SCNODE_SET) {
Michal Vaskof6e51882019-12-16 09:59:45 +01005630 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 +02005631 return LY_EVALID;
5632 }
5633
Michal Vaskocafad9d2019-11-07 15:20:03 +01005634 /* getnext opts */
5635 getnext_opts = LYS_GETNEXT_NOSTATECHECK;
5636 if (options & LYXP_SCNODE_OUTPUT) {
5637 getnext_opts |= LYS_GETNEXT_OUTPUT;
5638 }
5639
Michal Vasko03ff5a72019-09-11 13:49:33 +02005640 orig_used = set->used;
5641 for (i = 0; i < orig_used; ++i) {
5642 if (set->val.scnodes[i].in_ctx != 1) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01005643 if (set->val.scnodes[i].in_ctx != -2) {
5644 continue;
5645 }
5646
5647 /* remember context node */
5648 set->val.scnodes[i].in_ctx = -1;
Michal Vaskoec4df482019-12-16 10:02:18 +01005649 } else {
5650 set->val.scnodes[i].in_ctx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005651 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005652
5653 start_parent = set->val.scnodes[i].scnode;
5654
5655 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 +02005656 /* 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 +02005657 * so use it directly (root node itself is useless in this case) */
5658 mod_idx = 0;
Michal Vaskod3678892020-05-21 10:06:58 +02005659 while (mod || (mod = (struct lys_module *)ly_ctx_get_module_iter(set->ctx, &mod_idx))) {
Michal Vasko519fd602020-05-26 12:17:39 +02005660 iter = NULL;
Michal Vasko509de4d2019-12-10 14:51:30 +01005661 /* module may not be implemented */
Michal Vasko519fd602020-05-26 12:17:39 +02005662 while (mod->implemented && (iter = lys_getnext(iter, NULL, mod->compiled, getnext_opts))) {
Michal Vasko6b26e742020-07-17 15:02:10 +02005663 if (!moveto_scnode_check(iter, set->root_type, set->context_op, ncname, mod)) {
Michal Vasko519fd602020-05-26 12:17:39 +02005664 idx = lyxp_set_scnode_insert_node(set, iter, LYXP_NODE_ELEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005665 /* we need to prevent these nodes from being considered in this moveto */
5666 if ((idx < orig_used) && (idx > i)) {
5667 set->val.scnodes[idx].in_ctx = 2;
5668 temp_ctx = 1;
5669 }
5670 }
5671 }
5672
5673 if (!mod_idx) {
Michal Vaskod3678892020-05-21 10:06:58 +02005674 /* mod was specified, we are not going through the whole context */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005675 break;
5676 }
5677 /* next iteration */
Michal Vaskod3678892020-05-21 10:06:58 +02005678 mod = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005679 }
5680
Michal Vasko519fd602020-05-26 12:17:39 +02005681 } else if (set->val.scnodes[i].type == LYXP_NODE_ELEM) {
5682 iter = NULL;
5683 while ((iter = lys_getnext(iter, start_parent, NULL, getnext_opts))) {
Michal Vasko6b26e742020-07-17 15:02:10 +02005684 if (!moveto_scnode_check(iter, set->root_type, set->context_op, ncname, (mod ? mod : set->local_mod))) {
Michal Vasko519fd602020-05-26 12:17:39 +02005685 idx = lyxp_set_scnode_insert_node(set, iter, LYXP_NODE_ELEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005686 if ((idx < orig_used) && (idx > i)) {
5687 set->val.scnodes[idx].in_ctx = 2;
5688 temp_ctx = 1;
5689 }
5690 }
5691 }
5692 }
5693 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005694
5695 /* correct temporary in_ctx values */
5696 if (temp_ctx) {
5697 for (i = 0; i < orig_used; ++i) {
5698 if (set->val.scnodes[i].in_ctx == 2) {
5699 set->val.scnodes[i].in_ctx = 1;
5700 }
5701 }
5702 }
5703
5704 return LY_SUCCESS;
5705}
5706
5707/**
Michal Vaskod3678892020-05-21 10:06:58 +02005708 * @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 +02005709 * Context position aware.
5710 *
5711 * @param[in] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02005712 * @param[in] mod Matching node module, NULL for any.
5713 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005714 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
5715 */
5716static LY_ERR
Michal Vaskod3678892020-05-21 10:06:58 +02005717moveto_node_alldesc(struct lyxp_set *set, const struct lys_module *mod, const char *ncname)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005718{
5719 uint32_t i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005720 const struct lyd_node *next, *elem, *start;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005721 struct lyxp_set ret_set;
5722 LY_ERR rc;
5723
Michal Vaskod3678892020-05-21 10:06:58 +02005724 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005725 return LY_SUCCESS;
5726 }
5727
5728 if (set->type != LYXP_SET_NODE_SET) {
5729 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
5730 return LY_EVALID;
5731 }
5732
Michal Vasko9f96a052020-03-10 09:41:45 +01005733 /* 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 +02005734 rc = moveto_node(set, NULL, NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005735 LY_CHECK_RET(rc);
5736
Michal Vasko6346ece2019-09-24 13:12:53 +02005737 /* this loop traverses all the nodes in the set and adds/keeps only those that match qname */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005738 set_init(&ret_set, set);
5739 for (i = 0; i < set->used; ++i) {
5740
5741 /* TREE DFS */
5742 start = set->val.nodes[i].node;
5743 for (elem = next = start; elem; elem = next) {
Michal Vasko6b26e742020-07-17 15:02:10 +02005744 rc = moveto_node_check(elem, set->root_type, set->context_op, ncname, mod);
Michal Vasko6346ece2019-09-24 13:12:53 +02005745 if (!rc) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005746 /* add matching node into result set */
5747 set_insert_node(&ret_set, elem, 0, LYXP_NODE_ELEM, ret_set.used);
5748 if (set_dup_node_check(set, elem, LYXP_NODE_ELEM, i)) {
5749 /* the node is a duplicate, we'll process it later in the set */
5750 goto skip_children;
5751 }
Michal Vasko6346ece2019-09-24 13:12:53 +02005752 } else if (rc == LY_EINCOMPLETE) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005753 return rc;
5754 } else if (rc == LY_EINVAL) {
5755 goto skip_children;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005756 }
5757
5758 /* TREE DFS NEXT ELEM */
5759 /* select element for the next run - children first */
Michal Vasko5bfd4be2020-06-23 13:26:19 +02005760 next = lyd_node_children(elem, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005761 if (!next) {
5762skip_children:
5763 /* no children, so try siblings, but only if it's not the start,
5764 * that is considered to be the root and it's siblings are not traversed */
5765 if (elem != start) {
5766 next = elem->next;
5767 } else {
5768 break;
5769 }
5770 }
5771 while (!next) {
5772 /* no siblings, go back through the parents */
5773 if ((struct lyd_node *)elem->parent == start) {
5774 /* we are done, no next element to process */
5775 break;
5776 }
5777 /* parent is already processed, go to its sibling */
5778 elem = (struct lyd_node *)elem->parent;
5779 next = elem->next;
5780 }
5781 }
5782 }
5783
5784 /* make the temporary set the current one */
5785 ret_set.ctx_pos = set->ctx_pos;
5786 ret_set.ctx_size = set->ctx_size;
Michal Vaskod3678892020-05-21 10:06:58 +02005787 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005788 memcpy(set, &ret_set, sizeof *set);
5789
5790 return LY_SUCCESS;
5791}
5792
5793/**
Michal Vasko61ac2f62020-05-25 12:39:51 +02005794 * @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 +02005795 *
5796 * @param[in] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02005797 * @param[in] mod Matching node module, NULL for any.
5798 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005799 * @param[in] options XPath options.
5800 * @return LY_ERR
5801 */
5802static LY_ERR
Michal Vaskod3678892020-05-21 10:06:58 +02005803moveto_scnode_alldesc(struct lyxp_set *set, const struct lys_module *mod, const char *ncname, int options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005804{
Michal Vasko6346ece2019-09-24 13:12:53 +02005805 int i, orig_used, idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005806 const struct lysc_node *next, *elem, *start;
Michal Vasko6346ece2019-09-24 13:12:53 +02005807 LY_ERR rc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005808
Michal Vaskod3678892020-05-21 10:06:58 +02005809 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005810 return LY_SUCCESS;
5811 }
5812
5813 if (set->type != LYXP_SET_SCNODE_SET) {
Michal Vaskof6e51882019-12-16 09:59:45 +01005814 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 +02005815 return LY_EVALID;
5816 }
5817
Michal Vasko03ff5a72019-09-11 13:49:33 +02005818 orig_used = set->used;
5819 for (i = 0; i < orig_used; ++i) {
5820 if (set->val.scnodes[i].in_ctx != 1) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01005821 if (set->val.scnodes[i].in_ctx != -2) {
5822 continue;
5823 }
5824
5825 /* remember context node */
5826 set->val.scnodes[i].in_ctx = -1;
Michal Vaskoec4df482019-12-16 10:02:18 +01005827 } else {
5828 set->val.scnodes[i].in_ctx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005829 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005830
5831 /* TREE DFS */
5832 start = set->val.scnodes[i].scnode;
5833 for (elem = next = start; elem; elem = next) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005834 if ((elem == start) || (elem->nodetype & (LYS_CHOICE | LYS_CASE))) {
5835 /* schema-only nodes, skip root */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005836 goto next_iter;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005837 }
5838
Michal Vasko6b26e742020-07-17 15:02:10 +02005839 rc = moveto_scnode_check(elem, set->root_type, set->context_op, ncname, mod);
Michal Vasko6346ece2019-09-24 13:12:53 +02005840 if (!rc) {
Michal Vaskoecd62de2019-11-13 12:35:11 +01005841 if ((idx = lyxp_set_scnode_dup_node_check(set, elem, LYXP_NODE_ELEM, i)) > -1) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005842 set->val.scnodes[idx].in_ctx = 1;
5843 if (idx > i) {
5844 /* we will process it later in the set */
5845 goto skip_children;
5846 }
5847 } else {
Michal Vaskoecd62de2019-11-13 12:35:11 +01005848 lyxp_set_scnode_insert_node(set, elem, LYXP_NODE_ELEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005849 }
Michal Vasko6346ece2019-09-24 13:12:53 +02005850 } else if (rc == LY_EINVAL) {
5851 goto skip_children;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005852 }
5853
5854next_iter:
5855 /* TREE DFS NEXT ELEM */
5856 /* select element for the next run - children first */
5857 next = lysc_node_children(elem, options & LYXP_SCNODE_OUTPUT ? LYS_CONFIG_R : LYS_CONFIG_W);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005858 if (!next) {
5859skip_children:
5860 /* no children, so try siblings, but only if it's not the start,
5861 * that is considered to be the root and it's siblings are not traversed */
5862 if (elem != start) {
5863 next = elem->next;
5864 } else {
5865 break;
5866 }
5867 }
5868 while (!next) {
5869 /* no siblings, go back through the parents */
5870 if (elem->parent == start) {
5871 /* we are done, no next element to process */
5872 break;
5873 }
5874 /* parent is already processed, go to its sibling */
5875 elem = elem->parent;
5876 next = elem->next;
5877 }
5878 }
5879 }
5880
5881 return LY_SUCCESS;
5882}
5883
5884/**
Michal Vasko61ac2f62020-05-25 12:39:51 +02005885 * @brief Move context @p set to an attribute. Result is LYXP_SET_NODE_SET.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005886 * Indirectly context position aware.
5887 *
5888 * @param[in,out] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02005889 * @param[in] mod Matching metadata module, NULL for any.
5890 * @param[in] ncname Matching metadata name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005891 * @return LY_ERR
5892 */
5893static LY_ERR
Michal Vaskod3678892020-05-21 10:06:58 +02005894moveto_attr(struct lyxp_set *set, const struct lys_module *mod, const char *ncname)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005895{
5896 uint32_t i;
Michal Vaskod3678892020-05-21 10:06:58 +02005897 int replaced;
Michal Vasko9f96a052020-03-10 09:41:45 +01005898 struct lyd_meta *sub;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005899
Michal Vaskod3678892020-05-21 10:06:58 +02005900 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005901 return LY_SUCCESS;
5902 }
5903
5904 if (set->type != LYXP_SET_NODE_SET) {
5905 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
5906 return LY_EVALID;
5907 }
5908
Michal Vasko03ff5a72019-09-11 13:49:33 +02005909 for (i = 0; i < set->used; ) {
5910 replaced = 0;
5911
5912 /* only attributes of an elem (not dummy) can be in the result, skip all the rest;
5913 * our attributes are always qualified */
Michal Vasko5c4e5892019-11-14 12:31:38 +01005914 if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
Michal Vasko9f96a052020-03-10 09:41:45 +01005915 for (sub = set->val.nodes[i].node->meta; sub; sub = sub->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005916
5917 /* check "namespace" */
Michal Vaskod3678892020-05-21 10:06:58 +02005918 if (mod && (sub->annotation->module != mod)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005919 continue;
5920 }
5921
Michal Vaskod3678892020-05-21 10:06:58 +02005922 if (!ncname || (sub->name == ncname)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005923 /* match */
5924 if (!replaced) {
Michal Vasko9f96a052020-03-10 09:41:45 +01005925 set->val.meta[i].meta = sub;
5926 set->val.meta[i].type = LYXP_NODE_META;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005927 /* pos does not change */
5928 replaced = 1;
5929 } else {
Michal Vasko9f96a052020-03-10 09:41:45 +01005930 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 +02005931 }
5932 ++i;
5933 }
5934 }
5935 }
5936
5937 if (!replaced) {
5938 /* no match */
5939 set_remove_node(set, i);
5940 }
5941 }
5942
5943 return LY_SUCCESS;
5944}
5945
5946/**
5947 * @brief Move context @p set1 to union with @p set2. @p set2 is emptied afterwards.
Michal Vasko61ac2f62020-05-25 12:39:51 +02005948 * Result is LYXP_SET_NODE_SET. Context position aware.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005949 *
5950 * @param[in,out] set1 Set to use for the result.
5951 * @param[in] set2 Set that is copied to @p set1.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005952 * @return LY_ERR
5953 */
5954static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005955moveto_union(struct lyxp_set *set1, struct lyxp_set *set2)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005956{
5957 LY_ERR rc;
5958
Michal Vaskod3678892020-05-21 10:06:58 +02005959 if ((set1->type != LYXP_SET_NODE_SET) || (set2->type != LYXP_SET_NODE_SET)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005960 LOGVAL(set1->ctx, LY_VLOG_LYD, set1->ctx_node, LY_VCODE_XP_INOP_2, "union", print_set_type(set1), print_set_type(set2));
5961 return LY_EVALID;
5962 }
5963
5964 /* set2 is empty or both set1 and set2 */
Michal Vaskod3678892020-05-21 10:06:58 +02005965 if (!set2->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005966 return LY_SUCCESS;
5967 }
5968
Michal Vaskod3678892020-05-21 10:06:58 +02005969 if (!set1->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005970 memcpy(set1, set2, sizeof *set1);
5971 /* dynamic memory belongs to set1 now, do not free */
Michal Vaskod3678892020-05-21 10:06:58 +02005972 memset(set2, 0, sizeof *set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005973 return LY_SUCCESS;
5974 }
5975
5976 /* we assume sets are sorted */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005977 assert(!set_sort(set1) && !set_sort(set2));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005978
5979 /* sort, remove duplicates */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005980 rc = set_sorted_merge(set1, set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005981 LY_CHECK_RET(rc);
5982
5983 /* final set must be sorted */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005984 assert(!set_sort(set1));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005985
5986 return LY_SUCCESS;
5987}
5988
5989/**
Michal Vasko61ac2f62020-05-25 12:39:51 +02005990 * @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 +02005991 * Context position aware.
5992 *
5993 * @param[in,out] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02005994 * @param[in] mod Matching metadata module, NULL for any.
5995 * @param[in] ncname Matching metadata name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005996 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
5997 */
5998static int
Michal Vaskod3678892020-05-21 10:06:58 +02005999moveto_attr_alldesc(struct lyxp_set *set, const struct lys_module *mod, const char *ncname)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006000{
6001 uint32_t i;
Michal Vaskod3678892020-05-21 10:06:58 +02006002 int replaced;
Michal Vasko9f96a052020-03-10 09:41:45 +01006003 struct lyd_meta *sub;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006004 struct lyxp_set *set_all_desc = NULL;
6005 LY_ERR rc;
6006
Michal Vaskod3678892020-05-21 10:06:58 +02006007 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006008 return LY_SUCCESS;
6009 }
6010
6011 if (set->type != LYXP_SET_NODE_SET) {
6012 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
6013 return LY_EVALID;
6014 }
6015
Michal Vasko03ff5a72019-09-11 13:49:33 +02006016 /* can be optimized similarly to moveto_node_alldesc() and save considerable amount of memory,
6017 * but it likely won't be used much, so it's a waste of time */
6018 /* copy the context */
6019 set_all_desc = set_copy(set);
6020 /* get all descendant nodes (the original context nodes are removed) */
Michal Vaskod3678892020-05-21 10:06:58 +02006021 rc = moveto_node_alldesc(set_all_desc, NULL, NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006022 if (rc != LY_SUCCESS) {
6023 lyxp_set_free(set_all_desc);
6024 return rc;
6025 }
6026 /* prepend the original context nodes */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006027 rc = moveto_union(set, set_all_desc);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006028 if (rc != LY_SUCCESS) {
6029 lyxp_set_free(set_all_desc);
6030 return rc;
6031 }
6032 lyxp_set_free(set_all_desc);
6033
Michal Vasko03ff5a72019-09-11 13:49:33 +02006034 for (i = 0; i < set->used; ) {
6035 replaced = 0;
6036
6037 /* only attributes of an elem can be in the result, skip all the rest,
6038 * we have all attributes qualified in lyd tree */
6039 if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
Michal Vasko9f96a052020-03-10 09:41:45 +01006040 for (sub = set->val.nodes[i].node->meta; sub; sub = sub->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006041 /* check "namespace" */
Michal Vaskod3678892020-05-21 10:06:58 +02006042 if (mod && (sub->annotation->module != mod)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006043 continue;
6044 }
6045
Michal Vaskod3678892020-05-21 10:06:58 +02006046 if (!ncname || (sub->name == ncname)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006047 /* match */
6048 if (!replaced) {
Michal Vasko9f96a052020-03-10 09:41:45 +01006049 set->val.meta[i].meta = sub;
6050 set->val.meta[i].type = LYXP_NODE_META;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006051 /* pos does not change */
6052 replaced = 1;
6053 } else {
Michal Vasko9f96a052020-03-10 09:41:45 +01006054 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 +02006055 }
6056 ++i;
6057 }
6058 }
6059 }
6060
6061 if (!replaced) {
6062 /* no match */
6063 set_remove_node(set, i);
6064 }
6065 }
6066
6067 return LY_SUCCESS;
6068}
6069
6070/**
Michal Vasko61ac2f62020-05-25 12:39:51 +02006071 * @brief Move context @p set to self and al chilren, recursively. Handles '/' or '//' and '.'. Result is LYXP_SET_NODE_SET.
6072 * Context position aware.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006073 *
6074 * @param[in] parent Current parent.
6075 * @param[in] parent_pos Position of @p parent.
6076 * @param[in] parent_type Node type of @p parent.
6077 * @param[in,out] to_set Set to use.
6078 * @param[in] dup_check_set Set for checking duplicities.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006079 * @param[in] options XPath options.
6080 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6081 */
6082static LY_ERR
6083moveto_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 +01006084 struct lyxp_set *to_set, const struct lyxp_set *dup_check_set, int options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006085{
Michal Vasko61ac2f62020-05-25 12:39:51 +02006086 const struct lyd_node *iter, *first;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006087 LY_ERR rc;
6088
6089 switch (parent_type) {
6090 case LYXP_NODE_ROOT:
6091 case LYXP_NODE_ROOT_CONFIG:
Michal Vasko61ac2f62020-05-25 12:39:51 +02006092 assert(!parent);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006093
Michal Vasko61ac2f62020-05-25 12:39:51 +02006094 /* add all top-level nodes as elements */
6095 first = to_set->tree;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006096 break;
6097 case LYXP_NODE_ELEM:
Michal Vasko61ac2f62020-05-25 12:39:51 +02006098 /* add just the text node of this term element node */
6099 if (parent->schema->nodetype & (LYD_NODE_TERM | LYD_NODE_ANY)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006100 if (!set_dup_node_check(dup_check_set, parent, LYXP_NODE_TEXT, -1)) {
6101 set_insert_node(to_set, parent, parent_pos, LYXP_NODE_TEXT, to_set->used);
6102 }
Michal Vasko61ac2f62020-05-25 12:39:51 +02006103 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006104 }
Michal Vasko61ac2f62020-05-25 12:39:51 +02006105
6106 /* add all the children of this node */
Michal Vasko5bfd4be2020-06-23 13:26:19 +02006107 first = lyd_node_children(parent, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006108 break;
6109 default:
6110 LOGINT_RET(parent->schema->module->ctx);
6111 }
6112
Michal Vasko61ac2f62020-05-25 12:39:51 +02006113 /* add all top-level nodes as elements */
6114 LY_LIST_FOR(first, iter) {
6115 /* context check */
6116 if ((parent_type == LYXP_NODE_ROOT_CONFIG) && (iter->schema->flags & LYS_CONFIG_R)) {
6117 continue;
6118 }
6119
6120 /* when check */
6121 if (moveto_when_check(iter)) {
6122 return LY_EINCOMPLETE;
6123 }
6124
6125 if (!set_dup_node_check(dup_check_set, iter, LYXP_NODE_ELEM, -1)) {
6126 set_insert_node(to_set, iter, 0, LYXP_NODE_ELEM, to_set->used);
6127
6128 /* also add all the children of this node, recursively */
6129 rc = moveto_self_add_children_r(iter, 0, LYXP_NODE_ELEM, to_set, dup_check_set, options);
6130 LY_CHECK_RET(rc);
6131 }
6132 }
6133
Michal Vasko03ff5a72019-09-11 13:49:33 +02006134 return LY_SUCCESS;
6135}
6136
6137/**
6138 * @brief Move context @p set to self. Handles '/' or '//' and '.'. Result is LYXP_SET_NODE_SET
6139 * (or LYXP_SET_EMPTY). Context position aware.
6140 *
6141 * @param[in,out] set Set to use.
6142 * @param[in] all_desc Whether to go to all descendants ('//') or not ('/').
6143 * @param[in] options XPath options.
6144 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6145 */
6146static LY_ERR
6147moveto_self(struct lyxp_set *set, int all_desc, int options)
6148{
6149 uint32_t i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006150 struct lyxp_set ret_set;
6151 LY_ERR rc;
6152
Michal Vaskod3678892020-05-21 10:06:58 +02006153 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006154 return LY_SUCCESS;
6155 }
6156
6157 if (set->type != LYXP_SET_NODE_SET) {
6158 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
6159 return LY_EVALID;
6160 }
6161
6162 /* nothing to do */
6163 if (!all_desc) {
6164 return LY_SUCCESS;
6165 }
6166
Michal Vasko03ff5a72019-09-11 13:49:33 +02006167 /* add all the children, they get added recursively */
6168 set_init(&ret_set, set);
6169 for (i = 0; i < set->used; ++i) {
6170 /* copy the current node to tmp */
6171 set_insert_node(&ret_set, set->val.nodes[i].node, set->val.nodes[i].pos, set->val.nodes[i].type, ret_set.used);
6172
6173 /* do not touch attributes and text nodes */
Michal Vasko9f96a052020-03-10 09:41:45 +01006174 if ((set->val.nodes[i].type == LYXP_NODE_TEXT) || (set->val.nodes[i].type == LYXP_NODE_META)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006175 continue;
6176 }
6177
Michal Vasko03ff5a72019-09-11 13:49:33 +02006178 /* add all the children */
6179 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 +01006180 set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006181 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02006182 lyxp_set_free_content(&ret_set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006183 return rc;
6184 }
6185 }
6186
6187 /* use the temporary set as the current one */
6188 ret_set.ctx_pos = set->ctx_pos;
6189 ret_set.ctx_size = set->ctx_size;
Michal Vaskod3678892020-05-21 10:06:58 +02006190 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006191 memcpy(set, &ret_set, sizeof *set);
6192
6193 return LY_SUCCESS;
6194}
6195
6196/**
6197 * @brief Move context schema @p set to self. Handles '/' or '//' and '.'. Result is LYXP_SET_SCNODE_SET
6198 * (or LYXP_SET_EMPTY).
6199 *
6200 * @param[in,out] set Set to use.
6201 * @param[in] all_desc Whether to go to all descendants ('//') or not ('/').
6202 * @param[in] options XPath options.
6203 * @return LY_ERR
6204 */
6205static LY_ERR
6206moveto_scnode_self(struct lyxp_set *set, int all_desc, int options)
6207{
Michal Vasko519fd602020-05-26 12:17:39 +02006208 int getnext_opts;
6209 uint32_t i, mod_idx;
6210 const struct lysc_node *iter, *start_parent;
6211 const struct lys_module *mod;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006212
Michal Vaskod3678892020-05-21 10:06:58 +02006213 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006214 return LY_SUCCESS;
6215 }
6216
6217 if (set->type != LYXP_SET_SCNODE_SET) {
Michal Vaskof6e51882019-12-16 09:59:45 +01006218 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 +02006219 return LY_EVALID;
6220 }
6221
6222 /* nothing to do */
6223 if (!all_desc) {
6224 return LY_SUCCESS;
6225 }
6226
Michal Vasko519fd602020-05-26 12:17:39 +02006227 /* getnext opts */
6228 getnext_opts = LYS_GETNEXT_NOSTATECHECK;
6229 if (options & LYXP_SCNODE_OUTPUT) {
6230 getnext_opts |= LYS_GETNEXT_OUTPUT;
6231 }
6232
6233 /* add all the children, recursively as they are being added into the same set */
Michal Vasko03ff5a72019-09-11 13:49:33 +02006234 for (i = 0; i < set->used; ++i) {
6235 if (set->val.scnodes[i].in_ctx != 1) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01006236 if (set->val.scnodes[i].in_ctx != -2) {
6237 continue;
6238 }
6239
Michal Vasko519fd602020-05-26 12:17:39 +02006240 /* remember context node */
6241 set->val.scnodes[i].in_ctx = -1;
6242 } else {
6243 set->val.scnodes[i].in_ctx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006244 }
6245
Michal Vasko519fd602020-05-26 12:17:39 +02006246 start_parent = set->val.scnodes[i].scnode;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006247
Michal Vasko519fd602020-05-26 12:17:39 +02006248 if ((set->val.scnodes[i].type == LYXP_NODE_ROOT_CONFIG) || (set->val.scnodes[i].type == LYXP_NODE_ROOT)) {
6249 /* it can actually be in any module, it's all <running> */
6250 mod_idx = 0;
6251 while ((mod = (struct lys_module *)ly_ctx_get_module_iter(set->ctx, &mod_idx))) {
6252 iter = NULL;
6253 /* module may not be implemented */
6254 while (mod->implemented && (iter = lys_getnext(iter, NULL, mod->compiled, getnext_opts))) {
6255 /* context check */
6256 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (iter->flags & LYS_CONFIG_R)) {
6257 continue;
6258 }
6259
6260 lyxp_set_scnode_insert_node(set, iter, LYXP_NODE_ELEM);
6261 /* throw away the insert index, we want to consider that node again, recursively */
6262 }
6263 }
6264
6265 } else if (set->val.scnodes[i].type == LYXP_NODE_ELEM) {
6266 iter = NULL;
6267 while ((iter = lys_getnext(iter, start_parent, NULL, getnext_opts))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006268 /* context check */
Michal Vasko519fd602020-05-26 12:17:39 +02006269 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (iter->flags & LYS_CONFIG_R)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006270 continue;
6271 }
6272
Michal Vasko519fd602020-05-26 12:17:39 +02006273 lyxp_set_scnode_insert_node(set, iter, LYXP_NODE_ELEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006274 }
6275 }
6276 }
6277
6278 return LY_SUCCESS;
6279}
6280
6281/**
6282 * @brief Move context @p set to parent. Handles '/' or '//' and '..'. Result is LYXP_SET_NODE_SET
6283 * (or LYXP_SET_EMPTY). Context position aware.
6284 *
6285 * @param[in] set Set to use.
6286 * @param[in] all_desc Whether to go to all descendants ('//') or not ('/').
6287 * @param[in] options XPath options.
6288 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6289 */
6290static LY_ERR
6291moveto_parent(struct lyxp_set *set, int all_desc, int options)
6292{
6293 LY_ERR rc;
6294 uint32_t i;
6295 struct lyd_node *node, *new_node;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006296 enum lyxp_node_type new_type;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006297
Michal Vaskod3678892020-05-21 10:06:58 +02006298 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006299 return LY_SUCCESS;
6300 }
6301
6302 if (set->type != LYXP_SET_NODE_SET) {
6303 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
6304 return LY_EVALID;
6305 }
6306
6307 if (all_desc) {
6308 /* <path>//.. == <path>//./.. */
6309 rc = moveto_self(set, 1, options);
6310 LY_CHECK_RET(rc);
6311 }
6312
Michal Vasko57eab132019-09-24 11:46:26 +02006313 for (i = 0; i < set->used; ++i) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006314 node = set->val.nodes[i].node;
6315
6316 if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
6317 new_node = (struct lyd_node *)node->parent;
6318 } else if (set->val.nodes[i].type == LYXP_NODE_TEXT) {
6319 new_node = node;
Michal Vasko9f96a052020-03-10 09:41:45 +01006320 } else if (set->val.nodes[i].type == LYXP_NODE_META) {
6321 new_node = set->val.meta[i].meta->parent;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006322 if (!new_node) {
6323 LOGINT_RET(set->ctx);
6324 }
6325 } else {
6326 /* root does not have a parent */
Michal Vasko2caefc12019-11-14 16:07:56 +01006327 set_remove_node_none(set, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006328 continue;
6329 }
6330
Michal Vaskoa1424542019-11-14 16:08:52 +01006331 /* when check */
6332 if (moveto_when_check(new_node)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006333 return LY_EINCOMPLETE;
Michal Vaskoa1424542019-11-14 16:08:52 +01006334 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02006335
6336 /* node already there can also be the root */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006337 if (!new_node) {
6338 new_type = set->root_type;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006339
6340 /* node has a standard parent (it can equal the root, it's not the root yet since they are fake) */
6341 } else {
6342 new_type = LYXP_NODE_ELEM;
6343 }
6344
Michal Vasko03ff5a72019-09-11 13:49:33 +02006345 if (set_dup_node_check(set, new_node, new_type, -1)) {
Michal Vasko2caefc12019-11-14 16:07:56 +01006346 set_remove_node_none(set, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006347 } else {
6348 set_replace_node(set, new_node, 0, new_type, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006349 }
6350 }
6351
Michal Vasko2caefc12019-11-14 16:07:56 +01006352 set_remove_nodes_none(set);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006353 assert(!set_sort(set) && !set_sorted_dup_node_clean(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006354
6355 return LY_SUCCESS;
6356}
6357
6358/**
6359 * @brief Move context schema @p set to parent. Handles '/' or '//' and '..'. Result is LYXP_SET_SCNODE_SET
6360 * (or LYXP_SET_EMPTY).
6361 *
6362 * @param[in] set Set to use.
6363 * @param[in] all_desc Whether to go to all descendants ('//') or not ('/').
6364 * @param[in] options XPath options.
6365 * @return LY_ERR
6366 */
6367static LY_ERR
6368moveto_scnode_parent(struct lyxp_set *set, int all_desc, int options)
6369{
6370 int idx, i, orig_used, temp_ctx = 0;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006371 const struct lysc_node *node, *new_node;
6372 enum lyxp_node_type new_type;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006373 LY_ERR rc;
6374
Michal Vaskod3678892020-05-21 10:06:58 +02006375 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006376 return LY_SUCCESS;
6377 }
6378
6379 if (set->type != LYXP_SET_SCNODE_SET) {
Michal Vaskof6e51882019-12-16 09:59:45 +01006380 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 +02006381 return LY_EVALID;
6382 }
6383
6384 if (all_desc) {
6385 /* <path>//.. == <path>//./.. */
6386 rc = moveto_scnode_self(set, 1, options);
6387 LY_CHECK_RET(rc);
6388 }
6389
Michal Vasko03ff5a72019-09-11 13:49:33 +02006390 orig_used = set->used;
6391 for (i = 0; i < orig_used; ++i) {
6392 if (set->val.scnodes[i].in_ctx != 1) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01006393 if (set->val.scnodes[i].in_ctx != -2) {
6394 continue;
6395 }
6396
6397 /* remember context node */
6398 set->val.scnodes[i].in_ctx = -1;
Michal Vaskoec4df482019-12-16 10:02:18 +01006399 } else {
6400 set->val.scnodes[i].in_ctx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006401 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02006402
6403 node = set->val.scnodes[i].scnode;
6404
6405 if (set->val.scnodes[i].type == LYXP_NODE_ELEM) {
Michal Vaskod3678892020-05-21 10:06:58 +02006406 new_node = lysc_data_parent(node);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006407 } else {
6408 /* root does not have a parent */
6409 continue;
6410 }
6411
Michal Vasko03ff5a72019-09-11 13:49:33 +02006412 /* node has no parent */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006413 if (!new_node) {
6414 new_type = set->root_type;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006415
6416 /* node has a standard parent (it can equal the root, it's not the root yet since they are fake) */
6417 } else {
6418 new_type = LYXP_NODE_ELEM;
6419 }
6420
Michal Vaskoecd62de2019-11-13 12:35:11 +01006421 idx = lyxp_set_scnode_insert_node(set, new_node, new_type);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006422 if ((idx < orig_used) && (idx > i)) {
6423 set->val.scnodes[idx].in_ctx = 2;
6424 temp_ctx = 1;
6425 }
6426 }
6427
6428 if (temp_ctx) {
6429 for (i = 0; i < orig_used; ++i) {
6430 if (set->val.scnodes[i].in_ctx == 2) {
6431 set->val.scnodes[i].in_ctx = 1;
6432 }
6433 }
6434 }
6435
6436 return LY_SUCCESS;
6437}
6438
6439/**
6440 * @brief Move context @p set to the result of a comparison. Handles '=', '!=', '<=', '<', '>=', or '>'.
6441 * Result is LYXP_SET_BOOLEAN. Indirectly context position aware.
6442 *
6443 * @param[in,out] set1 Set to use for the result.
6444 * @param[in] set2 Set acting as the second operand for @p op.
6445 * @param[in] op Comparison operator to process.
6446 * @param[in] options XPath options.
6447 * @return LY_ERR
6448 */
6449static LY_ERR
6450moveto_op_comp(struct lyxp_set *set1, struct lyxp_set *set2, const char *op, int options)
6451{
6452 /*
6453 * NODE SET + NODE SET = NODE SET + STRING /(1 NODE SET) 2 STRING
6454 * NODE SET + STRING = STRING + STRING /1 STRING (2 STRING)
6455 * NODE SET + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
6456 * NODE SET + BOOLEAN = BOOLEAN + BOOLEAN /1 BOOLEAN (2 BOOLEAN)
6457 * STRING + NODE SET = STRING + STRING /(1 STRING) 2 STRING
6458 * NUMBER + NODE SET = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
6459 * BOOLEAN + NODE SET = BOOLEAN + BOOLEAN /(1 BOOLEAN) 2 BOOLEAN
6460 *
6461 * '=' or '!='
6462 * BOOLEAN + BOOLEAN
6463 * BOOLEAN + STRING = BOOLEAN + BOOLEAN /(1 BOOLEAN) 2 BOOLEAN
6464 * BOOLEAN + NUMBER = BOOLEAN + BOOLEAN /(1 BOOLEAN) 2 BOOLEAN
6465 * STRING + BOOLEAN = BOOLEAN + BOOLEAN /1 BOOLEAN (2 BOOLEAN)
6466 * NUMBER + BOOLEAN = BOOLEAN + BOOLEAN /1 BOOLEAN (2 BOOLEAN)
6467 * NUMBER + NUMBER
6468 * NUMBER + STRING = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
6469 * STRING + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
6470 * STRING + STRING
6471 *
6472 * '<=', '<', '>=', '>'
6473 * NUMBER + NUMBER
6474 * BOOLEAN + BOOLEAN = NUMBER + NUMBER /1 NUMBER, 2 NUMBER
6475 * BOOLEAN + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
6476 * BOOLEAN + STRING = NUMBER + NUMBER /1 NUMBER, 2 NUMBER
6477 * NUMBER + STRING = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
6478 * STRING + STRING = NUMBER + NUMBER /1 NUMBER, 2 NUMBER
6479 * STRING + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
6480 * NUMBER + BOOLEAN = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
6481 * STRING + BOOLEAN = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
6482 */
6483 struct lyxp_set iter1, iter2;
6484 int result;
6485 int64_t i;
6486 LY_ERR rc;
6487
Michal Vasko004d3152020-06-11 19:59:22 +02006488 memset(&iter1, 0, sizeof iter1);
6489 memset(&iter2, 0, sizeof iter2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006490
6491 /* iterative evaluation with node-sets */
6492 if ((set1->type == LYXP_SET_NODE_SET) || (set2->type == LYXP_SET_NODE_SET)) {
6493 if (set1->type == LYXP_SET_NODE_SET) {
6494 for (i = 0; i < set1->used; ++i) {
Michal Vasko4c7763f2020-07-27 17:40:37 +02006495 /* cast set1 */
Michal Vasko03ff5a72019-09-11 13:49:33 +02006496 switch (set2->type) {
6497 case LYXP_SET_NUMBER:
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006498 rc = set_comp_cast(&iter1, set1, LYXP_SET_NUMBER, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006499 break;
6500 case LYXP_SET_BOOLEAN:
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006501 rc = set_comp_cast(&iter1, set1, LYXP_SET_BOOLEAN, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006502 break;
6503 default:
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006504 rc = set_comp_cast(&iter1, set1, LYXP_SET_STRING, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006505 break;
6506 }
6507 LY_CHECK_RET(rc);
6508
Michal Vasko4c7763f2020-07-27 17:40:37 +02006509 /* canonize set2 */
6510 LY_CHECK_ERR_RET(rc = set_comp_canonize(&iter2, set2, &set1->val.nodes[i]), lyxp_set_free_content(&iter1), rc);
6511
6512 /* compare recursively */
6513 rc = moveto_op_comp(&iter1, &iter2, op, options);
6514 lyxp_set_free_content(&iter2);
6515 LY_CHECK_ERR_RET(rc, lyxp_set_free_content(&iter1), rc);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006516
6517 /* lazy evaluation until true */
Michal Vasko004d3152020-06-11 19:59:22 +02006518 if (iter1.val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006519 set_fill_boolean(set1, 1);
6520 return LY_SUCCESS;
6521 }
6522 }
6523 } else {
6524 for (i = 0; i < set2->used; ++i) {
Michal Vasko4c7763f2020-07-27 17:40:37 +02006525 /* set set2 */
Michal Vasko03ff5a72019-09-11 13:49:33 +02006526 switch (set1->type) {
Michal Vasko4c7763f2020-07-27 17:40:37 +02006527 case LYXP_SET_NUMBER:
6528 rc = set_comp_cast(&iter2, set2, LYXP_SET_NUMBER, i);
6529 break;
6530 case LYXP_SET_BOOLEAN:
6531 rc = set_comp_cast(&iter2, set2, LYXP_SET_BOOLEAN, i);
6532 break;
6533 default:
6534 rc = set_comp_cast(&iter2, set2, LYXP_SET_STRING, i);
6535 break;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006536 }
6537 LY_CHECK_RET(rc);
6538
Michal Vasko4c7763f2020-07-27 17:40:37 +02006539 /* canonize set1 */
6540 LY_CHECK_ERR_RET(rc = set_comp_canonize(&iter1, set1, &set2->val.nodes[i]), lyxp_set_free_content(&iter2), rc);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006541
Michal Vasko4c7763f2020-07-27 17:40:37 +02006542 /* compare recursively */
Michal Vasko03ff5a72019-09-11 13:49:33 +02006543 rc = moveto_op_comp(&iter1, &iter2, op, options);
Michal Vaskod3678892020-05-21 10:06:58 +02006544 lyxp_set_free_content(&iter2);
Michal Vasko4c7763f2020-07-27 17:40:37 +02006545 LY_CHECK_ERR_RET(rc, lyxp_set_free_content(&iter1), rc);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006546
6547 /* lazy evaluation until true */
Michal Vasko004d3152020-06-11 19:59:22 +02006548 if (iter1.val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006549 set_fill_boolean(set1, 1);
6550 return LY_SUCCESS;
6551 }
6552 }
6553 }
6554
6555 /* false for all nodes */
6556 set_fill_boolean(set1, 0);
6557 return LY_SUCCESS;
6558 }
6559
6560 /* first convert properly */
6561 if ((op[0] == '=') || (op[0] == '!')) {
6562 if ((set1->type == LYXP_SET_BOOLEAN) || (set2->type == LYXP_SET_BOOLEAN)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006563 lyxp_set_cast(set1, LYXP_SET_BOOLEAN);
6564 lyxp_set_cast(set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006565 } else if ((set1->type == LYXP_SET_NUMBER) || (set2->type == LYXP_SET_NUMBER)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006566 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006567 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006568 rc = lyxp_set_cast(set2, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006569 LY_CHECK_RET(rc);
6570 } /* else we have 2 strings */
6571 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006572 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006573 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006574 rc = lyxp_set_cast(set2, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006575 LY_CHECK_RET(rc);
6576 }
6577
6578 assert(set1->type == set2->type);
6579
6580 /* compute result */
6581 if (op[0] == '=') {
6582 if (set1->type == LYXP_SET_BOOLEAN) {
Michal Vasko004d3152020-06-11 19:59:22 +02006583 result = (set1->val.bln == set2->val.bln);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006584 } else if (set1->type == LYXP_SET_NUMBER) {
6585 result = (set1->val.num == set2->val.num);
6586 } else {
6587 assert(set1->type == LYXP_SET_STRING);
Michal Vaskoac6c72f2019-11-14 16:09:34 +01006588 result = !strcmp(set1->val.str, set2->val.str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006589 }
6590 } else if (op[0] == '!') {
6591 if (set1->type == LYXP_SET_BOOLEAN) {
Michal Vasko004d3152020-06-11 19:59:22 +02006592 result = (set1->val.bln != set2->val.bln);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006593 } else if (set1->type == LYXP_SET_NUMBER) {
6594 result = (set1->val.num != set2->val.num);
6595 } else {
6596 assert(set1->type == LYXP_SET_STRING);
Michal Vaskoac6c72f2019-11-14 16:09:34 +01006597 result = !strcmp(set1->val.str, set2->val.str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006598 }
6599 } else {
6600 assert(set1->type == LYXP_SET_NUMBER);
6601 if (op[0] == '<') {
6602 if (op[1] == '=') {
6603 result = (set1->val.num <= set2->val.num);
6604 } else {
6605 result = (set1->val.num < set2->val.num);
6606 }
6607 } else {
6608 if (op[1] == '=') {
6609 result = (set1->val.num >= set2->val.num);
6610 } else {
6611 result = (set1->val.num > set2->val.num);
6612 }
6613 }
6614 }
6615
6616 /* assign result */
6617 if (result) {
6618 set_fill_boolean(set1, 1);
6619 } else {
6620 set_fill_boolean(set1, 0);
6621 }
6622
6623 return LY_SUCCESS;
6624}
6625
6626/**
6627 * @brief Move context @p set to the result of a basic operation. Handles '+', '-', unary '-', '*', 'div',
6628 * or 'mod'. Result is LYXP_SET_NUMBER. Indirectly context position aware.
6629 *
6630 * @param[in,out] set1 Set to use for the result.
6631 * @param[in] set2 Set acting as the second operand for @p op.
6632 * @param[in] op Operator to process.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006633 * @return LY_ERR
6634 */
6635static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006636moveto_op_math(struct lyxp_set *set1, struct lyxp_set *set2, const char *op)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006637{
6638 LY_ERR rc;
6639
6640 /* unary '-' */
6641 if (!set2 && (op[0] == '-')) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006642 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006643 LY_CHECK_RET(rc);
6644 set1->val.num *= -1;
6645 lyxp_set_free(set2);
6646 return LY_SUCCESS;
6647 }
6648
6649 assert(set1 && set2);
6650
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006651 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006652 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006653 rc = lyxp_set_cast(set2, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006654 LY_CHECK_RET(rc);
6655
6656 switch (op[0]) {
6657 /* '+' */
6658 case '+':
6659 set1->val.num += set2->val.num;
6660 break;
6661
6662 /* '-' */
6663 case '-':
6664 set1->val.num -= set2->val.num;
6665 break;
6666
6667 /* '*' */
6668 case '*':
6669 set1->val.num *= set2->val.num;
6670 break;
6671
6672 /* 'div' */
6673 case 'd':
6674 set1->val.num /= set2->val.num;
6675 break;
6676
6677 /* 'mod' */
6678 case 'm':
6679 set1->val.num = ((long long)set1->val.num) % ((long long)set2->val.num);
6680 break;
6681
6682 default:
6683 LOGINT_RET(set1->ctx);
6684 }
6685
6686 return LY_SUCCESS;
6687}
6688
6689/*
6690 * eval functions
6691 *
6692 * They execute a parsed XPath expression on some data subtree.
6693 */
6694
6695/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02006696 * @brief Evaluate Predicate. Logs directly on error.
6697 *
Michal Vaskod3678892020-05-21 10:06:58 +02006698 * [9] Predicate ::= '[' Expr ']'
Michal Vasko03ff5a72019-09-11 13:49:33 +02006699 *
6700 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02006701 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006702 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
6703 * @param[in] options XPath options.
6704 * @param[in] parent_pos_pred Whether parent predicate was a positional one.
6705 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6706 */
6707static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02006708eval_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 +02006709{
6710 LY_ERR rc;
Michal Vasko57eab132019-09-24 11:46:26 +02006711 uint16_t i, orig_exp;
Michal Vasko5c4e5892019-11-14 12:31:38 +01006712 uint32_t orig_pos, orig_size;
6713 int32_t pred_in_ctx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006714 struct lyxp_set set2;
6715 struct lyd_node *orig_parent;
6716
6717 /* '[' */
6718 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02006719 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
6720 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006721
6722 if (!set) {
6723only_parse:
Michal Vasko004d3152020-06-11 19:59:22 +02006724 rc = eval_expr_select(exp, tok_idx, 0, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006725 LY_CHECK_RET(rc);
6726 } else if (set->type == LYXP_SET_NODE_SET) {
6727 /* we (possibly) need the set sorted, it can affect the result (if the predicate result is a number) */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006728 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006729
6730 /* empty set, nothing to evaluate */
6731 if (!set->used) {
6732 goto only_parse;
6733 }
6734
Michal Vasko004d3152020-06-11 19:59:22 +02006735 orig_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006736 orig_pos = 0;
6737 orig_size = set->used;
6738 orig_parent = NULL;
Michal Vasko39dbf352020-05-21 10:08:59 +02006739 for (i = 0; i < set->used; ++i) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006740 set_init(&set2, set);
6741 set_insert_node(&set2, set->val.nodes[i].node, set->val.nodes[i].pos, set->val.nodes[i].type, 0);
6742 /* remember the node context position for position() and context size for last(),
6743 * predicates should always be evaluated with respect to the child axis (since we do
6744 * not support explicit axes) so we assign positions based on their parents */
6745 if (parent_pos_pred && ((struct lyd_node *)set->val.nodes[i].node->parent != orig_parent)) {
6746 orig_parent = (struct lyd_node *)set->val.nodes[i].node->parent;
6747 orig_pos = 1;
6748 } else {
6749 ++orig_pos;
6750 }
6751
6752 set2.ctx_pos = orig_pos;
6753 set2.ctx_size = orig_size;
Michal Vasko004d3152020-06-11 19:59:22 +02006754 *tok_idx = orig_exp;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006755
Michal Vasko004d3152020-06-11 19:59:22 +02006756 rc = eval_expr_select(exp, tok_idx, 0, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006757 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02006758 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006759 return rc;
6760 }
6761
6762 /* number is a position */
6763 if (set2.type == LYXP_SET_NUMBER) {
6764 if ((long long)set2.val.num == orig_pos) {
6765 set2.val.num = 1;
6766 } else {
6767 set2.val.num = 0;
6768 }
6769 }
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006770 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006771
6772 /* predicate satisfied or not? */
Michal Vasko004d3152020-06-11 19:59:22 +02006773 if (!set2.val.bln) {
Michal Vasko2caefc12019-11-14 16:07:56 +01006774 set_remove_node_none(set, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006775 }
6776 }
Michal Vasko2caefc12019-11-14 16:07:56 +01006777 set_remove_nodes_none(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006778
6779 } else if (set->type == LYXP_SET_SCNODE_SET) {
6780 for (i = 0; i < set->used; ++i) {
6781 if (set->val.scnodes[i].in_ctx == 1) {
6782 /* there is a currently-valid node */
6783 break;
6784 }
6785 }
6786 /* empty set, nothing to evaluate */
6787 if (i == set->used) {
6788 goto only_parse;
6789 }
6790
Michal Vasko004d3152020-06-11 19:59:22 +02006791 orig_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006792
Michal Vasko03ff5a72019-09-11 13:49:33 +02006793 /* set special in_ctx to all the valid snodes */
6794 pred_in_ctx = set_scnode_new_in_ctx(set);
6795
6796 /* use the valid snodes one-by-one */
6797 for (i = 0; i < set->used; ++i) {
6798 if (set->val.scnodes[i].in_ctx != pred_in_ctx) {
6799 continue;
6800 }
6801 set->val.scnodes[i].in_ctx = 1;
6802
Michal Vasko004d3152020-06-11 19:59:22 +02006803 *tok_idx = orig_exp;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006804
Michal Vasko004d3152020-06-11 19:59:22 +02006805 rc = eval_expr_select(exp, tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006806 LY_CHECK_RET(rc);
6807
6808 set->val.scnodes[i].in_ctx = pred_in_ctx;
6809 }
6810
6811 /* restore the state as it was before the predicate */
6812 for (i = 0; i < set->used; ++i) {
6813 if (set->val.scnodes[i].in_ctx == 1) {
6814 set->val.scnodes[i].in_ctx = 0;
6815 } else if (set->val.scnodes[i].in_ctx == pred_in_ctx) {
6816 set->val.scnodes[i].in_ctx = 1;
6817 }
6818 }
6819
6820 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02006821 set2.type = LYXP_SET_NODE_SET;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006822 set_fill_set(&set2, set);
6823
Michal Vasko004d3152020-06-11 19:59:22 +02006824 rc = eval_expr_select(exp, tok_idx, 0, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006825 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02006826 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006827 return rc;
6828 }
6829
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006830 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko004d3152020-06-11 19:59:22 +02006831 if (!set2.val.bln) {
Michal Vaskod3678892020-05-21 10:06:58 +02006832 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006833 }
Michal Vaskod3678892020-05-21 10:06:58 +02006834 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006835 }
6836
6837 /* ']' */
Michal Vasko004d3152020-06-11 19:59:22 +02006838 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_BRACK2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006839 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02006840 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
6841 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006842
6843 return LY_SUCCESS;
6844}
6845
6846/**
Michal Vaskod3678892020-05-21 10:06:58 +02006847 * @brief Evaluate Literal. Logs directly on error.
6848 *
6849 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02006850 * @param[in] tok_idx Position in the expression @p exp.
Michal Vaskod3678892020-05-21 10:06:58 +02006851 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
6852 */
6853static void
Michal Vasko004d3152020-06-11 19:59:22 +02006854eval_literal(struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set)
Michal Vaskod3678892020-05-21 10:06:58 +02006855{
6856 if (set) {
Michal Vasko004d3152020-06-11 19:59:22 +02006857 if (exp->tok_len[*tok_idx] == 2) {
Michal Vaskod3678892020-05-21 10:06:58 +02006858 set_fill_string(set, "", 0);
6859 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02006860 set_fill_string(set, &exp->expr[exp->tok_pos[*tok_idx] + 1], exp->tok_len[*tok_idx] - 2);
Michal Vaskod3678892020-05-21 10:06:58 +02006861 }
6862 }
6863 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02006864 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
6865 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02006866}
6867
6868/**
Michal Vasko004d3152020-06-11 19:59:22 +02006869 * @brief Try to compile list or leaf-list predicate in the known format to be used for hash-based instance search.
Michal Vaskod3678892020-05-21 10:06:58 +02006870 *
Michal Vasko004d3152020-06-11 19:59:22 +02006871 * @param[in] exp Full parsed XPath expression.
6872 * @param[in,out] tok_idx Index in @p exp at the beginning of the predicate, is updated on success.
6873 * @param[in] scnode Found schema node as context for the predicate.
6874 * @param[in] format Format of any prefixes in key names/values.
6875 * @param[out] predicates Parsed predicates.
6876 * @param[out] pred_type Type of @p predicates.
6877 * @return LY_SUCCESS on success,
6878 * @return LY_ERR on any error.
Michal Vaskod3678892020-05-21 10:06:58 +02006879 */
6880static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02006881eval_name_test_try_compile_predicates(struct lyxp_expr *exp, uint16_t *tok_idx, const struct lysc_node *scnode,
6882 LYD_FORMAT format, struct ly_path_predicate **predicates, enum ly_path_pred_type *pred_type)
Michal Vaskod3678892020-05-21 10:06:58 +02006883{
Michal Vasko004d3152020-06-11 19:59:22 +02006884 LY_ERR ret = LY_SUCCESS;
6885 uint16_t key_count, e_idx, pred_idx = 0;
Michal Vaskod3678892020-05-21 10:06:58 +02006886 const struct lysc_node *key;
Michal Vasko004d3152020-06-11 19:59:22 +02006887 size_t pred_len;
6888 int prev_lo;
6889 struct lyxp_expr *exp2 = NULL;
Michal Vaskod3678892020-05-21 10:06:58 +02006890
Michal Vasko004d3152020-06-11 19:59:22 +02006891 assert(scnode->nodetype & (LYS_LIST | LYS_LEAFLIST));
Michal Vaskod3678892020-05-21 10:06:58 +02006892
Michal Vasko004d3152020-06-11 19:59:22 +02006893 if (scnode->nodetype == LYS_LIST) {
6894 /* get key count */
6895 if (scnode->flags & LYS_KEYLESS) {
6896 return LY_EINVAL;
6897 }
6898 for (key_count = 0, key = lysc_node_children(scnode, 0); key && (key->flags & LYS_KEY); key = key->next, ++key_count);
6899 assert(key_count);
Michal Vaskod3678892020-05-21 10:06:58 +02006900
Michal Vasko004d3152020-06-11 19:59:22 +02006901 /* learn where the predicates end */
6902 e_idx = *tok_idx;
6903 while (key_count) {
6904 /* '[' */
6905 if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK1)) {
6906 return LY_EINVAL;
6907 }
6908 ++e_idx;
6909
6910 /* ']' */
6911 while (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK2)) {
6912 ++e_idx;
6913 }
6914 ++e_idx;
6915
6916 /* another presumably key predicate parsed */
6917 --key_count;
6918 }
Michal Vasko004d3152020-06-11 19:59:22 +02006919 } else {
6920 /* learn just where this single predicate ends */
6921 e_idx = *tok_idx;
6922
Michal Vaskod3678892020-05-21 10:06:58 +02006923 /* '[' */
Michal Vasko004d3152020-06-11 19:59:22 +02006924 if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK1)) {
6925 return LY_EINVAL;
6926 }
6927 ++e_idx;
Michal Vaskod3678892020-05-21 10:06:58 +02006928
6929 /* ']' */
Michal Vasko004d3152020-06-11 19:59:22 +02006930 while (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK2)) {
6931 ++e_idx;
6932 }
6933 ++e_idx;
Michal Vaskod3678892020-05-21 10:06:58 +02006934 }
6935
Michal Vasko004d3152020-06-11 19:59:22 +02006936 /* get the joined length of all the keys predicates/of the single leaf-list predicate */
6937 pred_len = (exp->tok_pos[e_idx - 1] + exp->tok_len[e_idx - 1]) - exp->tok_pos[*tok_idx];
6938
6939 /* turn logging off */
6940 prev_lo = ly_log_options(0);
6941
6942 /* parse the predicate(s) */
Michal Vasko6b26e742020-07-17 15:02:10 +02006943 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 +02006944 LY_PATH_PREFIX_OPTIONAL, LY_PATH_PRED_SIMPLE, &exp2), cleanup);
6945
6946 /* compile */
6947 switch (format) {
6948 case LYD_SCHEMA:
Michal Vasko6b26e742020-07-17 15:02:10 +02006949 ret = ly_path_compile_predicate(scnode->module->ctx, scnode, scnode->module, scnode, exp2, &pred_idx,
6950 lys_resolve_prefix, scnode->module, LYD_SCHEMA, predicates, pred_type);
Michal Vasko004d3152020-06-11 19:59:22 +02006951 break;
6952 case LYD_JSON:
Michal Vasko6b26e742020-07-17 15:02:10 +02006953 ret = ly_path_compile_predicate(scnode->module->ctx, scnode, scnode->module, scnode, exp2, &pred_idx,
Michal Vasko00cbf532020-06-15 13:58:47 +02006954 lydjson_resolve_prefix, NULL, LYD_JSON, predicates, pred_type);
Michal Vasko004d3152020-06-11 19:59:22 +02006955 break;
6956 case LYD_XML:
Michal Vasko60ea6352020-06-29 13:39:39 +02006957 case LYD_LYB:
Michal Vasko004d3152020-06-11 19:59:22 +02006958 ret = LY_EINT;
6959 goto cleanup;
6960 }
6961 LY_CHECK_GOTO(ret, cleanup);
6962
6963 /* success, the predicate must include all the needed information for hash-based search */
6964 *tok_idx = e_idx;
6965
6966cleanup:
6967 ly_log_options(prev_lo);
6968 lyxp_expr_free(scnode->module->ctx, exp2);
6969 return ret;
Michal Vaskod3678892020-05-21 10:06:58 +02006970}
6971
6972/**
6973 * @brief Evaluate NameTest and any following Predicates. Logs directly on error.
6974 *
6975 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
6976 * [6] NodeTest ::= NameTest | NodeType '(' ')'
6977 * [7] NameTest ::= '*' | NCName ':' '*' | QName
6978 *
6979 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02006980 * @param[in] tok_idx Position in the expression @p exp.
Michal Vaskod3678892020-05-21 10:06:58 +02006981 * @param[in] attr_axis Whether to search attributes or standard nodes.
6982 * @param[in] all_desc Whether to search all the descendants or children only.
6983 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
6984 * @param[in] options XPath options.
6985 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6986 */
6987static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02006988eval_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 +02006989 int options)
6990{
6991 int i;
6992 char *path;
Michal Vasko004d3152020-06-11 19:59:22 +02006993 const char *ncname, *ncname_dict = NULL;
6994 uint16_t ncname_len;
Michal Vaskod3678892020-05-21 10:06:58 +02006995 const struct lys_module *moveto_mod;
6996 const struct lysc_node *scnode = NULL, *tmp;
Michal Vasko004d3152020-06-11 19:59:22 +02006997 struct ly_path_predicate *predicates = NULL;
6998 enum ly_path_pred_type pred_type = 0;
Michal Vaskod3678892020-05-21 10:06:58 +02006999 LY_ERR rc = LY_SUCCESS;
7000
7001 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007002 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7003 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007004
7005 if (!set) {
7006 goto moveto;
7007 }
7008
Michal Vasko004d3152020-06-11 19:59:22 +02007009 ncname = &exp->expr[exp->tok_pos[*tok_idx - 1]];
7010 ncname_len = exp->tok_len[*tok_idx - 1];
Michal Vaskod3678892020-05-21 10:06:58 +02007011
7012 /* parse (and skip) module name */
7013 rc = moveto_resolve_model(&ncname, &ncname_len, set, &moveto_mod);
7014 LY_CHECK_GOTO(rc, cleanup);
7015
7016 if (moveto_mod && !attr_axis && !all_desc && (set->type == LYXP_SET_NODE_SET)) {
7017 /* find the matching schema node in some parent in the context */
7018 for (i = 0; i < (signed)set->used; ++i) {
7019 if (set->val.nodes[i].type == set->root_type) {
7020 tmp = lys_find_child(NULL, moveto_mod, ncname, ncname_len, 0, 0);
7021 } else if ((set->val.nodes[i].type == LYXP_NODE_ELEM)
7022 && (!scnode || (lysc_data_parent(scnode) != set->val.nodes[i].node->schema))) {
7023 /* do not repeat the same search */
7024 tmp = lys_find_child(set->val.nodes[i].node->schema, moveto_mod, ncname, ncname_len, 0, 0);
Radek Krejcib1247842020-07-02 16:22:38 +02007025 } else {
7026 tmp = NULL;
Michal Vaskod3678892020-05-21 10:06:58 +02007027 }
7028
7029 /* additional context check */
7030 if (tmp && (set->root_type == LYXP_NODE_ROOT_CONFIG) && (tmp->flags & LYS_CONFIG_R)) {
7031 tmp = NULL;
7032 }
7033
7034 if (tmp) {
7035 if (scnode) {
7036 /* we found a schema node with the same name but at different level, give up, too complicated */
7037 scnode = NULL;
7038 break;
7039 } else {
7040 /* remember the found schema node and continue to make sure it can be used */
7041 scnode = tmp;
7042 }
Michal Vaskod3678892020-05-21 10:06:58 +02007043 }
7044 }
7045
Michal Vasko004d3152020-06-11 19:59:22 +02007046 if (scnode && (scnode->nodetype & (LYS_LIST | LYS_LEAFLIST))) {
7047 /* try to create the predicates */
7048 if (eval_name_test_try_compile_predicates(exp, tok_idx, scnode, set->format, &predicates, &pred_type)) {
7049 /* hashes cannot be used */
Michal Vaskod3678892020-05-21 10:06:58 +02007050 scnode = NULL;
7051 }
7052 }
7053 }
7054
Michal Vasko004d3152020-06-11 19:59:22 +02007055 if (!scnode && moveto_mod) {
7056 /* we are not able to match based on a schema node and not all the modules match,
7057 * use dictionary for efficient comparison */
7058 ncname_dict = lydict_insert(set->ctx, ncname, ncname_len);
Michal Vaskod3678892020-05-21 10:06:58 +02007059 }
7060
7061moveto:
7062 /* move to the attribute(s), data node(s), or schema node(s) */
7063 if (attr_axis) {
7064 if (set && (options & LYXP_SCNODE_ALL)) {
7065 set_scnode_clear_ctx(set);
7066 } else {
7067 if (all_desc) {
Michal Vasko004d3152020-06-11 19:59:22 +02007068 rc = moveto_attr_alldesc(set, moveto_mod, ncname_dict);
Michal Vaskod3678892020-05-21 10:06:58 +02007069 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007070 rc = moveto_attr(set, moveto_mod, ncname_dict);
Michal Vaskod3678892020-05-21 10:06:58 +02007071 }
7072 LY_CHECK_GOTO(rc, cleanup);
7073 }
7074 } else {
7075 if (set && (options & LYXP_SCNODE_ALL)) {
7076 if (all_desc) {
Michal Vasko004d3152020-06-11 19:59:22 +02007077 rc = moveto_scnode_alldesc(set, moveto_mod, ncname_dict, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007078 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007079 rc = moveto_scnode(set, moveto_mod, ncname_dict, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007080 }
7081 LY_CHECK_GOTO(rc, cleanup);
7082
7083 for (i = set->used - 1; i > -1; --i) {
7084 if (set->val.scnodes[i].in_ctx > 0) {
7085 break;
7086 }
7087 }
7088 if (i == -1) {
7089 path = lysc_path(set->ctx_scnode, LYSC_PATH_LOG, NULL, 0);
7090 LOGWRN(set->ctx, "Schema node \"%.*s\" not found (%.*s) with context node \"%s\".",
Michal Vasko6b26e742020-07-17 15:02:10 +02007091 ncname_len, ncname, ncname - exp->expr, exp->expr, path);
Michal Vaskod3678892020-05-21 10:06:58 +02007092 free(path);
7093 }
7094 } else {
7095 if (all_desc) {
Michal Vasko004d3152020-06-11 19:59:22 +02007096 rc = moveto_node_alldesc(set, moveto_mod, ncname_dict);
Michal Vaskod3678892020-05-21 10:06:58 +02007097 } else {
7098 if (scnode) {
7099 /* we can find the nodes using hashes */
Michal Vasko004d3152020-06-11 19:59:22 +02007100 rc = moveto_node_hash(set, scnode, predicates);
Michal Vaskod3678892020-05-21 10:06:58 +02007101 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007102 rc = moveto_node(set, moveto_mod, ncname_dict);
Michal Vaskod3678892020-05-21 10:06:58 +02007103 }
7104 }
7105 LY_CHECK_GOTO(rc, cleanup);
7106 }
7107 }
7108
7109 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007110 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
7111 rc = eval_predicate(exp, tok_idx, set, options, 1);
Michal Vaskod3678892020-05-21 10:06:58 +02007112 LY_CHECK_RET(rc);
7113 }
7114
7115cleanup:
Michal Vaskodb51a8d2020-05-27 15:22:29 +02007116 if (set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007117 lydict_remove(set->ctx, ncname_dict);
7118 ly_path_predicates_free(set->ctx, pred_type, scnode, predicates);
Michal Vaskodb51a8d2020-05-27 15:22:29 +02007119 }
Michal Vaskod3678892020-05-21 10:06:58 +02007120 return rc;
7121}
7122
7123/**
7124 * @brief Evaluate NodeType and any following Predicates. Logs directly on error.
7125 *
7126 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
7127 * [6] NodeTest ::= NameTest | NodeType '(' ')'
7128 * [8] NodeType ::= 'text' | 'node'
7129 *
7130 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007131 * @param[in] tok_idx Position in the expression @p exp.
Michal Vaskod3678892020-05-21 10:06:58 +02007132 * @param[in] attr_axis Whether to search attributes or standard nodes.
7133 * @param[in] all_desc Whether to search all the descendants or children only.
7134 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7135 * @param[in] options XPath options.
7136 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7137 */
7138static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007139eval_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 +02007140 struct lyxp_set *set, int options)
7141{
7142 LY_ERR rc;
7143
7144 /* TODO */
7145 (void)attr_axis;
7146 (void)all_desc;
7147
7148 if (set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007149 assert(exp->tok_len[*tok_idx] == 4);
Michal Vaskod3678892020-05-21 10:06:58 +02007150 if (set->type == LYXP_SET_SCNODE_SET) {
7151 set_scnode_clear_ctx(set);
7152 /* just for the debug message below */
7153 set = NULL;
7154 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007155 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "node", 4)) {
Michal Vaskod3678892020-05-21 10:06:58 +02007156 rc = xpath_node(NULL, 0, set, options);
7157 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007158 assert(!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "text", 4));
Michal Vaskod3678892020-05-21 10:06:58 +02007159 rc = xpath_text(NULL, 0, set, options);
7160 }
7161 LY_CHECK_RET(rc);
7162 }
7163 }
7164 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007165 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7166 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007167
7168 /* '(' */
Michal Vasko004d3152020-06-11 19:59:22 +02007169 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR1);
Michal Vaskod3678892020-05-21 10:06:58 +02007170 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007171 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7172 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007173
7174 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02007175 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR2);
Michal Vaskod3678892020-05-21 10:06:58 +02007176 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007177 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7178 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007179
7180 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007181 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
7182 rc = eval_predicate(exp, tok_idx, set, options, 1);
Michal Vaskod3678892020-05-21 10:06:58 +02007183 LY_CHECK_RET(rc);
7184 }
7185
7186 return LY_SUCCESS;
7187}
7188
7189/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02007190 * @brief Evaluate RelativeLocationPath. Logs directly on error.
7191 *
7192 * [4] RelativeLocationPath ::= Step | RelativeLocationPath '/' Step | RelativeLocationPath '//' Step
7193 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
Michal Vaskod3678892020-05-21 10:06:58 +02007194 * [6] NodeTest ::= NameTest | NodeType '(' ')'
Michal Vasko03ff5a72019-09-11 13:49:33 +02007195 *
7196 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007197 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007198 * @param[in] all_desc Whether to search all the descendants or children only.
7199 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7200 * @param[in] options XPath options.
7201 * @return LY_ERR (YL_EINCOMPLETE on unresolved when)
7202 */
7203static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007204eval_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 +02007205{
7206 int attr_axis;
7207 LY_ERR rc;
7208
7209 goto step;
7210 do {
7211 /* evaluate '/' or '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02007212 if (exp->tok_len[*tok_idx] == 1) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007213 all_desc = 0;
7214 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007215 assert(exp->tok_len[*tok_idx] == 2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007216 all_desc = 1;
7217 }
7218 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007219 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7220 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007221
7222step:
Michal Vaskod3678892020-05-21 10:06:58 +02007223 /* evaluate abbreviated axis '@'? if any */
Michal Vasko004d3152020-06-11 19:59:22 +02007224 if (exp->tokens[*tok_idx] == LYXP_TOKEN_AT) {
Michal Vaskod3678892020-05-21 10:06:58 +02007225 attr_axis = 1;
7226
7227 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007228 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7229 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007230 } else {
7231 attr_axis = 0;
7232 }
7233
Michal Vasko03ff5a72019-09-11 13:49:33 +02007234 /* Step */
Michal Vasko004d3152020-06-11 19:59:22 +02007235 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007236 case LYXP_TOKEN_DOT:
7237 /* evaluate '.' */
7238 if (set && (options & LYXP_SCNODE_ALL)) {
7239 rc = moveto_scnode_self(set, all_desc, options);
7240 } else {
7241 rc = moveto_self(set, all_desc, options);
7242 }
7243 LY_CHECK_RET(rc);
7244 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007245 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7246 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007247 break;
7248
7249 case LYXP_TOKEN_DDOT:
7250 /* evaluate '..' */
7251 if (set && (options & LYXP_SCNODE_ALL)) {
7252 rc = moveto_scnode_parent(set, all_desc, options);
7253 } else {
7254 rc = moveto_parent(set, all_desc, options);
7255 }
7256 LY_CHECK_RET(rc);
7257 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007258 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7259 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007260 break;
7261
Michal Vasko03ff5a72019-09-11 13:49:33 +02007262 case LYXP_TOKEN_NAMETEST:
Michal Vaskod3678892020-05-21 10:06:58 +02007263 /* evaluate NameTest Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007264 rc = eval_name_test_with_predicate(exp, tok_idx, attr_axis, all_desc, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007265 LY_CHECK_RET(rc);
Michal Vaskod3678892020-05-21 10:06:58 +02007266 break;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007267
Michal Vaskod3678892020-05-21 10:06:58 +02007268 case LYXP_TOKEN_NODETYPE:
7269 /* evaluate NodeType Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007270 rc = eval_node_type_with_predicate(exp, tok_idx, attr_axis, all_desc, set, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007271 LY_CHECK_RET(rc);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007272 break;
7273
7274 default:
Michal Vasko02a77382019-09-12 11:47:35 +02007275 LOGINT_RET(set ? set->ctx : NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007276 }
Michal Vasko004d3152020-06-11 19:59:22 +02007277 } while (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007278
7279 return LY_SUCCESS;
7280}
7281
7282/**
7283 * @brief Evaluate AbsoluteLocationPath. Logs directly on error.
7284 *
7285 * [3] AbsoluteLocationPath ::= '/' RelativeLocationPath? | '//' RelativeLocationPath
7286 *
7287 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007288 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007289 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7290 * @param[in] options XPath options.
7291 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7292 */
7293static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007294eval_absolute_location_path(struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set, int options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007295{
7296 int all_desc;
7297 LY_ERR rc;
7298
7299 if (set) {
7300 /* no matter what tokens follow, we need to be at the root */
7301 moveto_root(set, options);
7302 }
7303
7304 /* '/' RelativeLocationPath? */
Michal Vasko004d3152020-06-11 19:59:22 +02007305 if (exp->tok_len[*tok_idx] == 1) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007306 /* evaluate '/' - deferred */
7307 all_desc = 0;
7308 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007309 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7310 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007311
Michal Vasko004d3152020-06-11 19:59:22 +02007312 if (lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_NONE)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007313 return LY_SUCCESS;
7314 }
Michal Vasko004d3152020-06-11 19:59:22 +02007315 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007316 case LYXP_TOKEN_DOT:
7317 case LYXP_TOKEN_DDOT:
7318 case LYXP_TOKEN_AT:
7319 case LYXP_TOKEN_NAMETEST:
7320 case LYXP_TOKEN_NODETYPE:
Michal Vasko004d3152020-06-11 19:59:22 +02007321 rc = eval_relative_location_path(exp, tok_idx, all_desc, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007322 LY_CHECK_RET(rc);
7323 break;
7324 default:
7325 break;
7326 }
7327
7328 /* '//' RelativeLocationPath */
7329 } else {
7330 /* evaluate '//' - deferred so as not to waste memory by remembering all the nodes */
7331 all_desc = 1;
7332 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007333 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7334 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007335
Michal Vasko004d3152020-06-11 19:59:22 +02007336 rc = eval_relative_location_path(exp, tok_idx, all_desc, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007337 LY_CHECK_RET(rc);
7338 }
7339
7340 return LY_SUCCESS;
7341}
7342
7343/**
7344 * @brief Evaluate FunctionCall. Logs directly on error.
7345 *
Michal Vaskod3678892020-05-21 10:06:58 +02007346 * [11] FunctionCall ::= FunctionName '(' ( Expr ( ',' Expr )* )? ')'
Michal Vasko03ff5a72019-09-11 13:49:33 +02007347 *
7348 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007349 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007350 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7351 * @param[in] options XPath options.
7352 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7353 */
7354static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007355eval_function_call(struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set, int options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007356{
7357 LY_ERR rc;
7358 LY_ERR (*xpath_func)(struct lyxp_set **, uint16_t, struct lyxp_set *, int) = NULL;
Michal Vasko0cbf54f2019-12-16 10:01:06 +01007359 uint16_t arg_count = 0, i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007360 struct lyxp_set **args = NULL, **args_aux;
7361
7362 if (set) {
7363 /* FunctionName */
Michal Vasko004d3152020-06-11 19:59:22 +02007364 switch (exp->tok_len[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007365 case 3:
Michal Vasko004d3152020-06-11 19:59:22 +02007366 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "not", 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007367 xpath_func = &xpath_not;
Michal Vasko004d3152020-06-11 19:59:22 +02007368 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "sum", 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007369 xpath_func = &xpath_sum;
7370 }
7371 break;
7372 case 4:
Michal Vasko004d3152020-06-11 19:59:22 +02007373 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "lang", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007374 xpath_func = &xpath_lang;
Michal Vasko004d3152020-06-11 19:59:22 +02007375 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "last", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007376 xpath_func = &xpath_last;
Michal Vasko004d3152020-06-11 19:59:22 +02007377 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "name", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007378 xpath_func = &xpath_name;
Michal Vasko004d3152020-06-11 19:59:22 +02007379 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "true", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007380 xpath_func = &xpath_true;
7381 }
7382 break;
7383 case 5:
Michal Vasko004d3152020-06-11 19:59:22 +02007384 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "count", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007385 xpath_func = &xpath_count;
Michal Vasko004d3152020-06-11 19:59:22 +02007386 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "false", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007387 xpath_func = &xpath_false;
Michal Vasko004d3152020-06-11 19:59:22 +02007388 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "floor", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007389 xpath_func = &xpath_floor;
Michal Vasko004d3152020-06-11 19:59:22 +02007390 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "round", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007391 xpath_func = &xpath_round;
Michal Vasko004d3152020-06-11 19:59:22 +02007392 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "deref", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007393 xpath_func = &xpath_deref;
7394 }
7395 break;
7396 case 6:
Michal Vasko004d3152020-06-11 19:59:22 +02007397 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "concat", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007398 xpath_func = &xpath_concat;
Michal Vasko004d3152020-06-11 19:59:22 +02007399 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "number", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007400 xpath_func = &xpath_number;
Michal Vasko004d3152020-06-11 19:59:22 +02007401 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007402 xpath_func = &xpath_string;
7403 }
7404 break;
7405 case 7:
Michal Vasko004d3152020-06-11 19:59:22 +02007406 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "boolean", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007407 xpath_func = &xpath_boolean;
Michal Vasko004d3152020-06-11 19:59:22 +02007408 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "ceiling", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007409 xpath_func = &xpath_ceiling;
Michal Vasko004d3152020-06-11 19:59:22 +02007410 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "current", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007411 xpath_func = &xpath_current;
7412 }
7413 break;
7414 case 8:
Michal Vasko004d3152020-06-11 19:59:22 +02007415 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "contains", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007416 xpath_func = &xpath_contains;
Michal Vasko004d3152020-06-11 19:59:22 +02007417 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "position", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007418 xpath_func = &xpath_position;
Michal Vasko004d3152020-06-11 19:59:22 +02007419 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "re-match", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007420 xpath_func = &xpath_re_match;
7421 }
7422 break;
7423 case 9:
Michal Vasko004d3152020-06-11 19:59:22 +02007424 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring", 9)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007425 xpath_func = &xpath_substring;
Michal Vasko004d3152020-06-11 19:59:22 +02007426 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "translate", 9)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007427 xpath_func = &xpath_translate;
7428 }
7429 break;
7430 case 10:
Michal Vasko004d3152020-06-11 19:59:22 +02007431 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "local-name", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007432 xpath_func = &xpath_local_name;
Michal Vasko004d3152020-06-11 19:59:22 +02007433 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "enum-value", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007434 xpath_func = &xpath_enum_value;
Michal Vasko004d3152020-06-11 19:59:22 +02007435 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "bit-is-set", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007436 xpath_func = &xpath_bit_is_set;
7437 }
7438 break;
7439 case 11:
Michal Vasko004d3152020-06-11 19:59:22 +02007440 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "starts-with", 11)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007441 xpath_func = &xpath_starts_with;
7442 }
7443 break;
7444 case 12:
Michal Vasko004d3152020-06-11 19:59:22 +02007445 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from", 12)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007446 xpath_func = &xpath_derived_from;
7447 }
7448 break;
7449 case 13:
Michal Vasko004d3152020-06-11 19:59:22 +02007450 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "namespace-uri", 13)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007451 xpath_func = &xpath_namespace_uri;
Michal Vasko004d3152020-06-11 19:59:22 +02007452 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string-length", 13)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007453 xpath_func = &xpath_string_length;
7454 }
7455 break;
7456 case 15:
Michal Vasko004d3152020-06-11 19:59:22 +02007457 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "normalize-space", 15)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007458 xpath_func = &xpath_normalize_space;
Michal Vasko004d3152020-06-11 19:59:22 +02007459 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-after", 15)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007460 xpath_func = &xpath_substring_after;
7461 }
7462 break;
7463 case 16:
Michal Vasko004d3152020-06-11 19:59:22 +02007464 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-before", 16)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007465 xpath_func = &xpath_substring_before;
7466 }
7467 break;
7468 case 20:
Michal Vasko004d3152020-06-11 19:59:22 +02007469 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from-or-self", 20)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007470 xpath_func = &xpath_derived_from_or_self;
7471 }
7472 break;
7473 }
7474
7475 if (!xpath_func) {
Michal Vasko004d3152020-06-11 19:59:22 +02007476 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 +02007477 return LY_EVALID;
7478 }
7479 }
7480
7481 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007482 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7483 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007484
7485 /* '(' */
Michal Vasko004d3152020-06-11 19:59:22 +02007486 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007487 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007488 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7489 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007490
7491 /* ( Expr ( ',' Expr )* )? */
Michal Vasko004d3152020-06-11 19:59:22 +02007492 if (exp->tokens[*tok_idx] != LYXP_TOKEN_PAR2) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007493 if (set) {
7494 args = malloc(sizeof *args);
7495 LY_CHECK_ERR_GOTO(!args, LOGMEM(set->ctx); rc = LY_EMEM, cleanup);
7496 arg_count = 1;
7497 args[0] = set_copy(set);
7498 if (!args[0]) {
7499 rc = LY_EMEM;
7500 goto cleanup;
7501 }
7502
Michal Vasko004d3152020-06-11 19:59:22 +02007503 rc = eval_expr_select(exp, tok_idx, 0, args[0], options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007504 LY_CHECK_GOTO(rc, cleanup);
7505 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007506 rc = eval_expr_select(exp, tok_idx, 0, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007507 LY_CHECK_GOTO(rc, cleanup);
7508 }
7509 }
Michal Vasko004d3152020-06-11 19:59:22 +02007510 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_COMMA)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007511 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007512 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7513 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007514
7515 if (set) {
7516 ++arg_count;
7517 args_aux = realloc(args, arg_count * sizeof *args);
7518 LY_CHECK_ERR_GOTO(!args_aux, arg_count--; LOGMEM(set->ctx); rc = LY_EMEM, cleanup);
7519 args = args_aux;
7520 args[arg_count - 1] = set_copy(set);
7521 if (!args[arg_count - 1]) {
7522 rc = LY_EMEM;
7523 goto cleanup;
7524 }
7525
Michal Vasko004d3152020-06-11 19:59:22 +02007526 rc = eval_expr_select(exp, tok_idx, 0, args[arg_count - 1], options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007527 LY_CHECK_GOTO(rc, cleanup);
7528 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007529 rc = eval_expr_select(exp, tok_idx, 0, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007530 LY_CHECK_GOTO(rc, cleanup);
7531 }
7532 }
7533
7534 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02007535 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007536 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007537 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7538 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007539
7540 if (set) {
7541 /* evaluate function */
7542 rc = xpath_func(args, arg_count, set, options);
7543
7544 if (options & LYXP_SCNODE_ALL) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007545 /* merge all nodes from arg evaluations */
7546 for (i = 0; i < arg_count; ++i) {
7547 set_scnode_clear_ctx(args[i]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01007548 lyxp_set_scnode_merge(set, args[i]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007549 }
7550 }
7551 } else {
7552 rc = LY_SUCCESS;
7553 }
7554
7555cleanup:
7556 for (i = 0; i < arg_count; ++i) {
7557 lyxp_set_free(args[i]);
7558 }
7559 free(args);
7560
7561 return rc;
7562}
7563
7564/**
7565 * @brief Evaluate Number. Logs directly on error.
7566 *
7567 * @param[in] ctx Context for errors.
7568 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007569 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007570 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7571 * @return LY_ERR
7572 */
7573static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007574eval_number(struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007575{
7576 long double num;
7577 char *endptr;
7578
7579 if (set) {
7580 errno = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02007581 num = strtold(&exp->expr[exp->tok_pos[*tok_idx]], &endptr);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007582 if (errno) {
Michal Vasko004d3152020-06-11 19:59:22 +02007583 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 +02007584 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 +02007585 exp->tok_len[*tok_idx], &exp->expr[exp->tok_pos[*tok_idx]], strerror(errno));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007586 return LY_EVALID;
Michal Vasko004d3152020-06-11 19:59:22 +02007587 } else if (endptr - &exp->expr[exp->tok_pos[*tok_idx]] != exp->tok_len[*tok_idx]) {
7588 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 +02007589 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 +02007590 exp->tok_len[*tok_idx], &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007591 return LY_EVALID;
7592 }
7593
7594 set_fill_number(set, num);
7595 }
7596
7597 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007598 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7599 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007600 return LY_SUCCESS;
7601}
7602
7603/**
7604 * @brief Evaluate PathExpr. Logs directly on error.
7605 *
Michal Vaskod3678892020-05-21 10:06:58 +02007606 * [12] PathExpr ::= LocationPath | PrimaryExpr Predicate*
Michal Vasko03ff5a72019-09-11 13:49:33 +02007607 * | PrimaryExpr Predicate* '/' RelativeLocationPath
7608 * | PrimaryExpr Predicate* '//' RelativeLocationPath
7609 * [2] LocationPath ::= RelativeLocationPath | AbsoluteLocationPath
Michal Vaskod3678892020-05-21 10:06:58 +02007610 * [10] PrimaryExpr ::= '(' Expr ')' | Literal | Number | FunctionCall
Michal Vasko03ff5a72019-09-11 13:49:33 +02007611 *
7612 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007613 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007614 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7615 * @param[in] options XPath options.
7616 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7617 */
7618static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007619eval_path_expr(struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set, int options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007620{
7621 int all_desc, parent_pos_pred;
7622 LY_ERR rc;
7623
Michal Vasko004d3152020-06-11 19:59:22 +02007624 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007625 case LYXP_TOKEN_PAR1:
7626 /* '(' Expr ')' */
7627
7628 /* '(' */
7629 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007630 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7631 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007632
7633 /* Expr */
Michal Vasko004d3152020-06-11 19:59:22 +02007634 rc = eval_expr_select(exp, tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007635 LY_CHECK_RET(rc);
7636
7637 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02007638 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007639 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007640 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7641 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007642
7643 parent_pos_pred = 0;
7644 goto predicate;
7645
7646 case LYXP_TOKEN_DOT:
7647 case LYXP_TOKEN_DDOT:
7648 case LYXP_TOKEN_AT:
7649 case LYXP_TOKEN_NAMETEST:
7650 case LYXP_TOKEN_NODETYPE:
7651 /* RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02007652 rc = eval_relative_location_path(exp, tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007653 LY_CHECK_RET(rc);
7654 break;
7655
7656 case LYXP_TOKEN_FUNCNAME:
7657 /* FunctionCall */
7658 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007659 rc = eval_function_call(exp, tok_idx, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007660 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007661 rc = eval_function_call(exp, tok_idx, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007662 }
7663 LY_CHECK_RET(rc);
7664
7665 parent_pos_pred = 1;
7666 goto predicate;
7667
Michal Vasko3e48bf32020-06-01 08:39:07 +02007668 case LYXP_TOKEN_OPER_PATH:
7669 case LYXP_TOKEN_OPER_RPATH:
Michal Vasko03ff5a72019-09-11 13:49:33 +02007670 /* AbsoluteLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02007671 rc = eval_absolute_location_path(exp, tok_idx, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007672 LY_CHECK_RET(rc);
7673 break;
7674
7675 case LYXP_TOKEN_LITERAL:
7676 /* Literal */
7677 if (!set || (options & LYXP_SCNODE_ALL)) {
7678 if (set) {
7679 set_scnode_clear_ctx(set);
7680 }
Michal Vasko004d3152020-06-11 19:59:22 +02007681 eval_literal(exp, tok_idx, NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007682 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007683 eval_literal(exp, tok_idx, set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007684 }
7685
7686 parent_pos_pred = 1;
7687 goto predicate;
7688
7689 case LYXP_TOKEN_NUMBER:
7690 /* Number */
7691 if (!set || (options & LYXP_SCNODE_ALL)) {
7692 if (set) {
7693 set_scnode_clear_ctx(set);
7694 }
Michal Vasko004d3152020-06-11 19:59:22 +02007695 rc = eval_number(NULL, exp, tok_idx, NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007696 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007697 rc = eval_number(set->ctx, exp, tok_idx, set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007698 }
7699 LY_CHECK_RET(rc);
7700
7701 parent_pos_pred = 1;
7702 goto predicate;
7703
7704 default:
Michal Vasko004d3152020-06-11 19:59:22 +02007705 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INTOK, lyxp_print_token(exp->tokens[*tok_idx]),
7706 &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007707 return LY_EVALID;
7708 }
7709
7710 return LY_SUCCESS;
7711
7712predicate:
7713 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007714 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
7715 rc = eval_predicate(exp, tok_idx, set, options, parent_pos_pred);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007716 LY_CHECK_RET(rc);
7717 }
7718
7719 /* ('/' or '//') RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02007720 if (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007721
7722 /* evaluate '/' or '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02007723 if (exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_PATH) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007724 all_desc = 0;
7725 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007726 all_desc = 1;
7727 }
7728
7729 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007730 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7731 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007732
Michal Vasko004d3152020-06-11 19:59:22 +02007733 rc = eval_relative_location_path(exp, tok_idx, all_desc, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007734 LY_CHECK_RET(rc);
7735 }
7736
7737 return LY_SUCCESS;
7738}
7739
7740/**
7741 * @brief Evaluate UnionExpr. Logs directly on error.
7742 *
Michal Vaskod3678892020-05-21 10:06:58 +02007743 * [20] UnionExpr ::= PathExpr | UnionExpr '|' PathExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02007744 *
7745 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007746 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007747 * @param[in] repeat How many times this expression is repeated.
7748 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7749 * @param[in] options XPath options.
7750 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7751 */
7752static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007753eval_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 +02007754{
7755 LY_ERR rc = LY_SUCCESS;
7756 struct lyxp_set orig_set, set2;
7757 uint16_t i;
7758
7759 assert(repeat);
7760
7761 set_init(&orig_set, set);
7762 set_init(&set2, set);
7763
7764 set_fill_set(&orig_set, set);
7765
Michal Vasko004d3152020-06-11 19:59:22 +02007766 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNION, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007767 LY_CHECK_GOTO(rc, cleanup);
7768
7769 /* ('|' PathExpr)* */
7770 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02007771 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_UNI);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007772 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007773 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7774 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007775
7776 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007777 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNION, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007778 LY_CHECK_GOTO(rc, cleanup);
7779 continue;
7780 }
7781
7782 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02007783 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNION, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007784 LY_CHECK_GOTO(rc, cleanup);
7785
7786 /* eval */
7787 if (options & LYXP_SCNODE_ALL) {
Michal Vaskoecd62de2019-11-13 12:35:11 +01007788 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007789 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007790 rc = moveto_union(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007791 LY_CHECK_GOTO(rc, cleanup);
7792 }
7793 }
7794
7795cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02007796 lyxp_set_free_content(&orig_set);
7797 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007798 return rc;
7799}
7800
7801/**
7802 * @brief Evaluate UnaryExpr. Logs directly on error.
7803 *
Michal Vaskod3678892020-05-21 10:06:58 +02007804 * [19] UnaryExpr ::= UnionExpr | '-' UnaryExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02007805 *
7806 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007807 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007808 * @param[in] repeat How many times this expression is repeated.
7809 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7810 * @param[in] options XPath options.
7811 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7812 */
7813static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007814eval_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 +02007815{
7816 LY_ERR rc;
7817 uint16_t this_op, i;
7818
7819 assert(repeat);
7820
7821 /* ('-')+ */
Michal Vasko004d3152020-06-11 19:59:22 +02007822 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007823 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02007824 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 +02007825
7826 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007827 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7828 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007829 }
7830
Michal Vasko004d3152020-06-11 19:59:22 +02007831 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNARY, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007832 LY_CHECK_RET(rc);
7833
7834 if (set && (repeat % 2)) {
7835 if (options & LYXP_SCNODE_ALL) {
7836 warn_operands(set->ctx, set, NULL, 1, exp->expr, exp->tok_pos[this_op]);
7837 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007838 rc = moveto_op_math(set, NULL, &exp->expr[exp->tok_pos[this_op]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007839 LY_CHECK_RET(rc);
7840 }
7841 }
7842
7843 return LY_SUCCESS;
7844}
7845
7846/**
7847 * @brief Evaluate MultiplicativeExpr. Logs directly on error.
7848 *
Michal Vaskod3678892020-05-21 10:06:58 +02007849 * [18] MultiplicativeExpr ::= UnaryExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02007850 * | MultiplicativeExpr '*' UnaryExpr
7851 * | MultiplicativeExpr 'div' UnaryExpr
7852 * | MultiplicativeExpr 'mod' UnaryExpr
7853 *
7854 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007855 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007856 * @param[in] repeat How many times this expression is repeated.
7857 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7858 * @param[in] options XPath options.
7859 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7860 */
7861static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007862eval_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 +02007863{
7864 LY_ERR rc;
7865 uint16_t this_op;
7866 struct lyxp_set orig_set, set2;
7867 uint16_t i;
7868
7869 assert(repeat);
7870
7871 set_init(&orig_set, set);
7872 set_init(&set2, set);
7873
7874 set_fill_set(&orig_set, set);
7875
Michal Vasko004d3152020-06-11 19:59:22 +02007876 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_MULTIPLICATIVE, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007877 LY_CHECK_GOTO(rc, cleanup);
7878
7879 /* ('*' / 'div' / 'mod' UnaryExpr)* */
7880 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02007881 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007882
Michal Vasko004d3152020-06-11 19:59:22 +02007883 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_MATH);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007884 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007885 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7886 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007887
7888 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007889 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_MULTIPLICATIVE, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007890 LY_CHECK_GOTO(rc, cleanup);
7891 continue;
7892 }
7893
7894 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02007895 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_MULTIPLICATIVE, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007896 LY_CHECK_GOTO(rc, cleanup);
7897
7898 /* eval */
7899 if (options & LYXP_SCNODE_ALL) {
7900 warn_operands(set->ctx, set, &set2, 1, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01007901 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007902 set_scnode_clear_ctx(set);
7903 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007904 rc = moveto_op_math(set, &set2, &exp->expr[exp->tok_pos[this_op]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007905 LY_CHECK_GOTO(rc, cleanup);
7906 }
7907 }
7908
7909cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02007910 lyxp_set_free_content(&orig_set);
7911 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007912 return rc;
7913}
7914
7915/**
7916 * @brief Evaluate AdditiveExpr. Logs directly on error.
7917 *
Michal Vaskod3678892020-05-21 10:06:58 +02007918 * [17] AdditiveExpr ::= MultiplicativeExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02007919 * | AdditiveExpr '+' MultiplicativeExpr
7920 * | AdditiveExpr '-' MultiplicativeExpr
7921 *
7922 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007923 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007924 * @param[in] repeat How many times this expression is repeated.
7925 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7926 * @param[in] options XPath options.
7927 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7928 */
7929static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007930eval_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 +02007931{
7932 LY_ERR rc;
7933 uint16_t this_op;
7934 struct lyxp_set orig_set, set2;
7935 uint16_t i;
7936
7937 assert(repeat);
7938
7939 set_init(&orig_set, set);
7940 set_init(&set2, set);
7941
7942 set_fill_set(&orig_set, set);
7943
Michal Vasko004d3152020-06-11 19:59:22 +02007944 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_ADDITIVE, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007945 LY_CHECK_GOTO(rc, cleanup);
7946
7947 /* ('+' / '-' MultiplicativeExpr)* */
7948 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02007949 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007950
Michal Vasko004d3152020-06-11 19:59:22 +02007951 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_MATH);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007952 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007953 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7954 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007955
7956 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007957 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_ADDITIVE, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007958 LY_CHECK_GOTO(rc, cleanup);
7959 continue;
7960 }
7961
7962 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02007963 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_ADDITIVE, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007964 LY_CHECK_GOTO(rc, cleanup);
7965
7966 /* eval */
7967 if (options & LYXP_SCNODE_ALL) {
7968 warn_operands(set->ctx, set, &set2, 1, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01007969 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007970 set_scnode_clear_ctx(set);
7971 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007972 rc = moveto_op_math(set, &set2, &exp->expr[exp->tok_pos[this_op]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007973 LY_CHECK_GOTO(rc, cleanup);
7974 }
7975 }
7976
7977cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02007978 lyxp_set_free_content(&orig_set);
7979 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007980 return rc;
7981}
7982
7983/**
7984 * @brief Evaluate RelationalExpr. Logs directly on error.
7985 *
Michal Vaskod3678892020-05-21 10:06:58 +02007986 * [16] RelationalExpr ::= AdditiveExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02007987 * | RelationalExpr '<' AdditiveExpr
7988 * | RelationalExpr '>' AdditiveExpr
7989 * | RelationalExpr '<=' AdditiveExpr
7990 * | RelationalExpr '>=' AdditiveExpr
7991 *
7992 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007993 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007994 * @param[in] repeat How many times this expression is repeated.
7995 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7996 * @param[in] options XPath options.
7997 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7998 */
7999static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02008000eval_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 +02008001{
8002 LY_ERR rc;
8003 uint16_t this_op;
8004 struct lyxp_set orig_set, set2;
8005 uint16_t i;
8006
8007 assert(repeat);
8008
8009 set_init(&orig_set, set);
8010 set_init(&set2, set);
8011
8012 set_fill_set(&orig_set, set);
8013
Michal Vasko004d3152020-06-11 19:59:22 +02008014 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_RELATIONAL, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008015 LY_CHECK_GOTO(rc, cleanup);
8016
8017 /* ('<' / '>' / '<=' / '>=' AdditiveExpr)* */
8018 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008019 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008020
Michal Vasko004d3152020-06-11 19:59:22 +02008021 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_COMP);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008022 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02008023 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
8024 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008025
8026 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02008027 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_RELATIONAL, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008028 LY_CHECK_GOTO(rc, cleanup);
8029 continue;
8030 }
8031
8032 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02008033 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_RELATIONAL, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008034 LY_CHECK_GOTO(rc, cleanup);
8035
8036 /* eval */
8037 if (options & LYXP_SCNODE_ALL) {
8038 warn_operands(set->ctx, set, &set2, 1, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008039 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008040 set_scnode_clear_ctx(set);
8041 } else {
8042 rc = moveto_op_comp(set, &set2, &exp->expr[exp->tok_pos[this_op]], options);
8043 LY_CHECK_GOTO(rc, cleanup);
8044 }
8045 }
8046
8047cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008048 lyxp_set_free_content(&orig_set);
8049 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008050 return rc;
8051}
8052
8053/**
8054 * @brief Evaluate EqualityExpr. Logs directly on error.
8055 *
Michal Vaskod3678892020-05-21 10:06:58 +02008056 * [15] EqualityExpr ::= RelationalExpr | EqualityExpr '=' RelationalExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008057 * | EqualityExpr '!=' RelationalExpr
8058 *
8059 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008060 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008061 * @param[in] repeat How many times this expression is repeated.
8062 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
8063 * @param[in] options XPath options.
8064 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8065 */
8066static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02008067eval_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 +02008068{
8069 LY_ERR rc;
8070 uint16_t this_op;
8071 struct lyxp_set orig_set, set2;
8072 uint16_t i;
8073
8074 assert(repeat);
8075
8076 set_init(&orig_set, set);
8077 set_init(&set2, set);
8078
8079 set_fill_set(&orig_set, set);
8080
Michal Vasko004d3152020-06-11 19:59:22 +02008081 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_EQUALITY, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008082 LY_CHECK_GOTO(rc, cleanup);
8083
8084 /* ('=' / '!=' RelationalExpr)* */
8085 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008086 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008087
Michal Vasko004d3152020-06-11 19:59:22 +02008088 assert((exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_EQUAL) || (exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_NEQUAL));
Michal Vasko03ff5a72019-09-11 13:49:33 +02008089 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02008090 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
8091 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008092
8093 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02008094 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_EQUALITY, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008095 LY_CHECK_GOTO(rc, cleanup);
8096 continue;
8097 }
8098
8099 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02008100 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_EQUALITY, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008101 LY_CHECK_GOTO(rc, cleanup);
8102
8103 /* eval */
8104 if (options & LYXP_SCNODE_ALL) {
8105 warn_operands(set->ctx, set, &set2, 0, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vasko004d3152020-06-11 19:59:22 +02008106 warn_equality_value(exp, set, *tok_idx - 1, this_op - 1, *tok_idx - 1);
8107 warn_equality_value(exp, &set2, this_op - 1, this_op - 1, *tok_idx - 1);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008108 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008109 set_scnode_clear_ctx(set);
8110 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008111 rc = moveto_op_comp(set, &set2, &exp->expr[exp->tok_pos[this_op]], options);
8112 LY_CHECK_GOTO(rc, cleanup);
8113 }
8114 }
8115
8116cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008117 lyxp_set_free_content(&orig_set);
8118 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008119 return rc;
8120}
8121
8122/**
8123 * @brief Evaluate AndExpr. Logs directly on error.
8124 *
Michal Vaskod3678892020-05-21 10:06:58 +02008125 * [14] AndExpr ::= EqualityExpr | AndExpr 'and' EqualityExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008126 *
8127 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008128 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008129 * @param[in] repeat How many times this expression is repeated.
8130 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
8131 * @param[in] options XPath options.
8132 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8133 */
8134static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02008135eval_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 +02008136{
8137 LY_ERR rc;
8138 struct lyxp_set orig_set, set2;
8139 uint16_t i;
8140
8141 assert(repeat);
8142
8143 set_init(&orig_set, set);
8144 set_init(&set2, set);
8145
8146 set_fill_set(&orig_set, set);
8147
Michal Vasko004d3152020-06-11 19:59:22 +02008148 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_AND, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008149 LY_CHECK_GOTO(rc, cleanup);
8150
8151 /* cast to boolean, we know that will be the final result */
8152 if (set && (options & LYXP_SCNODE_ALL)) {
8153 set_scnode_clear_ctx(set);
8154 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008155 lyxp_set_cast(set, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008156 }
8157
8158 /* ('and' EqualityExpr)* */
8159 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008160 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_LOG);
8161 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (!set || !set->val.bln ? "skipped" : "parsed"),
8162 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
8163 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008164
8165 /* lazy evaluation */
Michal Vasko004d3152020-06-11 19:59:22 +02008166 if (!set || ((set->type == LYXP_SET_BOOLEAN) && !set->val.bln)) {
8167 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_AND, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008168 LY_CHECK_GOTO(rc, cleanup);
8169 continue;
8170 }
8171
8172 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02008173 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_AND, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008174 LY_CHECK_GOTO(rc, cleanup);
8175
8176 /* eval - just get boolean value actually */
8177 if (set->type == LYXP_SET_SCNODE_SET) {
8178 set_scnode_clear_ctx(&set2);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008179 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008180 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008181 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008182 set_fill_set(set, &set2);
8183 }
8184 }
8185
8186cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008187 lyxp_set_free_content(&orig_set);
8188 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008189 return rc;
8190}
8191
8192/**
8193 * @brief Evaluate OrExpr. Logs directly on error.
8194 *
Michal Vaskod3678892020-05-21 10:06:58 +02008195 * [13] OrExpr ::= AndExpr | OrExpr 'or' AndExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008196 *
8197 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008198 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008199 * @param[in] repeat How many times this expression is repeated.
8200 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
8201 * @param[in] options XPath options.
8202 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8203 */
8204static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02008205eval_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 +02008206{
8207 LY_ERR rc;
8208 struct lyxp_set orig_set, set2;
8209 uint16_t i;
8210
8211 assert(repeat);
8212
8213 set_init(&orig_set, set);
8214 set_init(&set2, set);
8215
8216 set_fill_set(&orig_set, set);
8217
Michal Vasko004d3152020-06-11 19:59:22 +02008218 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_OR, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008219 LY_CHECK_GOTO(rc, cleanup);
8220
8221 /* cast to boolean, we know that will be the final result */
8222 if (set && (options & LYXP_SCNODE_ALL)) {
8223 set_scnode_clear_ctx(set);
8224 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008225 lyxp_set_cast(set, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008226 }
8227
8228 /* ('or' AndExpr)* */
8229 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008230 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_LOG);
8231 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (!set || set->val.bln ? "skipped" : "parsed"),
8232 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
8233 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008234
8235 /* lazy evaluation */
Michal Vasko004d3152020-06-11 19:59:22 +02008236 if (!set || ((set->type == LYXP_SET_BOOLEAN) && set->val.bln)) {
8237 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_OR, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008238 LY_CHECK_GOTO(rc, cleanup);
8239 continue;
8240 }
8241
8242 set_fill_set(&set2, &orig_set);
8243 /* expr_type cound have been LYXP_EXPR_NONE in all these later calls (except for the first one),
8244 * but it does not matter */
Michal Vasko004d3152020-06-11 19:59:22 +02008245 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_OR, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008246 LY_CHECK_GOTO(rc, cleanup);
8247
8248 /* eval - just get boolean value actually */
8249 if (set->type == LYXP_SET_SCNODE_SET) {
8250 set_scnode_clear_ctx(&set2);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008251 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008252 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008253 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008254 set_fill_set(set, &set2);
8255 }
8256 }
8257
8258cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008259 lyxp_set_free_content(&orig_set);
8260 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008261 return rc;
8262}
8263
8264/**
Michal Vasko004d3152020-06-11 19:59:22 +02008265 * @brief Decide what expression is at the pointer @p tok_idx and evaluate it accordingly.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008266 *
8267 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008268 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008269 * @param[in] etype Expression type to evaluate.
8270 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
8271 * @param[in] options XPath options.
8272 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8273 */
8274static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02008275eval_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 +02008276{
8277 uint16_t i, count;
8278 enum lyxp_expr_type next_etype;
8279 LY_ERR rc;
8280
8281 /* process operator repeats */
Michal Vasko004d3152020-06-11 19:59:22 +02008282 if (!exp->repeat[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008283 next_etype = LYXP_EXPR_NONE;
8284 } else {
8285 /* find etype repeat */
Michal Vasko004d3152020-06-11 19:59:22 +02008286 for (i = 0; exp->repeat[*tok_idx][i] > etype; ++i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008287
8288 /* select one-priority lower because etype expression called us */
8289 if (i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008290 next_etype = exp->repeat[*tok_idx][i - 1];
Michal Vasko03ff5a72019-09-11 13:49:33 +02008291 /* count repeats for that expression */
Michal Vasko004d3152020-06-11 19:59:22 +02008292 for (count = 0; i && exp->repeat[*tok_idx][i - 1] == next_etype; ++count, --i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008293 } else {
8294 next_etype = LYXP_EXPR_NONE;
8295 }
8296 }
8297
8298 /* decide what expression are we parsing based on the repeat */
8299 switch (next_etype) {
8300 case LYXP_EXPR_OR:
Michal Vasko004d3152020-06-11 19:59:22 +02008301 rc = eval_or_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008302 break;
8303 case LYXP_EXPR_AND:
Michal Vasko004d3152020-06-11 19:59:22 +02008304 rc = eval_and_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008305 break;
8306 case LYXP_EXPR_EQUALITY:
Michal Vasko004d3152020-06-11 19:59:22 +02008307 rc = eval_equality_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008308 break;
8309 case LYXP_EXPR_RELATIONAL:
Michal Vasko004d3152020-06-11 19:59:22 +02008310 rc = eval_relational_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008311 break;
8312 case LYXP_EXPR_ADDITIVE:
Michal Vasko004d3152020-06-11 19:59:22 +02008313 rc = eval_additive_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008314 break;
8315 case LYXP_EXPR_MULTIPLICATIVE:
Michal Vasko004d3152020-06-11 19:59:22 +02008316 rc = eval_multiplicative_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008317 break;
8318 case LYXP_EXPR_UNARY:
Michal Vasko004d3152020-06-11 19:59:22 +02008319 rc = eval_unary_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008320 break;
8321 case LYXP_EXPR_UNION:
Michal Vasko004d3152020-06-11 19:59:22 +02008322 rc = eval_union_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008323 break;
8324 case LYXP_EXPR_NONE:
Michal Vasko004d3152020-06-11 19:59:22 +02008325 rc = eval_path_expr(exp, tok_idx, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008326 break;
8327 default:
8328 LOGINT_RET(set->ctx);
8329 }
8330
8331 return rc;
8332}
8333
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008334/**
8335 * @brief Get root type.
8336 *
8337 * @param[in] ctx_node Context node.
8338 * @param[in] ctx_scnode Schema context node.
8339 * @param[in] options XPath options.
8340 * @return Root type.
8341 */
8342static enum lyxp_node_type
8343lyxp_get_root_type(const struct lyd_node *ctx_node, const struct lysc_node *ctx_scnode, int options)
8344{
Michal Vasko6b26e742020-07-17 15:02:10 +02008345 const struct lysc_node *op;
8346
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008347 if (options & LYXP_SCNODE_ALL) {
Michal Vasko6b26e742020-07-17 15:02:10 +02008348 for (op = ctx_scnode; op && !(op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)); op = op->parent);
8349
8350 if (op || (options & LYXP_SCNODE)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008351 /* general root that can access everything */
8352 return LYXP_NODE_ROOT;
8353 } else if (!ctx_scnode || (ctx_scnode->flags & LYS_CONFIG_W)) {
8354 /* root context node can access only config data (because we said so, it is unspecified) */
8355 return LYXP_NODE_ROOT_CONFIG;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008356 }
Michal Vasko6b26e742020-07-17 15:02:10 +02008357 return LYXP_NODE_ROOT;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008358 }
8359
Michal Vasko6b26e742020-07-17 15:02:10 +02008360 op = ctx_node ? ctx_node->schema : NULL;
8361 for (; op && !(op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)); op = op->parent);
8362
8363 if (!ctx_node || (!op && (ctx_node->schema->flags & LYS_CONFIG_W))) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008364 /* root context node can access only config data (because we said so, it is unspecified) */
8365 return LYXP_NODE_ROOT_CONFIG;
8366 }
8367
8368 return LYXP_NODE_ROOT;
8369}
8370
Michal Vasko03ff5a72019-09-11 13:49:33 +02008371LY_ERR
Michal Vaskoecd62de2019-11-13 12:35:11 +01008372lyxp_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 +01008373 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 +02008374{
Michal Vasko004d3152020-06-11 19:59:22 +02008375 uint16_t tok_idx = 0;
8376 const struct lyd_node *real_ctx_node;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008377 LY_ERR rc;
8378
Michal Vasko004d3152020-06-11 19:59:22 +02008379 LY_CHECK_ARG_RET(NULL, exp, local_mod, ctx_node, set, LY_EINVAL);
8380
8381 if ((ctx_node_type == LYXP_NODE_ROOT) || (ctx_node_type == LYXP_NODE_ROOT_CONFIG)) {
8382 /* we always need some context node because it is used for resolving unqualified names */
8383 real_ctx_node = NULL;
8384 } else {
8385 real_ctx_node = ctx_node;
8386 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02008387
8388 /* prepare set for evaluation */
Michal Vasko004d3152020-06-11 19:59:22 +02008389 tok_idx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008390 memset(set, 0, sizeof *set);
Michal Vaskod3678892020-05-21 10:06:58 +02008391 set->type = LYXP_SET_NODE_SET;
Michal Vasko004d3152020-06-11 19:59:22 +02008392 set_insert_node(set, (struct lyd_node *)real_ctx_node, 0, ctx_node_type, 0);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008393 set->ctx = local_mod->ctx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008394 set->ctx_node = ctx_node;
Michal Vasko004d3152020-06-11 19:59:22 +02008395 set->root_type = lyxp_get_root_type(real_ctx_node, NULL, options);
Michal Vasko6b26e742020-07-17 15:02:10 +02008396 for (set->context_op = ctx_node->schema;
8397 set->context_op && !(set->context_op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF));
8398 set->context_op = set->context_op->parent);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008399 set->local_mod = local_mod;
Michal Vaskof03ed032020-03-04 13:31:44 +01008400 set->tree = tree;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008401 set->format = format;
8402
8403 /* evaluate */
Michal Vasko004d3152020-06-11 19:59:22 +02008404 rc = eval_expr_select(exp, &tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008405 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02008406 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008407 }
8408
Michal Vasko03ff5a72019-09-11 13:49:33 +02008409 return rc;
8410}
8411
8412#if 0
8413
8414/* full xml printing of set elements, not used currently */
8415
8416void
8417lyxp_set_print_xml(FILE *f, struct lyxp_set *set)
8418{
8419 uint32_t i;
8420 char *str_num;
8421 struct lyout out;
8422
8423 memset(&out, 0, sizeof out);
8424
8425 out.type = LYOUT_STREAM;
8426 out.method.f = f;
8427
8428 switch (set->type) {
8429 case LYXP_SET_EMPTY:
8430 ly_print(&out, "Empty XPath set\n\n");
8431 break;
8432 case LYXP_SET_BOOLEAN:
8433 ly_print(&out, "Boolean XPath set:\n");
8434 ly_print(&out, "%s\n\n", set->value.bool ? "true" : "false");
8435 break;
8436 case LYXP_SET_STRING:
8437 ly_print(&out, "String XPath set:\n");
8438 ly_print(&out, "\"%s\"\n\n", set->value.str);
8439 break;
8440 case LYXP_SET_NUMBER:
8441 ly_print(&out, "Number XPath set:\n");
8442
8443 if (isnan(set->value.num)) {
8444 str_num = strdup("NaN");
8445 } else if ((set->value.num == 0) || (set->value.num == -0.0f)) {
8446 str_num = strdup("0");
8447 } else if (isinf(set->value.num) && !signbit(set->value.num)) {
8448 str_num = strdup("Infinity");
8449 } else if (isinf(set->value.num) && signbit(set->value.num)) {
8450 str_num = strdup("-Infinity");
8451 } else if ((long long)set->value.num == set->value.num) {
8452 if (asprintf(&str_num, "%lld", (long long)set->value.num) == -1) {
8453 str_num = NULL;
8454 }
8455 } else {
8456 if (asprintf(&str_num, "%03.1Lf", set->value.num) == -1) {
8457 str_num = NULL;
8458 }
8459 }
8460 if (!str_num) {
8461 LOGMEM;
8462 return;
8463 }
8464 ly_print(&out, "%s\n\n", str_num);
8465 free(str_num);
8466 break;
8467 case LYXP_SET_NODE_SET:
8468 ly_print(&out, "Node XPath set:\n");
8469
8470 for (i = 0; i < set->used; ++i) {
8471 ly_print(&out, "%d. ", i + 1);
8472 switch (set->node_type[i]) {
8473 case LYXP_NODE_ROOT_ALL:
8474 ly_print(&out, "ROOT all\n\n");
8475 break;
8476 case LYXP_NODE_ROOT_CONFIG:
8477 ly_print(&out, "ROOT config\n\n");
8478 break;
8479 case LYXP_NODE_ROOT_STATE:
8480 ly_print(&out, "ROOT state\n\n");
8481 break;
8482 case LYXP_NODE_ROOT_NOTIF:
8483 ly_print(&out, "ROOT notification \"%s\"\n\n", set->value.nodes[i]->schema->name);
8484 break;
8485 case LYXP_NODE_ROOT_RPC:
8486 ly_print(&out, "ROOT rpc \"%s\"\n\n", set->value.nodes[i]->schema->name);
8487 break;
8488 case LYXP_NODE_ROOT_OUTPUT:
8489 ly_print(&out, "ROOT output \"%s\"\n\n", set->value.nodes[i]->schema->name);
8490 break;
8491 case LYXP_NODE_ELEM:
8492 ly_print(&out, "ELEM \"%s\"\n", set->value.nodes[i]->schema->name);
8493 xml_print_node(&out, 1, set->value.nodes[i], 1, LYP_FORMAT);
8494 ly_print(&out, "\n");
8495 break;
8496 case LYXP_NODE_TEXT:
8497 ly_print(&out, "TEXT \"%s\"\n\n", ((struct lyd_node_leaf_list *)set->value.nodes[i])->value_str);
8498 break;
8499 case LYXP_NODE_ATTR:
8500 ly_print(&out, "ATTR \"%s\" = \"%s\"\n\n", set->value.attrs[i]->name, set->value.attrs[i]->value);
8501 break;
8502 }
8503 }
8504 break;
8505 }
8506}
8507
8508#endif
8509
8510LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008511lyxp_set_cast(struct lyxp_set *set, enum lyxp_set_type target)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008512{
8513 long double num;
8514 char *str;
8515 LY_ERR rc;
8516
8517 if (!set || (set->type == target)) {
8518 return LY_SUCCESS;
8519 }
8520
8521 /* it's not possible to convert anything into a node set */
Michal Vaskod3678892020-05-21 10:06:58 +02008522 assert(target != LYXP_SET_NODE_SET);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008523
8524 if (set->type == LYXP_SET_SCNODE_SET) {
Michal Vaskod3678892020-05-21 10:06:58 +02008525 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008526 return LY_EINVAL;
8527 }
8528
8529 /* to STRING */
Michal Vaskod3678892020-05-21 10:06:58 +02008530 if ((target == LYXP_SET_STRING) || ((target == LYXP_SET_NUMBER) && (set->type == LYXP_SET_NODE_SET))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008531 switch (set->type) {
8532 case LYXP_SET_NUMBER:
8533 if (isnan(set->val.num)) {
8534 set->val.str = strdup("NaN");
8535 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
8536 } else if ((set->val.num == 0) || (set->val.num == -0.0f)) {
8537 set->val.str = strdup("0");
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 (isinf(set->val.num) && signbit(set->val.num)) {
8543 set->val.str = strdup("-Infinity");
8544 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
8545 } else if ((long long)set->val.num == set->val.num) {
8546 if (asprintf(&str, "%lld", (long long)set->val.num) == -1) {
8547 LOGMEM_RET(set->ctx);
8548 }
8549 set->val.str = str;
8550 } else {
8551 if (asprintf(&str, "%03.1Lf", set->val.num) == -1) {
8552 LOGMEM_RET(set->ctx);
8553 }
8554 set->val.str = str;
8555 }
8556 break;
8557 case LYXP_SET_BOOLEAN:
Michal Vasko004d3152020-06-11 19:59:22 +02008558 if (set->val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008559 set->val.str = strdup("true");
8560 } else {
8561 set->val.str = strdup("false");
8562 }
8563 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), LY_EMEM);
8564 break;
8565 case LYXP_SET_NODE_SET:
8566 assert(set->used);
8567
8568 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008569 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02008570
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008571 rc = cast_node_set_to_string(set, &str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008572 LY_CHECK_RET(rc);
Michal Vaskod3678892020-05-21 10:06:58 +02008573 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008574 set->val.str = str;
8575 break;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008576 default:
8577 LOGINT_RET(set->ctx);
8578 }
8579 set->type = LYXP_SET_STRING;
8580 }
8581
8582 /* to NUMBER */
8583 if (target == LYXP_SET_NUMBER) {
8584 switch (set->type) {
8585 case LYXP_SET_STRING:
8586 num = cast_string_to_number(set->val.str);
Michal Vaskod3678892020-05-21 10:06:58 +02008587 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008588 set->val.num = num;
8589 break;
8590 case LYXP_SET_BOOLEAN:
Michal Vasko004d3152020-06-11 19:59:22 +02008591 if (set->val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008592 set->val.num = 1;
8593 } else {
8594 set->val.num = 0;
8595 }
8596 break;
8597 default:
8598 LOGINT_RET(set->ctx);
8599 }
8600 set->type = LYXP_SET_NUMBER;
8601 }
8602
8603 /* to BOOLEAN */
8604 if (target == LYXP_SET_BOOLEAN) {
8605 switch (set->type) {
8606 case LYXP_SET_NUMBER:
8607 if ((set->val.num == 0) || (set->val.num == -0.0f) || isnan(set->val.num)) {
Michal Vasko004d3152020-06-11 19:59:22 +02008608 set->val.bln = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008609 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02008610 set->val.bln = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008611 }
8612 break;
8613 case LYXP_SET_STRING:
8614 if (set->val.str[0]) {
Michal Vaskod3678892020-05-21 10:06:58 +02008615 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02008616 set->val.bln = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008617 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02008618 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02008619 set->val.bln = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008620 }
8621 break;
8622 case LYXP_SET_NODE_SET:
Michal Vaskod3678892020-05-21 10:06:58 +02008623 if (set->used) {
8624 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02008625 set->val.bln = 1;
Michal Vaskod3678892020-05-21 10:06:58 +02008626 } else {
8627 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02008628 set->val.bln = 0;
Michal Vaskod3678892020-05-21 10:06:58 +02008629 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02008630 break;
8631 default:
8632 LOGINT_RET(set->ctx);
8633 }
8634 set->type = LYXP_SET_BOOLEAN;
8635 }
8636
Michal Vasko03ff5a72019-09-11 13:49:33 +02008637 return LY_SUCCESS;
8638}
8639
8640LY_ERR
8641lyxp_atomize(struct lyxp_expr *exp, LYD_FORMAT format, const struct lys_module *local_mod, const struct lysc_node *ctx_scnode,
8642 enum lyxp_node_type ctx_scnode_type, struct lyxp_set *set, int options)
8643{
8644 struct ly_ctx *ctx;
Michal Vasko004d3152020-06-11 19:59:22 +02008645 const struct lysc_node *real_ctx_scnode;
8646 uint16_t tok_idx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008647
Michal Vasko004d3152020-06-11 19:59:22 +02008648 LY_CHECK_ARG_RET(NULL, exp, local_mod, ctx_scnode, set, LY_EINVAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008649
8650 ctx = local_mod->ctx;
Michal Vasko004d3152020-06-11 19:59:22 +02008651 if ((ctx_scnode_type == LYXP_NODE_ROOT) || (ctx_scnode_type == LYXP_NODE_ROOT_CONFIG)) {
8652 /* we always need some context node because it is used for resolving unqualified names */
8653 real_ctx_scnode = NULL;
8654 } else {
8655 real_ctx_scnode = ctx_scnode;
8656 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02008657
8658 /* prepare set for evaluation */
Michal Vasko004d3152020-06-11 19:59:22 +02008659 tok_idx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008660 memset(set, 0, sizeof *set);
8661 set->type = LYXP_SET_SCNODE_SET;
Michal Vasko004d3152020-06-11 19:59:22 +02008662 lyxp_set_scnode_insert_node(set, real_ctx_scnode, ctx_scnode_type);
Michal Vasko5c4e5892019-11-14 12:31:38 +01008663 set->val.scnodes[0].in_ctx = -2;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008664 set->ctx = ctx;
8665 set->ctx_scnode = ctx_scnode;
Michal Vasko004d3152020-06-11 19:59:22 +02008666 set->root_type = lyxp_get_root_type(NULL, real_ctx_scnode, options);
Michal Vasko6b26e742020-07-17 15:02:10 +02008667 for (set->context_op = ctx_scnode;
8668 set->context_op && !(set->context_op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF));
8669 set->context_op = set->context_op->parent);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008670 set->local_mod = local_mod;
8671 set->format = format;
8672
8673 /* evaluate */
Michal Vasko004d3152020-06-11 19:59:22 +02008674 return eval_expr_select(exp, &tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008675}
Michal Vaskod43d71a2020-08-07 14:54:58 +02008676
8677API const char *
8678lyxp_get_expr(const struct lyxp_expr *path)
8679{
8680 if (!path) {
8681 return NULL;
8682 }
8683
8684 return path->expr;
8685}