blob: be4d59c632e607f90c23b8e6b4a8019197c8fdfc [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);
Radek Krejci1deb5be2020-08-26 16:43:36 +020047static LY_ERR eval_expr_select(struct lyxp_expr *exp, uint16_t *tok_idx, enum lyxp_expr_type etype, struct lyxp_set *set, uint32_t 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;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200168 struct lyxp_set_node *item;
169 struct lyxp_set_scnode *sitem;
170
171 if (ly_log_level < LY_LLDBG) {
172 return;
173 }
174
175 switch (set->type) {
176 case LYXP_SET_NODE_SET:
177 LOGDBG(LY_LDGXPATH, "set NODE SET:");
178 for (i = 0; i < set->used; ++i) {
179 item = &set->val.nodes[i];
180
181 switch (item->type) {
Michal Vasko2caefc12019-11-14 16:07:56 +0100182 case LYXP_NODE_NONE:
183 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): NONE", i + 1, item->pos);
184 break;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200185 case LYXP_NODE_ROOT:
186 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ROOT", i + 1, item->pos);
187 break;
188 case LYXP_NODE_ROOT_CONFIG:
189 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ROOT CONFIG", i + 1, item->pos);
190 break;
191 case LYXP_NODE_ELEM:
192 if ((item->node->schema->nodetype == LYS_LIST)
193 && (((struct lyd_node_inner *)item->node)->child->schema->nodetype == LYS_LEAF)) {
194 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ELEM %s (1st child val: %s)", i + 1, item->pos,
Radek Krejcia1c1e542020-09-29 16:06:52 +0200195 item->node->schema->name, LYD_CANON_VALUE(lyd_child(item->node)));
Michal Vasko03ff5a72019-09-11 13:49:33 +0200196 } else if (((struct lyd_node_inner *)item->node)->schema->nodetype == LYS_LEAFLIST) {
197 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ELEM %s (val: %s)", i + 1, item->pos,
Michal Vaskob7be7a82020-08-20 09:09:04 +0200198 item->node->schema->name, LYD_CANON_VALUE(item->node));
Michal Vasko03ff5a72019-09-11 13:49:33 +0200199 } else {
200 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ELEM %s", i + 1, item->pos, item->node->schema->name);
201 }
202 break;
203 case LYXP_NODE_TEXT:
204 if (item->node->schema->nodetype & LYS_ANYDATA) {
205 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): TEXT <%s>", i + 1, item->pos,
206 item->node->schema->nodetype == LYS_ANYXML ? "anyxml" : "anydata");
207 } else {
Michal Vaskob7be7a82020-08-20 09:09:04 +0200208 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): TEXT %s", i + 1, item->pos, LYD_CANON_VALUE(item->node));
Michal Vasko03ff5a72019-09-11 13:49:33 +0200209 }
210 break;
Michal Vasko9f96a052020-03-10 09:41:45 +0100211 case LYXP_NODE_META:
212 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): META %s = %s", i + 1, item->pos, set->val.meta[i].meta->name,
213 set->val.meta[i].meta->value);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200214 break;
215 }
216 }
217 break;
218
219 case LYXP_SET_SCNODE_SET:
220 LOGDBG(LY_LDGXPATH, "set SCNODE SET:");
221 for (i = 0; i < set->used; ++i) {
222 sitem = &set->val.scnodes[i];
223
224 switch (sitem->type) {
225 case LYXP_NODE_ROOT:
226 LOGDBG(LY_LDGXPATH, "\t%d (%u): ROOT", i + 1, sitem->in_ctx);
227 break;
228 case LYXP_NODE_ROOT_CONFIG:
229 LOGDBG(LY_LDGXPATH, "\t%d (%u): ROOT CONFIG", i + 1, sitem->in_ctx);
230 break;
231 case LYXP_NODE_ELEM:
232 LOGDBG(LY_LDGXPATH, "\t%d (%u): ELEM %s", i + 1, sitem->in_ctx, sitem->scnode->name);
233 break;
234 default:
235 LOGINT(NULL);
236 break;
237 }
238 }
239 break;
240
Michal Vasko03ff5a72019-09-11 13:49:33 +0200241 case LYXP_SET_BOOLEAN:
242 LOGDBG(LY_LDGXPATH, "set BOOLEAN");
Michal Vasko004d3152020-06-11 19:59:22 +0200243 LOGDBG(LY_LDGXPATH, "\t%s", (set->val.bln ? "true" : "false"));
Michal Vasko03ff5a72019-09-11 13:49:33 +0200244 break;
245
246 case LYXP_SET_STRING:
247 LOGDBG(LY_LDGXPATH, "set STRING");
248 LOGDBG(LY_LDGXPATH, "\t%s", set->val.str);
249 break;
250
251 case LYXP_SET_NUMBER:
252 LOGDBG(LY_LDGXPATH, "set NUMBER");
253
254 if (isnan(set->val.num)) {
255 str = strdup("NaN");
256 } else if ((set->val.num == 0) || (set->val.num == -0.0f)) {
257 str = strdup("0");
258 } else if (isinf(set->val.num) && !signbit(set->val.num)) {
259 str = strdup("Infinity");
260 } else if (isinf(set->val.num) && signbit(set->val.num)) {
261 str = strdup("-Infinity");
262 } else if ((long long)set->val.num == set->val.num) {
263 if (asprintf(&str, "%lld", (long long)set->val.num) == -1) {
264 str = NULL;
265 }
266 } else {
267 if (asprintf(&str, "%03.1Lf", set->val.num) == -1) {
268 str = NULL;
269 }
270 }
271 LY_CHECK_ERR_RET(!str, LOGMEM(NULL), );
272
273 LOGDBG(LY_LDGXPATH, "\t%s", str);
274 free(str);
275 }
276}
277
278#endif
279
280/**
281 * @brief Realloc the string \p str.
282 *
283 * @param[in] ctx libyang context for logging.
284 * @param[in] needed How much free space is required.
285 * @param[in,out] str Pointer to the string to use.
286 * @param[in,out] used Used bytes in \p str.
287 * @param[in,out] size Allocated bytes in \p str.
288 * @return LY_ERR
289 */
290static LY_ERR
Michal Vasko52927e22020-03-16 17:26:14 +0100291cast_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 +0200292{
293 if (*size - *used < needed) {
294 do {
295 if ((UINT16_MAX - *size) < LYXP_STRING_CAST_SIZE_STEP) {
296 LOGERR(ctx, LY_EINVAL, "XPath string length limit (%u) reached.", UINT16_MAX);
297 return LY_EINVAL;
298 }
299 *size += LYXP_STRING_CAST_SIZE_STEP;
300 } while (*size - *used < needed);
301 *str = ly_realloc(*str, *size * sizeof(char));
302 LY_CHECK_ERR_RET(!(*str), LOGMEM(ctx), LY_EMEM);
303 }
304
305 return LY_SUCCESS;
306}
307
308/**
309 * @brief Cast nodes recursively to one string @p str.
310 *
311 * @param[in] node Node to cast.
312 * @param[in] fake_cont Whether to put the data into a "fake" container.
313 * @param[in] root_type Type of the XPath root.
314 * @param[in] indent Current indent.
315 * @param[in,out] str Resulting string.
316 * @param[in,out] used Used bytes in @p str.
317 * @param[in,out] size Allocated bytes in @p str.
318 * @return LY_ERR
319 */
320static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +0200321cast_string_recursive(const struct lyd_node *node, ly_bool fake_cont, enum lyxp_node_type root_type, uint16_t indent, char **str,
Radek Krejci0f969882020-08-21 16:56:47 +0200322 uint16_t *used, uint16_t *size)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200323{
Radek Krejci7f769d72020-07-11 23:13:56 +0200324 char *buf, *line, *ptr = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200325 const char *value_str;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200326 const struct lyd_node *child;
Michal Vasko60ea6352020-06-29 13:39:39 +0200327 struct lyd_node *tree;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200328 struct lyd_node_any *any;
329 LY_ERR rc;
330
331 if ((root_type == LYXP_NODE_ROOT_CONFIG) && (node->schema->flags & LYS_CONFIG_R)) {
332 return LY_SUCCESS;
333 }
334
335 if (fake_cont) {
Michal Vaskob7be7a82020-08-20 09:09:04 +0200336 rc = cast_string_realloc(LYD_CTX(node), 1, str, used, size);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200337 LY_CHECK_RET(rc);
338 strcpy(*str + (*used - 1), "\n");
339 ++(*used);
340
341 ++indent;
342 }
343
344 switch (node->schema->nodetype) {
345 case LYS_CONTAINER:
346 case LYS_LIST:
347 case LYS_RPC:
348 case LYS_NOTIF:
Michal Vaskob7be7a82020-08-20 09:09:04 +0200349 rc = cast_string_realloc(LYD_CTX(node), 1, str, used, size);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200350 LY_CHECK_RET(rc);
351 strcpy(*str + (*used - 1), "\n");
352 ++(*used);
353
Radek Krejcia1c1e542020-09-29 16:06:52 +0200354 for (child = lyd_child(node); child; child = child->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200355 rc = cast_string_recursive(child, 0, root_type, indent + 1, str, used, size);
356 LY_CHECK_RET(rc);
357 }
358
359 break;
360
361 case LYS_LEAF:
362 case LYS_LEAFLIST:
Michal Vaskob7be7a82020-08-20 09:09:04 +0200363 value_str = LYD_CANON_VALUE(node);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200364
365 /* print indent */
Michal Vaskob7be7a82020-08-20 09:09:04 +0200366 LY_CHECK_RET(cast_string_realloc(LYD_CTX(node), indent * 2 + strlen(value_str) + 1, str, used, size));
Michal Vasko03ff5a72019-09-11 13:49:33 +0200367 memset(*str + (*used - 1), ' ', indent * 2);
368 *used += indent * 2;
369
370 /* print value */
371 if (*used == 1) {
372 sprintf(*str + (*used - 1), "%s", value_str);
373 *used += strlen(value_str);
374 } else {
375 sprintf(*str + (*used - 1), "%s\n", value_str);
376 *used += strlen(value_str) + 1;
377 }
Michal Vasko03ff5a72019-09-11 13:49:33 +0200378
379 break;
380
381 case LYS_ANYXML:
382 case LYS_ANYDATA:
383 any = (struct lyd_node_any *)node;
384 if (!(void *)any->value.tree) {
385 /* no content */
386 buf = strdup("");
Michal Vaskob7be7a82020-08-20 09:09:04 +0200387 LY_CHECK_ERR_RET(!buf, LOGMEM(LYD_CTX(node)), LY_EMEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200388 } else {
Radek Krejci241f6b52020-05-21 18:13:49 +0200389 struct ly_out *out;
Radek Krejcia5bba312020-01-09 15:41:20 +0100390
Michal Vasko60ea6352020-06-29 13:39:39 +0200391 if (any->value_type == LYD_ANYDATA_LYB) {
392 /* try to parse it into a data tree */
Michal Vaskob7be7a82020-08-20 09:09:04 +0200393 if (lyd_parse_data_mem((struct ly_ctx *)LYD_CTX(node), any->value.mem, LYD_LYB, LYD_PARSE_ONLY | LYD_PARSE_STRICT, 0, &tree) == LY_SUCCESS) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200394 /* successfully parsed */
395 free(any->value.mem);
396 any->value.tree = tree;
397 any->value_type = LYD_ANYDATA_DATATREE;
398 }
Radek Krejci7931b192020-06-25 17:05:03 +0200399 /* error is covered by the following switch where LYD_ANYDATA_LYB causes failure */
Michal Vasko60ea6352020-06-29 13:39:39 +0200400 }
401
Michal Vasko03ff5a72019-09-11 13:49:33 +0200402 switch (any->value_type) {
403 case LYD_ANYDATA_STRING:
404 case LYD_ANYDATA_XML:
405 case LYD_ANYDATA_JSON:
406 buf = strdup(any->value.json);
Michal Vaskob7be7a82020-08-20 09:09:04 +0200407 LY_CHECK_ERR_RET(!buf, LOGMEM(LYD_CTX(node)), LY_EMEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200408 break;
409 case LYD_ANYDATA_DATATREE:
Radek Krejci84ce7b12020-06-11 17:28:25 +0200410 LY_CHECK_RET(ly_out_new_memory(&buf, 0, &out));
Michal Vasko3a41dff2020-07-15 14:30:28 +0200411 rc = lyd_print_all(out, any->value.tree, LYD_XML, 0);
Radek Krejci241f6b52020-05-21 18:13:49 +0200412 ly_out_free(out, NULL, 0);
Radek Krejcia5bba312020-01-09 15:41:20 +0100413 LY_CHECK_RET(rc < 0, -rc);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200414 break;
Michal Vasko60ea6352020-06-29 13:39:39 +0200415 case LYD_ANYDATA_LYB:
Michal Vaskob7be7a82020-08-20 09:09:04 +0200416 LOGERR(LYD_CTX(node), LY_EINVAL, "Cannot convert LYB anydata into string.");
Michal Vasko60ea6352020-06-29 13:39:39 +0200417 return LY_EINVAL;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200418 }
419 }
420
421 line = strtok_r(buf, "\n", &ptr);
422 do {
Michal Vaskob7be7a82020-08-20 09:09:04 +0200423 rc = cast_string_realloc(LYD_CTX(node), indent * 2 + strlen(line) + 1, str, used, size);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200424 if (rc != LY_SUCCESS) {
425 free(buf);
426 return rc;
427 }
428 memset(*str + (*used - 1), ' ', indent * 2);
429 *used += indent * 2;
430
431 strcpy(*str + (*used - 1), line);
432 *used += strlen(line);
433
434 strcpy(*str + (*used - 1), "\n");
435 *used += 1;
436 } while ((line = strtok_r(NULL, "\n", &ptr)));
437
438 free(buf);
439 break;
440
441 default:
Michal Vaskob7be7a82020-08-20 09:09:04 +0200442 LOGINT_RET(LYD_CTX(node));
Michal Vasko03ff5a72019-09-11 13:49:33 +0200443 }
444
445 if (fake_cont) {
Michal Vaskob7be7a82020-08-20 09:09:04 +0200446 rc = cast_string_realloc(LYD_CTX(node), 1, str, used, size);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200447 LY_CHECK_RET(rc);
448 strcpy(*str + (*used - 1), "\n");
449 ++(*used);
450
451 --indent;
452 }
453
454 return LY_SUCCESS;
455}
456
457/**
458 * @brief Cast an element into a string.
459 *
460 * @param[in] node Node to cast.
461 * @param[in] fake_cont Whether to put the data into a "fake" container.
462 * @param[in] root_type Type of the XPath root.
463 * @param[out] str Element cast to dynamically-allocated string.
464 * @return LY_ERR
465 */
466static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +0200467cast_string_elem(struct lyd_node *node, ly_bool fake_cont, enum lyxp_node_type root_type, char **str)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200468{
469 uint16_t used, size;
470 LY_ERR rc;
471
472 *str = malloc(LYXP_STRING_CAST_SIZE_START * sizeof(char));
Michal Vaskob7be7a82020-08-20 09:09:04 +0200473 LY_CHECK_ERR_RET(!*str, LOGMEM(LYD_CTX(node)), LY_EMEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200474 (*str)[0] = '\0';
475 used = 1;
476 size = LYXP_STRING_CAST_SIZE_START;
477
478 rc = cast_string_recursive(node, fake_cont, root_type, 0, str, &used, &size);
479 if (rc != LY_SUCCESS) {
480 free(*str);
481 return rc;
482 }
483
484 if (size > used) {
485 *str = ly_realloc(*str, used * sizeof(char));
Michal Vaskob7be7a82020-08-20 09:09:04 +0200486 LY_CHECK_ERR_RET(!*str, LOGMEM(LYD_CTX(node)), LY_EMEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200487 }
488 return LY_SUCCESS;
489}
490
491/**
492 * @brief Cast a LYXP_SET_NODE_SET set into a string.
493 * Context position aware.
494 *
495 * @param[in] set Set to cast.
Michal Vasko03ff5a72019-09-11 13:49:33 +0200496 * @param[out] str Cast dynamically-allocated string.
497 * @return LY_ERR
498 */
499static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +0100500cast_node_set_to_string(struct lyxp_set *set, char **str)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200501{
Michal Vasko03ff5a72019-09-11 13:49:33 +0200502 switch (set->val.nodes[0].type) {
Michal Vasko2caefc12019-11-14 16:07:56 +0100503 case LYXP_NODE_NONE:
504 /* invalid */
505 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200506 case LYXP_NODE_ROOT:
507 case LYXP_NODE_ROOT_CONFIG:
Michal Vasko5e0e6eb2019-11-06 15:47:50 +0100508 return cast_string_elem(set->val.nodes[0].node, 1, set->root_type, str);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200509 case LYXP_NODE_ELEM:
510 case LYXP_NODE_TEXT:
Michal Vasko5e0e6eb2019-11-06 15:47:50 +0100511 return cast_string_elem(set->val.nodes[0].node, 0, set->root_type, str);
Michal Vasko9f96a052020-03-10 09:41:45 +0100512 case LYXP_NODE_META:
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200513 *str = strdup(set->val.meta[0].meta->value.canonical);
514 if (!*str) {
515 LOGMEM_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200516 }
517 return LY_SUCCESS;
518 }
519
520 LOGINT_RET(set->ctx);
521}
522
523/**
524 * @brief Cast a string into an XPath number.
525 *
526 * @param[in] str String to use.
527 * @return Cast number.
528 */
529static long double
530cast_string_to_number(const char *str)
531{
532 long double num;
533 char *ptr;
534
535 errno = 0;
536 num = strtold(str, &ptr);
537 if (errno || *ptr) {
538 num = NAN;
539 }
540 return num;
541}
542
543/**
544 * @brief Callback for checking value equality.
545 *
Radek Krejci857189e2020-09-01 13:26:36 +0200546 * Implementation of ::values_equal_cb.
547 *
Michal Vasko03ff5a72019-09-11 13:49:33 +0200548 * @param[in] val1_p First value.
549 * @param[in] val2_p Second value.
550 * @param[in] mod Whether hash table is being modified.
551 * @param[in] cb_data Callback data.
Radek Krejci857189e2020-09-01 13:26:36 +0200552 * @return Boolean value whether values are equal or not.
Michal Vasko03ff5a72019-09-11 13:49:33 +0200553 */
Radek Krejci857189e2020-09-01 13:26:36 +0200554static ly_bool
555set_values_equal_cb(void *val1_p, void *val2_p, ly_bool UNUSED(mod), void *UNUSED(cb_data))
Michal Vasko03ff5a72019-09-11 13:49:33 +0200556{
557 struct lyxp_set_hash_node *val1, *val2;
558
559 val1 = (struct lyxp_set_hash_node *)val1_p;
560 val2 = (struct lyxp_set_hash_node *)val2_p;
561
562 if ((val1->node == val2->node) && (val1->type == val2->type)) {
563 return 1;
564 }
565
566 return 0;
567}
568
569/**
570 * @brief Insert node and its hash into set.
571 *
572 * @param[in] set et to insert to.
573 * @param[in] node Node with hash.
574 * @param[in] type Node type.
575 */
576static void
577set_insert_node_hash(struct lyxp_set *set, struct lyd_node *node, enum lyxp_node_type type)
578{
Radek Krejci1deb5be2020-08-26 16:43:36 +0200579 LY_ERR r;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200580 uint32_t i, hash;
581 struct lyxp_set_hash_node hnode;
582
583 if (!set->ht && (set->used >= LYD_HT_MIN_ITEMS)) {
584 /* create hash table and add all the nodes */
585 set->ht = lyht_new(1, sizeof(struct lyxp_set_hash_node), set_values_equal_cb, NULL, 1);
586 for (i = 0; i < set->used; ++i) {
587 hnode.node = set->val.nodes[i].node;
588 hnode.type = set->val.nodes[i].type;
589
590 hash = dict_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node);
591 hash = dict_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type);
592 hash = dict_hash_multi(hash, NULL, 0);
593
594 r = lyht_insert(set->ht, &hnode, hash, NULL);
595 assert(!r);
596 (void)r;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200597
Michal Vasko9d6befd2019-12-11 14:56:56 +0100598 if (hnode.node == node) {
599 /* it was just added, do not add it twice */
600 node = NULL;
601 }
602 }
603 }
604
605 if (set->ht && node) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200606 /* add the new node into hash table */
607 hnode.node = node;
608 hnode.type = type;
609
610 hash = dict_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node);
611 hash = dict_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type);
612 hash = dict_hash_multi(hash, NULL, 0);
613
614 r = lyht_insert(set->ht, &hnode, hash, NULL);
615 assert(!r);
616 (void)r;
617 }
618}
619
620/**
621 * @brief Remove node and its hash from set.
622 *
623 * @param[in] set Set to remove from.
624 * @param[in] node Node to remove.
625 * @param[in] type Node type.
626 */
627static void
628set_remove_node_hash(struct lyxp_set *set, struct lyd_node *node, enum lyxp_node_type type)
629{
Radek Krejci1deb5be2020-08-26 16:43:36 +0200630 LY_ERR r;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200631 struct lyxp_set_hash_node hnode;
632 uint32_t hash;
633
634 if (set->ht) {
635 hnode.node = node;
636 hnode.type = type;
637
638 hash = dict_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node);
639 hash = dict_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type);
640 hash = dict_hash_multi(hash, NULL, 0);
641
642 r = lyht_remove(set->ht, &hnode, hash);
643 assert(!r);
644 (void)r;
645
646 if (!set->ht->used) {
647 lyht_free(set->ht);
648 set->ht = NULL;
649 }
650 }
651}
652
653/**
654 * @brief Check whether node is in set based on its hash.
655 *
656 * @param[in] set Set to search in.
657 * @param[in] node Node to search for.
658 * @param[in] type Node type.
659 * @param[in] skip_idx Index in @p set to skip.
660 * @return LY_ERR
661 */
662static LY_ERR
663set_dup_node_hash_check(const struct lyxp_set *set, struct lyd_node *node, enum lyxp_node_type type, int skip_idx)
664{
665 struct lyxp_set_hash_node hnode, *match_p;
666 uint32_t hash;
667
668 hnode.node = node;
669 hnode.type = type;
670
671 hash = dict_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node);
672 hash = dict_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type);
673 hash = dict_hash_multi(hash, NULL, 0);
674
675 if (!lyht_find(set->ht, &hnode, hash, (void **)&match_p)) {
676 if ((skip_idx > -1) && (set->val.nodes[skip_idx].node == match_p->node) && (set->val.nodes[skip_idx].type == match_p->type)) {
677 /* we found it on the index that should be skipped, find another */
678 hnode = *match_p;
679 if (lyht_find_next(set->ht, &hnode, hash, (void **)&match_p)) {
680 /* none other found */
681 return LY_SUCCESS;
682 }
683 }
684
685 return LY_EEXIST;
686 }
687
688 /* not found */
689 return LY_SUCCESS;
690}
691
Michal Vaskod3678892020-05-21 10:06:58 +0200692void
693lyxp_set_free_content(struct lyxp_set *set)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200694{
695 if (!set) {
696 return;
697 }
698
699 if (set->type == LYXP_SET_NODE_SET) {
700 free(set->val.nodes);
701 lyht_free(set->ht);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200702 } else if (set->type == LYXP_SET_SCNODE_SET) {
703 free(set->val.scnodes);
Michal Vaskod3678892020-05-21 10:06:58 +0200704 lyht_free(set->ht);
705 } else {
706 if (set->type == LYXP_SET_STRING) {
707 free(set->val.str);
708 }
709 set->type = LYXP_SET_NODE_SET;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200710 }
Michal Vaskod3678892020-05-21 10:06:58 +0200711
712 set->val.nodes = NULL;
713 set->used = 0;
714 set->size = 0;
715 set->ht = NULL;
716 set->ctx_pos = 0;
717 set->ctx_pos = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200718}
719
Michal Vasko5e0e6eb2019-11-06 15:47:50 +0100720/**
721 * @brief Free dynamically-allocated set.
722 *
723 * @param[in] set Set to free.
724 */
725static void
Michal Vasko03ff5a72019-09-11 13:49:33 +0200726lyxp_set_free(struct lyxp_set *set)
727{
728 if (!set) {
729 return;
730 }
731
Michal Vaskod3678892020-05-21 10:06:58 +0200732 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200733 free(set);
734}
735
736/**
737 * @brief Initialize set context.
738 *
739 * @param[in] new Set to initialize.
740 * @param[in] set Arbitrary initialized set.
741 */
742static void
Michal Vasko4c7763f2020-07-27 17:40:37 +0200743set_init(struct lyxp_set *new, const struct lyxp_set *set)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200744{
745 memset(new, 0, sizeof *new);
Michal Vasko02a77382019-09-12 11:47:35 +0200746 if (set) {
747 new->ctx = set->ctx;
748 new->ctx_node = set->ctx_node;
Michal Vasko588112f2019-12-10 14:51:53 +0100749 new->root_type = set->root_type;
Michal Vasko6b26e742020-07-17 15:02:10 +0200750 new->context_op = set->context_op;
Michal Vasko02a77382019-09-12 11:47:35 +0200751 new->local_mod = set->local_mod;
Michal Vaskof03ed032020-03-04 13:31:44 +0100752 new->tree = set->tree;
Michal Vasko02a77382019-09-12 11:47:35 +0200753 new->format = set->format;
754 }
Michal Vasko03ff5a72019-09-11 13:49:33 +0200755}
756
757/**
758 * @brief Create a deep copy of a set.
759 *
760 * @param[in] set Set to copy.
761 * @return Copy of @p set.
762 */
763static struct lyxp_set *
764set_copy(struct lyxp_set *set)
765{
766 struct lyxp_set *ret;
767 uint16_t i;
768
769 if (!set) {
770 return NULL;
771 }
772
773 ret = malloc(sizeof *ret);
774 LY_CHECK_ERR_RET(!ret, LOGMEM(set->ctx), NULL);
775 set_init(ret, set);
776
777 if (set->type == LYXP_SET_SCNODE_SET) {
778 ret->type = set->type;
779
780 for (i = 0; i < set->used; ++i) {
Michal Vaskoba716542019-12-16 10:01:58 +0100781 if ((set->val.scnodes[i].in_ctx == 1) || (set->val.scnodes[i].in_ctx == -2)) {
Radek Krejciaa6b53f2020-08-27 15:19:03 +0200782 uint32_t idx;
783 LY_CHECK_ERR_RET(lyxp_set_scnode_insert_node(ret, set->val.scnodes[i].scnode, set->val.scnodes[i].type, &idx),
784 lyxp_set_free(ret), NULL);
Michal Vasko3f27c522020-01-06 08:37:49 +0100785 /* coverity seems to think scnodes can be NULL */
Radek Krejciaa6b53f2020-08-27 15:19:03 +0200786 if (!ret->val.scnodes) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200787 lyxp_set_free(ret);
788 return NULL;
789 }
Michal Vaskoba716542019-12-16 10:01:58 +0100790 ret->val.scnodes[idx].in_ctx = set->val.scnodes[i].in_ctx;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200791 }
792 }
793 } else if (set->type == LYXP_SET_NODE_SET) {
794 ret->type = set->type;
795 ret->val.nodes = malloc(set->used * sizeof *ret->val.nodes);
796 LY_CHECK_ERR_RET(!ret->val.nodes, LOGMEM(set->ctx); free(ret), NULL);
797 memcpy(ret->val.nodes, set->val.nodes, set->used * sizeof *ret->val.nodes);
798
799 ret->used = ret->size = set->used;
800 ret->ctx_pos = set->ctx_pos;
801 ret->ctx_size = set->ctx_size;
802 ret->ht = lyht_dup(set->ht);
803 } else {
Radek Krejci0f969882020-08-21 16:56:47 +0200804 memcpy(ret, set, sizeof *ret);
805 if (set->type == LYXP_SET_STRING) {
806 ret->val.str = strdup(set->val.str);
807 LY_CHECK_ERR_RET(!ret->val.str, LOGMEM(set->ctx); free(ret), NULL);
808 }
Michal Vasko03ff5a72019-09-11 13:49:33 +0200809 }
810
811 return ret;
812}
813
814/**
815 * @brief Fill XPath set with a string. Any current data are disposed of.
816 *
817 * @param[in] set Set to fill.
818 * @param[in] string String to fill into \p set.
819 * @param[in] str_len Length of \p string. 0 is a valid value!
820 */
821static void
822set_fill_string(struct lyxp_set *set, const char *string, uint16_t str_len)
823{
Michal Vaskod3678892020-05-21 10:06:58 +0200824 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200825
826 set->type = LYXP_SET_STRING;
827 if ((str_len == 0) && (string[0] != '\0')) {
828 string = "";
829 }
830 set->val.str = strndup(string, str_len);
831}
832
833/**
834 * @brief Fill XPath set with a number. Any current data are disposed of.
835 *
836 * @param[in] set Set to fill.
837 * @param[in] number Number to fill into \p set.
838 */
839static void
840set_fill_number(struct lyxp_set *set, long double number)
841{
Michal Vaskod3678892020-05-21 10:06:58 +0200842 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200843
844 set->type = LYXP_SET_NUMBER;
845 set->val.num = number;
846}
847
848/**
849 * @brief Fill XPath set with a boolean. Any current data are disposed of.
850 *
851 * @param[in] set Set to fill.
852 * @param[in] boolean Boolean to fill into \p set.
853 */
854static void
Radek Krejci857189e2020-09-01 13:26:36 +0200855set_fill_boolean(struct lyxp_set *set, ly_bool boolean)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200856{
Michal Vaskod3678892020-05-21 10:06:58 +0200857 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200858
859 set->type = LYXP_SET_BOOLEAN;
Michal Vasko004d3152020-06-11 19:59:22 +0200860 set->val.bln = boolean;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200861}
862
863/**
864 * @brief Fill XPath set with the value from another set (deep assign).
865 * Any current data are disposed of.
866 *
867 * @param[in] trg Set to fill.
868 * @param[in] src Source set to copy into \p trg.
869 */
870static void
Michal Vasko4c7763f2020-07-27 17:40:37 +0200871set_fill_set(struct lyxp_set *trg, const struct lyxp_set *src)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200872{
873 if (!trg || !src) {
874 return;
875 }
876
877 if (trg->type == LYXP_SET_NODE_SET) {
878 free(trg->val.nodes);
879 } else if (trg->type == LYXP_SET_STRING) {
880 free(trg->val.str);
881 }
882 set_init(trg, src);
883
884 if (src->type == LYXP_SET_SCNODE_SET) {
885 trg->type = LYXP_SET_SCNODE_SET;
886 trg->used = src->used;
887 trg->size = src->used;
888
889 trg->val.scnodes = ly_realloc(trg->val.scnodes, trg->size * sizeof *trg->val.scnodes);
890 LY_CHECK_ERR_RET(!trg->val.scnodes, LOGMEM(src->ctx); memset(trg, 0, sizeof *trg), );
891 memcpy(trg->val.scnodes, src->val.scnodes, src->used * sizeof *src->val.scnodes);
892 } else if (src->type == LYXP_SET_BOOLEAN) {
Michal Vasko004d3152020-06-11 19:59:22 +0200893 set_fill_boolean(trg, src->val.bln);
Michal Vasko44f3d2c2020-08-24 09:49:38 +0200894 } else if (src->type == LYXP_SET_NUMBER) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200895 set_fill_number(trg, src->val.num);
896 } else if (src->type == LYXP_SET_STRING) {
897 set_fill_string(trg, src->val.str, strlen(src->val.str));
898 } else {
899 if (trg->type == LYXP_SET_NODE_SET) {
900 free(trg->val.nodes);
901 } else if (trg->type == LYXP_SET_STRING) {
902 free(trg->val.str);
903 }
904
Michal Vaskod3678892020-05-21 10:06:58 +0200905 assert(src->type == LYXP_SET_NODE_SET);
906
907 trg->type = LYXP_SET_NODE_SET;
908 trg->used = src->used;
909 trg->size = src->used;
910 trg->ctx_pos = src->ctx_pos;
911 trg->ctx_size = src->ctx_size;
912
913 trg->val.nodes = malloc(trg->used * sizeof *trg->val.nodes);
914 LY_CHECK_ERR_RET(!trg->val.nodes, LOGMEM(src->ctx); memset(trg, 0, sizeof *trg), );
915 memcpy(trg->val.nodes, src->val.nodes, src->used * sizeof *src->val.nodes);
916 if (src->ht) {
917 trg->ht = lyht_dup(src->ht);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200918 } else {
Michal Vaskod3678892020-05-21 10:06:58 +0200919 trg->ht = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200920 }
921 }
922}
923
924/**
925 * @brief Clear context of all schema nodes.
926 *
927 * @param[in] set Set to clear.
928 */
929static void
930set_scnode_clear_ctx(struct lyxp_set *set)
931{
932 uint32_t i;
933
934 for (i = 0; i < set->used; ++i) {
935 if (set->val.scnodes[i].in_ctx == 1) {
936 set->val.scnodes[i].in_ctx = 0;
Michal Vasko5c4e5892019-11-14 12:31:38 +0100937 } else if (set->val.scnodes[i].in_ctx == -2) {
938 set->val.scnodes[i].in_ctx = -1;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200939 }
940 }
941}
942
943/**
944 * @brief Remove a node from a set. Removing last node changes
945 * set into LYXP_SET_EMPTY. Context position aware.
946 *
947 * @param[in] set Set to use.
948 * @param[in] idx Index from @p set of the node to be removed.
949 */
950static void
951set_remove_node(struct lyxp_set *set, uint32_t idx)
952{
953 assert(set && (set->type == LYXP_SET_NODE_SET));
954 assert(idx < set->used);
955
956 set_remove_node_hash(set, set->val.nodes[idx].node, set->val.nodes[idx].type);
957
958 --set->used;
959 if (set->used) {
960 memmove(&set->val.nodes[idx], &set->val.nodes[idx + 1],
961 (set->used - idx) * sizeof *set->val.nodes);
962 } else {
Michal Vaskod3678892020-05-21 10:06:58 +0200963 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200964 }
965}
966
967/**
Michal Vasko2caefc12019-11-14 16:07:56 +0100968 * @brief Remove a node from a set by setting its type to LYXP_NODE_NONE.
Michal Vasko57eab132019-09-24 11:46:26 +0200969 *
970 * @param[in] set Set to use.
971 * @param[in] idx Index from @p set of the node to be removed.
972 */
973static void
Michal Vasko2caefc12019-11-14 16:07:56 +0100974set_remove_node_none(struct lyxp_set *set, uint32_t idx)
Michal Vasko57eab132019-09-24 11:46:26 +0200975{
976 assert(set && (set->type == LYXP_SET_NODE_SET));
977 assert(idx < set->used);
978
Michal Vasko2caefc12019-11-14 16:07:56 +0100979 if (set->val.nodes[idx].type == LYXP_NODE_ELEM) {
980 set_remove_node_hash(set, set->val.nodes[idx].node, set->val.nodes[idx].type);
981 }
982 set->val.nodes[idx].type = LYXP_NODE_NONE;
Michal Vasko57eab132019-09-24 11:46:26 +0200983}
984
985/**
Michal Vasko2caefc12019-11-14 16:07:56 +0100986 * @brief Remove all LYXP_NODE_NONE nodes from a set. Removing last node changes
Michal Vasko57eab132019-09-24 11:46:26 +0200987 * set into LYXP_SET_EMPTY. Context position aware.
988 *
989 * @param[in] set Set to consolidate.
990 */
991static void
Michal Vasko2caefc12019-11-14 16:07:56 +0100992set_remove_nodes_none(struct lyxp_set *set)
Michal Vasko57eab132019-09-24 11:46:26 +0200993{
Michal Vaskoed4fcfe2020-07-08 10:38:56 +0200994 uint16_t i, orig_used, end = 0;
Michal Vasko57eab132019-09-24 11:46:26 +0200995 int32_t start;
996
Michal Vaskod3678892020-05-21 10:06:58 +0200997 assert(set);
Michal Vasko57eab132019-09-24 11:46:26 +0200998
999 orig_used = set->used;
1000 set->used = 0;
Michal Vaskod989ba02020-08-24 10:59:24 +02001001 for (i = 0; i < orig_used; ) {
Michal Vasko57eab132019-09-24 11:46:26 +02001002 start = -1;
1003 do {
Michal Vasko2caefc12019-11-14 16:07:56 +01001004 if ((set->val.nodes[i].type != LYXP_NODE_NONE) && (start == -1)) {
Michal Vasko57eab132019-09-24 11:46:26 +02001005 start = i;
Michal Vasko2caefc12019-11-14 16:07:56 +01001006 } else if ((start > -1) && (set->val.nodes[i].type == LYXP_NODE_NONE)) {
Michal Vasko57eab132019-09-24 11:46:26 +02001007 end = i;
1008 ++i;
1009 break;
1010 }
1011
1012 ++i;
1013 if (i == orig_used) {
1014 end = i;
1015 }
1016 } while (i < orig_used);
1017
1018 if (start > -1) {
1019 /* move the whole chunk of valid nodes together */
1020 if (set->used != (unsigned)start) {
1021 memmove(&set->val.nodes[set->used], &set->val.nodes[start], (end - start) * sizeof *set->val.nodes);
1022 }
1023 set->used += end - start;
1024 }
1025 }
Michal Vasko57eab132019-09-24 11:46:26 +02001026}
1027
1028/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02001029 * @brief Check for duplicates in a node set.
1030 *
1031 * @param[in] set Set to check.
1032 * @param[in] node Node to look for in @p set.
1033 * @param[in] node_type Type of @p node.
1034 * @param[in] skip_idx Index from @p set to skip.
1035 * @return LY_ERR
1036 */
1037static LY_ERR
1038set_dup_node_check(const struct lyxp_set *set, const struct lyd_node *node, enum lyxp_node_type node_type, int skip_idx)
1039{
1040 uint32_t i;
1041
Michal Vasko2caefc12019-11-14 16:07:56 +01001042 if (set->ht && node) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001043 return set_dup_node_hash_check(set, (struct lyd_node *)node, node_type, skip_idx);
1044 }
1045
1046 for (i = 0; i < set->used; ++i) {
1047 if ((skip_idx > -1) && (i == (unsigned)skip_idx)) {
1048 continue;
1049 }
1050
1051 if ((set->val.nodes[i].node == node) && (set->val.nodes[i].type == node_type)) {
1052 return LY_EEXIST;
1053 }
1054 }
1055
1056 return LY_SUCCESS;
1057}
1058
Radek Krejci857189e2020-09-01 13:26:36 +02001059ly_bool
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001060lyxp_set_scnode_contains(struct lyxp_set *set, const struct lysc_node *node, enum lyxp_node_type node_type, int skip_idx,
1061 uint32_t *index_p)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001062{
1063 uint32_t i;
1064
1065 for (i = 0; i < set->used; ++i) {
1066 if ((skip_idx > -1) && (i == (unsigned)skip_idx)) {
1067 continue;
1068 }
1069
1070 if ((set->val.scnodes[i].scnode == node) && (set->val.scnodes[i].type == node_type)) {
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001071 if (index_p) {
1072 *index_p = i;
1073 }
1074 return 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001075 }
1076 }
1077
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001078 return 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001079}
1080
Michal Vaskoecd62de2019-11-13 12:35:11 +01001081void
1082lyxp_set_scnode_merge(struct lyxp_set *set1, struct lyxp_set *set2)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001083{
1084 uint32_t orig_used, i, j;
1085
Michal Vaskod3678892020-05-21 10:06:58 +02001086 assert((set1->type == LYXP_SET_SCNODE_SET) && (set2->type == LYXP_SET_SCNODE_SET));
Michal Vasko03ff5a72019-09-11 13:49:33 +02001087
Michal Vaskod3678892020-05-21 10:06:58 +02001088 if (!set2->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001089 return;
1090 }
1091
Michal Vaskod3678892020-05-21 10:06:58 +02001092 if (!set1->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001093 memcpy(set1, set2, sizeof *set1);
1094 return;
1095 }
1096
1097 if (set1->used + set2->used > set1->size) {
1098 set1->size = set1->used + set2->used;
1099 set1->val.scnodes = ly_realloc(set1->val.scnodes, set1->size * sizeof *set1->val.scnodes);
1100 LY_CHECK_ERR_RET(!set1->val.scnodes, LOGMEM(set1->ctx), );
1101 }
1102
1103 orig_used = set1->used;
1104
1105 for (i = 0; i < set2->used; ++i) {
1106 for (j = 0; j < orig_used; ++j) {
1107 /* detect duplicities */
1108 if (set1->val.scnodes[j].scnode == set2->val.scnodes[i].scnode) {
1109 break;
1110 }
1111 }
1112
1113 if (j == orig_used) {
1114 memcpy(&set1->val.scnodes[set1->used], &set2->val.scnodes[i], sizeof *set2->val.scnodes);
1115 ++set1->used;
1116 }
1117 }
1118
Michal Vaskod3678892020-05-21 10:06:58 +02001119 lyxp_set_free_content(set2);
1120 set2->type = LYXP_SET_SCNODE_SET;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001121}
1122
1123/**
1124 * @brief Insert a node into a set. Context position aware.
1125 *
1126 * @param[in] set Set to use.
1127 * @param[in] node Node to insert to @p set.
1128 * @param[in] pos Sort position of @p node. If left 0, it is filled just before sorting.
1129 * @param[in] node_type Node type of @p node.
1130 * @param[in] idx Index in @p set to insert into.
1131 */
1132static void
1133set_insert_node(struct lyxp_set *set, const struct lyd_node *node, uint32_t pos, enum lyxp_node_type node_type, uint32_t idx)
1134{
Michal Vaskod3678892020-05-21 10:06:58 +02001135 assert(set && (set->type == LYXP_SET_NODE_SET));
Michal Vasko03ff5a72019-09-11 13:49:33 +02001136
Michal Vaskod3678892020-05-21 10:06:58 +02001137 if (!set->size) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001138 /* first item */
1139 if (idx) {
1140 /* no real harm done, but it is a bug */
1141 LOGINT(set->ctx);
1142 idx = 0;
1143 }
1144 set->val.nodes = malloc(LYXP_SET_SIZE_START * sizeof *set->val.nodes);
1145 LY_CHECK_ERR_RET(!set->val.nodes, LOGMEM(set->ctx), );
1146 set->type = LYXP_SET_NODE_SET;
1147 set->used = 0;
1148 set->size = LYXP_SET_SIZE_START;
1149 set->ctx_pos = 1;
1150 set->ctx_size = 1;
1151 set->ht = NULL;
1152 } else {
1153 /* not an empty set */
1154 if (set->used == set->size) {
1155
1156 /* set is full */
1157 set->val.nodes = ly_realloc(set->val.nodes, (set->size + LYXP_SET_SIZE_STEP) * sizeof *set->val.nodes);
1158 LY_CHECK_ERR_RET(!set->val.nodes, LOGMEM(set->ctx), );
1159 set->size += LYXP_SET_SIZE_STEP;
1160 }
1161
1162 if (idx > set->used) {
1163 LOGINT(set->ctx);
1164 idx = set->used;
1165 }
1166
1167 /* make space for the new node */
1168 if (idx < set->used) {
1169 memmove(&set->val.nodes[idx + 1], &set->val.nodes[idx], (set->used - idx) * sizeof *set->val.nodes);
1170 }
1171 }
1172
1173 /* finally assign the value */
1174 set->val.nodes[idx].node = (struct lyd_node *)node;
1175 set->val.nodes[idx].type = node_type;
1176 set->val.nodes[idx].pos = pos;
1177 ++set->used;
1178
Michal Vasko2caefc12019-11-14 16:07:56 +01001179 if (set->val.nodes[idx].type == LYXP_NODE_ELEM) {
1180 set_insert_node_hash(set, (struct lyd_node *)node, node_type);
1181 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02001182}
1183
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001184LY_ERR
1185lyxp_set_scnode_insert_node(struct lyxp_set *set, const struct lysc_node *node, enum lyxp_node_type node_type, uint32_t *index_p)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001186{
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001187 uint32_t index;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001188
1189 assert(set->type == LYXP_SET_SCNODE_SET);
1190
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001191 if (lyxp_set_scnode_contains(set, node, node_type, -1, &index)) {
1192 set->val.scnodes[index].in_ctx = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001193 } else {
1194 if (set->used == set->size) {
1195 set->val.scnodes = ly_realloc(set->val.scnodes, (set->size + LYXP_SET_SIZE_STEP) * sizeof *set->val.scnodes);
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001196 LY_CHECK_ERR_RET(!set->val.scnodes, LOGMEM(set->ctx), LY_EMEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001197 set->size += LYXP_SET_SIZE_STEP;
1198 }
1199
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001200 index = set->used;
1201 set->val.scnodes[index].scnode = (struct lysc_node *)node;
1202 set->val.scnodes[index].type = node_type;
1203 set->val.scnodes[index].in_ctx = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001204 ++set->used;
1205 }
1206
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001207 if (index_p) {
1208 *index_p = index;
1209 }
1210
1211 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001212}
1213
1214/**
1215 * @brief Replace a node in a set with another. Context position aware.
1216 *
1217 * @param[in] set Set to use.
1218 * @param[in] node Node to insert to @p set.
1219 * @param[in] pos Sort position of @p node. If left 0, it is filled just before sorting.
1220 * @param[in] node_type Node type of @p node.
1221 * @param[in] idx Index in @p set of the node to replace.
1222 */
1223static void
1224set_replace_node(struct lyxp_set *set, const struct lyd_node *node, uint32_t pos, enum lyxp_node_type node_type, uint32_t idx)
1225{
1226 assert(set && (idx < set->used));
1227
Michal Vasko2caefc12019-11-14 16:07:56 +01001228 if (set->val.nodes[idx].type == LYXP_NODE_ELEM) {
1229 set_remove_node_hash(set, set->val.nodes[idx].node, set->val.nodes[idx].type);
1230 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02001231 set->val.nodes[idx].node = (struct lyd_node *)node;
1232 set->val.nodes[idx].type = node_type;
1233 set->val.nodes[idx].pos = pos;
Michal Vasko2caefc12019-11-14 16:07:56 +01001234 if (set->val.nodes[idx].type == LYXP_NODE_ELEM) {
1235 set_insert_node_hash(set, set->val.nodes[idx].node, set->val.nodes[idx].type);
1236 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02001237}
1238
1239/**
1240 * @brief Set all nodes with ctx 1 to a new unique context value.
1241 *
1242 * @param[in] set Set to modify.
1243 * @return New context value.
1244 */
Michal Vasko5c4e5892019-11-14 12:31:38 +01001245static int32_t
Michal Vasko03ff5a72019-09-11 13:49:33 +02001246set_scnode_new_in_ctx(struct lyxp_set *set)
1247{
Michal Vasko5c4e5892019-11-14 12:31:38 +01001248 uint32_t i;
1249 int32_t ret_ctx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001250
1251 assert(set->type == LYXP_SET_SCNODE_SET);
1252
1253 ret_ctx = 3;
1254retry:
1255 for (i = 0; i < set->used; ++i) {
1256 if (set->val.scnodes[i].in_ctx >= ret_ctx) {
1257 ret_ctx = set->val.scnodes[i].in_ctx + 1;
1258 goto retry;
1259 }
1260 }
1261 for (i = 0; i < set->used; ++i) {
1262 if (set->val.scnodes[i].in_ctx == 1) {
1263 set->val.scnodes[i].in_ctx = ret_ctx;
1264 }
1265 }
1266
1267 return ret_ctx;
1268}
1269
1270/**
1271 * @brief Get unique @p node position in the data.
1272 *
1273 * @param[in] node Node to find.
1274 * @param[in] node_type Node type of @p node.
1275 * @param[in] root Root node.
1276 * @param[in] root_type Type of the XPath @p root node.
1277 * @param[in] prev Node that we think is before @p node in DFS from @p root. Can optionally
1278 * be used to increase efficiency and start the DFS from this node.
1279 * @param[in] prev_pos Node @p prev position. Optional, but must be set if @p prev is set.
1280 * @return Node position.
1281 */
1282static uint32_t
1283get_node_pos(const struct lyd_node *node, enum lyxp_node_type node_type, const struct lyd_node *root,
Radek Krejci0f969882020-08-21 16:56:47 +02001284 enum lyxp_node_type root_type, const struct lyd_node **prev, uint32_t *prev_pos)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001285{
Michal Vasko56daf732020-08-10 10:57:18 +02001286 const struct lyd_node *elem = NULL, *top_sibling;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001287 uint32_t pos = 1;
1288
1289 assert(prev && prev_pos && !root->prev->next);
1290
1291 if ((node_type == LYXP_NODE_ROOT) || (node_type == LYXP_NODE_ROOT_CONFIG)) {
1292 return 0;
1293 }
1294
1295 if (*prev) {
1296 /* start from the previous element instead from the root */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001297 pos = *prev_pos;
Radek Krejci1e008d22020-08-17 11:37:37 +02001298 for (top_sibling = *prev; top_sibling->parent; top_sibling = (struct lyd_node *)top_sibling->parent) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02001299 goto dfs_search;
1300 }
1301
1302 for (top_sibling = root; top_sibling; top_sibling = top_sibling->next) {
Michal Vasko56daf732020-08-10 10:57:18 +02001303 LYD_TREE_DFS_BEGIN(top_sibling, elem) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001304dfs_search:
Michal Vasko56daf732020-08-10 10:57:18 +02001305 if (*prev && !elem) {
1306 /* resume previous DFS */
1307 elem = LYD_TREE_DFS_next = (struct lyd_node *)*prev;
1308 LYD_TREE_DFS_continue = 0;
1309 }
1310
Michal Vasko03ff5a72019-09-11 13:49:33 +02001311 if ((root_type == LYXP_NODE_ROOT_CONFIG) && (elem->schema->flags & LYS_CONFIG_R)) {
Michal Vasko56daf732020-08-10 10:57:18 +02001312 /* skip */
1313 LYD_TREE_DFS_continue = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001314 } else {
Michal Vasko56daf732020-08-10 10:57:18 +02001315 if (elem == node) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001316 break;
1317 }
Michal Vasko56daf732020-08-10 10:57:18 +02001318 ++pos;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001319 }
Michal Vasko56daf732020-08-10 10:57:18 +02001320
1321 LYD_TREE_DFS_END(top_sibling, elem);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001322 }
1323
1324 /* node found */
1325 if (elem) {
1326 break;
1327 }
1328 }
1329
1330 if (!elem) {
1331 if (!(*prev)) {
1332 /* we went from root and failed to find it, cannot be */
Michal Vaskob7be7a82020-08-20 09:09:04 +02001333 LOGINT(LYD_CTX(node));
Michal Vasko03ff5a72019-09-11 13:49:33 +02001334 return 0;
1335 } else {
Michal Vasko56daf732020-08-10 10:57:18 +02001336 /* start the search again from the beginning */
1337 *prev = root;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001338
Michal Vasko56daf732020-08-10 10:57:18 +02001339 top_sibling = root;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001340 pos = 1;
1341 goto dfs_search;
1342 }
1343 }
1344
1345 /* remember the last found node for next time */
1346 *prev = node;
1347 *prev_pos = pos;
1348
1349 return pos;
1350}
1351
1352/**
1353 * @brief Assign (fill) missing node positions.
1354 *
1355 * @param[in] set Set to fill positions in.
1356 * @param[in] root Context root node.
1357 * @param[in] root_type Context root type.
1358 * @return LY_ERR
1359 */
1360static LY_ERR
1361set_assign_pos(struct lyxp_set *set, const struct lyd_node *root, enum lyxp_node_type root_type)
1362{
1363 const struct lyd_node *prev = NULL, *tmp_node;
1364 uint32_t i, tmp_pos = 0;
1365
1366 for (i = 0; i < set->used; ++i) {
1367 if (!set->val.nodes[i].pos) {
1368 tmp_node = NULL;
1369 switch (set->val.nodes[i].type) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001370 case LYXP_NODE_META:
1371 tmp_node = set->val.meta[i].meta->parent;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001372 if (!tmp_node) {
1373 LOGINT_RET(root->schema->module->ctx);
1374 }
Radek Krejci0f969882020-08-21 16:56:47 +02001375 /* fallthrough */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001376 case LYXP_NODE_ELEM:
1377 case LYXP_NODE_TEXT:
1378 if (!tmp_node) {
1379 tmp_node = set->val.nodes[i].node;
1380 }
1381 set->val.nodes[i].pos = get_node_pos(tmp_node, set->val.nodes[i].type, root, root_type, &prev, &tmp_pos);
1382 break;
1383 default:
1384 /* all roots have position 0 */
1385 break;
1386 }
1387 }
1388 }
1389
1390 return LY_SUCCESS;
1391}
1392
1393/**
Michal Vasko9f96a052020-03-10 09:41:45 +01001394 * @brief Get unique @p meta position in the parent metadata.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001395 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001396 * @param[in] meta Metadata to use.
1397 * @return Metadata position.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001398 */
1399static uint16_t
Michal Vasko9f96a052020-03-10 09:41:45 +01001400get_meta_pos(struct lyd_meta *meta)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001401{
1402 uint16_t pos = 0;
Michal Vasko9f96a052020-03-10 09:41:45 +01001403 struct lyd_meta *meta2;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001404
Michal Vasko9f96a052020-03-10 09:41:45 +01001405 for (meta2 = meta->parent->meta; meta2 && (meta2 != meta); meta2 = meta2->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001406 ++pos;
1407 }
1408
Michal Vasko9f96a052020-03-10 09:41:45 +01001409 assert(meta2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001410 return pos;
1411}
1412
1413/**
1414 * @brief Compare 2 nodes in respect to XPath document order.
1415 *
1416 * @param[in] item1 1st node.
1417 * @param[in] item2 2nd node.
1418 * @return If 1st > 2nd returns 1, 1st == 2nd returns 0, and 1st < 2nd returns -1.
1419 */
1420static int
1421set_sort_compare(struct lyxp_set_node *item1, struct lyxp_set_node *item2)
1422{
Michal Vasko9f96a052020-03-10 09:41:45 +01001423 uint32_t meta_pos1 = 0, meta_pos2 = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001424
1425 if (item1->pos < item2->pos) {
1426 return -1;
1427 }
1428
1429 if (item1->pos > item2->pos) {
1430 return 1;
1431 }
1432
1433 /* node positions are equal, the fun case */
1434
1435 /* 1st ELEM - == - 2nd TEXT, 1st TEXT - == - 2nd ELEM */
1436 /* special case since text nodes are actually saved as their parents */
1437 if ((item1->node == item2->node) && (item1->type != item2->type)) {
1438 if (item1->type == LYXP_NODE_ELEM) {
1439 assert(item2->type == LYXP_NODE_TEXT);
1440 return -1;
1441 } else {
1442 assert((item1->type == LYXP_NODE_TEXT) && (item2->type == LYXP_NODE_ELEM));
1443 return 1;
1444 }
1445 }
1446
Michal Vasko9f96a052020-03-10 09:41:45 +01001447 /* we need meta positions now */
1448 if (item1->type == LYXP_NODE_META) {
1449 meta_pos1 = get_meta_pos((struct lyd_meta *)item1->node);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001450 }
Michal Vasko9f96a052020-03-10 09:41:45 +01001451 if (item2->type == LYXP_NODE_META) {
1452 meta_pos2 = get_meta_pos((struct lyd_meta *)item2->node);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001453 }
1454
Michal Vasko9f96a052020-03-10 09:41:45 +01001455 /* 1st ROOT - 2nd ROOT, 1st ELEM - 2nd ELEM, 1st TEXT - 2nd TEXT, 1st META - =pos= - 2nd META */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001456 /* check for duplicates */
1457 if (item1->node == item2->node) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001458 assert((item1->type == item2->type) && ((item1->type != LYXP_NODE_META) || (meta_pos1 == meta_pos2)));
Michal Vasko03ff5a72019-09-11 13:49:33 +02001459 return 0;
1460 }
1461
Michal Vasko9f96a052020-03-10 09:41:45 +01001462 /* 1st ELEM - 2nd TEXT, 1st ELEM - any pos - 2nd META */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001463 /* elem is always first, 2nd node is after it */
1464 if (item1->type == LYXP_NODE_ELEM) {
1465 assert(item2->type != LYXP_NODE_ELEM);
1466 return -1;
1467 }
1468
Michal Vasko9f96a052020-03-10 09:41:45 +01001469 /* 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 +02001470 /* 2nd is before 1st */
1471 if (((item1->type == LYXP_NODE_TEXT)
Michal Vasko9f96a052020-03-10 09:41:45 +01001472 && ((item2->type == LYXP_NODE_ELEM) || (item2->type == LYXP_NODE_META)))
1473 || ((item1->type == LYXP_NODE_META) && (item2->type == LYXP_NODE_ELEM))
1474 || (((item1->type == LYXP_NODE_META) && (item2->type == LYXP_NODE_META))
1475 && (meta_pos1 > meta_pos2))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001476 return 1;
1477 }
1478
Michal Vasko9f96a052020-03-10 09:41:45 +01001479 /* 1st META - any pos - 2nd TEXT, 1st META <pos< - 2nd META */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001480 /* 2nd is after 1st */
1481 return -1;
1482}
1483
1484/**
1485 * @brief Set cast for comparisons.
1486 *
1487 * @param[in] trg Target set to cast source into.
1488 * @param[in] src Source set.
1489 * @param[in] type Target set type.
1490 * @param[in] src_idx Source set node index.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001491 * @return LY_ERR
1492 */
1493static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001494set_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 +02001495{
1496 assert(src->type == LYXP_SET_NODE_SET);
1497
1498 set_init(trg, src);
1499
1500 /* insert node into target set */
1501 set_insert_node(trg, src->val.nodes[src_idx].node, src->val.nodes[src_idx].pos, src->val.nodes[src_idx].type, 0);
1502
1503 /* cast target set appropriately */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001504 return lyxp_set_cast(trg, type);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001505}
1506
Michal Vasko4c7763f2020-07-27 17:40:37 +02001507/**
1508 * @brief Set content canonization for comparisons.
1509 *
1510 * @param[in] trg Target set to put the canononized source into.
1511 * @param[in] src Source set.
1512 * @param[in] xp_node Source XPath node/meta to use for canonization.
1513 * @return LY_ERR
1514 */
1515static LY_ERR
1516set_comp_canonize(struct lyxp_set *trg, const struct lyxp_set *src, const struct lyxp_set_node *xp_node)
1517{
1518 struct lysc_type *type = NULL;
1519 struct lyd_value val;
1520 struct ly_err_item *err = NULL;
1521 char *str, *ptr;
Radek Krejci857189e2020-09-01 13:26:36 +02001522 ly_bool dynamic;
Michal Vasko4c7763f2020-07-27 17:40:37 +02001523 LY_ERR rc;
1524
1525 /* is there anything to canonize even? */
1526 if ((src->type == LYXP_SET_NUMBER) || (src->type == LYXP_SET_STRING)) {
1527 /* do we have a type to use for canonization? */
1528 if ((xp_node->type == LYXP_NODE_ELEM) && (xp_node->node->schema->nodetype & LYD_NODE_TERM)) {
1529 type = ((struct lyd_node_term *)xp_node->node)->value.realtype;
1530 } else if (xp_node->type == LYXP_NODE_META) {
1531 type = ((struct lyd_meta *)xp_node->node)->value.realtype;
1532 }
1533 }
1534 if (!type) {
1535 goto fill;
1536 }
1537
1538 if (src->type == LYXP_SET_NUMBER) {
1539 /* canonize number */
1540 if (asprintf(&str, "%Lf", src->val.num) == -1) {
1541 LOGMEM(src->ctx);
1542 return LY_EMEM;
1543 }
1544 } else {
1545 /* canonize string */
1546 str = strdup(src->val.str);
1547 }
1548
1549 /* ignore errors, the value may not satisfy schema constraints */
Michal Vaskoba99a3e2020-08-18 15:50:05 +02001550 rc = type->plugin->store(src->ctx, type, str, strlen(str), LY_TYPE_OPTS_INCOMPLETE_DATA | LY_TYPE_OPTS_DYNAMIC,
1551 LY_PREF_JSON, NULL, NULL, NULL, &val, &err);
Michal Vasko4c7763f2020-07-27 17:40:37 +02001552 ly_err_free(err);
1553 if (rc) {
1554 /* invalid value */
1555 free(str);
1556 goto fill;
1557 }
1558
1559 /* storing successful, now print the canonical value */
Michal Vaskoc8a230d2020-08-14 12:17:10 +02001560 str = (char *)type->plugin->print(&val, LY_PREF_JSON, NULL, &dynamic);
Michal Vasko4c7763f2020-07-27 17:40:37 +02001561
1562 /* use the canonized value */
1563 set_init(trg, src);
1564 trg->type = src->type;
1565 if (src->type == LYXP_SET_NUMBER) {
1566 trg->val.num = strtold(str, &ptr);
1567 if (dynamic) {
1568 free(str);
1569 }
1570 LY_CHECK_ERR_RET(ptr[0], LOGINT(src->ctx), LY_EINT);
1571 } else {
1572 trg->val.str = (dynamic ? str : strdup(str));
1573 }
1574 type->plugin->free(src->ctx, &val);
1575 return LY_SUCCESS;
1576
1577fill:
1578 /* no canonization needed/possible */
1579 set_fill_set(trg, src);
1580 return LY_SUCCESS;
1581}
1582
Michal Vasko03ff5a72019-09-11 13:49:33 +02001583#ifndef NDEBUG
1584
1585/**
1586 * @brief Bubble sort @p set into XPath document order.
1587 * Context position aware. Unused in the 'Release' build target.
1588 *
1589 * @param[in] set Set to sort.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001590 * @return How many times the whole set was traversed - 1 (if set was sorted, returns 0).
1591 */
1592static int
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001593set_sort(struct lyxp_set *set)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001594{
1595 uint32_t i, j;
Radek Krejci1deb5be2020-08-26 16:43:36 +02001596 int ret = 0, cmp;
Radek Krejci857189e2020-09-01 13:26:36 +02001597 ly_bool inverted, change;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001598 const struct lyd_node *root;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001599 struct lyxp_set_node item;
1600 struct lyxp_set_hash_node hnode;
1601 uint64_t hash;
1602
Michal Vasko3cf8fbf2020-05-27 15:21:21 +02001603 if ((set->type != LYXP_SET_NODE_SET) || (set->used < 2)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001604 return 0;
1605 }
1606
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001607 /* find first top-level node to be used as anchor for positions */
Radek Krejci1e008d22020-08-17 11:37:37 +02001608 for (root = set->ctx_node; root->parent; root = (const struct lyd_node *)root->parent) {}
Michal Vaskod989ba02020-08-24 10:59:24 +02001609 for ( ; root->prev->next; root = root->prev) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02001610
1611 /* fill positions */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001612 if (set_assign_pos(set, root, set->root_type)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001613 return -1;
1614 }
1615
1616 LOGDBG(LY_LDGXPATH, "SORT BEGIN");
1617 print_set_debug(set);
1618
1619 for (i = 0; i < set->used; ++i) {
1620 inverted = 0;
1621 change = 0;
1622
1623 for (j = 1; j < set->used - i; ++j) {
1624 /* compare node positions */
1625 if (inverted) {
1626 cmp = set_sort_compare(&set->val.nodes[j], &set->val.nodes[j - 1]);
1627 } else {
1628 cmp = set_sort_compare(&set->val.nodes[j - 1], &set->val.nodes[j]);
1629 }
1630
1631 /* swap if needed */
1632 if ((inverted && (cmp < 0)) || (!inverted && (cmp > 0))) {
1633 change = 1;
1634
1635 item = set->val.nodes[j - 1];
1636 set->val.nodes[j - 1] = set->val.nodes[j];
1637 set->val.nodes[j] = item;
1638 } else {
1639 /* whether node_pos1 should be smaller than node_pos2 or the other way around */
1640 inverted = !inverted;
1641 }
1642 }
1643
1644 ++ret;
1645
1646 if (!change) {
1647 break;
1648 }
1649 }
1650
1651 LOGDBG(LY_LDGXPATH, "SORT END %d", ret);
1652 print_set_debug(set);
1653
1654 /* check node hashes */
1655 if (set->used >= LYD_HT_MIN_ITEMS) {
1656 assert(set->ht);
1657 for (i = 0; i < set->used; ++i) {
1658 hnode.node = set->val.nodes[i].node;
1659 hnode.type = set->val.nodes[i].type;
1660
1661 hash = dict_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node);
1662 hash = dict_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type);
1663 hash = dict_hash_multi(hash, NULL, 0);
1664
1665 assert(!lyht_find(set->ht, &hnode, hash, NULL));
1666 }
1667 }
1668
1669 return ret - 1;
1670}
1671
1672/**
1673 * @brief Remove duplicate entries in a sorted node set.
1674 *
1675 * @param[in] set Sorted set to check.
1676 * @return LY_ERR (LY_EEXIST if some duplicates are found)
1677 */
1678static LY_ERR
1679set_sorted_dup_node_clean(struct lyxp_set *set)
1680{
1681 uint32_t i = 0;
1682 LY_ERR ret = LY_SUCCESS;
1683
1684 if (set->used > 1) {
1685 while (i < set->used - 1) {
1686 if ((set->val.nodes[i].node == set->val.nodes[i + 1].node)
1687 && (set->val.nodes[i].type == set->val.nodes[i + 1].type)) {
Michal Vasko2caefc12019-11-14 16:07:56 +01001688 set_remove_node_none(set, i + 1);
Michal Vasko57eab132019-09-24 11:46:26 +02001689 ret = LY_EEXIST;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001690 }
Michal Vasko57eab132019-09-24 11:46:26 +02001691 ++i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001692 }
1693 }
1694
Michal Vasko2caefc12019-11-14 16:07:56 +01001695 set_remove_nodes_none(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001696 return ret;
1697}
1698
1699#endif
1700
1701/**
1702 * @brief Merge 2 sorted sets into one.
1703 *
1704 * @param[in,out] trg Set to merge into. Duplicates are removed.
1705 * @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 +02001706 * @return LY_ERR
1707 */
1708static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001709set_sorted_merge(struct lyxp_set *trg, struct lyxp_set *src)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001710{
1711 uint32_t i, j, k, count, dup_count;
1712 int cmp;
1713 const struct lyd_node *root;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001714
Michal Vaskod3678892020-05-21 10:06:58 +02001715 if ((trg->type != LYXP_SET_NODE_SET) || (src->type != LYXP_SET_NODE_SET)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001716 return LY_EINVAL;
1717 }
1718
Michal Vaskod3678892020-05-21 10:06:58 +02001719 if (!src->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001720 return LY_SUCCESS;
Michal Vaskod3678892020-05-21 10:06:58 +02001721 } else if (!trg->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001722 set_fill_set(trg, src);
Michal Vaskod3678892020-05-21 10:06:58 +02001723 lyxp_set_free_content(src);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001724 return LY_SUCCESS;
1725 }
1726
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001727 /* find first top-level node to be used as anchor for positions */
Radek Krejci1e008d22020-08-17 11:37:37 +02001728 for (root = trg->ctx_node; root->parent; root = (const struct lyd_node *)root->parent) {}
Michal Vaskod989ba02020-08-24 10:59:24 +02001729 for ( ; root->prev->next; root = root->prev) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02001730
1731 /* fill positions */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001732 if (set_assign_pos(trg, root, trg->root_type) || set_assign_pos(src, root, src->root_type)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001733 return LY_EINT;
1734 }
1735
1736#ifndef NDEBUG
1737 LOGDBG(LY_LDGXPATH, "MERGE target");
1738 print_set_debug(trg);
1739 LOGDBG(LY_LDGXPATH, "MERGE source");
1740 print_set_debug(src);
1741#endif
1742
1743 /* make memory for the merge (duplicates are not detected yet, so space
1744 * will likely be wasted on them, too bad) */
1745 if (trg->size - trg->used < src->used) {
1746 trg->size = trg->used + src->used;
1747
1748 trg->val.nodes = ly_realloc(trg->val.nodes, trg->size * sizeof *trg->val.nodes);
1749 LY_CHECK_ERR_RET(!trg->val.nodes, LOGMEM(src->ctx), LY_EMEM);
1750 }
1751
1752 i = 0;
1753 j = 0;
1754 count = 0;
1755 dup_count = 0;
1756 do {
1757 cmp = set_sort_compare(&src->val.nodes[i], &trg->val.nodes[j]);
1758 if (!cmp) {
1759 if (!count) {
1760 /* duplicate, just skip it */
1761 ++i;
1762 ++j;
1763 } else {
1764 /* we are copying something already, so let's copy the duplicate too,
1765 * we are hoping that afterwards there are some more nodes to
1766 * copy and this way we can copy them all together */
1767 ++count;
1768 ++dup_count;
1769 ++i;
1770 ++j;
1771 }
1772 } else if (cmp < 0) {
1773 /* inserting src node into trg, just remember it for now */
1774 ++count;
1775 ++i;
1776
1777 /* insert the hash now */
1778 set_insert_node_hash(trg, src->val.nodes[i - 1].node, src->val.nodes[i - 1].type);
1779 } else if (count) {
1780copy_nodes:
1781 /* time to actually copy the nodes, we have found the largest block of nodes */
1782 memmove(&trg->val.nodes[j + (count - dup_count)],
1783 &trg->val.nodes[j],
1784 (trg->used - j) * sizeof *trg->val.nodes);
1785 memcpy(&trg->val.nodes[j - dup_count], &src->val.nodes[i - count], count * sizeof *src->val.nodes);
1786
1787 trg->used += count - dup_count;
1788 /* do not change i, except the copying above, we are basically doing exactly what is in the else branch below */
1789 j += count - dup_count;
1790
1791 count = 0;
1792 dup_count = 0;
1793 } else {
1794 ++j;
1795 }
1796 } while ((i < src->used) && (j < trg->used));
1797
1798 if ((i < src->used) || count) {
1799 /* insert all the hashes first */
1800 for (k = i; k < src->used; ++k) {
1801 set_insert_node_hash(trg, src->val.nodes[k].node, src->val.nodes[k].type);
1802 }
1803
1804 /* loop ended, but we need to copy something at trg end */
1805 count += src->used - i;
1806 i = src->used;
1807 goto copy_nodes;
1808 }
1809
1810 /* we are inserting hashes before the actual node insert, which causes
1811 * situations when there were initially not enough items for a hash table,
1812 * but even after some were inserted, hash table was not created (during
1813 * insertion the number of items is not updated yet) */
1814 if (!trg->ht && (trg->used >= LYD_HT_MIN_ITEMS)) {
1815 set_insert_node_hash(trg, NULL, 0);
1816 }
1817
1818#ifndef NDEBUG
1819 LOGDBG(LY_LDGXPATH, "MERGE result");
1820 print_set_debug(trg);
1821#endif
1822
Michal Vaskod3678892020-05-21 10:06:58 +02001823 lyxp_set_free_content(src);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001824 return LY_SUCCESS;
1825}
1826
1827/*
1828 * (re)parse functions
1829 *
1830 * Parse functions parse the expression into
1831 * tokens (syntactic analysis).
1832 *
1833 * Reparse functions perform semantic analysis
1834 * (do not save the result, just a check) of
1835 * the expression and fill repeat indices.
1836 */
1837
Michal Vasko14676352020-05-29 11:35:55 +02001838LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02001839lyxp_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 +02001840{
Michal Vasko004d3152020-06-11 19:59:22 +02001841 if (exp->used == tok_idx) {
Michal Vasko14676352020-05-29 11:35:55 +02001842 if (ctx) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001843 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_EOF);
1844 }
Michal Vasko14676352020-05-29 11:35:55 +02001845 return LY_EINCOMPLETE;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001846 }
1847
Michal Vasko004d3152020-06-11 19:59:22 +02001848 if (want_tok && (exp->tokens[tok_idx] != want_tok)) {
Michal Vasko14676352020-05-29 11:35:55 +02001849 if (ctx) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001850 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_INTOK,
Michal Vasko004d3152020-06-11 19:59:22 +02001851 lyxp_print_token(exp->tokens[tok_idx]), &exp->expr[exp->tok_pos[tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001852 }
Michal Vasko14676352020-05-29 11:35:55 +02001853 return LY_ENOT;
1854 }
1855
1856 return LY_SUCCESS;
1857}
1858
Michal Vasko004d3152020-06-11 19:59:22 +02001859LY_ERR
1860lyxp_next_token(const struct ly_ctx *ctx, const struct lyxp_expr *exp, uint16_t *tok_idx, enum lyxp_token want_tok)
1861{
1862 LY_CHECK_RET(lyxp_check_token(ctx, exp, *tok_idx, want_tok));
1863
1864 /* skip the token */
1865 ++(*tok_idx);
1866
1867 return LY_SUCCESS;
1868}
1869
Michal Vasko14676352020-05-29 11:35:55 +02001870/* just like lyxp_check_token() but tests for 2 tokens */
1871static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02001872exp_check_token2(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t tok_idx, enum lyxp_token want_tok1,
Radek Krejci0f969882020-08-21 16:56:47 +02001873 enum lyxp_token want_tok2)
Michal Vasko14676352020-05-29 11:35:55 +02001874{
Michal Vasko004d3152020-06-11 19:59:22 +02001875 if (exp->used == tok_idx) {
Michal Vasko14676352020-05-29 11:35:55 +02001876 if (ctx) {
1877 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_EOF);
1878 }
1879 return LY_EINCOMPLETE;
1880 }
1881
Michal Vasko004d3152020-06-11 19:59:22 +02001882 if ((exp->tokens[tok_idx] != want_tok1) && (exp->tokens[tok_idx] != want_tok2)) {
Michal Vasko14676352020-05-29 11:35:55 +02001883 if (ctx) {
1884 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_INTOK,
Michal Vasko004d3152020-06-11 19:59:22 +02001885 lyxp_print_token(exp->tokens[tok_idx]), &exp->expr[exp->tok_pos[tok_idx]]);
Michal Vasko14676352020-05-29 11:35:55 +02001886 }
1887 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001888 }
1889
1890 return LY_SUCCESS;
1891}
1892
1893/**
1894 * @brief Stack operation push on the repeat array.
1895 *
1896 * @param[in] exp Expression to use.
Michal Vasko004d3152020-06-11 19:59:22 +02001897 * @param[in] tok_idx Position in the expresion \p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001898 * @param[in] repeat_op_idx Index from \p exp of the operator token. This value is pushed.
1899 */
1900static void
Michal Vasko004d3152020-06-11 19:59:22 +02001901exp_repeat_push(struct lyxp_expr *exp, uint16_t tok_idx, uint16_t repeat_op_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001902{
1903 uint16_t i;
1904
Michal Vasko004d3152020-06-11 19:59:22 +02001905 if (exp->repeat[tok_idx]) {
Radek Krejci1e008d22020-08-17 11:37:37 +02001906 for (i = 0; exp->repeat[tok_idx][i]; ++i) {}
Michal Vasko004d3152020-06-11 19:59:22 +02001907 exp->repeat[tok_idx] = realloc(exp->repeat[tok_idx], (i + 2) * sizeof *exp->repeat[tok_idx]);
1908 LY_CHECK_ERR_RET(!exp->repeat[tok_idx], LOGMEM(NULL), );
1909 exp->repeat[tok_idx][i] = repeat_op_idx;
1910 exp->repeat[tok_idx][i + 1] = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001911 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02001912 exp->repeat[tok_idx] = calloc(2, sizeof *exp->repeat[tok_idx]);
1913 LY_CHECK_ERR_RET(!exp->repeat[tok_idx], LOGMEM(NULL), );
1914 exp->repeat[tok_idx][0] = repeat_op_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001915 }
1916}
1917
1918/**
1919 * @brief Reparse Predicate. Logs directly on error.
1920 *
1921 * [7] Predicate ::= '[' Expr ']'
1922 *
1923 * @param[in] ctx Context for logging.
1924 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02001925 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001926 * @return LY_ERR
1927 */
1928static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02001929reparse_predicate(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001930{
1931 LY_ERR rc;
1932
Michal Vasko004d3152020-06-11 19:59:22 +02001933 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_BRACK1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001934 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02001935 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001936
Michal Vasko004d3152020-06-11 19:59:22 +02001937 rc = reparse_or_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001938 LY_CHECK_RET(rc);
1939
Michal Vasko004d3152020-06-11 19:59:22 +02001940 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_BRACK2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001941 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02001942 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001943
1944 return LY_SUCCESS;
1945}
1946
1947/**
1948 * @brief Reparse RelativeLocationPath. Logs directly on error.
1949 *
1950 * [4] RelativeLocationPath ::= Step | RelativeLocationPath '/' Step | RelativeLocationPath '//' Step
1951 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
1952 * [6] NodeTest ::= NameTest | NodeType '(' ')'
1953 *
1954 * @param[in] ctx Context for logging.
1955 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02001956 * @param[in] tok_idx Position in the expression \p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001957 * @return LY_ERR (LY_EINCOMPLETE on forward reference)
1958 */
1959static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02001960reparse_relative_location_path(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001961{
1962 LY_ERR rc;
1963
Michal Vasko004d3152020-06-11 19:59:22 +02001964 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001965 LY_CHECK_RET(rc);
1966
1967 goto step;
1968 do {
1969 /* '/' or '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02001970 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001971
Michal Vasko004d3152020-06-11 19:59:22 +02001972 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001973 LY_CHECK_RET(rc);
1974step:
1975 /* Step */
Michal Vasko004d3152020-06-11 19:59:22 +02001976 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001977 case LYXP_TOKEN_DOT:
Michal Vasko004d3152020-06-11 19:59:22 +02001978 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001979 break;
1980
1981 case LYXP_TOKEN_DDOT:
Michal Vasko004d3152020-06-11 19:59:22 +02001982 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001983 break;
1984
1985 case LYXP_TOKEN_AT:
Michal Vasko004d3152020-06-11 19:59:22 +02001986 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001987
Michal Vasko004d3152020-06-11 19:59:22 +02001988 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001989 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02001990 if ((exp->tokens[*tok_idx] != LYXP_TOKEN_NAMETEST) && (exp->tokens[*tok_idx] != LYXP_TOKEN_NODETYPE)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001991 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_INTOK,
Michal Vasko004d3152020-06-11 19:59:22 +02001992 lyxp_print_token(exp->tokens[*tok_idx]), &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001993 return LY_EVALID;
1994 }
Radek Krejci0f969882020-08-21 16:56:47 +02001995 /* fall through */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001996 case LYXP_TOKEN_NAMETEST:
Michal Vasko004d3152020-06-11 19:59:22 +02001997 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001998 goto reparse_predicate;
1999 break;
2000
2001 case LYXP_TOKEN_NODETYPE:
Michal Vasko004d3152020-06-11 19:59:22 +02002002 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002003
2004 /* '(' */
Michal Vasko004d3152020-06-11 19:59:22 +02002005 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002006 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002007 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002008
2009 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02002010 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002011 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002012 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002013
2014reparse_predicate:
2015 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02002016 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
2017 rc = reparse_predicate(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002018 LY_CHECK_RET(rc);
2019 }
2020 break;
2021 default:
2022 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_INTOK,
Michal Vasko004d3152020-06-11 19:59:22 +02002023 lyxp_print_token(exp->tokens[*tok_idx]), &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002024 return LY_EVALID;
2025 }
Michal Vasko004d3152020-06-11 19:59:22 +02002026 } while (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH));
Michal Vasko03ff5a72019-09-11 13:49:33 +02002027
2028 return LY_SUCCESS;
2029}
2030
2031/**
2032 * @brief Reparse AbsoluteLocationPath. Logs directly on error.
2033 *
2034 * [3] AbsoluteLocationPath ::= '/' RelativeLocationPath? | '//' RelativeLocationPath
2035 *
2036 * @param[in] ctx Context for logging.
2037 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002038 * @param[in] tok_idx Position in the expression \p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002039 * @return LY_ERR
2040 */
2041static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02002042reparse_absolute_location_path(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002043{
2044 LY_ERR rc;
2045
Michal Vasko004d3152020-06-11 19:59:22 +02002046 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 +02002047
2048 /* '/' RelativeLocationPath? */
Michal Vasko004d3152020-06-11 19:59:22 +02002049 if (exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_PATH) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002050 /* '/' */
Michal Vasko004d3152020-06-11 19:59:22 +02002051 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002052
Michal Vasko004d3152020-06-11 19:59:22 +02002053 if (lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_NONE)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002054 return LY_SUCCESS;
2055 }
Michal Vasko004d3152020-06-11 19:59:22 +02002056 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002057 case LYXP_TOKEN_DOT:
2058 case LYXP_TOKEN_DDOT:
2059 case LYXP_TOKEN_AT:
2060 case LYXP_TOKEN_NAMETEST:
2061 case LYXP_TOKEN_NODETYPE:
Michal Vasko004d3152020-06-11 19:59:22 +02002062 rc = reparse_relative_location_path(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002063 LY_CHECK_RET(rc);
Radek Krejci0f969882020-08-21 16:56:47 +02002064 /* fall through */
Michal Vasko03ff5a72019-09-11 13:49:33 +02002065 default:
2066 break;
2067 }
2068
Michal Vasko03ff5a72019-09-11 13:49:33 +02002069 } else {
Radek Krejcif6a11002020-08-21 13:29:07 +02002070 /* '//' RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02002071 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002072
Michal Vasko004d3152020-06-11 19:59:22 +02002073 rc = reparse_relative_location_path(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002074 LY_CHECK_RET(rc);
2075 }
2076
2077 return LY_SUCCESS;
2078}
2079
2080/**
2081 * @brief Reparse FunctionCall. Logs directly on error.
2082 *
2083 * [9] FunctionCall ::= FunctionName '(' ( Expr ( ',' Expr )* )? ')'
2084 *
2085 * @param[in] ctx Context for logging.
2086 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002087 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002088 * @return LY_ERR
2089 */
2090static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02002091reparse_function_call(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002092{
Radek Krejci1deb5be2020-08-26 16:43:36 +02002093 int8_t min_arg_count = -1;
2094 uint32_t arg_count, max_arg_count = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002095 uint16_t func_tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002096 LY_ERR rc;
2097
Michal Vasko004d3152020-06-11 19:59:22 +02002098 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_FUNCNAME);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002099 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002100 func_tok_idx = *tok_idx;
2101 switch (exp->tok_len[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002102 case 3:
Michal Vasko004d3152020-06-11 19:59:22 +02002103 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "not", 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002104 min_arg_count = 1;
2105 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002106 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "sum", 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002107 min_arg_count = 1;
2108 max_arg_count = 1;
2109 }
2110 break;
2111 case 4:
Michal Vasko004d3152020-06-11 19:59:22 +02002112 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "lang", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002113 min_arg_count = 1;
2114 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002115 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "last", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002116 min_arg_count = 0;
2117 max_arg_count = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002118 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "name", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002119 min_arg_count = 0;
2120 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002121 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "true", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002122 min_arg_count = 0;
2123 max_arg_count = 0;
2124 }
2125 break;
2126 case 5:
Michal Vasko004d3152020-06-11 19:59:22 +02002127 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "count", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002128 min_arg_count = 1;
2129 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002130 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "false", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002131 min_arg_count = 0;
2132 max_arg_count = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002133 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "floor", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002134 min_arg_count = 1;
2135 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002136 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "round", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002137 min_arg_count = 1;
2138 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002139 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "deref", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002140 min_arg_count = 1;
2141 max_arg_count = 1;
2142 }
2143 break;
2144 case 6:
Michal Vasko004d3152020-06-11 19:59:22 +02002145 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "concat", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002146 min_arg_count = 2;
Radek Krejci1deb5be2020-08-26 16:43:36 +02002147 max_arg_count = UINT32_MAX;
Michal Vasko004d3152020-06-11 19:59:22 +02002148 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "number", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002149 min_arg_count = 0;
2150 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002151 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002152 min_arg_count = 0;
2153 max_arg_count = 1;
2154 }
2155 break;
2156 case 7:
Michal Vasko004d3152020-06-11 19:59:22 +02002157 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "boolean", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002158 min_arg_count = 1;
2159 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002160 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "ceiling", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002161 min_arg_count = 1;
2162 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002163 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "current", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002164 min_arg_count = 0;
2165 max_arg_count = 0;
2166 }
2167 break;
2168 case 8:
Michal Vasko004d3152020-06-11 19:59:22 +02002169 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "contains", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002170 min_arg_count = 2;
2171 max_arg_count = 2;
Michal Vasko004d3152020-06-11 19:59:22 +02002172 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "position", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002173 min_arg_count = 0;
2174 max_arg_count = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002175 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "re-match", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002176 min_arg_count = 2;
2177 max_arg_count = 2;
2178 }
2179 break;
2180 case 9:
Michal Vasko004d3152020-06-11 19:59:22 +02002181 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring", 9)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002182 min_arg_count = 2;
2183 max_arg_count = 3;
Michal Vasko004d3152020-06-11 19:59:22 +02002184 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "translate", 9)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002185 min_arg_count = 3;
2186 max_arg_count = 3;
2187 }
2188 break;
2189 case 10:
Michal Vasko004d3152020-06-11 19:59:22 +02002190 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "local-name", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002191 min_arg_count = 0;
2192 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002193 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "enum-value", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002194 min_arg_count = 1;
2195 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002196 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "bit-is-set", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002197 min_arg_count = 2;
2198 max_arg_count = 2;
2199 }
2200 break;
2201 case 11:
Michal Vasko004d3152020-06-11 19:59:22 +02002202 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "starts-with", 11)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002203 min_arg_count = 2;
2204 max_arg_count = 2;
2205 }
2206 break;
2207 case 12:
Michal Vasko004d3152020-06-11 19:59:22 +02002208 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from", 12)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002209 min_arg_count = 2;
2210 max_arg_count = 2;
2211 }
2212 break;
2213 case 13:
Michal Vasko004d3152020-06-11 19:59:22 +02002214 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "namespace-uri", 13)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002215 min_arg_count = 0;
2216 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002217 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string-length", 13)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002218 min_arg_count = 0;
2219 max_arg_count = 1;
2220 }
2221 break;
2222 case 15:
Michal Vasko004d3152020-06-11 19:59:22 +02002223 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "normalize-space", 15)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002224 min_arg_count = 0;
2225 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002226 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-after", 15)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002227 min_arg_count = 2;
2228 max_arg_count = 2;
2229 }
2230 break;
2231 case 16:
Michal Vasko004d3152020-06-11 19:59:22 +02002232 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-before", 16)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002233 min_arg_count = 2;
2234 max_arg_count = 2;
2235 }
2236 break;
2237 case 20:
Michal Vasko004d3152020-06-11 19:59:22 +02002238 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from-or-self", 20)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002239 min_arg_count = 2;
2240 max_arg_count = 2;
2241 }
2242 break;
2243 }
2244 if (min_arg_count == -1) {
Michal Vasko004d3152020-06-11 19:59:22 +02002245 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 +02002246 return LY_EINVAL;
2247 }
Michal Vasko004d3152020-06-11 19:59:22 +02002248 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002249
2250 /* '(' */
Michal Vasko004d3152020-06-11 19:59:22 +02002251 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002252 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002253 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002254
2255 /* ( Expr ( ',' Expr )* )? */
2256 arg_count = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002257 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002258 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002259 if (exp->tokens[*tok_idx] != LYXP_TOKEN_PAR2) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002260 ++arg_count;
Michal Vasko004d3152020-06-11 19:59:22 +02002261 rc = reparse_or_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002262 LY_CHECK_RET(rc);
2263 }
Michal Vasko004d3152020-06-11 19:59:22 +02002264 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_COMMA)) {
2265 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002266
2267 ++arg_count;
Michal Vasko004d3152020-06-11 19:59:22 +02002268 rc = reparse_or_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002269 LY_CHECK_RET(rc);
2270 }
2271
2272 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02002273 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002274 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002275 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002276
Radek Krejci857189e2020-09-01 13:26:36 +02002277 if ((arg_count < (uint32_t)min_arg_count) || (arg_count > max_arg_count)) {
Michal Vasko004d3152020-06-11 19:59:22 +02002278 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_INARGCOUNT, arg_count, exp->tok_len[func_tok_idx],
2279 &exp->expr[exp->tok_pos[func_tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002280 return LY_EVALID;
2281 }
2282
2283 return LY_SUCCESS;
2284}
2285
2286/**
2287 * @brief Reparse PathExpr. Logs directly on error.
2288 *
2289 * [10] PathExpr ::= LocationPath | PrimaryExpr Predicate*
2290 * | PrimaryExpr Predicate* '/' RelativeLocationPath
2291 * | PrimaryExpr Predicate* '//' RelativeLocationPath
2292 * [2] LocationPath ::= RelativeLocationPath | AbsoluteLocationPath
2293 * [8] PrimaryExpr ::= '(' Expr ')' | Literal | Number | FunctionCall
2294 *
2295 * @param[in] ctx Context for logging.
2296 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002297 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002298 * @return LY_ERR
2299 */
2300static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02002301reparse_path_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002302{
2303 LY_ERR rc;
2304
Michal Vasko004d3152020-06-11 19:59:22 +02002305 if (lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE)) {
Michal Vasko14676352020-05-29 11:35:55 +02002306 return LY_EVALID;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002307 }
2308
Michal Vasko004d3152020-06-11 19:59:22 +02002309 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002310 case LYXP_TOKEN_PAR1:
2311 /* '(' Expr ')' Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02002312 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002313
Michal Vasko004d3152020-06-11 19:59:22 +02002314 rc = reparse_or_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002315 LY_CHECK_RET(rc);
2316
Michal Vasko004d3152020-06-11 19:59:22 +02002317 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002318 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002319 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002320 goto predicate;
2321 break;
2322 case LYXP_TOKEN_DOT:
2323 case LYXP_TOKEN_DDOT:
2324 case LYXP_TOKEN_AT:
2325 case LYXP_TOKEN_NAMETEST:
2326 case LYXP_TOKEN_NODETYPE:
2327 /* RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02002328 rc = reparse_relative_location_path(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002329 LY_CHECK_RET(rc);
2330 break;
2331 case LYXP_TOKEN_FUNCNAME:
2332 /* FunctionCall */
Michal Vasko004d3152020-06-11 19:59:22 +02002333 rc = reparse_function_call(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002334 LY_CHECK_RET(rc);
2335 goto predicate;
2336 break;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002337 case LYXP_TOKEN_OPER_PATH:
2338 case LYXP_TOKEN_OPER_RPATH:
Michal Vasko03ff5a72019-09-11 13:49:33 +02002339 /* AbsoluteLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02002340 rc = reparse_absolute_location_path(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002341 LY_CHECK_RET(rc);
2342 break;
2343 case LYXP_TOKEN_LITERAL:
2344 /* Literal */
Michal Vasko004d3152020-06-11 19:59:22 +02002345 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002346 goto predicate;
2347 break;
2348 case LYXP_TOKEN_NUMBER:
2349 /* Number */
Michal Vasko004d3152020-06-11 19:59:22 +02002350 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002351 goto predicate;
2352 break;
2353 default:
2354 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_INTOK,
Michal Vasko004d3152020-06-11 19:59:22 +02002355 lyxp_print_token(exp->tokens[*tok_idx]), &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002356 return LY_EVALID;
2357 }
2358
2359 return LY_SUCCESS;
2360
2361predicate:
2362 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02002363 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
2364 rc = reparse_predicate(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002365 LY_CHECK_RET(rc);
2366 }
2367
2368 /* ('/' or '//') RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02002369 if (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002370
2371 /* '/' or '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02002372 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002373
Michal Vasko004d3152020-06-11 19:59:22 +02002374 rc = reparse_relative_location_path(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002375 LY_CHECK_RET(rc);
2376 }
2377
2378 return LY_SUCCESS;
2379}
2380
2381/**
2382 * @brief Reparse UnaryExpr. Logs directly on error.
2383 *
2384 * [17] UnaryExpr ::= UnionExpr | '-' UnaryExpr
2385 * [18] UnionExpr ::= PathExpr | UnionExpr '|' PathExpr
2386 *
2387 * @param[in] ctx Context for logging.
2388 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002389 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002390 * @return LY_ERR
2391 */
2392static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02002393reparse_unary_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002394{
2395 uint16_t prev_exp;
2396 LY_ERR rc;
2397
2398 /* ('-')* */
Michal Vasko004d3152020-06-11 19:59:22 +02002399 prev_exp = *tok_idx;
2400 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_MATH)
2401 && (exp->expr[exp->tok_pos[*tok_idx]] == '-')) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002402 exp_repeat_push(exp, prev_exp, LYXP_EXPR_UNARY);
Michal Vasko004d3152020-06-11 19:59:22 +02002403 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002404 }
2405
2406 /* PathExpr */
Michal Vasko004d3152020-06-11 19:59:22 +02002407 prev_exp = *tok_idx;
2408 rc = reparse_path_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002409 LY_CHECK_RET(rc);
2410
2411 /* ('|' PathExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002412 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_UNI)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002413 exp_repeat_push(exp, prev_exp, LYXP_EXPR_UNION);
Michal Vasko004d3152020-06-11 19:59:22 +02002414 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002415
Michal Vasko004d3152020-06-11 19:59:22 +02002416 rc = reparse_path_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002417 LY_CHECK_RET(rc);
2418 }
2419
2420 return LY_SUCCESS;
2421}
2422
2423/**
2424 * @brief Reparse AdditiveExpr. Logs directly on error.
2425 *
2426 * [15] AdditiveExpr ::= MultiplicativeExpr
2427 * | AdditiveExpr '+' MultiplicativeExpr
2428 * | AdditiveExpr '-' MultiplicativeExpr
2429 * [16] MultiplicativeExpr ::= UnaryExpr
2430 * | MultiplicativeExpr '*' UnaryExpr
2431 * | MultiplicativeExpr 'div' UnaryExpr
2432 * | MultiplicativeExpr 'mod' UnaryExpr
2433 *
2434 * @param[in] ctx Context for logging.
2435 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002436 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002437 * @return LY_ERR
2438 */
2439static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02002440reparse_additive_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002441{
2442 uint16_t prev_add_exp, prev_mul_exp;
2443 LY_ERR rc;
2444
Michal Vasko004d3152020-06-11 19:59:22 +02002445 prev_add_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002446 goto reparse_multiplicative_expr;
2447
2448 /* ('+' / '-' MultiplicativeExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002449 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_MATH)
2450 && ((exp->expr[exp->tok_pos[*tok_idx]] == '+') || (exp->expr[exp->tok_pos[*tok_idx]] == '-'))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002451 exp_repeat_push(exp, prev_add_exp, LYXP_EXPR_ADDITIVE);
Michal Vasko004d3152020-06-11 19:59:22 +02002452 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002453
2454reparse_multiplicative_expr:
2455 /* UnaryExpr */
Michal Vasko004d3152020-06-11 19:59:22 +02002456 prev_mul_exp = *tok_idx;
2457 rc = reparse_unary_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002458 LY_CHECK_RET(rc);
2459
2460 /* ('*' / 'div' / 'mod' UnaryExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002461 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_MATH)
2462 && ((exp->expr[exp->tok_pos[*tok_idx]] == '*') || (exp->tok_len[*tok_idx] == 3))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002463 exp_repeat_push(exp, prev_mul_exp, LYXP_EXPR_MULTIPLICATIVE);
Michal Vasko004d3152020-06-11 19:59:22 +02002464 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002465
Michal Vasko004d3152020-06-11 19:59:22 +02002466 rc = reparse_unary_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002467 LY_CHECK_RET(rc);
2468 }
2469 }
2470
2471 return LY_SUCCESS;
2472}
2473
2474/**
2475 * @brief Reparse EqualityExpr. Logs directly on error.
2476 *
2477 * [13] EqualityExpr ::= RelationalExpr | EqualityExpr '=' RelationalExpr
2478 * | EqualityExpr '!=' RelationalExpr
2479 * [14] RelationalExpr ::= AdditiveExpr
2480 * | RelationalExpr '<' AdditiveExpr
2481 * | RelationalExpr '>' AdditiveExpr
2482 * | RelationalExpr '<=' AdditiveExpr
2483 * | RelationalExpr '>=' AdditiveExpr
2484 *
2485 * @param[in] ctx Context for logging.
2486 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002487 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002488 * @return LY_ERR
2489 */
2490static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02002491reparse_equality_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002492{
2493 uint16_t prev_eq_exp, prev_rel_exp;
2494 LY_ERR rc;
2495
Michal Vasko004d3152020-06-11 19:59:22 +02002496 prev_eq_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002497 goto reparse_additive_expr;
2498
2499 /* ('=' / '!=' RelationalExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002500 while (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_EQUAL, LYXP_TOKEN_OPER_NEQUAL)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002501 exp_repeat_push(exp, prev_eq_exp, LYXP_EXPR_EQUALITY);
Michal Vasko004d3152020-06-11 19:59:22 +02002502 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002503
2504reparse_additive_expr:
2505 /* AdditiveExpr */
Michal Vasko004d3152020-06-11 19:59:22 +02002506 prev_rel_exp = *tok_idx;
2507 rc = reparse_additive_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002508 LY_CHECK_RET(rc);
2509
2510 /* ('<' / '>' / '<=' / '>=' AdditiveExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002511 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_COMP)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002512 exp_repeat_push(exp, prev_rel_exp, LYXP_EXPR_RELATIONAL);
Michal Vasko004d3152020-06-11 19:59:22 +02002513 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002514
Michal Vasko004d3152020-06-11 19:59:22 +02002515 rc = reparse_additive_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002516 LY_CHECK_RET(rc);
2517 }
2518 }
2519
2520 return LY_SUCCESS;
2521}
2522
2523/**
2524 * @brief Reparse OrExpr. Logs directly on error.
2525 *
2526 * [11] OrExpr ::= AndExpr | OrExpr 'or' AndExpr
2527 * [12] AndExpr ::= EqualityExpr | AndExpr 'and' EqualityExpr
2528 *
2529 * @param[in] ctx Context for logging.
2530 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002531 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002532 * @return LY_ERR
2533 */
2534static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02002535reparse_or_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002536{
2537 uint16_t prev_or_exp, prev_and_exp;
2538 LY_ERR rc;
2539
Michal Vasko004d3152020-06-11 19:59:22 +02002540 prev_or_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002541 goto reparse_equality_expr;
2542
2543 /* ('or' AndExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002544 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 +02002545 exp_repeat_push(exp, prev_or_exp, LYXP_EXPR_OR);
Michal Vasko004d3152020-06-11 19:59:22 +02002546 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002547
2548reparse_equality_expr:
2549 /* EqualityExpr */
Michal Vasko004d3152020-06-11 19:59:22 +02002550 prev_and_exp = *tok_idx;
2551 rc = reparse_equality_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002552 LY_CHECK_RET(rc);
2553
2554 /* ('and' EqualityExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002555 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 +02002556 exp_repeat_push(exp, prev_and_exp, LYXP_EXPR_AND);
Michal Vasko004d3152020-06-11 19:59:22 +02002557 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002558
Michal Vasko004d3152020-06-11 19:59:22 +02002559 rc = reparse_equality_expr(ctx, exp, tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002560 LY_CHECK_RET(rc);
2561 }
2562 }
2563
2564 return LY_SUCCESS;
2565}
Radek Krejcib1646a92018-11-02 16:08:26 +01002566
2567/**
2568 * @brief Parse NCName.
2569 *
2570 * @param[in] ncname Name to parse.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002571 * @return Length of @p ncname valid bytes.
Radek Krejcib1646a92018-11-02 16:08:26 +01002572 */
Radek Krejcid4270262019-01-07 15:07:25 +01002573static long int
Radek Krejcib1646a92018-11-02 16:08:26 +01002574parse_ncname(const char *ncname)
2575{
Radek Krejci1deb5be2020-08-26 16:43:36 +02002576 uint32_t uc;
Radek Krejcid4270262019-01-07 15:07:25 +01002577 size_t size;
2578 long int len = 0;
Radek Krejcib1646a92018-11-02 16:08:26 +01002579
2580 LY_CHECK_RET(ly_getutf8(&ncname, &uc, &size), 0);
2581 if (!is_xmlqnamestartchar(uc) || (uc == ':')) {
2582 return len;
2583 }
2584
2585 do {
2586 len += size;
Radek Krejci9a564c92019-01-07 14:53:57 +01002587 if (!*ncname) {
2588 break;
2589 }
Radek Krejcid4270262019-01-07 15:07:25 +01002590 LY_CHECK_RET(ly_getutf8(&ncname, &uc, &size), -len);
Radek Krejcib1646a92018-11-02 16:08:26 +01002591 } while (is_xmlqnamechar(uc) && (uc != ':'));
2592
2593 return len;
2594}
2595
2596/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02002597 * @brief Add @p token into the expression @p exp.
Radek Krejcib1646a92018-11-02 16:08:26 +01002598 *
Michal Vasko03ff5a72019-09-11 13:49:33 +02002599 * @param[in] ctx Context for logging.
Radek Krejcib1646a92018-11-02 16:08:26 +01002600 * @param[in] exp Expression to use.
2601 * @param[in] token Token to add.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002602 * @param[in] tok_pos Token position in the XPath expression.
Radek Krejcib1646a92018-11-02 16:08:26 +01002603 * @param[in] tok_len Token length in the XPath expression.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002604 * @return LY_ERR
Radek Krejcib1646a92018-11-02 16:08:26 +01002605 */
2606static LY_ERR
Michal Vasko14676352020-05-29 11:35:55 +02002607exp_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 +01002608{
2609 uint32_t prev;
2610
2611 if (exp->used == exp->size) {
2612 prev = exp->size;
2613 exp->size += LYXP_EXPR_SIZE_STEP;
2614 if (prev > exp->size) {
2615 LOGINT(ctx);
2616 return LY_EINT;
2617 }
2618
2619 exp->tokens = ly_realloc(exp->tokens, exp->size * sizeof *exp->tokens);
2620 LY_CHECK_ERR_RET(!exp->tokens, LOGMEM(ctx), LY_EMEM);
2621 exp->tok_pos = ly_realloc(exp->tok_pos, exp->size * sizeof *exp->tok_pos);
2622 LY_CHECK_ERR_RET(!exp->tok_pos, LOGMEM(ctx), LY_EMEM);
2623 exp->tok_len = ly_realloc(exp->tok_len, exp->size * sizeof *exp->tok_len);
2624 LY_CHECK_ERR_RET(!exp->tok_len, LOGMEM(ctx), LY_EMEM);
2625 }
2626
2627 exp->tokens[exp->used] = token;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002628 exp->tok_pos[exp->used] = tok_pos;
Radek Krejcib1646a92018-11-02 16:08:26 +01002629 exp->tok_len[exp->used] = tok_len;
2630 ++exp->used;
2631 return LY_SUCCESS;
2632}
2633
2634void
Michal Vasko14676352020-05-29 11:35:55 +02002635lyxp_expr_free(const struct ly_ctx *ctx, struct lyxp_expr *expr)
Radek Krejcib1646a92018-11-02 16:08:26 +01002636{
2637 uint16_t i;
2638
2639 if (!expr) {
2640 return;
2641 }
2642
2643 lydict_remove(ctx, expr->expr);
2644 free(expr->tokens);
2645 free(expr->tok_pos);
2646 free(expr->tok_len);
2647 if (expr->repeat) {
2648 for (i = 0; i < expr->used; ++i) {
2649 free(expr->repeat[i]);
2650 }
2651 }
2652 free(expr->repeat);
2653 free(expr);
2654}
2655
Radek Krejcif03a9e22020-09-18 20:09:31 +02002656LY_ERR
2657lyxp_expr_parse(const struct ly_ctx *ctx, const char *expr_str, size_t expr_len, ly_bool reparse, struct lyxp_expr **expr_p)
Radek Krejcib1646a92018-11-02 16:08:26 +01002658{
Radek Krejcif03a9e22020-09-18 20:09:31 +02002659 LY_ERR ret = LY_SUCCESS;
2660 struct lyxp_expr *expr;
Radek Krejcid4270262019-01-07 15:07:25 +01002661 size_t parsed = 0, tok_len;
Radek Krejcib1646a92018-11-02 16:08:26 +01002662 enum lyxp_token tok_type;
Radek Krejci857189e2020-09-01 13:26:36 +02002663 ly_bool prev_function_check = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002664 uint16_t tok_idx = 0;
Radek Krejcib1646a92018-11-02 16:08:26 +01002665
Radek Krejcif03a9e22020-09-18 20:09:31 +02002666 assert(expr_p);
2667
2668 if (!expr_str[0]) {
Michal Vasko004d3152020-06-11 19:59:22 +02002669 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_EOF);
Radek Krejcif03a9e22020-09-18 20:09:31 +02002670 return LY_EVALID;
Michal Vasko004d3152020-06-11 19:59:22 +02002671 }
2672
2673 if (!expr_len) {
Radek Krejcif03a9e22020-09-18 20:09:31 +02002674 expr_len = strlen(expr_str);
Michal Vasko004d3152020-06-11 19:59:22 +02002675 }
2676 if (expr_len > UINT16_MAX) {
Radek Krejcif03a9e22020-09-18 20:09:31 +02002677 LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_XPATH, "XPath expression cannot be longer than %ud characters.", UINT16_MAX);
2678 return LY_EVALID;
Radek Krejcib1646a92018-11-02 16:08:26 +01002679 }
2680
2681 /* init lyxp_expr structure */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002682 expr = calloc(1, sizeof *expr);
2683 LY_CHECK_ERR_GOTO(!expr, LOGMEM(ctx); ret = LY_EMEM, error);
2684 LY_CHECK_GOTO(ret = lydict_insert(ctx, expr_str, expr_len, &expr->expr), error);
2685 expr->used = 0;
2686 expr->size = LYXP_EXPR_SIZE_START;
2687 expr->tokens = malloc(expr->size * sizeof *expr->tokens);
2688 LY_CHECK_ERR_GOTO(!expr->tokens, LOGMEM(ctx); ret = LY_EMEM, error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002689
Radek Krejcif03a9e22020-09-18 20:09:31 +02002690 expr->tok_pos = malloc(expr->size * sizeof *expr->tok_pos);
2691 LY_CHECK_ERR_GOTO(!expr->tok_pos, LOGMEM(ctx); ret = LY_EMEM, error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002692
Radek Krejcif03a9e22020-09-18 20:09:31 +02002693 expr->tok_len = malloc(expr->size * sizeof *expr->tok_len);
2694 LY_CHECK_ERR_GOTO(!expr->tok_len, LOGMEM(ctx); ret = LY_EMEM, error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002695
Michal Vasko004d3152020-06-11 19:59:22 +02002696 /* make expr 0-terminated */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002697 expr_str = expr->expr;
Michal Vasko004d3152020-06-11 19:59:22 +02002698
Radek Krejcif03a9e22020-09-18 20:09:31 +02002699 while (is_xmlws(expr_str[parsed])) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002700 ++parsed;
2701 }
2702
2703 do {
Radek Krejcif03a9e22020-09-18 20:09:31 +02002704 if (expr_str[parsed] == '(') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002705
2706 /* '(' */
2707 tok_len = 1;
2708 tok_type = LYXP_TOKEN_PAR1;
2709
Radek Krejcif03a9e22020-09-18 20:09:31 +02002710 if (prev_function_check && expr->used && (expr->tokens[expr->used - 1] == LYXP_TOKEN_NAMETEST)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002711 /* it is a NodeType/FunctionName after all */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002712 if (((expr->tok_len[expr->used - 1] == 4)
2713 && (!strncmp(&expr_str[expr->tok_pos[expr->used - 1]], "node", 4)
2714 || !strncmp(&expr_str[expr->tok_pos[expr->used - 1]], "text", 4))) ||
2715 ((expr->tok_len[expr->used - 1] == 7)
2716 && !strncmp(&expr_str[expr->tok_pos[expr->used - 1]], "comment", 7))) {
2717 expr->tokens[expr->used - 1] = LYXP_TOKEN_NODETYPE;
Radek Krejcib1646a92018-11-02 16:08:26 +01002718 } else {
Radek Krejcif03a9e22020-09-18 20:09:31 +02002719 expr->tokens[expr->used - 1] = LYXP_TOKEN_FUNCNAME;
Radek Krejcib1646a92018-11-02 16:08:26 +01002720 }
2721 prev_function_check = 0;
2722 }
2723
Radek Krejcif03a9e22020-09-18 20:09:31 +02002724 } else if (expr_str[parsed] == ')') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002725
2726 /* ')' */
2727 tok_len = 1;
2728 tok_type = LYXP_TOKEN_PAR2;
2729
Radek Krejcif03a9e22020-09-18 20:09:31 +02002730 } else if (expr_str[parsed] == '[') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002731
2732 /* '[' */
2733 tok_len = 1;
2734 tok_type = LYXP_TOKEN_BRACK1;
2735
Radek Krejcif03a9e22020-09-18 20:09:31 +02002736 } else if (expr_str[parsed] == ']') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002737
2738 /* ']' */
2739 tok_len = 1;
2740 tok_type = LYXP_TOKEN_BRACK2;
2741
Radek Krejcif03a9e22020-09-18 20:09:31 +02002742 } else if (!strncmp(&expr_str[parsed], "..", 2)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002743
2744 /* '..' */
2745 tok_len = 2;
2746 tok_type = LYXP_TOKEN_DDOT;
2747
Radek Krejcif03a9e22020-09-18 20:09:31 +02002748 } else if ((expr_str[parsed] == '.') && (!isdigit(expr_str[parsed + 1]))) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002749
2750 /* '.' */
2751 tok_len = 1;
2752 tok_type = LYXP_TOKEN_DOT;
2753
Radek Krejcif03a9e22020-09-18 20:09:31 +02002754 } else if (expr_str[parsed] == '@') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002755
2756 /* '@' */
2757 tok_len = 1;
2758 tok_type = LYXP_TOKEN_AT;
2759
Radek Krejcif03a9e22020-09-18 20:09:31 +02002760 } else if (expr_str[parsed] == ',') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002761
2762 /* ',' */
2763 tok_len = 1;
2764 tok_type = LYXP_TOKEN_COMMA;
2765
Radek Krejcif03a9e22020-09-18 20:09:31 +02002766 } else if (expr_str[parsed] == '\'') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002767
2768 /* Literal with ' */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002769 for (tok_len = 1; (expr_str[parsed + tok_len] != '\0') && (expr_str[parsed + tok_len] != '\''); ++tok_len) {}
2770 LY_CHECK_ERR_GOTO(expr_str[parsed + tok_len] == '\0',
2771 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_EOE, expr_str[parsed], &expr_str[parsed]); ret = LY_EVALID,
2772 error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002773 ++tok_len;
2774 tok_type = LYXP_TOKEN_LITERAL;
2775
Radek Krejcif03a9e22020-09-18 20:09:31 +02002776 } else if (expr_str[parsed] == '\"') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002777
2778 /* Literal with " */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002779 for (tok_len = 1; (expr_str[parsed + tok_len] != '\0') && (expr_str[parsed + tok_len] != '\"'); ++tok_len) {}
2780 LY_CHECK_ERR_GOTO(expr_str[parsed + tok_len] == '\0',
2781 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_EOE, expr_str[parsed], &expr_str[parsed]); ret = LY_EVALID,
2782 error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002783 ++tok_len;
2784 tok_type = LYXP_TOKEN_LITERAL;
2785
Radek Krejcif03a9e22020-09-18 20:09:31 +02002786 } else if ((expr_str[parsed] == '.') || (isdigit(expr_str[parsed]))) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002787
2788 /* Number */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002789 for (tok_len = 0; isdigit(expr_str[parsed + tok_len]); ++tok_len) {}
2790 if (expr_str[parsed + tok_len] == '.') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002791 ++tok_len;
Radek Krejcif03a9e22020-09-18 20:09:31 +02002792 for ( ; isdigit(expr_str[parsed + tok_len]); ++tok_len) {}
Radek Krejcib1646a92018-11-02 16:08:26 +01002793 }
2794 tok_type = LYXP_TOKEN_NUMBER;
2795
Radek Krejcif03a9e22020-09-18 20:09:31 +02002796 } else if (expr_str[parsed] == '/') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002797
2798 /* Operator '/', '//' */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002799 if (!strncmp(&expr_str[parsed], "//", 2)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002800 tok_len = 2;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002801 tok_type = LYXP_TOKEN_OPER_RPATH;
Radek Krejcib1646a92018-11-02 16:08:26 +01002802 } else {
2803 tok_len = 1;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002804 tok_type = LYXP_TOKEN_OPER_PATH;
Radek Krejcib1646a92018-11-02 16:08:26 +01002805 }
Radek Krejcib1646a92018-11-02 16:08:26 +01002806
Radek Krejcif03a9e22020-09-18 20:09:31 +02002807 } else if (!strncmp(&expr_str[parsed], "!=", 2)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002808
Michal Vasko3e48bf32020-06-01 08:39:07 +02002809 /* Operator '!=' */
Radek Krejcib1646a92018-11-02 16:08:26 +01002810 tok_len = 2;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002811 tok_type = LYXP_TOKEN_OPER_NEQUAL;
2812
Radek Krejcif03a9e22020-09-18 20:09:31 +02002813 } else if (!strncmp(&expr_str[parsed], "<=", 2) || !strncmp(&expr_str[parsed], ">=", 2)) {
Michal Vasko3e48bf32020-06-01 08:39:07 +02002814
2815 /* Operator '<=', '>=' */
2816 tok_len = 2;
2817 tok_type = LYXP_TOKEN_OPER_COMP;
Radek Krejcib1646a92018-11-02 16:08:26 +01002818
Radek Krejcif03a9e22020-09-18 20:09:31 +02002819 } else if (expr_str[parsed] == '|') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002820
2821 /* Operator '|' */
2822 tok_len = 1;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002823 tok_type = LYXP_TOKEN_OPER_UNI;
Radek Krejcib1646a92018-11-02 16:08:26 +01002824
Radek Krejcif03a9e22020-09-18 20:09:31 +02002825 } else if ((expr_str[parsed] == '+') || (expr_str[parsed] == '-')) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002826
2827 /* Operator '+', '-' */
2828 tok_len = 1;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002829 tok_type = LYXP_TOKEN_OPER_MATH;
Radek Krejcib1646a92018-11-02 16:08:26 +01002830
Radek Krejcif03a9e22020-09-18 20:09:31 +02002831 } else if (expr_str[parsed] == '=') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002832
Michal Vasko3e48bf32020-06-01 08:39:07 +02002833 /* Operator '=' */
Radek Krejcib1646a92018-11-02 16:08:26 +01002834 tok_len = 1;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002835 tok_type = LYXP_TOKEN_OPER_EQUAL;
2836
Radek Krejcif03a9e22020-09-18 20:09:31 +02002837 } else if ((expr_str[parsed] == '<') || (expr_str[parsed] == '>')) {
Michal Vasko3e48bf32020-06-01 08:39:07 +02002838
2839 /* Operator '<', '>' */
2840 tok_len = 1;
2841 tok_type = LYXP_TOKEN_OPER_COMP;
Radek Krejcib1646a92018-11-02 16:08:26 +01002842
Radek Krejcif03a9e22020-09-18 20:09:31 +02002843 } else if (expr->used && (expr->tokens[expr->used - 1] != LYXP_TOKEN_AT)
2844 && (expr->tokens[expr->used - 1] != LYXP_TOKEN_PAR1)
2845 && (expr->tokens[expr->used - 1] != LYXP_TOKEN_BRACK1)
2846 && (expr->tokens[expr->used - 1] != LYXP_TOKEN_COMMA)
2847 && (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_LOG)
2848 && (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_EQUAL)
2849 && (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_NEQUAL)
2850 && (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_COMP)
2851 && (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_MATH)
2852 && (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_UNI)
2853 && (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_PATH)
2854 && (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_RPATH)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002855
2856 /* Operator '*', 'or', 'and', 'mod', or 'div' */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002857 if (expr_str[parsed] == '*') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002858 tok_len = 1;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002859 tok_type = LYXP_TOKEN_OPER_MATH;
Radek Krejcib1646a92018-11-02 16:08:26 +01002860
Radek Krejcif03a9e22020-09-18 20:09:31 +02002861 } else if (!strncmp(&expr_str[parsed], "or", 2)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002862 tok_len = 2;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002863 tok_type = LYXP_TOKEN_OPER_LOG;
Radek Krejcib1646a92018-11-02 16:08:26 +01002864
Radek Krejcif03a9e22020-09-18 20:09:31 +02002865 } else if (!strncmp(&expr_str[parsed], "and", 3)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002866 tok_len = 3;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002867 tok_type = LYXP_TOKEN_OPER_LOG;
Radek Krejcib1646a92018-11-02 16:08:26 +01002868
Radek Krejcif03a9e22020-09-18 20:09:31 +02002869 } else if (!strncmp(&expr_str[parsed], "mod", 3) || !strncmp(&expr_str[parsed], "div", 3)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002870 tok_len = 3;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002871 tok_type = LYXP_TOKEN_OPER_MATH;
Radek Krejcib1646a92018-11-02 16:08:26 +01002872
2873 } else if (prev_function_check) {
Michal Vasko53078572019-05-24 08:50:15 +02002874 LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_XPATH, "Invalid character 0x%x ('%c'), perhaps \"%.*s\" is supposed to be a function call.",
Radek Krejcif03a9e22020-09-18 20:09:31 +02002875 expr_str[parsed], expr_str[parsed], expr->tok_len[expr->used - 1], &expr->expr[expr->tok_pos[expr->used - 1]]);
2876 ret = LY_EVALID;
Radek Krejcib1646a92018-11-02 16:08:26 +01002877 goto error;
2878 } else {
Radek Krejcif03a9e22020-09-18 20:09:31 +02002879 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_INEXPR, parsed + 1, expr_str);
2880 ret = LY_EVALID;
Radek Krejcib1646a92018-11-02 16:08:26 +01002881 goto error;
2882 }
Radek Krejcif03a9e22020-09-18 20:09:31 +02002883 } else if (expr_str[parsed] == '*') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002884
2885 /* NameTest '*' */
2886 tok_len = 1;
2887 tok_type = LYXP_TOKEN_NAMETEST;
2888
2889 } else {
2890
2891 /* NameTest (NCName ':' '*' | QName) or NodeType/FunctionName */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002892 long int ncname_len = parse_ncname(&expr_str[parsed]);
2893 LY_CHECK_ERR_GOTO(ncname_len < 0,
2894 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_INEXPR, parsed - ncname_len + 1, expr_str); ret = LY_EVALID,
2895 error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002896 tok_len = ncname_len;
2897
Radek Krejcif03a9e22020-09-18 20:09:31 +02002898 if (expr_str[parsed + tok_len] == ':') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002899 ++tok_len;
Radek Krejcif03a9e22020-09-18 20:09:31 +02002900 if (expr_str[parsed + tok_len] == '*') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002901 ++tok_len;
2902 } else {
Radek Krejcif03a9e22020-09-18 20:09:31 +02002903 ncname_len = parse_ncname(&expr_str[parsed + tok_len]);
2904 LY_CHECK_ERR_GOTO(ncname_len < 0,
2905 LOGVAL(ctx, LY_VLOG_NONE, NULL, LY_VCODE_XP_INEXPR, parsed - ncname_len + 1, expr_str); ret = LY_EVALID,
2906 error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002907 tok_len += ncname_len;
2908 }
2909 /* remove old flag to prevent ambiguities */
2910 prev_function_check = 0;
2911 tok_type = LYXP_TOKEN_NAMETEST;
2912 } else {
2913 /* there is no prefix so it can still be NodeType/FunctionName, we can't finally decide now */
2914 prev_function_check = 1;
2915 tok_type = LYXP_TOKEN_NAMETEST;
2916 }
2917 }
2918
2919 /* store the token, move on to the next one */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002920 LY_CHECK_GOTO(ret = exp_add_token(ctx, expr, tok_type, parsed, tok_len), error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002921 parsed += tok_len;
Radek Krejcif03a9e22020-09-18 20:09:31 +02002922 while (is_xmlws(expr_str[parsed])) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002923 ++parsed;
2924 }
2925
Radek Krejcif03a9e22020-09-18 20:09:31 +02002926 } while (expr_str[parsed]);
Radek Krejcib1646a92018-11-02 16:08:26 +01002927
Michal Vasko004d3152020-06-11 19:59:22 +02002928 if (reparse) {
2929 /* prealloc repeat */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002930 expr->repeat = calloc(expr->size, sizeof *expr->repeat);
2931 LY_CHECK_ERR_GOTO(!expr->repeat, LOGMEM(ctx); ret = LY_EMEM, error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002932
Michal Vasko004d3152020-06-11 19:59:22 +02002933 /* fill repeat */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002934 LY_CHECK_ERR_GOTO(reparse_or_expr(ctx, expr, &tok_idx), ret = LY_EVALID, error);
2935 if (expr->used > tok_idx) {
Michal Vasko004d3152020-06-11 19:59:22 +02002936 LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_XPATH, "Unparsed characters \"%s\" left at the end of an XPath expression.",
Radek Krejcif03a9e22020-09-18 20:09:31 +02002937 &expr->expr[expr->tok_pos[tok_idx]]);
2938 ret = LY_EVALID;
Michal Vasko004d3152020-06-11 19:59:22 +02002939 goto error;
2940 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02002941 }
2942
Radek Krejcif03a9e22020-09-18 20:09:31 +02002943 print_expr_struct_debug(expr);
2944 *expr_p = expr;
2945 return LY_SUCCESS;
Radek Krejcib1646a92018-11-02 16:08:26 +01002946
2947error:
Radek Krejcif03a9e22020-09-18 20:09:31 +02002948 lyxp_expr_free(ctx, expr);
2949 return ret;
Radek Krejcib1646a92018-11-02 16:08:26 +01002950}
2951
Michal Vasko1734be92020-09-22 08:55:10 +02002952LY_ERR
2953lyxp_expr_dup(const struct ly_ctx *ctx, const struct lyxp_expr *exp, struct lyxp_expr **dup_p)
Michal Vasko004d3152020-06-11 19:59:22 +02002954{
Michal Vasko1734be92020-09-22 08:55:10 +02002955 LY_ERR ret = LY_SUCCESS;
2956 struct lyxp_expr *dup = NULL;
Michal Vasko004d3152020-06-11 19:59:22 +02002957 uint32_t i, j;
2958
2959 dup = calloc(1, sizeof *dup);
Michal Vasko1734be92020-09-22 08:55:10 +02002960 LY_CHECK_ERR_GOTO(!dup, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02002961
2962 dup->tokens = malloc(exp->used * sizeof *dup->tokens);
Michal Vasko1734be92020-09-22 08:55:10 +02002963 LY_CHECK_ERR_GOTO(!dup->tokens, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02002964 memcpy(dup->tokens, exp->tokens, exp->used * sizeof *dup->tokens);
2965
2966 dup->tok_pos = malloc(exp->used * sizeof *dup->tok_pos);
Michal Vasko1734be92020-09-22 08:55:10 +02002967 LY_CHECK_ERR_GOTO(!dup->tok_pos, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02002968 memcpy(dup->tok_pos, exp->tok_pos, exp->used * sizeof *dup->tok_pos);
2969
2970 dup->tok_len = malloc(exp->used * sizeof *dup->tok_len);
Michal Vasko1734be92020-09-22 08:55:10 +02002971 LY_CHECK_ERR_GOTO(!dup->tok_len, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02002972 memcpy(dup->tok_len, exp->tok_len, exp->used * sizeof *dup->tok_len);
2973
2974 dup->repeat = malloc(exp->used * sizeof *dup->repeat);
Michal Vasko1734be92020-09-22 08:55:10 +02002975 LY_CHECK_ERR_GOTO(!dup->repeat, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02002976 for (i = 0; i < exp->used; ++i) {
2977 if (!exp->repeat[i]) {
2978 dup->repeat[i] = NULL;
2979 } else {
Radek Krejci1e008d22020-08-17 11:37:37 +02002980 for (j = 0; exp->repeat[i][j]; ++j) {}
Michal Vasko004d3152020-06-11 19:59:22 +02002981 /* the ending 0 as well */
2982 ++j;
2983
Michal Vasko99c71642020-07-03 13:33:36 +02002984 dup->repeat[i] = malloc(j * sizeof **dup->repeat);
Michal Vasko1734be92020-09-22 08:55:10 +02002985 LY_CHECK_ERR_GOTO(!dup->repeat[i], LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02002986 memcpy(dup->repeat[i], exp->repeat[i], j * sizeof **dup->repeat);
2987 dup->repeat[i][j - 1] = 0;
2988 }
2989 }
2990
2991 dup->used = exp->used;
2992 dup->size = exp->used;
Michal Vasko1734be92020-09-22 08:55:10 +02002993 LY_CHECK_GOTO(ret = lydict_insert(ctx, exp->expr, 0, &dup->expr), cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02002994
Michal Vasko1734be92020-09-22 08:55:10 +02002995cleanup:
2996 if (ret) {
2997 lyxp_expr_free(ctx, dup);
2998 } else {
2999 *dup_p = dup;
3000 }
3001 return ret;
Michal Vasko004d3152020-06-11 19:59:22 +02003002}
3003
Michal Vasko03ff5a72019-09-11 13:49:33 +02003004/*
3005 * warn functions
3006 *
3007 * Warn functions check specific reasonable conditions for schema XPath
3008 * and print a warning if they are not satisfied.
3009 */
3010
3011/**
3012 * @brief Get the last-added schema node that is currently in the context.
3013 *
3014 * @param[in] set Set to search in.
3015 * @return Last-added schema context node, NULL if no node is in context.
3016 */
3017static struct lysc_node *
3018warn_get_scnode_in_ctx(struct lyxp_set *set)
3019{
3020 uint32_t i;
3021
3022 if (!set || (set->type != LYXP_SET_SCNODE_SET)) {
3023 return NULL;
3024 }
3025
3026 i = set->used;
3027 do {
3028 --i;
3029 if (set->val.scnodes[i].in_ctx == 1) {
3030 /* if there are more, simply return the first found (last added) */
3031 return set->val.scnodes[i].scnode;
3032 }
3033 } while (i);
3034
3035 return NULL;
3036}
3037
3038/**
3039 * @brief Test whether a type is numeric - integer type or decimal64.
3040 *
3041 * @param[in] type Type to test.
Radek Krejci857189e2020-09-01 13:26:36 +02003042 * @return Boolean value whether @p type is numeric type or not.
Michal Vasko03ff5a72019-09-11 13:49:33 +02003043 */
Radek Krejci857189e2020-09-01 13:26:36 +02003044static ly_bool
Michal Vasko03ff5a72019-09-11 13:49:33 +02003045warn_is_numeric_type(struct lysc_type *type)
3046{
3047 struct lysc_type_union *uni;
Radek Krejci857189e2020-09-01 13:26:36 +02003048 ly_bool ret;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003049 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003050
3051 switch (type->basetype) {
3052 case LY_TYPE_DEC64:
3053 case LY_TYPE_INT8:
3054 case LY_TYPE_UINT8:
3055 case LY_TYPE_INT16:
3056 case LY_TYPE_UINT16:
3057 case LY_TYPE_INT32:
3058 case LY_TYPE_UINT32:
3059 case LY_TYPE_INT64:
3060 case LY_TYPE_UINT64:
3061 return 1;
3062 case LY_TYPE_UNION:
3063 uni = (struct lysc_type_union *)type;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003064 LY_ARRAY_FOR(uni->types, u) {
3065 ret = warn_is_numeric_type(uni->types[u]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003066 if (ret) {
3067 /* found a suitable type */
Radek Krejci857189e2020-09-01 13:26:36 +02003068 return ret;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003069 }
3070 }
3071 /* did not find any suitable type */
3072 return 0;
3073 case LY_TYPE_LEAFREF:
3074 return warn_is_numeric_type(((struct lysc_type_leafref *)type)->realtype);
3075 default:
3076 return 0;
3077 }
3078}
3079
3080/**
3081 * @brief Test whether a type is string-like - no integers, decimal64 or binary.
3082 *
3083 * @param[in] type Type to test.
Radek Krejci857189e2020-09-01 13:26:36 +02003084 * @return Boolean value whether @p type's basetype is string type or not.
Michal Vasko03ff5a72019-09-11 13:49:33 +02003085 */
Radek Krejci857189e2020-09-01 13:26:36 +02003086static ly_bool
Michal Vasko03ff5a72019-09-11 13:49:33 +02003087warn_is_string_type(struct lysc_type *type)
3088{
3089 struct lysc_type_union *uni;
Radek Krejci857189e2020-09-01 13:26:36 +02003090 ly_bool ret;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003091 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003092
3093 switch (type->basetype) {
3094 case LY_TYPE_BITS:
3095 case LY_TYPE_ENUM:
3096 case LY_TYPE_IDENT:
3097 case LY_TYPE_INST:
3098 case LY_TYPE_STRING:
3099 return 1;
3100 case LY_TYPE_UNION:
3101 uni = (struct lysc_type_union *)type;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003102 LY_ARRAY_FOR(uni->types, u) {
3103 ret = warn_is_string_type(uni->types[u]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003104 if (ret) {
3105 /* found a suitable type */
Radek Krejci857189e2020-09-01 13:26:36 +02003106 return ret;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003107 }
3108 }
3109 /* did not find any suitable type */
3110 return 0;
3111 case LY_TYPE_LEAFREF:
3112 return warn_is_string_type(((struct lysc_type_leafref *)type)->realtype);
3113 default:
3114 return 0;
3115 }
3116}
3117
3118/**
3119 * @brief Test whether a type is one specific type.
3120 *
3121 * @param[in] type Type to test.
3122 * @param[in] base Expected type.
Radek Krejci857189e2020-09-01 13:26:36 +02003123 * @return Boolean value whether the given @p type is of the specific basetype @p base.
Michal Vasko03ff5a72019-09-11 13:49:33 +02003124 */
Radek Krejci857189e2020-09-01 13:26:36 +02003125static ly_bool
Michal Vasko03ff5a72019-09-11 13:49:33 +02003126warn_is_specific_type(struct lysc_type *type, LY_DATA_TYPE base)
3127{
3128 struct lysc_type_union *uni;
Radek Krejci857189e2020-09-01 13:26:36 +02003129 ly_bool ret;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003130 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003131
3132 if (type->basetype == base) {
3133 return 1;
3134 } else if (type->basetype == LY_TYPE_UNION) {
3135 uni = (struct lysc_type_union *)type;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003136 LY_ARRAY_FOR(uni->types, u) {
3137 ret = warn_is_specific_type(uni->types[u], base);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003138 if (ret) {
3139 /* found a suitable type */
Radek Krejci857189e2020-09-01 13:26:36 +02003140 return ret;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003141 }
3142 }
3143 /* did not find any suitable type */
3144 return 0;
3145 } else if (type->basetype == LY_TYPE_LEAFREF) {
3146 return warn_is_specific_type(((struct lysc_type_leafref *)type)->realtype, base);
3147 }
3148
3149 return 0;
3150}
3151
3152/**
3153 * @brief Get next type of a (union) type.
3154 *
3155 * @param[in] type Base type.
3156 * @param[in] prev_type Previously returned type.
3157 * @return Next type or NULL.
3158 */
3159static struct lysc_type *
3160warn_is_equal_type_next_type(struct lysc_type *type, struct lysc_type *prev_type)
3161{
3162 struct lysc_type_union *uni;
Radek Krejci857189e2020-09-01 13:26:36 +02003163 ly_bool found = 0;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003164 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003165
3166 switch (type->basetype) {
3167 case LY_TYPE_UNION:
3168 uni = (struct lysc_type_union *)type;
3169 if (!prev_type) {
3170 return uni->types[0];
3171 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003172 LY_ARRAY_FOR(uni->types, u) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003173 if (found) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003174 return uni->types[u];
Michal Vasko03ff5a72019-09-11 13:49:33 +02003175 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003176 if (prev_type == uni->types[u]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003177 found = 1;
3178 }
3179 }
3180 return NULL;
3181 default:
3182 if (prev_type) {
3183 assert(type == prev_type);
3184 return NULL;
3185 } else {
3186 return type;
3187 }
3188 }
3189}
3190
3191/**
3192 * @brief Test whether 2 types have a common type.
3193 *
3194 * @param[in] type1 First type.
3195 * @param[in] type2 Second type.
3196 * @return 1 if they do, 0 otherwise.
3197 */
3198static int
3199warn_is_equal_type(struct lysc_type *type1, struct lysc_type *type2)
3200{
3201 struct lysc_type *t1, *rt1, *t2, *rt2;
3202
3203 t1 = NULL;
3204 while ((t1 = warn_is_equal_type_next_type(type1, t1))) {
3205 if (t1->basetype == LY_TYPE_LEAFREF) {
3206 rt1 = ((struct lysc_type_leafref *)t1)->realtype;
3207 } else {
3208 rt1 = t1;
3209 }
3210
3211 t2 = NULL;
3212 while ((t2 = warn_is_equal_type_next_type(type2, t2))) {
3213 if (t2->basetype == LY_TYPE_LEAFREF) {
3214 rt2 = ((struct lysc_type_leafref *)t2)->realtype;
3215 } else {
3216 rt2 = t2;
3217 }
3218
3219 if (rt2->basetype == rt1->basetype) {
3220 /* match found */
3221 return 1;
3222 }
3223 }
3224 }
3225
3226 return 0;
3227}
3228
3229/**
3230 * @brief Check both operands of comparison operators.
3231 *
3232 * @param[in] ctx Context for errors.
3233 * @param[in] set1 First operand set.
3234 * @param[in] set2 Second operand set.
3235 * @param[in] numbers_only Whether accept only numbers or other types are fine too (for '=' and '!=').
3236 * @param[in] expr Start of the expression to print with the warning.
3237 * @param[in] tok_pos Token position.
3238 */
3239static void
Radek Krejci857189e2020-09-01 13:26:36 +02003240warn_operands(struct ly_ctx *ctx, struct lyxp_set *set1, struct lyxp_set *set2, ly_bool numbers_only, const char *expr, uint16_t tok_pos)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003241{
3242 struct lysc_node_leaf *node1, *node2;
Radek Krejci857189e2020-09-01 13:26:36 +02003243 ly_bool leaves = 1, warning = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003244
3245 node1 = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(set1);
3246 node2 = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(set2);
3247
3248 if (!node1 && !node2) {
3249 /* no node-sets involved, nothing to do */
3250 return;
3251 }
3252
3253 if (node1) {
3254 if (!(node1->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3255 LOGWRN(ctx, "Node type %s \"%s\" used as operand.", lys_nodetype2str(node1->nodetype), node1->name);
3256 warning = 1;
3257 leaves = 0;
3258 } else if (numbers_only && !warn_is_numeric_type(node1->type)) {
3259 LOGWRN(ctx, "Node \"%s\" is not of a numeric type, but used where it was expected.", node1->name);
3260 warning = 1;
3261 }
3262 }
3263
3264 if (node2) {
3265 if (!(node2->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3266 LOGWRN(ctx, "Node type %s \"%s\" used as operand.", lys_nodetype2str(node2->nodetype), node2->name);
3267 warning = 1;
3268 leaves = 0;
3269 } else if (numbers_only && !warn_is_numeric_type(node2->type)) {
3270 LOGWRN(ctx, "Node \"%s\" is not of a numeric type, but used where it was expected.", node2->name);
3271 warning = 1;
3272 }
3273 }
3274
3275 if (node1 && node2 && leaves && !numbers_only) {
3276 if ((warn_is_numeric_type(node1->type) && !warn_is_numeric_type(node2->type))
3277 || (!warn_is_numeric_type(node1->type) && warn_is_numeric_type(node2->type))
3278 || (!warn_is_numeric_type(node1->type) && !warn_is_numeric_type(node2->type)
3279 && !warn_is_equal_type(node1->type, node2->type))) {
3280 LOGWRN(ctx, "Incompatible types of operands \"%s\" and \"%s\" for comparison.", node1->name, node2->name);
3281 warning = 1;
3282 }
3283 }
3284
3285 if (warning) {
3286 LOGWRN(ctx, "Previous warning generated by XPath subexpression[%u] \"%.20s\".", tok_pos, expr + tok_pos);
3287 }
3288}
3289
3290/**
3291 * @brief Check that a value is valid for a leaf. If not applicable, does nothing.
3292 *
3293 * @param[in] exp Parsed XPath expression.
3294 * @param[in] set Set with the leaf/leaf-list.
3295 * @param[in] val_exp Index of the value (literal/number) in @p exp.
3296 * @param[in] equal_exp Index of the start of the equality expression in @p exp.
3297 * @param[in] last_equal_exp Index of the end of the equality expression in @p exp.
3298 */
3299static void
3300warn_equality_value(struct lyxp_expr *exp, struct lyxp_set *set, uint16_t val_exp, uint16_t equal_exp, uint16_t last_equal_exp)
3301{
3302 struct lysc_node *scnode;
3303 struct lysc_type *type;
3304 char *value;
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003305 struct lyd_value storage;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003306 LY_ERR rc;
3307 struct ly_err_item *err = NULL;
3308
3309 if ((scnode = warn_get_scnode_in_ctx(set)) && (scnode->nodetype & (LYS_LEAF | LYS_LEAFLIST))
3310 && ((exp->tokens[val_exp] == LYXP_TOKEN_LITERAL) || (exp->tokens[val_exp] == LYXP_TOKEN_NUMBER))) {
3311 /* check that the node can have the specified value */
3312 if (exp->tokens[val_exp] == LYXP_TOKEN_LITERAL) {
3313 value = strndup(exp->expr + exp->tok_pos[val_exp] + 1, exp->tok_len[val_exp] - 2);
3314 } else {
3315 value = strndup(exp->expr + exp->tok_pos[val_exp], exp->tok_len[val_exp]);
3316 }
3317 if (!value) {
3318 LOGMEM(set->ctx);
3319 return;
3320 }
3321
3322 if ((((struct lysc_node_leaf *)scnode)->type->basetype == LY_TYPE_IDENT) && !strchr(value, ':')) {
3323 LOGWRN(set->ctx, "Identityref \"%s\" comparison with identity \"%s\" without prefix, consider adding"
3324 " a prefix or best using \"derived-from(-or-self)()\" functions.", scnode->name, value);
3325 LOGWRN(set->ctx, "Previous warning generated by XPath subexpression[%u] \"%.*s\".", exp->tok_pos[equal_exp],
Radek Krejci0f969882020-08-21 16:56:47 +02003326 (exp->tok_pos[last_equal_exp] - exp->tok_pos[equal_exp]) + exp->tok_len[last_equal_exp],
Michal Vasko03ff5a72019-09-11 13:49:33 +02003327 exp->expr + exp->tok_pos[equal_exp]);
3328 }
3329
3330 type = ((struct lysc_node_leaf *)scnode)->type;
3331 if (type->basetype != LY_TYPE_IDENT) {
Michal Vaskoc8a230d2020-08-14 12:17:10 +02003332 rc = type->plugin->store(set->ctx, type, value, strlen(value), LY_TYPE_OPTS_SCHEMA, LY_PREF_SCHEMA,
Radek Krejci0f969882020-08-21 16:56:47 +02003333 (void *)set->local_mod, NULL, NULL, &storage, &err);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003334
3335 if (err) {
3336 LOGWRN(set->ctx, "Invalid value \"%s\" which does not fit the type (%s).", value, err->msg);
3337 ly_err_free(err);
3338 } else if (rc != LY_SUCCESS) {
3339 LOGWRN(set->ctx, "Invalid value \"%s\" which does not fit the type.", value);
3340 }
3341 if (rc != LY_SUCCESS) {
3342 LOGWRN(set->ctx, "Previous warning generated by XPath subexpression[%u] \"%.*s\".", exp->tok_pos[equal_exp],
Radek Krejci0f969882020-08-21 16:56:47 +02003343 (exp->tok_pos[last_equal_exp] - exp->tok_pos[equal_exp]) + exp->tok_len[last_equal_exp],
Michal Vasko03ff5a72019-09-11 13:49:33 +02003344 exp->expr + exp->tok_pos[equal_exp]);
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003345 } else {
3346 type->plugin->free(set->ctx, &storage);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003347 }
3348 }
3349 free(value);
3350 }
3351}
3352
3353/*
3354 * XPath functions
3355 */
3356
3357/**
3358 * @brief Execute the YANG 1.1 bit-is-set(node-set, string) function. Returns LYXP_SET_BOOLEAN
3359 * depending on whether the first node bit value from the second argument is set.
3360 *
3361 * @param[in] args Array of arguments.
3362 * @param[in] arg_count Count of elements in @p args.
3363 * @param[in,out] set Context and result set at the same time.
3364 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003365 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003366 */
3367static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003368xpath_bit_is_set(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003369{
3370 struct lyd_node_term *leaf;
3371 struct lysc_node_leaf *sleaf;
3372 struct lysc_type_bits *bits;
3373 LY_ERR rc = LY_SUCCESS;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003374 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003375
3376 if (options & LYXP_SCNODE_ALL) {
3377 if ((args[0]->type != LYXP_SET_SCNODE_SET) || !(sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3378 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003379 } else if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3380 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 +02003381 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_BITS)) {
3382 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"bits\".", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003383 }
3384
3385 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
3386 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3387 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 +02003388 } else if (!warn_is_string_type(sleaf->type)) {
3389 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003390 }
3391 }
3392 set_scnode_clear_ctx(set);
3393 return rc;
3394 }
3395
Michal Vaskod3678892020-05-21 10:06:58 +02003396 if (args[0]->type != LYXP_SET_NODE_SET) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003397 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)");
3398 return LY_EVALID;
3399 }
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003400 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003401 LY_CHECK_RET(rc);
3402
3403 set_fill_boolean(set, 0);
Michal Vaskod3678892020-05-21 10:06:58 +02003404 if (args[0]->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003405 leaf = (struct lyd_node_term *)args[0]->val.nodes[0].node;
3406 if ((leaf->schema->nodetype & (LYS_LEAF | LYS_LEAFLIST))
3407 && (((struct lysc_node_leaf *)leaf->schema)->type->basetype == LY_TYPE_BITS)) {
3408 bits = (struct lysc_type_bits *)((struct lysc_node_leaf *)leaf->schema)->type;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003409 LY_ARRAY_FOR(bits->bits, u) {
3410 if (!strcmp(bits->bits[u].name, args[1]->val.str)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003411 set_fill_boolean(set, 1);
3412 break;
3413 }
3414 }
3415 }
3416 }
3417
3418 return LY_SUCCESS;
3419}
3420
3421/**
3422 * @brief Execute the XPath boolean(object) function. Returns LYXP_SET_BOOLEAN
3423 * with the argument converted to boolean.
3424 *
3425 * @param[in] args Array of arguments.
3426 * @param[in] arg_count Count of elements in @p args.
3427 * @param[in,out] set Context and result set at the same time.
3428 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003429 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003430 */
3431static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003432xpath_boolean(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003433{
3434 LY_ERR rc;
3435
3436 if (options & LYXP_SCNODE_ALL) {
3437 set_scnode_clear_ctx(set);
3438 return LY_SUCCESS;
3439 }
3440
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003441 rc = lyxp_set_cast(args[0], LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003442 LY_CHECK_RET(rc);
3443 set_fill_set(set, args[0]);
3444
3445 return LY_SUCCESS;
3446}
3447
3448/**
3449 * @brief Execute the XPath ceiling(number) function. Returns LYXP_SET_NUMBER
3450 * with the first argument rounded up to the nearest integer.
3451 *
3452 * @param[in] args Array of arguments.
3453 * @param[in] arg_count Count of elements in @p args.
3454 * @param[in,out] set Context and result set at the same time.
3455 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003456 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003457 */
3458static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003459xpath_ceiling(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003460{
3461 struct lysc_node_leaf *sleaf;
3462 LY_ERR rc = LY_SUCCESS;
3463
3464 if (options & LYXP_SCNODE_ALL) {
3465 if ((args[0]->type != LYXP_SET_SCNODE_SET) || !(sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3466 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003467 } else if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3468 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 +02003469 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_DEC64)) {
3470 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"decimal64\".", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003471 }
3472 set_scnode_clear_ctx(set);
3473 return rc;
3474 }
3475
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003476 rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003477 LY_CHECK_RET(rc);
3478 if ((long long)args[0]->val.num != args[0]->val.num) {
3479 set_fill_number(set, ((long long)args[0]->val.num) + 1);
3480 } else {
3481 set_fill_number(set, args[0]->val.num);
3482 }
3483
3484 return LY_SUCCESS;
3485}
3486
3487/**
3488 * @brief Execute the XPath concat(string, string, string*) function.
3489 * Returns LYXP_SET_STRING with the concatenation of all the arguments.
3490 *
3491 * @param[in] args Array of arguments.
3492 * @param[in] arg_count Count of elements in @p args.
3493 * @param[in,out] set Context and result set at the same time.
3494 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003495 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003496 */
3497static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003498xpath_concat(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003499{
3500 uint16_t i;
3501 char *str = NULL;
3502 size_t used = 1;
3503 LY_ERR rc = LY_SUCCESS;
3504 struct lysc_node_leaf *sleaf;
3505
3506 if (options & LYXP_SCNODE_ALL) {
3507 for (i = 0; i < arg_count; ++i) {
3508 if ((args[i]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[i]))) {
3509 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3510 LOGWRN(set->ctx, "Argument #%u of %s is a %s node \"%s\".",
3511 i + 1, __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003512 } else if (!warn_is_string_type(sleaf->type)) {
Radek Krejci70124c82020-08-14 22:17:03 +02003513 LOGWRN(set->ctx, "Argument #%u of %s is node \"%s\", not of string-type.", i + 1, __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003514 }
3515 }
3516 }
3517 set_scnode_clear_ctx(set);
3518 return rc;
3519 }
3520
3521 for (i = 0; i < arg_count; ++i) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003522 rc = lyxp_set_cast(args[i], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003523 if (rc != LY_SUCCESS) {
3524 free(str);
3525 return rc;
3526 }
3527
3528 str = ly_realloc(str, (used + strlen(args[i]->val.str)) * sizeof(char));
3529 LY_CHECK_ERR_RET(!str, LOGMEM(set->ctx), LY_EMEM);
3530 strcpy(str + used - 1, args[i]->val.str);
3531 used += strlen(args[i]->val.str);
3532 }
3533
3534 /* free, kind of */
Michal Vaskod3678892020-05-21 10:06:58 +02003535 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003536 set->type = LYXP_SET_STRING;
3537 set->val.str = str;
3538
3539 return LY_SUCCESS;
3540}
3541
3542/**
3543 * @brief Execute the XPath contains(string, string) function.
3544 * Returns LYXP_SET_BOOLEAN whether the second argument can
3545 * be found in the first or not.
3546 *
3547 * @param[in] args Array of arguments.
3548 * @param[in] arg_count Count of elements in @p args.
3549 * @param[in,out] set Context and result set at the same time.
3550 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003551 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003552 */
3553static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003554xpath_contains(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003555{
3556 struct lysc_node_leaf *sleaf;
3557 LY_ERR rc = LY_SUCCESS;
3558
3559 if (options & LYXP_SCNODE_ALL) {
3560 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3561 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3562 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 +02003563 } else if (!warn_is_string_type(sleaf->type)) {
3564 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003565 }
3566 }
3567
3568 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
3569 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3570 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 +02003571 } else if (!warn_is_string_type(sleaf->type)) {
3572 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003573 }
3574 }
3575 set_scnode_clear_ctx(set);
3576 return rc;
3577 }
3578
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003579 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003580 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003581 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003582 LY_CHECK_RET(rc);
3583
3584 if (strstr(args[0]->val.str, args[1]->val.str)) {
3585 set_fill_boolean(set, 1);
3586 } else {
3587 set_fill_boolean(set, 0);
3588 }
3589
3590 return LY_SUCCESS;
3591}
3592
3593/**
3594 * @brief Execute the XPath count(node-set) function. Returns LYXP_SET_NUMBER
3595 * with the size of the node-set from the argument.
3596 *
3597 * @param[in] args Array of arguments.
3598 * @param[in] arg_count Count of elements in @p args.
3599 * @param[in,out] set Context and result set at the same time.
3600 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003601 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003602 */
3603static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003604xpath_count(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003605{
3606 struct lysc_node *scnode = NULL;
3607 LY_ERR rc = LY_SUCCESS;
3608
3609 if (options & LYXP_SCNODE_ALL) {
3610 if ((args[0]->type != LYXP_SET_SCNODE_SET) || !(scnode = warn_get_scnode_in_ctx(args[0]))) {
3611 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003612 }
3613 set_scnode_clear_ctx(set);
3614 return rc;
3615 }
3616
Michal Vasko03ff5a72019-09-11 13:49:33 +02003617 if (args[0]->type != LYXP_SET_NODE_SET) {
3618 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "count(node-set)");
3619 return LY_EVALID;
3620 }
3621
3622 set_fill_number(set, args[0]->used);
3623 return LY_SUCCESS;
3624}
3625
3626/**
3627 * @brief Execute the XPath current() function. Returns LYXP_SET_NODE_SET
3628 * with the context with the intial node.
3629 *
3630 * @param[in] args Array of arguments.
3631 * @param[in] arg_count Count of elements in @p args.
3632 * @param[in,out] set Context and result set at the same time.
3633 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003634 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003635 */
3636static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003637xpath_current(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003638{
3639 if (arg_count || args) {
3640 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INARGCOUNT, arg_count, "current()");
3641 return LY_EVALID;
3642 }
3643
3644 if (options & LYXP_SCNODE_ALL) {
3645 set_scnode_clear_ctx(set);
3646
Radek Krejciaa6b53f2020-08-27 15:19:03 +02003647 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, set->ctx_scnode, LYXP_NODE_ELEM, NULL));
Michal Vasko03ff5a72019-09-11 13:49:33 +02003648 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02003649 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003650
3651 /* position is filled later */
3652 set_insert_node(set, set->ctx_node, 0, LYXP_NODE_ELEM, 0);
3653 }
3654
3655 return LY_SUCCESS;
3656}
3657
3658/**
3659 * @brief Execute the YANG 1.1 deref(node-set) function. Returns LYXP_SET_NODE_SET with either
3660 * leafref or instance-identifier target node(s).
3661 *
3662 * @param[in] args Array of arguments.
3663 * @param[in] arg_count Count of elements in @p args.
3664 * @param[in,out] set Context and result set at the same time.
3665 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003666 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003667 */
3668static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003669xpath_deref(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003670{
3671 struct lyd_node_term *leaf;
Michal Vasko42e497c2020-01-06 08:38:25 +01003672 struct lysc_node_leaf *sleaf = NULL;
Michal Vasko004d3152020-06-11 19:59:22 +02003673 struct lysc_type_leafref *lref;
Michal Vaskoae9e4cb2019-09-25 08:43:05 +02003674 const struct lysc_node *target;
Michal Vasko004d3152020-06-11 19:59:22 +02003675 struct ly_path *p;
3676 struct lyd_node *node;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003677 char *errmsg = NULL;
Michal Vasko00cbf532020-06-15 13:58:47 +02003678 uint8_t oper;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003679 LY_ERR rc = LY_SUCCESS;
3680
3681 if (options & LYXP_SCNODE_ALL) {
3682 if ((args[0]->type != LYXP_SET_SCNODE_SET) || !(sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3683 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003684 } else if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3685 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 +02003686 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_LEAFREF) && !warn_is_specific_type(sleaf->type, LY_TYPE_INST)) {
3687 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"leafref\" nor \"instance-identifier\".",
3688 __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003689 }
3690 set_scnode_clear_ctx(set);
Michal Vasko42e497c2020-01-06 08:38:25 +01003691 if (sleaf && (sleaf->type->basetype == LY_TYPE_LEAFREF)) {
Michal Vasko004d3152020-06-11 19:59:22 +02003692 lref = (struct lysc_type_leafref *)sleaf->type;
Michal Vasko00cbf532020-06-15 13:58:47 +02003693 oper = lysc_is_output((struct lysc_node *)sleaf) ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT;
Michal Vasko004d3152020-06-11 19:59:22 +02003694
3695 /* it was already evaluated on schema, it must succeed */
Michal Vaskoc8a230d2020-08-14 12:17:10 +02003696 rc = ly_path_compile(set->ctx, sleaf->module, (struct lysc_node *)sleaf, lref->path, LY_PATH_LREF_TRUE,
3697 oper, LY_PATH_TARGET_MANY, set->format, lref->path_context, &p);
Michal Vasko004d3152020-06-11 19:59:22 +02003698 assert(!rc);
3699
3700 /* get the target node */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003701 target = p[LY_ARRAY_COUNT(p) - 1].node;
Michal Vasko004d3152020-06-11 19:59:22 +02003702 ly_path_free(set->ctx, p);
3703
Radek Krejciaa6b53f2020-08-27 15:19:03 +02003704 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, target, LYXP_NODE_ELEM, NULL));
Michal Vaskoae9e4cb2019-09-25 08:43:05 +02003705 }
3706
Michal Vasko03ff5a72019-09-11 13:49:33 +02003707 return rc;
3708 }
3709
Michal Vaskod3678892020-05-21 10:06:58 +02003710 if (args[0]->type != LYXP_SET_NODE_SET) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003711 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "deref(node-set)");
3712 return LY_EVALID;
3713 }
3714
Michal Vaskod3678892020-05-21 10:06:58 +02003715 lyxp_set_free_content(set);
3716 if (args[0]->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003717 leaf = (struct lyd_node_term *)args[0]->val.nodes[0].node;
3718 sleaf = (struct lysc_node_leaf *)leaf->schema;
3719 if (sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST)) {
3720 if (sleaf->type->basetype == LY_TYPE_LEAFREF) {
3721 /* find leafref target */
Michal Vasko004d3152020-06-11 19:59:22 +02003722 if (ly_type_find_leafref((struct lysc_type_leafref *)sleaf->type, (struct lyd_node *)leaf,
3723 &leaf->value, set->tree, &node, &errmsg)) {
3724 LOGERR(set->ctx, LY_EVALID, errmsg);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003725 free(errmsg);
Michal Vasko004d3152020-06-11 19:59:22 +02003726 return LY_EVALID;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003727 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02003728 } else {
3729 assert(sleaf->type->basetype == LY_TYPE_INST);
Michal Vasko004d3152020-06-11 19:59:22 +02003730 if (ly_path_eval(leaf->value.target, set->tree, &node)) {
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003731 LOGERR(set->ctx, LY_EVALID, "Invalid instance-identifier \"%s\" value - required instance not found.",
Michal Vaskob7be7a82020-08-20 09:09:04 +02003732 LYD_CANON_VALUE(leaf));
Michal Vasko03ff5a72019-09-11 13:49:33 +02003733 return LY_EVALID;
3734 }
3735 }
Michal Vasko004d3152020-06-11 19:59:22 +02003736
3737 /* insert it */
3738 set_insert_node(set, node, 0, LYXP_NODE_ELEM, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003739 }
3740 }
3741
3742 return LY_SUCCESS;
3743}
3744
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003745static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003746xpath_derived_(struct lyxp_set **args, struct lyxp_set *set, uint32_t options, ly_bool self_match, const char *func)
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003747{
3748 uint16_t i;
3749 LY_ARRAY_COUNT_TYPE u;
3750 struct lyd_node_term *leaf;
3751 struct lysc_node_leaf *sleaf;
3752 struct lyd_meta *meta;
3753 struct lyd_value data = {0}, *val;
3754 struct ly_err_item *err = NULL;
3755 LY_ERR rc = LY_SUCCESS;
Radek Krejci857189e2020-09-01 13:26:36 +02003756 ly_bool found;
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003757
3758 if (options & LYXP_SCNODE_ALL) {
3759 if ((args[0]->type != LYXP_SET_SCNODE_SET) || !(sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3760 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", func);
3761 } else if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3762 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", func, lys_nodetype2str(sleaf->nodetype),
3763 sleaf->name);
3764 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_IDENT)) {
3765 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"identityref\".", func, sleaf->name);
3766 }
3767
3768 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
3769 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3770 LOGWRN(set->ctx, "Argument #2 of %s is a %s node \"%s\".", func, lys_nodetype2str(sleaf->nodetype),
3771 sleaf->name);
3772 } else if (!warn_is_string_type(sleaf->type)) {
3773 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", func, sleaf->name);
3774 }
3775 }
3776 set_scnode_clear_ctx(set);
3777 return rc;
3778 }
3779
3780 if (args[0]->type != LYXP_SET_NODE_SET) {
3781 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]),
3782 "derived-from(-or-self)(node-set, string)");
3783 return LY_EVALID;
3784 }
3785 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
3786 LY_CHECK_RET(rc);
3787
3788 set_fill_boolean(set, 0);
3789 found = 0;
3790 for (i = 0; i < args[0]->used; ++i) {
3791 if ((args[0]->val.nodes[i].type != LYXP_NODE_ELEM) && (args[0]->val.nodes[i].type != LYXP_NODE_META)) {
3792 continue;
3793 }
3794
3795 if (args[0]->val.nodes[i].type == LYXP_NODE_ELEM) {
3796 leaf = (struct lyd_node_term *)args[0]->val.nodes[i].node;
3797 sleaf = (struct lysc_node_leaf *)leaf->schema;
3798 val = &leaf->value;
3799 if (!(sleaf->nodetype & LYD_NODE_TERM) || (leaf->value.realtype->basetype != LY_TYPE_IDENT)) {
3800 /* uninteresting */
3801 continue;
3802 }
3803
3804 /* store args[1] as ident */
3805 rc = val->realtype->plugin->store(set->ctx, val->realtype, args[1]->val.str, strlen(args[1]->val.str),
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003806 0, set->format, (void *)set->local_mod,
Radek Krejci0f969882020-08-21 16:56:47 +02003807 (struct lyd_node *)leaf, set->tree, &data, &err);
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003808 } else {
3809 meta = args[0]->val.meta[i].meta;
3810 val = &meta->value;
3811 if (val->realtype->basetype != LY_TYPE_IDENT) {
3812 /* uninteresting */
3813 continue;
3814 }
3815
3816 /* store args[1] as ident */
3817 rc = val->realtype->plugin->store(set->ctx, val->realtype, args[1]->val.str, strlen(args[1]->val.str),
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003818 0, set->format, (void *)meta->annotation->module,
3819 meta->parent, set->tree, &data, &err);
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003820 }
3821
3822 if (err) {
3823 ly_err_print(err);
3824 ly_err_free(err);
3825 }
3826 LY_CHECK_RET(rc);
3827
3828 /* finally check the identity itself */
3829 if (self_match && (data.ident == val->ident)) {
3830 set_fill_boolean(set, 1);
3831 found = 1;
3832 }
3833 if (!found) {
3834 LY_ARRAY_FOR(data.ident->derived, u) {
3835 if (data.ident->derived[u] == val->ident) {
3836 set_fill_boolean(set, 1);
3837 found = 1;
3838 break;
3839 }
3840 }
3841 }
3842
3843 /* free temporary value */
3844 val->realtype->plugin->free(set->ctx, &data);
3845 if (found) {
3846 break;
3847 }
3848 }
3849
3850 return LY_SUCCESS;
3851}
3852
Michal Vasko03ff5a72019-09-11 13:49:33 +02003853/**
3854 * @brief Execute the YANG 1.1 derived-from(node-set, string) function. Returns LYXP_SET_BOOLEAN depending
3855 * on whether the first argument nodes contain a node of an identity derived from the second
3856 * argument identity.
3857 *
3858 * @param[in] args Array of arguments.
3859 * @param[in] arg_count Count of elements in @p args.
3860 * @param[in,out] set Context and result set at the same time.
3861 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003862 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003863 */
3864static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003865xpath_derived_from(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003866{
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003867 return xpath_derived_(args, set, options, 0, __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003868}
3869
3870/**
3871 * @brief Execute the YANG 1.1 derived-from-or-self(node-set, string) function. Returns LYXP_SET_BOOLEAN depending
3872 * on whether the first argument nodes contain a node of an identity that either is or is derived from
3873 * the second argument identity.
3874 *
3875 * @param[in] args Array of arguments.
3876 * @param[in] arg_count Count of elements in @p args.
3877 * @param[in,out] set Context and result set at the same time.
3878 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003879 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003880 */
3881static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003882xpath_derived_from_or_self(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003883{
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003884 return xpath_derived_(args, set, options, 1, __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003885}
3886
3887/**
3888 * @brief Execute the YANG 1.1 enum-value(node-set) function. Returns LYXP_SET_NUMBER
3889 * with the integer value of the first node's enum value, otherwise NaN.
3890 *
3891 * @param[in] args Array of arguments.
3892 * @param[in] arg_count Count of elements in @p args.
3893 * @param[in,out] set Context and result set at the same time.
3894 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003895 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003896 */
3897static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003898xpath_enum_value(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003899{
3900 struct lyd_node_term *leaf;
3901 struct lysc_node_leaf *sleaf;
3902 LY_ERR rc = LY_SUCCESS;
3903
3904 if (options & LYXP_SCNODE_ALL) {
3905 if ((args[0]->type != LYXP_SET_SCNODE_SET) || !(sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3906 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003907 } else if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3908 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 +02003909 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_ENUM)) {
3910 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"enumeration\".", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003911 }
3912 set_scnode_clear_ctx(set);
3913 return rc;
3914 }
3915
Michal Vaskod3678892020-05-21 10:06:58 +02003916 if (args[0]->type != LYXP_SET_NODE_SET) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003917 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "enum-value(node-set)");
3918 return LY_EVALID;
3919 }
3920
3921 set_fill_number(set, NAN);
Michal Vaskod3678892020-05-21 10:06:58 +02003922 if (args[0]->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003923 leaf = (struct lyd_node_term *)args[0]->val.nodes[0].node;
3924 sleaf = (struct lysc_node_leaf *)leaf->schema;
3925 if ((sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST)) && (sleaf->type->basetype == LY_TYPE_ENUM)) {
3926 set_fill_number(set, leaf->value.enum_item->value);
3927 }
3928 }
3929
3930 return LY_SUCCESS;
3931}
3932
3933/**
3934 * @brief Execute the XPath false() function. Returns LYXP_SET_BOOLEAN
3935 * with false value.
3936 *
3937 * @param[in] args Array of arguments.
3938 * @param[in] arg_count Count of elements in @p args.
3939 * @param[in,out] set Context and result set at the same time.
3940 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003941 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003942 */
3943static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003944xpath_false(struct lyxp_set **UNUSED(args), uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003945{
3946 if (options & LYXP_SCNODE_ALL) {
3947 set_scnode_clear_ctx(set);
3948 return LY_SUCCESS;
3949 }
3950
3951 set_fill_boolean(set, 0);
3952 return LY_SUCCESS;
3953}
3954
3955/**
3956 * @brief Execute the XPath floor(number) function. Returns LYXP_SET_NUMBER
3957 * with the first argument floored (truncated).
3958 *
3959 * @param[in] args Array of arguments.
3960 * @param[in] arg_count Count of elements in @p args.
3961 * @param[in,out] set Context and result set at the same time.
3962 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003963 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003964 */
3965static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003966xpath_floor(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t UNUSED(options))
Michal Vasko03ff5a72019-09-11 13:49:33 +02003967{
3968 LY_ERR rc;
3969
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003970 rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003971 LY_CHECK_RET(rc);
3972 if (isfinite(args[0]->val.num)) {
3973 set_fill_number(set, (long long)args[0]->val.num);
3974 }
3975
3976 return LY_SUCCESS;
3977}
3978
3979/**
3980 * @brief Execute the XPath lang(string) function. Returns LYXP_SET_BOOLEAN
3981 * whether the language of the text matches the one from the argument.
3982 *
3983 * @param[in] args Array of arguments.
3984 * @param[in] arg_count Count of elements in @p args.
3985 * @param[in,out] set Context and result set at the same time.
3986 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003987 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003988 */
3989static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003990xpath_lang(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003991{
3992 const struct lyd_node *node;
3993 struct lysc_node_leaf *sleaf;
Michal Vasko9f96a052020-03-10 09:41:45 +01003994 struct lyd_meta *meta = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003995 const char *val;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003996 LY_ERR rc = LY_SUCCESS;
3997
3998 if (options & LYXP_SCNODE_ALL) {
3999 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4000 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4001 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 +02004002 } else if (!warn_is_string_type(sleaf->type)) {
4003 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004004 }
4005 }
4006 set_scnode_clear_ctx(set);
4007 return rc;
4008 }
4009
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004010 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004011 LY_CHECK_RET(rc);
4012
Michal Vasko03ff5a72019-09-11 13:49:33 +02004013 if (set->type != LYXP_SET_NODE_SET) {
4014 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INCTX, print_set_type(set), "lang(string)");
4015 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004016 } else if (!set->used) {
4017 set_fill_boolean(set, 0);
4018 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004019 }
4020
4021 switch (set->val.nodes[0].type) {
4022 case LYXP_NODE_ELEM:
4023 case LYXP_NODE_TEXT:
4024 node = set->val.nodes[0].node;
4025 break;
Michal Vasko9f96a052020-03-10 09:41:45 +01004026 case LYXP_NODE_META:
4027 node = set->val.meta[0].meta->parent;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004028 break;
4029 default:
4030 /* nothing to do with roots */
4031 set_fill_boolean(set, 0);
4032 return LY_SUCCESS;
4033 }
4034
Michal Vasko9f96a052020-03-10 09:41:45 +01004035 /* find lang metadata */
Michal Vaskod989ba02020-08-24 10:59:24 +02004036 for ( ; node; node = (struct lyd_node *)node->parent) {
Michal Vasko9f96a052020-03-10 09:41:45 +01004037 for (meta = node->meta; meta; meta = meta->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004038 /* annotations */
Michal Vasko9f96a052020-03-10 09:41:45 +01004039 if (meta->name && !strcmp(meta->name, "lang") && !strcmp(meta->annotation->module->name, "xml")) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004040 break;
4041 }
4042 }
4043
Michal Vasko9f96a052020-03-10 09:41:45 +01004044 if (meta) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004045 break;
4046 }
4047 }
4048
4049 /* compare languages */
Michal Vasko9f96a052020-03-10 09:41:45 +01004050 if (!meta) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004051 set_fill_boolean(set, 0);
4052 } else {
Radek Krejci1deb5be2020-08-26 16:43:36 +02004053 uint64_t i;
4054
Michal Vaskoba99a3e2020-08-18 15:50:05 +02004055 val = meta->value.canonical;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004056 for (i = 0; args[0]->val.str[i]; ++i) {
4057 if (tolower(args[0]->val.str[i]) != tolower(val[i])) {
4058 set_fill_boolean(set, 0);
4059 break;
4060 }
4061 }
4062 if (!args[0]->val.str[i]) {
4063 if (!val[i] || (val[i] == '-')) {
4064 set_fill_boolean(set, 1);
4065 } else {
4066 set_fill_boolean(set, 0);
4067 }
4068 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02004069 }
4070
4071 return LY_SUCCESS;
4072}
4073
4074/**
4075 * @brief Execute the XPath last() function. Returns LYXP_SET_NUMBER
4076 * with the context size.
4077 *
4078 * @param[in] args Array of arguments.
4079 * @param[in] arg_count Count of elements in @p args.
4080 * @param[in,out] set Context and result set at the same time.
4081 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004082 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004083 */
4084static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004085xpath_last(struct lyxp_set **UNUSED(args), uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004086{
4087 if (options & LYXP_SCNODE_ALL) {
4088 set_scnode_clear_ctx(set);
4089 return LY_SUCCESS;
4090 }
4091
Michal Vasko03ff5a72019-09-11 13:49:33 +02004092 if (set->type != LYXP_SET_NODE_SET) {
4093 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INCTX, print_set_type(set), "last()");
4094 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004095 } else if (!set->used) {
4096 set_fill_number(set, 0);
4097 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004098 }
4099
4100 set_fill_number(set, set->ctx_size);
4101 return LY_SUCCESS;
4102}
4103
4104/**
4105 * @brief Execute the XPath local-name(node-set?) function. Returns LYXP_SET_STRING
4106 * with the node name without namespace from the argument or the context.
4107 *
4108 * @param[in] args Array of arguments.
4109 * @param[in] arg_count Count of elements in @p args.
4110 * @param[in,out] set Context and result set at the same time.
4111 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004112 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004113 */
4114static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004115xpath_local_name(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004116{
4117 struct lyxp_set_node *item;
4118 /* suppress unused variable warning */
4119 (void)options;
4120
4121 if (options & LYXP_SCNODE_ALL) {
4122 set_scnode_clear_ctx(set);
4123 return LY_SUCCESS;
4124 }
4125
4126 if (arg_count) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004127 if (args[0]->type != LYXP_SET_NODE_SET) {
4128 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "local-name(node-set?)");
4129 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004130 } else if (!args[0]->used) {
4131 set_fill_string(set, "", 0);
4132 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004133 }
4134
4135 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004136 assert(!set_sort(args[0]));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004137
4138 item = &args[0]->val.nodes[0];
4139 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004140 if (set->type != LYXP_SET_NODE_SET) {
4141 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INCTX, print_set_type(set), "local-name(node-set?)");
4142 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004143 } else if (!set->used) {
4144 set_fill_string(set, "", 0);
4145 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004146 }
4147
4148 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004149 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004150
4151 item = &set->val.nodes[0];
4152 }
4153
4154 switch (item->type) {
Michal Vasko2caefc12019-11-14 16:07:56 +01004155 case LYXP_NODE_NONE:
4156 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004157 case LYXP_NODE_ROOT:
4158 case LYXP_NODE_ROOT_CONFIG:
4159 case LYXP_NODE_TEXT:
4160 set_fill_string(set, "", 0);
4161 break;
4162 case LYXP_NODE_ELEM:
4163 set_fill_string(set, item->node->schema->name, strlen(item->node->schema->name));
4164 break;
Michal Vasko9f96a052020-03-10 09:41:45 +01004165 case LYXP_NODE_META:
4166 set_fill_string(set, ((struct lyd_meta *)item->node)->name, strlen(((struct lyd_meta *)item->node)->name));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004167 break;
4168 }
4169
4170 return LY_SUCCESS;
4171}
4172
4173/**
4174 * @brief Execute the XPath name(node-set?) function. Returns LYXP_SET_STRING
4175 * with the node name fully qualified (with namespace) from the argument or the context.
4176 *
4177 * @param[in] args Array of arguments.
4178 * @param[in] arg_count Count of elements in @p args.
4179 * @param[in,out] set Context and result set at the same time.
4180 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004181 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004182 */
4183static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004184xpath_name(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004185{
4186 struct lyxp_set_node *item;
Michal Vaskoed4fcfe2020-07-08 10:38:56 +02004187 struct lys_module *mod = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004188 char *str;
Michal Vaskoed4fcfe2020-07-08 10:38:56 +02004189 const char *name = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004190
4191 if (options & LYXP_SCNODE_ALL) {
4192 set_scnode_clear_ctx(set);
4193 return LY_SUCCESS;
4194 }
4195
4196 if (arg_count) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004197 if (args[0]->type != LYXP_SET_NODE_SET) {
4198 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "name(node-set?)");
4199 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004200 } else if (!args[0]->used) {
4201 set_fill_string(set, "", 0);
4202 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004203 }
4204
4205 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004206 assert(!set_sort(args[0]));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004207
4208 item = &args[0]->val.nodes[0];
4209 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004210 if (set->type != LYXP_SET_NODE_SET) {
4211 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INCTX, print_set_type(set), "name(node-set?)");
4212 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004213 } else if (!set->used) {
4214 set_fill_string(set, "", 0);
4215 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004216 }
4217
4218 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004219 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004220
4221 item = &set->val.nodes[0];
4222 }
4223
4224 switch (item->type) {
Michal Vasko2caefc12019-11-14 16:07:56 +01004225 case LYXP_NODE_NONE:
4226 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004227 case LYXP_NODE_ROOT:
4228 case LYXP_NODE_ROOT_CONFIG:
4229 case LYXP_NODE_TEXT:
Michal Vaskoed4fcfe2020-07-08 10:38:56 +02004230 /* keep NULL */
Michal Vasko03ff5a72019-09-11 13:49:33 +02004231 break;
4232 case LYXP_NODE_ELEM:
4233 mod = item->node->schema->module;
4234 name = item->node->schema->name;
4235 break;
Michal Vasko9f96a052020-03-10 09:41:45 +01004236 case LYXP_NODE_META:
4237 mod = ((struct lyd_meta *)item->node)->annotation->module;
4238 name = ((struct lyd_meta *)item->node)->name;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004239 break;
4240 }
4241
4242 if (mod && name) {
Radek Krejci1deb5be2020-08-26 16:43:36 +02004243 int rc = -1;
4244
Michal Vasko03ff5a72019-09-11 13:49:33 +02004245 switch (set->format) {
Michal Vaskoc8a230d2020-08-14 12:17:10 +02004246 case LY_PREF_SCHEMA:
Michal Vasko03ff5a72019-09-11 13:49:33 +02004247 rc = asprintf(&str, "%s:%s", lys_prefix_find_module(set->local_mod, mod), name);
4248 break;
Michal Vaskoc8a230d2020-08-14 12:17:10 +02004249 case LY_PREF_JSON:
Michal Vasko03ff5a72019-09-11 13:49:33 +02004250 rc = asprintf(&str, "%s:%s", mod->name, name);
4251 break;
Michal Vaskoc8a230d2020-08-14 12:17:10 +02004252 case LY_PREF_XML:
Michal Vasko9409ef62019-09-12 11:47:17 +02004253 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004254 }
4255 LY_CHECK_ERR_RET(rc == -1, LOGMEM(set->ctx), LY_EMEM);
4256 set_fill_string(set, str, strlen(str));
4257 free(str);
4258 } else {
4259 set_fill_string(set, "", 0);
4260 }
4261
4262 return LY_SUCCESS;
4263}
4264
4265/**
4266 * @brief Execute the XPath namespace-uri(node-set?) function. Returns LYXP_SET_STRING
4267 * with the namespace of the node from the argument or the context.
4268 *
4269 * @param[in] args Array of arguments.
4270 * @param[in] arg_count Count of elements in @p args.
4271 * @param[in,out] set Context and result set at the same time.
4272 * @param[in] options XPath options.
4273 * @return LY_ERR (LY_EINVAL for wrong arguments on schema)
4274 */
4275static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004276xpath_namespace_uri(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004277{
4278 struct lyxp_set_node *item;
4279 struct lys_module *mod;
4280 /* suppress unused variable warning */
4281 (void)options;
4282
4283 if (options & LYXP_SCNODE_ALL) {
4284 set_scnode_clear_ctx(set);
4285 return LY_SUCCESS;
4286 }
4287
4288 if (arg_count) {
Michal Vaskod3678892020-05-21 10:06:58 +02004289 if (args[0]->type != LYXP_SET_NODE_SET) {
4290 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]),
4291 "namespace-uri(node-set?)");
4292 return LY_EVALID;
4293 } else if (!args[0]->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004294 set_fill_string(set, "", 0);
4295 return LY_SUCCESS;
4296 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02004297
4298 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004299 assert(!set_sort(args[0]));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004300
4301 item = &args[0]->val.nodes[0];
4302 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004303 if (set->type != LYXP_SET_NODE_SET) {
4304 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INCTX, print_set_type(set), "namespace-uri(node-set?)");
4305 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004306 } else if (!set->used) {
4307 set_fill_string(set, "", 0);
4308 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004309 }
4310
4311 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004312 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004313
4314 item = &set->val.nodes[0];
4315 }
4316
4317 switch (item->type) {
Michal Vasko2caefc12019-11-14 16:07:56 +01004318 case LYXP_NODE_NONE:
4319 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004320 case LYXP_NODE_ROOT:
4321 case LYXP_NODE_ROOT_CONFIG:
4322 case LYXP_NODE_TEXT:
4323 set_fill_string(set, "", 0);
4324 break;
4325 case LYXP_NODE_ELEM:
Michal Vasko9f96a052020-03-10 09:41:45 +01004326 case LYXP_NODE_META:
Michal Vasko03ff5a72019-09-11 13:49:33 +02004327 if (item->type == LYXP_NODE_ELEM) {
4328 mod = item->node->schema->module;
Michal Vasko9f96a052020-03-10 09:41:45 +01004329 } else { /* LYXP_NODE_META */
Michal Vasko03ff5a72019-09-11 13:49:33 +02004330 /* annotations */
Michal Vasko9f96a052020-03-10 09:41:45 +01004331 mod = ((struct lyd_meta *)item->node)->annotation->module;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004332 }
4333
4334 set_fill_string(set, mod->ns, strlen(mod->ns));
4335 break;
4336 }
4337
4338 return LY_SUCCESS;
4339}
4340
4341/**
4342 * @brief Execute the XPath node() function (node type). Returns LYXP_SET_NODE_SET
4343 * with only nodes from the context. In practice it either leaves the context
4344 * as it is or returns an empty node set.
4345 *
4346 * @param[in] args Array of arguments.
4347 * @param[in] arg_count Count of elements in @p args.
4348 * @param[in,out] set Context and result set at the same time.
4349 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004350 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004351 */
4352static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004353xpath_node(struct lyxp_set **UNUSED(args), uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004354{
4355 if (options & LYXP_SCNODE_ALL) {
4356 set_scnode_clear_ctx(set);
4357 return LY_SUCCESS;
4358 }
4359
4360 if (set->type != LYXP_SET_NODE_SET) {
Michal Vaskod3678892020-05-21 10:06:58 +02004361 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004362 }
4363 return LY_SUCCESS;
4364}
4365
4366/**
4367 * @brief Execute the XPath normalize-space(string?) function. Returns LYXP_SET_STRING
4368 * with normalized value (no leading, trailing, double white spaces) of the node
4369 * from the argument or the context.
4370 *
4371 * @param[in] args Array of arguments.
4372 * @param[in] arg_count Count of elements in @p args.
4373 * @param[in,out] set Context and result set at the same time.
4374 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004375 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004376 */
4377static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004378xpath_normalize_space(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004379{
4380 uint16_t i, new_used;
4381 char *new;
Radek Krejci857189e2020-09-01 13:26:36 +02004382 ly_bool have_spaces = 0, space_before = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004383 struct lysc_node_leaf *sleaf;
4384 LY_ERR rc = LY_SUCCESS;
4385
4386 if (options & LYXP_SCNODE_ALL) {
4387 if (arg_count && (args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4388 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4389 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 +02004390 } else if (!warn_is_string_type(sleaf->type)) {
4391 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004392 }
4393 }
4394 set_scnode_clear_ctx(set);
4395 return rc;
4396 }
4397
4398 if (arg_count) {
4399 set_fill_set(set, args[0]);
4400 }
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004401 rc = lyxp_set_cast(set, LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004402 LY_CHECK_RET(rc);
4403
4404 /* is there any normalization necessary? */
4405 for (i = 0; set->val.str[i]; ++i) {
4406 if (is_xmlws(set->val.str[i])) {
4407 if ((i == 0) || space_before || (!set->val.str[i + 1])) {
4408 have_spaces = 1;
4409 break;
4410 }
4411 space_before = 1;
4412 } else {
4413 space_before = 0;
4414 }
4415 }
4416
4417 /* yep, there is */
4418 if (have_spaces) {
4419 /* it's enough, at least one character will go, makes space for ending '\0' */
4420 new = malloc(strlen(set->val.str) * sizeof(char));
4421 LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM);
4422 new_used = 0;
4423
4424 space_before = 0;
4425 for (i = 0; set->val.str[i]; ++i) {
4426 if (is_xmlws(set->val.str[i])) {
4427 if ((i == 0) || space_before) {
4428 space_before = 1;
4429 continue;
4430 } else {
4431 space_before = 1;
4432 }
4433 } else {
4434 space_before = 0;
4435 }
4436
4437 new[new_used] = (space_before ? ' ' : set->val.str[i]);
4438 ++new_used;
4439 }
4440
4441 /* at worst there is one trailing space now */
4442 if (new_used && is_xmlws(new[new_used - 1])) {
4443 --new_used;
4444 }
4445
4446 new = ly_realloc(new, (new_used + 1) * sizeof(char));
4447 LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM);
4448 new[new_used] = '\0';
4449
4450 free(set->val.str);
4451 set->val.str = new;
4452 }
4453
4454 return LY_SUCCESS;
4455}
4456
4457/**
4458 * @brief Execute the XPath not(boolean) function. Returns LYXP_SET_BOOLEAN
4459 * with the argument converted to boolean and logically inverted.
4460 *
4461 * @param[in] args Array of arguments.
4462 * @param[in] arg_count Count of elements in @p args.
4463 * @param[in,out] set Context and result set at the same time.
4464 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004465 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004466 */
4467static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004468xpath_not(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004469{
4470 if (options & LYXP_SCNODE_ALL) {
4471 set_scnode_clear_ctx(set);
4472 return LY_SUCCESS;
4473 }
4474
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004475 lyxp_set_cast(args[0], LYXP_SET_BOOLEAN);
Michal Vasko004d3152020-06-11 19:59:22 +02004476 if (args[0]->val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004477 set_fill_boolean(set, 0);
4478 } else {
4479 set_fill_boolean(set, 1);
4480 }
4481
4482 return LY_SUCCESS;
4483}
4484
4485/**
4486 * @brief Execute the XPath number(object?) function. Returns LYXP_SET_NUMBER
4487 * with the number representation of either the argument or the context.
4488 *
4489 * @param[in] args Array of arguments.
4490 * @param[in] arg_count Count of elements in @p args.
4491 * @param[in,out] set Context and result set at the same time.
4492 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004493 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004494 */
4495static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004496xpath_number(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004497{
4498 LY_ERR rc;
4499
4500 if (options & LYXP_SCNODE_ALL) {
4501 set_scnode_clear_ctx(set);
4502 return LY_SUCCESS;
4503 }
4504
4505 if (arg_count) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004506 rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004507 LY_CHECK_RET(rc);
4508 set_fill_set(set, args[0]);
4509 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004510 rc = lyxp_set_cast(set, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004511 LY_CHECK_RET(rc);
4512 }
4513
4514 return LY_SUCCESS;
4515}
4516
4517/**
4518 * @brief Execute the XPath position() function. Returns LYXP_SET_NUMBER
4519 * with the context position.
4520 *
4521 * @param[in] args Array of arguments.
4522 * @param[in] arg_count Count of elements in @p args.
4523 * @param[in,out] set Context and result set at the same time.
4524 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004525 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004526 */
4527static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004528xpath_position(struct lyxp_set **UNUSED(args), uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004529{
4530 if (options & LYXP_SCNODE_ALL) {
4531 set_scnode_clear_ctx(set);
4532 return LY_SUCCESS;
4533 }
4534
Michal Vasko03ff5a72019-09-11 13:49:33 +02004535 if (set->type != LYXP_SET_NODE_SET) {
4536 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INCTX, print_set_type(set), "position()");
4537 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004538 } else if (!set->used) {
4539 set_fill_number(set, 0);
4540 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004541 }
4542
4543 set_fill_number(set, set->ctx_pos);
4544
4545 /* UNUSED in 'Release' build type */
4546 (void)options;
4547 return LY_SUCCESS;
4548}
4549
4550/**
4551 * @brief Execute the YANG 1.1 re-match(string, string) function. Returns LYXP_SET_BOOLEAN
4552 * depending on whether the second argument regex matches the first argument string. For details refer to
4553 * YANG 1.1 RFC section 10.2.1.
4554 *
4555 * @param[in] args Array of arguments.
4556 * @param[in] arg_count Count of elements in @p args.
4557 * @param[in,out] set Context and result set at the same time.
4558 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004559 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004560 */
4561static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004562xpath_re_match(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004563{
4564 struct lysc_pattern **patterns = NULL, **pattern;
4565 struct lysc_node_leaf *sleaf;
4566 char *path;
4567 LY_ERR rc = LY_SUCCESS;
4568 struct ly_err_item *err;
4569
4570 if (options & LYXP_SCNODE_ALL) {
4571 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4572 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4573 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 +02004574 } else if (!warn_is_string_type(sleaf->type)) {
4575 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004576 }
4577 }
4578
4579 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4580 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4581 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 +02004582 } else if (!warn_is_string_type(sleaf->type)) {
4583 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004584 }
4585 }
4586 set_scnode_clear_ctx(set);
4587 return rc;
4588 }
4589
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004590 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004591 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004592 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004593 LY_CHECK_RET(rc);
4594
4595 LY_ARRAY_NEW_RET(set->ctx, patterns, pattern, LY_EMEM);
4596 *pattern = malloc(sizeof **pattern);
4597 path = lyd_path(set->ctx_node, LYD_PATH_LOG, NULL, 0);
4598 rc = lys_compile_type_pattern_check(set->ctx, path, args[1]->val.str, &(*pattern)->code);
4599 free(path);
4600 if (rc != LY_SUCCESS) {
4601 LY_ARRAY_FREE(patterns);
4602 return rc;
4603 }
4604
4605 rc = ly_type_validate_patterns(patterns, args[0]->val.str, strlen(args[0]->val.str), &err);
4606 pcre2_code_free((*pattern)->code);
4607 free(*pattern);
4608 LY_ARRAY_FREE(patterns);
4609 if (rc && (rc != LY_EVALID)) {
4610 ly_err_print(err);
4611 ly_err_free(err);
4612 return rc;
4613 }
4614
4615 if (rc == LY_EVALID) {
4616 ly_err_free(err);
4617 set_fill_boolean(set, 0);
4618 } else {
4619 set_fill_boolean(set, 1);
4620 }
4621
4622 return LY_SUCCESS;
4623}
4624
4625/**
4626 * @brief Execute the XPath round(number) function. Returns LYXP_SET_NUMBER
4627 * with the rounded first argument. For details refer to
4628 * http://www.w3.org/TR/1999/REC-xpath-19991116/#function-round.
4629 *
4630 * @param[in] args Array of arguments.
4631 * @param[in] arg_count Count of elements in @p args.
4632 * @param[in,out] set Context and result set at the same time.
4633 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004634 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004635 */
4636static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004637xpath_round(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004638{
4639 struct lysc_node_leaf *sleaf;
4640 LY_ERR rc = LY_SUCCESS;
4641
4642 if (options & LYXP_SCNODE_ALL) {
4643 if ((args[0]->type != LYXP_SET_SCNODE_SET) || !(sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4644 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004645 } else if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4646 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 +02004647 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_DEC64)) {
4648 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"decimal64\".", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004649 }
4650 set_scnode_clear_ctx(set);
4651 return rc;
4652 }
4653
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004654 rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004655 LY_CHECK_RET(rc);
4656
4657 /* cover only the cases where floor can't be used */
4658 if ((args[0]->val.num == -0.0f) || ((args[0]->val.num < 0) && (args[0]->val.num >= -0.5))) {
4659 set_fill_number(set, -0.0f);
4660 } else {
4661 args[0]->val.num += 0.5;
4662 rc = xpath_floor(args, 1, args[0], options);
4663 LY_CHECK_RET(rc);
4664 set_fill_number(set, args[0]->val.num);
4665 }
4666
4667 return LY_SUCCESS;
4668}
4669
4670/**
4671 * @brief Execute the XPath starts-with(string, string) function.
4672 * Returns LYXP_SET_BOOLEAN whether the second argument is
4673 * the prefix of the first or not.
4674 *
4675 * @param[in] args Array of arguments.
4676 * @param[in] arg_count Count of elements in @p args.
4677 * @param[in,out] set Context and result set at the same time.
4678 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004679 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004680 */
4681static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004682xpath_starts_with(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004683{
4684 struct lysc_node_leaf *sleaf;
4685 LY_ERR rc = LY_SUCCESS;
4686
4687 if (options & LYXP_SCNODE_ALL) {
4688 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4689 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4690 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 +02004691 } else if (!warn_is_string_type(sleaf->type)) {
4692 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004693 }
4694 }
4695
4696 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4697 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4698 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 +02004699 } else if (!warn_is_string_type(sleaf->type)) {
4700 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004701 }
4702 }
4703 set_scnode_clear_ctx(set);
4704 return rc;
4705 }
4706
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004707 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004708 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004709 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004710 LY_CHECK_RET(rc);
4711
4712 if (strncmp(args[0]->val.str, args[1]->val.str, strlen(args[1]->val.str))) {
4713 set_fill_boolean(set, 0);
4714 } else {
4715 set_fill_boolean(set, 1);
4716 }
4717
4718 return LY_SUCCESS;
4719}
4720
4721/**
4722 * @brief Execute the XPath string(object?) function. Returns LYXP_SET_STRING
4723 * with the string representation of either the argument or the context.
4724 *
4725 * @param[in] args Array of arguments.
4726 * @param[in] arg_count Count of elements in @p args.
4727 * @param[in,out] set Context and result set at the same time.
4728 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004729 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004730 */
4731static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004732xpath_string(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004733{
4734 LY_ERR rc;
4735
4736 if (options & LYXP_SCNODE_ALL) {
4737 set_scnode_clear_ctx(set);
4738 return LY_SUCCESS;
4739 }
4740
4741 if (arg_count) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004742 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004743 LY_CHECK_RET(rc);
4744 set_fill_set(set, args[0]);
4745 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004746 rc = lyxp_set_cast(set, LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004747 LY_CHECK_RET(rc);
4748 }
4749
4750 return LY_SUCCESS;
4751}
4752
4753/**
4754 * @brief Execute the XPath string-length(string?) function. Returns LYXP_SET_NUMBER
4755 * with the length of the string in either the argument or the context.
4756 *
4757 * @param[in] args Array of arguments.
4758 * @param[in] arg_count Count of elements in @p args.
4759 * @param[in,out] set Context and result set at the same time.
4760 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004761 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004762 */
4763static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004764xpath_string_length(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004765{
4766 struct lysc_node_leaf *sleaf;
4767 LY_ERR rc = LY_SUCCESS;
4768
4769 if (options & LYXP_SCNODE_ALL) {
4770 if (arg_count && (args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4771 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4772 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 +02004773 } else if (!warn_is_string_type(sleaf->type)) {
4774 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004775 }
4776 }
4777 if (!arg_count && (set->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(set))) {
4778 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4779 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 +02004780 } else if (!warn_is_string_type(sleaf->type)) {
4781 LOGWRN(set->ctx, "Argument #0 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004782 }
4783 }
4784 set_scnode_clear_ctx(set);
4785 return rc;
4786 }
4787
4788 if (arg_count) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004789 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004790 LY_CHECK_RET(rc);
4791 set_fill_number(set, strlen(args[0]->val.str));
4792 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004793 rc = lyxp_set_cast(set, LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004794 LY_CHECK_RET(rc);
4795 set_fill_number(set, strlen(set->val.str));
4796 }
4797
4798 return LY_SUCCESS;
4799}
4800
4801/**
4802 * @brief Execute the XPath substring(string, number, number?) function.
4803 * Returns LYXP_SET_STRING substring of the first argument starting
4804 * on the second argument index ending on the third argument index,
4805 * indexed from 1. For exact definition refer to
4806 * http://www.w3.org/TR/1999/REC-xpath-19991116/#function-substring.
4807 *
4808 * @param[in] args Array of arguments.
4809 * @param[in] arg_count Count of elements in @p args.
4810 * @param[in,out] set Context and result set at the same time.
4811 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004812 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004813 */
4814static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004815xpath_substring(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004816{
Radek Krejci1deb5be2020-08-26 16:43:36 +02004817 int32_t start, len;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004818 uint16_t str_start, str_len, pos;
4819 struct lysc_node_leaf *sleaf;
4820 LY_ERR rc = LY_SUCCESS;
4821
4822 if (options & LYXP_SCNODE_ALL) {
4823 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4824 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4825 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 +02004826 } else if (!warn_is_string_type(sleaf->type)) {
4827 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004828 }
4829 }
4830
4831 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4832 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4833 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 +02004834 } else if (!warn_is_numeric_type(sleaf->type)) {
4835 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of numeric type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004836 }
4837 }
4838
4839 if ((arg_count == 3) && (args[2]->type == LYXP_SET_SCNODE_SET)
Radek Krejci0f969882020-08-21 16:56:47 +02004840 && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[2]))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004841 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4842 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 +02004843 } else if (!warn_is_numeric_type(sleaf->type)) {
4844 LOGWRN(set->ctx, "Argument #3 of %s is node \"%s\", not of numeric type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004845 }
4846 }
4847 set_scnode_clear_ctx(set);
4848 return rc;
4849 }
4850
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004851 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004852 LY_CHECK_RET(rc);
4853
4854 /* start */
4855 if (xpath_round(&args[1], 1, args[1], options)) {
4856 return -1;
4857 }
4858 if (isfinite(args[1]->val.num)) {
4859 start = args[1]->val.num - 1;
4860 } else if (isinf(args[1]->val.num) && signbit(args[1]->val.num)) {
Radek Krejci1deb5be2020-08-26 16:43:36 +02004861 start = INT32_MIN;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004862 } else {
Radek Krejci1deb5be2020-08-26 16:43:36 +02004863 start = INT32_MAX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004864 }
4865
4866 /* len */
4867 if (arg_count == 3) {
4868 rc = xpath_round(&args[2], 1, args[2], options);
4869 LY_CHECK_RET(rc);
Radek Krejci1deb5be2020-08-26 16:43:36 +02004870 if (isnan(args[2]->val.num) || signbit(args[2]->val.num)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004871 len = 0;
Radek Krejci1deb5be2020-08-26 16:43:36 +02004872 } else if (isfinite(args[2]->val.num)) {
4873 len = args[2]->val.num;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004874 } else {
Radek Krejci1deb5be2020-08-26 16:43:36 +02004875 len = INT32_MAX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004876 }
4877 } else {
Radek Krejci1deb5be2020-08-26 16:43:36 +02004878 len = INT32_MAX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004879 }
4880
4881 /* find matching character positions */
4882 str_start = 0;
4883 str_len = 0;
4884 for (pos = 0; args[0]->val.str[pos]; ++pos) {
4885 if (pos < start) {
4886 ++str_start;
4887 } else if (pos < start + len) {
4888 ++str_len;
4889 } else {
4890 break;
4891 }
4892 }
4893
4894 set_fill_string(set, args[0]->val.str + str_start, str_len);
4895 return LY_SUCCESS;
4896}
4897
4898/**
4899 * @brief Execute the XPath substring-after(string, string) function.
4900 * Returns LYXP_SET_STRING with the string succeeding the occurance
4901 * of the second argument in the first or an empty string.
4902 *
4903 * @param[in] args Array of arguments.
4904 * @param[in] arg_count Count of elements in @p args.
4905 * @param[in,out] set Context and result set at the same time.
4906 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004907 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004908 */
4909static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004910xpath_substring_after(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004911{
4912 char *ptr;
4913 struct lysc_node_leaf *sleaf;
4914 LY_ERR rc = LY_SUCCESS;
4915
4916 if (options & LYXP_SCNODE_ALL) {
4917 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4918 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4919 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 +02004920 } else if (!warn_is_string_type(sleaf->type)) {
4921 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004922 }
4923 }
4924
4925 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4926 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4927 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 +02004928 } else if (!warn_is_string_type(sleaf->type)) {
4929 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004930 }
4931 }
4932 set_scnode_clear_ctx(set);
4933 return rc;
4934 }
4935
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004936 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004937 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004938 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004939 LY_CHECK_RET(rc);
4940
4941 ptr = strstr(args[0]->val.str, args[1]->val.str);
4942 if (ptr) {
4943 set_fill_string(set, ptr + strlen(args[1]->val.str), strlen(ptr + strlen(args[1]->val.str)));
4944 } else {
4945 set_fill_string(set, "", 0);
4946 }
4947
4948 return LY_SUCCESS;
4949}
4950
4951/**
4952 * @brief Execute the XPath substring-before(string, string) function.
4953 * Returns LYXP_SET_STRING with the string preceding the occurance
4954 * of the second argument in the first or an empty string.
4955 *
4956 * @param[in] args Array of arguments.
4957 * @param[in] arg_count Count of elements in @p args.
4958 * @param[in,out] set Context and result set at the same time.
4959 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004960 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004961 */
4962static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004963xpath_substring_before(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004964{
4965 char *ptr;
4966 struct lysc_node_leaf *sleaf;
4967 LY_ERR rc = LY_SUCCESS;
4968
4969 if (options & LYXP_SCNODE_ALL) {
4970 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4971 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4972 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 +02004973 } else if (!warn_is_string_type(sleaf->type)) {
4974 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004975 }
4976 }
4977
4978 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4979 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4980 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 +02004981 } else if (!warn_is_string_type(sleaf->type)) {
4982 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004983 }
4984 }
4985 set_scnode_clear_ctx(set);
4986 return rc;
4987 }
4988
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004989 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004990 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004991 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004992 LY_CHECK_RET(rc);
4993
4994 ptr = strstr(args[0]->val.str, args[1]->val.str);
4995 if (ptr) {
4996 set_fill_string(set, args[0]->val.str, ptr - args[0]->val.str);
4997 } else {
4998 set_fill_string(set, "", 0);
4999 }
5000
5001 return LY_SUCCESS;
5002}
5003
5004/**
5005 * @brief Execute the XPath sum(node-set) function. Returns LYXP_SET_NUMBER
5006 * with the sum of all the nodes in the context.
5007 *
5008 * @param[in] args Array of arguments.
5009 * @param[in] arg_count Count of elements in @p args.
5010 * @param[in,out] set Context and result set at the same time.
5011 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005012 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005013 */
5014static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005015xpath_sum(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005016{
5017 long double num;
5018 char *str;
5019 uint16_t i;
5020 struct lyxp_set set_item;
5021 struct lysc_node_leaf *sleaf;
5022 LY_ERR rc = LY_SUCCESS;
5023
5024 if (options & LYXP_SCNODE_ALL) {
5025 if (args[0]->type == LYXP_SET_SCNODE_SET) {
5026 for (i = 0; i < args[0]->used; ++i) {
5027 if (args[0]->val.scnodes[i].in_ctx == 1) {
5028 sleaf = (struct lysc_node_leaf *)args[0]->val.scnodes[i].scnode;
5029 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5030 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__,
5031 lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005032 } else if (!warn_is_numeric_type(sleaf->type)) {
5033 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of numeric type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005034 }
5035 }
5036 }
5037 }
5038 set_scnode_clear_ctx(set);
5039 return rc;
5040 }
5041
5042 set_fill_number(set, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005043
5044 if (args[0]->type != LYXP_SET_NODE_SET) {
5045 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "sum(node-set)");
5046 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02005047 } else if (!args[0]->used) {
5048 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005049 }
5050
Michal Vasko5c4e5892019-11-14 12:31:38 +01005051 set_init(&set_item, set);
5052
Michal Vasko03ff5a72019-09-11 13:49:33 +02005053 set_item.type = LYXP_SET_NODE_SET;
5054 set_item.val.nodes = malloc(sizeof *set_item.val.nodes);
5055 LY_CHECK_ERR_RET(!set_item.val.nodes, LOGMEM(set->ctx), LY_EMEM);
5056
5057 set_item.used = 1;
5058 set_item.size = 1;
5059
5060 for (i = 0; i < args[0]->used; ++i) {
5061 set_item.val.nodes[0] = args[0]->val.nodes[i];
5062
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005063 rc = cast_node_set_to_string(&set_item, &str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005064 LY_CHECK_RET(rc);
5065 num = cast_string_to_number(str);
5066 free(str);
5067 set->val.num += num;
5068 }
5069
5070 free(set_item.val.nodes);
5071
5072 return LY_SUCCESS;
5073}
5074
5075/**
5076 * @brief Execute the XPath text() function (node type). Returns LYXP_SET_NODE_SET
5077 * with the text content of the nodes in the context.
5078 *
5079 * @param[in] args Array of arguments.
5080 * @param[in] arg_count Count of elements in @p args.
5081 * @param[in,out] set Context and result set at the same time.
5082 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005083 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005084 */
5085static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005086xpath_text(struct lyxp_set **UNUSED(args), uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005087{
5088 uint32_t i;
5089
5090 if (options & LYXP_SCNODE_ALL) {
5091 set_scnode_clear_ctx(set);
5092 return LY_SUCCESS;
5093 }
5094
Michal Vasko03ff5a72019-09-11 13:49:33 +02005095 if (set->type != LYXP_SET_NODE_SET) {
5096 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INCTX, print_set_type(set), "text()");
5097 return LY_EVALID;
5098 }
5099
Michal Vaskod989ba02020-08-24 10:59:24 +02005100 for (i = 0; i < set->used; ) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005101 switch (set->val.nodes[i].type) {
Michal Vasko2caefc12019-11-14 16:07:56 +01005102 case LYXP_NODE_NONE:
5103 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005104 case LYXP_NODE_ELEM:
Michal Vasko03ff5a72019-09-11 13:49:33 +02005105 if (set->val.nodes[i].node->schema->nodetype & (LYS_LEAF | LYS_LEAFLIST)) {
5106 set->val.nodes[i].type = LYXP_NODE_TEXT;
5107 ++i;
5108 break;
5109 }
Radek Krejci0f969882020-08-21 16:56:47 +02005110 /* fall through */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005111 case LYXP_NODE_ROOT:
5112 case LYXP_NODE_ROOT_CONFIG:
5113 case LYXP_NODE_TEXT:
Michal Vasko9f96a052020-03-10 09:41:45 +01005114 case LYXP_NODE_META:
Michal Vasko03ff5a72019-09-11 13:49:33 +02005115 set_remove_node(set, i);
5116 break;
5117 }
5118 }
5119
5120 return LY_SUCCESS;
5121}
5122
5123/**
5124 * @brief Execute the XPath translate(string, string, string) function.
5125 * Returns LYXP_SET_STRING with the first argument with the characters
5126 * from the second argument replaced by those on the corresponding
5127 * positions in the third argument.
5128 *
5129 * @param[in] args Array of arguments.
5130 * @param[in] arg_count Count of elements in @p args.
5131 * @param[in,out] set Context and result set at the same time.
5132 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005133 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005134 */
5135static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005136xpath_translate(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005137{
5138 uint16_t i, j, new_used;
5139 char *new;
Radek Krejci857189e2020-09-01 13:26:36 +02005140 ly_bool have_removed;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005141 struct lysc_node_leaf *sleaf;
5142 LY_ERR rc = LY_SUCCESS;
5143
5144 if (options & LYXP_SCNODE_ALL) {
5145 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
5146 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5147 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 +02005148 } else if (!warn_is_string_type(sleaf->type)) {
5149 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005150 }
5151 }
5152
5153 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
5154 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5155 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 +02005156 } else if (!warn_is_string_type(sleaf->type)) {
5157 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005158 }
5159 }
5160
5161 if ((args[2]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[2]))) {
5162 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5163 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 +02005164 } else if (!warn_is_string_type(sleaf->type)) {
5165 LOGWRN(set->ctx, "Argument #3 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005166 }
5167 }
5168 set_scnode_clear_ctx(set);
5169 return rc;
5170 }
5171
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005172 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005173 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005174 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005175 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005176 rc = lyxp_set_cast(args[2], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005177 LY_CHECK_RET(rc);
5178
5179 new = malloc((strlen(args[0]->val.str) + 1) * sizeof(char));
5180 LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM);
5181 new_used = 0;
5182
5183 have_removed = 0;
5184 for (i = 0; args[0]->val.str[i]; ++i) {
Radek Krejci857189e2020-09-01 13:26:36 +02005185 ly_bool found = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005186
5187 for (j = 0; args[1]->val.str[j]; ++j) {
5188 if (args[0]->val.str[i] == args[1]->val.str[j]) {
5189 /* removing this char */
5190 if (j >= strlen(args[2]->val.str)) {
5191 have_removed = 1;
5192 found = 1;
5193 break;
5194 }
5195 /* replacing this char */
5196 new[new_used] = args[2]->val.str[j];
5197 ++new_used;
5198 found = 1;
5199 break;
5200 }
5201 }
5202
5203 /* copying this char */
5204 if (!found) {
5205 new[new_used] = args[0]->val.str[i];
5206 ++new_used;
5207 }
5208 }
5209
5210 if (have_removed) {
5211 new = ly_realloc(new, (new_used + 1) * sizeof(char));
5212 LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM);
5213 }
5214 new[new_used] = '\0';
5215
Michal Vaskod3678892020-05-21 10:06:58 +02005216 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005217 set->type = LYXP_SET_STRING;
5218 set->val.str = new;
5219
5220 return LY_SUCCESS;
5221}
5222
5223/**
5224 * @brief Execute the XPath true() function. Returns LYXP_SET_BOOLEAN
5225 * with true value.
5226 *
5227 * @param[in] args Array of arguments.
5228 * @param[in] arg_count Count of elements in @p args.
5229 * @param[in,out] set Context and result set at the same time.
5230 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005231 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005232 */
5233static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005234xpath_true(struct lyxp_set **UNUSED(args), uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005235{
5236 if (options & LYXP_SCNODE_ALL) {
5237 set_scnode_clear_ctx(set);
5238 return LY_SUCCESS;
5239 }
5240
5241 set_fill_boolean(set, 1);
5242 return LY_SUCCESS;
5243}
5244
5245/*
5246 * moveto functions
5247 *
5248 * They and only they actually change the context (set).
5249 */
5250
5251/**
Michal Vasko6346ece2019-09-24 13:12:53 +02005252 * @brief Skip prefix and return corresponding model if there is a prefix. Logs directly.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005253 *
Michal Vasko2104e9f2020-03-06 08:23:25 +01005254 * XPath @p set is expected to be a (sc)node set!
5255 *
Michal Vasko6346ece2019-09-24 13:12:53 +02005256 * @param[in,out] qname Qualified node name. If includes prefix, it is skipped.
5257 * @param[in,out] qname_len Length of @p qname, is updated accordingly.
5258 * @param[in] set Set with XPath context.
5259 * @param[out] moveto_mod Expected module of a matching node.
5260 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005261 */
Michal Vasko6346ece2019-09-24 13:12:53 +02005262static LY_ERR
5263moveto_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 +02005264{
Michal Vaskoed4fcfe2020-07-08 10:38:56 +02005265 const struct lys_module *mod = NULL;
Michal Vasko6346ece2019-09-24 13:12:53 +02005266 const char *ptr;
Radek Krejci1deb5be2020-08-26 16:43:36 +02005267 size_t pref_len;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005268
Michal Vasko2104e9f2020-03-06 08:23:25 +01005269 assert((set->type == LYXP_SET_NODE_SET) || (set->type == LYXP_SET_SCNODE_SET));
5270
Michal Vasko6346ece2019-09-24 13:12:53 +02005271 if ((ptr = ly_strnchr(*qname, ':', *qname_len))) {
5272 /* specific module */
5273 pref_len = ptr - *qname;
Michal Vaskoc8a230d2020-08-14 12:17:10 +02005274 mod = ly_resolve_prefix(set->ctx, *qname, pref_len, set->format, (void *)set->local_mod);
Michal Vasko6346ece2019-09-24 13:12:53 +02005275
Michal Vasko004d3152020-06-11 19:59:22 +02005276 /* check for errors and non-implemented modules, as they are not valid */
Juraj Vijtiukd75faa62019-11-26 14:10:10 +01005277 if (!mod || !mod->implemented) {
Michal Vasko2104e9f2020-03-06 08:23:25 +01005278 if (set->type == LYXP_SET_SCNODE_SET) {
5279 LOGVAL(set->ctx, LY_VLOG_LYSC, set->ctx_scnode, LY_VCODE_XP_INMOD, pref_len, *qname);
5280 } else {
5281 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INMOD, pref_len, *qname);
5282 }
Michal Vasko6346ece2019-09-24 13:12:53 +02005283 return LY_EVALID;
5284 }
Juraj Vijtiukd75faa62019-11-26 14:10:10 +01005285
Michal Vasko6346ece2019-09-24 13:12:53 +02005286 *qname += pref_len + 1;
5287 *qname_len -= pref_len + 1;
5288 } else if (((*qname)[0] == '*') && (*qname_len == 1)) {
5289 /* all modules - special case */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005290 mod = NULL;
Michal Vasko004d3152020-06-11 19:59:22 +02005291 } else if (set->type == LYXP_SET_SCNODE_SET) {
5292 /* current node module */
5293 mod = set->ctx_scnode->module;
Michal Vasko6346ece2019-09-24 13:12:53 +02005294 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02005295 /* current node module */
5296 mod = set->ctx_node->schema->module;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005297 }
5298
Michal Vasko6346ece2019-09-24 13:12:53 +02005299 *moveto_mod = mod;
5300 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005301}
5302
5303/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02005304 * @brief Move context @p set to the root. Handles absolute path.
5305 * Result is LYXP_SET_NODE_SET.
5306 *
5307 * @param[in,out] set Set to use.
5308 * @param[in] options Xpath options.
Michal Vaskob0099a92020-08-31 14:55:23 +02005309 * @return LY_ERR value.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005310 */
Michal Vaskob0099a92020-08-31 14:55:23 +02005311static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005312moveto_root(struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005313{
Michal Vasko03ff5a72019-09-11 13:49:33 +02005314 if (!set) {
Michal Vaskob0099a92020-08-31 14:55:23 +02005315 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005316 }
5317
5318 if (options & LYXP_SCNODE_ALL) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005319 set_scnode_clear_ctx(set);
Michal Vaskob0099a92020-08-31 14:55:23 +02005320 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, NULL, set->root_type, NULL));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005321 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02005322 set->type = LYXP_SET_NODE_SET;
5323 set->used = 0;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005324 set_insert_node(set, NULL, 0, set->root_type, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005325 }
Michal Vaskob0099a92020-08-31 14:55:23 +02005326
5327 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005328}
5329
5330/**
Michal Vaskoa1424542019-11-14 16:08:52 +01005331 * @brief Check whether a node has some unresolved "when".
5332 *
5333 * @param[in] node Node to check.
5334 * @return LY_ERR value (LY_EINCOMPLETE if there are some unresolved "when")
5335 */
5336static LY_ERR
5337moveto_when_check(const struct lyd_node *node)
5338{
5339 const struct lysc_node *schema;
5340
5341 if (!node) {
5342 return LY_SUCCESS;
5343 }
5344
5345 schema = node->schema;
5346 do {
5347 if (schema->when && !(node->flags & LYD_WHEN_TRUE)) {
5348 return LY_EINCOMPLETE;
5349 }
5350 schema = schema->parent;
5351 } while (schema && (schema->nodetype & (LYS_CASE | LYS_CHOICE)));
5352
5353 return LY_SUCCESS;
5354}
5355
5356/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02005357 * @brief Check @p node as a part of NameTest processing.
5358 *
5359 * @param[in] node Node to check.
5360 * @param[in] root_type XPath root node type.
Michal Vasko6b26e742020-07-17 15:02:10 +02005361 * @param[in] context_op XPath operation parent.
Michal Vaskod3678892020-05-21 10:06:58 +02005362 * @param[in] node_name Node name in the dictionary to move to, NULL for any node.
5363 * @param[in] moveto_mod Expected module of the node, NULL for any.
Michal Vasko6346ece2019-09-24 13:12:53 +02005364 * @return LY_ERR (LY_ENOT if node does not match, LY_EINCOMPLETE on unresolved when,
5365 * LY_EINVAL if netither node nor any children match)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005366 */
5367static LY_ERR
Michal Vasko6b26e742020-07-17 15:02:10 +02005368moveto_node_check(const struct lyd_node *node, enum lyxp_node_type root_type, const struct lysc_node *context_op,
Radek Krejci0f969882020-08-21 16:56:47 +02005369 const char *node_name, const struct lys_module *moveto_mod)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005370{
5371 /* module check */
5372 if (moveto_mod && (node->schema->module != moveto_mod)) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005373 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005374 }
5375
Michal Vasko5c4e5892019-11-14 12:31:38 +01005376 /* context check */
5377 if ((root_type == LYXP_NODE_ROOT_CONFIG) && (node->schema->flags & LYS_CONFIG_R)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005378 return LY_EINVAL;
Michal Vasko6b26e742020-07-17 15:02:10 +02005379 } else if (context_op && (node->schema->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) && (node->schema != context_op)) {
5380 return LY_EINVAL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005381 }
5382
5383 /* name check */
Michal Vasko61ac2f62020-05-25 12:39:51 +02005384 if (node_name && strcmp(node_name, "*") && (node->schema->name != node_name)) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005385 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005386 }
5387
Michal Vaskoa1424542019-11-14 16:08:52 +01005388 /* when check */
5389 if (moveto_when_check(node)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005390 return LY_EINCOMPLETE;
Michal Vaskoa1424542019-11-14 16:08:52 +01005391 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005392
5393 /* match */
5394 return LY_SUCCESS;
5395}
5396
5397/**
5398 * @brief Check @p node as a part of schema NameTest processing.
5399 *
5400 * @param[in] node Schema node to check.
5401 * @param[in] root_type XPath root node type.
Michal Vasko6b26e742020-07-17 15:02:10 +02005402 * @param[in] context_op XPath operation parent.
Michal Vaskod3678892020-05-21 10:06:58 +02005403 * @param[in] node_name Node name in the dictionary to move to, NULL for any nodes.
5404 * @param[in] moveto_mod Expected module of the node, NULL for any.
Michal Vasko6346ece2019-09-24 13:12:53 +02005405 * @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 +02005406 */
5407static LY_ERR
Michal Vasko6b26e742020-07-17 15:02:10 +02005408moveto_scnode_check(const struct lysc_node *node, enum lyxp_node_type root_type, const struct lysc_node *context_op,
Radek Krejci0f969882020-08-21 16:56:47 +02005409 const char *node_name, const struct lys_module *moveto_mod)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005410{
Michal Vasko03ff5a72019-09-11 13:49:33 +02005411 /* module check */
Michal Vaskod3678892020-05-21 10:06:58 +02005412 if (moveto_mod && (node->module != moveto_mod)) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005413 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005414 }
5415
5416 /* context check */
5417 if ((root_type == LYXP_NODE_ROOT_CONFIG) && (node->flags & LYS_CONFIG_R)) {
5418 return LY_EINVAL;
Michal Vasko6b26e742020-07-17 15:02:10 +02005419 } else if (context_op && (node->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) && (node != context_op)) {
5420 return LY_EINVAL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005421 }
5422
5423 /* name check */
Michal Vasko61ac2f62020-05-25 12:39:51 +02005424 if (node_name && strcmp(node_name, "*") && (node->name != node_name)) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005425 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005426 }
5427
5428 /* match */
5429 return LY_SUCCESS;
5430}
5431
5432/**
Michal Vaskod3678892020-05-21 10:06:58 +02005433 * @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 +02005434 *
5435 * @param[in,out] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02005436 * @param[in] mod Matching node module, NULL for any.
5437 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005438 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
5439 */
5440static LY_ERR
Michal Vaskod3678892020-05-21 10:06:58 +02005441moveto_node(struct lyxp_set *set, const struct lys_module *mod, const char *ncname)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005442{
Michal Vaskof03ed032020-03-04 13:31:44 +01005443 uint32_t i;
Michal Vaskod3678892020-05-21 10:06:58 +02005444 const struct lyd_node *siblings, *sub;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005445 LY_ERR rc;
5446
Michal Vaskod3678892020-05-21 10:06:58 +02005447 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005448 return LY_SUCCESS;
5449 }
5450
5451 if (set->type != LYXP_SET_NODE_SET) {
5452 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
5453 return LY_EVALID;
5454 }
5455
Michal Vasko03ff5a72019-09-11 13:49:33 +02005456 for (i = 0; i < set->used; ) {
Radek Krejci857189e2020-09-01 13:26:36 +02005457 ly_bool replaced = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005458
5459 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 +01005460 assert(!set->val.nodes[i].node);
Michal Vaskod3678892020-05-21 10:06:58 +02005461
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005462 /* search in all the trees */
Michal Vaskod3678892020-05-21 10:06:58 +02005463 siblings = set->tree;
Michal Vasko5bfd4be2020-06-23 13:26:19 +02005464 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02005465 /* search in children */
Radek Krejcia1c1e542020-09-29 16:06:52 +02005466 siblings = lyd_child(set->val.nodes[i].node);
Michal Vaskod3678892020-05-21 10:06:58 +02005467 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005468
Michal Vaskod3678892020-05-21 10:06:58 +02005469 for (sub = siblings; sub; sub = sub->next) {
Michal Vasko6b26e742020-07-17 15:02:10 +02005470 rc = moveto_node_check(sub, set->root_type, set->context_op, ncname, mod);
Michal Vaskod3678892020-05-21 10:06:58 +02005471 if (rc == LY_SUCCESS) {
5472 if (!replaced) {
5473 set_replace_node(set, sub, 0, LYXP_NODE_ELEM, i);
5474 replaced = 1;
5475 } else {
5476 set_insert_node(set, sub, 0, LYXP_NODE_ELEM, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005477 }
Michal Vaskod3678892020-05-21 10:06:58 +02005478 ++i;
5479 } else if (rc == LY_EINCOMPLETE) {
5480 return rc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005481 }
5482 }
5483
5484 if (!replaced) {
5485 /* no match */
5486 set_remove_node(set, i);
5487 }
5488 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005489
5490 return LY_SUCCESS;
5491}
5492
5493/**
Michal Vaskod3678892020-05-21 10:06:58 +02005494 * @brief Move context @p set to a node using hashes. Result is LYXP_SET_NODE_SET (or LYXP_SET_EMPTY).
5495 * Context position aware.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005496 *
5497 * @param[in,out] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02005498 * @param[in] scnode Matching node schema.
Michal Vasko004d3152020-06-11 19:59:22 +02005499 * @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 +02005500 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
5501 */
5502static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02005503moveto_node_hash(struct lyxp_set *set, const struct lysc_node *scnode, const struct ly_path_predicate *predicates)
Michal Vaskod3678892020-05-21 10:06:58 +02005504{
Michal Vasko004d3152020-06-11 19:59:22 +02005505 LY_ERR ret = LY_SUCCESS;
Michal Vaskod3678892020-05-21 10:06:58 +02005506 uint32_t i;
Michal Vaskod3678892020-05-21 10:06:58 +02005507 const struct lyd_node *siblings;
Michal Vasko004d3152020-06-11 19:59:22 +02005508 struct lyd_node *sub, *inst = NULL;
Michal Vaskod3678892020-05-21 10:06:58 +02005509
Michal Vasko004d3152020-06-11 19:59:22 +02005510 assert(scnode && (!(scnode->nodetype & (LYS_LIST | LYS_LEAFLIST)) || predicates));
Michal Vaskod3678892020-05-21 10:06:58 +02005511
5512 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02005513 goto cleanup;
Michal Vaskod3678892020-05-21 10:06:58 +02005514 }
5515
5516 if (set->type != LYXP_SET_NODE_SET) {
5517 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 +02005518 ret = LY_EVALID;
5519 goto cleanup;
Michal Vaskod3678892020-05-21 10:06:58 +02005520 }
5521
5522 /* context check for all the nodes since we have the schema node */
5523 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (scnode->flags & LYS_CONFIG_R)) {
5524 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02005525 goto cleanup;
Radek Krejci0f969882020-08-21 16:56:47 +02005526 } else if (set->context_op && (scnode->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF))
Michal Vasko6b26e742020-07-17 15:02:10 +02005527 && (scnode != set->context_op)) {
5528 lyxp_set_free_content(set);
5529 goto cleanup;
Michal Vasko004d3152020-06-11 19:59:22 +02005530 }
5531
5532 /* create specific data instance if needed */
5533 if (scnode->nodetype == LYS_LIST) {
5534 LY_CHECK_GOTO(ret = lyd_create_list(scnode, predicates, &inst), cleanup);
5535 } else if (scnode->nodetype == LYS_LEAFLIST) {
5536 LY_CHECK_GOTO(ret = lyd_create_term2(scnode, &predicates[0].value, &inst), cleanup);
Michal Vaskod3678892020-05-21 10:06:58 +02005537 }
5538
5539 for (i = 0; i < set->used; ) {
Michal Vaskod3678892020-05-21 10:06:58 +02005540 siblings = NULL;
5541
5542 if ((set->val.nodes[i].type == LYXP_NODE_ROOT_CONFIG) || (set->val.nodes[i].type == LYXP_NODE_ROOT)) {
5543 assert(!set->val.nodes[i].node);
5544
5545 /* search in all the trees */
5546 siblings = set->tree;
5547 } else if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
5548 /* search in children */
Radek Krejcia1c1e542020-09-29 16:06:52 +02005549 siblings = lyd_child(set->val.nodes[i].node);
Michal Vaskod3678892020-05-21 10:06:58 +02005550 }
5551
5552 /* find the node using hashes */
Michal Vasko004d3152020-06-11 19:59:22 +02005553 if (inst) {
5554 lyd_find_sibling_first(siblings, inst, &sub);
Michal Vaskod3678892020-05-21 10:06:58 +02005555 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02005556 lyd_find_sibling_val(siblings, scnode, NULL, 0, &sub);
Michal Vaskod3678892020-05-21 10:06:58 +02005557 }
5558
5559 /* when check */
5560 if (sub && moveto_when_check(sub)) {
Michal Vasko004d3152020-06-11 19:59:22 +02005561 ret = LY_EINCOMPLETE;
5562 goto cleanup;
Michal Vaskod3678892020-05-21 10:06:58 +02005563 }
5564
5565 if (sub) {
5566 /* pos filled later */
Michal Vaskocb1b7c02020-07-03 13:38:12 +02005567 set_replace_node(set, sub, 0, LYXP_NODE_ELEM, i);
Michal Vaskod3678892020-05-21 10:06:58 +02005568 ++i;
Michal Vaskocb1b7c02020-07-03 13:38:12 +02005569 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02005570 /* no match */
5571 set_remove_node(set, i);
5572 }
5573 }
5574
Michal Vasko004d3152020-06-11 19:59:22 +02005575cleanup:
5576 lyd_free_tree(inst);
5577 return ret;
Michal Vaskod3678892020-05-21 10:06:58 +02005578}
5579
5580/**
5581 * @brief Move context @p set to a schema node. Result is LYXP_SET_SCNODE_SET (or LYXP_SET_EMPTY).
5582 *
5583 * @param[in,out] set Set to use.
5584 * @param[in] mod Matching node module, NULL for any.
5585 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005586 * @param[in] options XPath options.
5587 * @return LY_ERR
5588 */
5589static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005590moveto_scnode(struct lyxp_set *set, const struct lys_module *mod, const char *ncname, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005591{
Radek Krejci857189e2020-09-01 13:26:36 +02005592 ly_bool temp_ctx = 0;
Radek Krejci1deb5be2020-08-26 16:43:36 +02005593 uint32_t getnext_opts;
5594 uint32_t orig_used, i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005595 uint32_t mod_idx;
Michal Vasko519fd602020-05-26 12:17:39 +02005596 const struct lysc_node *iter, *start_parent;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005597
Michal Vaskod3678892020-05-21 10:06:58 +02005598 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005599 return LY_SUCCESS;
5600 }
5601
5602 if (set->type != LYXP_SET_SCNODE_SET) {
Michal Vaskof6e51882019-12-16 09:59:45 +01005603 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 +02005604 return LY_EVALID;
5605 }
5606
Michal Vaskocafad9d2019-11-07 15:20:03 +01005607 /* getnext opts */
5608 getnext_opts = LYS_GETNEXT_NOSTATECHECK;
5609 if (options & LYXP_SCNODE_OUTPUT) {
5610 getnext_opts |= LYS_GETNEXT_OUTPUT;
5611 }
5612
Michal Vasko03ff5a72019-09-11 13:49:33 +02005613 orig_used = set->used;
5614 for (i = 0; i < orig_used; ++i) {
Radek Krejciaa6b53f2020-08-27 15:19:03 +02005615 uint32_t idx;
5616
Michal Vasko03ff5a72019-09-11 13:49:33 +02005617 if (set->val.scnodes[i].in_ctx != 1) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01005618 if (set->val.scnodes[i].in_ctx != -2) {
5619 continue;
5620 }
5621
5622 /* remember context node */
5623 set->val.scnodes[i].in_ctx = -1;
Michal Vaskoec4df482019-12-16 10:02:18 +01005624 } else {
5625 set->val.scnodes[i].in_ctx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005626 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005627
5628 start_parent = set->val.scnodes[i].scnode;
5629
5630 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 +02005631 /* 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 +02005632 * so use it directly (root node itself is useless in this case) */
5633 mod_idx = 0;
Michal Vaskod3678892020-05-21 10:06:58 +02005634 while (mod || (mod = (struct lys_module *)ly_ctx_get_module_iter(set->ctx, &mod_idx))) {
Michal Vasko519fd602020-05-26 12:17:39 +02005635 iter = NULL;
Michal Vasko509de4d2019-12-10 14:51:30 +01005636 /* module may not be implemented */
Michal Vasko519fd602020-05-26 12:17:39 +02005637 while (mod->implemented && (iter = lys_getnext(iter, NULL, mod->compiled, getnext_opts))) {
Michal Vasko6b26e742020-07-17 15:02:10 +02005638 if (!moveto_scnode_check(iter, set->root_type, set->context_op, ncname, mod)) {
Radek Krejciaa6b53f2020-08-27 15:19:03 +02005639 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, iter, LYXP_NODE_ELEM, &idx));
5640
Michal Vasko03ff5a72019-09-11 13:49:33 +02005641 /* we need to prevent these nodes from being considered in this moveto */
Radek Krejciaa6b53f2020-08-27 15:19:03 +02005642 if ((idx < orig_used) && (idx > i)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005643 set->val.scnodes[idx].in_ctx = 2;
5644 temp_ctx = 1;
5645 }
5646 }
5647 }
5648
5649 if (!mod_idx) {
Michal Vaskod3678892020-05-21 10:06:58 +02005650 /* mod was specified, we are not going through the whole context */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005651 break;
5652 }
5653 /* next iteration */
Michal Vaskod3678892020-05-21 10:06:58 +02005654 mod = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005655 }
5656
Michal Vasko519fd602020-05-26 12:17:39 +02005657 } else if (set->val.scnodes[i].type == LYXP_NODE_ELEM) {
5658 iter = NULL;
5659 while ((iter = lys_getnext(iter, start_parent, NULL, getnext_opts))) {
Michal Vasko6b26e742020-07-17 15:02:10 +02005660 if (!moveto_scnode_check(iter, set->root_type, set->context_op, ncname, (mod ? mod : set->local_mod))) {
Radek Krejciaa6b53f2020-08-27 15:19:03 +02005661 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, iter, LYXP_NODE_ELEM, &idx));
5662
5663 if ((idx < orig_used) && (idx > i)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005664 set->val.scnodes[idx].in_ctx = 2;
5665 temp_ctx = 1;
5666 }
5667 }
5668 }
5669 }
5670 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005671
5672 /* correct temporary in_ctx values */
5673 if (temp_ctx) {
5674 for (i = 0; i < orig_used; ++i) {
5675 if (set->val.scnodes[i].in_ctx == 2) {
5676 set->val.scnodes[i].in_ctx = 1;
5677 }
5678 }
5679 }
5680
5681 return LY_SUCCESS;
5682}
5683
5684/**
Michal Vaskod3678892020-05-21 10:06:58 +02005685 * @brief Move context @p set to a node and all its descendants. Result is LYXP_SET_NODE_SET (or LYXP_SET_EMPTY).
Michal Vasko03ff5a72019-09-11 13:49:33 +02005686 * Context position aware.
5687 *
5688 * @param[in] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02005689 * @param[in] mod Matching node module, NULL for any.
5690 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005691 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
5692 */
5693static LY_ERR
Michal Vaskod3678892020-05-21 10:06:58 +02005694moveto_node_alldesc(struct lyxp_set *set, const struct lys_module *mod, const char *ncname)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005695{
5696 uint32_t i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005697 const struct lyd_node *next, *elem, *start;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005698 struct lyxp_set ret_set;
5699 LY_ERR rc;
5700
Michal Vaskod3678892020-05-21 10:06:58 +02005701 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005702 return LY_SUCCESS;
5703 }
5704
5705 if (set->type != LYXP_SET_NODE_SET) {
5706 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
5707 return LY_EVALID;
5708 }
5709
Michal Vasko9f96a052020-03-10 09:41:45 +01005710 /* replace the original nodes (and throws away all text and meta nodes, root is replaced by a child) */
Michal Vaskod3678892020-05-21 10:06:58 +02005711 rc = moveto_node(set, NULL, NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005712 LY_CHECK_RET(rc);
5713
Michal Vasko6346ece2019-09-24 13:12:53 +02005714 /* this loop traverses all the nodes in the set and adds/keeps only those that match qname */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005715 set_init(&ret_set, set);
5716 for (i = 0; i < set->used; ++i) {
5717
5718 /* TREE DFS */
5719 start = set->val.nodes[i].node;
5720 for (elem = next = start; elem; elem = next) {
Michal Vasko6b26e742020-07-17 15:02:10 +02005721 rc = moveto_node_check(elem, set->root_type, set->context_op, ncname, mod);
Michal Vasko6346ece2019-09-24 13:12:53 +02005722 if (!rc) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005723 /* add matching node into result set */
5724 set_insert_node(&ret_set, elem, 0, LYXP_NODE_ELEM, ret_set.used);
5725 if (set_dup_node_check(set, elem, LYXP_NODE_ELEM, i)) {
5726 /* the node is a duplicate, we'll process it later in the set */
5727 goto skip_children;
5728 }
Michal Vasko6346ece2019-09-24 13:12:53 +02005729 } else if (rc == LY_EINCOMPLETE) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005730 return rc;
5731 } else if (rc == LY_EINVAL) {
5732 goto skip_children;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005733 }
5734
5735 /* TREE DFS NEXT ELEM */
5736 /* select element for the next run - children first */
Radek Krejcia1c1e542020-09-29 16:06:52 +02005737 next = lyd_child(elem);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005738 if (!next) {
5739skip_children:
5740 /* no children, so try siblings, but only if it's not the start,
5741 * that is considered to be the root and it's siblings are not traversed */
5742 if (elem != start) {
5743 next = elem->next;
5744 } else {
5745 break;
5746 }
5747 }
5748 while (!next) {
5749 /* no siblings, go back through the parents */
5750 if ((struct lyd_node *)elem->parent == start) {
5751 /* we are done, no next element to process */
5752 break;
5753 }
5754 /* parent is already processed, go to its sibling */
5755 elem = (struct lyd_node *)elem->parent;
5756 next = elem->next;
5757 }
5758 }
5759 }
5760
5761 /* make the temporary set the current one */
5762 ret_set.ctx_pos = set->ctx_pos;
5763 ret_set.ctx_size = set->ctx_size;
Michal Vaskod3678892020-05-21 10:06:58 +02005764 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005765 memcpy(set, &ret_set, sizeof *set);
5766
5767 return LY_SUCCESS;
5768}
5769
5770/**
Michal Vasko61ac2f62020-05-25 12:39:51 +02005771 * @brief Move context @p set to a schema node and all its descendants. Result is LYXP_SET_NODE_SET.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005772 *
5773 * @param[in] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02005774 * @param[in] mod Matching node module, NULL for any.
5775 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005776 * @param[in] options XPath options.
5777 * @return LY_ERR
5778 */
5779static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005780moveto_scnode_alldesc(struct lyxp_set *set, const struct lys_module *mod, const char *ncname, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005781{
Radek Krejci1deb5be2020-08-26 16:43:36 +02005782 uint32_t i, orig_used;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005783 const struct lysc_node *next, *elem, *start;
Michal Vasko6346ece2019-09-24 13:12:53 +02005784 LY_ERR rc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005785
Michal Vaskod3678892020-05-21 10:06:58 +02005786 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005787 return LY_SUCCESS;
5788 }
5789
5790 if (set->type != LYXP_SET_SCNODE_SET) {
Michal Vaskof6e51882019-12-16 09:59:45 +01005791 LOGVAL(set->ctx, LY_VLOG_LYSC, set->ctx_scnode, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005792 return LY_EVALID;
5793 }
5794
Michal Vasko03ff5a72019-09-11 13:49:33 +02005795 orig_used = set->used;
5796 for (i = 0; i < orig_used; ++i) {
5797 if (set->val.scnodes[i].in_ctx != 1) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01005798 if (set->val.scnodes[i].in_ctx != -2) {
5799 continue;
5800 }
5801
5802 /* remember context node */
5803 set->val.scnodes[i].in_ctx = -1;
Michal Vaskoec4df482019-12-16 10:02:18 +01005804 } else {
5805 set->val.scnodes[i].in_ctx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005806 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005807
5808 /* TREE DFS */
5809 start = set->val.scnodes[i].scnode;
5810 for (elem = next = start; elem; elem = next) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005811 if ((elem == start) || (elem->nodetype & (LYS_CHOICE | LYS_CASE))) {
5812 /* schema-only nodes, skip root */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005813 goto next_iter;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005814 }
5815
Michal Vasko6b26e742020-07-17 15:02:10 +02005816 rc = moveto_scnode_check(elem, set->root_type, set->context_op, ncname, mod);
Michal Vasko6346ece2019-09-24 13:12:53 +02005817 if (!rc) {
Radek Krejciaa6b53f2020-08-27 15:19:03 +02005818 uint32_t idx;
5819
5820 if (lyxp_set_scnode_contains(set, elem, LYXP_NODE_ELEM, i, &idx)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005821 set->val.scnodes[idx].in_ctx = 1;
Radek Krejci1deb5be2020-08-26 16:43:36 +02005822 if ((uint32_t)idx > i) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005823 /* we will process it later in the set */
5824 goto skip_children;
5825 }
5826 } else {
Radek Krejciaa6b53f2020-08-27 15:19:03 +02005827 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, elem, LYXP_NODE_ELEM, NULL));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005828 }
Michal Vasko6346ece2019-09-24 13:12:53 +02005829 } else if (rc == LY_EINVAL) {
5830 goto skip_children;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005831 }
5832
5833next_iter:
5834 /* TREE DFS NEXT ELEM */
5835 /* select element for the next run - children first */
5836 next = lysc_node_children(elem, options & LYXP_SCNODE_OUTPUT ? LYS_CONFIG_R : LYS_CONFIG_W);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005837 if (!next) {
5838skip_children:
5839 /* no children, so try siblings, but only if it's not the start,
5840 * that is considered to be the root and it's siblings are not traversed */
5841 if (elem != start) {
5842 next = elem->next;
5843 } else {
5844 break;
5845 }
5846 }
5847 while (!next) {
5848 /* no siblings, go back through the parents */
5849 if (elem->parent == start) {
5850 /* we are done, no next element to process */
5851 break;
5852 }
5853 /* parent is already processed, go to its sibling */
5854 elem = elem->parent;
5855 next = elem->next;
5856 }
5857 }
5858 }
5859
5860 return LY_SUCCESS;
5861}
5862
5863/**
Michal Vasko61ac2f62020-05-25 12:39:51 +02005864 * @brief Move context @p set to an attribute. Result is LYXP_SET_NODE_SET.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005865 * Indirectly context position aware.
5866 *
5867 * @param[in,out] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02005868 * @param[in] mod Matching metadata module, NULL for any.
5869 * @param[in] ncname Matching metadata name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005870 * @return LY_ERR
5871 */
5872static LY_ERR
Michal Vaskod3678892020-05-21 10:06:58 +02005873moveto_attr(struct lyxp_set *set, const struct lys_module *mod, const char *ncname)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005874{
Michal Vasko9f96a052020-03-10 09:41:45 +01005875 struct lyd_meta *sub;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005876
Michal Vaskod3678892020-05-21 10:06:58 +02005877 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005878 return LY_SUCCESS;
5879 }
5880
5881 if (set->type != LYXP_SET_NODE_SET) {
5882 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
5883 return LY_EVALID;
5884 }
5885
Radek Krejci1deb5be2020-08-26 16:43:36 +02005886 for (uint32_t i = 0; i < set->used; ) {
Radek Krejci857189e2020-09-01 13:26:36 +02005887 ly_bool replaced = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005888
5889 /* only attributes of an elem (not dummy) can be in the result, skip all the rest;
5890 * our attributes are always qualified */
Michal Vasko5c4e5892019-11-14 12:31:38 +01005891 if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
Michal Vasko9f96a052020-03-10 09:41:45 +01005892 for (sub = set->val.nodes[i].node->meta; sub; sub = sub->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005893
5894 /* check "namespace" */
Michal Vaskod3678892020-05-21 10:06:58 +02005895 if (mod && (sub->annotation->module != mod)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005896 continue;
5897 }
5898
Michal Vaskod3678892020-05-21 10:06:58 +02005899 if (!ncname || (sub->name == ncname)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005900 /* match */
5901 if (!replaced) {
Michal Vasko9f96a052020-03-10 09:41:45 +01005902 set->val.meta[i].meta = sub;
5903 set->val.meta[i].type = LYXP_NODE_META;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005904 /* pos does not change */
5905 replaced = 1;
5906 } else {
Michal Vasko9f96a052020-03-10 09:41:45 +01005907 set_insert_node(set, (struct lyd_node *)sub, set->val.nodes[i].pos, LYXP_NODE_META, i + 1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005908 }
5909 ++i;
5910 }
5911 }
5912 }
5913
5914 if (!replaced) {
5915 /* no match */
5916 set_remove_node(set, i);
5917 }
5918 }
5919
5920 return LY_SUCCESS;
5921}
5922
5923/**
5924 * @brief Move context @p set1 to union with @p set2. @p set2 is emptied afterwards.
Michal Vasko61ac2f62020-05-25 12:39:51 +02005925 * Result is LYXP_SET_NODE_SET. Context position aware.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005926 *
5927 * @param[in,out] set1 Set to use for the result.
5928 * @param[in] set2 Set that is copied to @p set1.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005929 * @return LY_ERR
5930 */
5931static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005932moveto_union(struct lyxp_set *set1, struct lyxp_set *set2)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005933{
5934 LY_ERR rc;
5935
Michal Vaskod3678892020-05-21 10:06:58 +02005936 if ((set1->type != LYXP_SET_NODE_SET) || (set2->type != LYXP_SET_NODE_SET)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005937 LOGVAL(set1->ctx, LY_VLOG_LYD, set1->ctx_node, LY_VCODE_XP_INOP_2, "union", print_set_type(set1), print_set_type(set2));
5938 return LY_EVALID;
5939 }
5940
5941 /* set2 is empty or both set1 and set2 */
Michal Vaskod3678892020-05-21 10:06:58 +02005942 if (!set2->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005943 return LY_SUCCESS;
5944 }
5945
Michal Vaskod3678892020-05-21 10:06:58 +02005946 if (!set1->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005947 memcpy(set1, set2, sizeof *set1);
5948 /* dynamic memory belongs to set1 now, do not free */
Michal Vaskod3678892020-05-21 10:06:58 +02005949 memset(set2, 0, sizeof *set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005950 return LY_SUCCESS;
5951 }
5952
5953 /* we assume sets are sorted */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005954 assert(!set_sort(set1) && !set_sort(set2));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005955
5956 /* sort, remove duplicates */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005957 rc = set_sorted_merge(set1, set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005958 LY_CHECK_RET(rc);
5959
5960 /* final set must be sorted */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005961 assert(!set_sort(set1));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005962
5963 return LY_SUCCESS;
5964}
5965
5966/**
Michal Vasko61ac2f62020-05-25 12:39:51 +02005967 * @brief Move context @p set to an attribute in any of the descendants. Result is LYXP_SET_NODE_SET.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005968 * Context position aware.
5969 *
5970 * @param[in,out] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02005971 * @param[in] mod Matching metadata module, NULL for any.
5972 * @param[in] ncname Matching metadata name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005973 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
5974 */
5975static int
Michal Vaskod3678892020-05-21 10:06:58 +02005976moveto_attr_alldesc(struct lyxp_set *set, const struct lys_module *mod, const char *ncname)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005977{
Michal Vasko9f96a052020-03-10 09:41:45 +01005978 struct lyd_meta *sub;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005979 struct lyxp_set *set_all_desc = NULL;
5980 LY_ERR rc;
5981
Michal Vaskod3678892020-05-21 10:06:58 +02005982 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005983 return LY_SUCCESS;
5984 }
5985
5986 if (set->type != LYXP_SET_NODE_SET) {
5987 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
5988 return LY_EVALID;
5989 }
5990
Michal Vasko03ff5a72019-09-11 13:49:33 +02005991 /* can be optimized similarly to moveto_node_alldesc() and save considerable amount of memory,
5992 * but it likely won't be used much, so it's a waste of time */
5993 /* copy the context */
5994 set_all_desc = set_copy(set);
5995 /* get all descendant nodes (the original context nodes are removed) */
Michal Vaskod3678892020-05-21 10:06:58 +02005996 rc = moveto_node_alldesc(set_all_desc, NULL, NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005997 if (rc != LY_SUCCESS) {
5998 lyxp_set_free(set_all_desc);
5999 return rc;
6000 }
6001 /* prepend the original context nodes */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006002 rc = moveto_union(set, set_all_desc);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006003 if (rc != LY_SUCCESS) {
6004 lyxp_set_free(set_all_desc);
6005 return rc;
6006 }
6007 lyxp_set_free(set_all_desc);
6008
Radek Krejci1deb5be2020-08-26 16:43:36 +02006009 for (uint32_t i = 0; i < set->used; ) {
Radek Krejci857189e2020-09-01 13:26:36 +02006010 ly_bool replaced = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006011
6012 /* only attributes of an elem can be in the result, skip all the rest,
6013 * we have all attributes qualified in lyd tree */
6014 if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
Michal Vasko9f96a052020-03-10 09:41:45 +01006015 for (sub = set->val.nodes[i].node->meta; sub; sub = sub->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006016 /* check "namespace" */
Michal Vaskod3678892020-05-21 10:06:58 +02006017 if (mod && (sub->annotation->module != mod)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006018 continue;
6019 }
6020
Michal Vaskod3678892020-05-21 10:06:58 +02006021 if (!ncname || (sub->name == ncname)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006022 /* match */
6023 if (!replaced) {
Michal Vasko9f96a052020-03-10 09:41:45 +01006024 set->val.meta[i].meta = sub;
6025 set->val.meta[i].type = LYXP_NODE_META;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006026 /* pos does not change */
6027 replaced = 1;
6028 } else {
Michal Vasko9f96a052020-03-10 09:41:45 +01006029 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 +02006030 }
6031 ++i;
6032 }
6033 }
6034 }
6035
6036 if (!replaced) {
6037 /* no match */
6038 set_remove_node(set, i);
6039 }
6040 }
6041
6042 return LY_SUCCESS;
6043}
6044
6045/**
Michal Vasko61ac2f62020-05-25 12:39:51 +02006046 * @brief Move context @p set to self and al chilren, recursively. Handles '/' or '//' and '.'. Result is LYXP_SET_NODE_SET.
6047 * Context position aware.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006048 *
6049 * @param[in] parent Current parent.
6050 * @param[in] parent_pos Position of @p parent.
6051 * @param[in] parent_type Node type of @p parent.
6052 * @param[in,out] to_set Set to use.
6053 * @param[in] dup_check_set Set for checking duplicities.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006054 * @param[in] options XPath options.
6055 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6056 */
6057static LY_ERR
6058moveto_self_add_children_r(const struct lyd_node *parent, uint32_t parent_pos, enum lyxp_node_type parent_type,
Radek Krejci1deb5be2020-08-26 16:43:36 +02006059 struct lyxp_set *to_set, const struct lyxp_set *dup_check_set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006060{
Michal Vasko61ac2f62020-05-25 12:39:51 +02006061 const struct lyd_node *iter, *first;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006062 LY_ERR rc;
6063
6064 switch (parent_type) {
6065 case LYXP_NODE_ROOT:
6066 case LYXP_NODE_ROOT_CONFIG:
Michal Vasko61ac2f62020-05-25 12:39:51 +02006067 assert(!parent);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006068
Michal Vasko61ac2f62020-05-25 12:39:51 +02006069 /* add all top-level nodes as elements */
6070 first = to_set->tree;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006071 break;
6072 case LYXP_NODE_ELEM:
Michal Vasko61ac2f62020-05-25 12:39:51 +02006073 /* add just the text node of this term element node */
6074 if (parent->schema->nodetype & (LYD_NODE_TERM | LYD_NODE_ANY)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006075 if (!set_dup_node_check(dup_check_set, parent, LYXP_NODE_TEXT, -1)) {
6076 set_insert_node(to_set, parent, parent_pos, LYXP_NODE_TEXT, to_set->used);
6077 }
Michal Vasko61ac2f62020-05-25 12:39:51 +02006078 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006079 }
Michal Vasko61ac2f62020-05-25 12:39:51 +02006080
6081 /* add all the children of this node */
Radek Krejcia1c1e542020-09-29 16:06:52 +02006082 first = lyd_child(parent);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006083 break;
6084 default:
6085 LOGINT_RET(parent->schema->module->ctx);
6086 }
6087
Michal Vasko61ac2f62020-05-25 12:39:51 +02006088 /* add all top-level nodes as elements */
6089 LY_LIST_FOR(first, iter) {
6090 /* context check */
6091 if ((parent_type == LYXP_NODE_ROOT_CONFIG) && (iter->schema->flags & LYS_CONFIG_R)) {
6092 continue;
6093 }
6094
6095 /* when check */
6096 if (moveto_when_check(iter)) {
6097 return LY_EINCOMPLETE;
6098 }
6099
6100 if (!set_dup_node_check(dup_check_set, iter, LYXP_NODE_ELEM, -1)) {
6101 set_insert_node(to_set, iter, 0, LYXP_NODE_ELEM, to_set->used);
6102
6103 /* also add all the children of this node, recursively */
6104 rc = moveto_self_add_children_r(iter, 0, LYXP_NODE_ELEM, to_set, dup_check_set, options);
6105 LY_CHECK_RET(rc);
6106 }
6107 }
6108
Michal Vasko03ff5a72019-09-11 13:49:33 +02006109 return LY_SUCCESS;
6110}
6111
6112/**
6113 * @brief Move context @p set to self. Handles '/' or '//' and '.'. Result is LYXP_SET_NODE_SET
6114 * (or LYXP_SET_EMPTY). Context position aware.
6115 *
6116 * @param[in,out] set Set to use.
6117 * @param[in] all_desc Whether to go to all descendants ('//') or not ('/').
6118 * @param[in] options XPath options.
6119 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6120 */
6121static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02006122moveto_self(struct lyxp_set *set, ly_bool all_desc, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006123{
Michal Vasko03ff5a72019-09-11 13:49:33 +02006124 struct lyxp_set ret_set;
6125 LY_ERR rc;
6126
Michal Vaskod3678892020-05-21 10:06:58 +02006127 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006128 return LY_SUCCESS;
6129 }
6130
6131 if (set->type != LYXP_SET_NODE_SET) {
6132 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
6133 return LY_EVALID;
6134 }
6135
6136 /* nothing to do */
6137 if (!all_desc) {
6138 return LY_SUCCESS;
6139 }
6140
Michal Vasko03ff5a72019-09-11 13:49:33 +02006141 /* add all the children, they get added recursively */
6142 set_init(&ret_set, set);
Radek Krejci1deb5be2020-08-26 16:43:36 +02006143 for (uint32_t i = 0; i < set->used; ++i) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006144 /* copy the current node to tmp */
6145 set_insert_node(&ret_set, set->val.nodes[i].node, set->val.nodes[i].pos, set->val.nodes[i].type, ret_set.used);
6146
6147 /* do not touch attributes and text nodes */
Michal Vasko9f96a052020-03-10 09:41:45 +01006148 if ((set->val.nodes[i].type == LYXP_NODE_TEXT) || (set->val.nodes[i].type == LYXP_NODE_META)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006149 continue;
6150 }
6151
Michal Vasko03ff5a72019-09-11 13:49:33 +02006152 /* add all the children */
6153 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 +01006154 set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006155 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02006156 lyxp_set_free_content(&ret_set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006157 return rc;
6158 }
6159 }
6160
6161 /* use the temporary set as the current one */
6162 ret_set.ctx_pos = set->ctx_pos;
6163 ret_set.ctx_size = set->ctx_size;
Michal Vaskod3678892020-05-21 10:06:58 +02006164 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006165 memcpy(set, &ret_set, sizeof *set);
6166
6167 return LY_SUCCESS;
6168}
6169
6170/**
6171 * @brief Move context schema @p set to self. Handles '/' or '//' and '.'. Result is LYXP_SET_SCNODE_SET
6172 * (or LYXP_SET_EMPTY).
6173 *
6174 * @param[in,out] set Set to use.
6175 * @param[in] all_desc Whether to go to all descendants ('//') or not ('/').
6176 * @param[in] options XPath options.
6177 * @return LY_ERR
6178 */
6179static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02006180moveto_scnode_self(struct lyxp_set *set, ly_bool all_desc, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006181{
Radek Krejci1deb5be2020-08-26 16:43:36 +02006182 uint32_t getnext_opts;
6183 uint32_t mod_idx;
Michal Vasko519fd602020-05-26 12:17:39 +02006184 const struct lysc_node *iter, *start_parent;
6185 const struct lys_module *mod;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006186
Michal Vaskod3678892020-05-21 10:06:58 +02006187 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006188 return LY_SUCCESS;
6189 }
6190
6191 if (set->type != LYXP_SET_SCNODE_SET) {
Michal Vaskof6e51882019-12-16 09:59:45 +01006192 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 +02006193 return LY_EVALID;
6194 }
6195
6196 /* nothing to do */
6197 if (!all_desc) {
6198 return LY_SUCCESS;
6199 }
6200
Michal Vasko519fd602020-05-26 12:17:39 +02006201 /* getnext opts */
6202 getnext_opts = LYS_GETNEXT_NOSTATECHECK;
6203 if (options & LYXP_SCNODE_OUTPUT) {
6204 getnext_opts |= LYS_GETNEXT_OUTPUT;
6205 }
6206
6207 /* add all the children, recursively as they are being added into the same set */
Radek Krejci1deb5be2020-08-26 16:43:36 +02006208 for (uint32_t i = 0; i < set->used; ++i) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006209 if (set->val.scnodes[i].in_ctx != 1) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01006210 if (set->val.scnodes[i].in_ctx != -2) {
6211 continue;
6212 }
6213
Michal Vasko519fd602020-05-26 12:17:39 +02006214 /* remember context node */
6215 set->val.scnodes[i].in_ctx = -1;
6216 } else {
6217 set->val.scnodes[i].in_ctx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006218 }
6219
Michal Vasko519fd602020-05-26 12:17:39 +02006220 start_parent = set->val.scnodes[i].scnode;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006221
Michal Vasko519fd602020-05-26 12:17:39 +02006222 if ((set->val.scnodes[i].type == LYXP_NODE_ROOT_CONFIG) || (set->val.scnodes[i].type == LYXP_NODE_ROOT)) {
6223 /* it can actually be in any module, it's all <running> */
6224 mod_idx = 0;
6225 while ((mod = (struct lys_module *)ly_ctx_get_module_iter(set->ctx, &mod_idx))) {
6226 iter = NULL;
6227 /* module may not be implemented */
6228 while (mod->implemented && (iter = lys_getnext(iter, NULL, mod->compiled, getnext_opts))) {
6229 /* context check */
6230 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (iter->flags & LYS_CONFIG_R)) {
6231 continue;
6232 }
6233
Radek Krejciaa6b53f2020-08-27 15:19:03 +02006234 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, iter, LYXP_NODE_ELEM, NULL));
Michal Vasko519fd602020-05-26 12:17:39 +02006235 /* throw away the insert index, we want to consider that node again, recursively */
6236 }
6237 }
6238
6239 } else if (set->val.scnodes[i].type == LYXP_NODE_ELEM) {
6240 iter = NULL;
6241 while ((iter = lys_getnext(iter, start_parent, NULL, getnext_opts))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006242 /* context check */
Michal Vasko519fd602020-05-26 12:17:39 +02006243 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (iter->flags & LYS_CONFIG_R)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006244 continue;
6245 }
6246
Radek Krejciaa6b53f2020-08-27 15:19:03 +02006247 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, iter, LYXP_NODE_ELEM, NULL));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006248 }
6249 }
6250 }
6251
6252 return LY_SUCCESS;
6253}
6254
6255/**
6256 * @brief Move context @p set to parent. Handles '/' or '//' and '..'. Result is LYXP_SET_NODE_SET
6257 * (or LYXP_SET_EMPTY). Context position aware.
6258 *
6259 * @param[in] set Set to use.
6260 * @param[in] all_desc Whether to go to all descendants ('//') or not ('/').
6261 * @param[in] options XPath options.
6262 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6263 */
6264static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02006265moveto_parent(struct lyxp_set *set, ly_bool all_desc, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006266{
6267 LY_ERR rc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006268 struct lyd_node *node, *new_node;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006269 enum lyxp_node_type new_type;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006270
Michal Vaskod3678892020-05-21 10:06:58 +02006271 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006272 return LY_SUCCESS;
6273 }
6274
6275 if (set->type != LYXP_SET_NODE_SET) {
6276 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
6277 return LY_EVALID;
6278 }
6279
6280 if (all_desc) {
6281 /* <path>//.. == <path>//./.. */
6282 rc = moveto_self(set, 1, options);
6283 LY_CHECK_RET(rc);
6284 }
6285
Radek Krejci1deb5be2020-08-26 16:43:36 +02006286 for (uint32_t i = 0; i < set->used; ++i) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006287 node = set->val.nodes[i].node;
6288
6289 if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
6290 new_node = (struct lyd_node *)node->parent;
6291 } else if (set->val.nodes[i].type == LYXP_NODE_TEXT) {
6292 new_node = node;
Michal Vasko9f96a052020-03-10 09:41:45 +01006293 } else if (set->val.nodes[i].type == LYXP_NODE_META) {
6294 new_node = set->val.meta[i].meta->parent;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006295 if (!new_node) {
6296 LOGINT_RET(set->ctx);
6297 }
6298 } else {
6299 /* root does not have a parent */
Michal Vasko2caefc12019-11-14 16:07:56 +01006300 set_remove_node_none(set, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006301 continue;
6302 }
6303
Michal Vaskoa1424542019-11-14 16:08:52 +01006304 /* when check */
6305 if (moveto_when_check(new_node)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006306 return LY_EINCOMPLETE;
Michal Vaskoa1424542019-11-14 16:08:52 +01006307 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02006308
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006309 if (!new_node) {
Radek Krejcif6a11002020-08-21 13:29:07 +02006310 /* node already there can also be the root */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006311 new_type = set->root_type;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006312
Michal Vasko03ff5a72019-09-11 13:49:33 +02006313 } else {
Radek Krejcif6a11002020-08-21 13:29:07 +02006314 /* node has a standard parent (it can equal the root, it's not the root yet since they are fake) */
Michal Vasko03ff5a72019-09-11 13:49:33 +02006315 new_type = LYXP_NODE_ELEM;
6316 }
6317
Michal Vasko03ff5a72019-09-11 13:49:33 +02006318 if (set_dup_node_check(set, new_node, new_type, -1)) {
Michal Vasko2caefc12019-11-14 16:07:56 +01006319 set_remove_node_none(set, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006320 } else {
6321 set_replace_node(set, new_node, 0, new_type, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006322 }
6323 }
6324
Michal Vasko2caefc12019-11-14 16:07:56 +01006325 set_remove_nodes_none(set);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006326 assert(!set_sort(set) && !set_sorted_dup_node_clean(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006327
6328 return LY_SUCCESS;
6329}
6330
6331/**
6332 * @brief Move context schema @p set to parent. Handles '/' or '//' and '..'. Result is LYXP_SET_SCNODE_SET
6333 * (or LYXP_SET_EMPTY).
6334 *
6335 * @param[in] set Set to use.
6336 * @param[in] all_desc Whether to go to all descendants ('//') or not ('/').
6337 * @param[in] options XPath options.
6338 * @return LY_ERR
6339 */
6340static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02006341moveto_scnode_parent(struct lyxp_set *set, ly_bool all_desc, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006342{
Radek Krejciaa6b53f2020-08-27 15:19:03 +02006343 uint32_t i, orig_used, idx;
Radek Krejci857189e2020-09-01 13:26:36 +02006344 ly_bool temp_ctx = 0;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006345 const struct lysc_node *node, *new_node;
6346 enum lyxp_node_type new_type;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006347
Michal Vaskod3678892020-05-21 10:06:58 +02006348 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006349 return LY_SUCCESS;
6350 }
6351
6352 if (set->type != LYXP_SET_SCNODE_SET) {
Michal Vaskof6e51882019-12-16 09:59:45 +01006353 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 +02006354 return LY_EVALID;
6355 }
6356
6357 if (all_desc) {
6358 /* <path>//.. == <path>//./.. */
Radek Krejci1deb5be2020-08-26 16:43:36 +02006359 LY_CHECK_RET(moveto_scnode_self(set, 1, options));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006360 }
6361
Michal Vasko03ff5a72019-09-11 13:49:33 +02006362 orig_used = set->used;
6363 for (i = 0; i < orig_used; ++i) {
6364 if (set->val.scnodes[i].in_ctx != 1) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01006365 if (set->val.scnodes[i].in_ctx != -2) {
6366 continue;
6367 }
6368
6369 /* remember context node */
6370 set->val.scnodes[i].in_ctx = -1;
Michal Vaskoec4df482019-12-16 10:02:18 +01006371 } else {
6372 set->val.scnodes[i].in_ctx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006373 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02006374
6375 node = set->val.scnodes[i].scnode;
6376
6377 if (set->val.scnodes[i].type == LYXP_NODE_ELEM) {
Michal Vaskod3678892020-05-21 10:06:58 +02006378 new_node = lysc_data_parent(node);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006379 } else {
6380 /* root does not have a parent */
6381 continue;
6382 }
6383
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006384 if (!new_node) {
Radek Krejcif6a11002020-08-21 13:29:07 +02006385 /* node has no parent */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006386 new_type = set->root_type;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006387
Michal Vasko03ff5a72019-09-11 13:49:33 +02006388 } else {
Radek Krejcif6a11002020-08-21 13:29:07 +02006389 /* node has a standard parent (it can equal the root, it's not the root yet since they are fake) */
Michal Vasko03ff5a72019-09-11 13:49:33 +02006390 new_type = LYXP_NODE_ELEM;
6391 }
6392
Radek Krejciaa6b53f2020-08-27 15:19:03 +02006393 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, new_node, new_type, &idx));
6394 if ((idx < orig_used) && (idx > i)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006395 set->val.scnodes[idx].in_ctx = 2;
6396 temp_ctx = 1;
6397 }
6398 }
6399
6400 if (temp_ctx) {
6401 for (i = 0; i < orig_used; ++i) {
6402 if (set->val.scnodes[i].in_ctx == 2) {
6403 set->val.scnodes[i].in_ctx = 1;
6404 }
6405 }
6406 }
6407
6408 return LY_SUCCESS;
6409}
6410
6411/**
6412 * @brief Move context @p set to the result of a comparison. Handles '=', '!=', '<=', '<', '>=', or '>'.
6413 * Result is LYXP_SET_BOOLEAN. Indirectly context position aware.
6414 *
6415 * @param[in,out] set1 Set to use for the result.
6416 * @param[in] set2 Set acting as the second operand for @p op.
6417 * @param[in] op Comparison operator to process.
6418 * @param[in] options XPath options.
6419 * @return LY_ERR
6420 */
6421static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02006422moveto_op_comp(struct lyxp_set *set1, struct lyxp_set *set2, const char *op, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006423{
6424 /*
6425 * NODE SET + NODE SET = NODE SET + STRING /(1 NODE SET) 2 STRING
6426 * NODE SET + STRING = STRING + STRING /1 STRING (2 STRING)
6427 * NODE SET + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
6428 * NODE SET + BOOLEAN = BOOLEAN + BOOLEAN /1 BOOLEAN (2 BOOLEAN)
6429 * STRING + NODE SET = STRING + STRING /(1 STRING) 2 STRING
6430 * NUMBER + NODE SET = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
6431 * BOOLEAN + NODE SET = BOOLEAN + BOOLEAN /(1 BOOLEAN) 2 BOOLEAN
6432 *
6433 * '=' or '!='
6434 * BOOLEAN + BOOLEAN
6435 * BOOLEAN + STRING = BOOLEAN + BOOLEAN /(1 BOOLEAN) 2 BOOLEAN
6436 * BOOLEAN + NUMBER = BOOLEAN + BOOLEAN /(1 BOOLEAN) 2 BOOLEAN
6437 * STRING + BOOLEAN = BOOLEAN + BOOLEAN /1 BOOLEAN (2 BOOLEAN)
6438 * NUMBER + BOOLEAN = BOOLEAN + BOOLEAN /1 BOOLEAN (2 BOOLEAN)
6439 * NUMBER + NUMBER
6440 * NUMBER + STRING = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
6441 * STRING + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
6442 * STRING + STRING
6443 *
6444 * '<=', '<', '>=', '>'
6445 * NUMBER + NUMBER
6446 * BOOLEAN + BOOLEAN = NUMBER + NUMBER /1 NUMBER, 2 NUMBER
6447 * BOOLEAN + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
6448 * BOOLEAN + STRING = NUMBER + NUMBER /1 NUMBER, 2 NUMBER
6449 * NUMBER + STRING = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
6450 * STRING + STRING = NUMBER + NUMBER /1 NUMBER, 2 NUMBER
6451 * STRING + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
6452 * NUMBER + BOOLEAN = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
6453 * STRING + BOOLEAN = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
6454 */
6455 struct lyxp_set iter1, iter2;
6456 int result;
6457 int64_t i;
6458 LY_ERR rc;
6459
Michal Vasko004d3152020-06-11 19:59:22 +02006460 memset(&iter1, 0, sizeof iter1);
6461 memset(&iter2, 0, sizeof iter2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006462
6463 /* iterative evaluation with node-sets */
6464 if ((set1->type == LYXP_SET_NODE_SET) || (set2->type == LYXP_SET_NODE_SET)) {
6465 if (set1->type == LYXP_SET_NODE_SET) {
6466 for (i = 0; i < set1->used; ++i) {
Michal Vasko4c7763f2020-07-27 17:40:37 +02006467 /* cast set1 */
Michal Vasko03ff5a72019-09-11 13:49:33 +02006468 switch (set2->type) {
6469 case LYXP_SET_NUMBER:
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006470 rc = set_comp_cast(&iter1, set1, LYXP_SET_NUMBER, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006471 break;
6472 case LYXP_SET_BOOLEAN:
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006473 rc = set_comp_cast(&iter1, set1, LYXP_SET_BOOLEAN, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006474 break;
6475 default:
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006476 rc = set_comp_cast(&iter1, set1, LYXP_SET_STRING, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006477 break;
6478 }
6479 LY_CHECK_RET(rc);
6480
Michal Vasko4c7763f2020-07-27 17:40:37 +02006481 /* canonize set2 */
6482 LY_CHECK_ERR_RET(rc = set_comp_canonize(&iter2, set2, &set1->val.nodes[i]), lyxp_set_free_content(&iter1), rc);
6483
6484 /* compare recursively */
6485 rc = moveto_op_comp(&iter1, &iter2, op, options);
6486 lyxp_set_free_content(&iter2);
6487 LY_CHECK_ERR_RET(rc, lyxp_set_free_content(&iter1), rc);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006488
6489 /* lazy evaluation until true */
Michal Vasko004d3152020-06-11 19:59:22 +02006490 if (iter1.val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006491 set_fill_boolean(set1, 1);
6492 return LY_SUCCESS;
6493 }
6494 }
6495 } else {
6496 for (i = 0; i < set2->used; ++i) {
Michal Vasko4c7763f2020-07-27 17:40:37 +02006497 /* set set2 */
Michal Vasko03ff5a72019-09-11 13:49:33 +02006498 switch (set1->type) {
Michal Vasko4c7763f2020-07-27 17:40:37 +02006499 case LYXP_SET_NUMBER:
6500 rc = set_comp_cast(&iter2, set2, LYXP_SET_NUMBER, i);
6501 break;
6502 case LYXP_SET_BOOLEAN:
6503 rc = set_comp_cast(&iter2, set2, LYXP_SET_BOOLEAN, i);
6504 break;
6505 default:
6506 rc = set_comp_cast(&iter2, set2, LYXP_SET_STRING, i);
6507 break;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006508 }
6509 LY_CHECK_RET(rc);
6510
Michal Vasko4c7763f2020-07-27 17:40:37 +02006511 /* canonize set1 */
6512 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 +02006513
Michal Vasko4c7763f2020-07-27 17:40:37 +02006514 /* compare recursively */
Michal Vasko03ff5a72019-09-11 13:49:33 +02006515 rc = moveto_op_comp(&iter1, &iter2, op, options);
Michal Vaskod3678892020-05-21 10:06:58 +02006516 lyxp_set_free_content(&iter2);
Michal Vasko4c7763f2020-07-27 17:40:37 +02006517 LY_CHECK_ERR_RET(rc, lyxp_set_free_content(&iter1), rc);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006518
6519 /* lazy evaluation until true */
Michal Vasko004d3152020-06-11 19:59:22 +02006520 if (iter1.val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006521 set_fill_boolean(set1, 1);
6522 return LY_SUCCESS;
6523 }
6524 }
6525 }
6526
6527 /* false for all nodes */
6528 set_fill_boolean(set1, 0);
6529 return LY_SUCCESS;
6530 }
6531
6532 /* first convert properly */
6533 if ((op[0] == '=') || (op[0] == '!')) {
6534 if ((set1->type == LYXP_SET_BOOLEAN) || (set2->type == LYXP_SET_BOOLEAN)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006535 lyxp_set_cast(set1, LYXP_SET_BOOLEAN);
6536 lyxp_set_cast(set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006537 } else if ((set1->type == LYXP_SET_NUMBER) || (set2->type == LYXP_SET_NUMBER)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006538 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006539 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006540 rc = lyxp_set_cast(set2, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006541 LY_CHECK_RET(rc);
6542 } /* else we have 2 strings */
6543 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006544 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006545 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006546 rc = lyxp_set_cast(set2, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006547 LY_CHECK_RET(rc);
6548 }
6549
6550 assert(set1->type == set2->type);
6551
6552 /* compute result */
6553 if (op[0] == '=') {
6554 if (set1->type == LYXP_SET_BOOLEAN) {
Michal Vasko004d3152020-06-11 19:59:22 +02006555 result = (set1->val.bln == set2->val.bln);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006556 } else if (set1->type == LYXP_SET_NUMBER) {
6557 result = (set1->val.num == set2->val.num);
6558 } else {
6559 assert(set1->type == LYXP_SET_STRING);
Michal Vaskoac6c72f2019-11-14 16:09:34 +01006560 result = !strcmp(set1->val.str, set2->val.str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006561 }
6562 } else if (op[0] == '!') {
6563 if (set1->type == LYXP_SET_BOOLEAN) {
Michal Vasko004d3152020-06-11 19:59:22 +02006564 result = (set1->val.bln != set2->val.bln);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006565 } else if (set1->type == LYXP_SET_NUMBER) {
6566 result = (set1->val.num != set2->val.num);
6567 } else {
6568 assert(set1->type == LYXP_SET_STRING);
Michal Vaskoac6c72f2019-11-14 16:09:34 +01006569 result = !strcmp(set1->val.str, set2->val.str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006570 }
6571 } else {
6572 assert(set1->type == LYXP_SET_NUMBER);
6573 if (op[0] == '<') {
6574 if (op[1] == '=') {
6575 result = (set1->val.num <= set2->val.num);
6576 } else {
6577 result = (set1->val.num < set2->val.num);
6578 }
6579 } else {
6580 if (op[1] == '=') {
6581 result = (set1->val.num >= set2->val.num);
6582 } else {
6583 result = (set1->val.num > set2->val.num);
6584 }
6585 }
6586 }
6587
6588 /* assign result */
6589 if (result) {
6590 set_fill_boolean(set1, 1);
6591 } else {
6592 set_fill_boolean(set1, 0);
6593 }
6594
6595 return LY_SUCCESS;
6596}
6597
6598/**
6599 * @brief Move context @p set to the result of a basic operation. Handles '+', '-', unary '-', '*', 'div',
6600 * or 'mod'. Result is LYXP_SET_NUMBER. Indirectly context position aware.
6601 *
6602 * @param[in,out] set1 Set to use for the result.
6603 * @param[in] set2 Set acting as the second operand for @p op.
6604 * @param[in] op Operator to process.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006605 * @return LY_ERR
6606 */
6607static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006608moveto_op_math(struct lyxp_set *set1, struct lyxp_set *set2, const char *op)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006609{
6610 LY_ERR rc;
6611
6612 /* unary '-' */
6613 if (!set2 && (op[0] == '-')) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006614 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006615 LY_CHECK_RET(rc);
6616 set1->val.num *= -1;
6617 lyxp_set_free(set2);
6618 return LY_SUCCESS;
6619 }
6620
6621 assert(set1 && set2);
6622
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006623 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006624 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006625 rc = lyxp_set_cast(set2, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006626 LY_CHECK_RET(rc);
6627
6628 switch (op[0]) {
6629 /* '+' */
6630 case '+':
6631 set1->val.num += set2->val.num;
6632 break;
6633
6634 /* '-' */
6635 case '-':
6636 set1->val.num -= set2->val.num;
6637 break;
6638
6639 /* '*' */
6640 case '*':
6641 set1->val.num *= set2->val.num;
6642 break;
6643
6644 /* 'div' */
6645 case 'd':
6646 set1->val.num /= set2->val.num;
6647 break;
6648
6649 /* 'mod' */
6650 case 'm':
6651 set1->val.num = ((long long)set1->val.num) % ((long long)set2->val.num);
6652 break;
6653
6654 default:
6655 LOGINT_RET(set1->ctx);
6656 }
6657
6658 return LY_SUCCESS;
6659}
6660
6661/*
6662 * eval functions
6663 *
6664 * They execute a parsed XPath expression on some data subtree.
6665 */
6666
6667/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02006668 * @brief Evaluate Predicate. Logs directly on error.
6669 *
Michal Vaskod3678892020-05-21 10:06:58 +02006670 * [9] Predicate ::= '[' Expr ']'
Michal Vasko03ff5a72019-09-11 13:49:33 +02006671 *
6672 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02006673 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006674 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
6675 * @param[in] options XPath options.
6676 * @param[in] parent_pos_pred Whether parent predicate was a positional one.
6677 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6678 */
6679static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02006680eval_predicate(struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set, uint32_t options, ly_bool parent_pos_pred)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006681{
6682 LY_ERR rc;
Michal Vasko57eab132019-09-24 11:46:26 +02006683 uint16_t i, orig_exp;
Michal Vasko5c4e5892019-11-14 12:31:38 +01006684 uint32_t orig_pos, orig_size;
6685 int32_t pred_in_ctx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006686 struct lyxp_set set2;
6687 struct lyd_node *orig_parent;
6688
6689 /* '[' */
6690 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02006691 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
6692 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006693
6694 if (!set) {
6695only_parse:
Michal Vasko004d3152020-06-11 19:59:22 +02006696 rc = eval_expr_select(exp, tok_idx, 0, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006697 LY_CHECK_RET(rc);
6698 } else if (set->type == LYXP_SET_NODE_SET) {
6699 /* 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 +01006700 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006701
6702 /* empty set, nothing to evaluate */
6703 if (!set->used) {
6704 goto only_parse;
6705 }
6706
Michal Vasko004d3152020-06-11 19:59:22 +02006707 orig_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006708 orig_pos = 0;
6709 orig_size = set->used;
6710 orig_parent = NULL;
Michal Vasko39dbf352020-05-21 10:08:59 +02006711 for (i = 0; i < set->used; ++i) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006712 set_init(&set2, set);
6713 set_insert_node(&set2, set->val.nodes[i].node, set->val.nodes[i].pos, set->val.nodes[i].type, 0);
6714 /* remember the node context position for position() and context size for last(),
6715 * predicates should always be evaluated with respect to the child axis (since we do
6716 * not support explicit axes) so we assign positions based on their parents */
6717 if (parent_pos_pred && ((struct lyd_node *)set->val.nodes[i].node->parent != orig_parent)) {
6718 orig_parent = (struct lyd_node *)set->val.nodes[i].node->parent;
6719 orig_pos = 1;
6720 } else {
6721 ++orig_pos;
6722 }
6723
6724 set2.ctx_pos = orig_pos;
6725 set2.ctx_size = orig_size;
Michal Vasko004d3152020-06-11 19:59:22 +02006726 *tok_idx = orig_exp;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006727
Michal Vasko004d3152020-06-11 19:59:22 +02006728 rc = eval_expr_select(exp, tok_idx, 0, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006729 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02006730 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006731 return rc;
6732 }
6733
6734 /* number is a position */
6735 if (set2.type == LYXP_SET_NUMBER) {
6736 if ((long long)set2.val.num == orig_pos) {
6737 set2.val.num = 1;
6738 } else {
6739 set2.val.num = 0;
6740 }
6741 }
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006742 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006743
6744 /* predicate satisfied or not? */
Michal Vasko004d3152020-06-11 19:59:22 +02006745 if (!set2.val.bln) {
Michal Vasko2caefc12019-11-14 16:07:56 +01006746 set_remove_node_none(set, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006747 }
6748 }
Michal Vasko2caefc12019-11-14 16:07:56 +01006749 set_remove_nodes_none(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006750
6751 } else if (set->type == LYXP_SET_SCNODE_SET) {
6752 for (i = 0; i < set->used; ++i) {
6753 if (set->val.scnodes[i].in_ctx == 1) {
6754 /* there is a currently-valid node */
6755 break;
6756 }
6757 }
6758 /* empty set, nothing to evaluate */
6759 if (i == set->used) {
6760 goto only_parse;
6761 }
6762
Michal Vasko004d3152020-06-11 19:59:22 +02006763 orig_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006764
Michal Vasko03ff5a72019-09-11 13:49:33 +02006765 /* set special in_ctx to all the valid snodes */
6766 pred_in_ctx = set_scnode_new_in_ctx(set);
6767
6768 /* use the valid snodes one-by-one */
6769 for (i = 0; i < set->used; ++i) {
6770 if (set->val.scnodes[i].in_ctx != pred_in_ctx) {
6771 continue;
6772 }
6773 set->val.scnodes[i].in_ctx = 1;
6774
Michal Vasko004d3152020-06-11 19:59:22 +02006775 *tok_idx = orig_exp;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006776
Michal Vasko004d3152020-06-11 19:59:22 +02006777 rc = eval_expr_select(exp, tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006778 LY_CHECK_RET(rc);
6779
6780 set->val.scnodes[i].in_ctx = pred_in_ctx;
6781 }
6782
6783 /* restore the state as it was before the predicate */
6784 for (i = 0; i < set->used; ++i) {
6785 if (set->val.scnodes[i].in_ctx == 1) {
6786 set->val.scnodes[i].in_ctx = 0;
6787 } else if (set->val.scnodes[i].in_ctx == pred_in_ctx) {
6788 set->val.scnodes[i].in_ctx = 1;
6789 }
6790 }
6791
6792 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02006793 set2.type = LYXP_SET_NODE_SET;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006794 set_fill_set(&set2, set);
6795
Michal Vasko004d3152020-06-11 19:59:22 +02006796 rc = eval_expr_select(exp, tok_idx, 0, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006797 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02006798 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006799 return rc;
6800 }
6801
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006802 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko004d3152020-06-11 19:59:22 +02006803 if (!set2.val.bln) {
Michal Vaskod3678892020-05-21 10:06:58 +02006804 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006805 }
Michal Vaskod3678892020-05-21 10:06:58 +02006806 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006807 }
6808
6809 /* ']' */
Michal Vasko004d3152020-06-11 19:59:22 +02006810 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_BRACK2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006811 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02006812 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
6813 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006814
6815 return LY_SUCCESS;
6816}
6817
6818/**
Michal Vaskod3678892020-05-21 10:06:58 +02006819 * @brief Evaluate Literal. Logs directly on error.
6820 *
6821 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02006822 * @param[in] tok_idx Position in the expression @p exp.
Michal Vaskod3678892020-05-21 10:06:58 +02006823 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
6824 */
6825static void
Michal Vasko004d3152020-06-11 19:59:22 +02006826eval_literal(struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set)
Michal Vaskod3678892020-05-21 10:06:58 +02006827{
6828 if (set) {
Michal Vasko004d3152020-06-11 19:59:22 +02006829 if (exp->tok_len[*tok_idx] == 2) {
Michal Vaskod3678892020-05-21 10:06:58 +02006830 set_fill_string(set, "", 0);
6831 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02006832 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 +02006833 }
6834 }
6835 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02006836 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
6837 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02006838}
6839
6840/**
Michal Vasko004d3152020-06-11 19:59:22 +02006841 * @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 +02006842 *
Michal Vasko004d3152020-06-11 19:59:22 +02006843 * @param[in] exp Full parsed XPath expression.
6844 * @param[in,out] tok_idx Index in @p exp at the beginning of the predicate, is updated on success.
6845 * @param[in] scnode Found schema node as context for the predicate.
6846 * @param[in] format Format of any prefixes in key names/values.
6847 * @param[out] predicates Parsed predicates.
6848 * @param[out] pred_type Type of @p predicates.
6849 * @return LY_SUCCESS on success,
6850 * @return LY_ERR on any error.
Michal Vaskod3678892020-05-21 10:06:58 +02006851 */
6852static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02006853eval_name_test_try_compile_predicates(struct lyxp_expr *exp, uint16_t *tok_idx, const struct lysc_node *scnode,
Radek Krejci0f969882020-08-21 16:56:47 +02006854 LY_PREFIX_FORMAT format, struct ly_path_predicate **predicates,
6855 enum ly_path_pred_type *pred_type)
Michal Vaskod3678892020-05-21 10:06:58 +02006856{
Michal Vasko004d3152020-06-11 19:59:22 +02006857 LY_ERR ret = LY_SUCCESS;
6858 uint16_t key_count, e_idx, pred_idx = 0;
Michal Vaskod3678892020-05-21 10:06:58 +02006859 const struct lysc_node *key;
Michal Vasko004d3152020-06-11 19:59:22 +02006860 size_t pred_len;
Radek Krejci1deb5be2020-08-26 16:43:36 +02006861 uint32_t prev_lo;
Michal Vasko004d3152020-06-11 19:59:22 +02006862 struct lyxp_expr *exp2 = NULL;
Michal Vaskod3678892020-05-21 10:06:58 +02006863
Michal Vasko004d3152020-06-11 19:59:22 +02006864 assert(scnode->nodetype & (LYS_LIST | LYS_LEAFLIST));
Michal Vaskod3678892020-05-21 10:06:58 +02006865
Michal Vasko004d3152020-06-11 19:59:22 +02006866 if (scnode->nodetype == LYS_LIST) {
6867 /* get key count */
6868 if (scnode->flags & LYS_KEYLESS) {
6869 return LY_EINVAL;
6870 }
Radek Krejci1e008d22020-08-17 11:37:37 +02006871 for (key_count = 0, key = lysc_node_children(scnode, 0); key && (key->flags & LYS_KEY); key = key->next, ++key_count) {}
Michal Vasko004d3152020-06-11 19:59:22 +02006872 assert(key_count);
Michal Vaskod3678892020-05-21 10:06:58 +02006873
Michal Vasko004d3152020-06-11 19:59:22 +02006874 /* learn where the predicates end */
6875 e_idx = *tok_idx;
6876 while (key_count) {
6877 /* '[' */
6878 if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK1)) {
6879 return LY_EINVAL;
6880 }
6881 ++e_idx;
6882
6883 /* ']' */
6884 while (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK2)) {
6885 ++e_idx;
6886 }
6887 ++e_idx;
6888
6889 /* another presumably key predicate parsed */
6890 --key_count;
6891 }
Michal Vasko004d3152020-06-11 19:59:22 +02006892 } else {
6893 /* learn just where this single predicate ends */
6894 e_idx = *tok_idx;
6895
Michal Vaskod3678892020-05-21 10:06:58 +02006896 /* '[' */
Michal Vasko004d3152020-06-11 19:59:22 +02006897 if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK1)) {
6898 return LY_EINVAL;
6899 }
6900 ++e_idx;
Michal Vaskod3678892020-05-21 10:06:58 +02006901
6902 /* ']' */
Michal Vasko004d3152020-06-11 19:59:22 +02006903 while (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK2)) {
6904 ++e_idx;
6905 }
6906 ++e_idx;
Michal Vaskod3678892020-05-21 10:06:58 +02006907 }
6908
Michal Vasko004d3152020-06-11 19:59:22 +02006909 /* get the joined length of all the keys predicates/of the single leaf-list predicate */
6910 pred_len = (exp->tok_pos[e_idx - 1] + exp->tok_len[e_idx - 1]) - exp->tok_pos[*tok_idx];
6911
6912 /* turn logging off */
6913 prev_lo = ly_log_options(0);
6914
6915 /* parse the predicate(s) */
Michal Vasko6b26e742020-07-17 15:02:10 +02006916 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 +02006917 LY_PATH_PREFIX_OPTIONAL, LY_PATH_PRED_SIMPLE, &exp2), cleanup);
6918
6919 /* compile */
Michal Vaskoc8a230d2020-08-14 12:17:10 +02006920 ret = ly_path_compile_predicate(scnode->module->ctx, scnode, scnode->module, scnode, exp2, &pred_idx,
6921 format, scnode->module, predicates, pred_type);
Michal Vasko004d3152020-06-11 19:59:22 +02006922 LY_CHECK_GOTO(ret, cleanup);
6923
6924 /* success, the predicate must include all the needed information for hash-based search */
6925 *tok_idx = e_idx;
6926
6927cleanup:
6928 ly_log_options(prev_lo);
6929 lyxp_expr_free(scnode->module->ctx, exp2);
6930 return ret;
Michal Vaskod3678892020-05-21 10:06:58 +02006931}
6932
6933/**
6934 * @brief Evaluate NameTest and any following Predicates. Logs directly on error.
6935 *
6936 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
6937 * [6] NodeTest ::= NameTest | NodeType '(' ')'
6938 * [7] NameTest ::= '*' | NCName ':' '*' | QName
6939 *
6940 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02006941 * @param[in] tok_idx Position in the expression @p exp.
Michal Vaskod3678892020-05-21 10:06:58 +02006942 * @param[in] attr_axis Whether to search attributes or standard nodes.
6943 * @param[in] all_desc Whether to search all the descendants or children only.
6944 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
6945 * @param[in] options XPath options.
6946 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6947 */
6948static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02006949eval_name_test_with_predicate(struct lyxp_expr *exp, uint16_t *tok_idx, ly_bool attr_axis, ly_bool all_desc, struct lyxp_set *set,
Radek Krejci1deb5be2020-08-26 16:43:36 +02006950 uint32_t options)
Michal Vaskod3678892020-05-21 10:06:58 +02006951{
Michal Vaskod3678892020-05-21 10:06:58 +02006952 char *path;
Michal Vasko004d3152020-06-11 19:59:22 +02006953 const char *ncname, *ncname_dict = NULL;
6954 uint16_t ncname_len;
Michal Vaskod3678892020-05-21 10:06:58 +02006955 const struct lys_module *moveto_mod;
6956 const struct lysc_node *scnode = NULL, *tmp;
Michal Vasko004d3152020-06-11 19:59:22 +02006957 struct ly_path_predicate *predicates = NULL;
6958 enum ly_path_pred_type pred_type = 0;
Michal Vaskod3678892020-05-21 10:06:58 +02006959 LY_ERR rc = LY_SUCCESS;
6960
6961 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02006962 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
6963 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02006964
6965 if (!set) {
6966 goto moveto;
6967 }
6968
Michal Vasko004d3152020-06-11 19:59:22 +02006969 ncname = &exp->expr[exp->tok_pos[*tok_idx - 1]];
6970 ncname_len = exp->tok_len[*tok_idx - 1];
Michal Vaskod3678892020-05-21 10:06:58 +02006971
6972 /* parse (and skip) module name */
6973 rc = moveto_resolve_model(&ncname, &ncname_len, set, &moveto_mod);
6974 LY_CHECK_GOTO(rc, cleanup);
6975
6976 if (moveto_mod && !attr_axis && !all_desc && (set->type == LYXP_SET_NODE_SET)) {
6977 /* find the matching schema node in some parent in the context */
Radek Krejci1deb5be2020-08-26 16:43:36 +02006978 for (uint32_t i = 0; i < set->used; ++i) {
Michal Vaskod3678892020-05-21 10:06:58 +02006979 if (set->val.nodes[i].type == set->root_type) {
6980 tmp = lys_find_child(NULL, moveto_mod, ncname, ncname_len, 0, 0);
6981 } else if ((set->val.nodes[i].type == LYXP_NODE_ELEM)
6982 && (!scnode || (lysc_data_parent(scnode) != set->val.nodes[i].node->schema))) {
6983 /* do not repeat the same search */
6984 tmp = lys_find_child(set->val.nodes[i].node->schema, moveto_mod, ncname, ncname_len, 0, 0);
Radek Krejcib1247842020-07-02 16:22:38 +02006985 } else {
6986 tmp = NULL;
Michal Vaskod3678892020-05-21 10:06:58 +02006987 }
6988
6989 /* additional context check */
6990 if (tmp && (set->root_type == LYXP_NODE_ROOT_CONFIG) && (tmp->flags & LYS_CONFIG_R)) {
6991 tmp = NULL;
6992 }
6993
6994 if (tmp) {
6995 if (scnode) {
6996 /* we found a schema node with the same name but at different level, give up, too complicated */
6997 scnode = NULL;
6998 break;
6999 } else {
7000 /* remember the found schema node and continue to make sure it can be used */
7001 scnode = tmp;
7002 }
Michal Vaskod3678892020-05-21 10:06:58 +02007003 }
7004 }
7005
Michal Vasko004d3152020-06-11 19:59:22 +02007006 if (scnode && (scnode->nodetype & (LYS_LIST | LYS_LEAFLIST))) {
7007 /* try to create the predicates */
7008 if (eval_name_test_try_compile_predicates(exp, tok_idx, scnode, set->format, &predicates, &pred_type)) {
7009 /* hashes cannot be used */
Michal Vaskod3678892020-05-21 10:06:58 +02007010 scnode = NULL;
7011 }
7012 }
7013 }
7014
Michal Vasko004d3152020-06-11 19:59:22 +02007015 if (!scnode && moveto_mod) {
7016 /* we are not able to match based on a schema node and not all the modules match,
7017 * use dictionary for efficient comparison */
Radek Krejci011e4aa2020-09-04 15:22:31 +02007018 LY_CHECK_GOTO(rc = lydict_insert(set->ctx, ncname, ncname_len, &ncname_dict), cleanup);
Michal Vaskod3678892020-05-21 10:06:58 +02007019 }
7020
7021moveto:
7022 /* move to the attribute(s), data node(s), or schema node(s) */
7023 if (attr_axis) {
7024 if (set && (options & LYXP_SCNODE_ALL)) {
7025 set_scnode_clear_ctx(set);
7026 } else {
7027 if (all_desc) {
Michal Vasko004d3152020-06-11 19:59:22 +02007028 rc = moveto_attr_alldesc(set, moveto_mod, ncname_dict);
Michal Vaskod3678892020-05-21 10:06:58 +02007029 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007030 rc = moveto_attr(set, moveto_mod, ncname_dict);
Michal Vaskod3678892020-05-21 10:06:58 +02007031 }
7032 LY_CHECK_GOTO(rc, cleanup);
7033 }
7034 } else {
7035 if (set && (options & LYXP_SCNODE_ALL)) {
Radek Krejci1deb5be2020-08-26 16:43:36 +02007036 int64_t i;
7037
Michal Vaskod3678892020-05-21 10:06:58 +02007038 if (all_desc) {
Michal Vasko004d3152020-06-11 19:59:22 +02007039 rc = moveto_scnode_alldesc(set, moveto_mod, ncname_dict, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007040 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007041 rc = moveto_scnode(set, moveto_mod, ncname_dict, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007042 }
7043 LY_CHECK_GOTO(rc, cleanup);
7044
7045 for (i = set->used - 1; i > -1; --i) {
7046 if (set->val.scnodes[i].in_ctx > 0) {
7047 break;
7048 }
7049 }
7050 if (i == -1) {
7051 path = lysc_path(set->ctx_scnode, LYSC_PATH_LOG, NULL, 0);
7052 LOGWRN(set->ctx, "Schema node \"%.*s\" not found (%.*s) with context node \"%s\".",
Michal Vasko6b26e742020-07-17 15:02:10 +02007053 ncname_len, ncname, ncname - exp->expr, exp->expr, path);
Michal Vaskod3678892020-05-21 10:06:58 +02007054 free(path);
7055 }
7056 } else {
7057 if (all_desc) {
Michal Vasko004d3152020-06-11 19:59:22 +02007058 rc = moveto_node_alldesc(set, moveto_mod, ncname_dict);
Michal Vaskod3678892020-05-21 10:06:58 +02007059 } else {
7060 if (scnode) {
7061 /* we can find the nodes using hashes */
Michal Vasko004d3152020-06-11 19:59:22 +02007062 rc = moveto_node_hash(set, scnode, predicates);
Michal Vaskod3678892020-05-21 10:06:58 +02007063 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007064 rc = moveto_node(set, moveto_mod, ncname_dict);
Michal Vaskod3678892020-05-21 10:06:58 +02007065 }
7066 }
7067 LY_CHECK_GOTO(rc, cleanup);
7068 }
7069 }
7070
7071 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007072 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
7073 rc = eval_predicate(exp, tok_idx, set, options, 1);
Michal Vaskod3678892020-05-21 10:06:58 +02007074 LY_CHECK_RET(rc);
7075 }
7076
7077cleanup:
Michal Vaskodb51a8d2020-05-27 15:22:29 +02007078 if (set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007079 lydict_remove(set->ctx, ncname_dict);
7080 ly_path_predicates_free(set->ctx, pred_type, scnode, predicates);
Michal Vaskodb51a8d2020-05-27 15:22:29 +02007081 }
Michal Vaskod3678892020-05-21 10:06:58 +02007082 return rc;
7083}
7084
7085/**
7086 * @brief Evaluate NodeType and any following Predicates. Logs directly on error.
7087 *
7088 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
7089 * [6] NodeTest ::= NameTest | NodeType '(' ')'
7090 * [8] NodeType ::= 'text' | 'node'
7091 *
7092 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007093 * @param[in] tok_idx Position in the expression @p exp.
Michal Vaskod3678892020-05-21 10:06:58 +02007094 * @param[in] attr_axis Whether to search attributes or standard nodes.
7095 * @param[in] all_desc Whether to search all the descendants or children only.
7096 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7097 * @param[in] options XPath options.
7098 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7099 */
7100static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02007101eval_node_type_with_predicate(struct lyxp_expr *exp, uint16_t *tok_idx, ly_bool attr_axis, ly_bool all_desc,
Radek Krejci1deb5be2020-08-26 16:43:36 +02007102 struct lyxp_set *set, uint32_t options)
Michal Vaskod3678892020-05-21 10:06:58 +02007103{
7104 LY_ERR rc;
7105
7106 /* TODO */
7107 (void)attr_axis;
7108 (void)all_desc;
7109
7110 if (set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007111 assert(exp->tok_len[*tok_idx] == 4);
Michal Vaskod3678892020-05-21 10:06:58 +02007112 if (set->type == LYXP_SET_SCNODE_SET) {
7113 set_scnode_clear_ctx(set);
7114 /* just for the debug message below */
7115 set = NULL;
7116 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007117 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "node", 4)) {
Michal Vaskod3678892020-05-21 10:06:58 +02007118 rc = xpath_node(NULL, 0, set, options);
7119 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007120 assert(!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "text", 4));
Michal Vaskod3678892020-05-21 10:06:58 +02007121 rc = xpath_text(NULL, 0, set, options);
7122 }
7123 LY_CHECK_RET(rc);
7124 }
7125 }
7126 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007127 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7128 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007129
7130 /* '(' */
Michal Vasko004d3152020-06-11 19:59:22 +02007131 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR1);
Michal Vaskod3678892020-05-21 10:06:58 +02007132 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007133 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7134 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007135
7136 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02007137 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR2);
Michal Vaskod3678892020-05-21 10:06:58 +02007138 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007139 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7140 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007141
7142 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007143 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
7144 rc = eval_predicate(exp, tok_idx, set, options, 1);
Michal Vaskod3678892020-05-21 10:06:58 +02007145 LY_CHECK_RET(rc);
7146 }
7147
7148 return LY_SUCCESS;
7149}
7150
7151/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02007152 * @brief Evaluate RelativeLocationPath. Logs directly on error.
7153 *
7154 * [4] RelativeLocationPath ::= Step | RelativeLocationPath '/' Step | RelativeLocationPath '//' Step
7155 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
Michal Vaskod3678892020-05-21 10:06:58 +02007156 * [6] NodeTest ::= NameTest | NodeType '(' ')'
Michal Vasko03ff5a72019-09-11 13:49:33 +02007157 *
7158 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007159 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007160 * @param[in] all_desc Whether to search all the descendants or children only.
7161 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7162 * @param[in] options XPath options.
7163 * @return LY_ERR (YL_EINCOMPLETE on unresolved when)
7164 */
7165static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02007166eval_relative_location_path(struct lyxp_expr *exp, uint16_t *tok_idx, ly_bool all_desc, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007167{
Radek Krejci857189e2020-09-01 13:26:36 +02007168 ly_bool attr_axis;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007169 LY_ERR rc;
7170
7171 goto step;
7172 do {
7173 /* evaluate '/' or '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02007174 if (exp->tok_len[*tok_idx] == 1) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007175 all_desc = 0;
7176 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007177 assert(exp->tok_len[*tok_idx] == 2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007178 all_desc = 1;
7179 }
7180 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007181 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7182 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007183
7184step:
Michal Vaskod3678892020-05-21 10:06:58 +02007185 /* evaluate abbreviated axis '@'? if any */
Michal Vasko004d3152020-06-11 19:59:22 +02007186 if (exp->tokens[*tok_idx] == LYXP_TOKEN_AT) {
Michal Vaskod3678892020-05-21 10:06:58 +02007187 attr_axis = 1;
7188
7189 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007190 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7191 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007192 } else {
7193 attr_axis = 0;
7194 }
7195
Michal Vasko03ff5a72019-09-11 13:49:33 +02007196 /* Step */
Michal Vasko004d3152020-06-11 19:59:22 +02007197 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007198 case LYXP_TOKEN_DOT:
7199 /* evaluate '.' */
7200 if (set && (options & LYXP_SCNODE_ALL)) {
7201 rc = moveto_scnode_self(set, all_desc, options);
7202 } else {
7203 rc = moveto_self(set, all_desc, options);
7204 }
7205 LY_CHECK_RET(rc);
7206 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007207 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7208 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007209 break;
7210
7211 case LYXP_TOKEN_DDOT:
7212 /* evaluate '..' */
7213 if (set && (options & LYXP_SCNODE_ALL)) {
7214 rc = moveto_scnode_parent(set, all_desc, options);
7215 } else {
7216 rc = moveto_parent(set, all_desc, options);
7217 }
7218 LY_CHECK_RET(rc);
7219 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007220 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7221 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007222 break;
7223
Michal Vasko03ff5a72019-09-11 13:49:33 +02007224 case LYXP_TOKEN_NAMETEST:
Michal Vaskod3678892020-05-21 10:06:58 +02007225 /* evaluate NameTest Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007226 rc = eval_name_test_with_predicate(exp, tok_idx, attr_axis, all_desc, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007227 LY_CHECK_RET(rc);
Michal Vaskod3678892020-05-21 10:06:58 +02007228 break;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007229
Michal Vaskod3678892020-05-21 10:06:58 +02007230 case LYXP_TOKEN_NODETYPE:
7231 /* evaluate NodeType Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007232 rc = eval_node_type_with_predicate(exp, tok_idx, attr_axis, all_desc, set, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007233 LY_CHECK_RET(rc);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007234 break;
7235
7236 default:
Michal Vasko02a77382019-09-12 11:47:35 +02007237 LOGINT_RET(set ? set->ctx : NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007238 }
Michal Vasko004d3152020-06-11 19:59:22 +02007239 } while (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007240
7241 return LY_SUCCESS;
7242}
7243
7244/**
7245 * @brief Evaluate AbsoluteLocationPath. Logs directly on error.
7246 *
7247 * [3] AbsoluteLocationPath ::= '/' RelativeLocationPath? | '//' RelativeLocationPath
7248 *
7249 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007250 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007251 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7252 * @param[in] options XPath options.
7253 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7254 */
7255static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02007256eval_absolute_location_path(struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007257{
Radek Krejci857189e2020-09-01 13:26:36 +02007258 ly_bool all_desc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007259
7260 if (set) {
7261 /* no matter what tokens follow, we need to be at the root */
Michal Vaskob0099a92020-08-31 14:55:23 +02007262 LY_CHECK_RET(moveto_root(set, options));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007263 }
7264
7265 /* '/' RelativeLocationPath? */
Michal Vasko004d3152020-06-11 19:59:22 +02007266 if (exp->tok_len[*tok_idx] == 1) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007267 /* evaluate '/' - deferred */
7268 all_desc = 0;
7269 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007270 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7271 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007272
Michal Vasko004d3152020-06-11 19:59:22 +02007273 if (lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_NONE)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007274 return LY_SUCCESS;
7275 }
Michal Vasko004d3152020-06-11 19:59:22 +02007276 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007277 case LYXP_TOKEN_DOT:
7278 case LYXP_TOKEN_DDOT:
7279 case LYXP_TOKEN_AT:
7280 case LYXP_TOKEN_NAMETEST:
7281 case LYXP_TOKEN_NODETYPE:
Michal Vaskob0099a92020-08-31 14:55:23 +02007282 LY_CHECK_RET(eval_relative_location_path(exp, tok_idx, all_desc, set, options));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007283 break;
7284 default:
7285 break;
7286 }
7287
Michal Vasko03ff5a72019-09-11 13:49:33 +02007288 } else {
Radek Krejcif6a11002020-08-21 13:29:07 +02007289 /* '//' RelativeLocationPath */
Michal Vasko03ff5a72019-09-11 13:49:33 +02007290 /* evaluate '//' - deferred so as not to waste memory by remembering all the nodes */
7291 all_desc = 1;
7292 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007293 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7294 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007295
Michal Vaskob0099a92020-08-31 14:55:23 +02007296 LY_CHECK_RET(eval_relative_location_path(exp, tok_idx, all_desc, set, options));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007297 }
7298
7299 return LY_SUCCESS;
7300}
7301
7302/**
7303 * @brief Evaluate FunctionCall. Logs directly on error.
7304 *
Michal Vaskod3678892020-05-21 10:06:58 +02007305 * [11] FunctionCall ::= FunctionName '(' ( Expr ( ',' Expr )* )? ')'
Michal Vasko03ff5a72019-09-11 13:49:33 +02007306 *
7307 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007308 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007309 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7310 * @param[in] options XPath options.
7311 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7312 */
7313static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02007314eval_function_call(struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007315{
7316 LY_ERR rc;
Radek Krejci1deb5be2020-08-26 16:43:36 +02007317 LY_ERR (*xpath_func)(struct lyxp_set **, uint16_t, struct lyxp_set *, uint32_t) = NULL;
Michal Vasko0cbf54f2019-12-16 10:01:06 +01007318 uint16_t arg_count = 0, i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007319 struct lyxp_set **args = NULL, **args_aux;
7320
7321 if (set) {
7322 /* FunctionName */
Michal Vasko004d3152020-06-11 19:59:22 +02007323 switch (exp->tok_len[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007324 case 3:
Michal Vasko004d3152020-06-11 19:59:22 +02007325 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "not", 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007326 xpath_func = &xpath_not;
Michal Vasko004d3152020-06-11 19:59:22 +02007327 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "sum", 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007328 xpath_func = &xpath_sum;
7329 }
7330 break;
7331 case 4:
Michal Vasko004d3152020-06-11 19:59:22 +02007332 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "lang", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007333 xpath_func = &xpath_lang;
Michal Vasko004d3152020-06-11 19:59:22 +02007334 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "last", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007335 xpath_func = &xpath_last;
Michal Vasko004d3152020-06-11 19:59:22 +02007336 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "name", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007337 xpath_func = &xpath_name;
Michal Vasko004d3152020-06-11 19:59:22 +02007338 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "true", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007339 xpath_func = &xpath_true;
7340 }
7341 break;
7342 case 5:
Michal Vasko004d3152020-06-11 19:59:22 +02007343 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "count", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007344 xpath_func = &xpath_count;
Michal Vasko004d3152020-06-11 19:59:22 +02007345 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "false", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007346 xpath_func = &xpath_false;
Michal Vasko004d3152020-06-11 19:59:22 +02007347 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "floor", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007348 xpath_func = &xpath_floor;
Michal Vasko004d3152020-06-11 19:59:22 +02007349 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "round", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007350 xpath_func = &xpath_round;
Michal Vasko004d3152020-06-11 19:59:22 +02007351 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "deref", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007352 xpath_func = &xpath_deref;
7353 }
7354 break;
7355 case 6:
Michal Vasko004d3152020-06-11 19:59:22 +02007356 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "concat", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007357 xpath_func = &xpath_concat;
Michal Vasko004d3152020-06-11 19:59:22 +02007358 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "number", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007359 xpath_func = &xpath_number;
Michal Vasko004d3152020-06-11 19:59:22 +02007360 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007361 xpath_func = &xpath_string;
7362 }
7363 break;
7364 case 7:
Michal Vasko004d3152020-06-11 19:59:22 +02007365 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "boolean", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007366 xpath_func = &xpath_boolean;
Michal Vasko004d3152020-06-11 19:59:22 +02007367 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "ceiling", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007368 xpath_func = &xpath_ceiling;
Michal Vasko004d3152020-06-11 19:59:22 +02007369 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "current", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007370 xpath_func = &xpath_current;
7371 }
7372 break;
7373 case 8:
Michal Vasko004d3152020-06-11 19:59:22 +02007374 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "contains", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007375 xpath_func = &xpath_contains;
Michal Vasko004d3152020-06-11 19:59:22 +02007376 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "position", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007377 xpath_func = &xpath_position;
Michal Vasko004d3152020-06-11 19:59:22 +02007378 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "re-match", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007379 xpath_func = &xpath_re_match;
7380 }
7381 break;
7382 case 9:
Michal Vasko004d3152020-06-11 19:59:22 +02007383 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring", 9)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007384 xpath_func = &xpath_substring;
Michal Vasko004d3152020-06-11 19:59:22 +02007385 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "translate", 9)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007386 xpath_func = &xpath_translate;
7387 }
7388 break;
7389 case 10:
Michal Vasko004d3152020-06-11 19:59:22 +02007390 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "local-name", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007391 xpath_func = &xpath_local_name;
Michal Vasko004d3152020-06-11 19:59:22 +02007392 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "enum-value", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007393 xpath_func = &xpath_enum_value;
Michal Vasko004d3152020-06-11 19:59:22 +02007394 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "bit-is-set", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007395 xpath_func = &xpath_bit_is_set;
7396 }
7397 break;
7398 case 11:
Michal Vasko004d3152020-06-11 19:59:22 +02007399 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "starts-with", 11)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007400 xpath_func = &xpath_starts_with;
7401 }
7402 break;
7403 case 12:
Michal Vasko004d3152020-06-11 19:59:22 +02007404 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from", 12)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007405 xpath_func = &xpath_derived_from;
7406 }
7407 break;
7408 case 13:
Michal Vasko004d3152020-06-11 19:59:22 +02007409 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "namespace-uri", 13)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007410 xpath_func = &xpath_namespace_uri;
Michal Vasko004d3152020-06-11 19:59:22 +02007411 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string-length", 13)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007412 xpath_func = &xpath_string_length;
7413 }
7414 break;
7415 case 15:
Michal Vasko004d3152020-06-11 19:59:22 +02007416 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "normalize-space", 15)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007417 xpath_func = &xpath_normalize_space;
Michal Vasko004d3152020-06-11 19:59:22 +02007418 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-after", 15)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007419 xpath_func = &xpath_substring_after;
7420 }
7421 break;
7422 case 16:
Michal Vasko004d3152020-06-11 19:59:22 +02007423 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-before", 16)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007424 xpath_func = &xpath_substring_before;
7425 }
7426 break;
7427 case 20:
Michal Vasko004d3152020-06-11 19:59:22 +02007428 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from-or-self", 20)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007429 xpath_func = &xpath_derived_from_or_self;
7430 }
7431 break;
7432 }
7433
7434 if (!xpath_func) {
Michal Vasko004d3152020-06-11 19:59:22 +02007435 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 +02007436 return LY_EVALID;
7437 }
7438 }
7439
7440 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007441 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7442 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007443
7444 /* '(' */
Michal Vasko004d3152020-06-11 19:59:22 +02007445 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007446 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007447 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7448 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007449
7450 /* ( Expr ( ',' Expr )* )? */
Michal Vasko004d3152020-06-11 19:59:22 +02007451 if (exp->tokens[*tok_idx] != LYXP_TOKEN_PAR2) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007452 if (set) {
7453 args = malloc(sizeof *args);
7454 LY_CHECK_ERR_GOTO(!args, LOGMEM(set->ctx); rc = LY_EMEM, cleanup);
7455 arg_count = 1;
7456 args[0] = set_copy(set);
7457 if (!args[0]) {
7458 rc = LY_EMEM;
7459 goto cleanup;
7460 }
7461
Michal Vasko004d3152020-06-11 19:59:22 +02007462 rc = eval_expr_select(exp, tok_idx, 0, args[0], options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007463 LY_CHECK_GOTO(rc, cleanup);
7464 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007465 rc = eval_expr_select(exp, tok_idx, 0, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007466 LY_CHECK_GOTO(rc, cleanup);
7467 }
7468 }
Michal Vasko004d3152020-06-11 19:59:22 +02007469 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_COMMA)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007470 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007471 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7472 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007473
7474 if (set) {
7475 ++arg_count;
7476 args_aux = realloc(args, arg_count * sizeof *args);
7477 LY_CHECK_ERR_GOTO(!args_aux, arg_count--; LOGMEM(set->ctx); rc = LY_EMEM, cleanup);
7478 args = args_aux;
7479 args[arg_count - 1] = set_copy(set);
7480 if (!args[arg_count - 1]) {
7481 rc = LY_EMEM;
7482 goto cleanup;
7483 }
7484
Michal Vasko004d3152020-06-11 19:59:22 +02007485 rc = eval_expr_select(exp, tok_idx, 0, args[arg_count - 1], options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007486 LY_CHECK_GOTO(rc, cleanup);
7487 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007488 rc = eval_expr_select(exp, tok_idx, 0, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007489 LY_CHECK_GOTO(rc, cleanup);
7490 }
7491 }
7492
7493 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02007494 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007495 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007496 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7497 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007498
7499 if (set) {
7500 /* evaluate function */
7501 rc = xpath_func(args, arg_count, set, options);
7502
7503 if (options & LYXP_SCNODE_ALL) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007504 /* merge all nodes from arg evaluations */
7505 for (i = 0; i < arg_count; ++i) {
7506 set_scnode_clear_ctx(args[i]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01007507 lyxp_set_scnode_merge(set, args[i]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007508 }
7509 }
7510 } else {
7511 rc = LY_SUCCESS;
7512 }
7513
7514cleanup:
7515 for (i = 0; i < arg_count; ++i) {
7516 lyxp_set_free(args[i]);
7517 }
7518 free(args);
7519
7520 return rc;
7521}
7522
7523/**
7524 * @brief Evaluate Number. Logs directly on error.
7525 *
7526 * @param[in] ctx Context for errors.
7527 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007528 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007529 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7530 * @return LY_ERR
7531 */
7532static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007533eval_number(struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007534{
7535 long double num;
7536 char *endptr;
7537
7538 if (set) {
7539 errno = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02007540 num = strtold(&exp->expr[exp->tok_pos[*tok_idx]], &endptr);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007541 if (errno) {
Michal Vasko004d3152020-06-11 19:59:22 +02007542 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 +02007543 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 +02007544 exp->tok_len[*tok_idx], &exp->expr[exp->tok_pos[*tok_idx]], strerror(errno));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007545 return LY_EVALID;
Michal Vasko004d3152020-06-11 19:59:22 +02007546 } else if (endptr - &exp->expr[exp->tok_pos[*tok_idx]] != exp->tok_len[*tok_idx]) {
7547 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 +02007548 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 +02007549 exp->tok_len[*tok_idx], &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007550 return LY_EVALID;
7551 }
7552
7553 set_fill_number(set, num);
7554 }
7555
7556 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007557 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7558 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007559 return LY_SUCCESS;
7560}
7561
7562/**
7563 * @brief Evaluate PathExpr. Logs directly on error.
7564 *
Michal Vaskod3678892020-05-21 10:06:58 +02007565 * [12] PathExpr ::= LocationPath | PrimaryExpr Predicate*
Michal Vasko03ff5a72019-09-11 13:49:33 +02007566 * | PrimaryExpr Predicate* '/' RelativeLocationPath
7567 * | PrimaryExpr Predicate* '//' RelativeLocationPath
7568 * [2] LocationPath ::= RelativeLocationPath | AbsoluteLocationPath
Michal Vaskod3678892020-05-21 10:06:58 +02007569 * [10] PrimaryExpr ::= '(' Expr ')' | Literal | Number | FunctionCall
Michal Vasko03ff5a72019-09-11 13:49:33 +02007570 *
7571 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007572 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007573 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7574 * @param[in] options XPath options.
7575 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7576 */
7577static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02007578eval_path_expr(struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007579{
Radek Krejci857189e2020-09-01 13:26:36 +02007580 ly_bool all_desc, parent_pos_pred;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007581 LY_ERR rc;
7582
Michal Vasko004d3152020-06-11 19:59:22 +02007583 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007584 case LYXP_TOKEN_PAR1:
7585 /* '(' Expr ')' */
7586
7587 /* '(' */
7588 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007589 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7590 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007591
7592 /* Expr */
Michal Vasko004d3152020-06-11 19:59:22 +02007593 rc = eval_expr_select(exp, tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007594 LY_CHECK_RET(rc);
7595
7596 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02007597 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007598 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007599 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7600 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007601
7602 parent_pos_pred = 0;
7603 goto predicate;
7604
7605 case LYXP_TOKEN_DOT:
7606 case LYXP_TOKEN_DDOT:
7607 case LYXP_TOKEN_AT:
7608 case LYXP_TOKEN_NAMETEST:
7609 case LYXP_TOKEN_NODETYPE:
7610 /* RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02007611 rc = eval_relative_location_path(exp, tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007612 LY_CHECK_RET(rc);
7613 break;
7614
7615 case LYXP_TOKEN_FUNCNAME:
7616 /* FunctionCall */
7617 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007618 rc = eval_function_call(exp, tok_idx, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007619 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007620 rc = eval_function_call(exp, tok_idx, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007621 }
7622 LY_CHECK_RET(rc);
7623
7624 parent_pos_pred = 1;
7625 goto predicate;
7626
Michal Vasko3e48bf32020-06-01 08:39:07 +02007627 case LYXP_TOKEN_OPER_PATH:
7628 case LYXP_TOKEN_OPER_RPATH:
Michal Vasko03ff5a72019-09-11 13:49:33 +02007629 /* AbsoluteLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02007630 rc = eval_absolute_location_path(exp, tok_idx, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007631 LY_CHECK_RET(rc);
7632 break;
7633
7634 case LYXP_TOKEN_LITERAL:
7635 /* Literal */
7636 if (!set || (options & LYXP_SCNODE_ALL)) {
7637 if (set) {
7638 set_scnode_clear_ctx(set);
7639 }
Michal Vasko004d3152020-06-11 19:59:22 +02007640 eval_literal(exp, tok_idx, NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007641 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007642 eval_literal(exp, tok_idx, set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007643 }
7644
7645 parent_pos_pred = 1;
7646 goto predicate;
7647
7648 case LYXP_TOKEN_NUMBER:
7649 /* Number */
7650 if (!set || (options & LYXP_SCNODE_ALL)) {
7651 if (set) {
7652 set_scnode_clear_ctx(set);
7653 }
Michal Vasko004d3152020-06-11 19:59:22 +02007654 rc = eval_number(NULL, exp, tok_idx, NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007655 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007656 rc = eval_number(set->ctx, exp, tok_idx, set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007657 }
7658 LY_CHECK_RET(rc);
7659
7660 parent_pos_pred = 1;
7661 goto predicate;
7662
7663 default:
Michal Vasko004d3152020-06-11 19:59:22 +02007664 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INTOK, lyxp_print_token(exp->tokens[*tok_idx]),
7665 &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007666 return LY_EVALID;
7667 }
7668
7669 return LY_SUCCESS;
7670
7671predicate:
7672 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007673 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
7674 rc = eval_predicate(exp, tok_idx, set, options, parent_pos_pred);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007675 LY_CHECK_RET(rc);
7676 }
7677
7678 /* ('/' or '//') RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02007679 if (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007680
7681 /* evaluate '/' or '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02007682 if (exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_PATH) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007683 all_desc = 0;
7684 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007685 all_desc = 1;
7686 }
7687
7688 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007689 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7690 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007691
Michal Vasko004d3152020-06-11 19:59:22 +02007692 rc = eval_relative_location_path(exp, tok_idx, all_desc, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007693 LY_CHECK_RET(rc);
7694 }
7695
7696 return LY_SUCCESS;
7697}
7698
7699/**
7700 * @brief Evaluate UnionExpr. Logs directly on error.
7701 *
Michal Vaskod3678892020-05-21 10:06:58 +02007702 * [20] UnionExpr ::= PathExpr | UnionExpr '|' PathExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02007703 *
7704 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007705 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007706 * @param[in] repeat How many times this expression is repeated.
7707 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7708 * @param[in] options XPath options.
7709 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7710 */
7711static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02007712eval_union_expr(struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007713{
7714 LY_ERR rc = LY_SUCCESS;
7715 struct lyxp_set orig_set, set2;
7716 uint16_t i;
7717
7718 assert(repeat);
7719
7720 set_init(&orig_set, set);
7721 set_init(&set2, set);
7722
7723 set_fill_set(&orig_set, set);
7724
Michal Vasko004d3152020-06-11 19:59:22 +02007725 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNION, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007726 LY_CHECK_GOTO(rc, cleanup);
7727
7728 /* ('|' PathExpr)* */
7729 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02007730 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_UNI);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007731 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007732 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7733 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007734
7735 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007736 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNION, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007737 LY_CHECK_GOTO(rc, cleanup);
7738 continue;
7739 }
7740
7741 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02007742 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNION, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007743 LY_CHECK_GOTO(rc, cleanup);
7744
7745 /* eval */
7746 if (options & LYXP_SCNODE_ALL) {
Michal Vaskoecd62de2019-11-13 12:35:11 +01007747 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007748 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007749 rc = moveto_union(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007750 LY_CHECK_GOTO(rc, cleanup);
7751 }
7752 }
7753
7754cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02007755 lyxp_set_free_content(&orig_set);
7756 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007757 return rc;
7758}
7759
7760/**
7761 * @brief Evaluate UnaryExpr. Logs directly on error.
7762 *
Michal Vaskod3678892020-05-21 10:06:58 +02007763 * [19] UnaryExpr ::= UnionExpr | '-' UnaryExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02007764 *
7765 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007766 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007767 * @param[in] repeat How many times this expression is repeated.
7768 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7769 * @param[in] options XPath options.
7770 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7771 */
7772static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02007773eval_unary_expr(struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007774{
7775 LY_ERR rc;
7776 uint16_t this_op, i;
7777
7778 assert(repeat);
7779
7780 /* ('-')+ */
Michal Vasko004d3152020-06-11 19:59:22 +02007781 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007782 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02007783 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 +02007784
7785 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007786 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7787 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007788 }
7789
Michal Vasko004d3152020-06-11 19:59:22 +02007790 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNARY, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007791 LY_CHECK_RET(rc);
7792
7793 if (set && (repeat % 2)) {
7794 if (options & LYXP_SCNODE_ALL) {
7795 warn_operands(set->ctx, set, NULL, 1, exp->expr, exp->tok_pos[this_op]);
7796 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007797 rc = moveto_op_math(set, NULL, &exp->expr[exp->tok_pos[this_op]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007798 LY_CHECK_RET(rc);
7799 }
7800 }
7801
7802 return LY_SUCCESS;
7803}
7804
7805/**
7806 * @brief Evaluate MultiplicativeExpr. Logs directly on error.
7807 *
Michal Vaskod3678892020-05-21 10:06:58 +02007808 * [18] MultiplicativeExpr ::= UnaryExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02007809 * | MultiplicativeExpr '*' UnaryExpr
7810 * | MultiplicativeExpr 'div' UnaryExpr
7811 * | MultiplicativeExpr 'mod' UnaryExpr
7812 *
7813 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007814 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007815 * @param[in] repeat How many times this expression is repeated.
7816 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7817 * @param[in] options XPath options.
7818 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7819 */
7820static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02007821eval_multiplicative_expr(struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007822{
7823 LY_ERR rc;
7824 uint16_t this_op;
7825 struct lyxp_set orig_set, set2;
7826 uint16_t i;
7827
7828 assert(repeat);
7829
7830 set_init(&orig_set, set);
7831 set_init(&set2, set);
7832
7833 set_fill_set(&orig_set, set);
7834
Michal Vasko004d3152020-06-11 19:59:22 +02007835 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_MULTIPLICATIVE, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007836 LY_CHECK_GOTO(rc, cleanup);
7837
7838 /* ('*' / 'div' / 'mod' UnaryExpr)* */
7839 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02007840 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007841
Michal Vasko004d3152020-06-11 19:59:22 +02007842 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_MATH);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007843 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007844 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7845 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007846
7847 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007848 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_MULTIPLICATIVE, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007849 LY_CHECK_GOTO(rc, cleanup);
7850 continue;
7851 }
7852
7853 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02007854 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_MULTIPLICATIVE, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007855 LY_CHECK_GOTO(rc, cleanup);
7856
7857 /* eval */
7858 if (options & LYXP_SCNODE_ALL) {
7859 warn_operands(set->ctx, set, &set2, 1, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01007860 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007861 set_scnode_clear_ctx(set);
7862 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007863 rc = moveto_op_math(set, &set2, &exp->expr[exp->tok_pos[this_op]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007864 LY_CHECK_GOTO(rc, cleanup);
7865 }
7866 }
7867
7868cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02007869 lyxp_set_free_content(&orig_set);
7870 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007871 return rc;
7872}
7873
7874/**
7875 * @brief Evaluate AdditiveExpr. Logs directly on error.
7876 *
Michal Vaskod3678892020-05-21 10:06:58 +02007877 * [17] AdditiveExpr ::= MultiplicativeExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02007878 * | AdditiveExpr '+' MultiplicativeExpr
7879 * | AdditiveExpr '-' MultiplicativeExpr
7880 *
7881 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007882 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007883 * @param[in] repeat How many times this expression is repeated.
7884 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7885 * @param[in] options XPath options.
7886 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7887 */
7888static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02007889eval_additive_expr(struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007890{
7891 LY_ERR rc;
7892 uint16_t this_op;
7893 struct lyxp_set orig_set, set2;
7894 uint16_t i;
7895
7896 assert(repeat);
7897
7898 set_init(&orig_set, set);
7899 set_init(&set2, set);
7900
7901 set_fill_set(&orig_set, set);
7902
Michal Vasko004d3152020-06-11 19:59:22 +02007903 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_ADDITIVE, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007904 LY_CHECK_GOTO(rc, cleanup);
7905
7906 /* ('+' / '-' MultiplicativeExpr)* */
7907 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02007908 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007909
Michal Vasko004d3152020-06-11 19:59:22 +02007910 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_MATH);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007911 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007912 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7913 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007914
7915 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007916 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_ADDITIVE, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007917 LY_CHECK_GOTO(rc, cleanup);
7918 continue;
7919 }
7920
7921 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02007922 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_ADDITIVE, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007923 LY_CHECK_GOTO(rc, cleanup);
7924
7925 /* eval */
7926 if (options & LYXP_SCNODE_ALL) {
7927 warn_operands(set->ctx, set, &set2, 1, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01007928 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007929 set_scnode_clear_ctx(set);
7930 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007931 rc = moveto_op_math(set, &set2, &exp->expr[exp->tok_pos[this_op]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007932 LY_CHECK_GOTO(rc, cleanup);
7933 }
7934 }
7935
7936cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02007937 lyxp_set_free_content(&orig_set);
7938 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007939 return rc;
7940}
7941
7942/**
7943 * @brief Evaluate RelationalExpr. Logs directly on error.
7944 *
Michal Vaskod3678892020-05-21 10:06:58 +02007945 * [16] RelationalExpr ::= AdditiveExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02007946 * | RelationalExpr '<' AdditiveExpr
7947 * | RelationalExpr '>' AdditiveExpr
7948 * | RelationalExpr '<=' AdditiveExpr
7949 * | RelationalExpr '>=' AdditiveExpr
7950 *
7951 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007952 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007953 * @param[in] repeat How many times this expression is repeated.
7954 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7955 * @param[in] options XPath options.
7956 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7957 */
7958static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02007959eval_relational_expr(struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007960{
7961 LY_ERR rc;
7962 uint16_t this_op;
7963 struct lyxp_set orig_set, set2;
7964 uint16_t i;
7965
7966 assert(repeat);
7967
7968 set_init(&orig_set, set);
7969 set_init(&set2, set);
7970
7971 set_fill_set(&orig_set, set);
7972
Michal Vasko004d3152020-06-11 19:59:22 +02007973 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_RELATIONAL, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007974 LY_CHECK_GOTO(rc, cleanup);
7975
7976 /* ('<' / '>' / '<=' / '>=' AdditiveExpr)* */
7977 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02007978 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007979
Michal Vasko004d3152020-06-11 19:59:22 +02007980 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_COMP);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007981 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02007982 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
7983 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007984
7985 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007986 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_RELATIONAL, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007987 LY_CHECK_GOTO(rc, cleanup);
7988 continue;
7989 }
7990
7991 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02007992 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_RELATIONAL, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007993 LY_CHECK_GOTO(rc, cleanup);
7994
7995 /* eval */
7996 if (options & LYXP_SCNODE_ALL) {
7997 warn_operands(set->ctx, set, &set2, 1, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01007998 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007999 set_scnode_clear_ctx(set);
8000 } else {
8001 rc = moveto_op_comp(set, &set2, &exp->expr[exp->tok_pos[this_op]], options);
8002 LY_CHECK_GOTO(rc, cleanup);
8003 }
8004 }
8005
8006cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008007 lyxp_set_free_content(&orig_set);
8008 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008009 return rc;
8010}
8011
8012/**
8013 * @brief Evaluate EqualityExpr. Logs directly on error.
8014 *
Michal Vaskod3678892020-05-21 10:06:58 +02008015 * [15] EqualityExpr ::= RelationalExpr | EqualityExpr '=' RelationalExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008016 * | EqualityExpr '!=' RelationalExpr
8017 *
8018 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008019 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008020 * @param[in] repeat How many times this expression is repeated.
8021 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
8022 * @param[in] options XPath options.
8023 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8024 */
8025static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02008026eval_equality_expr(struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008027{
8028 LY_ERR rc;
8029 uint16_t this_op;
8030 struct lyxp_set orig_set, set2;
8031 uint16_t i;
8032
8033 assert(repeat);
8034
8035 set_init(&orig_set, set);
8036 set_init(&set2, set);
8037
8038 set_fill_set(&orig_set, set);
8039
Michal Vasko004d3152020-06-11 19:59:22 +02008040 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_EQUALITY, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008041 LY_CHECK_GOTO(rc, cleanup);
8042
8043 /* ('=' / '!=' RelationalExpr)* */
8044 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008045 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008046
Michal Vasko004d3152020-06-11 19:59:22 +02008047 assert((exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_EQUAL) || (exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_NEQUAL));
Michal Vasko03ff5a72019-09-11 13:49:33 +02008048 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko004d3152020-06-11 19:59:22 +02008049 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
8050 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008051
8052 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02008053 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_EQUALITY, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008054 LY_CHECK_GOTO(rc, cleanup);
8055 continue;
8056 }
8057
8058 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02008059 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_EQUALITY, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008060 LY_CHECK_GOTO(rc, cleanup);
8061
8062 /* eval */
8063 if (options & LYXP_SCNODE_ALL) {
8064 warn_operands(set->ctx, set, &set2, 0, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vasko004d3152020-06-11 19:59:22 +02008065 warn_equality_value(exp, set, *tok_idx - 1, this_op - 1, *tok_idx - 1);
8066 warn_equality_value(exp, &set2, this_op - 1, this_op - 1, *tok_idx - 1);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008067 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008068 set_scnode_clear_ctx(set);
8069 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008070 rc = moveto_op_comp(set, &set2, &exp->expr[exp->tok_pos[this_op]], options);
8071 LY_CHECK_GOTO(rc, cleanup);
8072 }
8073 }
8074
8075cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008076 lyxp_set_free_content(&orig_set);
8077 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008078 return rc;
8079}
8080
8081/**
8082 * @brief Evaluate AndExpr. Logs directly on error.
8083 *
Michal Vaskod3678892020-05-21 10:06:58 +02008084 * [14] AndExpr ::= EqualityExpr | AndExpr 'and' EqualityExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008085 *
8086 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008087 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008088 * @param[in] repeat How many times this expression is repeated.
8089 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
8090 * @param[in] options XPath options.
8091 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8092 */
8093static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02008094eval_and_expr(struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008095{
8096 LY_ERR rc;
8097 struct lyxp_set orig_set, set2;
8098 uint16_t i;
8099
8100 assert(repeat);
8101
8102 set_init(&orig_set, set);
8103 set_init(&set2, set);
8104
8105 set_fill_set(&orig_set, set);
8106
Michal Vasko004d3152020-06-11 19:59:22 +02008107 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_AND, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008108 LY_CHECK_GOTO(rc, cleanup);
8109
8110 /* cast to boolean, we know that will be the final result */
8111 if (set && (options & LYXP_SCNODE_ALL)) {
8112 set_scnode_clear_ctx(set);
8113 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008114 lyxp_set_cast(set, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008115 }
8116
8117 /* ('and' EqualityExpr)* */
8118 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008119 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_LOG);
8120 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (!set || !set->val.bln ? "skipped" : "parsed"),
8121 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
8122 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008123
8124 /* lazy evaluation */
Michal Vasko004d3152020-06-11 19:59:22 +02008125 if (!set || ((set->type == LYXP_SET_BOOLEAN) && !set->val.bln)) {
8126 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_AND, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008127 LY_CHECK_GOTO(rc, cleanup);
8128 continue;
8129 }
8130
8131 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02008132 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_AND, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008133 LY_CHECK_GOTO(rc, cleanup);
8134
8135 /* eval - just get boolean value actually */
8136 if (set->type == LYXP_SET_SCNODE_SET) {
8137 set_scnode_clear_ctx(&set2);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008138 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008139 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008140 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008141 set_fill_set(set, &set2);
8142 }
8143 }
8144
8145cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008146 lyxp_set_free_content(&orig_set);
8147 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008148 return rc;
8149}
8150
8151/**
8152 * @brief Evaluate OrExpr. Logs directly on error.
8153 *
Michal Vaskod3678892020-05-21 10:06:58 +02008154 * [13] OrExpr ::= AndExpr | OrExpr 'or' AndExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008155 *
8156 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008157 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008158 * @param[in] repeat How many times this expression is repeated.
8159 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
8160 * @param[in] options XPath options.
8161 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8162 */
8163static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02008164eval_or_expr(struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008165{
8166 LY_ERR rc;
8167 struct lyxp_set orig_set, set2;
8168 uint16_t i;
8169
8170 assert(repeat);
8171
8172 set_init(&orig_set, set);
8173 set_init(&set2, set);
8174
8175 set_fill_set(&orig_set, set);
8176
Michal Vasko004d3152020-06-11 19:59:22 +02008177 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_OR, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008178 LY_CHECK_GOTO(rc, cleanup);
8179
8180 /* cast to boolean, we know that will be the final result */
8181 if (set && (options & LYXP_SCNODE_ALL)) {
8182 set_scnode_clear_ctx(set);
8183 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008184 lyxp_set_cast(set, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008185 }
8186
8187 /* ('or' AndExpr)* */
8188 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008189 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_LOG);
8190 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (!set || set->val.bln ? "skipped" : "parsed"),
8191 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
8192 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008193
8194 /* lazy evaluation */
Michal Vasko004d3152020-06-11 19:59:22 +02008195 if (!set || ((set->type == LYXP_SET_BOOLEAN) && set->val.bln)) {
8196 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_OR, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008197 LY_CHECK_GOTO(rc, cleanup);
8198 continue;
8199 }
8200
8201 set_fill_set(&set2, &orig_set);
8202 /* expr_type cound have been LYXP_EXPR_NONE in all these later calls (except for the first one),
8203 * but it does not matter */
Michal Vasko004d3152020-06-11 19:59:22 +02008204 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_OR, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008205 LY_CHECK_GOTO(rc, cleanup);
8206
8207 /* eval - just get boolean value actually */
8208 if (set->type == LYXP_SET_SCNODE_SET) {
8209 set_scnode_clear_ctx(&set2);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008210 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008211 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008212 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008213 set_fill_set(set, &set2);
8214 }
8215 }
8216
8217cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008218 lyxp_set_free_content(&orig_set);
8219 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008220 return rc;
8221}
8222
8223/**
Michal Vasko004d3152020-06-11 19:59:22 +02008224 * @brief Decide what expression is at the pointer @p tok_idx and evaluate it accordingly.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008225 *
8226 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008227 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008228 * @param[in] etype Expression type to evaluate.
8229 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
8230 * @param[in] options XPath options.
8231 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8232 */
8233static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02008234eval_expr_select(struct lyxp_expr *exp, uint16_t *tok_idx, enum lyxp_expr_type etype, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008235{
8236 uint16_t i, count;
8237 enum lyxp_expr_type next_etype;
8238 LY_ERR rc;
8239
8240 /* process operator repeats */
Michal Vasko004d3152020-06-11 19:59:22 +02008241 if (!exp->repeat[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008242 next_etype = LYXP_EXPR_NONE;
8243 } else {
8244 /* find etype repeat */
Radek Krejci1e008d22020-08-17 11:37:37 +02008245 for (i = 0; exp->repeat[*tok_idx][i] > etype; ++i) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02008246
8247 /* select one-priority lower because etype expression called us */
8248 if (i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008249 next_etype = exp->repeat[*tok_idx][i - 1];
Michal Vasko03ff5a72019-09-11 13:49:33 +02008250 /* count repeats for that expression */
Radek Krejci1e008d22020-08-17 11:37:37 +02008251 for (count = 0; i && exp->repeat[*tok_idx][i - 1] == next_etype; ++count, --i) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02008252 } else {
8253 next_etype = LYXP_EXPR_NONE;
8254 }
8255 }
8256
8257 /* decide what expression are we parsing based on the repeat */
8258 switch (next_etype) {
8259 case LYXP_EXPR_OR:
Michal Vasko004d3152020-06-11 19:59:22 +02008260 rc = eval_or_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008261 break;
8262 case LYXP_EXPR_AND:
Michal Vasko004d3152020-06-11 19:59:22 +02008263 rc = eval_and_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008264 break;
8265 case LYXP_EXPR_EQUALITY:
Michal Vasko004d3152020-06-11 19:59:22 +02008266 rc = eval_equality_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008267 break;
8268 case LYXP_EXPR_RELATIONAL:
Michal Vasko004d3152020-06-11 19:59:22 +02008269 rc = eval_relational_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008270 break;
8271 case LYXP_EXPR_ADDITIVE:
Michal Vasko004d3152020-06-11 19:59:22 +02008272 rc = eval_additive_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008273 break;
8274 case LYXP_EXPR_MULTIPLICATIVE:
Michal Vasko004d3152020-06-11 19:59:22 +02008275 rc = eval_multiplicative_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008276 break;
8277 case LYXP_EXPR_UNARY:
Michal Vasko004d3152020-06-11 19:59:22 +02008278 rc = eval_unary_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008279 break;
8280 case LYXP_EXPR_UNION:
Michal Vasko004d3152020-06-11 19:59:22 +02008281 rc = eval_union_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008282 break;
8283 case LYXP_EXPR_NONE:
Michal Vasko004d3152020-06-11 19:59:22 +02008284 rc = eval_path_expr(exp, tok_idx, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008285 break;
8286 default:
8287 LOGINT_RET(set->ctx);
8288 }
8289
8290 return rc;
8291}
8292
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008293/**
8294 * @brief Get root type.
8295 *
8296 * @param[in] ctx_node Context node.
8297 * @param[in] ctx_scnode Schema context node.
8298 * @param[in] options XPath options.
8299 * @return Root type.
8300 */
8301static enum lyxp_node_type
Radek Krejci1deb5be2020-08-26 16:43:36 +02008302lyxp_get_root_type(const struct lyd_node *ctx_node, const struct lysc_node *ctx_scnode, uint32_t options)
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008303{
Michal Vasko6b26e742020-07-17 15:02:10 +02008304 const struct lysc_node *op;
8305
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008306 if (options & LYXP_SCNODE_ALL) {
Radek Krejci1e008d22020-08-17 11:37:37 +02008307 for (op = ctx_scnode; op && !(op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)); op = op->parent) {}
Michal Vasko6b26e742020-07-17 15:02:10 +02008308
8309 if (op || (options & LYXP_SCNODE)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008310 /* general root that can access everything */
8311 return LYXP_NODE_ROOT;
8312 } else if (!ctx_scnode || (ctx_scnode->flags & LYS_CONFIG_W)) {
8313 /* root context node can access only config data (because we said so, it is unspecified) */
8314 return LYXP_NODE_ROOT_CONFIG;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008315 }
Michal Vasko6b26e742020-07-17 15:02:10 +02008316 return LYXP_NODE_ROOT;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008317 }
8318
Michal Vasko6b26e742020-07-17 15:02:10 +02008319 op = ctx_node ? ctx_node->schema : NULL;
Michal Vaskod989ba02020-08-24 10:59:24 +02008320 for ( ; op && !(op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)); op = op->parent) {}
Michal Vasko6b26e742020-07-17 15:02:10 +02008321
8322 if (!ctx_node || (!op && (ctx_node->schema->flags & LYS_CONFIG_W))) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008323 /* root context node can access only config data (because we said so, it is unspecified) */
8324 return LYXP_NODE_ROOT_CONFIG;
8325 }
8326
8327 return LYXP_NODE_ROOT;
8328}
8329
Michal Vasko03ff5a72019-09-11 13:49:33 +02008330LY_ERR
Michal Vaskoc8a230d2020-08-14 12:17:10 +02008331lyxp_eval(struct lyxp_expr *exp, LY_PREFIX_FORMAT format, const struct lys_module *local_mod, const struct lyd_node *ctx_node,
Radek Krejci1deb5be2020-08-26 16:43:36 +02008332 enum lyxp_node_type ctx_node_type, const struct lyd_node *tree, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008333{
Michal Vasko004d3152020-06-11 19:59:22 +02008334 uint16_t tok_idx = 0;
8335 const struct lyd_node *real_ctx_node;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008336 LY_ERR rc;
8337
Michal Vasko004d3152020-06-11 19:59:22 +02008338 LY_CHECK_ARG_RET(NULL, exp, local_mod, ctx_node, set, LY_EINVAL);
8339
8340 if ((ctx_node_type == LYXP_NODE_ROOT) || (ctx_node_type == LYXP_NODE_ROOT_CONFIG)) {
8341 /* we always need some context node because it is used for resolving unqualified names */
8342 real_ctx_node = NULL;
8343 } else {
8344 real_ctx_node = ctx_node;
8345 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02008346
8347 /* prepare set for evaluation */
Michal Vasko004d3152020-06-11 19:59:22 +02008348 tok_idx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008349 memset(set, 0, sizeof *set);
Michal Vaskod3678892020-05-21 10:06:58 +02008350 set->type = LYXP_SET_NODE_SET;
Michal Vasko004d3152020-06-11 19:59:22 +02008351 set_insert_node(set, (struct lyd_node *)real_ctx_node, 0, ctx_node_type, 0);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008352 set->ctx = local_mod->ctx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008353 set->ctx_node = ctx_node;
Michal Vasko004d3152020-06-11 19:59:22 +02008354 set->root_type = lyxp_get_root_type(real_ctx_node, NULL, options);
Michal Vasko6b26e742020-07-17 15:02:10 +02008355 for (set->context_op = ctx_node->schema;
Radek Krejci0f969882020-08-21 16:56:47 +02008356 set->context_op && !(set->context_op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF));
8357 set->context_op = set->context_op->parent) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02008358 set->local_mod = local_mod;
Michal Vaskof03ed032020-03-04 13:31:44 +01008359 set->tree = tree;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008360 set->format = format;
8361
8362 /* evaluate */
Michal Vasko004d3152020-06-11 19:59:22 +02008363 rc = eval_expr_select(exp, &tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008364 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02008365 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008366 }
8367
Michal Vasko03ff5a72019-09-11 13:49:33 +02008368 return rc;
8369}
8370
8371#if 0
8372
8373/* full xml printing of set elements, not used currently */
8374
8375void
8376lyxp_set_print_xml(FILE *f, struct lyxp_set *set)
8377{
8378 uint32_t i;
8379 char *str_num;
8380 struct lyout out;
8381
8382 memset(&out, 0, sizeof out);
8383
8384 out.type = LYOUT_STREAM;
8385 out.method.f = f;
8386
8387 switch (set->type) {
8388 case LYXP_SET_EMPTY:
Michal Vasko5233e962020-08-14 14:26:20 +02008389 ly_print_(&out, "Empty XPath set\n\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008390 break;
8391 case LYXP_SET_BOOLEAN:
Michal Vasko5233e962020-08-14 14:26:20 +02008392 ly_print_(&out, "Boolean XPath set:\n");
8393 ly_print_(&out, "%s\n\n", set->value.bool ? "true" : "false");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008394 break;
8395 case LYXP_SET_STRING:
Michal Vasko5233e962020-08-14 14:26:20 +02008396 ly_print_(&out, "String XPath set:\n");
8397 ly_print_(&out, "\"%s\"\n\n", set->value.str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008398 break;
8399 case LYXP_SET_NUMBER:
Michal Vasko5233e962020-08-14 14:26:20 +02008400 ly_print_(&out, "Number XPath set:\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008401
8402 if (isnan(set->value.num)) {
8403 str_num = strdup("NaN");
8404 } else if ((set->value.num == 0) || (set->value.num == -0.0f)) {
8405 str_num = strdup("0");
8406 } else if (isinf(set->value.num) && !signbit(set->value.num)) {
8407 str_num = strdup("Infinity");
8408 } else if (isinf(set->value.num) && signbit(set->value.num)) {
8409 str_num = strdup("-Infinity");
8410 } else if ((long long)set->value.num == set->value.num) {
8411 if (asprintf(&str_num, "%lld", (long long)set->value.num) == -1) {
8412 str_num = NULL;
8413 }
8414 } else {
8415 if (asprintf(&str_num, "%03.1Lf", set->value.num) == -1) {
8416 str_num = NULL;
8417 }
8418 }
8419 if (!str_num) {
8420 LOGMEM;
8421 return;
8422 }
Michal Vasko5233e962020-08-14 14:26:20 +02008423 ly_print_(&out, "%s\n\n", str_num);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008424 free(str_num);
8425 break;
8426 case LYXP_SET_NODE_SET:
Michal Vasko5233e962020-08-14 14:26:20 +02008427 ly_print_(&out, "Node XPath set:\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008428
8429 for (i = 0; i < set->used; ++i) {
Michal Vasko5233e962020-08-14 14:26:20 +02008430 ly_print_(&out, "%d. ", i + 1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008431 switch (set->node_type[i]) {
8432 case LYXP_NODE_ROOT_ALL:
Michal Vasko5233e962020-08-14 14:26:20 +02008433 ly_print_(&out, "ROOT all\n\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008434 break;
8435 case LYXP_NODE_ROOT_CONFIG:
Michal Vasko5233e962020-08-14 14:26:20 +02008436 ly_print_(&out, "ROOT config\n\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008437 break;
8438 case LYXP_NODE_ROOT_STATE:
Michal Vasko5233e962020-08-14 14:26:20 +02008439 ly_print_(&out, "ROOT state\n\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008440 break;
8441 case LYXP_NODE_ROOT_NOTIF:
Michal Vasko5233e962020-08-14 14:26:20 +02008442 ly_print_(&out, "ROOT notification \"%s\"\n\n", set->value.nodes[i]->schema->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008443 break;
8444 case LYXP_NODE_ROOT_RPC:
Michal Vasko5233e962020-08-14 14:26:20 +02008445 ly_print_(&out, "ROOT rpc \"%s\"\n\n", set->value.nodes[i]->schema->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008446 break;
8447 case LYXP_NODE_ROOT_OUTPUT:
Michal Vasko5233e962020-08-14 14:26:20 +02008448 ly_print_(&out, "ROOT output \"%s\"\n\n", set->value.nodes[i]->schema->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008449 break;
8450 case LYXP_NODE_ELEM:
Michal Vasko5233e962020-08-14 14:26:20 +02008451 ly_print_(&out, "ELEM \"%s\"\n", set->value.nodes[i]->schema->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008452 xml_print_node(&out, 1, set->value.nodes[i], 1, LYP_FORMAT);
Michal Vasko5233e962020-08-14 14:26:20 +02008453 ly_print_(&out, "\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008454 break;
8455 case LYXP_NODE_TEXT:
Michal Vasko5233e962020-08-14 14:26:20 +02008456 ly_print_(&out, "TEXT \"%s\"\n\n", ((struct lyd_node_leaf_list *)set->value.nodes[i])->value_str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008457 break;
8458 case LYXP_NODE_ATTR:
Michal Vasko5233e962020-08-14 14:26:20 +02008459 ly_print_(&out, "ATTR \"%s\" = \"%s\"\n\n", set->value.attrs[i]->name, set->value.attrs[i]->value);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008460 break;
8461 }
8462 }
8463 break;
8464 }
8465}
8466
8467#endif
8468
8469LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008470lyxp_set_cast(struct lyxp_set *set, enum lyxp_set_type target)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008471{
8472 long double num;
8473 char *str;
8474 LY_ERR rc;
8475
8476 if (!set || (set->type == target)) {
8477 return LY_SUCCESS;
8478 }
8479
8480 /* it's not possible to convert anything into a node set */
Michal Vaskod3678892020-05-21 10:06:58 +02008481 assert(target != LYXP_SET_NODE_SET);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008482
8483 if (set->type == LYXP_SET_SCNODE_SET) {
Michal Vaskod3678892020-05-21 10:06:58 +02008484 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008485 return LY_EINVAL;
8486 }
8487
8488 /* to STRING */
Michal Vaskod3678892020-05-21 10:06:58 +02008489 if ((target == LYXP_SET_STRING) || ((target == LYXP_SET_NUMBER) && (set->type == LYXP_SET_NODE_SET))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008490 switch (set->type) {
8491 case LYXP_SET_NUMBER:
8492 if (isnan(set->val.num)) {
8493 set->val.str = strdup("NaN");
8494 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
8495 } else if ((set->val.num == 0) || (set->val.num == -0.0f)) {
8496 set->val.str = strdup("0");
8497 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
8498 } else if (isinf(set->val.num) && !signbit(set->val.num)) {
8499 set->val.str = strdup("Infinity");
8500 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
8501 } else if (isinf(set->val.num) && signbit(set->val.num)) {
8502 set->val.str = strdup("-Infinity");
8503 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
8504 } else if ((long long)set->val.num == set->val.num) {
8505 if (asprintf(&str, "%lld", (long long)set->val.num) == -1) {
8506 LOGMEM_RET(set->ctx);
8507 }
8508 set->val.str = str;
8509 } else {
8510 if (asprintf(&str, "%03.1Lf", set->val.num) == -1) {
8511 LOGMEM_RET(set->ctx);
8512 }
8513 set->val.str = str;
8514 }
8515 break;
8516 case LYXP_SET_BOOLEAN:
Michal Vasko004d3152020-06-11 19:59:22 +02008517 if (set->val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008518 set->val.str = strdup("true");
8519 } else {
8520 set->val.str = strdup("false");
8521 }
8522 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), LY_EMEM);
8523 break;
8524 case LYXP_SET_NODE_SET:
8525 assert(set->used);
8526
8527 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008528 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02008529
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008530 rc = cast_node_set_to_string(set, &str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008531 LY_CHECK_RET(rc);
Michal Vaskod3678892020-05-21 10:06:58 +02008532 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008533 set->val.str = str;
8534 break;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008535 default:
8536 LOGINT_RET(set->ctx);
8537 }
8538 set->type = LYXP_SET_STRING;
8539 }
8540
8541 /* to NUMBER */
8542 if (target == LYXP_SET_NUMBER) {
8543 switch (set->type) {
8544 case LYXP_SET_STRING:
8545 num = cast_string_to_number(set->val.str);
Michal Vaskod3678892020-05-21 10:06:58 +02008546 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008547 set->val.num = num;
8548 break;
8549 case LYXP_SET_BOOLEAN:
Michal Vasko004d3152020-06-11 19:59:22 +02008550 if (set->val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008551 set->val.num = 1;
8552 } else {
8553 set->val.num = 0;
8554 }
8555 break;
8556 default:
8557 LOGINT_RET(set->ctx);
8558 }
8559 set->type = LYXP_SET_NUMBER;
8560 }
8561
8562 /* to BOOLEAN */
8563 if (target == LYXP_SET_BOOLEAN) {
8564 switch (set->type) {
8565 case LYXP_SET_NUMBER:
8566 if ((set->val.num == 0) || (set->val.num == -0.0f) || isnan(set->val.num)) {
Michal Vasko004d3152020-06-11 19:59:22 +02008567 set->val.bln = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008568 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02008569 set->val.bln = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008570 }
8571 break;
8572 case LYXP_SET_STRING:
8573 if (set->val.str[0]) {
Michal Vaskod3678892020-05-21 10:06:58 +02008574 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02008575 set->val.bln = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008576 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02008577 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02008578 set->val.bln = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008579 }
8580 break;
8581 case LYXP_SET_NODE_SET:
Michal Vaskod3678892020-05-21 10:06:58 +02008582 if (set->used) {
8583 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02008584 set->val.bln = 1;
Michal Vaskod3678892020-05-21 10:06:58 +02008585 } else {
8586 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02008587 set->val.bln = 0;
Michal Vaskod3678892020-05-21 10:06:58 +02008588 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02008589 break;
8590 default:
8591 LOGINT_RET(set->ctx);
8592 }
8593 set->type = LYXP_SET_BOOLEAN;
8594 }
8595
Michal Vasko03ff5a72019-09-11 13:49:33 +02008596 return LY_SUCCESS;
8597}
8598
8599LY_ERR
Michal Vaskoc8a230d2020-08-14 12:17:10 +02008600lyxp_atomize(struct lyxp_expr *exp, LY_PREFIX_FORMAT format, const struct lys_module *local_mod,
Radek Krejci1deb5be2020-08-26 16:43:36 +02008601 const struct lysc_node *ctx_scnode, enum lyxp_node_type ctx_scnode_type, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008602{
8603 struct ly_ctx *ctx;
Michal Vasko004d3152020-06-11 19:59:22 +02008604 const struct lysc_node *real_ctx_scnode;
8605 uint16_t tok_idx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008606
Michal Vasko004d3152020-06-11 19:59:22 +02008607 LY_CHECK_ARG_RET(NULL, exp, local_mod, ctx_scnode, set, LY_EINVAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008608
8609 ctx = local_mod->ctx;
Michal Vasko004d3152020-06-11 19:59:22 +02008610 if ((ctx_scnode_type == LYXP_NODE_ROOT) || (ctx_scnode_type == LYXP_NODE_ROOT_CONFIG)) {
8611 /* we always need some context node because it is used for resolving unqualified names */
8612 real_ctx_scnode = NULL;
8613 } else {
8614 real_ctx_scnode = ctx_scnode;
8615 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02008616
8617 /* prepare set for evaluation */
Michal Vasko004d3152020-06-11 19:59:22 +02008618 tok_idx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008619 memset(set, 0, sizeof *set);
8620 set->type = LYXP_SET_SCNODE_SET;
Radek Krejciaa6b53f2020-08-27 15:19:03 +02008621 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, real_ctx_scnode, ctx_scnode_type, NULL));
Michal Vasko5c4e5892019-11-14 12:31:38 +01008622 set->val.scnodes[0].in_ctx = -2;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008623 set->ctx = ctx;
8624 set->ctx_scnode = ctx_scnode;
Michal Vasko004d3152020-06-11 19:59:22 +02008625 set->root_type = lyxp_get_root_type(NULL, real_ctx_scnode, options);
Michal Vasko6b26e742020-07-17 15:02:10 +02008626 for (set->context_op = ctx_scnode;
Radek Krejci0f969882020-08-21 16:56:47 +02008627 set->context_op && !(set->context_op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF));
8628 set->context_op = set->context_op->parent) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02008629 set->local_mod = local_mod;
8630 set->format = format;
8631
8632 /* evaluate */
Michal Vasko004d3152020-06-11 19:59:22 +02008633 return eval_expr_select(exp, &tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008634}
Michal Vaskod43d71a2020-08-07 14:54:58 +02008635
8636API const char *
8637lyxp_get_expr(const struct lyxp_expr *path)
8638{
8639 if (!path) {
8640 return NULL;
8641 }
8642
8643 return path->expr;
8644}