blob: 19ec93836fa4e3be36bd79bc75b8028c40de8c68 [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
Radek Krejci52b6d512020-10-12 12:33:17 +0200137 if (!exp || (ly_ll < LY_LLDBG)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200138 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 Vasko69730152020-10-09 16:30:07 +0200144 &exp->expr[exp->tok_pos[i]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200145 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
Radek Krejci52b6d512020-10-12 12:33:17 +0200171 if (ly_ll < LY_LLDBG) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200172 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:
Michal Vasko69730152020-10-09 16:30:07 +0200192 if ((item->node->schema->nodetype == LYS_LIST) &&
193 (((struct lyd_node_inner *)item->node)->child->schema->nodetype == LYS_LEAF)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200194 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ELEM %s (1st child val: %s)", i + 1, item->pos,
Michal Vasko69730152020-10-09 16:30:07 +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 Vasko69730152020-10-09 16:30:07 +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,
Michal Vasko69730152020-10-09 16:30:07 +0200206 item->node->schema->nodetype == LYS_ANYXML ? "anyxml" : "anydata");
Michal Vasko03ff5a72019-09-11 13:49:33 +0200207 } 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,
Michal Vasko69730152020-10-09 16:30:07 +0200213 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 */
Michal Vasko69730152020-10-09 16:30:07 +02001471 if (((item1->type == LYXP_NODE_TEXT) &&
1472 ((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{
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001518 const struct lysc_type *type = NULL;
Michal Vasko4c7763f2020-07-27 17:40:37 +02001519 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 Vaskofeca4fb2020-10-05 08:58:40 +02001550 rc = type->plugin->store(src->ctx, type, str, strlen(str), LY_TYPE_OPTS_DYNAMIC, LY_PREF_JSON, NULL, LYD_HINT_DATA,
1551 xp_node->node->schema, &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) {
Michal Vasko69730152020-10-09 16:30:07 +02001686 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 Vasko69730152020-10-09 16:30:07 +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 Vasko69730152020-10-09 16:30:07 +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 Vasko69730152020-10-09 16:30:07 +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 Vasko69730152020-10-09 16:30:07 +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],
Michal Vasko69730152020-10-09 16:30:07 +02002279 &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 Vasko69730152020-10-09 16:30:07 +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;
Michal Vasko69730152020-10-09 16:30:07 +02002400 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 Vasko69730152020-10-09 16:30:07 +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 Vasko69730152020-10-09 16:30:07 +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 */
Michal Vasko69730152020-10-09 16:30:07 +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))) {
Radek Krejcif03a9e22020-09-18 20:09:31 +02002717 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',
Michal Vasko69730152020-10-09 16:30:07 +02002771 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',
Michal Vasko69730152020-10-09 16:30:07 +02002781 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
Michal Vasko69730152020-10-09 16:30:07 +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.",
Michal Vasko69730152020-10-09 16:30:07 +02002875 expr_str[parsed], expr_str[parsed], expr->tok_len[expr->used - 1], &expr->expr[expr->tok_pos[expr->used - 1]]);
Radek Krejcif03a9e22020-09-18 20:09:31 +02002876 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,
Michal Vasko69730152020-10-09 16:30:07 +02002894 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,
Michal Vasko69730152020-10-09 16:30:07 +02002905 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.",
Michal Vasko69730152020-10-09 16:30:07 +02002937 &expr->expr[expr->tok_pos[tok_idx]]);
Radek Krejcif03a9e22020-09-18 20:09:31 +02002938 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
Michal Vasko7f45cf22020-10-01 12:49:44 +02002959 if (!exp) {
2960 goto cleanup;
2961 }
2962
Michal Vasko004d3152020-06-11 19:59:22 +02002963 dup = calloc(1, sizeof *dup);
Michal Vasko1734be92020-09-22 08:55:10 +02002964 LY_CHECK_ERR_GOTO(!dup, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02002965
2966 dup->tokens = malloc(exp->used * sizeof *dup->tokens);
Michal Vasko1734be92020-09-22 08:55:10 +02002967 LY_CHECK_ERR_GOTO(!dup->tokens, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02002968 memcpy(dup->tokens, exp->tokens, exp->used * sizeof *dup->tokens);
2969
2970 dup->tok_pos = malloc(exp->used * sizeof *dup->tok_pos);
Michal Vasko1734be92020-09-22 08:55:10 +02002971 LY_CHECK_ERR_GOTO(!dup->tok_pos, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02002972 memcpy(dup->tok_pos, exp->tok_pos, exp->used * sizeof *dup->tok_pos);
2973
2974 dup->tok_len = malloc(exp->used * sizeof *dup->tok_len);
Michal Vasko1734be92020-09-22 08:55:10 +02002975 LY_CHECK_ERR_GOTO(!dup->tok_len, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02002976 memcpy(dup->tok_len, exp->tok_len, exp->used * sizeof *dup->tok_len);
2977
2978 dup->repeat = malloc(exp->used * sizeof *dup->repeat);
Michal Vasko1734be92020-09-22 08:55:10 +02002979 LY_CHECK_ERR_GOTO(!dup->repeat, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02002980 for (i = 0; i < exp->used; ++i) {
2981 if (!exp->repeat[i]) {
2982 dup->repeat[i] = NULL;
2983 } else {
Radek Krejci1e008d22020-08-17 11:37:37 +02002984 for (j = 0; exp->repeat[i][j]; ++j) {}
Michal Vasko004d3152020-06-11 19:59:22 +02002985 /* the ending 0 as well */
2986 ++j;
2987
Michal Vasko99c71642020-07-03 13:33:36 +02002988 dup->repeat[i] = malloc(j * sizeof **dup->repeat);
Michal Vasko1734be92020-09-22 08:55:10 +02002989 LY_CHECK_ERR_GOTO(!dup->repeat[i], LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02002990 memcpy(dup->repeat[i], exp->repeat[i], j * sizeof **dup->repeat);
2991 dup->repeat[i][j - 1] = 0;
2992 }
2993 }
2994
2995 dup->used = exp->used;
2996 dup->size = exp->used;
Michal Vasko1734be92020-09-22 08:55:10 +02002997 LY_CHECK_GOTO(ret = lydict_insert(ctx, exp->expr, 0, &dup->expr), cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02002998
Michal Vasko1734be92020-09-22 08:55:10 +02002999cleanup:
3000 if (ret) {
3001 lyxp_expr_free(ctx, dup);
3002 } else {
3003 *dup_p = dup;
3004 }
3005 return ret;
Michal Vasko004d3152020-06-11 19:59:22 +02003006}
3007
Michal Vasko03ff5a72019-09-11 13:49:33 +02003008/*
3009 * warn functions
3010 *
3011 * Warn functions check specific reasonable conditions for schema XPath
3012 * and print a warning if they are not satisfied.
3013 */
3014
3015/**
3016 * @brief Get the last-added schema node that is currently in the context.
3017 *
3018 * @param[in] set Set to search in.
3019 * @return Last-added schema context node, NULL if no node is in context.
3020 */
3021static struct lysc_node *
3022warn_get_scnode_in_ctx(struct lyxp_set *set)
3023{
3024 uint32_t i;
3025
3026 if (!set || (set->type != LYXP_SET_SCNODE_SET)) {
3027 return NULL;
3028 }
3029
3030 i = set->used;
3031 do {
3032 --i;
3033 if (set->val.scnodes[i].in_ctx == 1) {
3034 /* if there are more, simply return the first found (last added) */
3035 return set->val.scnodes[i].scnode;
3036 }
3037 } while (i);
3038
3039 return NULL;
3040}
3041
3042/**
3043 * @brief Test whether a type is numeric - integer type or decimal64.
3044 *
3045 * @param[in] type Type to test.
Radek Krejci857189e2020-09-01 13:26:36 +02003046 * @return Boolean value whether @p type is numeric type or not.
Michal Vasko03ff5a72019-09-11 13:49:33 +02003047 */
Radek Krejci857189e2020-09-01 13:26:36 +02003048static ly_bool
Michal Vasko03ff5a72019-09-11 13:49:33 +02003049warn_is_numeric_type(struct lysc_type *type)
3050{
3051 struct lysc_type_union *uni;
Radek Krejci857189e2020-09-01 13:26:36 +02003052 ly_bool ret;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003053 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003054
3055 switch (type->basetype) {
3056 case LY_TYPE_DEC64:
3057 case LY_TYPE_INT8:
3058 case LY_TYPE_UINT8:
3059 case LY_TYPE_INT16:
3060 case LY_TYPE_UINT16:
3061 case LY_TYPE_INT32:
3062 case LY_TYPE_UINT32:
3063 case LY_TYPE_INT64:
3064 case LY_TYPE_UINT64:
3065 return 1;
3066 case LY_TYPE_UNION:
3067 uni = (struct lysc_type_union *)type;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003068 LY_ARRAY_FOR(uni->types, u) {
3069 ret = warn_is_numeric_type(uni->types[u]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003070 if (ret) {
3071 /* found a suitable type */
Radek Krejci857189e2020-09-01 13:26:36 +02003072 return ret;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003073 }
3074 }
3075 /* did not find any suitable type */
3076 return 0;
3077 case LY_TYPE_LEAFREF:
3078 return warn_is_numeric_type(((struct lysc_type_leafref *)type)->realtype);
3079 default:
3080 return 0;
3081 }
3082}
3083
3084/**
3085 * @brief Test whether a type is string-like - no integers, decimal64 or binary.
3086 *
3087 * @param[in] type Type to test.
Radek Krejci857189e2020-09-01 13:26:36 +02003088 * @return Boolean value whether @p type's basetype is string type or not.
Michal Vasko03ff5a72019-09-11 13:49:33 +02003089 */
Radek Krejci857189e2020-09-01 13:26:36 +02003090static ly_bool
Michal Vasko03ff5a72019-09-11 13:49:33 +02003091warn_is_string_type(struct lysc_type *type)
3092{
3093 struct lysc_type_union *uni;
Radek Krejci857189e2020-09-01 13:26:36 +02003094 ly_bool ret;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003095 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003096
3097 switch (type->basetype) {
3098 case LY_TYPE_BITS:
3099 case LY_TYPE_ENUM:
3100 case LY_TYPE_IDENT:
3101 case LY_TYPE_INST:
3102 case LY_TYPE_STRING:
3103 return 1;
3104 case LY_TYPE_UNION:
3105 uni = (struct lysc_type_union *)type;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003106 LY_ARRAY_FOR(uni->types, u) {
3107 ret = warn_is_string_type(uni->types[u]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003108 if (ret) {
3109 /* found a suitable type */
Radek Krejci857189e2020-09-01 13:26:36 +02003110 return ret;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003111 }
3112 }
3113 /* did not find any suitable type */
3114 return 0;
3115 case LY_TYPE_LEAFREF:
3116 return warn_is_string_type(((struct lysc_type_leafref *)type)->realtype);
3117 default:
3118 return 0;
3119 }
3120}
3121
3122/**
3123 * @brief Test whether a type is one specific type.
3124 *
3125 * @param[in] type Type to test.
3126 * @param[in] base Expected type.
Radek Krejci857189e2020-09-01 13:26:36 +02003127 * @return Boolean value whether the given @p type is of the specific basetype @p base.
Michal Vasko03ff5a72019-09-11 13:49:33 +02003128 */
Radek Krejci857189e2020-09-01 13:26:36 +02003129static ly_bool
Michal Vasko03ff5a72019-09-11 13:49:33 +02003130warn_is_specific_type(struct lysc_type *type, LY_DATA_TYPE base)
3131{
3132 struct lysc_type_union *uni;
Radek Krejci857189e2020-09-01 13:26:36 +02003133 ly_bool ret;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003134 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003135
3136 if (type->basetype == base) {
3137 return 1;
3138 } else if (type->basetype == LY_TYPE_UNION) {
3139 uni = (struct lysc_type_union *)type;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003140 LY_ARRAY_FOR(uni->types, u) {
3141 ret = warn_is_specific_type(uni->types[u], base);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003142 if (ret) {
3143 /* found a suitable type */
Radek Krejci857189e2020-09-01 13:26:36 +02003144 return ret;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003145 }
3146 }
3147 /* did not find any suitable type */
3148 return 0;
3149 } else if (type->basetype == LY_TYPE_LEAFREF) {
3150 return warn_is_specific_type(((struct lysc_type_leafref *)type)->realtype, base);
3151 }
3152
3153 return 0;
3154}
3155
3156/**
3157 * @brief Get next type of a (union) type.
3158 *
3159 * @param[in] type Base type.
3160 * @param[in] prev_type Previously returned type.
3161 * @return Next type or NULL.
3162 */
3163static struct lysc_type *
3164warn_is_equal_type_next_type(struct lysc_type *type, struct lysc_type *prev_type)
3165{
3166 struct lysc_type_union *uni;
Radek Krejci857189e2020-09-01 13:26:36 +02003167 ly_bool found = 0;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003168 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003169
3170 switch (type->basetype) {
3171 case LY_TYPE_UNION:
3172 uni = (struct lysc_type_union *)type;
3173 if (!prev_type) {
3174 return uni->types[0];
3175 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003176 LY_ARRAY_FOR(uni->types, u) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003177 if (found) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003178 return uni->types[u];
Michal Vasko03ff5a72019-09-11 13:49:33 +02003179 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003180 if (prev_type == uni->types[u]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003181 found = 1;
3182 }
3183 }
3184 return NULL;
3185 default:
3186 if (prev_type) {
3187 assert(type == prev_type);
3188 return NULL;
3189 } else {
3190 return type;
3191 }
3192 }
3193}
3194
3195/**
3196 * @brief Test whether 2 types have a common type.
3197 *
3198 * @param[in] type1 First type.
3199 * @param[in] type2 Second type.
3200 * @return 1 if they do, 0 otherwise.
3201 */
3202static int
3203warn_is_equal_type(struct lysc_type *type1, struct lysc_type *type2)
3204{
3205 struct lysc_type *t1, *rt1, *t2, *rt2;
3206
3207 t1 = NULL;
3208 while ((t1 = warn_is_equal_type_next_type(type1, t1))) {
3209 if (t1->basetype == LY_TYPE_LEAFREF) {
3210 rt1 = ((struct lysc_type_leafref *)t1)->realtype;
3211 } else {
3212 rt1 = t1;
3213 }
3214
3215 t2 = NULL;
3216 while ((t2 = warn_is_equal_type_next_type(type2, t2))) {
3217 if (t2->basetype == LY_TYPE_LEAFREF) {
3218 rt2 = ((struct lysc_type_leafref *)t2)->realtype;
3219 } else {
3220 rt2 = t2;
3221 }
3222
3223 if (rt2->basetype == rt1->basetype) {
3224 /* match found */
3225 return 1;
3226 }
3227 }
3228 }
3229
3230 return 0;
3231}
3232
3233/**
3234 * @brief Check both operands of comparison operators.
3235 *
3236 * @param[in] ctx Context for errors.
3237 * @param[in] set1 First operand set.
3238 * @param[in] set2 Second operand set.
3239 * @param[in] numbers_only Whether accept only numbers or other types are fine too (for '=' and '!=').
3240 * @param[in] expr Start of the expression to print with the warning.
3241 * @param[in] tok_pos Token position.
3242 */
3243static void
Radek Krejci857189e2020-09-01 13:26:36 +02003244warn_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 +02003245{
3246 struct lysc_node_leaf *node1, *node2;
Radek Krejci857189e2020-09-01 13:26:36 +02003247 ly_bool leaves = 1, warning = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003248
3249 node1 = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(set1);
3250 node2 = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(set2);
3251
3252 if (!node1 && !node2) {
3253 /* no node-sets involved, nothing to do */
3254 return;
3255 }
3256
3257 if (node1) {
3258 if (!(node1->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3259 LOGWRN(ctx, "Node type %s \"%s\" used as operand.", lys_nodetype2str(node1->nodetype), node1->name);
3260 warning = 1;
3261 leaves = 0;
3262 } else if (numbers_only && !warn_is_numeric_type(node1->type)) {
3263 LOGWRN(ctx, "Node \"%s\" is not of a numeric type, but used where it was expected.", node1->name);
3264 warning = 1;
3265 }
3266 }
3267
3268 if (node2) {
3269 if (!(node2->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3270 LOGWRN(ctx, "Node type %s \"%s\" used as operand.", lys_nodetype2str(node2->nodetype), node2->name);
3271 warning = 1;
3272 leaves = 0;
3273 } else if (numbers_only && !warn_is_numeric_type(node2->type)) {
3274 LOGWRN(ctx, "Node \"%s\" is not of a numeric type, but used where it was expected.", node2->name);
3275 warning = 1;
3276 }
3277 }
3278
3279 if (node1 && node2 && leaves && !numbers_only) {
Michal Vasko69730152020-10-09 16:30:07 +02003280 if ((warn_is_numeric_type(node1->type) && !warn_is_numeric_type(node2->type)) ||
3281 (!warn_is_numeric_type(node1->type) && warn_is_numeric_type(node2->type)) ||
3282 (!warn_is_numeric_type(node1->type) && !warn_is_numeric_type(node2->type) &&
3283 !warn_is_equal_type(node1->type, node2->type))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003284 LOGWRN(ctx, "Incompatible types of operands \"%s\" and \"%s\" for comparison.", node1->name, node2->name);
3285 warning = 1;
3286 }
3287 }
3288
3289 if (warning) {
3290 LOGWRN(ctx, "Previous warning generated by XPath subexpression[%u] \"%.20s\".", tok_pos, expr + tok_pos);
3291 }
3292}
3293
3294/**
3295 * @brief Check that a value is valid for a leaf. If not applicable, does nothing.
3296 *
3297 * @param[in] exp Parsed XPath expression.
3298 * @param[in] set Set with the leaf/leaf-list.
3299 * @param[in] val_exp Index of the value (literal/number) in @p exp.
3300 * @param[in] equal_exp Index of the start of the equality expression in @p exp.
3301 * @param[in] last_equal_exp Index of the end of the equality expression in @p exp.
3302 */
3303static void
3304warn_equality_value(struct lyxp_expr *exp, struct lyxp_set *set, uint16_t val_exp, uint16_t equal_exp, uint16_t last_equal_exp)
3305{
3306 struct lysc_node *scnode;
3307 struct lysc_type *type;
3308 char *value;
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003309 struct lyd_value storage;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003310 LY_ERR rc;
3311 struct ly_err_item *err = NULL;
3312
Michal Vasko69730152020-10-09 16:30:07 +02003313 if ((scnode = warn_get_scnode_in_ctx(set)) && (scnode->nodetype & (LYS_LEAF | LYS_LEAFLIST)) &&
3314 ((exp->tokens[val_exp] == LYXP_TOKEN_LITERAL) || (exp->tokens[val_exp] == LYXP_TOKEN_NUMBER))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003315 /* check that the node can have the specified value */
3316 if (exp->tokens[val_exp] == LYXP_TOKEN_LITERAL) {
3317 value = strndup(exp->expr + exp->tok_pos[val_exp] + 1, exp->tok_len[val_exp] - 2);
3318 } else {
3319 value = strndup(exp->expr + exp->tok_pos[val_exp], exp->tok_len[val_exp]);
3320 }
3321 if (!value) {
3322 LOGMEM(set->ctx);
3323 return;
3324 }
3325
3326 if ((((struct lysc_node_leaf *)scnode)->type->basetype == LY_TYPE_IDENT) && !strchr(value, ':')) {
3327 LOGWRN(set->ctx, "Identityref \"%s\" comparison with identity \"%s\" without prefix, consider adding"
Michal Vasko69730152020-10-09 16:30:07 +02003328 " a prefix or best using \"derived-from(-or-self)()\" functions.", scnode->name, value);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003329 LOGWRN(set->ctx, "Previous warning generated by XPath subexpression[%u] \"%.*s\".", exp->tok_pos[equal_exp],
Radek Krejci0f969882020-08-21 16:56:47 +02003330 (exp->tok_pos[last_equal_exp] - exp->tok_pos[equal_exp]) + exp->tok_len[last_equal_exp],
Michal Vasko69730152020-10-09 16:30:07 +02003331 exp->expr + exp->tok_pos[equal_exp]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003332 }
3333
3334 type = ((struct lysc_node_leaf *)scnode)->type;
3335 if (type->basetype != LY_TYPE_IDENT) {
Michal Vaskofeca4fb2020-10-05 08:58:40 +02003336 rc = type->plugin->store(set->ctx, type, value, strlen(value), 0, LY_PREF_SCHEMA, (void *)set->local_mod,
3337 LYD_HINT_DATA, scnode, &storage, &err);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003338
3339 if (err) {
3340 LOGWRN(set->ctx, "Invalid value \"%s\" which does not fit the type (%s).", value, err->msg);
3341 ly_err_free(err);
3342 } else if (rc != LY_SUCCESS) {
3343 LOGWRN(set->ctx, "Invalid value \"%s\" which does not fit the type.", value);
3344 }
3345 if (rc != LY_SUCCESS) {
3346 LOGWRN(set->ctx, "Previous warning generated by XPath subexpression[%u] \"%.*s\".", exp->tok_pos[equal_exp],
Radek Krejci0f969882020-08-21 16:56:47 +02003347 (exp->tok_pos[last_equal_exp] - exp->tok_pos[equal_exp]) + exp->tok_len[last_equal_exp],
Michal Vasko69730152020-10-09 16:30:07 +02003348 exp->expr + exp->tok_pos[equal_exp]);
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003349 } else {
3350 type->plugin->free(set->ctx, &storage);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003351 }
3352 }
3353 free(value);
3354 }
3355}
3356
3357/*
3358 * XPath functions
3359 */
3360
3361/**
3362 * @brief Execute the YANG 1.1 bit-is-set(node-set, string) function. Returns LYXP_SET_BOOLEAN
3363 * depending on whether the first node bit value from the second argument is set.
3364 *
3365 * @param[in] args Array of arguments.
3366 * @param[in] arg_count Count of elements in @p args.
3367 * @param[in,out] set Context and result set at the same time.
3368 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003369 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003370 */
3371static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003372xpath_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 +02003373{
3374 struct lyd_node_term *leaf;
3375 struct lysc_node_leaf *sleaf;
3376 struct lysc_type_bits *bits;
3377 LY_ERR rc = LY_SUCCESS;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003378 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003379
3380 if (options & LYXP_SCNODE_ALL) {
3381 if ((args[0]->type != LYXP_SET_SCNODE_SET) || !(sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3382 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003383 } else if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3384 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 +02003385 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_BITS)) {
3386 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"bits\".", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003387 }
3388
3389 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
3390 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3391 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 +02003392 } else if (!warn_is_string_type(sleaf->type)) {
3393 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003394 }
3395 }
3396 set_scnode_clear_ctx(set);
3397 return rc;
3398 }
3399
Michal Vaskod3678892020-05-21 10:06:58 +02003400 if (args[0]->type != LYXP_SET_NODE_SET) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003401 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)");
3402 return LY_EVALID;
3403 }
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003404 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003405 LY_CHECK_RET(rc);
3406
3407 set_fill_boolean(set, 0);
Michal Vaskod3678892020-05-21 10:06:58 +02003408 if (args[0]->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003409 leaf = (struct lyd_node_term *)args[0]->val.nodes[0].node;
Michal Vasko69730152020-10-09 16:30:07 +02003410 if ((leaf->schema->nodetype & (LYS_LEAF | LYS_LEAFLIST)) &&
3411 (((struct lysc_node_leaf *)leaf->schema)->type->basetype == LY_TYPE_BITS)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003412 bits = (struct lysc_type_bits *)((struct lysc_node_leaf *)leaf->schema)->type;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003413 LY_ARRAY_FOR(bits->bits, u) {
3414 if (!strcmp(bits->bits[u].name, args[1]->val.str)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003415 set_fill_boolean(set, 1);
3416 break;
3417 }
3418 }
3419 }
3420 }
3421
3422 return LY_SUCCESS;
3423}
3424
3425/**
3426 * @brief Execute the XPath boolean(object) function. Returns LYXP_SET_BOOLEAN
3427 * with the argument converted to boolean.
3428 *
3429 * @param[in] args Array of arguments.
3430 * @param[in] arg_count Count of elements in @p args.
3431 * @param[in,out] set Context and result set at the same time.
3432 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003433 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003434 */
3435static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003436xpath_boolean(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003437{
3438 LY_ERR rc;
3439
3440 if (options & LYXP_SCNODE_ALL) {
3441 set_scnode_clear_ctx(set);
3442 return LY_SUCCESS;
3443 }
3444
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003445 rc = lyxp_set_cast(args[0], LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003446 LY_CHECK_RET(rc);
3447 set_fill_set(set, args[0]);
3448
3449 return LY_SUCCESS;
3450}
3451
3452/**
3453 * @brief Execute the XPath ceiling(number) function. Returns LYXP_SET_NUMBER
3454 * with the first argument rounded up to the nearest integer.
3455 *
3456 * @param[in] args Array of arguments.
3457 * @param[in] arg_count Count of elements in @p args.
3458 * @param[in,out] set Context and result set at the same time.
3459 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003460 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003461 */
3462static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003463xpath_ceiling(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003464{
3465 struct lysc_node_leaf *sleaf;
3466 LY_ERR rc = LY_SUCCESS;
3467
3468 if (options & LYXP_SCNODE_ALL) {
3469 if ((args[0]->type != LYXP_SET_SCNODE_SET) || !(sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3470 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003471 } else if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3472 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 +02003473 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_DEC64)) {
3474 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"decimal64\".", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003475 }
3476 set_scnode_clear_ctx(set);
3477 return rc;
3478 }
3479
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003480 rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003481 LY_CHECK_RET(rc);
3482 if ((long long)args[0]->val.num != args[0]->val.num) {
3483 set_fill_number(set, ((long long)args[0]->val.num) + 1);
3484 } else {
3485 set_fill_number(set, args[0]->val.num);
3486 }
3487
3488 return LY_SUCCESS;
3489}
3490
3491/**
3492 * @brief Execute the XPath concat(string, string, string*) function.
3493 * Returns LYXP_SET_STRING with the concatenation of all the arguments.
3494 *
3495 * @param[in] args Array of arguments.
3496 * @param[in] arg_count Count of elements in @p args.
3497 * @param[in,out] set Context and result set at the same time.
3498 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003499 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003500 */
3501static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003502xpath_concat(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003503{
3504 uint16_t i;
3505 char *str = NULL;
3506 size_t used = 1;
3507 LY_ERR rc = LY_SUCCESS;
3508 struct lysc_node_leaf *sleaf;
3509
3510 if (options & LYXP_SCNODE_ALL) {
3511 for (i = 0; i < arg_count; ++i) {
3512 if ((args[i]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[i]))) {
3513 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3514 LOGWRN(set->ctx, "Argument #%u of %s is a %s node \"%s\".",
Michal Vasko69730152020-10-09 16:30:07 +02003515 i + 1, __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003516 } else if (!warn_is_string_type(sleaf->type)) {
Radek Krejci70124c82020-08-14 22:17:03 +02003517 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 +02003518 }
3519 }
3520 }
3521 set_scnode_clear_ctx(set);
3522 return rc;
3523 }
3524
3525 for (i = 0; i < arg_count; ++i) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003526 rc = lyxp_set_cast(args[i], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003527 if (rc != LY_SUCCESS) {
3528 free(str);
3529 return rc;
3530 }
3531
3532 str = ly_realloc(str, (used + strlen(args[i]->val.str)) * sizeof(char));
3533 LY_CHECK_ERR_RET(!str, LOGMEM(set->ctx), LY_EMEM);
3534 strcpy(str + used - 1, args[i]->val.str);
3535 used += strlen(args[i]->val.str);
3536 }
3537
3538 /* free, kind of */
Michal Vaskod3678892020-05-21 10:06:58 +02003539 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003540 set->type = LYXP_SET_STRING;
3541 set->val.str = str;
3542
3543 return LY_SUCCESS;
3544}
3545
3546/**
3547 * @brief Execute the XPath contains(string, string) function.
3548 * Returns LYXP_SET_BOOLEAN whether the second argument can
3549 * be found in the first or not.
3550 *
3551 * @param[in] args Array of arguments.
3552 * @param[in] arg_count Count of elements in @p args.
3553 * @param[in,out] set Context and result set at the same time.
3554 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003555 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003556 */
3557static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003558xpath_contains(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003559{
3560 struct lysc_node_leaf *sleaf;
3561 LY_ERR rc = LY_SUCCESS;
3562
3563 if (options & LYXP_SCNODE_ALL) {
3564 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3565 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3566 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 +02003567 } else if (!warn_is_string_type(sleaf->type)) {
3568 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003569 }
3570 }
3571
3572 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
3573 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3574 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 +02003575 } else if (!warn_is_string_type(sleaf->type)) {
3576 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003577 }
3578 }
3579 set_scnode_clear_ctx(set);
3580 return rc;
3581 }
3582
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003583 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003584 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003585 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003586 LY_CHECK_RET(rc);
3587
3588 if (strstr(args[0]->val.str, args[1]->val.str)) {
3589 set_fill_boolean(set, 1);
3590 } else {
3591 set_fill_boolean(set, 0);
3592 }
3593
3594 return LY_SUCCESS;
3595}
3596
3597/**
3598 * @brief Execute the XPath count(node-set) function. Returns LYXP_SET_NUMBER
3599 * with the size of the node-set from the argument.
3600 *
3601 * @param[in] args Array of arguments.
3602 * @param[in] arg_count Count of elements in @p args.
3603 * @param[in,out] set Context and result set at the same time.
3604 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003605 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003606 */
3607static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003608xpath_count(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003609{
3610 struct lysc_node *scnode = NULL;
3611 LY_ERR rc = LY_SUCCESS;
3612
3613 if (options & LYXP_SCNODE_ALL) {
3614 if ((args[0]->type != LYXP_SET_SCNODE_SET) || !(scnode = warn_get_scnode_in_ctx(args[0]))) {
3615 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003616 }
3617 set_scnode_clear_ctx(set);
3618 return rc;
3619 }
3620
Michal Vasko03ff5a72019-09-11 13:49:33 +02003621 if (args[0]->type != LYXP_SET_NODE_SET) {
3622 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "count(node-set)");
3623 return LY_EVALID;
3624 }
3625
3626 set_fill_number(set, args[0]->used);
3627 return LY_SUCCESS;
3628}
3629
3630/**
3631 * @brief Execute the XPath current() function. Returns LYXP_SET_NODE_SET
3632 * with the context with the intial node.
3633 *
3634 * @param[in] args Array of arguments.
3635 * @param[in] arg_count Count of elements in @p args.
3636 * @param[in,out] set Context and result set at the same time.
3637 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003638 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003639 */
3640static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003641xpath_current(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003642{
3643 if (arg_count || args) {
3644 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INARGCOUNT, arg_count, "current()");
3645 return LY_EVALID;
3646 }
3647
3648 if (options & LYXP_SCNODE_ALL) {
3649 set_scnode_clear_ctx(set);
3650
Radek Krejciaa6b53f2020-08-27 15:19:03 +02003651 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, set->ctx_scnode, LYXP_NODE_ELEM, NULL));
Michal Vasko03ff5a72019-09-11 13:49:33 +02003652 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02003653 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003654
3655 /* position is filled later */
3656 set_insert_node(set, set->ctx_node, 0, LYXP_NODE_ELEM, 0);
3657 }
3658
3659 return LY_SUCCESS;
3660}
3661
3662/**
3663 * @brief Execute the YANG 1.1 deref(node-set) function. Returns LYXP_SET_NODE_SET with either
3664 * leafref or instance-identifier target node(s).
3665 *
3666 * @param[in] args Array of arguments.
3667 * @param[in] arg_count Count of elements in @p args.
3668 * @param[in,out] set Context and result set at the same time.
3669 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003670 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003671 */
3672static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003673xpath_deref(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003674{
3675 struct lyd_node_term *leaf;
Michal Vasko42e497c2020-01-06 08:38:25 +01003676 struct lysc_node_leaf *sleaf = NULL;
Michal Vasko004d3152020-06-11 19:59:22 +02003677 struct lysc_type_leafref *lref;
Michal Vaskoae9e4cb2019-09-25 08:43:05 +02003678 const struct lysc_node *target;
Michal Vasko004d3152020-06-11 19:59:22 +02003679 struct ly_path *p;
3680 struct lyd_node *node;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003681 char *errmsg = NULL;
Michal Vasko00cbf532020-06-15 13:58:47 +02003682 uint8_t oper;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003683 LY_ERR rc = LY_SUCCESS;
3684
3685 if (options & LYXP_SCNODE_ALL) {
3686 if ((args[0]->type != LYXP_SET_SCNODE_SET) || !(sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3687 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003688 } else if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3689 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003690 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_LEAFREF) && !warn_is_specific_type(sleaf->type, LY_TYPE_INST)) {
3691 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"leafref\" nor \"instance-identifier\".",
Michal Vasko69730152020-10-09 16:30:07 +02003692 __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003693 }
3694 set_scnode_clear_ctx(set);
Michal Vasko42e497c2020-01-06 08:38:25 +01003695 if (sleaf && (sleaf->type->basetype == LY_TYPE_LEAFREF)) {
Michal Vasko004d3152020-06-11 19:59:22 +02003696 lref = (struct lysc_type_leafref *)sleaf->type;
Michal Vasko00cbf532020-06-15 13:58:47 +02003697 oper = lysc_is_output((struct lysc_node *)sleaf) ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT;
Michal Vasko004d3152020-06-11 19:59:22 +02003698
3699 /* it was already evaluated on schema, it must succeed */
Michal Vaskoc8a230d2020-08-14 12:17:10 +02003700 rc = ly_path_compile(set->ctx, sleaf->module, (struct lysc_node *)sleaf, lref->path, LY_PATH_LREF_TRUE,
Michal Vasko72619ce2020-10-06 14:05:32 +02003701 oper, LY_PATH_TARGET_MANY, set->format, (void *)lref->path_mod, &p);
Michal Vasko004d3152020-06-11 19:59:22 +02003702 assert(!rc);
3703
3704 /* get the target node */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003705 target = p[LY_ARRAY_COUNT(p) - 1].node;
Michal Vasko004d3152020-06-11 19:59:22 +02003706 ly_path_free(set->ctx, p);
3707
Radek Krejciaa6b53f2020-08-27 15:19:03 +02003708 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, target, LYXP_NODE_ELEM, NULL));
Michal Vaskoae9e4cb2019-09-25 08:43:05 +02003709 }
3710
Michal Vasko03ff5a72019-09-11 13:49:33 +02003711 return rc;
3712 }
3713
Michal Vaskod3678892020-05-21 10:06:58 +02003714 if (args[0]->type != LYXP_SET_NODE_SET) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003715 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "deref(node-set)");
3716 return LY_EVALID;
3717 }
3718
Michal Vaskod3678892020-05-21 10:06:58 +02003719 lyxp_set_free_content(set);
3720 if (args[0]->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003721 leaf = (struct lyd_node_term *)args[0]->val.nodes[0].node;
3722 sleaf = (struct lysc_node_leaf *)leaf->schema;
3723 if (sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST)) {
3724 if (sleaf->type->basetype == LY_TYPE_LEAFREF) {
3725 /* find leafref target */
Michal Vasko004d3152020-06-11 19:59:22 +02003726 if (ly_type_find_leafref((struct lysc_type_leafref *)sleaf->type, (struct lyd_node *)leaf,
Michal Vasko69730152020-10-09 16:30:07 +02003727 &leaf->value, set->tree, &node, &errmsg)) {
Michal Vasko004d3152020-06-11 19:59:22 +02003728 LOGERR(set->ctx, LY_EVALID, errmsg);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003729 free(errmsg);
Michal Vasko004d3152020-06-11 19:59:22 +02003730 return LY_EVALID;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003731 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02003732 } else {
3733 assert(sleaf->type->basetype == LY_TYPE_INST);
Michal Vasko004d3152020-06-11 19:59:22 +02003734 if (ly_path_eval(leaf->value.target, set->tree, &node)) {
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003735 LOGERR(set->ctx, LY_EVALID, "Invalid instance-identifier \"%s\" value - required instance not found.",
Michal Vasko69730152020-10-09 16:30:07 +02003736 LYD_CANON_VALUE(leaf));
Michal Vasko03ff5a72019-09-11 13:49:33 +02003737 return LY_EVALID;
3738 }
3739 }
Michal Vasko004d3152020-06-11 19:59:22 +02003740
3741 /* insert it */
3742 set_insert_node(set, node, 0, LYXP_NODE_ELEM, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003743 }
3744 }
3745
3746 return LY_SUCCESS;
3747}
3748
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003749static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003750xpath_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 +02003751{
3752 uint16_t i;
3753 LY_ARRAY_COUNT_TYPE u;
3754 struct lyd_node_term *leaf;
3755 struct lysc_node_leaf *sleaf;
3756 struct lyd_meta *meta;
3757 struct lyd_value data = {0}, *val;
3758 struct ly_err_item *err = NULL;
3759 LY_ERR rc = LY_SUCCESS;
Radek Krejci857189e2020-09-01 13:26:36 +02003760 ly_bool found;
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003761
3762 if (options & LYXP_SCNODE_ALL) {
3763 if ((args[0]->type != LYXP_SET_SCNODE_SET) || !(sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3764 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", func);
3765 } else if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3766 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", func, lys_nodetype2str(sleaf->nodetype),
Michal Vasko69730152020-10-09 16:30:07 +02003767 sleaf->name);
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003768 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_IDENT)) {
3769 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"identityref\".", func, sleaf->name);
3770 }
3771
3772 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
3773 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3774 LOGWRN(set->ctx, "Argument #2 of %s is a %s node \"%s\".", func, lys_nodetype2str(sleaf->nodetype),
Michal Vasko69730152020-10-09 16:30:07 +02003775 sleaf->name);
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003776 } else if (!warn_is_string_type(sleaf->type)) {
3777 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", func, sleaf->name);
3778 }
3779 }
3780 set_scnode_clear_ctx(set);
3781 return rc;
3782 }
3783
3784 if (args[0]->type != LYXP_SET_NODE_SET) {
3785 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]),
Michal Vasko69730152020-10-09 16:30:07 +02003786 "derived-from(-or-self)(node-set, string)");
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003787 return LY_EVALID;
3788 }
3789 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
3790 LY_CHECK_RET(rc);
3791
3792 set_fill_boolean(set, 0);
3793 found = 0;
3794 for (i = 0; i < args[0]->used; ++i) {
3795 if ((args[0]->val.nodes[i].type != LYXP_NODE_ELEM) && (args[0]->val.nodes[i].type != LYXP_NODE_META)) {
3796 continue;
3797 }
3798
3799 if (args[0]->val.nodes[i].type == LYXP_NODE_ELEM) {
3800 leaf = (struct lyd_node_term *)args[0]->val.nodes[i].node;
3801 sleaf = (struct lysc_node_leaf *)leaf->schema;
3802 val = &leaf->value;
3803 if (!(sleaf->nodetype & LYD_NODE_TERM) || (leaf->value.realtype->basetype != LY_TYPE_IDENT)) {
3804 /* uninteresting */
3805 continue;
3806 }
3807
3808 /* store args[1] as ident */
3809 rc = val->realtype->plugin->store(set->ctx, val->realtype, args[1]->val.str, strlen(args[1]->val.str),
Michal Vaskofeca4fb2020-10-05 08:58:40 +02003810 0, set->format, (void *)set->local_mod, LYD_HINT_DATA, leaf->schema, &data, &err);
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003811 } else {
3812 meta = args[0]->val.meta[i].meta;
3813 val = &meta->value;
3814 if (val->realtype->basetype != LY_TYPE_IDENT) {
3815 /* uninteresting */
3816 continue;
3817 }
3818
3819 /* store args[1] as ident */
Michal Vaskofeca4fb2020-10-05 08:58:40 +02003820 rc = val->realtype->plugin->store(set->ctx, val->realtype, args[1]->val.str, strlen(args[1]->val.str), 0,
3821 set->format, (void *)meta->annotation->module, LYD_HINT_DATA, meta->parent->schema, &data, &err);
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003822 }
3823
3824 if (err) {
3825 ly_err_print(err);
3826 ly_err_free(err);
3827 }
3828 LY_CHECK_RET(rc);
3829
3830 /* finally check the identity itself */
3831 if (self_match && (data.ident == val->ident)) {
3832 set_fill_boolean(set, 1);
3833 found = 1;
3834 }
3835 if (!found) {
3836 LY_ARRAY_FOR(data.ident->derived, u) {
3837 if (data.ident->derived[u] == val->ident) {
3838 set_fill_boolean(set, 1);
3839 found = 1;
3840 break;
3841 }
3842 }
3843 }
3844
3845 /* free temporary value */
3846 val->realtype->plugin->free(set->ctx, &data);
3847 if (found) {
3848 break;
3849 }
3850 }
3851
3852 return LY_SUCCESS;
3853}
3854
Michal Vasko03ff5a72019-09-11 13:49:33 +02003855/**
3856 * @brief Execute the YANG 1.1 derived-from(node-set, string) function. Returns LYXP_SET_BOOLEAN depending
3857 * on whether the first argument nodes contain a node of an identity derived from the second
3858 * argument identity.
3859 *
3860 * @param[in] args Array of arguments.
3861 * @param[in] arg_count Count of elements in @p args.
3862 * @param[in,out] set Context and result set at the same time.
3863 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003864 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003865 */
3866static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003867xpath_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 +02003868{
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003869 return xpath_derived_(args, set, options, 0, __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003870}
3871
3872/**
3873 * @brief Execute the YANG 1.1 derived-from-or-self(node-set, string) function. Returns LYXP_SET_BOOLEAN depending
3874 * on whether the first argument nodes contain a node of an identity that either is or is derived from
3875 * the second argument identity.
3876 *
3877 * @param[in] args Array of arguments.
3878 * @param[in] arg_count Count of elements in @p args.
3879 * @param[in,out] set Context and result set at the same time.
3880 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003881 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003882 */
3883static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003884xpath_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 +02003885{
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003886 return xpath_derived_(args, set, options, 1, __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003887}
3888
3889/**
3890 * @brief Execute the YANG 1.1 enum-value(node-set) function. Returns LYXP_SET_NUMBER
3891 * with the integer value of the first node's enum value, otherwise NaN.
3892 *
3893 * @param[in] args Array of arguments.
3894 * @param[in] arg_count Count of elements in @p args.
3895 * @param[in,out] set Context and result set at the same time.
3896 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003897 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003898 */
3899static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003900xpath_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 +02003901{
3902 struct lyd_node_term *leaf;
3903 struct lysc_node_leaf *sleaf;
3904 LY_ERR rc = LY_SUCCESS;
3905
3906 if (options & LYXP_SCNODE_ALL) {
3907 if ((args[0]->type != LYXP_SET_SCNODE_SET) || !(sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3908 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003909 } else if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3910 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 +02003911 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_ENUM)) {
3912 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"enumeration\".", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003913 }
3914 set_scnode_clear_ctx(set);
3915 return rc;
3916 }
3917
Michal Vaskod3678892020-05-21 10:06:58 +02003918 if (args[0]->type != LYXP_SET_NODE_SET) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003919 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "enum-value(node-set)");
3920 return LY_EVALID;
3921 }
3922
3923 set_fill_number(set, NAN);
Michal Vaskod3678892020-05-21 10:06:58 +02003924 if (args[0]->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003925 leaf = (struct lyd_node_term *)args[0]->val.nodes[0].node;
3926 sleaf = (struct lysc_node_leaf *)leaf->schema;
3927 if ((sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST)) && (sleaf->type->basetype == LY_TYPE_ENUM)) {
3928 set_fill_number(set, leaf->value.enum_item->value);
3929 }
3930 }
3931
3932 return LY_SUCCESS;
3933}
3934
3935/**
3936 * @brief Execute the XPath false() function. Returns LYXP_SET_BOOLEAN
3937 * with false value.
3938 *
3939 * @param[in] args Array of arguments.
3940 * @param[in] arg_count Count of elements in @p args.
3941 * @param[in,out] set Context and result set at the same time.
3942 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003943 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003944 */
3945static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003946xpath_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 +02003947{
3948 if (options & LYXP_SCNODE_ALL) {
3949 set_scnode_clear_ctx(set);
3950 return LY_SUCCESS;
3951 }
3952
3953 set_fill_boolean(set, 0);
3954 return LY_SUCCESS;
3955}
3956
3957/**
3958 * @brief Execute the XPath floor(number) function. Returns LYXP_SET_NUMBER
3959 * with the first argument floored (truncated).
3960 *
3961 * @param[in] args Array of arguments.
3962 * @param[in] arg_count Count of elements in @p args.
3963 * @param[in,out] set Context and result set at the same time.
3964 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003965 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003966 */
3967static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003968xpath_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 +02003969{
3970 LY_ERR rc;
3971
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003972 rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003973 LY_CHECK_RET(rc);
3974 if (isfinite(args[0]->val.num)) {
3975 set_fill_number(set, (long long)args[0]->val.num);
3976 }
3977
3978 return LY_SUCCESS;
3979}
3980
3981/**
3982 * @brief Execute the XPath lang(string) function. Returns LYXP_SET_BOOLEAN
3983 * whether the language of the text matches the one from the argument.
3984 *
3985 * @param[in] args Array of arguments.
3986 * @param[in] arg_count Count of elements in @p args.
3987 * @param[in,out] set Context and result set at the same time.
3988 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003989 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003990 */
3991static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003992xpath_lang(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003993{
3994 const struct lyd_node *node;
3995 struct lysc_node_leaf *sleaf;
Michal Vasko9f96a052020-03-10 09:41:45 +01003996 struct lyd_meta *meta = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003997 const char *val;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003998 LY_ERR rc = LY_SUCCESS;
3999
4000 if (options & LYXP_SCNODE_ALL) {
4001 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4002 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4003 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 +02004004 } else if (!warn_is_string_type(sleaf->type)) {
4005 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004006 }
4007 }
4008 set_scnode_clear_ctx(set);
4009 return rc;
4010 }
4011
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004012 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004013 LY_CHECK_RET(rc);
4014
Michal Vasko03ff5a72019-09-11 13:49:33 +02004015 if (set->type != LYXP_SET_NODE_SET) {
4016 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INCTX, print_set_type(set), "lang(string)");
4017 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004018 } else if (!set->used) {
4019 set_fill_boolean(set, 0);
4020 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004021 }
4022
4023 switch (set->val.nodes[0].type) {
4024 case LYXP_NODE_ELEM:
4025 case LYXP_NODE_TEXT:
4026 node = set->val.nodes[0].node;
4027 break;
Michal Vasko9f96a052020-03-10 09:41:45 +01004028 case LYXP_NODE_META:
4029 node = set->val.meta[0].meta->parent;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004030 break;
4031 default:
4032 /* nothing to do with roots */
4033 set_fill_boolean(set, 0);
4034 return LY_SUCCESS;
4035 }
4036
Michal Vasko9f96a052020-03-10 09:41:45 +01004037 /* find lang metadata */
Michal Vaskod989ba02020-08-24 10:59:24 +02004038 for ( ; node; node = (struct lyd_node *)node->parent) {
Michal Vasko9f96a052020-03-10 09:41:45 +01004039 for (meta = node->meta; meta; meta = meta->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004040 /* annotations */
Michal Vasko9f96a052020-03-10 09:41:45 +01004041 if (meta->name && !strcmp(meta->name, "lang") && !strcmp(meta->annotation->module->name, "xml")) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004042 break;
4043 }
4044 }
4045
Michal Vasko9f96a052020-03-10 09:41:45 +01004046 if (meta) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004047 break;
4048 }
4049 }
4050
4051 /* compare languages */
Michal Vasko9f96a052020-03-10 09:41:45 +01004052 if (!meta) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004053 set_fill_boolean(set, 0);
4054 } else {
Radek Krejci1deb5be2020-08-26 16:43:36 +02004055 uint64_t i;
4056
Michal Vaskoba99a3e2020-08-18 15:50:05 +02004057 val = meta->value.canonical;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004058 for (i = 0; args[0]->val.str[i]; ++i) {
4059 if (tolower(args[0]->val.str[i]) != tolower(val[i])) {
4060 set_fill_boolean(set, 0);
4061 break;
4062 }
4063 }
4064 if (!args[0]->val.str[i]) {
4065 if (!val[i] || (val[i] == '-')) {
4066 set_fill_boolean(set, 1);
4067 } else {
4068 set_fill_boolean(set, 0);
4069 }
4070 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02004071 }
4072
4073 return LY_SUCCESS;
4074}
4075
4076/**
4077 * @brief Execute the XPath last() function. Returns LYXP_SET_NUMBER
4078 * with the context size.
4079 *
4080 * @param[in] args Array of arguments.
4081 * @param[in] arg_count Count of elements in @p args.
4082 * @param[in,out] set Context and result set at the same time.
4083 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004084 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004085 */
4086static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004087xpath_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 +02004088{
4089 if (options & LYXP_SCNODE_ALL) {
4090 set_scnode_clear_ctx(set);
4091 return LY_SUCCESS;
4092 }
4093
Michal Vasko03ff5a72019-09-11 13:49:33 +02004094 if (set->type != LYXP_SET_NODE_SET) {
4095 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INCTX, print_set_type(set), "last()");
4096 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004097 } else if (!set->used) {
4098 set_fill_number(set, 0);
4099 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004100 }
4101
4102 set_fill_number(set, set->ctx_size);
4103 return LY_SUCCESS;
4104}
4105
4106/**
4107 * @brief Execute the XPath local-name(node-set?) function. Returns LYXP_SET_STRING
4108 * with the node name without namespace from the argument or the context.
4109 *
4110 * @param[in] args Array of arguments.
4111 * @param[in] arg_count Count of elements in @p args.
4112 * @param[in,out] set Context and result set at the same time.
4113 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004114 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004115 */
4116static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004117xpath_local_name(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004118{
4119 struct lyxp_set_node *item;
Michal Vasko69730152020-10-09 16:30:07 +02004120
Michal Vasko03ff5a72019-09-11 13:49:33 +02004121 /* suppress unused variable warning */
4122 (void)options;
4123
4124 if (options & LYXP_SCNODE_ALL) {
4125 set_scnode_clear_ctx(set);
4126 return LY_SUCCESS;
4127 }
4128
4129 if (arg_count) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004130 if (args[0]->type != LYXP_SET_NODE_SET) {
4131 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "local-name(node-set?)");
4132 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004133 } else if (!args[0]->used) {
4134 set_fill_string(set, "", 0);
4135 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004136 }
4137
4138 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004139 assert(!set_sort(args[0]));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004140
4141 item = &args[0]->val.nodes[0];
4142 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004143 if (set->type != LYXP_SET_NODE_SET) {
4144 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INCTX, print_set_type(set), "local-name(node-set?)");
4145 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004146 } else if (!set->used) {
4147 set_fill_string(set, "", 0);
4148 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004149 }
4150
4151 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004152 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004153
4154 item = &set->val.nodes[0];
4155 }
4156
4157 switch (item->type) {
Michal Vasko2caefc12019-11-14 16:07:56 +01004158 case LYXP_NODE_NONE:
4159 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004160 case LYXP_NODE_ROOT:
4161 case LYXP_NODE_ROOT_CONFIG:
4162 case LYXP_NODE_TEXT:
4163 set_fill_string(set, "", 0);
4164 break;
4165 case LYXP_NODE_ELEM:
4166 set_fill_string(set, item->node->schema->name, strlen(item->node->schema->name));
4167 break;
Michal Vasko9f96a052020-03-10 09:41:45 +01004168 case LYXP_NODE_META:
4169 set_fill_string(set, ((struct lyd_meta *)item->node)->name, strlen(((struct lyd_meta *)item->node)->name));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004170 break;
4171 }
4172
4173 return LY_SUCCESS;
4174}
4175
4176/**
4177 * @brief Execute the XPath name(node-set?) function. Returns LYXP_SET_STRING
4178 * with the node name fully qualified (with namespace) from the argument or the context.
4179 *
4180 * @param[in] args Array of arguments.
4181 * @param[in] arg_count Count of elements in @p args.
4182 * @param[in,out] set Context and result set at the same time.
4183 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004184 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004185 */
4186static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004187xpath_name(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004188{
4189 struct lyxp_set_node *item;
Michal Vaskoed4fcfe2020-07-08 10:38:56 +02004190 struct lys_module *mod = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004191 char *str;
Michal Vaskoed4fcfe2020-07-08 10:38:56 +02004192 const char *name = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004193
4194 if (options & LYXP_SCNODE_ALL) {
4195 set_scnode_clear_ctx(set);
4196 return LY_SUCCESS;
4197 }
4198
4199 if (arg_count) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004200 if (args[0]->type != LYXP_SET_NODE_SET) {
4201 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "name(node-set?)");
4202 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004203 } else if (!args[0]->used) {
4204 set_fill_string(set, "", 0);
4205 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004206 }
4207
4208 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004209 assert(!set_sort(args[0]));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004210
4211 item = &args[0]->val.nodes[0];
4212 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004213 if (set->type != LYXP_SET_NODE_SET) {
4214 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INCTX, print_set_type(set), "name(node-set?)");
4215 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004216 } else if (!set->used) {
4217 set_fill_string(set, "", 0);
4218 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004219 }
4220
4221 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004222 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004223
4224 item = &set->val.nodes[0];
4225 }
4226
4227 switch (item->type) {
Michal Vasko2caefc12019-11-14 16:07:56 +01004228 case LYXP_NODE_NONE:
4229 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004230 case LYXP_NODE_ROOT:
4231 case LYXP_NODE_ROOT_CONFIG:
4232 case LYXP_NODE_TEXT:
Michal Vaskoed4fcfe2020-07-08 10:38:56 +02004233 /* keep NULL */
Michal Vasko03ff5a72019-09-11 13:49:33 +02004234 break;
4235 case LYXP_NODE_ELEM:
4236 mod = item->node->schema->module;
4237 name = item->node->schema->name;
4238 break;
Michal Vasko9f96a052020-03-10 09:41:45 +01004239 case LYXP_NODE_META:
4240 mod = ((struct lyd_meta *)item->node)->annotation->module;
4241 name = ((struct lyd_meta *)item->node)->name;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004242 break;
4243 }
4244
4245 if (mod && name) {
Radek Krejci1deb5be2020-08-26 16:43:36 +02004246 int rc = -1;
4247
Michal Vasko03ff5a72019-09-11 13:49:33 +02004248 switch (set->format) {
Michal Vaskoc8a230d2020-08-14 12:17:10 +02004249 case LY_PREF_SCHEMA:
Michal Vasko03ff5a72019-09-11 13:49:33 +02004250 rc = asprintf(&str, "%s:%s", lys_prefix_find_module(set->local_mod, mod), name);
4251 break;
Michal Vaskoc8a230d2020-08-14 12:17:10 +02004252 case LY_PREF_JSON:
Michal Vasko03ff5a72019-09-11 13:49:33 +02004253 rc = asprintf(&str, "%s:%s", mod->name, name);
4254 break;
Michal Vaskoc8a230d2020-08-14 12:17:10 +02004255 case LY_PREF_XML:
Michal Vasko9409ef62019-09-12 11:47:17 +02004256 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004257 }
4258 LY_CHECK_ERR_RET(rc == -1, LOGMEM(set->ctx), LY_EMEM);
4259 set_fill_string(set, str, strlen(str));
4260 free(str);
4261 } else {
4262 set_fill_string(set, "", 0);
4263 }
4264
4265 return LY_SUCCESS;
4266}
4267
4268/**
4269 * @brief Execute the XPath namespace-uri(node-set?) function. Returns LYXP_SET_STRING
4270 * with the namespace of the node from the argument or the context.
4271 *
4272 * @param[in] args Array of arguments.
4273 * @param[in] arg_count Count of elements in @p args.
4274 * @param[in,out] set Context and result set at the same time.
4275 * @param[in] options XPath options.
4276 * @return LY_ERR (LY_EINVAL for wrong arguments on schema)
4277 */
4278static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004279xpath_namespace_uri(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004280{
4281 struct lyxp_set_node *item;
4282 struct lys_module *mod;
Michal Vasko69730152020-10-09 16:30:07 +02004283
Michal Vasko03ff5a72019-09-11 13:49:33 +02004284 /* suppress unused variable warning */
4285 (void)options;
4286
4287 if (options & LYXP_SCNODE_ALL) {
4288 set_scnode_clear_ctx(set);
4289 return LY_SUCCESS;
4290 }
4291
4292 if (arg_count) {
Michal Vaskod3678892020-05-21 10:06:58 +02004293 if (args[0]->type != LYXP_SET_NODE_SET) {
4294 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]),
Michal Vasko69730152020-10-09 16:30:07 +02004295 "namespace-uri(node-set?)");
Michal Vaskod3678892020-05-21 10:06:58 +02004296 return LY_EVALID;
4297 } else if (!args[0]->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004298 set_fill_string(set, "", 0);
4299 return LY_SUCCESS;
4300 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02004301
4302 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004303 assert(!set_sort(args[0]));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004304
4305 item = &args[0]->val.nodes[0];
4306 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004307 if (set->type != LYXP_SET_NODE_SET) {
4308 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INCTX, print_set_type(set), "namespace-uri(node-set?)");
4309 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004310 } else if (!set->used) {
4311 set_fill_string(set, "", 0);
4312 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004313 }
4314
4315 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004316 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004317
4318 item = &set->val.nodes[0];
4319 }
4320
4321 switch (item->type) {
Michal Vasko2caefc12019-11-14 16:07:56 +01004322 case LYXP_NODE_NONE:
4323 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004324 case LYXP_NODE_ROOT:
4325 case LYXP_NODE_ROOT_CONFIG:
4326 case LYXP_NODE_TEXT:
4327 set_fill_string(set, "", 0);
4328 break;
4329 case LYXP_NODE_ELEM:
Michal Vasko9f96a052020-03-10 09:41:45 +01004330 case LYXP_NODE_META:
Michal Vasko03ff5a72019-09-11 13:49:33 +02004331 if (item->type == LYXP_NODE_ELEM) {
4332 mod = item->node->schema->module;
Michal Vasko9f96a052020-03-10 09:41:45 +01004333 } else { /* LYXP_NODE_META */
Michal Vasko03ff5a72019-09-11 13:49:33 +02004334 /* annotations */
Michal Vasko9f96a052020-03-10 09:41:45 +01004335 mod = ((struct lyd_meta *)item->node)->annotation->module;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004336 }
4337
4338 set_fill_string(set, mod->ns, strlen(mod->ns));
4339 break;
4340 }
4341
4342 return LY_SUCCESS;
4343}
4344
4345/**
4346 * @brief Execute the XPath node() function (node type). Returns LYXP_SET_NODE_SET
4347 * with only nodes from the context. In practice it either leaves the context
4348 * as it is or returns an empty node set.
4349 *
4350 * @param[in] args Array of arguments.
4351 * @param[in] arg_count Count of elements in @p args.
4352 * @param[in,out] set Context and result set at the same time.
4353 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004354 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004355 */
4356static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004357xpath_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 +02004358{
4359 if (options & LYXP_SCNODE_ALL) {
4360 set_scnode_clear_ctx(set);
4361 return LY_SUCCESS;
4362 }
4363
4364 if (set->type != LYXP_SET_NODE_SET) {
Michal Vaskod3678892020-05-21 10:06:58 +02004365 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004366 }
4367 return LY_SUCCESS;
4368}
4369
4370/**
4371 * @brief Execute the XPath normalize-space(string?) function. Returns LYXP_SET_STRING
4372 * with normalized value (no leading, trailing, double white spaces) of the node
4373 * from the argument or the context.
4374 *
4375 * @param[in] args Array of arguments.
4376 * @param[in] arg_count Count of elements in @p args.
4377 * @param[in,out] set Context and result set at the same time.
4378 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004379 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004380 */
4381static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004382xpath_normalize_space(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004383{
4384 uint16_t i, new_used;
4385 char *new;
Radek Krejci857189e2020-09-01 13:26:36 +02004386 ly_bool have_spaces = 0, space_before = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004387 struct lysc_node_leaf *sleaf;
4388 LY_ERR rc = LY_SUCCESS;
4389
4390 if (options & LYXP_SCNODE_ALL) {
4391 if (arg_count && (args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4392 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4393 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 +02004394 } else if (!warn_is_string_type(sleaf->type)) {
4395 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004396 }
4397 }
4398 set_scnode_clear_ctx(set);
4399 return rc;
4400 }
4401
4402 if (arg_count) {
4403 set_fill_set(set, args[0]);
4404 }
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004405 rc = lyxp_set_cast(set, LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004406 LY_CHECK_RET(rc);
4407
4408 /* is there any normalization necessary? */
4409 for (i = 0; set->val.str[i]; ++i) {
4410 if (is_xmlws(set->val.str[i])) {
4411 if ((i == 0) || space_before || (!set->val.str[i + 1])) {
4412 have_spaces = 1;
4413 break;
4414 }
4415 space_before = 1;
4416 } else {
4417 space_before = 0;
4418 }
4419 }
4420
4421 /* yep, there is */
4422 if (have_spaces) {
4423 /* it's enough, at least one character will go, makes space for ending '\0' */
4424 new = malloc(strlen(set->val.str) * sizeof(char));
4425 LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM);
4426 new_used = 0;
4427
4428 space_before = 0;
4429 for (i = 0; set->val.str[i]; ++i) {
4430 if (is_xmlws(set->val.str[i])) {
4431 if ((i == 0) || space_before) {
4432 space_before = 1;
4433 continue;
4434 } else {
4435 space_before = 1;
4436 }
4437 } else {
4438 space_before = 0;
4439 }
4440
4441 new[new_used] = (space_before ? ' ' : set->val.str[i]);
4442 ++new_used;
4443 }
4444
4445 /* at worst there is one trailing space now */
4446 if (new_used && is_xmlws(new[new_used - 1])) {
4447 --new_used;
4448 }
4449
4450 new = ly_realloc(new, (new_used + 1) * sizeof(char));
4451 LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM);
4452 new[new_used] = '\0';
4453
4454 free(set->val.str);
4455 set->val.str = new;
4456 }
4457
4458 return LY_SUCCESS;
4459}
4460
4461/**
4462 * @brief Execute the XPath not(boolean) function. Returns LYXP_SET_BOOLEAN
4463 * with the argument converted to boolean and logically inverted.
4464 *
4465 * @param[in] args Array of arguments.
4466 * @param[in] arg_count Count of elements in @p args.
4467 * @param[in,out] set Context and result set at the same time.
4468 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004469 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004470 */
4471static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004472xpath_not(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004473{
4474 if (options & LYXP_SCNODE_ALL) {
4475 set_scnode_clear_ctx(set);
4476 return LY_SUCCESS;
4477 }
4478
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004479 lyxp_set_cast(args[0], LYXP_SET_BOOLEAN);
Michal Vasko004d3152020-06-11 19:59:22 +02004480 if (args[0]->val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004481 set_fill_boolean(set, 0);
4482 } else {
4483 set_fill_boolean(set, 1);
4484 }
4485
4486 return LY_SUCCESS;
4487}
4488
4489/**
4490 * @brief Execute the XPath number(object?) function. Returns LYXP_SET_NUMBER
4491 * with the number representation of either the argument or the context.
4492 *
4493 * @param[in] args Array of arguments.
4494 * @param[in] arg_count Count of elements in @p args.
4495 * @param[in,out] set Context and result set at the same time.
4496 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004497 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004498 */
4499static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004500xpath_number(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004501{
4502 LY_ERR rc;
4503
4504 if (options & LYXP_SCNODE_ALL) {
4505 set_scnode_clear_ctx(set);
4506 return LY_SUCCESS;
4507 }
4508
4509 if (arg_count) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004510 rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004511 LY_CHECK_RET(rc);
4512 set_fill_set(set, args[0]);
4513 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004514 rc = lyxp_set_cast(set, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004515 LY_CHECK_RET(rc);
4516 }
4517
4518 return LY_SUCCESS;
4519}
4520
4521/**
4522 * @brief Execute the XPath position() function. Returns LYXP_SET_NUMBER
4523 * with the context position.
4524 *
4525 * @param[in] args Array of arguments.
4526 * @param[in] arg_count Count of elements in @p args.
4527 * @param[in,out] set Context and result set at the same time.
4528 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004529 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004530 */
4531static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004532xpath_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 +02004533{
4534 if (options & LYXP_SCNODE_ALL) {
4535 set_scnode_clear_ctx(set);
4536 return LY_SUCCESS;
4537 }
4538
Michal Vasko03ff5a72019-09-11 13:49:33 +02004539 if (set->type != LYXP_SET_NODE_SET) {
4540 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INCTX, print_set_type(set), "position()");
4541 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004542 } else if (!set->used) {
4543 set_fill_number(set, 0);
4544 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004545 }
4546
4547 set_fill_number(set, set->ctx_pos);
4548
4549 /* UNUSED in 'Release' build type */
4550 (void)options;
4551 return LY_SUCCESS;
4552}
4553
4554/**
4555 * @brief Execute the YANG 1.1 re-match(string, string) function. Returns LYXP_SET_BOOLEAN
4556 * depending on whether the second argument regex matches the first argument string. For details refer to
4557 * YANG 1.1 RFC section 10.2.1.
4558 *
4559 * @param[in] args Array of arguments.
4560 * @param[in] arg_count Count of elements in @p args.
4561 * @param[in,out] set Context and result set at the same time.
4562 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004563 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004564 */
4565static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004566xpath_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 +02004567{
4568 struct lysc_pattern **patterns = NULL, **pattern;
4569 struct lysc_node_leaf *sleaf;
4570 char *path;
4571 LY_ERR rc = LY_SUCCESS;
4572 struct ly_err_item *err;
4573
4574 if (options & LYXP_SCNODE_ALL) {
4575 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4576 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4577 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 +02004578 } else if (!warn_is_string_type(sleaf->type)) {
4579 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004580 }
4581 }
4582
4583 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4584 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4585 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 +02004586 } else if (!warn_is_string_type(sleaf->type)) {
4587 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004588 }
4589 }
4590 set_scnode_clear_ctx(set);
4591 return rc;
4592 }
4593
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004594 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004595 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004596 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004597 LY_CHECK_RET(rc);
4598
4599 LY_ARRAY_NEW_RET(set->ctx, patterns, pattern, LY_EMEM);
4600 *pattern = malloc(sizeof **pattern);
4601 path = lyd_path(set->ctx_node, LYD_PATH_LOG, NULL, 0);
4602 rc = lys_compile_type_pattern_check(set->ctx, path, args[1]->val.str, &(*pattern)->code);
4603 free(path);
4604 if (rc != LY_SUCCESS) {
4605 LY_ARRAY_FREE(patterns);
4606 return rc;
4607 }
4608
4609 rc = ly_type_validate_patterns(patterns, args[0]->val.str, strlen(args[0]->val.str), &err);
4610 pcre2_code_free((*pattern)->code);
4611 free(*pattern);
4612 LY_ARRAY_FREE(patterns);
4613 if (rc && (rc != LY_EVALID)) {
4614 ly_err_print(err);
4615 ly_err_free(err);
4616 return rc;
4617 }
4618
4619 if (rc == LY_EVALID) {
4620 ly_err_free(err);
4621 set_fill_boolean(set, 0);
4622 } else {
4623 set_fill_boolean(set, 1);
4624 }
4625
4626 return LY_SUCCESS;
4627}
4628
4629/**
4630 * @brief Execute the XPath round(number) function. Returns LYXP_SET_NUMBER
4631 * with the rounded first argument. For details refer to
4632 * http://www.w3.org/TR/1999/REC-xpath-19991116/#function-round.
4633 *
4634 * @param[in] args Array of arguments.
4635 * @param[in] arg_count Count of elements in @p args.
4636 * @param[in,out] set Context and result set at the same time.
4637 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004638 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004639 */
4640static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004641xpath_round(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004642{
4643 struct lysc_node_leaf *sleaf;
4644 LY_ERR rc = LY_SUCCESS;
4645
4646 if (options & LYXP_SCNODE_ALL) {
4647 if ((args[0]->type != LYXP_SET_SCNODE_SET) || !(sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4648 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004649 } else if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4650 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 +02004651 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_DEC64)) {
4652 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"decimal64\".", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004653 }
4654 set_scnode_clear_ctx(set);
4655 return rc;
4656 }
4657
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004658 rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004659 LY_CHECK_RET(rc);
4660
4661 /* cover only the cases where floor can't be used */
4662 if ((args[0]->val.num == -0.0f) || ((args[0]->val.num < 0) && (args[0]->val.num >= -0.5))) {
4663 set_fill_number(set, -0.0f);
4664 } else {
4665 args[0]->val.num += 0.5;
4666 rc = xpath_floor(args, 1, args[0], options);
4667 LY_CHECK_RET(rc);
4668 set_fill_number(set, args[0]->val.num);
4669 }
4670
4671 return LY_SUCCESS;
4672}
4673
4674/**
4675 * @brief Execute the XPath starts-with(string, string) function.
4676 * Returns LYXP_SET_BOOLEAN whether the second argument is
4677 * the prefix of the first or not.
4678 *
4679 * @param[in] args Array of arguments.
4680 * @param[in] arg_count Count of elements in @p args.
4681 * @param[in,out] set Context and result set at the same time.
4682 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004683 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004684 */
4685static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004686xpath_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 +02004687{
4688 struct lysc_node_leaf *sleaf;
4689 LY_ERR rc = LY_SUCCESS;
4690
4691 if (options & LYXP_SCNODE_ALL) {
4692 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4693 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4694 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 +02004695 } else if (!warn_is_string_type(sleaf->type)) {
4696 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004697 }
4698 }
4699
4700 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4701 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4702 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 +02004703 } else if (!warn_is_string_type(sleaf->type)) {
4704 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004705 }
4706 }
4707 set_scnode_clear_ctx(set);
4708 return rc;
4709 }
4710
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004711 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004712 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004713 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004714 LY_CHECK_RET(rc);
4715
4716 if (strncmp(args[0]->val.str, args[1]->val.str, strlen(args[1]->val.str))) {
4717 set_fill_boolean(set, 0);
4718 } else {
4719 set_fill_boolean(set, 1);
4720 }
4721
4722 return LY_SUCCESS;
4723}
4724
4725/**
4726 * @brief Execute the XPath string(object?) function. Returns LYXP_SET_STRING
4727 * with the string representation of either the argument or the context.
4728 *
4729 * @param[in] args Array of arguments.
4730 * @param[in] arg_count Count of elements in @p args.
4731 * @param[in,out] set Context and result set at the same time.
4732 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004733 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004734 */
4735static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004736xpath_string(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004737{
4738 LY_ERR rc;
4739
4740 if (options & LYXP_SCNODE_ALL) {
4741 set_scnode_clear_ctx(set);
4742 return LY_SUCCESS;
4743 }
4744
4745 if (arg_count) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004746 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004747 LY_CHECK_RET(rc);
4748 set_fill_set(set, args[0]);
4749 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004750 rc = lyxp_set_cast(set, LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004751 LY_CHECK_RET(rc);
4752 }
4753
4754 return LY_SUCCESS;
4755}
4756
4757/**
4758 * @brief Execute the XPath string-length(string?) function. Returns LYXP_SET_NUMBER
4759 * with the length of the string in either the argument or the context.
4760 *
4761 * @param[in] args Array of arguments.
4762 * @param[in] arg_count Count of elements in @p args.
4763 * @param[in,out] set Context and result set at the same time.
4764 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004765 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004766 */
4767static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004768xpath_string_length(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004769{
4770 struct lysc_node_leaf *sleaf;
4771 LY_ERR rc = LY_SUCCESS;
4772
4773 if (options & LYXP_SCNODE_ALL) {
4774 if (arg_count && (args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4775 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4776 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 +02004777 } else if (!warn_is_string_type(sleaf->type)) {
4778 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004779 }
4780 }
4781 if (!arg_count && (set->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(set))) {
4782 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4783 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 +02004784 } else if (!warn_is_string_type(sleaf->type)) {
4785 LOGWRN(set->ctx, "Argument #0 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004786 }
4787 }
4788 set_scnode_clear_ctx(set);
4789 return rc;
4790 }
4791
4792 if (arg_count) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004793 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004794 LY_CHECK_RET(rc);
4795 set_fill_number(set, strlen(args[0]->val.str));
4796 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004797 rc = lyxp_set_cast(set, LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004798 LY_CHECK_RET(rc);
4799 set_fill_number(set, strlen(set->val.str));
4800 }
4801
4802 return LY_SUCCESS;
4803}
4804
4805/**
4806 * @brief Execute the XPath substring(string, number, number?) function.
4807 * Returns LYXP_SET_STRING substring of the first argument starting
4808 * on the second argument index ending on the third argument index,
4809 * indexed from 1. For exact definition refer to
4810 * http://www.w3.org/TR/1999/REC-xpath-19991116/#function-substring.
4811 *
4812 * @param[in] args Array of arguments.
4813 * @param[in] arg_count Count of elements in @p args.
4814 * @param[in,out] set Context and result set at the same time.
4815 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004816 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004817 */
4818static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004819xpath_substring(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004820{
Radek Krejci1deb5be2020-08-26 16:43:36 +02004821 int32_t start, len;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004822 uint16_t str_start, str_len, pos;
4823 struct lysc_node_leaf *sleaf;
4824 LY_ERR rc = LY_SUCCESS;
4825
4826 if (options & LYXP_SCNODE_ALL) {
4827 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4828 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4829 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 +02004830 } else if (!warn_is_string_type(sleaf->type)) {
4831 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004832 }
4833 }
4834
4835 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4836 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4837 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 +02004838 } else if (!warn_is_numeric_type(sleaf->type)) {
4839 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of numeric type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004840 }
4841 }
4842
Michal Vasko69730152020-10-09 16:30:07 +02004843 if ((arg_count == 3) && (args[2]->type == LYXP_SET_SCNODE_SET) &&
4844 (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[2]))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004845 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4846 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 +02004847 } else if (!warn_is_numeric_type(sleaf->type)) {
4848 LOGWRN(set->ctx, "Argument #3 of %s is node \"%s\", not of numeric type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004849 }
4850 }
4851 set_scnode_clear_ctx(set);
4852 return rc;
4853 }
4854
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004855 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004856 LY_CHECK_RET(rc);
4857
4858 /* start */
4859 if (xpath_round(&args[1], 1, args[1], options)) {
4860 return -1;
4861 }
4862 if (isfinite(args[1]->val.num)) {
4863 start = args[1]->val.num - 1;
4864 } else if (isinf(args[1]->val.num) && signbit(args[1]->val.num)) {
Radek Krejci1deb5be2020-08-26 16:43:36 +02004865 start = INT32_MIN;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004866 } else {
Radek Krejci1deb5be2020-08-26 16:43:36 +02004867 start = INT32_MAX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004868 }
4869
4870 /* len */
4871 if (arg_count == 3) {
4872 rc = xpath_round(&args[2], 1, args[2], options);
4873 LY_CHECK_RET(rc);
Radek Krejci1deb5be2020-08-26 16:43:36 +02004874 if (isnan(args[2]->val.num) || signbit(args[2]->val.num)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004875 len = 0;
Radek Krejci1deb5be2020-08-26 16:43:36 +02004876 } else if (isfinite(args[2]->val.num)) {
4877 len = args[2]->val.num;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004878 } else {
Radek Krejci1deb5be2020-08-26 16:43:36 +02004879 len = INT32_MAX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004880 }
4881 } else {
Radek Krejci1deb5be2020-08-26 16:43:36 +02004882 len = INT32_MAX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004883 }
4884
4885 /* find matching character positions */
4886 str_start = 0;
4887 str_len = 0;
4888 for (pos = 0; args[0]->val.str[pos]; ++pos) {
4889 if (pos < start) {
4890 ++str_start;
4891 } else if (pos < start + len) {
4892 ++str_len;
4893 } else {
4894 break;
4895 }
4896 }
4897
4898 set_fill_string(set, args[0]->val.str + str_start, str_len);
4899 return LY_SUCCESS;
4900}
4901
4902/**
4903 * @brief Execute the XPath substring-after(string, string) function.
4904 * Returns LYXP_SET_STRING with the string succeeding the occurance
4905 * of the second argument in the first or an empty string.
4906 *
4907 * @param[in] args Array of arguments.
4908 * @param[in] arg_count Count of elements in @p args.
4909 * @param[in,out] set Context and result set at the same time.
4910 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004911 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004912 */
4913static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004914xpath_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 +02004915{
4916 char *ptr;
4917 struct lysc_node_leaf *sleaf;
4918 LY_ERR rc = LY_SUCCESS;
4919
4920 if (options & LYXP_SCNODE_ALL) {
4921 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4922 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4923 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 +02004924 } else if (!warn_is_string_type(sleaf->type)) {
4925 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004926 }
4927 }
4928
4929 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4930 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4931 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 +02004932 } else if (!warn_is_string_type(sleaf->type)) {
4933 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004934 }
4935 }
4936 set_scnode_clear_ctx(set);
4937 return rc;
4938 }
4939
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004940 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004941 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004942 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004943 LY_CHECK_RET(rc);
4944
4945 ptr = strstr(args[0]->val.str, args[1]->val.str);
4946 if (ptr) {
4947 set_fill_string(set, ptr + strlen(args[1]->val.str), strlen(ptr + strlen(args[1]->val.str)));
4948 } else {
4949 set_fill_string(set, "", 0);
4950 }
4951
4952 return LY_SUCCESS;
4953}
4954
4955/**
4956 * @brief Execute the XPath substring-before(string, string) function.
4957 * Returns LYXP_SET_STRING with the string preceding the occurance
4958 * of the second argument in the first or an empty string.
4959 *
4960 * @param[in] args Array of arguments.
4961 * @param[in] arg_count Count of elements in @p args.
4962 * @param[in,out] set Context and result set at the same time.
4963 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004964 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004965 */
4966static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004967xpath_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 +02004968{
4969 char *ptr;
4970 struct lysc_node_leaf *sleaf;
4971 LY_ERR rc = LY_SUCCESS;
4972
4973 if (options & LYXP_SCNODE_ALL) {
4974 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4975 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4976 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 +02004977 } else if (!warn_is_string_type(sleaf->type)) {
4978 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004979 }
4980 }
4981
4982 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4983 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4984 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 +02004985 } else if (!warn_is_string_type(sleaf->type)) {
4986 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004987 }
4988 }
4989 set_scnode_clear_ctx(set);
4990 return rc;
4991 }
4992
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004993 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004994 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004995 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004996 LY_CHECK_RET(rc);
4997
4998 ptr = strstr(args[0]->val.str, args[1]->val.str);
4999 if (ptr) {
5000 set_fill_string(set, args[0]->val.str, ptr - args[0]->val.str);
5001 } else {
5002 set_fill_string(set, "", 0);
5003 }
5004
5005 return LY_SUCCESS;
5006}
5007
5008/**
5009 * @brief Execute the XPath sum(node-set) function. Returns LYXP_SET_NUMBER
5010 * with the sum of all the nodes in the context.
5011 *
5012 * @param[in] args Array of arguments.
5013 * @param[in] arg_count Count of elements in @p args.
5014 * @param[in,out] set Context and result set at the same time.
5015 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005016 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005017 */
5018static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005019xpath_sum(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005020{
5021 long double num;
5022 char *str;
5023 uint16_t i;
5024 struct lyxp_set set_item;
5025 struct lysc_node_leaf *sleaf;
5026 LY_ERR rc = LY_SUCCESS;
5027
5028 if (options & LYXP_SCNODE_ALL) {
5029 if (args[0]->type == LYXP_SET_SCNODE_SET) {
5030 for (i = 0; i < args[0]->used; ++i) {
5031 if (args[0]->val.scnodes[i].in_ctx == 1) {
5032 sleaf = (struct lysc_node_leaf *)args[0]->val.scnodes[i].scnode;
5033 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5034 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__,
Michal Vasko69730152020-10-09 16:30:07 +02005035 lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005036 } else if (!warn_is_numeric_type(sleaf->type)) {
5037 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of numeric type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005038 }
5039 }
5040 }
5041 }
5042 set_scnode_clear_ctx(set);
5043 return rc;
5044 }
5045
5046 set_fill_number(set, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005047
5048 if (args[0]->type != LYXP_SET_NODE_SET) {
5049 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "sum(node-set)");
5050 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02005051 } else if (!args[0]->used) {
5052 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005053 }
5054
Michal Vasko5c4e5892019-11-14 12:31:38 +01005055 set_init(&set_item, set);
5056
Michal Vasko03ff5a72019-09-11 13:49:33 +02005057 set_item.type = LYXP_SET_NODE_SET;
5058 set_item.val.nodes = malloc(sizeof *set_item.val.nodes);
5059 LY_CHECK_ERR_RET(!set_item.val.nodes, LOGMEM(set->ctx), LY_EMEM);
5060
5061 set_item.used = 1;
5062 set_item.size = 1;
5063
5064 for (i = 0; i < args[0]->used; ++i) {
5065 set_item.val.nodes[0] = args[0]->val.nodes[i];
5066
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005067 rc = cast_node_set_to_string(&set_item, &str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005068 LY_CHECK_RET(rc);
5069 num = cast_string_to_number(str);
5070 free(str);
5071 set->val.num += num;
5072 }
5073
5074 free(set_item.val.nodes);
5075
5076 return LY_SUCCESS;
5077}
5078
5079/**
5080 * @brief Execute the XPath text() function (node type). Returns LYXP_SET_NODE_SET
5081 * with the text content of the nodes in the context.
5082 *
5083 * @param[in] args Array of arguments.
5084 * @param[in] arg_count Count of elements in @p args.
5085 * @param[in,out] set Context and result set at the same time.
5086 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005087 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005088 */
5089static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005090xpath_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 +02005091{
5092 uint32_t i;
5093
5094 if (options & LYXP_SCNODE_ALL) {
5095 set_scnode_clear_ctx(set);
5096 return LY_SUCCESS;
5097 }
5098
Michal Vasko03ff5a72019-09-11 13:49:33 +02005099 if (set->type != LYXP_SET_NODE_SET) {
5100 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INCTX, print_set_type(set), "text()");
5101 return LY_EVALID;
5102 }
5103
Michal Vaskod989ba02020-08-24 10:59:24 +02005104 for (i = 0; i < set->used; ) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005105 switch (set->val.nodes[i].type) {
Michal Vasko2caefc12019-11-14 16:07:56 +01005106 case LYXP_NODE_NONE:
5107 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005108 case LYXP_NODE_ELEM:
Michal Vasko03ff5a72019-09-11 13:49:33 +02005109 if (set->val.nodes[i].node->schema->nodetype & (LYS_LEAF | LYS_LEAFLIST)) {
5110 set->val.nodes[i].type = LYXP_NODE_TEXT;
5111 ++i;
5112 break;
5113 }
Radek Krejci0f969882020-08-21 16:56:47 +02005114 /* fall through */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005115 case LYXP_NODE_ROOT:
5116 case LYXP_NODE_ROOT_CONFIG:
5117 case LYXP_NODE_TEXT:
Michal Vasko9f96a052020-03-10 09:41:45 +01005118 case LYXP_NODE_META:
Michal Vasko03ff5a72019-09-11 13:49:33 +02005119 set_remove_node(set, i);
5120 break;
5121 }
5122 }
5123
5124 return LY_SUCCESS;
5125}
5126
5127/**
5128 * @brief Execute the XPath translate(string, string, string) function.
5129 * Returns LYXP_SET_STRING with the first argument with the characters
5130 * from the second argument replaced by those on the corresponding
5131 * positions in the third argument.
5132 *
5133 * @param[in] args Array of arguments.
5134 * @param[in] arg_count Count of elements in @p args.
5135 * @param[in,out] set Context and result set at the same time.
5136 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005137 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005138 */
5139static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005140xpath_translate(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005141{
5142 uint16_t i, j, new_used;
5143 char *new;
Radek Krejci857189e2020-09-01 13:26:36 +02005144 ly_bool have_removed;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005145 struct lysc_node_leaf *sleaf;
5146 LY_ERR rc = LY_SUCCESS;
5147
5148 if (options & LYXP_SCNODE_ALL) {
5149 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
5150 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5151 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 +02005152 } else if (!warn_is_string_type(sleaf->type)) {
5153 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005154 }
5155 }
5156
5157 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
5158 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5159 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 +02005160 } else if (!warn_is_string_type(sleaf->type)) {
5161 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005162 }
5163 }
5164
5165 if ((args[2]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[2]))) {
5166 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5167 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 +02005168 } else if (!warn_is_string_type(sleaf->type)) {
5169 LOGWRN(set->ctx, "Argument #3 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005170 }
5171 }
5172 set_scnode_clear_ctx(set);
5173 return rc;
5174 }
5175
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005176 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005177 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005178 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005179 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005180 rc = lyxp_set_cast(args[2], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005181 LY_CHECK_RET(rc);
5182
5183 new = malloc((strlen(args[0]->val.str) + 1) * sizeof(char));
5184 LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM);
5185 new_used = 0;
5186
5187 have_removed = 0;
5188 for (i = 0; args[0]->val.str[i]; ++i) {
Radek Krejci857189e2020-09-01 13:26:36 +02005189 ly_bool found = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005190
5191 for (j = 0; args[1]->val.str[j]; ++j) {
5192 if (args[0]->val.str[i] == args[1]->val.str[j]) {
5193 /* removing this char */
5194 if (j >= strlen(args[2]->val.str)) {
5195 have_removed = 1;
5196 found = 1;
5197 break;
5198 }
5199 /* replacing this char */
5200 new[new_used] = args[2]->val.str[j];
5201 ++new_used;
5202 found = 1;
5203 break;
5204 }
5205 }
5206
5207 /* copying this char */
5208 if (!found) {
5209 new[new_used] = args[0]->val.str[i];
5210 ++new_used;
5211 }
5212 }
5213
5214 if (have_removed) {
5215 new = ly_realloc(new, (new_used + 1) * sizeof(char));
5216 LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM);
5217 }
5218 new[new_used] = '\0';
5219
Michal Vaskod3678892020-05-21 10:06:58 +02005220 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005221 set->type = LYXP_SET_STRING;
5222 set->val.str = new;
5223
5224 return LY_SUCCESS;
5225}
5226
5227/**
5228 * @brief Execute the XPath true() function. Returns LYXP_SET_BOOLEAN
5229 * with true value.
5230 *
5231 * @param[in] args Array of arguments.
5232 * @param[in] arg_count Count of elements in @p args.
5233 * @param[in,out] set Context and result set at the same time.
5234 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005235 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005236 */
5237static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005238xpath_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 +02005239{
5240 if (options & LYXP_SCNODE_ALL) {
5241 set_scnode_clear_ctx(set);
5242 return LY_SUCCESS;
5243 }
5244
5245 set_fill_boolean(set, 1);
5246 return LY_SUCCESS;
5247}
5248
5249/*
5250 * moveto functions
5251 *
5252 * They and only they actually change the context (set).
5253 */
5254
5255/**
Michal Vasko6346ece2019-09-24 13:12:53 +02005256 * @brief Skip prefix and return corresponding model if there is a prefix. Logs directly.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005257 *
Michal Vasko2104e9f2020-03-06 08:23:25 +01005258 * XPath @p set is expected to be a (sc)node set!
5259 *
Michal Vasko6346ece2019-09-24 13:12:53 +02005260 * @param[in,out] qname Qualified node name. If includes prefix, it is skipped.
5261 * @param[in,out] qname_len Length of @p qname, is updated accordingly.
5262 * @param[in] set Set with XPath context.
5263 * @param[out] moveto_mod Expected module of a matching node.
5264 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005265 */
Michal Vasko6346ece2019-09-24 13:12:53 +02005266static LY_ERR
5267moveto_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 +02005268{
Michal Vaskoed4fcfe2020-07-08 10:38:56 +02005269 const struct lys_module *mod = NULL;
Michal Vasko6346ece2019-09-24 13:12:53 +02005270 const char *ptr;
Radek Krejci1deb5be2020-08-26 16:43:36 +02005271 size_t pref_len;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005272
Michal Vasko2104e9f2020-03-06 08:23:25 +01005273 assert((set->type == LYXP_SET_NODE_SET) || (set->type == LYXP_SET_SCNODE_SET));
5274
Michal Vasko6346ece2019-09-24 13:12:53 +02005275 if ((ptr = ly_strnchr(*qname, ':', *qname_len))) {
5276 /* specific module */
5277 pref_len = ptr - *qname;
Michal Vaskoc8a230d2020-08-14 12:17:10 +02005278 mod = ly_resolve_prefix(set->ctx, *qname, pref_len, set->format, (void *)set->local_mod);
Michal Vasko6346ece2019-09-24 13:12:53 +02005279
Michal Vasko004d3152020-06-11 19:59:22 +02005280 /* check for errors and non-implemented modules, as they are not valid */
Juraj Vijtiukd75faa62019-11-26 14:10:10 +01005281 if (!mod || !mod->implemented) {
Michal Vasko2104e9f2020-03-06 08:23:25 +01005282 if (set->type == LYXP_SET_SCNODE_SET) {
5283 LOGVAL(set->ctx, LY_VLOG_LYSC, set->ctx_scnode, LY_VCODE_XP_INMOD, pref_len, *qname);
5284 } else {
5285 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INMOD, pref_len, *qname);
5286 }
Michal Vasko6346ece2019-09-24 13:12:53 +02005287 return LY_EVALID;
5288 }
Juraj Vijtiukd75faa62019-11-26 14:10:10 +01005289
Michal Vasko6346ece2019-09-24 13:12:53 +02005290 *qname += pref_len + 1;
5291 *qname_len -= pref_len + 1;
5292 } else if (((*qname)[0] == '*') && (*qname_len == 1)) {
5293 /* all modules - special case */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005294 mod = NULL;
Michal Vasko004d3152020-06-11 19:59:22 +02005295 } else if (set->type == LYXP_SET_SCNODE_SET) {
5296 /* current node module */
5297 mod = set->ctx_scnode->module;
Michal Vasko6346ece2019-09-24 13:12:53 +02005298 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02005299 /* current node module */
5300 mod = set->ctx_node->schema->module;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005301 }
5302
Michal Vasko6346ece2019-09-24 13:12:53 +02005303 *moveto_mod = mod;
5304 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005305}
5306
5307/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02005308 * @brief Move context @p set to the root. Handles absolute path.
5309 * Result is LYXP_SET_NODE_SET.
5310 *
5311 * @param[in,out] set Set to use.
5312 * @param[in] options Xpath options.
Michal Vaskob0099a92020-08-31 14:55:23 +02005313 * @return LY_ERR value.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005314 */
Michal Vaskob0099a92020-08-31 14:55:23 +02005315static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005316moveto_root(struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005317{
Michal Vasko03ff5a72019-09-11 13:49:33 +02005318 if (!set) {
Michal Vaskob0099a92020-08-31 14:55:23 +02005319 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005320 }
5321
5322 if (options & LYXP_SCNODE_ALL) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005323 set_scnode_clear_ctx(set);
Michal Vaskob0099a92020-08-31 14:55:23 +02005324 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, NULL, set->root_type, NULL));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005325 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02005326 set->type = LYXP_SET_NODE_SET;
5327 set->used = 0;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005328 set_insert_node(set, NULL, 0, set->root_type, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005329 }
Michal Vaskob0099a92020-08-31 14:55:23 +02005330
5331 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005332}
5333
5334/**
Michal Vaskoa1424542019-11-14 16:08:52 +01005335 * @brief Check whether a node has some unresolved "when".
5336 *
5337 * @param[in] node Node to check.
5338 * @return LY_ERR value (LY_EINCOMPLETE if there are some unresolved "when")
5339 */
5340static LY_ERR
5341moveto_when_check(const struct lyd_node *node)
5342{
5343 const struct lysc_node *schema;
5344
5345 if (!node) {
5346 return LY_SUCCESS;
5347 }
5348
5349 schema = node->schema;
5350 do {
5351 if (schema->when && !(node->flags & LYD_WHEN_TRUE)) {
5352 return LY_EINCOMPLETE;
5353 }
5354 schema = schema->parent;
5355 } while (schema && (schema->nodetype & (LYS_CASE | LYS_CHOICE)));
5356
5357 return LY_SUCCESS;
5358}
5359
5360/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02005361 * @brief Check @p node as a part of NameTest processing.
5362 *
5363 * @param[in] node Node to check.
5364 * @param[in] root_type XPath root node type.
Michal Vasko6b26e742020-07-17 15:02:10 +02005365 * @param[in] context_op XPath operation parent.
Michal Vaskod3678892020-05-21 10:06:58 +02005366 * @param[in] node_name Node name in the dictionary to move to, NULL for any node.
5367 * @param[in] moveto_mod Expected module of the node, NULL for any.
Michal Vasko6346ece2019-09-24 13:12:53 +02005368 * @return LY_ERR (LY_ENOT if node does not match, LY_EINCOMPLETE on unresolved when,
5369 * LY_EINVAL if netither node nor any children match)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005370 */
5371static LY_ERR
Michal Vasko6b26e742020-07-17 15:02:10 +02005372moveto_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 +02005373 const char *node_name, const struct lys_module *moveto_mod)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005374{
5375 /* module check */
5376 if (moveto_mod && (node->schema->module != moveto_mod)) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005377 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005378 }
5379
Michal Vasko5c4e5892019-11-14 12:31:38 +01005380 /* context check */
5381 if ((root_type == LYXP_NODE_ROOT_CONFIG) && (node->schema->flags & LYS_CONFIG_R)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005382 return LY_EINVAL;
Michal Vasko6b26e742020-07-17 15:02:10 +02005383 } else if (context_op && (node->schema->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) && (node->schema != context_op)) {
5384 return LY_EINVAL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005385 }
5386
5387 /* name check */
Michal Vasko61ac2f62020-05-25 12:39:51 +02005388 if (node_name && strcmp(node_name, "*") && (node->schema->name != node_name)) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005389 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005390 }
5391
Michal Vaskoa1424542019-11-14 16:08:52 +01005392 /* when check */
5393 if (moveto_when_check(node)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005394 return LY_EINCOMPLETE;
Michal Vaskoa1424542019-11-14 16:08:52 +01005395 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005396
5397 /* match */
5398 return LY_SUCCESS;
5399}
5400
5401/**
5402 * @brief Check @p node as a part of schema NameTest processing.
5403 *
5404 * @param[in] node Schema node to check.
5405 * @param[in] root_type XPath root node type.
Michal Vasko6b26e742020-07-17 15:02:10 +02005406 * @param[in] context_op XPath operation parent.
Michal Vaskod3678892020-05-21 10:06:58 +02005407 * @param[in] node_name Node name in the dictionary to move to, NULL for any nodes.
5408 * @param[in] moveto_mod Expected module of the node, NULL for any.
Michal Vasko6346ece2019-09-24 13:12:53 +02005409 * @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 +02005410 */
5411static LY_ERR
Michal Vasko6b26e742020-07-17 15:02:10 +02005412moveto_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 +02005413 const char *node_name, const struct lys_module *moveto_mod)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005414{
Michal Vasko03ff5a72019-09-11 13:49:33 +02005415 /* module check */
Michal Vaskod3678892020-05-21 10:06:58 +02005416 if (moveto_mod && (node->module != moveto_mod)) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005417 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005418 }
5419
5420 /* context check */
5421 if ((root_type == LYXP_NODE_ROOT_CONFIG) && (node->flags & LYS_CONFIG_R)) {
5422 return LY_EINVAL;
Michal Vasko6b26e742020-07-17 15:02:10 +02005423 } else if (context_op && (node->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) && (node != context_op)) {
5424 return LY_EINVAL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005425 }
5426
5427 /* name check */
Michal Vasko61ac2f62020-05-25 12:39:51 +02005428 if (node_name && strcmp(node_name, "*") && (node->name != node_name)) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005429 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005430 }
5431
5432 /* match */
5433 return LY_SUCCESS;
5434}
5435
5436/**
Michal Vaskod3678892020-05-21 10:06:58 +02005437 * @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 +02005438 *
5439 * @param[in,out] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02005440 * @param[in] mod Matching node module, NULL for any.
5441 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005442 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
5443 */
5444static LY_ERR
Michal Vaskod3678892020-05-21 10:06:58 +02005445moveto_node(struct lyxp_set *set, const struct lys_module *mod, const char *ncname)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005446{
Michal Vaskof03ed032020-03-04 13:31:44 +01005447 uint32_t i;
Michal Vaskod3678892020-05-21 10:06:58 +02005448 const struct lyd_node *siblings, *sub;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005449 LY_ERR rc;
5450
Michal Vaskod3678892020-05-21 10:06:58 +02005451 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005452 return LY_SUCCESS;
5453 }
5454
5455 if (set->type != LYXP_SET_NODE_SET) {
5456 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
5457 return LY_EVALID;
5458 }
5459
Michal Vasko03ff5a72019-09-11 13:49:33 +02005460 for (i = 0; i < set->used; ) {
Radek Krejci857189e2020-09-01 13:26:36 +02005461 ly_bool replaced = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005462
5463 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 +01005464 assert(!set->val.nodes[i].node);
Michal Vaskod3678892020-05-21 10:06:58 +02005465
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005466 /* search in all the trees */
Michal Vaskod3678892020-05-21 10:06:58 +02005467 siblings = set->tree;
Michal Vasko5bfd4be2020-06-23 13:26:19 +02005468 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02005469 /* search in children */
Radek Krejcia1c1e542020-09-29 16:06:52 +02005470 siblings = lyd_child(set->val.nodes[i].node);
Michal Vaskod3678892020-05-21 10:06:58 +02005471 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005472
Michal Vaskod3678892020-05-21 10:06:58 +02005473 for (sub = siblings; sub; sub = sub->next) {
Michal Vasko6b26e742020-07-17 15:02:10 +02005474 rc = moveto_node_check(sub, set->root_type, set->context_op, ncname, mod);
Michal Vaskod3678892020-05-21 10:06:58 +02005475 if (rc == LY_SUCCESS) {
5476 if (!replaced) {
5477 set_replace_node(set, sub, 0, LYXP_NODE_ELEM, i);
5478 replaced = 1;
5479 } else {
5480 set_insert_node(set, sub, 0, LYXP_NODE_ELEM, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005481 }
Michal Vaskod3678892020-05-21 10:06:58 +02005482 ++i;
5483 } else if (rc == LY_EINCOMPLETE) {
5484 return rc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005485 }
5486 }
5487
5488 if (!replaced) {
5489 /* no match */
5490 set_remove_node(set, i);
5491 }
5492 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005493
5494 return LY_SUCCESS;
5495}
5496
5497/**
Michal Vaskod3678892020-05-21 10:06:58 +02005498 * @brief Move context @p set to a node using hashes. Result is LYXP_SET_NODE_SET (or LYXP_SET_EMPTY).
5499 * Context position aware.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005500 *
5501 * @param[in,out] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02005502 * @param[in] scnode Matching node schema.
Michal Vasko004d3152020-06-11 19:59:22 +02005503 * @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 +02005504 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
5505 */
5506static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02005507moveto_node_hash(struct lyxp_set *set, const struct lysc_node *scnode, const struct ly_path_predicate *predicates)
Michal Vaskod3678892020-05-21 10:06:58 +02005508{
Michal Vasko004d3152020-06-11 19:59:22 +02005509 LY_ERR ret = LY_SUCCESS;
Michal Vaskod3678892020-05-21 10:06:58 +02005510 uint32_t i;
Michal Vaskod3678892020-05-21 10:06:58 +02005511 const struct lyd_node *siblings;
Michal Vasko004d3152020-06-11 19:59:22 +02005512 struct lyd_node *sub, *inst = NULL;
Michal Vaskod3678892020-05-21 10:06:58 +02005513
Michal Vasko004d3152020-06-11 19:59:22 +02005514 assert(scnode && (!(scnode->nodetype & (LYS_LIST | LYS_LEAFLIST)) || predicates));
Michal Vaskod3678892020-05-21 10:06:58 +02005515
5516 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02005517 goto cleanup;
Michal Vaskod3678892020-05-21 10:06:58 +02005518 }
5519
5520 if (set->type != LYXP_SET_NODE_SET) {
5521 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 +02005522 ret = LY_EVALID;
5523 goto cleanup;
Michal Vaskod3678892020-05-21 10:06:58 +02005524 }
5525
5526 /* context check for all the nodes since we have the schema node */
5527 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (scnode->flags & LYS_CONFIG_R)) {
5528 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02005529 goto cleanup;
Michal Vasko69730152020-10-09 16:30:07 +02005530 } else if (set->context_op && (scnode->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) &&
5531 (scnode != set->context_op)) {
Michal Vasko6b26e742020-07-17 15:02:10 +02005532 lyxp_set_free_content(set);
5533 goto cleanup;
Michal Vasko004d3152020-06-11 19:59:22 +02005534 }
5535
5536 /* create specific data instance if needed */
5537 if (scnode->nodetype == LYS_LIST) {
5538 LY_CHECK_GOTO(ret = lyd_create_list(scnode, predicates, &inst), cleanup);
5539 } else if (scnode->nodetype == LYS_LEAFLIST) {
5540 LY_CHECK_GOTO(ret = lyd_create_term2(scnode, &predicates[0].value, &inst), cleanup);
Michal Vaskod3678892020-05-21 10:06:58 +02005541 }
5542
5543 for (i = 0; i < set->used; ) {
Michal Vaskod3678892020-05-21 10:06:58 +02005544 siblings = NULL;
5545
5546 if ((set->val.nodes[i].type == LYXP_NODE_ROOT_CONFIG) || (set->val.nodes[i].type == LYXP_NODE_ROOT)) {
5547 assert(!set->val.nodes[i].node);
5548
5549 /* search in all the trees */
5550 siblings = set->tree;
5551 } else if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
5552 /* search in children */
Radek Krejcia1c1e542020-09-29 16:06:52 +02005553 siblings = lyd_child(set->val.nodes[i].node);
Michal Vaskod3678892020-05-21 10:06:58 +02005554 }
5555
5556 /* find the node using hashes */
Michal Vasko004d3152020-06-11 19:59:22 +02005557 if (inst) {
5558 lyd_find_sibling_first(siblings, inst, &sub);
Michal Vaskod3678892020-05-21 10:06:58 +02005559 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02005560 lyd_find_sibling_val(siblings, scnode, NULL, 0, &sub);
Michal Vaskod3678892020-05-21 10:06:58 +02005561 }
5562
5563 /* when check */
5564 if (sub && moveto_when_check(sub)) {
Michal Vasko004d3152020-06-11 19:59:22 +02005565 ret = LY_EINCOMPLETE;
5566 goto cleanup;
Michal Vaskod3678892020-05-21 10:06:58 +02005567 }
5568
5569 if (sub) {
5570 /* pos filled later */
Michal Vaskocb1b7c02020-07-03 13:38:12 +02005571 set_replace_node(set, sub, 0, LYXP_NODE_ELEM, i);
Michal Vaskod3678892020-05-21 10:06:58 +02005572 ++i;
Michal Vaskocb1b7c02020-07-03 13:38:12 +02005573 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02005574 /* no match */
5575 set_remove_node(set, i);
5576 }
5577 }
5578
Michal Vasko004d3152020-06-11 19:59:22 +02005579cleanup:
5580 lyd_free_tree(inst);
5581 return ret;
Michal Vaskod3678892020-05-21 10:06:58 +02005582}
5583
5584/**
5585 * @brief Move context @p set to a schema node. Result is LYXP_SET_SCNODE_SET (or LYXP_SET_EMPTY).
5586 *
5587 * @param[in,out] set Set to use.
5588 * @param[in] mod Matching node module, NULL for any.
5589 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005590 * @param[in] options XPath options.
5591 * @return LY_ERR
5592 */
5593static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005594moveto_scnode(struct lyxp_set *set, const struct lys_module *mod, const char *ncname, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005595{
Radek Krejci857189e2020-09-01 13:26:36 +02005596 ly_bool temp_ctx = 0;
Radek Krejci1deb5be2020-08-26 16:43:36 +02005597 uint32_t getnext_opts;
5598 uint32_t orig_used, i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005599 uint32_t mod_idx;
Michal Vasko519fd602020-05-26 12:17:39 +02005600 const struct lysc_node *iter, *start_parent;
Michal Vasko9e9f26d2020-10-12 16:31:33 +02005601 const struct lys_module *moveto_mod;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005602
Michal Vaskod3678892020-05-21 10:06:58 +02005603 if (!set) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005604 return LY_SUCCESS;
5605 }
5606
5607 if (set->type != LYXP_SET_SCNODE_SET) {
Michal Vaskof6e51882019-12-16 09:59:45 +01005608 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 +02005609 return LY_EVALID;
5610 }
5611
Michal Vaskocafad9d2019-11-07 15:20:03 +01005612 /* getnext opts */
5613 getnext_opts = LYS_GETNEXT_NOSTATECHECK;
5614 if (options & LYXP_SCNODE_OUTPUT) {
5615 getnext_opts |= LYS_GETNEXT_OUTPUT;
5616 }
5617
Michal Vasko03ff5a72019-09-11 13:49:33 +02005618 orig_used = set->used;
5619 for (i = 0; i < orig_used; ++i) {
Radek Krejciaa6b53f2020-08-27 15:19:03 +02005620 uint32_t idx;
5621
Michal Vasko03ff5a72019-09-11 13:49:33 +02005622 if (set->val.scnodes[i].in_ctx != 1) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01005623 if (set->val.scnodes[i].in_ctx != -2) {
5624 continue;
5625 }
5626
5627 /* remember context node */
5628 set->val.scnodes[i].in_ctx = -1;
Michal Vaskoec4df482019-12-16 10:02:18 +01005629 } else {
5630 set->val.scnodes[i].in_ctx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005631 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005632
5633 start_parent = set->val.scnodes[i].scnode;
5634
5635 if ((set->val.scnodes[i].type == LYXP_NODE_ROOT_CONFIG) || (set->val.scnodes[i].type == LYXP_NODE_ROOT)) {
Michal Vasko9e9f26d2020-10-12 16:31:33 +02005636 /* it can actually be in any module, it's all <running>, and even if it's mod (if set),
5637 * it can be in a top-level augment (the root node itself is useless in this case) */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005638 mod_idx = 0;
Michal Vasko9e9f26d2020-10-12 16:31:33 +02005639 moveto_mod = mod;
5640 while ((mod = (struct lys_module *)ly_ctx_get_module_iter(set->ctx, &mod_idx))) {
Michal Vasko519fd602020-05-26 12:17:39 +02005641 iter = NULL;
Michal Vasko509de4d2019-12-10 14:51:30 +01005642 /* module may not be implemented */
Michal Vasko519fd602020-05-26 12:17:39 +02005643 while (mod->implemented && (iter = lys_getnext(iter, NULL, mod->compiled, getnext_opts))) {
Michal Vasko9e9f26d2020-10-12 16:31:33 +02005644 if (!moveto_scnode_check(iter, set->root_type, set->context_op, ncname, moveto_mod)) {
Radek Krejciaa6b53f2020-08-27 15:19:03 +02005645 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, iter, LYXP_NODE_ELEM, &idx));
5646
Michal Vasko03ff5a72019-09-11 13:49:33 +02005647 /* we need to prevent these nodes from being considered in this moveto */
Radek Krejciaa6b53f2020-08-27 15:19:03 +02005648 if ((idx < orig_used) && (idx > i)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005649 set->val.scnodes[idx].in_ctx = 2;
5650 temp_ctx = 1;
5651 }
5652 }
5653 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005654 }
5655
Michal Vasko519fd602020-05-26 12:17:39 +02005656 } else if (set->val.scnodes[i].type == LYXP_NODE_ELEM) {
5657 iter = NULL;
Michal Vasko9e9f26d2020-10-12 16:31:33 +02005658 moveto_mod = mod ? mod : set->local_mod;
Michal Vasko519fd602020-05-26 12:17:39 +02005659 while ((iter = lys_getnext(iter, start_parent, NULL, getnext_opts))) {
Michal Vasko9e9f26d2020-10-12 16:31:33 +02005660 if (!moveto_scnode_check(iter, set->root_type, set->context_op, ncname, moveto_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 Vasko69730152020-10-09 16:30:07 +02006154 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 Vasko69730152020-10-09 16:30:07 +02006691 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02006692 ++(*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 Vasko69730152020-10-09 16:30:07 +02006812 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02006813 ++(*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 Vasko69730152020-10-09 16:30:07 +02006836 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02006837 ++(*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 Vasko69730152020-10-09 16:30:07 +02006917 LY_PATH_PREFIX_OPTIONAL, LY_PATH_PRED_SIMPLE, &exp2), cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02006918
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,
Michal Vasko69730152020-10-09 16:30:07 +02006921 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 Vasko69730152020-10-09 16:30:07 +02006962 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02006963 ++(*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);
Michal Vasko69730152020-10-09 16:30:07 +02006981 } else if ((set->val.nodes[i].type == LYXP_NODE_ELEM) &&
6982 (!scnode || (lysc_data_parent(scnode) != set->val.nodes[i].node->schema))) {
Michal Vaskod3678892020-05-21 10:06:58 +02006983 /* 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) {
Michal Vasko9e9f26d2020-10-12 16:31:33 +02007051 const struct lysc_node *real_ctx_scnode = set->ctx_scnode->nodetype & (LYS_CHOICE | LYS_CASE) ?
7052 lysc_data_parent(set->ctx_scnode) : set->ctx_scnode;
7053 path = lysc_path(real_ctx_scnode, LYSC_PATH_LOG, NULL, 0);
Michal Vaskod3678892020-05-21 10:06:58 +02007054 LOGWRN(set->ctx, "Schema node \"%.*s\" not found (%.*s) with context node \"%s\".",
Michal Vasko69730152020-10-09 16:30:07 +02007055 ncname_len, ncname, ncname - exp->expr, exp->expr, path);
Michal Vaskod3678892020-05-21 10:06:58 +02007056 free(path);
7057 }
7058 } else {
7059 if (all_desc) {
Michal Vasko004d3152020-06-11 19:59:22 +02007060 rc = moveto_node_alldesc(set, moveto_mod, ncname_dict);
Michal Vaskod3678892020-05-21 10:06:58 +02007061 } else {
7062 if (scnode) {
7063 /* we can find the nodes using hashes */
Michal Vasko004d3152020-06-11 19:59:22 +02007064 rc = moveto_node_hash(set, scnode, predicates);
Michal Vaskod3678892020-05-21 10:06:58 +02007065 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007066 rc = moveto_node(set, moveto_mod, ncname_dict);
Michal Vaskod3678892020-05-21 10:06:58 +02007067 }
7068 }
7069 LY_CHECK_GOTO(rc, cleanup);
7070 }
7071 }
7072
7073 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007074 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
7075 rc = eval_predicate(exp, tok_idx, set, options, 1);
Michal Vaskod3678892020-05-21 10:06:58 +02007076 LY_CHECK_RET(rc);
7077 }
7078
7079cleanup:
Michal Vaskodb51a8d2020-05-27 15:22:29 +02007080 if (set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007081 lydict_remove(set->ctx, ncname_dict);
7082 ly_path_predicates_free(set->ctx, pred_type, scnode, predicates);
Michal Vaskodb51a8d2020-05-27 15:22:29 +02007083 }
Michal Vaskod3678892020-05-21 10:06:58 +02007084 return rc;
7085}
7086
7087/**
7088 * @brief Evaluate NodeType and any following Predicates. Logs directly on error.
7089 *
7090 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
7091 * [6] NodeTest ::= NameTest | NodeType '(' ')'
7092 * [8] NodeType ::= 'text' | 'node'
7093 *
7094 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007095 * @param[in] tok_idx Position in the expression @p exp.
Michal Vaskod3678892020-05-21 10:06:58 +02007096 * @param[in] attr_axis Whether to search attributes or standard nodes.
7097 * @param[in] all_desc Whether to search all the descendants or children only.
7098 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7099 * @param[in] options XPath options.
7100 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7101 */
7102static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02007103eval_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 +02007104 struct lyxp_set *set, uint32_t options)
Michal Vaskod3678892020-05-21 10:06:58 +02007105{
7106 LY_ERR rc;
7107
7108 /* TODO */
7109 (void)attr_axis;
7110 (void)all_desc;
7111
7112 if (set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007113 assert(exp->tok_len[*tok_idx] == 4);
Michal Vaskod3678892020-05-21 10:06:58 +02007114 if (set->type == LYXP_SET_SCNODE_SET) {
7115 set_scnode_clear_ctx(set);
7116 /* just for the debug message below */
7117 set = NULL;
7118 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007119 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "node", 4)) {
Michal Vaskod3678892020-05-21 10:06:58 +02007120 rc = xpath_node(NULL, 0, set, options);
7121 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007122 assert(!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "text", 4));
Michal Vaskod3678892020-05-21 10:06:58 +02007123 rc = xpath_text(NULL, 0, set, options);
7124 }
7125 LY_CHECK_RET(rc);
7126 }
7127 }
7128 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007129 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007130 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007131
7132 /* '(' */
Michal Vasko004d3152020-06-11 19:59:22 +02007133 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR1);
Michal Vaskod3678892020-05-21 10:06:58 +02007134 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007135 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007136 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007137
7138 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02007139 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR2);
Michal Vaskod3678892020-05-21 10:06:58 +02007140 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007141 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007142 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007143
7144 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007145 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
7146 rc = eval_predicate(exp, tok_idx, set, options, 1);
Michal Vaskod3678892020-05-21 10:06:58 +02007147 LY_CHECK_RET(rc);
7148 }
7149
7150 return LY_SUCCESS;
7151}
7152
7153/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02007154 * @brief Evaluate RelativeLocationPath. Logs directly on error.
7155 *
7156 * [4] RelativeLocationPath ::= Step | RelativeLocationPath '/' Step | RelativeLocationPath '//' Step
7157 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
Michal Vaskod3678892020-05-21 10:06:58 +02007158 * [6] NodeTest ::= NameTest | NodeType '(' ')'
Michal Vasko03ff5a72019-09-11 13:49:33 +02007159 *
7160 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007161 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007162 * @param[in] all_desc Whether to search all the descendants or children only.
7163 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7164 * @param[in] options XPath options.
7165 * @return LY_ERR (YL_EINCOMPLETE on unresolved when)
7166 */
7167static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02007168eval_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 +02007169{
Radek Krejci857189e2020-09-01 13:26:36 +02007170 ly_bool attr_axis;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007171 LY_ERR rc;
7172
7173 goto step;
7174 do {
7175 /* evaluate '/' or '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02007176 if (exp->tok_len[*tok_idx] == 1) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007177 all_desc = 0;
7178 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007179 assert(exp->tok_len[*tok_idx] == 2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007180 all_desc = 1;
7181 }
7182 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007183 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007184 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007185
7186step:
Michal Vaskod3678892020-05-21 10:06:58 +02007187 /* evaluate abbreviated axis '@'? if any */
Michal Vasko004d3152020-06-11 19:59:22 +02007188 if (exp->tokens[*tok_idx] == LYXP_TOKEN_AT) {
Michal Vaskod3678892020-05-21 10:06:58 +02007189 attr_axis = 1;
7190
7191 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007192 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007193 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007194 } else {
7195 attr_axis = 0;
7196 }
7197
Michal Vasko03ff5a72019-09-11 13:49:33 +02007198 /* Step */
Michal Vasko004d3152020-06-11 19:59:22 +02007199 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007200 case LYXP_TOKEN_DOT:
7201 /* evaluate '.' */
7202 if (set && (options & LYXP_SCNODE_ALL)) {
7203 rc = moveto_scnode_self(set, all_desc, options);
7204 } else {
7205 rc = moveto_self(set, all_desc, options);
7206 }
7207 LY_CHECK_RET(rc);
7208 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007209 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007210 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007211 break;
7212
7213 case LYXP_TOKEN_DDOT:
7214 /* evaluate '..' */
7215 if (set && (options & LYXP_SCNODE_ALL)) {
7216 rc = moveto_scnode_parent(set, all_desc, options);
7217 } else {
7218 rc = moveto_parent(set, all_desc, options);
7219 }
7220 LY_CHECK_RET(rc);
7221 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007222 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007223 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007224 break;
7225
Michal Vasko03ff5a72019-09-11 13:49:33 +02007226 case LYXP_TOKEN_NAMETEST:
Michal Vaskod3678892020-05-21 10:06:58 +02007227 /* evaluate NameTest Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007228 rc = eval_name_test_with_predicate(exp, tok_idx, attr_axis, all_desc, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007229 LY_CHECK_RET(rc);
Michal Vaskod3678892020-05-21 10:06:58 +02007230 break;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007231
Michal Vaskod3678892020-05-21 10:06:58 +02007232 case LYXP_TOKEN_NODETYPE:
7233 /* evaluate NodeType Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007234 rc = eval_node_type_with_predicate(exp, tok_idx, attr_axis, all_desc, set, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007235 LY_CHECK_RET(rc);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007236 break;
7237
7238 default:
Michal Vasko02a77382019-09-12 11:47:35 +02007239 LOGINT_RET(set ? set->ctx : NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007240 }
Michal Vasko004d3152020-06-11 19:59:22 +02007241 } while (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007242
7243 return LY_SUCCESS;
7244}
7245
7246/**
7247 * @brief Evaluate AbsoluteLocationPath. Logs directly on error.
7248 *
7249 * [3] AbsoluteLocationPath ::= '/' RelativeLocationPath? | '//' RelativeLocationPath
7250 *
7251 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007252 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007253 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7254 * @param[in] options XPath options.
7255 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7256 */
7257static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02007258eval_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 +02007259{
Radek Krejci857189e2020-09-01 13:26:36 +02007260 ly_bool all_desc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007261
7262 if (set) {
7263 /* no matter what tokens follow, we need to be at the root */
Michal Vaskob0099a92020-08-31 14:55:23 +02007264 LY_CHECK_RET(moveto_root(set, options));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007265 }
7266
7267 /* '/' RelativeLocationPath? */
Michal Vasko004d3152020-06-11 19:59:22 +02007268 if (exp->tok_len[*tok_idx] == 1) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007269 /* evaluate '/' - deferred */
7270 all_desc = 0;
7271 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007272 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007273 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007274
Michal Vasko004d3152020-06-11 19:59:22 +02007275 if (lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_NONE)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007276 return LY_SUCCESS;
7277 }
Michal Vasko004d3152020-06-11 19:59:22 +02007278 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007279 case LYXP_TOKEN_DOT:
7280 case LYXP_TOKEN_DDOT:
7281 case LYXP_TOKEN_AT:
7282 case LYXP_TOKEN_NAMETEST:
7283 case LYXP_TOKEN_NODETYPE:
Michal Vaskob0099a92020-08-31 14:55:23 +02007284 LY_CHECK_RET(eval_relative_location_path(exp, tok_idx, all_desc, set, options));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007285 break;
7286 default:
7287 break;
7288 }
7289
Michal Vasko03ff5a72019-09-11 13:49:33 +02007290 } else {
Radek Krejcif6a11002020-08-21 13:29:07 +02007291 /* '//' RelativeLocationPath */
Michal Vasko03ff5a72019-09-11 13:49:33 +02007292 /* evaluate '//' - deferred so as not to waste memory by remembering all the nodes */
7293 all_desc = 1;
7294 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007295 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007296 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007297
Michal Vaskob0099a92020-08-31 14:55:23 +02007298 LY_CHECK_RET(eval_relative_location_path(exp, tok_idx, all_desc, set, options));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007299 }
7300
7301 return LY_SUCCESS;
7302}
7303
7304/**
7305 * @brief Evaluate FunctionCall. Logs directly on error.
7306 *
Michal Vaskod3678892020-05-21 10:06:58 +02007307 * [11] FunctionCall ::= FunctionName '(' ( Expr ( ',' Expr )* )? ')'
Michal Vasko03ff5a72019-09-11 13:49:33 +02007308 *
7309 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007310 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007311 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7312 * @param[in] options XPath options.
7313 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7314 */
7315static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02007316eval_function_call(struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007317{
7318 LY_ERR rc;
Michal Vasko69730152020-10-09 16:30:07 +02007319
Radek Krejci1deb5be2020-08-26 16:43:36 +02007320 LY_ERR (*xpath_func)(struct lyxp_set **, uint16_t, struct lyxp_set *, uint32_t) = NULL;
Michal Vasko0cbf54f2019-12-16 10:01:06 +01007321 uint16_t arg_count = 0, i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007322 struct lyxp_set **args = NULL, **args_aux;
7323
7324 if (set) {
7325 /* FunctionName */
Michal Vasko004d3152020-06-11 19:59:22 +02007326 switch (exp->tok_len[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007327 case 3:
Michal Vasko004d3152020-06-11 19:59:22 +02007328 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "not", 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007329 xpath_func = &xpath_not;
Michal Vasko004d3152020-06-11 19:59:22 +02007330 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "sum", 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007331 xpath_func = &xpath_sum;
7332 }
7333 break;
7334 case 4:
Michal Vasko004d3152020-06-11 19:59:22 +02007335 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "lang", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007336 xpath_func = &xpath_lang;
Michal Vasko004d3152020-06-11 19:59:22 +02007337 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "last", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007338 xpath_func = &xpath_last;
Michal Vasko004d3152020-06-11 19:59:22 +02007339 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "name", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007340 xpath_func = &xpath_name;
Michal Vasko004d3152020-06-11 19:59:22 +02007341 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "true", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007342 xpath_func = &xpath_true;
7343 }
7344 break;
7345 case 5:
Michal Vasko004d3152020-06-11 19:59:22 +02007346 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "count", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007347 xpath_func = &xpath_count;
Michal Vasko004d3152020-06-11 19:59:22 +02007348 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "false", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007349 xpath_func = &xpath_false;
Michal Vasko004d3152020-06-11 19:59:22 +02007350 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "floor", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007351 xpath_func = &xpath_floor;
Michal Vasko004d3152020-06-11 19:59:22 +02007352 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "round", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007353 xpath_func = &xpath_round;
Michal Vasko004d3152020-06-11 19:59:22 +02007354 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "deref", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007355 xpath_func = &xpath_deref;
7356 }
7357 break;
7358 case 6:
Michal Vasko004d3152020-06-11 19:59:22 +02007359 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "concat", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007360 xpath_func = &xpath_concat;
Michal Vasko004d3152020-06-11 19:59:22 +02007361 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "number", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007362 xpath_func = &xpath_number;
Michal Vasko004d3152020-06-11 19:59:22 +02007363 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007364 xpath_func = &xpath_string;
7365 }
7366 break;
7367 case 7:
Michal Vasko004d3152020-06-11 19:59:22 +02007368 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "boolean", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007369 xpath_func = &xpath_boolean;
Michal Vasko004d3152020-06-11 19:59:22 +02007370 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "ceiling", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007371 xpath_func = &xpath_ceiling;
Michal Vasko004d3152020-06-11 19:59:22 +02007372 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "current", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007373 xpath_func = &xpath_current;
7374 }
7375 break;
7376 case 8:
Michal Vasko004d3152020-06-11 19:59:22 +02007377 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "contains", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007378 xpath_func = &xpath_contains;
Michal Vasko004d3152020-06-11 19:59:22 +02007379 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "position", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007380 xpath_func = &xpath_position;
Michal Vasko004d3152020-06-11 19:59:22 +02007381 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "re-match", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007382 xpath_func = &xpath_re_match;
7383 }
7384 break;
7385 case 9:
Michal Vasko004d3152020-06-11 19:59:22 +02007386 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring", 9)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007387 xpath_func = &xpath_substring;
Michal Vasko004d3152020-06-11 19:59:22 +02007388 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "translate", 9)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007389 xpath_func = &xpath_translate;
7390 }
7391 break;
7392 case 10:
Michal Vasko004d3152020-06-11 19:59:22 +02007393 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "local-name", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007394 xpath_func = &xpath_local_name;
Michal Vasko004d3152020-06-11 19:59:22 +02007395 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "enum-value", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007396 xpath_func = &xpath_enum_value;
Michal Vasko004d3152020-06-11 19:59:22 +02007397 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "bit-is-set", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007398 xpath_func = &xpath_bit_is_set;
7399 }
7400 break;
7401 case 11:
Michal Vasko004d3152020-06-11 19:59:22 +02007402 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "starts-with", 11)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007403 xpath_func = &xpath_starts_with;
7404 }
7405 break;
7406 case 12:
Michal Vasko004d3152020-06-11 19:59:22 +02007407 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from", 12)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007408 xpath_func = &xpath_derived_from;
7409 }
7410 break;
7411 case 13:
Michal Vasko004d3152020-06-11 19:59:22 +02007412 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "namespace-uri", 13)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007413 xpath_func = &xpath_namespace_uri;
Michal Vasko004d3152020-06-11 19:59:22 +02007414 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string-length", 13)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007415 xpath_func = &xpath_string_length;
7416 }
7417 break;
7418 case 15:
Michal Vasko004d3152020-06-11 19:59:22 +02007419 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "normalize-space", 15)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007420 xpath_func = &xpath_normalize_space;
Michal Vasko004d3152020-06-11 19:59:22 +02007421 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-after", 15)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007422 xpath_func = &xpath_substring_after;
7423 }
7424 break;
7425 case 16:
Michal Vasko004d3152020-06-11 19:59:22 +02007426 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-before", 16)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007427 xpath_func = &xpath_substring_before;
7428 }
7429 break;
7430 case 20:
Michal Vasko004d3152020-06-11 19:59:22 +02007431 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from-or-self", 20)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007432 xpath_func = &xpath_derived_from_or_self;
7433 }
7434 break;
7435 }
7436
7437 if (!xpath_func) {
Michal Vasko004d3152020-06-11 19:59:22 +02007438 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 +02007439 return LY_EVALID;
7440 }
7441 }
7442
7443 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007444 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007445 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007446
7447 /* '(' */
Michal Vasko004d3152020-06-11 19:59:22 +02007448 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007449 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007450 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007451 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007452
7453 /* ( Expr ( ',' Expr )* )? */
Michal Vasko004d3152020-06-11 19:59:22 +02007454 if (exp->tokens[*tok_idx] != LYXP_TOKEN_PAR2) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007455 if (set) {
7456 args = malloc(sizeof *args);
7457 LY_CHECK_ERR_GOTO(!args, LOGMEM(set->ctx); rc = LY_EMEM, cleanup);
7458 arg_count = 1;
7459 args[0] = set_copy(set);
7460 if (!args[0]) {
7461 rc = LY_EMEM;
7462 goto cleanup;
7463 }
7464
Michal Vasko004d3152020-06-11 19:59:22 +02007465 rc = eval_expr_select(exp, tok_idx, 0, args[0], options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007466 LY_CHECK_GOTO(rc, cleanup);
7467 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007468 rc = eval_expr_select(exp, tok_idx, 0, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007469 LY_CHECK_GOTO(rc, cleanup);
7470 }
7471 }
Michal Vasko004d3152020-06-11 19:59:22 +02007472 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_COMMA)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007473 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007474 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007475 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007476
7477 if (set) {
7478 ++arg_count;
7479 args_aux = realloc(args, arg_count * sizeof *args);
7480 LY_CHECK_ERR_GOTO(!args_aux, arg_count--; LOGMEM(set->ctx); rc = LY_EMEM, cleanup);
7481 args = args_aux;
7482 args[arg_count - 1] = set_copy(set);
7483 if (!args[arg_count - 1]) {
7484 rc = LY_EMEM;
7485 goto cleanup;
7486 }
7487
Michal Vasko004d3152020-06-11 19:59:22 +02007488 rc = eval_expr_select(exp, tok_idx, 0, args[arg_count - 1], options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007489 LY_CHECK_GOTO(rc, cleanup);
7490 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007491 rc = eval_expr_select(exp, tok_idx, 0, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007492 LY_CHECK_GOTO(rc, cleanup);
7493 }
7494 }
7495
7496 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02007497 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007498 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007499 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007500 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007501
7502 if (set) {
7503 /* evaluate function */
7504 rc = xpath_func(args, arg_count, set, options);
7505
7506 if (options & LYXP_SCNODE_ALL) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007507 /* merge all nodes from arg evaluations */
7508 for (i = 0; i < arg_count; ++i) {
7509 set_scnode_clear_ctx(args[i]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01007510 lyxp_set_scnode_merge(set, args[i]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007511 }
7512 }
7513 } else {
7514 rc = LY_SUCCESS;
7515 }
7516
7517cleanup:
7518 for (i = 0; i < arg_count; ++i) {
7519 lyxp_set_free(args[i]);
7520 }
7521 free(args);
7522
7523 return rc;
7524}
7525
7526/**
7527 * @brief Evaluate Number. Logs directly on error.
7528 *
7529 * @param[in] ctx Context for errors.
7530 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007531 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007532 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7533 * @return LY_ERR
7534 */
7535static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007536eval_number(struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007537{
7538 long double num;
7539 char *endptr;
7540
7541 if (set) {
7542 errno = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02007543 num = strtold(&exp->expr[exp->tok_pos[*tok_idx]], &endptr);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007544 if (errno) {
Michal Vasko004d3152020-06-11 19:59:22 +02007545 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 +02007546 LOGVAL(ctx, LY_VLOG_LYD, set->ctx_node, LYVE_XPATH, "Failed to convert \"%.*s\" into a long double (%s).",
Michal Vasko69730152020-10-09 16:30:07 +02007547 exp->tok_len[*tok_idx], &exp->expr[exp->tok_pos[*tok_idx]], strerror(errno));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007548 return LY_EVALID;
Michal Vasko004d3152020-06-11 19:59:22 +02007549 } else if (endptr - &exp->expr[exp->tok_pos[*tok_idx]] != exp->tok_len[*tok_idx]) {
7550 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 +02007551 LOGVAL(ctx, LY_VLOG_LYD, set->ctx_node, LYVE_XPATH, "Failed to convert \"%.*s\" into a long double.",
Michal Vasko69730152020-10-09 16:30:07 +02007552 exp->tok_len[*tok_idx], &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007553 return LY_EVALID;
7554 }
7555
7556 set_fill_number(set, num);
7557 }
7558
7559 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007560 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007561 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007562 return LY_SUCCESS;
7563}
7564
7565/**
7566 * @brief Evaluate PathExpr. Logs directly on error.
7567 *
Michal Vaskod3678892020-05-21 10:06:58 +02007568 * [12] PathExpr ::= LocationPath | PrimaryExpr Predicate*
Michal Vasko03ff5a72019-09-11 13:49:33 +02007569 * | PrimaryExpr Predicate* '/' RelativeLocationPath
7570 * | PrimaryExpr Predicate* '//' RelativeLocationPath
7571 * [2] LocationPath ::= RelativeLocationPath | AbsoluteLocationPath
Michal Vaskod3678892020-05-21 10:06:58 +02007572 * [10] PrimaryExpr ::= '(' Expr ')' | Literal | Number | FunctionCall
Michal Vasko03ff5a72019-09-11 13:49:33 +02007573 *
7574 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007575 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007576 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7577 * @param[in] options XPath options.
7578 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7579 */
7580static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02007581eval_path_expr(struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007582{
Radek Krejci857189e2020-09-01 13:26:36 +02007583 ly_bool all_desc, parent_pos_pred;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007584 LY_ERR rc;
7585
Michal Vasko004d3152020-06-11 19:59:22 +02007586 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007587 case LYXP_TOKEN_PAR1:
7588 /* '(' Expr ')' */
7589
7590 /* '(' */
7591 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007592 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007593 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007594
7595 /* Expr */
Michal Vasko004d3152020-06-11 19:59:22 +02007596 rc = eval_expr_select(exp, tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007597 LY_CHECK_RET(rc);
7598
7599 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02007600 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007601 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007602 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007603 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007604
7605 parent_pos_pred = 0;
7606 goto predicate;
7607
7608 case LYXP_TOKEN_DOT:
7609 case LYXP_TOKEN_DDOT:
7610 case LYXP_TOKEN_AT:
7611 case LYXP_TOKEN_NAMETEST:
7612 case LYXP_TOKEN_NODETYPE:
7613 /* RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02007614 rc = eval_relative_location_path(exp, tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007615 LY_CHECK_RET(rc);
7616 break;
7617
7618 case LYXP_TOKEN_FUNCNAME:
7619 /* FunctionCall */
7620 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007621 rc = eval_function_call(exp, tok_idx, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007622 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007623 rc = eval_function_call(exp, tok_idx, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007624 }
7625 LY_CHECK_RET(rc);
7626
7627 parent_pos_pred = 1;
7628 goto predicate;
7629
Michal Vasko3e48bf32020-06-01 08:39:07 +02007630 case LYXP_TOKEN_OPER_PATH:
7631 case LYXP_TOKEN_OPER_RPATH:
Michal Vasko03ff5a72019-09-11 13:49:33 +02007632 /* AbsoluteLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02007633 rc = eval_absolute_location_path(exp, tok_idx, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007634 LY_CHECK_RET(rc);
7635 break;
7636
7637 case LYXP_TOKEN_LITERAL:
7638 /* Literal */
7639 if (!set || (options & LYXP_SCNODE_ALL)) {
7640 if (set) {
7641 set_scnode_clear_ctx(set);
7642 }
Michal Vasko004d3152020-06-11 19:59:22 +02007643 eval_literal(exp, tok_idx, NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007644 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007645 eval_literal(exp, tok_idx, set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007646 }
7647
7648 parent_pos_pred = 1;
7649 goto predicate;
7650
7651 case LYXP_TOKEN_NUMBER:
7652 /* Number */
7653 if (!set || (options & LYXP_SCNODE_ALL)) {
7654 if (set) {
7655 set_scnode_clear_ctx(set);
7656 }
Michal Vasko004d3152020-06-11 19:59:22 +02007657 rc = eval_number(NULL, exp, tok_idx, NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007658 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007659 rc = eval_number(set->ctx, exp, tok_idx, set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007660 }
7661 LY_CHECK_RET(rc);
7662
7663 parent_pos_pred = 1;
7664 goto predicate;
7665
7666 default:
Michal Vasko004d3152020-06-11 19:59:22 +02007667 LOGVAL(set->ctx, LY_VLOG_LYD, set->ctx_node, LY_VCODE_XP_INTOK, lyxp_print_token(exp->tokens[*tok_idx]),
Michal Vasko69730152020-10-09 16:30:07 +02007668 &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007669 return LY_EVALID;
7670 }
7671
7672 return LY_SUCCESS;
7673
7674predicate:
7675 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007676 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
7677 rc = eval_predicate(exp, tok_idx, set, options, parent_pos_pred);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007678 LY_CHECK_RET(rc);
7679 }
7680
7681 /* ('/' or '//') RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02007682 if (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007683
7684 /* evaluate '/' or '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02007685 if (exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_PATH) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007686 all_desc = 0;
7687 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007688 all_desc = 1;
7689 }
7690
7691 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007692 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007693 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007694
Michal Vasko004d3152020-06-11 19:59:22 +02007695 rc = eval_relative_location_path(exp, tok_idx, all_desc, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007696 LY_CHECK_RET(rc);
7697 }
7698
7699 return LY_SUCCESS;
7700}
7701
7702/**
7703 * @brief Evaluate UnionExpr. Logs directly on error.
7704 *
Michal Vaskod3678892020-05-21 10:06:58 +02007705 * [20] UnionExpr ::= PathExpr | UnionExpr '|' PathExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02007706 *
7707 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007708 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007709 * @param[in] repeat How many times this expression is repeated.
7710 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7711 * @param[in] options XPath options.
7712 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7713 */
7714static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02007715eval_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 +02007716{
7717 LY_ERR rc = LY_SUCCESS;
7718 struct lyxp_set orig_set, set2;
7719 uint16_t i;
7720
7721 assert(repeat);
7722
7723 set_init(&orig_set, set);
7724 set_init(&set2, set);
7725
7726 set_fill_set(&orig_set, set);
7727
Michal Vasko004d3152020-06-11 19:59:22 +02007728 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNION, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007729 LY_CHECK_GOTO(rc, cleanup);
7730
7731 /* ('|' PathExpr)* */
7732 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02007733 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_UNI);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007734 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007735 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007736 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007737
7738 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007739 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNION, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007740 LY_CHECK_GOTO(rc, cleanup);
7741 continue;
7742 }
7743
7744 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02007745 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNION, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007746 LY_CHECK_GOTO(rc, cleanup);
7747
7748 /* eval */
7749 if (options & LYXP_SCNODE_ALL) {
Michal Vaskoecd62de2019-11-13 12:35:11 +01007750 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007751 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007752 rc = moveto_union(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007753 LY_CHECK_GOTO(rc, cleanup);
7754 }
7755 }
7756
7757cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02007758 lyxp_set_free_content(&orig_set);
7759 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007760 return rc;
7761}
7762
7763/**
7764 * @brief Evaluate UnaryExpr. Logs directly on error.
7765 *
Michal Vaskod3678892020-05-21 10:06:58 +02007766 * [19] UnaryExpr ::= UnionExpr | '-' UnaryExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02007767 *
7768 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007769 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007770 * @param[in] repeat How many times this expression is repeated.
7771 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7772 * @param[in] options XPath options.
7773 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7774 */
7775static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02007776eval_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 +02007777{
7778 LY_ERR rc;
7779 uint16_t this_op, i;
7780
7781 assert(repeat);
7782
7783 /* ('-')+ */
Michal Vasko004d3152020-06-11 19:59:22 +02007784 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007785 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02007786 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 +02007787
7788 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007789 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007790 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007791 }
7792
Michal Vasko004d3152020-06-11 19:59:22 +02007793 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNARY, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007794 LY_CHECK_RET(rc);
7795
7796 if (set && (repeat % 2)) {
7797 if (options & LYXP_SCNODE_ALL) {
7798 warn_operands(set->ctx, set, NULL, 1, exp->expr, exp->tok_pos[this_op]);
7799 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007800 rc = moveto_op_math(set, NULL, &exp->expr[exp->tok_pos[this_op]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007801 LY_CHECK_RET(rc);
7802 }
7803 }
7804
7805 return LY_SUCCESS;
7806}
7807
7808/**
7809 * @brief Evaluate MultiplicativeExpr. Logs directly on error.
7810 *
Michal Vaskod3678892020-05-21 10:06:58 +02007811 * [18] MultiplicativeExpr ::= UnaryExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02007812 * | MultiplicativeExpr '*' UnaryExpr
7813 * | MultiplicativeExpr 'div' UnaryExpr
7814 * | MultiplicativeExpr 'mod' UnaryExpr
7815 *
7816 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007817 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007818 * @param[in] repeat How many times this expression is repeated.
7819 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7820 * @param[in] options XPath options.
7821 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7822 */
7823static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02007824eval_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 +02007825{
7826 LY_ERR rc;
7827 uint16_t this_op;
7828 struct lyxp_set orig_set, set2;
7829 uint16_t i;
7830
7831 assert(repeat);
7832
7833 set_init(&orig_set, set);
7834 set_init(&set2, set);
7835
7836 set_fill_set(&orig_set, set);
7837
Michal Vasko004d3152020-06-11 19:59:22 +02007838 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_MULTIPLICATIVE, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007839 LY_CHECK_GOTO(rc, cleanup);
7840
7841 /* ('*' / 'div' / 'mod' UnaryExpr)* */
7842 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02007843 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007844
Michal Vasko004d3152020-06-11 19:59:22 +02007845 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_MATH);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007846 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007847 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007848 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007849
7850 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007851 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_MULTIPLICATIVE, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007852 LY_CHECK_GOTO(rc, cleanup);
7853 continue;
7854 }
7855
7856 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02007857 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_MULTIPLICATIVE, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007858 LY_CHECK_GOTO(rc, cleanup);
7859
7860 /* eval */
7861 if (options & LYXP_SCNODE_ALL) {
7862 warn_operands(set->ctx, set, &set2, 1, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01007863 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007864 set_scnode_clear_ctx(set);
7865 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007866 rc = moveto_op_math(set, &set2, &exp->expr[exp->tok_pos[this_op]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007867 LY_CHECK_GOTO(rc, cleanup);
7868 }
7869 }
7870
7871cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02007872 lyxp_set_free_content(&orig_set);
7873 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007874 return rc;
7875}
7876
7877/**
7878 * @brief Evaluate AdditiveExpr. Logs directly on error.
7879 *
Michal Vaskod3678892020-05-21 10:06:58 +02007880 * [17] AdditiveExpr ::= MultiplicativeExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02007881 * | AdditiveExpr '+' MultiplicativeExpr
7882 * | AdditiveExpr '-' MultiplicativeExpr
7883 *
7884 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007885 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007886 * @param[in] repeat How many times this expression is repeated.
7887 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7888 * @param[in] options XPath options.
7889 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7890 */
7891static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02007892eval_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 +02007893{
7894 LY_ERR rc;
7895 uint16_t this_op;
7896 struct lyxp_set orig_set, set2;
7897 uint16_t i;
7898
7899 assert(repeat);
7900
7901 set_init(&orig_set, set);
7902 set_init(&set2, set);
7903
7904 set_fill_set(&orig_set, set);
7905
Michal Vasko004d3152020-06-11 19:59:22 +02007906 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_ADDITIVE, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007907 LY_CHECK_GOTO(rc, cleanup);
7908
7909 /* ('+' / '-' MultiplicativeExpr)* */
7910 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02007911 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007912
Michal Vasko004d3152020-06-11 19:59:22 +02007913 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_MATH);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007914 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007915 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007916 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007917
7918 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007919 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_ADDITIVE, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007920 LY_CHECK_GOTO(rc, cleanup);
7921 continue;
7922 }
7923
7924 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02007925 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_ADDITIVE, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007926 LY_CHECK_GOTO(rc, cleanup);
7927
7928 /* eval */
7929 if (options & LYXP_SCNODE_ALL) {
7930 warn_operands(set->ctx, set, &set2, 1, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01007931 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007932 set_scnode_clear_ctx(set);
7933 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007934 rc = moveto_op_math(set, &set2, &exp->expr[exp->tok_pos[this_op]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007935 LY_CHECK_GOTO(rc, cleanup);
7936 }
7937 }
7938
7939cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02007940 lyxp_set_free_content(&orig_set);
7941 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007942 return rc;
7943}
7944
7945/**
7946 * @brief Evaluate RelationalExpr. Logs directly on error.
7947 *
Michal Vaskod3678892020-05-21 10:06:58 +02007948 * [16] RelationalExpr ::= AdditiveExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02007949 * | RelationalExpr '<' AdditiveExpr
7950 * | RelationalExpr '>' AdditiveExpr
7951 * | RelationalExpr '<=' AdditiveExpr
7952 * | RelationalExpr '>=' AdditiveExpr
7953 *
7954 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007955 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007956 * @param[in] repeat How many times this expression is repeated.
7957 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7958 * @param[in] options XPath options.
7959 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7960 */
7961static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02007962eval_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 +02007963{
7964 LY_ERR rc;
7965 uint16_t this_op;
7966 struct lyxp_set orig_set, set2;
7967 uint16_t i;
7968
7969 assert(repeat);
7970
7971 set_init(&orig_set, set);
7972 set_init(&set2, set);
7973
7974 set_fill_set(&orig_set, set);
7975
Michal Vasko004d3152020-06-11 19:59:22 +02007976 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_RELATIONAL, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007977 LY_CHECK_GOTO(rc, cleanup);
7978
7979 /* ('<' / '>' / '<=' / '>=' AdditiveExpr)* */
7980 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02007981 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007982
Michal Vasko004d3152020-06-11 19:59:22 +02007983 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_COMP);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007984 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007985 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007986 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007987
7988 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007989 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_RELATIONAL, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007990 LY_CHECK_GOTO(rc, cleanup);
7991 continue;
7992 }
7993
7994 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02007995 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_RELATIONAL, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007996 LY_CHECK_GOTO(rc, cleanup);
7997
7998 /* eval */
7999 if (options & LYXP_SCNODE_ALL) {
8000 warn_operands(set->ctx, set, &set2, 1, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008001 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008002 set_scnode_clear_ctx(set);
8003 } else {
8004 rc = moveto_op_comp(set, &set2, &exp->expr[exp->tok_pos[this_op]], options);
8005 LY_CHECK_GOTO(rc, cleanup);
8006 }
8007 }
8008
8009cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008010 lyxp_set_free_content(&orig_set);
8011 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008012 return rc;
8013}
8014
8015/**
8016 * @brief Evaluate EqualityExpr. Logs directly on error.
8017 *
Michal Vaskod3678892020-05-21 10:06:58 +02008018 * [15] EqualityExpr ::= RelationalExpr | EqualityExpr '=' RelationalExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008019 * | EqualityExpr '!=' RelationalExpr
8020 *
8021 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008022 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008023 * @param[in] repeat How many times this expression is repeated.
8024 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
8025 * @param[in] options XPath options.
8026 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8027 */
8028static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02008029eval_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 +02008030{
8031 LY_ERR rc;
8032 uint16_t this_op;
8033 struct lyxp_set orig_set, set2;
8034 uint16_t i;
8035
8036 assert(repeat);
8037
8038 set_init(&orig_set, set);
8039 set_init(&set2, set);
8040
8041 set_fill_set(&orig_set, set);
8042
Michal Vasko004d3152020-06-11 19:59:22 +02008043 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_EQUALITY, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008044 LY_CHECK_GOTO(rc, cleanup);
8045
8046 /* ('=' / '!=' RelationalExpr)* */
8047 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008048 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008049
Michal Vasko004d3152020-06-11 19:59:22 +02008050 assert((exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_EQUAL) || (exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_NEQUAL));
Michal Vasko03ff5a72019-09-11 13:49:33 +02008051 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02008052 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008053 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008054
8055 if (!set) {
Michal Vasko004d3152020-06-11 19:59:22 +02008056 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_EQUALITY, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008057 LY_CHECK_GOTO(rc, cleanup);
8058 continue;
8059 }
8060
8061 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02008062 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_EQUALITY, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008063 LY_CHECK_GOTO(rc, cleanup);
8064
8065 /* eval */
8066 if (options & LYXP_SCNODE_ALL) {
8067 warn_operands(set->ctx, set, &set2, 0, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vasko004d3152020-06-11 19:59:22 +02008068 warn_equality_value(exp, set, *tok_idx - 1, this_op - 1, *tok_idx - 1);
8069 warn_equality_value(exp, &set2, this_op - 1, this_op - 1, *tok_idx - 1);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008070 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008071 set_scnode_clear_ctx(set);
8072 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008073 rc = moveto_op_comp(set, &set2, &exp->expr[exp->tok_pos[this_op]], options);
8074 LY_CHECK_GOTO(rc, cleanup);
8075 }
8076 }
8077
8078cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008079 lyxp_set_free_content(&orig_set);
8080 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008081 return rc;
8082}
8083
8084/**
8085 * @brief Evaluate AndExpr. Logs directly on error.
8086 *
Michal Vaskod3678892020-05-21 10:06:58 +02008087 * [14] AndExpr ::= EqualityExpr | AndExpr 'and' EqualityExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008088 *
8089 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008090 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008091 * @param[in] repeat How many times this expression is repeated.
8092 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
8093 * @param[in] options XPath options.
8094 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8095 */
8096static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02008097eval_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 +02008098{
8099 LY_ERR rc;
8100 struct lyxp_set orig_set, set2;
8101 uint16_t i;
8102
8103 assert(repeat);
8104
8105 set_init(&orig_set, set);
8106 set_init(&set2, set);
8107
8108 set_fill_set(&orig_set, set);
8109
Michal Vasko004d3152020-06-11 19:59:22 +02008110 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_AND, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008111 LY_CHECK_GOTO(rc, cleanup);
8112
8113 /* cast to boolean, we know that will be the final result */
8114 if (set && (options & LYXP_SCNODE_ALL)) {
8115 set_scnode_clear_ctx(set);
8116 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008117 lyxp_set_cast(set, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008118 }
8119
8120 /* ('and' EqualityExpr)* */
8121 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008122 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_LOG);
8123 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (!set || !set->val.bln ? "skipped" : "parsed"),
Michal Vasko69730152020-10-09 16:30:07 +02008124 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008125 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008126
8127 /* lazy evaluation */
Michal Vasko004d3152020-06-11 19:59:22 +02008128 if (!set || ((set->type == LYXP_SET_BOOLEAN) && !set->val.bln)) {
8129 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_AND, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008130 LY_CHECK_GOTO(rc, cleanup);
8131 continue;
8132 }
8133
8134 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02008135 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_AND, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008136 LY_CHECK_GOTO(rc, cleanup);
8137
8138 /* eval - just get boolean value actually */
8139 if (set->type == LYXP_SET_SCNODE_SET) {
8140 set_scnode_clear_ctx(&set2);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008141 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008142 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008143 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008144 set_fill_set(set, &set2);
8145 }
8146 }
8147
8148cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008149 lyxp_set_free_content(&orig_set);
8150 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008151 return rc;
8152}
8153
8154/**
8155 * @brief Evaluate OrExpr. Logs directly on error.
8156 *
Michal Vaskod3678892020-05-21 10:06:58 +02008157 * [13] OrExpr ::= AndExpr | OrExpr 'or' AndExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008158 *
8159 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008160 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008161 * @param[in] repeat How many times this expression is repeated.
8162 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
8163 * @param[in] options XPath options.
8164 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8165 */
8166static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02008167eval_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 +02008168{
8169 LY_ERR rc;
8170 struct lyxp_set orig_set, set2;
8171 uint16_t i;
8172
8173 assert(repeat);
8174
8175 set_init(&orig_set, set);
8176 set_init(&set2, set);
8177
8178 set_fill_set(&orig_set, set);
8179
Michal Vasko004d3152020-06-11 19:59:22 +02008180 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_OR, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008181 LY_CHECK_GOTO(rc, cleanup);
8182
8183 /* cast to boolean, we know that will be the final result */
8184 if (set && (options & LYXP_SCNODE_ALL)) {
8185 set_scnode_clear_ctx(set);
8186 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008187 lyxp_set_cast(set, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008188 }
8189
8190 /* ('or' AndExpr)* */
8191 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008192 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_LOG);
8193 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (!set || set->val.bln ? "skipped" : "parsed"),
Michal Vasko69730152020-10-09 16:30:07 +02008194 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008195 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008196
8197 /* lazy evaluation */
Michal Vasko004d3152020-06-11 19:59:22 +02008198 if (!set || ((set->type == LYXP_SET_BOOLEAN) && set->val.bln)) {
8199 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_OR, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008200 LY_CHECK_GOTO(rc, cleanup);
8201 continue;
8202 }
8203
8204 set_fill_set(&set2, &orig_set);
8205 /* expr_type cound have been LYXP_EXPR_NONE in all these later calls (except for the first one),
8206 * but it does not matter */
Michal Vasko004d3152020-06-11 19:59:22 +02008207 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_OR, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008208 LY_CHECK_GOTO(rc, cleanup);
8209
8210 /* eval - just get boolean value actually */
8211 if (set->type == LYXP_SET_SCNODE_SET) {
8212 set_scnode_clear_ctx(&set2);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008213 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008214 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008215 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008216 set_fill_set(set, &set2);
8217 }
8218 }
8219
8220cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008221 lyxp_set_free_content(&orig_set);
8222 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008223 return rc;
8224}
8225
8226/**
Michal Vasko004d3152020-06-11 19:59:22 +02008227 * @brief Decide what expression is at the pointer @p tok_idx and evaluate it accordingly.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008228 *
8229 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008230 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008231 * @param[in] etype Expression type to evaluate.
8232 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
8233 * @param[in] options XPath options.
8234 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8235 */
8236static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02008237eval_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 +02008238{
8239 uint16_t i, count;
8240 enum lyxp_expr_type next_etype;
8241 LY_ERR rc;
8242
8243 /* process operator repeats */
Michal Vasko004d3152020-06-11 19:59:22 +02008244 if (!exp->repeat[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008245 next_etype = LYXP_EXPR_NONE;
8246 } else {
8247 /* find etype repeat */
Radek Krejci1e008d22020-08-17 11:37:37 +02008248 for (i = 0; exp->repeat[*tok_idx][i] > etype; ++i) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02008249
8250 /* select one-priority lower because etype expression called us */
8251 if (i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008252 next_etype = exp->repeat[*tok_idx][i - 1];
Michal Vasko03ff5a72019-09-11 13:49:33 +02008253 /* count repeats for that expression */
Radek Krejci1e008d22020-08-17 11:37:37 +02008254 for (count = 0; i && exp->repeat[*tok_idx][i - 1] == next_etype; ++count, --i) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02008255 } else {
8256 next_etype = LYXP_EXPR_NONE;
8257 }
8258 }
8259
8260 /* decide what expression are we parsing based on the repeat */
8261 switch (next_etype) {
8262 case LYXP_EXPR_OR:
Michal Vasko004d3152020-06-11 19:59:22 +02008263 rc = eval_or_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008264 break;
8265 case LYXP_EXPR_AND:
Michal Vasko004d3152020-06-11 19:59:22 +02008266 rc = eval_and_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008267 break;
8268 case LYXP_EXPR_EQUALITY:
Michal Vasko004d3152020-06-11 19:59:22 +02008269 rc = eval_equality_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008270 break;
8271 case LYXP_EXPR_RELATIONAL:
Michal Vasko004d3152020-06-11 19:59:22 +02008272 rc = eval_relational_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008273 break;
8274 case LYXP_EXPR_ADDITIVE:
Michal Vasko004d3152020-06-11 19:59:22 +02008275 rc = eval_additive_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008276 break;
8277 case LYXP_EXPR_MULTIPLICATIVE:
Michal Vasko004d3152020-06-11 19:59:22 +02008278 rc = eval_multiplicative_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008279 break;
8280 case LYXP_EXPR_UNARY:
Michal Vasko004d3152020-06-11 19:59:22 +02008281 rc = eval_unary_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008282 break;
8283 case LYXP_EXPR_UNION:
Michal Vasko004d3152020-06-11 19:59:22 +02008284 rc = eval_union_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008285 break;
8286 case LYXP_EXPR_NONE:
Michal Vasko004d3152020-06-11 19:59:22 +02008287 rc = eval_path_expr(exp, tok_idx, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008288 break;
8289 default:
8290 LOGINT_RET(set->ctx);
8291 }
8292
8293 return rc;
8294}
8295
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008296/**
8297 * @brief Get root type.
8298 *
8299 * @param[in] ctx_node Context node.
8300 * @param[in] ctx_scnode Schema context node.
8301 * @param[in] options XPath options.
8302 * @return Root type.
8303 */
8304static enum lyxp_node_type
Radek Krejci1deb5be2020-08-26 16:43:36 +02008305lyxp_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 +01008306{
Michal Vasko6b26e742020-07-17 15:02:10 +02008307 const struct lysc_node *op;
8308
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008309 if (options & LYXP_SCNODE_ALL) {
Radek Krejci1e008d22020-08-17 11:37:37 +02008310 for (op = ctx_scnode; op && !(op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)); op = op->parent) {}
Michal Vasko6b26e742020-07-17 15:02:10 +02008311
8312 if (op || (options & LYXP_SCNODE)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008313 /* general root that can access everything */
8314 return LYXP_NODE_ROOT;
8315 } else if (!ctx_scnode || (ctx_scnode->flags & LYS_CONFIG_W)) {
8316 /* root context node can access only config data (because we said so, it is unspecified) */
8317 return LYXP_NODE_ROOT_CONFIG;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008318 }
Michal Vasko6b26e742020-07-17 15:02:10 +02008319 return LYXP_NODE_ROOT;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008320 }
8321
Michal Vasko6b26e742020-07-17 15:02:10 +02008322 op = ctx_node ? ctx_node->schema : NULL;
Michal Vaskod989ba02020-08-24 10:59:24 +02008323 for ( ; op && !(op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)); op = op->parent) {}
Michal Vasko6b26e742020-07-17 15:02:10 +02008324
8325 if (!ctx_node || (!op && (ctx_node->schema->flags & LYS_CONFIG_W))) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008326 /* root context node can access only config data (because we said so, it is unspecified) */
8327 return LYXP_NODE_ROOT_CONFIG;
8328 }
8329
8330 return LYXP_NODE_ROOT;
8331}
8332
Michal Vasko03ff5a72019-09-11 13:49:33 +02008333LY_ERR
Michal Vaskoc8a230d2020-08-14 12:17:10 +02008334lyxp_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 +02008335 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 +02008336{
Michal Vasko004d3152020-06-11 19:59:22 +02008337 uint16_t tok_idx = 0;
8338 const struct lyd_node *real_ctx_node;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008339 LY_ERR rc;
8340
Michal Vasko004d3152020-06-11 19:59:22 +02008341 LY_CHECK_ARG_RET(NULL, exp, local_mod, ctx_node, set, LY_EINVAL);
8342
8343 if ((ctx_node_type == LYXP_NODE_ROOT) || (ctx_node_type == LYXP_NODE_ROOT_CONFIG)) {
8344 /* we always need some context node because it is used for resolving unqualified names */
8345 real_ctx_node = NULL;
8346 } else {
8347 real_ctx_node = ctx_node;
8348 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02008349
8350 /* prepare set for evaluation */
Michal Vasko004d3152020-06-11 19:59:22 +02008351 tok_idx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008352 memset(set, 0, sizeof *set);
Michal Vaskod3678892020-05-21 10:06:58 +02008353 set->type = LYXP_SET_NODE_SET;
Michal Vasko004d3152020-06-11 19:59:22 +02008354 set_insert_node(set, (struct lyd_node *)real_ctx_node, 0, ctx_node_type, 0);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008355 set->ctx = local_mod->ctx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008356 set->ctx_node = ctx_node;
Michal Vasko004d3152020-06-11 19:59:22 +02008357 set->root_type = lyxp_get_root_type(real_ctx_node, NULL, options);
Michal Vasko6b26e742020-07-17 15:02:10 +02008358 for (set->context_op = ctx_node->schema;
Radek Krejci0f969882020-08-21 16:56:47 +02008359 set->context_op && !(set->context_op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF));
8360 set->context_op = set->context_op->parent) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02008361 set->local_mod = local_mod;
Michal Vaskof03ed032020-03-04 13:31:44 +01008362 set->tree = tree;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008363 set->format = format;
8364
8365 /* evaluate */
Michal Vasko004d3152020-06-11 19:59:22 +02008366 rc = eval_expr_select(exp, &tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008367 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02008368 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008369 }
8370
Michal Vasko03ff5a72019-09-11 13:49:33 +02008371 return rc;
8372}
8373
8374#if 0
8375
8376/* full xml printing of set elements, not used currently */
8377
8378void
8379lyxp_set_print_xml(FILE *f, struct lyxp_set *set)
8380{
8381 uint32_t i;
8382 char *str_num;
8383 struct lyout out;
8384
8385 memset(&out, 0, sizeof out);
8386
8387 out.type = LYOUT_STREAM;
8388 out.method.f = f;
8389
8390 switch (set->type) {
8391 case LYXP_SET_EMPTY:
Michal Vasko5233e962020-08-14 14:26:20 +02008392 ly_print_(&out, "Empty XPath set\n\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008393 break;
8394 case LYXP_SET_BOOLEAN:
Michal Vasko5233e962020-08-14 14:26:20 +02008395 ly_print_(&out, "Boolean XPath set:\n");
8396 ly_print_(&out, "%s\n\n", set->value.bool ? "true" : "false");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008397 break;
8398 case LYXP_SET_STRING:
Michal Vasko5233e962020-08-14 14:26:20 +02008399 ly_print_(&out, "String XPath set:\n");
8400 ly_print_(&out, "\"%s\"\n\n", set->value.str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008401 break;
8402 case LYXP_SET_NUMBER:
Michal Vasko5233e962020-08-14 14:26:20 +02008403 ly_print_(&out, "Number XPath set:\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008404
8405 if (isnan(set->value.num)) {
8406 str_num = strdup("NaN");
8407 } else if ((set->value.num == 0) || (set->value.num == -0.0f)) {
8408 str_num = strdup("0");
8409 } else if (isinf(set->value.num) && !signbit(set->value.num)) {
8410 str_num = strdup("Infinity");
8411 } else if (isinf(set->value.num) && signbit(set->value.num)) {
8412 str_num = strdup("-Infinity");
8413 } else if ((long long)set->value.num == set->value.num) {
8414 if (asprintf(&str_num, "%lld", (long long)set->value.num) == -1) {
8415 str_num = NULL;
8416 }
8417 } else {
8418 if (asprintf(&str_num, "%03.1Lf", set->value.num) == -1) {
8419 str_num = NULL;
8420 }
8421 }
8422 if (!str_num) {
8423 LOGMEM;
8424 return;
8425 }
Michal Vasko5233e962020-08-14 14:26:20 +02008426 ly_print_(&out, "%s\n\n", str_num);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008427 free(str_num);
8428 break;
8429 case LYXP_SET_NODE_SET:
Michal Vasko5233e962020-08-14 14:26:20 +02008430 ly_print_(&out, "Node XPath set:\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008431
8432 for (i = 0; i < set->used; ++i) {
Michal Vasko5233e962020-08-14 14:26:20 +02008433 ly_print_(&out, "%d. ", i + 1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008434 switch (set->node_type[i]) {
8435 case LYXP_NODE_ROOT_ALL:
Michal Vasko5233e962020-08-14 14:26:20 +02008436 ly_print_(&out, "ROOT all\n\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008437 break;
8438 case LYXP_NODE_ROOT_CONFIG:
Michal Vasko5233e962020-08-14 14:26:20 +02008439 ly_print_(&out, "ROOT config\n\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008440 break;
8441 case LYXP_NODE_ROOT_STATE:
Michal Vasko5233e962020-08-14 14:26:20 +02008442 ly_print_(&out, "ROOT state\n\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008443 break;
8444 case LYXP_NODE_ROOT_NOTIF:
Michal Vasko5233e962020-08-14 14:26:20 +02008445 ly_print_(&out, "ROOT notification \"%s\"\n\n", set->value.nodes[i]->schema->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008446 break;
8447 case LYXP_NODE_ROOT_RPC:
Michal Vasko5233e962020-08-14 14:26:20 +02008448 ly_print_(&out, "ROOT rpc \"%s\"\n\n", set->value.nodes[i]->schema->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008449 break;
8450 case LYXP_NODE_ROOT_OUTPUT:
Michal Vasko5233e962020-08-14 14:26:20 +02008451 ly_print_(&out, "ROOT output \"%s\"\n\n", set->value.nodes[i]->schema->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008452 break;
8453 case LYXP_NODE_ELEM:
Michal Vasko5233e962020-08-14 14:26:20 +02008454 ly_print_(&out, "ELEM \"%s\"\n", set->value.nodes[i]->schema->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008455 xml_print_node(&out, 1, set->value.nodes[i], 1, LYP_FORMAT);
Michal Vasko5233e962020-08-14 14:26:20 +02008456 ly_print_(&out, "\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008457 break;
8458 case LYXP_NODE_TEXT:
Michal Vasko5233e962020-08-14 14:26:20 +02008459 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 +02008460 break;
8461 case LYXP_NODE_ATTR:
Michal Vasko5233e962020-08-14 14:26:20 +02008462 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 +02008463 break;
8464 }
8465 }
8466 break;
8467 }
8468}
8469
8470#endif
8471
8472LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008473lyxp_set_cast(struct lyxp_set *set, enum lyxp_set_type target)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008474{
8475 long double num;
8476 char *str;
8477 LY_ERR rc;
8478
8479 if (!set || (set->type == target)) {
8480 return LY_SUCCESS;
8481 }
8482
8483 /* it's not possible to convert anything into a node set */
Michal Vaskod3678892020-05-21 10:06:58 +02008484 assert(target != LYXP_SET_NODE_SET);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008485
8486 if (set->type == LYXP_SET_SCNODE_SET) {
Michal Vaskod3678892020-05-21 10:06:58 +02008487 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008488 return LY_EINVAL;
8489 }
8490
8491 /* to STRING */
Michal Vaskod3678892020-05-21 10:06:58 +02008492 if ((target == LYXP_SET_STRING) || ((target == LYXP_SET_NUMBER) && (set->type == LYXP_SET_NODE_SET))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008493 switch (set->type) {
8494 case LYXP_SET_NUMBER:
8495 if (isnan(set->val.num)) {
8496 set->val.str = strdup("NaN");
8497 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
8498 } else if ((set->val.num == 0) || (set->val.num == -0.0f)) {
8499 set->val.str = strdup("0");
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 (isinf(set->val.num) && signbit(set->val.num)) {
8505 set->val.str = strdup("-Infinity");
8506 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
8507 } else if ((long long)set->val.num == set->val.num) {
8508 if (asprintf(&str, "%lld", (long long)set->val.num) == -1) {
8509 LOGMEM_RET(set->ctx);
8510 }
8511 set->val.str = str;
8512 } else {
8513 if (asprintf(&str, "%03.1Lf", set->val.num) == -1) {
8514 LOGMEM_RET(set->ctx);
8515 }
8516 set->val.str = str;
8517 }
8518 break;
8519 case LYXP_SET_BOOLEAN:
Michal Vasko004d3152020-06-11 19:59:22 +02008520 if (set->val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008521 set->val.str = strdup("true");
8522 } else {
8523 set->val.str = strdup("false");
8524 }
8525 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), LY_EMEM);
8526 break;
8527 case LYXP_SET_NODE_SET:
8528 assert(set->used);
8529
8530 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008531 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02008532
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008533 rc = cast_node_set_to_string(set, &str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008534 LY_CHECK_RET(rc);
Michal Vaskod3678892020-05-21 10:06:58 +02008535 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008536 set->val.str = str;
8537 break;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008538 default:
8539 LOGINT_RET(set->ctx);
8540 }
8541 set->type = LYXP_SET_STRING;
8542 }
8543
8544 /* to NUMBER */
8545 if (target == LYXP_SET_NUMBER) {
8546 switch (set->type) {
8547 case LYXP_SET_STRING:
8548 num = cast_string_to_number(set->val.str);
Michal Vaskod3678892020-05-21 10:06:58 +02008549 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008550 set->val.num = num;
8551 break;
8552 case LYXP_SET_BOOLEAN:
Michal Vasko004d3152020-06-11 19:59:22 +02008553 if (set->val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008554 set->val.num = 1;
8555 } else {
8556 set->val.num = 0;
8557 }
8558 break;
8559 default:
8560 LOGINT_RET(set->ctx);
8561 }
8562 set->type = LYXP_SET_NUMBER;
8563 }
8564
8565 /* to BOOLEAN */
8566 if (target == LYXP_SET_BOOLEAN) {
8567 switch (set->type) {
8568 case LYXP_SET_NUMBER:
8569 if ((set->val.num == 0) || (set->val.num == -0.0f) || isnan(set->val.num)) {
Michal Vasko004d3152020-06-11 19:59:22 +02008570 set->val.bln = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008571 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02008572 set->val.bln = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008573 }
8574 break;
8575 case LYXP_SET_STRING:
8576 if (set->val.str[0]) {
Michal Vaskod3678892020-05-21 10:06:58 +02008577 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02008578 set->val.bln = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008579 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02008580 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02008581 set->val.bln = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008582 }
8583 break;
8584 case LYXP_SET_NODE_SET:
Michal Vaskod3678892020-05-21 10:06:58 +02008585 if (set->used) {
8586 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02008587 set->val.bln = 1;
Michal Vaskod3678892020-05-21 10:06:58 +02008588 } else {
8589 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02008590 set->val.bln = 0;
Michal Vaskod3678892020-05-21 10:06:58 +02008591 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02008592 break;
8593 default:
8594 LOGINT_RET(set->ctx);
8595 }
8596 set->type = LYXP_SET_BOOLEAN;
8597 }
8598
Michal Vasko03ff5a72019-09-11 13:49:33 +02008599 return LY_SUCCESS;
8600}
8601
8602LY_ERR
Michal Vaskoc8a230d2020-08-14 12:17:10 +02008603lyxp_atomize(struct lyxp_expr *exp, LY_PREFIX_FORMAT format, const struct lys_module *local_mod,
Radek Krejci1deb5be2020-08-26 16:43:36 +02008604 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 +02008605{
8606 struct ly_ctx *ctx;
Michal Vasko004d3152020-06-11 19:59:22 +02008607 const struct lysc_node *real_ctx_scnode;
8608 uint16_t tok_idx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008609
Michal Vasko004d3152020-06-11 19:59:22 +02008610 LY_CHECK_ARG_RET(NULL, exp, local_mod, ctx_scnode, set, LY_EINVAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008611
8612 ctx = local_mod->ctx;
Michal Vasko004d3152020-06-11 19:59:22 +02008613 if ((ctx_scnode_type == LYXP_NODE_ROOT) || (ctx_scnode_type == LYXP_NODE_ROOT_CONFIG)) {
8614 /* we always need some context node because it is used for resolving unqualified names */
8615 real_ctx_scnode = NULL;
8616 } else {
8617 real_ctx_scnode = ctx_scnode;
8618 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02008619
8620 /* prepare set for evaluation */
Michal Vasko004d3152020-06-11 19:59:22 +02008621 tok_idx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008622 memset(set, 0, sizeof *set);
8623 set->type = LYXP_SET_SCNODE_SET;
Radek Krejciaa6b53f2020-08-27 15:19:03 +02008624 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, real_ctx_scnode, ctx_scnode_type, NULL));
Michal Vasko5c4e5892019-11-14 12:31:38 +01008625 set->val.scnodes[0].in_ctx = -2;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008626 set->ctx = ctx;
8627 set->ctx_scnode = ctx_scnode;
Michal Vasko004d3152020-06-11 19:59:22 +02008628 set->root_type = lyxp_get_root_type(NULL, real_ctx_scnode, options);
Michal Vasko6b26e742020-07-17 15:02:10 +02008629 for (set->context_op = ctx_scnode;
Radek Krejci0f969882020-08-21 16:56:47 +02008630 set->context_op && !(set->context_op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF));
8631 set->context_op = set->context_op->parent) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02008632 set->local_mod = local_mod;
8633 set->format = format;
8634
8635 /* evaluate */
Michal Vasko004d3152020-06-11 19:59:22 +02008636 return eval_expr_select(exp, &tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008637}
Michal Vaskod43d71a2020-08-07 14:54:58 +02008638
8639API const char *
8640lyxp_get_expr(const struct lyxp_expr *path)
8641{
8642 if (!path) {
8643 return NULL;
8644 }
8645
8646 return path->expr;
8647}