blob: 1ebdce41647960409d761a189a83050f2dfb08fe [file] [log] [blame]
Radek Krejcie7b95092019-05-15 11:03:07 +02001/**
Michal Vaskob1b5c262020-03-05 14:29:47 +01002 * @file tree_data.c
Radek Krejcie7b95092019-05-15 11:03:07 +02003 * @author Radek Krejci <rkrejci@cesnet.cz>
Michal Vasko6cd9b6b2020-06-22 10:05:22 +02004 * @brief Data tree functions
Radek Krejcie7b95092019-05-15 11:03:07 +02005 *
Michal Vasko6cd9b6b2020-06-22 10:05:22 +02006 * Copyright (c) 2015 - 2020 CESNET, z.s.p.o.
Radek Krejcie7b95092019-05-15 11:03:07 +02007 *
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 */
14
Radek Krejci535ea9f2020-05-29 16:01:05 +020015#define _GNU_SOURCE
16
17#include "tree_data.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020018
Radek Krejci084289f2019-07-09 17:35:30 +020019#include <assert.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020020#include <ctype.h>
21#include <errno.h>
22#include <fcntl.h>
23#include <stdarg.h>
24#include <stdint.h>
Radek Krejci535ea9f2020-05-29 16:01:05 +020025#include <stdio.h>
26#include <stdlib.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020027#include <string.h>
28#include <unistd.h>
29
Radek Krejci535ea9f2020-05-29 16:01:05 +020030#include "common.h"
Michal Vasko5aa44c02020-06-29 11:47:02 +020031#include "compat.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020032#include "config.h"
33#include "context.h"
34#include "dict.h"
Michal Vasko90932a92020-02-12 14:33:03 +010035#include "hash_table.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020036#include "log.h"
Radek Krejci7931b192020-06-25 17:05:03 +020037#include "parser_data.h"
38#include "parser_internal.h"
Michal Vasko004d3152020-06-11 19:59:22 +020039#include "path.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020040#include "plugins_exts.h"
Radek Krejci38d85362019-09-05 16:26:38 +020041#include "plugins_exts_metadata.h"
Michal Vasko90932a92020-02-12 14:33:03 +010042#include "plugins_exts_internal.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020043#include "plugins_types.h"
44#include "set.h"
45#include "tree.h"
46#include "tree_data_internal.h"
47#include "tree_schema.h"
48#include "tree_schema_internal.h"
49#include "xml.h"
50#include "xpath.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020051
Radek Krejci084289f2019-07-09 17:35:30 +020052LY_ERR
Michal Vasko90932a92020-02-12 14:33:03 +010053lyd_value_parse(struct lyd_node_term *node, const char *value, size_t value_len, int *dynamic, int second,
Michal Vaskof03ed032020-03-04 13:31:44 +010054 ly_clb_resolve_prefix get_prefix, void *parser, LYD_FORMAT format, const struct lyd_node *tree)
Radek Krejci084289f2019-07-09 17:35:30 +020055{
Michal Vasko90932a92020-02-12 14:33:03 +010056 LY_ERR ret = LY_SUCCESS;
Radek Krejci084289f2019-07-09 17:35:30 +020057 struct ly_err_item *err = NULL;
58 struct ly_ctx *ctx;
59 struct lysc_type *type;
Radek Krejci3c9758d2019-07-11 16:49:10 +020060 int options = LY_TYPE_OPTS_STORE | (second ? LY_TYPE_OPTS_SECOND_CALL : 0) |
Michal Vaskof03ed032020-03-04 13:31:44 +010061 (dynamic && *dynamic ? LY_TYPE_OPTS_DYNAMIC : 0) | (tree ? 0 : LY_TYPE_OPTS_INCOMPLETE_DATA);
Radek Krejci084289f2019-07-09 17:35:30 +020062 assert(node);
63
64 ctx = node->schema->module->ctx;
Radek Krejci084289f2019-07-09 17:35:30 +020065
Radek Krejci73dead22019-07-11 16:46:16 +020066 type = ((struct lysc_node_leaf*)node->schema)->type;
Radek Krejci62903c32019-07-15 14:42:05 +020067 if (!second) {
68 node->value.realtype = type;
69 }
Michal Vasko90932a92020-02-12 14:33:03 +010070 ret = type->plugin->store(ctx, type, value, value_len, options, get_prefix, parser, format,
Michal Vasko004d3152020-06-11 19:59:22 +020071 tree ? (void *)node : (void *)node->schema, tree, &node->value, NULL, &err);
Michal Vasko90932a92020-02-12 14:33:03 +010072 if (ret && (ret != LY_EINCOMPLETE)) {
Radek Krejci73dead22019-07-11 16:46:16 +020073 if (err) {
Michal Vasko3544d1e2020-05-27 11:17:51 +020074 /* node may not be connected yet so use the schema node */
Michal Vaskof872e202020-05-27 11:49:06 +020075 if (!node->parent && lysc_data_parent(node->schema)) {
76 LOGVAL(ctx, LY_VLOG_LYSC, node->schema, err->vecode, err->msg);
77 } else {
78 LOGVAL(ctx, LY_VLOG_LYD, node, err->vecode, err->msg);
79 }
Radek Krejci73dead22019-07-11 16:46:16 +020080 ly_err_free(err);
Radek Krejci084289f2019-07-09 17:35:30 +020081 }
Radek Krejci73dead22019-07-11 16:46:16 +020082 goto error;
Michal Vasko90932a92020-02-12 14:33:03 +010083 } else if (dynamic) {
84 *dynamic = 0;
Radek Krejci084289f2019-07-09 17:35:30 +020085 }
86
87error:
88 return ret;
89}
90
Michal Vasko00cbf532020-06-15 13:58:47 +020091/* similar to lyd_value_parse except can be used just to store the value, hence also does not support a second call */
Michal Vasko004d3152020-06-11 19:59:22 +020092LY_ERR
Michal Vasko90932a92020-02-12 14:33:03 +010093lyd_value_store(struct lyd_value *val, const struct lysc_node *schema, const char *value, size_t value_len, int *dynamic,
94 ly_clb_resolve_prefix get_prefix, void *parser, LYD_FORMAT format)
95{
96 LY_ERR ret = LY_SUCCESS;
97 struct ly_err_item *err = NULL;
98 struct ly_ctx *ctx;
99 struct lysc_type *type;
100 int options = LY_TYPE_OPTS_STORE | LY_TYPE_OPTS_INCOMPLETE_DATA | (dynamic && *dynamic ? LY_TYPE_OPTS_DYNAMIC : 0);
101
102 assert(val && schema && (schema->nodetype & LYD_NODE_TERM));
103
104 ctx = schema->module->ctx;
105 type = ((struct lysc_node_leaf *)schema)->type;
106 val->realtype = type;
107 ret = type->plugin->store(ctx, type, value, value_len, options, get_prefix, parser, format, (void *)schema, NULL,
108 val, NULL, &err);
109 if (ret == LY_EINCOMPLETE) {
110 /* this is fine, we do not need it resolved */
111 ret = LY_SUCCESS;
112 } else if (ret && err) {
113 ly_err_print(err);
114 LOGVAL(ctx, LY_VLOG_STR, err->path, err->vecode, err->msg);
115 ly_err_free(err);
116 }
117 if (!ret && dynamic) {
118 *dynamic = 0;
119 }
120
121 return ret;
122}
123
Radek Krejci38d85362019-09-05 16:26:38 +0200124LY_ERR
Michal Vasko41586352020-07-13 13:54:25 +0200125lyd_value_parse_meta(const struct ly_ctx *ctx, struct lyd_meta *meta, const char *value, size_t value_len, int *dynamic,
Michal Vasko8d544252020-03-02 10:19:52 +0100126 int second, ly_clb_resolve_prefix get_prefix, void *parser, LYD_FORMAT format,
Michal Vaskof03ed032020-03-04 13:31:44 +0100127 const struct lysc_node *ctx_snode, const struct lyd_node *tree)
Radek Krejci38d85362019-09-05 16:26:38 +0200128{
Michal Vasko90932a92020-02-12 14:33:03 +0100129 LY_ERR ret = LY_SUCCESS;
Radek Krejci38d85362019-09-05 16:26:38 +0200130 struct ly_err_item *err = NULL;
Radek Krejci38d85362019-09-05 16:26:38 +0200131 struct lyext_metadata *ant;
132 int options = LY_TYPE_OPTS_STORE | (second ? LY_TYPE_OPTS_SECOND_CALL : 0) |
Michal Vaskof03ed032020-03-04 13:31:44 +0100133 (dynamic && *dynamic ? LY_TYPE_OPTS_DYNAMIC : 0) | (tree ? 0 : LY_TYPE_OPTS_INCOMPLETE_DATA);
Radek Krejci38d85362019-09-05 16:26:38 +0200134
Michal Vasko9f96a052020-03-10 09:41:45 +0100135 assert(ctx && meta && ((tree && meta->parent) || ctx_snode));
Michal Vasko8d544252020-03-02 10:19:52 +0100136
Michal Vasko9f96a052020-03-10 09:41:45 +0100137 ant = meta->annotation->data;
Radek Krejci38d85362019-09-05 16:26:38 +0200138
139 if (!second) {
Michal Vasko9f96a052020-03-10 09:41:45 +0100140 meta->value.realtype = ant->type;
Radek Krejci38d85362019-09-05 16:26:38 +0200141 }
Michal Vasko90932a92020-02-12 14:33:03 +0100142 ret = ant->type->plugin->store(ctx, ant->type, value, value_len, options, get_prefix, parser, format,
Michal Vasko9f96a052020-03-10 09:41:45 +0100143 tree ? (void *)meta->parent : (void *)ctx_snode, tree, &meta->value, NULL, &err);
Michal Vasko90932a92020-02-12 14:33:03 +0100144 if (ret && (ret != LY_EINCOMPLETE)) {
Radek Krejci38d85362019-09-05 16:26:38 +0200145 if (err) {
146 ly_err_print(err);
147 LOGVAL(ctx, LY_VLOG_STR, err->path, err->vecode, err->msg);
148 ly_err_free(err);
149 }
150 goto error;
Michal Vasko90932a92020-02-12 14:33:03 +0100151 } else if (dynamic) {
152 *dynamic = 0;
Radek Krejci38d85362019-09-05 16:26:38 +0200153 }
154
155error:
156 return ret;
157}
158
Radek Krejci084289f2019-07-09 17:35:30 +0200159API LY_ERR
Michal Vasko44685da2020-03-17 15:38:06 +0100160lys_value_validate(const struct ly_ctx *ctx, const struct lysc_node *node, const char *value, size_t value_len,
Radek Krejci084289f2019-07-09 17:35:30 +0200161 ly_clb_resolve_prefix get_prefix, void *get_prefix_data, LYD_FORMAT format)
162{
163 LY_ERR rc = LY_SUCCESS;
164 struct ly_err_item *err = NULL;
165 struct lysc_type *type;
Radek Krejci084289f2019-07-09 17:35:30 +0200166
167 LY_CHECK_ARG_RET(ctx, node, value, LY_EINVAL);
168
169 if (!(node->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
170 LOGARG(ctx, node);
171 return LY_EINVAL;
172 }
173
174 type = ((struct lysc_node_leaf*)node)->type;
Radek Krejci73dead22019-07-11 16:46:16 +0200175 /* just validate, no storing of enything */
176 rc = type->plugin->store(ctx ? ctx : node->module->ctx, type, value, value_len, LY_TYPE_OPTS_INCOMPLETE_DATA,
177 get_prefix, get_prefix_data, format, node, NULL, NULL, NULL, &err);
178 if (rc == LY_EINCOMPLETE) {
179 /* actually success since we do not provide the context tree and call validation with
180 * LY_TYPE_OPTS_INCOMPLETE_DATA */
181 rc = LY_SUCCESS;
182 } else if (rc && err) {
183 if (ctx) {
184 /* log only in case the ctx was provided as input parameter */
185 ly_err_print(err);
186 LOGVAL(ctx, LY_VLOG_STR, err->path, err->vecode, err->msg);
Radek Krejci084289f2019-07-09 17:35:30 +0200187 }
Radek Krejci73dead22019-07-11 16:46:16 +0200188 ly_err_free(err);
Radek Krejci084289f2019-07-09 17:35:30 +0200189 }
190
191 return rc;
192}
193
194API LY_ERR
Michal Vasko44685da2020-03-17 15:38:06 +0100195lyd_value_validate(const struct ly_ctx *ctx, const struct lyd_node_term *node, const char *value, size_t value_len,
Michal Vaskof03ed032020-03-04 13:31:44 +0100196 ly_clb_resolve_prefix get_prefix, void *get_prefix_data, LYD_FORMAT format, const struct lyd_node *tree)
Radek Krejci084289f2019-07-09 17:35:30 +0200197{
198 LY_ERR rc;
199 struct ly_err_item *err = NULL;
200 struct lysc_type *type;
Michal Vaskof03ed032020-03-04 13:31:44 +0100201 int options = (tree ? 0 : LY_TYPE_OPTS_INCOMPLETE_DATA);
Radek Krejci084289f2019-07-09 17:35:30 +0200202
203 LY_CHECK_ARG_RET(ctx, node, value, LY_EINVAL);
204
205 type = ((struct lysc_node_leaf*)node->schema)->type;
Radek Krejci73dead22019-07-11 16:46:16 +0200206 rc = type->plugin->store(ctx ? ctx : node->schema->module->ctx, type, value, value_len, options,
Michal Vaskof03ed032020-03-04 13:31:44 +0100207 get_prefix, get_prefix_data, format, tree ? (void*)node : (void*)node->schema, tree,
Radek Krejci73dead22019-07-11 16:46:16 +0200208 NULL, NULL, &err);
209 if (rc == LY_EINCOMPLETE) {
210 return rc;
211 } else if (rc) {
212 if (err) {
213 if (ctx) {
214 ly_err_print(err);
215 LOGVAL(ctx, LY_VLOG_STR, err->path, err->vecode, err->msg);
Radek Krejci084289f2019-07-09 17:35:30 +0200216 }
Radek Krejci73dead22019-07-11 16:46:16 +0200217 ly_err_free(err);
Radek Krejci084289f2019-07-09 17:35:30 +0200218 }
Radek Krejci73dead22019-07-11 16:46:16 +0200219 return rc;
Radek Krejci084289f2019-07-09 17:35:30 +0200220 }
221
222 return LY_SUCCESS;
223}
224
225API LY_ERR
226lyd_value_compare(const struct lyd_node_term *node, const char *value, size_t value_len,
Michal Vaskof03ed032020-03-04 13:31:44 +0100227 ly_clb_resolve_prefix get_prefix, void *get_prefix_data, LYD_FORMAT format, const struct lyd_node *tree)
Radek Krejci084289f2019-07-09 17:35:30 +0200228{
229 LY_ERR ret = LY_SUCCESS, rc;
230 struct ly_err_item *err = NULL;
231 struct ly_ctx *ctx;
232 struct lysc_type *type;
Radek Krejci084289f2019-07-09 17:35:30 +0200233 struct lyd_value data = {0};
Michal Vaskof03ed032020-03-04 13:31:44 +0100234 int options = LY_TYPE_OPTS_STORE | (tree ? 0 : LY_TYPE_OPTS_INCOMPLETE_DATA);
Radek Krejci084289f2019-07-09 17:35:30 +0200235
236 LY_CHECK_ARG_RET(node ? node->schema->module->ctx : NULL, node, value, LY_EINVAL);
237
238 ctx = node->schema->module->ctx;
239 type = ((struct lysc_node_leaf*)node->schema)->type;
Radek Krejci73dead22019-07-11 16:46:16 +0200240 rc = type->plugin->store(ctx, type, value, value_len, options, get_prefix, get_prefix_data, format, (struct lyd_node*)node,
Michal Vaskof03ed032020-03-04 13:31:44 +0100241 tree, &data, NULL, &err);
Radek Krejci73dead22019-07-11 16:46:16 +0200242 if (rc == LY_EINCOMPLETE) {
243 ret = rc;
244 /* continue with comparing, just remember what to return if storing is ok */
245 } else if (rc) {
246 /* value to compare is invalid */
247 ret = LY_EINVAL;
248 if (err) {
249 ly_err_free(err);
Radek Krejci084289f2019-07-09 17:35:30 +0200250 }
Radek Krejci73dead22019-07-11 16:46:16 +0200251 goto cleanup;
Radek Krejci084289f2019-07-09 17:35:30 +0200252 }
253
254 /* compare data */
Radek Krejci5af04842019-07-12 11:32:07 +0200255 if (type->plugin->compare(&node->value, &data)) {
256 /* do not assign it directly from the compare callback to keep possible LY_EINCOMPLETE from validation */
Michal Vaskob3ddccb2020-07-09 15:43:05 +0200257 ret = LY_ENOT;
Radek Krejci5af04842019-07-12 11:32:07 +0200258 }
Radek Krejci084289f2019-07-09 17:35:30 +0200259
260cleanup:
Radek Krejci62903c32019-07-15 14:42:05 +0200261 type->plugin->free(ctx, &data);
Radek Krejci084289f2019-07-09 17:35:30 +0200262
263 return ret;
264}
265
Michal Vasko5ec7cda2019-09-11 13:43:08 +0200266API const char *
267lyd_value2str(const struct lyd_node_term *node, int *dynamic)
268{
269 LY_CHECK_ARG_RET(node ? node->schema->module->ctx : NULL, node, dynamic, NULL);
270
271 return node->value.realtype->plugin->print(&node->value, LYD_JSON, json_print_get_prefix, NULL, dynamic);
272}
273
274API const char *
Michal Vasko9f96a052020-03-10 09:41:45 +0100275lyd_meta2str(const struct lyd_meta *meta, int *dynamic)
Michal Vasko5ec7cda2019-09-11 13:43:08 +0200276{
Michal Vasko9f96a052020-03-10 09:41:45 +0100277 LY_CHECK_ARG_RET(meta ? meta->parent->schema->module->ctx : NULL, meta, dynamic, NULL);
Michal Vasko5ec7cda2019-09-11 13:43:08 +0200278
Michal Vasko9f96a052020-03-10 09:41:45 +0100279 return meta->value.realtype->plugin->print(&meta->value, LYD_JSON, json_print_get_prefix, NULL, dynamic);
Michal Vasko5ec7cda2019-09-11 13:43:08 +0200280}
281
Radek Krejci7931b192020-06-25 17:05:03 +0200282static LYD_FORMAT
Michal Vasko63f3d842020-07-08 10:10:14 +0200283lyd_parse_get_format(const struct ly_in *in, LYD_FORMAT format)
Radek Krejcie7b95092019-05-15 11:03:07 +0200284{
Radek Krejcie7b95092019-05-15 11:03:07 +0200285
Radek Krejci7931b192020-06-25 17:05:03 +0200286 if (!format && in->type == LY_IN_FILEPATH) {
Radek Krejcie7b95092019-05-15 11:03:07 +0200287 /* unknown format - try to detect it from filename's suffix */
Radek Krejci7931b192020-06-25 17:05:03 +0200288 const char *path = in->method.fpath.filepath;
289 size_t len = strlen(path);
Radek Krejcie7b95092019-05-15 11:03:07 +0200290
291 /* ignore trailing whitespaces */
292 for (; len > 0 && isspace(path[len - 1]); len--);
293
294 if (len >= 5 && !strncmp(&path[len - 4], ".xml", 4)) {
295 format = LYD_XML;
296#if 0
297 } else if (len >= 6 && !strncmp(&path[len - 5], ".json", 5)) {
298 format = LYD_JSON;
Radek Krejci7931b192020-06-25 17:05:03 +0200299#endif
Radek Krejcie7b95092019-05-15 11:03:07 +0200300 } else if (len >= 5 && !strncmp(&path[len - 4], ".lyb", 4)) {
301 format = LYD_LYB;
Radek Krejci7931b192020-06-25 17:05:03 +0200302 } /* else still unknown */
Radek Krejcie7b95092019-05-15 11:03:07 +0200303 }
304
Radek Krejci7931b192020-06-25 17:05:03 +0200305 return format;
306}
Radek Krejcie7b95092019-05-15 11:03:07 +0200307
Radek Krejci7931b192020-06-25 17:05:03 +0200308API LY_ERR
Michal Vasko63f3d842020-07-08 10:10:14 +0200309lyd_parse_data(const struct ly_ctx *ctx, struct ly_in *in, LYD_FORMAT format, int parse_options, int validate_options,
310 struct lyd_node **tree)
Radek Krejci7931b192020-06-25 17:05:03 +0200311{
312 LY_CHECK_ARG_RET(ctx, ctx, in, tree, LY_EINVAL);
313 LY_CHECK_ARG_RET(ctx, !(parse_options & ~LYD_PARSE_OPTS_MASK), LY_EINVAL);
314 LY_CHECK_ARG_RET(ctx, !(validate_options & ~LYD_VALIDATE_OPTS_MASK), LY_EINVAL);
315
316 format = lyd_parse_get_format(in, format);
317 LY_CHECK_ARG_RET(ctx, format, LY_EINVAL);
318
Michal Vasko63f3d842020-07-08 10:10:14 +0200319 /* remember input position */
320 in->func_start = in->current;
Radek Krejci7931b192020-06-25 17:05:03 +0200321
322 switch (format) {
323 case LYD_XML:
Michal Vasko63f3d842020-07-08 10:10:14 +0200324 return lyd_parse_xml_data(ctx, in, parse_options, validate_options, tree);
Radek Krejci7931b192020-06-25 17:05:03 +0200325#if 0
326 case LYD_JSON:
Michal Vasko63f3d842020-07-08 10:10:14 +0200327 return lyd_parse_json_data(ctx, in, parse_options, validate_options, tree);
Radek Krejci7931b192020-06-25 17:05:03 +0200328#endif
329 case LYD_LYB:
Michal Vasko63f3d842020-07-08 10:10:14 +0200330 return lyd_parse_lyb_data(ctx, in, parse_options, validate_options, tree);
Radek Krejci7931b192020-06-25 17:05:03 +0200331 case LYD_SCHEMA:
332 LOGINT_RET(ctx);
333 }
334
335 /* TODO move here the top-level validation from parser_xml.c's lyd_parse_xml_data() and make
336 * it common for all the lyd_parse_*_data() functions */
337
338 LOGINT_RET(ctx);
339}
340
341API LY_ERR
Michal Vasko63f3d842020-07-08 10:10:14 +0200342lyd_parse_data_mem(const struct ly_ctx *ctx, const char *data, LYD_FORMAT format, int parse_options, int validate_options,
343 struct lyd_node **tree)
Radek Krejci7931b192020-06-25 17:05:03 +0200344{
345 LY_ERR ret;
346 struct ly_in *in;
347
348 LY_CHECK_RET(ly_in_new_memory(data, &in));
349 ret = lyd_parse_data(ctx, in, format, parse_options, validate_options, tree);
350
351 ly_in_free(in, 0);
352 return ret;
353}
354
355API LY_ERR
356lyd_parse_data_fd(const struct ly_ctx *ctx, int fd, LYD_FORMAT format, int parse_options, int validate_options, struct lyd_node **tree)
357{
358 LY_ERR ret;
359 struct ly_in *in;
360
361 LY_CHECK_RET(ly_in_new_fd(fd, &in));
362 ret = lyd_parse_data(ctx, in, format, parse_options, validate_options, tree);
363
364 ly_in_free(in, 0);
365 return ret;
366}
367
368API LY_ERR
369lyd_parse_data_path(const struct ly_ctx *ctx, const char *path, LYD_FORMAT format, int parse_options, int validate_options, struct lyd_node **tree)
370{
371 LY_ERR ret;
372 struct ly_in *in;
373
374 LY_CHECK_RET(ly_in_new_filepath(path, 0, &in));
375 ret = lyd_parse_data(ctx, in, format, parse_options, validate_options, tree);
376
377 ly_in_free(in, 0);
378 return ret;
379}
380
Radek Krejci7931b192020-06-25 17:05:03 +0200381API LY_ERR
382lyd_parse_rpc(const struct ly_ctx *ctx, struct ly_in *in, LYD_FORMAT format, struct lyd_node **tree, struct lyd_node **op)
383{
384 LY_CHECK_ARG_RET(ctx, ctx, in, tree, LY_EINVAL);
385
386 format = lyd_parse_get_format(in, format);
387 LY_CHECK_ARG_RET(ctx, format, LY_EINVAL);
388
Michal Vasko63f3d842020-07-08 10:10:14 +0200389 /* remember input position */
390 in->func_start = in->current;
391
Radek Krejci7931b192020-06-25 17:05:03 +0200392 switch (format) {
393 case LYD_XML:
Michal Vasko63f3d842020-07-08 10:10:14 +0200394 return lyd_parse_xml_rpc(ctx, in, tree, op);
Radek Krejci7931b192020-06-25 17:05:03 +0200395#if 0
396 case LYD_JSON:
Michal Vasko63f3d842020-07-08 10:10:14 +0200397 return lyd_parse_json_rpc(ctx, in, tree, op);
Radek Krejci7931b192020-06-25 17:05:03 +0200398#endif
399 case LYD_LYB:
Michal Vasko63f3d842020-07-08 10:10:14 +0200400 return lyd_parse_lyb_rpc(ctx, in, tree, op);
Radek Krejci7931b192020-06-25 17:05:03 +0200401 case LYD_SCHEMA:
402 LOGINT_RET(ctx);
403 }
404
405 LOGINT_RET(ctx);
406}
407
408API LY_ERR
Michal Vasko63f3d842020-07-08 10:10:14 +0200409lyd_parse_reply(const struct lyd_node *request, struct ly_in *in, LYD_FORMAT format, struct lyd_node **tree,
410 struct lyd_node **op)
Radek Krejci7931b192020-06-25 17:05:03 +0200411{
412 LY_CHECK_ARG_RET(NULL, request, LY_EINVAL);
413 LY_CHECK_ARG_RET(LYD_NODE_CTX(request), in, tree, LY_EINVAL);
414
415 format = lyd_parse_get_format(in, format);
416 LY_CHECK_ARG_RET(LYD_NODE_CTX(request), format, LY_EINVAL);
417
Michal Vasko63f3d842020-07-08 10:10:14 +0200418 /* remember input position */
419 in->func_start = in->current;
420
Radek Krejci7931b192020-06-25 17:05:03 +0200421 switch (format) {
422 case LYD_XML:
Michal Vasko63f3d842020-07-08 10:10:14 +0200423 return lyd_parse_xml_reply(request, in, tree, op);
Radek Krejci7931b192020-06-25 17:05:03 +0200424#if 0
425 case LYD_JSON:
Michal Vasko63f3d842020-07-08 10:10:14 +0200426 return lyd_parse_json_reply(request, in, tree, op);
Radek Krejci7931b192020-06-25 17:05:03 +0200427#endif
428 case LYD_LYB:
Michal Vasko63f3d842020-07-08 10:10:14 +0200429 return lyd_parse_lyb_reply(request, in, tree, op);
Radek Krejci7931b192020-06-25 17:05:03 +0200430 case LYD_SCHEMA:
431 LOGINT_RET(LYD_NODE_CTX(request));
432 }
433
434 LOGINT_RET(LYD_NODE_CTX(request));
435}
436
437API LY_ERR
438lyd_parse_notif(const struct ly_ctx *ctx, struct ly_in *in, LYD_FORMAT format, struct lyd_node **tree, struct lyd_node **ntf)
439{
440 LY_CHECK_ARG_RET(ctx, ctx, in, tree, LY_EINVAL);
441
442 format = lyd_parse_get_format(in, format);
443 LY_CHECK_ARG_RET(ctx, format, LY_EINVAL);
444
Michal Vasko63f3d842020-07-08 10:10:14 +0200445 /* remember input position */
446 in->func_start = in->current;
447
Radek Krejci7931b192020-06-25 17:05:03 +0200448 switch (format) {
449 case LYD_XML:
Michal Vasko63f3d842020-07-08 10:10:14 +0200450 return lyd_parse_xml_notif(ctx, in, tree, ntf);
Radek Krejci7931b192020-06-25 17:05:03 +0200451#if 0
452 case LYD_JSON:
Michal Vasko63f3d842020-07-08 10:10:14 +0200453 return lyd_parse_json_notif(ctx, in, tree, ntf);
Radek Krejci7931b192020-06-25 17:05:03 +0200454#endif
455 case LYD_LYB:
Michal Vasko63f3d842020-07-08 10:10:14 +0200456 return lyd_parse_lyb_notif(ctx, in, tree, ntf);
Radek Krejci7931b192020-06-25 17:05:03 +0200457 case LYD_SCHEMA:
458 LOGINT_RET(ctx);
459 }
460
461 LOGINT_RET(ctx);
Radek Krejcie7b95092019-05-15 11:03:07 +0200462}
Radek Krejci084289f2019-07-09 17:35:30 +0200463
Michal Vasko90932a92020-02-12 14:33:03 +0100464LY_ERR
465lyd_create_term(const struct lysc_node *schema, const char *value, size_t value_len, int *dynamic,
466 ly_clb_resolve_prefix get_prefix, void *prefix_data, LYD_FORMAT format, struct lyd_node **node)
467{
468 LY_ERR ret;
469 struct lyd_node_term *term;
470
Michal Vasko9b368d32020-02-14 13:53:31 +0100471 assert(schema->nodetype & LYD_NODE_TERM);
472
Michal Vasko90932a92020-02-12 14:33:03 +0100473 term = calloc(1, sizeof *term);
474 LY_CHECK_ERR_RET(!term, LOGMEM(schema->module->ctx), LY_EMEM);
475
476 term->schema = schema;
477 term->prev = (struct lyd_node *)term;
Michal Vasko9b368d32020-02-14 13:53:31 +0100478 term->flags = LYD_NEW;
Michal Vasko90932a92020-02-12 14:33:03 +0100479
480 ret = lyd_value_parse(term, value, value_len, dynamic, 0, get_prefix, prefix_data, format, NULL);
481 if (ret && (ret != LY_EINCOMPLETE)) {
482 free(term);
483 return ret;
484 }
Michal Vasko9b368d32020-02-14 13:53:31 +0100485 lyd_hash((struct lyd_node *)term);
486
487 *node = (struct lyd_node *)term;
488 return ret;
489}
490
491LY_ERR
492lyd_create_term2(const struct lysc_node *schema, const struct lyd_value *val, struct lyd_node **node)
493{
494 LY_ERR ret;
495 struct lyd_node_term *term;
496 struct lysc_type *type;
497
498 assert(schema->nodetype & LYD_NODE_TERM);
Michal Vasko00cbf532020-06-15 13:58:47 +0200499 assert(val && val->realtype);
Michal Vasko9b368d32020-02-14 13:53:31 +0100500
501 term = calloc(1, sizeof *term);
502 LY_CHECK_ERR_RET(!term, LOGMEM(schema->module->ctx), LY_EMEM);
503
504 term->schema = schema;
505 term->prev = (struct lyd_node *)term;
506 term->flags = LYD_NEW;
507
508 type = ((struct lysc_node_leaf *)schema)->type;
509 ret = type->plugin->duplicate(schema->module->ctx, val, &term->value);
510 if (ret) {
511 LOGERR(schema->module->ctx, ret, "Value duplication failed.");
512 free(term);
513 return ret;
514 }
Michal Vasko00cbf532020-06-15 13:58:47 +0200515 term->value.realtype = val->realtype;
Michal Vasko9b368d32020-02-14 13:53:31 +0100516 lyd_hash((struct lyd_node *)term);
Michal Vasko90932a92020-02-12 14:33:03 +0100517
518 *node = (struct lyd_node *)term;
519 return ret;
520}
521
522LY_ERR
523lyd_create_inner(const struct lysc_node *schema, struct lyd_node **node)
524{
525 struct lyd_node_inner *in;
526
Michal Vasko9b368d32020-02-14 13:53:31 +0100527 assert(schema->nodetype & LYD_NODE_INNER);
528
Michal Vasko90932a92020-02-12 14:33:03 +0100529 in = calloc(1, sizeof *in);
530 LY_CHECK_ERR_RET(!in, LOGMEM(schema->module->ctx), LY_EMEM);
531
532 in->schema = schema;
533 in->prev = (struct lyd_node *)in;
Michal Vasko9b368d32020-02-14 13:53:31 +0100534 in->flags = LYD_NEW;
Michal Vasko90932a92020-02-12 14:33:03 +0100535
Michal Vasko9b368d32020-02-14 13:53:31 +0100536 /* do not hash list with keys, we need them for the hash */
537 if ((schema->nodetype != LYS_LIST) || (schema->flags & LYS_KEYLESS)) {
538 lyd_hash((struct lyd_node *)in);
539 }
Michal Vasko90932a92020-02-12 14:33:03 +0100540
541 *node = (struct lyd_node *)in;
542 return LY_SUCCESS;
543}
544
Michal Vasko90932a92020-02-12 14:33:03 +0100545LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +0200546lyd_create_list(const struct lysc_node *schema, const struct ly_path_predicate *predicates, struct lyd_node **node)
Michal Vasko90932a92020-02-12 14:33:03 +0100547{
548 LY_ERR ret = LY_SUCCESS;
Michal Vasko90932a92020-02-12 14:33:03 +0100549 struct lyd_node *list = NULL, *key;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200550 LY_ARRAY_COUNT_TYPE u;
Michal Vasko90932a92020-02-12 14:33:03 +0100551
Michal Vasko004d3152020-06-11 19:59:22 +0200552 assert((schema->nodetype == LYS_LIST) && !(schema->flags & LYS_KEYLESS));
Michal Vasko90932a92020-02-12 14:33:03 +0100553
554 /* create list */
555 LY_CHECK_GOTO(ret = lyd_create_inner(schema, &list), cleanup);
556
Michal Vasko90932a92020-02-12 14:33:03 +0100557 /* create and insert all the keys */
Michal Vasko004d3152020-06-11 19:59:22 +0200558 LY_ARRAY_FOR(predicates, u) {
559 LY_CHECK_GOTO(ret = lyd_create_term2(predicates[u].key, &predicates[u].value, &key), cleanup);
Michal Vasko90932a92020-02-12 14:33:03 +0100560 lyd_insert_node(list, NULL, key);
561 }
562
Michal Vasko9b368d32020-02-14 13:53:31 +0100563 /* hash having all the keys */
564 lyd_hash(list);
565
Michal Vasko90932a92020-02-12 14:33:03 +0100566 /* success */
567 *node = list;
568 list = NULL;
569
570cleanup:
571 lyd_free_tree(list);
Michal Vasko004d3152020-06-11 19:59:22 +0200572 return ret;
573}
574
575static LY_ERR
576lyd_create_list2(const struct lysc_node *schema, const char *keys, size_t keys_len, struct lyd_node **node)
577{
578 LY_ERR ret = LY_SUCCESS;
579 struct lyxp_expr *expr = NULL;
580 uint16_t exp_idx = 0;
581 enum ly_path_pred_type pred_type = 0;
582 struct ly_path_predicate *predicates = NULL;
583
584 /* parse keys */
585 LY_CHECK_GOTO(ret = ly_path_parse_predicate(schema->module->ctx, keys, keys_len, LY_PATH_PREFIX_OPTIONAL,
586 LY_PATH_PRED_KEYS, &expr), cleanup);
587
588 /* compile them */
Michal Vasko00cbf532020-06-15 13:58:47 +0200589 LY_CHECK_GOTO(ret = ly_path_compile_predicate(schema->module->ctx, NULL, schema, expr, &exp_idx, lydjson_resolve_prefix,
590 NULL, LYD_JSON, &predicates, &pred_type), cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +0200591
592 /* create the list node */
593 LY_CHECK_GOTO(ret = lyd_create_list(schema, predicates, node), cleanup);
594
595cleanup:
596 lyxp_expr_free(schema->module->ctx, expr);
597 ly_path_predicates_free(schema->module->ctx, pred_type, NULL, predicates);
Michal Vasko90932a92020-02-12 14:33:03 +0100598 return ret;
599}
600
601LY_ERR
602lyd_create_any(const struct lysc_node *schema, const void *value, LYD_ANYDATA_VALUETYPE value_type, struct lyd_node **node)
603{
604 struct lyd_node_any *any;
605
Michal Vasko9b368d32020-02-14 13:53:31 +0100606 assert(schema->nodetype & LYD_NODE_ANY);
607
Michal Vasko90932a92020-02-12 14:33:03 +0100608 any = calloc(1, sizeof *any);
609 LY_CHECK_ERR_RET(!any, LOGMEM(schema->module->ctx), LY_EMEM);
610
611 any->schema = schema;
612 any->prev = (struct lyd_node *)any;
Michal Vasko9b368d32020-02-14 13:53:31 +0100613 any->flags = LYD_NEW;
Michal Vasko90932a92020-02-12 14:33:03 +0100614
615 any->value.xml = value;
616 any->value_type = value_type;
Michal Vasko9b368d32020-02-14 13:53:31 +0100617 lyd_hash((struct lyd_node *)any);
Michal Vasko90932a92020-02-12 14:33:03 +0100618
619 *node = (struct lyd_node *)any;
620 return LY_SUCCESS;
621}
622
Michal Vasko52927e22020-03-16 17:26:14 +0100623LY_ERR
624lyd_create_opaq(const struct ly_ctx *ctx, const char *name, size_t name_len, const char *value, size_t value_len,
625 int *dynamic, LYD_FORMAT format, struct ly_prefix *val_prefs, const char *prefix, size_t pref_len,
626 const char *ns, struct lyd_node **node)
627{
628 struct lyd_node_opaq *opaq;
629
630 assert(ctx && name && name_len && ns);
631
632 if (!value_len) {
633 value = "";
634 }
635
636 opaq = calloc(1, sizeof *opaq);
637 LY_CHECK_ERR_RET(!opaq, LOGMEM(ctx), LY_EMEM);
638
639 opaq->prev = (struct lyd_node *)opaq;
640
641 opaq->name = lydict_insert(ctx, name, name_len);
642 opaq->format = format;
643 if (pref_len) {
644 opaq->prefix.pref = lydict_insert(ctx, prefix, pref_len);
645 }
646 opaq->prefix.ns = lydict_insert(ctx, ns, 0);
647 opaq->val_prefs = val_prefs;
648 if (dynamic && *dynamic) {
649 opaq->value = lydict_insert_zc(ctx, (char *)value);
650 *dynamic = 0;
651 } else {
652 opaq->value = lydict_insert(ctx, value, value_len);
653 }
654 opaq->ctx = ctx;
655
656 *node = (struct lyd_node *)opaq;
657 return LY_SUCCESS;
658}
659
Michal Vasko013a8182020-03-03 10:46:53 +0100660API struct lyd_node *
661lyd_new_inner(struct lyd_node *parent, const struct lys_module *module, const char *name)
662{
663 struct lyd_node *ret = NULL;
664 const struct lysc_node *schema;
665 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
666
667 LY_CHECK_ARG_RET(ctx, parent || module, name, NULL);
668
Michal Vaskof03ed032020-03-04 13:31:44 +0100669 if (!module) {
670 module = parent->schema->module;
671 }
672
Michal Vasko1bf09392020-03-27 12:38:10 +0100673 schema = lys_find_child(parent ? parent->schema : NULL, module, name, 0, LYS_CONTAINER | LYS_NOTIF | LYS_RPC | LYS_ACTION, 0);
Michal Vaskob00f3cf2020-05-27 11:20:13 +0200674 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "Inner node (and not a list) \"%s\" not found.", name), NULL);
Michal Vasko013a8182020-03-03 10:46:53 +0100675
676 if (!lyd_create_inner(schema, &ret) && parent) {
677 lyd_insert_node(parent, NULL, ret);
678 }
679 return ret;
680}
681
682API struct lyd_node *
683lyd_new_list(struct lyd_node *parent, const struct lys_module *module, const char *name, ...)
684{
685 struct lyd_node *ret = NULL, *key;
686 const struct lysc_node *schema, *key_s;
687 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
688 va_list ap;
689 const char *key_val;
690 LY_ERR rc = LY_SUCCESS;
691
692 LY_CHECK_ARG_RET(ctx, parent || module, name, NULL);
693
Michal Vaskof03ed032020-03-04 13:31:44 +0100694 if (!module) {
695 module = parent->schema->module;
696 }
697
Michal Vasko013a8182020-03-03 10:46:53 +0100698 schema = lys_find_child(parent ? parent->schema : NULL, module, name, 0, LYS_LIST, 0);
699 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "List node \"%s\" not found.", name), NULL);
700
701 /* create list inner node */
702 LY_CHECK_RET(lyd_create_inner(schema, &ret), NULL);
703
704 va_start(ap, name);
705
706 /* create and insert all the keys */
707 for (key_s = lysc_node_children(schema, 0); key_s && (key_s->flags & LYS_KEY); key_s = key_s->next) {
708 key_val = va_arg(ap, const char *);
709
Michal Vaskof03ed032020-03-04 13:31:44 +0100710 rc = lyd_create_term(key_s, key_val, key_val ? strlen(key_val) : 0, NULL, lydjson_resolve_prefix, NULL, LYD_JSON, &key);
Michal Vaskocbff3e92020-05-27 12:56:41 +0200711 LY_CHECK_GOTO(rc && (rc != LY_EINCOMPLETE), cleanup);
712 rc = LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +0100713 lyd_insert_node(ret, NULL, key);
714 }
715
716 /* hash having all the keys */
717 lyd_hash(ret);
718
719 if (parent) {
720 lyd_insert_node(parent, NULL, ret);
721 }
722
723cleanup:
724 if (rc) {
725 lyd_free_tree(ret);
726 ret = NULL;
727 }
728 va_end(ap);
729 return ret;
730}
731
732API struct lyd_node *
733lyd_new_list2(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *keys)
734{
735 struct lyd_node *ret = NULL;
736 const struct lysc_node *schema;
737 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
738
739 LY_CHECK_ARG_RET(ctx, parent || module, name, NULL);
740
Michal Vaskof03ed032020-03-04 13:31:44 +0100741 if (!module) {
742 module = parent->schema->module;
743 }
Michal Vasko004d3152020-06-11 19:59:22 +0200744 if (!keys) {
745 keys = "";
746 }
Michal Vaskof03ed032020-03-04 13:31:44 +0100747
Michal Vasko004d3152020-06-11 19:59:22 +0200748 /* find schema node */
Michal Vasko013a8182020-03-03 10:46:53 +0100749 schema = lys_find_child(parent ? parent->schema : NULL, module, name, 0, LYS_LIST, 0);
750 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "List node \"%s\" not found.", name), NULL);
751
Michal Vasko004d3152020-06-11 19:59:22 +0200752 if ((schema->flags & LYS_KEYLESS) && !keys[0]) {
753 /* key-less list */
754 LY_CHECK_RET(lyd_create_inner(schema, &ret), NULL);
755 } else {
756 /* create the list node */
757 LY_CHECK_RET(lyd_create_list2(schema, keys, strlen(keys), &ret), NULL);
758 }
759
760 if (parent) {
Michal Vasko013a8182020-03-03 10:46:53 +0100761 lyd_insert_node(parent, NULL, ret);
762 }
763 return ret;
764}
765
766API struct lyd_node *
767lyd_new_term(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *val_str)
768{
Michal Vaskocbff3e92020-05-27 12:56:41 +0200769 LY_ERR rc;
Michal Vasko013a8182020-03-03 10:46:53 +0100770 struct lyd_node *ret = NULL;
771 const struct lysc_node *schema;
772 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
773
774 LY_CHECK_ARG_RET(ctx, parent || module, name, NULL);
775
Michal Vaskof03ed032020-03-04 13:31:44 +0100776 if (!module) {
777 module = parent->schema->module;
778 }
779
Michal Vasko013a8182020-03-03 10:46:53 +0100780 schema = lys_find_child(parent ? parent->schema : NULL, module, name, 0, LYD_NODE_TERM, 0);
781 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "Term node \"%s\" not found.", name), NULL);
782
Michal Vaskocbff3e92020-05-27 12:56:41 +0200783 rc = lyd_create_term(schema, val_str, val_str ? strlen(val_str) : 0, NULL, lydjson_resolve_prefix, NULL, LYD_JSON, &ret);
784 LY_CHECK_RET(rc && (rc != LY_EINCOMPLETE), NULL);
785
786 if (parent) {
Michal Vasko013a8182020-03-03 10:46:53 +0100787 lyd_insert_node(parent, NULL, ret);
788 }
789 return ret;
790}
791
792API struct lyd_node *
793lyd_new_any(struct lyd_node *parent, const struct lys_module *module, const char *name, const void *value,
794 LYD_ANYDATA_VALUETYPE value_type)
795{
796 struct lyd_node *ret = NULL;
797 const struct lysc_node *schema;
798 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
799
800 LY_CHECK_ARG_RET(ctx, parent || module, name, NULL);
801
Michal Vaskof03ed032020-03-04 13:31:44 +0100802 if (!module) {
803 module = parent->schema->module;
804 }
805
Michal Vasko013a8182020-03-03 10:46:53 +0100806 schema = lys_find_child(parent ? parent->schema : NULL, module, name, 0, LYD_NODE_ANY, 0);
807 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "Any node \"%s\" not found.", name), NULL);
808
809 if (!lyd_create_any(schema, value, value_type, &ret) && parent) {
810 lyd_insert_node(parent, NULL, ret);
811 }
812 return ret;
813}
814
Michal Vasko4490d312020-06-16 13:08:55 +0200815/**
816 * @brief Update node value.
817 *
818 * @param[in] node Node to update.
819 * @param[in] value New value to set.
820 * @param[in] value_type Type of @p value for any node.
821 * @param[out] new_parent Set to @p node if the value was updated, otherwise set to NULL.
822 * @param[out] new_node Set to @p node if the value was updated, otherwise set to NULL.
823 * @return LY_ERR value.
824 */
Michal Vasko00cbf532020-06-15 13:58:47 +0200825static LY_ERR
826lyd_new_path_update(struct lyd_node *node, const void *value, LYD_ANYDATA_VALUETYPE value_type,
827 struct lyd_node **new_parent, struct lyd_node **new_node)
828{
829 LY_ERR ret = LY_SUCCESS;
830 struct lyd_node *new_any;
831
832 switch (node->schema->nodetype) {
833 case LYS_CONTAINER:
834 case LYS_NOTIF:
835 case LYS_RPC:
836 case LYS_ACTION:
837 case LYS_LIST:
838 case LYS_LEAFLIST:
839 /* if it exists, there is nothing to update */
840 *new_parent = NULL;
841 *new_node = NULL;
842 break;
843 case LYS_LEAF:
844 ret = lyd_change_term(node, value);
845 if ((ret == LY_SUCCESS) || (ret == LY_EEXIST)) {
846 /* there was an actual change (at least of the default flag) */
847 *new_parent = node;
848 *new_node = node;
849 ret = LY_SUCCESS;
850 } else if (ret == LY_ENOT) {
851 /* no change */
852 *new_parent = NULL;
853 *new_node = NULL;
854 ret = LY_SUCCESS;
855 } /* else error */
856 break;
857 case LYS_ANYDATA:
858 case LYS_ANYXML:
859 /* create a new any node */
860 LY_CHECK_RET(lyd_create_any(node->schema, value, value_type, &new_any));
861
862 /* compare with the existing one */
863 if (lyd_compare(node, new_any, 0)) {
864 /* not equal, switch values (so that we can use generic node free) */
865 ((struct lyd_node_any *)new_any)->value = ((struct lyd_node_any *)node)->value;
866 ((struct lyd_node_any *)new_any)->value_type = ((struct lyd_node_any *)node)->value_type;
867 ((struct lyd_node_any *)node)->value.str = value;
868 ((struct lyd_node_any *)node)->value_type = value_type;
869
870 *new_parent = node;
871 *new_node = node;
872 } else {
873 /* they are equal */
874 *new_parent = NULL;
875 *new_node = NULL;
876 }
877 lyd_free_tree(new_any);
878 break;
879 default:
880 LOGINT(LYD_NODE_CTX(node));
881 ret = LY_EINT;
882 break;
883 }
884
885 return ret;
886}
887
Michal Vaskod86997b2020-05-26 15:19:54 +0200888API struct lyd_meta *
889lyd_new_meta(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *val_str)
890{
891 struct lyd_meta *ret = NULL;
Michal Vasko00cbf532020-06-15 13:58:47 +0200892 const struct ly_ctx *ctx;
Michal Vaskod86997b2020-05-26 15:19:54 +0200893 const char *prefix, *tmp;
894 char *str;
895 size_t pref_len, name_len;
896
Michal Vasko00cbf532020-06-15 13:58:47 +0200897 LY_CHECK_ARG_RET(NULL, parent, name, module || strchr(name, ':'), NULL);
898
899 ctx = LYD_NODE_CTX(parent);
Michal Vaskod86997b2020-05-26 15:19:54 +0200900
901 /* parse the name */
902 tmp = name;
903 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
904 LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name);
905 return NULL;
906 }
907
908 /* find the module */
909 if (prefix) {
Michal Vasko0b245382020-07-09 15:43:52 +0200910 str = strndup(prefix, pref_len);
Michal Vaskod86997b2020-05-26 15:19:54 +0200911 module = ly_ctx_get_module_implemented(ctx, str);
912 free(str);
Michal Vasko004d3152020-06-11 19:59:22 +0200913 LY_CHECK_ERR_RET(!module, LOGERR(ctx, LY_EINVAL, "Module \"%.*s\" not found.", pref_len, prefix), NULL);
Michal Vaskod86997b2020-05-26 15:19:54 +0200914 }
915
916 /* set value if none */
917 if (!val_str) {
918 val_str = "";
919 }
920
921 lyd_create_meta(parent, &ret, module, name, name_len, val_str, strlen(val_str), NULL, lydjson_resolve_prefix, NULL,
922 LYD_JSON, parent->schema);
923 return ret;
924}
925
Michal Vasko00cbf532020-06-15 13:58:47 +0200926API struct lyd_node *
927lyd_new_opaq(struct lyd_node *parent, const struct ly_ctx *ctx, const char *name, const char *value,
928 const char *module_name)
929{
930 struct lyd_node *ret = NULL;
931
932 LY_CHECK_ARG_RET(ctx, parent || ctx, name, module_name, NULL);
933
934 if (!ctx) {
935 ctx = LYD_NODE_CTX(parent);
936 }
937 if (!value) {
938 value = "";
939 }
940
941 if (!lyd_create_opaq(ctx, name, strlen(name), value, strlen(value), NULL, LYD_JSON, NULL, NULL, 0, module_name, &ret)
942 && parent) {
943 lyd_insert_node(parent, NULL, ret);
944 }
945 return ret;
946}
947
948API struct ly_attr *
949lyd_new_attr(struct lyd_node *parent, const char *module_name, const char *name, const char *val_str)
950{
951 struct ly_attr *ret = NULL;
952 const struct ly_ctx *ctx;
953 const char *prefix, *tmp;
954 size_t pref_len, name_len;
955
956 LY_CHECK_ARG_RET(NULL, parent, !parent->schema, name, NULL);
957
958 ctx = LYD_NODE_CTX(parent);
959
960 /* parse the name */
961 tmp = name;
962 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
963 LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name);
964 return NULL;
965 }
966
967 /* set value if none */
968 if (!val_str) {
969 val_str = "";
970 }
971
972 ly_create_attr(parent, &ret, ctx, name, name_len, val_str, strlen(val_str), NULL, LYD_JSON, NULL, prefix,
973 pref_len, module_name);
974 return ret;
975}
976
977API LY_ERR
978lyd_change_term(struct lyd_node *term, const char *val_str)
979{
980 LY_ERR ret = LY_SUCCESS;
981 struct lysc_type *type;
982 struct lyd_node_term *t;
983 struct lyd_node *parent;
984 struct lyd_value val = {0};
985 int dflt_change, val_change;
986
987 LY_CHECK_ARG_RET(NULL, term, term->schema, term->schema->nodetype & LYD_NODE_TERM, LY_EINVAL);
988
989 if (!val_str) {
990 val_str = "";
991 }
992 t = (struct lyd_node_term *)term;
993 type = ((struct lysc_node_leaf *)term->schema)->type;
994
995 /* parse the new value */
996 LY_CHECK_GOTO(ret = lyd_value_store(&val, term->schema, val_str, strlen(val_str), NULL, lydjson_resolve_prefix, NULL,
997 LYD_JSON), cleanup);
998
999 /* compare original and new value */
1000 if (type->plugin->compare(&t->value, &val)) {
1001 /* values differ, switch them */
1002 type->plugin->free(LYD_NODE_CTX(term), &t->value);
1003 t->value = val;
1004 memset(&val, 0, sizeof val);
1005 val_change = 1;
1006 } else {
1007 val_change = 0;
1008 }
1009
1010 /* always clear the default flag */
1011 if (term->flags & LYD_DEFAULT) {
1012 for (parent = term; parent; parent = (struct lyd_node *)parent->parent) {
1013 parent->flags &= ~LYD_DEFAULT;
1014 }
1015 dflt_change = 1;
1016 } else {
1017 dflt_change = 0;
1018 }
1019
1020 if (val_change || dflt_change) {
1021 /* make the node non-validated */
1022 term->flags &= LYD_NEW;
1023 }
1024
1025 if (val_change) {
1026 if (term->schema->nodetype == LYS_LEAFLIST) {
1027 /* leaf-list needs to be hashed again and re-inserted into parent */
1028 lyd_unlink_hash(term);
1029 lyd_hash(term);
1030 LY_CHECK_GOTO(ret = lyd_insert_hash(term), cleanup);
1031 } else if ((term->schema->flags & LYS_KEY) && term->parent) {
1032 /* list needs to be updated if its key was changed */
1033 assert(term->parent->schema->nodetype == LYS_LIST);
1034 lyd_unlink_hash((struct lyd_node *)term->parent);
1035 lyd_hash((struct lyd_node *)term->parent);
1036 LY_CHECK_GOTO(ret = lyd_insert_hash((struct lyd_node *)term->parent), cleanup);
1037 } /* else leaf that is not a key, its value is not used for its hash so it does not change */
1038 }
1039
1040 /* retrun value */
1041 if (!val_change) {
1042 if (dflt_change) {
1043 /* only default flag change */
1044 ret = LY_EEXIST;
1045 } else {
1046 /* no change */
1047 ret = LY_ENOT;
1048 }
1049 } /* else value changed, LY_SUCCESS */
1050
1051cleanup:
1052 type->plugin->free(LYD_NODE_CTX(term), &val);
1053 return ret;
1054}
1055
Michal Vasko41586352020-07-13 13:54:25 +02001056API LY_ERR
1057lyd_change_meta(struct lyd_meta *meta, const char *val_str)
1058{
1059 LY_ERR ret = LY_SUCCESS;
1060 struct lyd_meta *m2;
1061 struct lyd_value val;
1062 int val_change;
1063
1064 LY_CHECK_ARG_RET(NULL, meta, LY_EINVAL);
1065
1066 if (!val_str) {
1067 val_str = "";
1068 }
1069
1070 /* parse the new value into a new meta structure */
1071 LY_CHECK_GOTO(ret = lyd_create_meta(NULL, &m2, meta->annotation->module, meta->name, strlen(meta->name), val_str,
1072 strlen(val_str), NULL, lydjson_resolve_prefix, NULL, LYD_JSON, NULL), cleanup);
1073
1074 /* compare original and new value */
1075 if (lyd_compare_meta(meta, m2)) {
1076 /* values differ, switch them */
1077 val = meta->value;
1078 meta->value = m2->value;
1079 m2->value = val;
1080 val_change = 1;
1081 } else {
1082 val_change = 0;
1083 }
1084
1085 /* retrun value */
1086 if (!val_change) {
1087 /* no change */
1088 ret = LY_ENOT;
1089 } /* else value changed, LY_SUCCESS */
1090
1091cleanup:
1092 return ret;
1093}
1094
Michal Vasko00cbf532020-06-15 13:58:47 +02001095API struct lyd_node *
1096lyd_new_path(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const char *value, int options)
1097{
Michal Vaskoa8f9eb32020-06-16 13:07:12 +02001098 struct lyd_node *new_parent = NULL;
Michal Vasko00cbf532020-06-15 13:58:47 +02001099
Michal Vaskoa8f9eb32020-06-16 13:07:12 +02001100 lyd_new_path2(parent, ctx, path, value, 0, options, &new_parent, NULL);
1101 return new_parent;
Michal Vasko00cbf532020-06-15 13:58:47 +02001102}
1103
1104API struct lyd_node *
1105lyd_new_path_any(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const void *value,
1106 LYD_ANYDATA_VALUETYPE value_type, int options)
1107{
Michal Vaskoa8f9eb32020-06-16 13:07:12 +02001108 struct lyd_node *new_parent = NULL;
Michal Vasko00cbf532020-06-15 13:58:47 +02001109
Michal Vaskoa8f9eb32020-06-16 13:07:12 +02001110 lyd_new_path2(parent, ctx, path, value, value_type, options, &new_parent, NULL);
1111 return new_parent;
Michal Vasko00cbf532020-06-15 13:58:47 +02001112}
1113
1114API LY_ERR
1115lyd_new_path2(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const void *value,
1116 LYD_ANYDATA_VALUETYPE value_type, int options, struct lyd_node **new_parent, struct lyd_node **new_node)
1117{
1118 LY_ERR ret = LY_SUCCESS, r;
1119 struct lyxp_expr *exp = NULL;
1120 struct ly_path *p = NULL;
1121 struct lyd_node *nparent = NULL, *nnode = NULL, *node = NULL, *cur_parent;
1122 const struct lysc_node *schema;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001123 LY_ARRAY_COUNT_TYPE path_idx = 0;
Michal Vasko00cbf532020-06-15 13:58:47 +02001124 struct ly_path_predicate *pred;
1125
1126 LY_CHECK_ARG_RET(ctx, parent || ctx, path, (path[0] == '/') || parent, LY_EINVAL);
1127
1128 if (!ctx) {
1129 ctx = LYD_NODE_CTX(parent);
1130 }
1131
1132 /* parse path */
1133 LY_CHECK_GOTO(ret = ly_path_parse(ctx, path, strlen(path), LY_PATH_BEGIN_EITHER, LY_PATH_LREF_FALSE,
1134 LY_PATH_PREFIX_OPTIONAL, LY_PATH_PRED_SIMPLE, &exp), cleanup);
1135
1136 /* compile path */
1137 LY_CHECK_GOTO(ret = ly_path_compile(ctx, NULL, parent ? parent->schema : NULL, exp, LY_PATH_LREF_FALSE,
1138 options & LYD_NEWOPT_OUTPUT ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT,
1139 LY_PATH_TARGET_MANY, lydjson_resolve_prefix, NULL, LYD_JSON, &p), cleanup);
1140
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001141 schema = p[LY_ARRAY_COUNT(p) - 1].node;
1142 if ((schema->nodetype == LYS_LIST) && (p[LY_ARRAY_COUNT(p) - 1].pred_type == LY_PATH_PREDTYPE_NONE)
Michal Vasko00cbf532020-06-15 13:58:47 +02001143 && !(options & LYD_NEWOPT_OPAQ)) {
1144 LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_XPATH, "Predicate missing for %s \"%s\" in path.",
1145 lys_nodetype2str(schema->nodetype), schema->name);
1146 ret = LY_EINVAL;
1147 goto cleanup;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001148 } else if ((schema->nodetype == LYS_LEAFLIST) && (p[LY_ARRAY_COUNT(p) - 1].pred_type == LY_PATH_PREDTYPE_NONE)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001149 /* parse leafref value into a predicate, if not defined in the path */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001150 p[LY_ARRAY_COUNT(p) - 1].pred_type = LY_PATH_PREDTYPE_LEAFLIST;
1151 LY_ARRAY_NEW_GOTO(ctx, p[LY_ARRAY_COUNT(p) - 1].predicates, pred, ret, cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001152
1153 if (!value) {
1154 value = "";
1155 }
1156
1157 r = LY_SUCCESS;
1158 if (options & LYD_NEWOPT_OPAQ) {
1159 r = lys_value_validate(NULL, schema, value, strlen(value), lydjson_resolve_prefix, NULL, LYD_JSON);
1160 }
1161 if (!r) {
1162 LY_CHECK_GOTO(ret = lyd_value_store(&pred->value, schema, value, strlen(value), NULL, lydjson_resolve_prefix,
1163 NULL, LYD_JSON), cleanup);
1164 } /* else we have opaq flag and the value is not valid, leavne no predicate and then create an opaque node */
1165 }
1166
1167 /* try to find any existing nodes in the path */
1168 if (parent) {
1169 ret = ly_path_eval_partial(p, parent, &path_idx, &node);
1170 if (ret == LY_SUCCESS) {
1171 /* the node exists, are we supposed to update it or is it just a default? */
1172 if (!(options & LYD_NEWOPT_UPDATE) && !(node->flags & LYD_DEFAULT)) {
1173 LOGERR(ctx, LY_EEXIST, "Path \"%s\" already exists", path);
1174 ret = LY_EEXIST;
1175 goto cleanup;
1176 }
1177
1178 /* update the existing node */
1179 ret = lyd_new_path_update(node, value, value_type, &nparent, &nnode);
1180 goto cleanup;
1181 } else if (ret == LY_EINCOMPLETE) {
1182 /* some nodes were found, adjust the iterator to the next segment */
1183 ++path_idx;
1184 } else if (ret == LY_ENOTFOUND) {
1185 /* we will create the nodes from top-level, default behavior (absolute path), or from the parent (relative path) */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001186 if (lysc_data_parent(p[LY_ARRAY_COUNT(p) - 1].node)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001187 node = parent;
1188 }
1189 } else {
1190 /* error */
1191 goto cleanup;
1192 }
1193 }
1194
1195 /* create all the non-existing nodes in a loop */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001196 for (; path_idx < LY_ARRAY_COUNT(p); ++path_idx) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001197 cur_parent = node;
1198 schema = p[path_idx].node;
1199
1200 switch (schema->nodetype) {
1201 case LYS_LIST:
1202 if (!(schema->flags & LYS_KEYLESS)) {
1203 if ((options & LYD_NEWOPT_OPAQ) && (p[path_idx].pred_type == LY_PATH_PREDTYPE_NONE)) {
1204 /* creating opaque list without keys */
1205 LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), NULL, 0, NULL,
1206 LYD_JSON, NULL, NULL, 0, schema->module->name, &node), cleanup);
1207 } else {
1208 assert(p[path_idx].pred_type == LY_PATH_PREDTYPE_LIST);
1209 LY_CHECK_GOTO(ret = lyd_create_list(schema, p[path_idx].predicates, &node), cleanup);
1210 }
1211 break;
1212 }
1213 /* fallthrough */
1214 case LYS_CONTAINER:
1215 case LYS_NOTIF:
1216 case LYS_RPC:
1217 case LYS_ACTION:
1218 LY_CHECK_GOTO(ret = lyd_create_inner(schema, &node), cleanup);
1219 break;
1220 case LYS_LEAFLIST:
1221 if ((options & LYD_NEWOPT_OPAQ) && (p[path_idx].pred_type == LY_PATH_PREDTYPE_NONE)) {
1222 /* creating opaque leaf-list without value */
1223 LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), NULL, 0, NULL,
1224 LYD_JSON, NULL, NULL, 0, schema->module->name, &node), cleanup);
1225 } else {
1226 assert(p[path_idx].pred_type == LY_PATH_PREDTYPE_LEAFLIST);
1227 LY_CHECK_GOTO(ret = lyd_create_term2(schema, &p[path_idx].predicates[0].value, &node), cleanup);
1228 }
1229 break;
1230 case LYS_LEAF:
1231 /* make there is some value */
1232 if (!value) {
1233 value = "";
1234 }
1235
1236 r = LY_SUCCESS;
1237 if (options & LYD_NEWOPT_OPAQ) {
1238 r = lys_value_validate(NULL, schema, value, strlen(value), lydjson_resolve_prefix, NULL, LYD_JSON);
1239 }
1240 if (!r) {
1241 LY_CHECK_GOTO(ret = lyd_create_term(schema, value, strlen(value), NULL, lydjson_resolve_prefix, NULL,
1242 LYD_JSON, &node), cleanup);
1243 } else {
1244 /* creating opaque leaf without value */
1245 LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), NULL, 0, NULL,
1246 LYD_JSON, NULL, NULL, 0, schema->module->name, &node), cleanup);
1247 }
1248 break;
1249 case LYS_ANYDATA:
1250 case LYS_ANYXML:
1251 LY_CHECK_GOTO(ret = lyd_create_any(schema, value, value_type, &node), cleanup);
1252 break;
1253 default:
1254 LOGINT(ctx);
1255 ret = LY_EINT;
1256 goto cleanup;
1257 }
1258
1259 if (cur_parent) {
1260 /* connect to the parent */
1261 lyd_insert_node(cur_parent, NULL, node);
1262 } else if (parent) {
1263 /* connect to top-level siblings */
1264 lyd_insert_node(NULL, &parent, node);
1265 }
1266
1267 /* update remembered nodes */
1268 if (!nparent) {
1269 nparent = node;
1270 }
1271 nnode = node;
1272 }
1273
1274cleanup:
1275 lyxp_expr_free(ctx, exp);
1276 ly_path_free(ctx, p);
1277 if (!ret) {
1278 /* set out params only on success */
1279 if (new_parent) {
1280 *new_parent = nparent;
1281 }
1282 if (new_node) {
1283 *new_node = nnode;
1284 }
1285 }
1286 return ret;
1287}
1288
Michal Vasko90932a92020-02-12 14:33:03 +01001289struct lyd_node *
1290lyd_get_prev_key_anchor(const struct lyd_node *first_sibling, const struct lysc_node *new_key)
1291{
1292 const struct lysc_node *prev_key;
1293 struct lyd_node *match = NULL;
1294
1295 if (!first_sibling) {
1296 return NULL;
1297 }
1298
1299 for (prev_key = new_key->prev; !match && prev_key->next; prev_key = prev_key->prev) {
1300 lyd_find_sibling_val(first_sibling, prev_key, NULL, 0, &match);
1301 }
1302
1303 return match;
1304}
1305
1306/**
1307 * @brief Insert node after a sibling.
1308 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001309 * Handles inserting into NP containers and key-less lists.
1310 *
Michal Vasko90932a92020-02-12 14:33:03 +01001311 * @param[in] sibling Sibling to insert after.
1312 * @param[in] node Node to insert.
1313 */
1314static void
Michal Vaskof03ed032020-03-04 13:31:44 +01001315lyd_insert_after_node(struct lyd_node *sibling, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001316{
Michal Vasko0249f7c2020-03-05 16:36:40 +01001317 struct lyd_node_inner *par;
1318
Michal Vasko90932a92020-02-12 14:33:03 +01001319 assert(!node->next && (node->prev == node));
1320
1321 node->next = sibling->next;
1322 node->prev = sibling;
1323 sibling->next = node;
1324 if (node->next) {
1325 /* sibling had a succeeding node */
1326 node->next->prev = node;
1327 } else {
1328 /* sibling was last, find first sibling and change its prev */
1329 if (sibling->parent) {
1330 sibling = sibling->parent->child;
1331 } else {
1332 for (; sibling->prev->next != node; sibling = sibling->prev);
1333 }
1334 sibling->prev = node;
1335 }
1336 node->parent = sibling->parent;
Michal Vasko0249f7c2020-03-05 16:36:40 +01001337
Michal Vasko9f96a052020-03-10 09:41:45 +01001338 for (par = node->parent; par; par = par->parent) {
1339 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
1340 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01001341 par->flags &= ~LYD_DEFAULT;
1342 }
Michal Vasko9f96a052020-03-10 09:41:45 +01001343 if ((par->schema->nodetype == LYS_LIST) && (par->schema->flags & LYS_KEYLESS)) {
1344 /* rehash key-less list */
1345 lyd_hash((struct lyd_node *)par);
1346 }
Michal Vasko0249f7c2020-03-05 16:36:40 +01001347 }
1348
1349 /* insert into hash table */
1350 lyd_insert_hash(node);
Michal Vasko90932a92020-02-12 14:33:03 +01001351}
1352
1353/**
1354 * @brief Insert node before a sibling.
1355 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001356 * Handles inserting into NP containers and key-less lists.
1357 *
Michal Vasko90932a92020-02-12 14:33:03 +01001358 * @param[in] sibling Sibling to insert before.
1359 * @param[in] node Node to insert.
1360 */
1361static void
Michal Vaskof03ed032020-03-04 13:31:44 +01001362lyd_insert_before_node(struct lyd_node *sibling, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001363{
Michal Vasko0249f7c2020-03-05 16:36:40 +01001364 struct lyd_node_inner *par;
1365
Michal Vasko90932a92020-02-12 14:33:03 +01001366 assert(!node->next && (node->prev == node));
1367
1368 node->next = sibling;
1369 /* covers situation of sibling being first */
1370 node->prev = sibling->prev;
1371 sibling->prev = node;
1372 if (node->prev->next) {
1373 /* sibling had a preceding node */
1374 node->prev->next = node;
1375 } else if (sibling->parent) {
1376 /* sibling was first and we must also change parent child pointer */
1377 sibling->parent->child = node;
1378 }
1379 node->parent = sibling->parent;
Michal Vasko0249f7c2020-03-05 16:36:40 +01001380
Michal Vasko9f96a052020-03-10 09:41:45 +01001381 for (par = node->parent; par; par = par->parent) {
1382 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
1383 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01001384 par->flags &= ~LYD_DEFAULT;
1385 }
Michal Vasko9f96a052020-03-10 09:41:45 +01001386 if ((par->schema->nodetype == LYS_LIST) && (par->schema->flags & LYS_KEYLESS)) {
1387 /* rehash key-less list */
1388 lyd_hash((struct lyd_node *)par);
1389 }
Michal Vasko0249f7c2020-03-05 16:36:40 +01001390 }
1391
1392 /* insert into hash table */
1393 lyd_insert_hash(node);
Michal Vasko90932a92020-02-12 14:33:03 +01001394}
1395
1396/**
1397 * @brief Insert node as the last child of a parent.
1398 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001399 * Handles inserting into NP containers and key-less lists.
1400 *
Michal Vasko90932a92020-02-12 14:33:03 +01001401 * @param[in] parent Parent to insert into.
1402 * @param[in] node Node to insert.
1403 */
1404static void
Michal Vaskof03ed032020-03-04 13:31:44 +01001405lyd_insert_last_node(struct lyd_node *parent, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001406{
1407 struct lyd_node_inner *par;
1408
Michal Vasko0249f7c2020-03-05 16:36:40 +01001409 assert(parent && !node->next && (node->prev == node));
Michal Vasko52927e22020-03-16 17:26:14 +01001410 assert(!parent->schema || (parent->schema->nodetype & LYD_NODE_INNER));
Michal Vasko90932a92020-02-12 14:33:03 +01001411
1412 par = (struct lyd_node_inner *)parent;
1413
1414 if (!par->child) {
1415 par->child = node;
1416 } else {
1417 node->prev = par->child->prev;
1418 par->child->prev->next = node;
1419 par->child->prev = node;
1420 }
1421 node->parent = par;
Michal Vasko0249f7c2020-03-05 16:36:40 +01001422
Michal Vasko9f96a052020-03-10 09:41:45 +01001423 for (; par; par = par->parent) {
1424 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
1425 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01001426 par->flags &= ~LYD_DEFAULT;
1427 }
Michal Vasko52927e22020-03-16 17:26:14 +01001428 if (par->schema && (par->schema->nodetype == LYS_LIST) && (par->schema->flags & LYS_KEYLESS)) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001429 /* rehash key-less list */
1430 lyd_hash((struct lyd_node *)par);
1431 }
Michal Vasko0249f7c2020-03-05 16:36:40 +01001432 }
1433
1434 /* insert into hash table */
1435 lyd_insert_hash(node);
Michal Vasko90932a92020-02-12 14:33:03 +01001436}
1437
1438void
Michal Vasko9b368d32020-02-14 13:53:31 +01001439lyd_insert_node(struct lyd_node *parent, struct lyd_node **first_sibling, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001440{
Michal Vasko9b368d32020-02-14 13:53:31 +01001441 struct lyd_node *anchor;
Michal Vasko9f96a052020-03-10 09:41:45 +01001442 const struct lysc_node *skey = NULL;
1443 int has_keys;
Michal Vasko90932a92020-02-12 14:33:03 +01001444
Michal Vasko52927e22020-03-16 17:26:14 +01001445 assert((parent || first_sibling) && node && (node->hash || !node->schema));
Michal Vasko9b368d32020-02-14 13:53:31 +01001446
1447 if (!parent && first_sibling && (*first_sibling) && (*first_sibling)->parent) {
1448 parent = (struct lyd_node *)(*first_sibling)->parent;
1449 }
Michal Vasko90932a92020-02-12 14:33:03 +01001450
1451 if (parent) {
Michal Vasko52927e22020-03-16 17:26:14 +01001452 if (node->schema && (node->schema->flags & LYS_KEY)) {
Michal Vasko90932a92020-02-12 14:33:03 +01001453 /* it is key and we need to insert it at the correct place */
Michal Vasko5bfd4be2020-06-23 13:26:19 +02001454 anchor = lyd_get_prev_key_anchor(lyd_node_children(parent, 0), node->schema);
Michal Vasko9b368d32020-02-14 13:53:31 +01001455 if (anchor) {
Michal Vaskof03ed032020-03-04 13:31:44 +01001456 lyd_insert_after_node(anchor, node);
Michal Vasko5bfd4be2020-06-23 13:26:19 +02001457 } else if (lyd_node_children(parent, 0)) {
1458 lyd_insert_before_node(lyd_node_children(parent, 0), node);
Michal Vasko90932a92020-02-12 14:33:03 +01001459 } else {
Michal Vaskof03ed032020-03-04 13:31:44 +01001460 lyd_insert_last_node(parent, node);
Michal Vasko90932a92020-02-12 14:33:03 +01001461 }
Michal Vasko9f96a052020-03-10 09:41:45 +01001462
1463 /* hash list if all its keys were added */
1464 assert(parent->schema->nodetype == LYS_LIST);
Michal Vasko5bfd4be2020-06-23 13:26:19 +02001465 anchor = lyd_node_children(parent, 0);
Michal Vasko9f96a052020-03-10 09:41:45 +01001466 has_keys = 1;
1467 while ((skey = lys_getnext(skey, parent->schema, NULL, 0)) && (skey->flags & LYS_KEY)) {
1468 if (!anchor || (anchor->schema != skey)) {
1469 /* key missing */
1470 has_keys = 0;
1471 break;
1472 }
1473
1474 anchor = anchor->next;
1475 }
1476 if (has_keys) {
1477 lyd_hash(parent);
1478 }
1479
Michal Vasko90932a92020-02-12 14:33:03 +01001480 } else {
1481 /* last child */
Michal Vaskof03ed032020-03-04 13:31:44 +01001482 lyd_insert_last_node(parent, node);
Michal Vasko90932a92020-02-12 14:33:03 +01001483 }
Michal Vasko9b368d32020-02-14 13:53:31 +01001484 } else if (*first_sibling) {
Michal Vaskob1b5c262020-03-05 14:29:47 +01001485 /* top-level siblings */
Michal Vasko9b368d32020-02-14 13:53:31 +01001486 anchor = (*first_sibling)->prev;
Michal Vaskoc193ce92020-03-06 11:04:48 +01001487 while (anchor->prev->next && (lyd_owner_module(anchor) != lyd_owner_module(node))) {
Michal Vasko9b368d32020-02-14 13:53:31 +01001488 anchor = anchor->prev;
1489 }
1490
Michal Vaskoc193ce92020-03-06 11:04:48 +01001491 if (lyd_owner_module(anchor) == lyd_owner_module(node)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +01001492 /* insert after last sibling from this module */
1493 lyd_insert_after_node(anchor, node);
1494 } else {
1495 /* no data from this module, insert at the last position */
1496 lyd_insert_after_node((*first_sibling)->prev, node);
1497 }
Michal Vasko90932a92020-02-12 14:33:03 +01001498 } else {
Michal Vasko9b368d32020-02-14 13:53:31 +01001499 /* the only sibling */
1500 *first_sibling = node;
Michal Vasko90932a92020-02-12 14:33:03 +01001501 }
Michal Vasko90932a92020-02-12 14:33:03 +01001502}
1503
Michal Vaskof03ed032020-03-04 13:31:44 +01001504static LY_ERR
1505lyd_insert_check_schema(const struct lysc_node *parent, const struct lysc_node *schema)
1506{
1507 const struct lysc_node *par2;
1508
1509 assert(schema);
Michal Vasko62ed12d2020-05-21 10:08:25 +02001510 assert(!parent || !(parent->nodetype & (LYS_CASE | LYS_CHOICE)));
Michal Vaskof03ed032020-03-04 13:31:44 +01001511
1512 /* find schema parent */
Michal Vasko62ed12d2020-05-21 10:08:25 +02001513 par2 = lysc_data_parent(schema);
Michal Vaskof03ed032020-03-04 13:31:44 +01001514
1515 if (parent) {
1516 /* inner node */
1517 if (par2 != parent) {
Radek Krejcif6d14cb2020-07-02 16:11:45 +02001518 LOGERR(schema->module->ctx, LY_EINVAL, "Cannot insert, parent of \"%s\" is not \"%s\".", schema->name, parent->name);
Michal Vaskof03ed032020-03-04 13:31:44 +01001519 return LY_EINVAL;
1520 }
1521 } else {
1522 /* top-level node */
1523 if (par2) {
Radek Krejcif6d14cb2020-07-02 16:11:45 +02001524 LOGERR(schema->module->ctx, LY_EINVAL, "Cannot insert, node \"%s\" is not top-level.", schema->name);
Michal Vaskof03ed032020-03-04 13:31:44 +01001525 return LY_EINVAL;
1526 }
1527 }
1528
1529 return LY_SUCCESS;
1530}
1531
1532API LY_ERR
1533lyd_insert(struct lyd_node *parent, struct lyd_node *node)
1534{
1535 struct lyd_node *iter;
1536
Michal Vasko654bc852020-06-23 13:28:06 +02001537 LY_CHECK_ARG_RET(NULL, parent, node, parent->schema->nodetype & LYD_NODE_INNER, LY_EINVAL);
Michal Vaskof03ed032020-03-04 13:31:44 +01001538
1539 LY_CHECK_RET(lyd_insert_check_schema(parent->schema, node->schema));
1540
1541 if (node->schema->flags & LYS_KEY) {
1542 LOGERR(parent->schema->module->ctx, LY_EINVAL, "Cannot insert key \"%s\".", node->schema->name);
1543 return LY_EINVAL;
1544 }
1545
1546 if (node->parent || node->prev->next) {
1547 lyd_unlink_tree(node);
1548 }
1549
1550 while (node) {
1551 iter = node->next;
1552 lyd_unlink_tree(node);
1553 lyd_insert_node(parent, NULL, node);
1554 node = iter;
1555 }
1556 return LY_SUCCESS;
1557}
1558
1559API LY_ERR
Michal Vaskob1b5c262020-03-05 14:29:47 +01001560lyd_insert_sibling(struct lyd_node *sibling, struct lyd_node *node)
1561{
1562 struct lyd_node *iter;
1563
1564 LY_CHECK_ARG_RET(NULL, sibling, node, LY_EINVAL);
1565
Michal Vasko62ed12d2020-05-21 10:08:25 +02001566 LY_CHECK_RET(lyd_insert_check_schema(lysc_data_parent(sibling->schema), node->schema));
Michal Vaskob1b5c262020-03-05 14:29:47 +01001567
1568 if (node->schema->flags & LYS_KEY) {
1569 LOGERR(sibling->schema->module->ctx, LY_EINVAL, "Cannot insert key \"%s\".", node->schema->name);
1570 return LY_EINVAL;
1571 }
1572
1573 if (node->parent || node->prev->next) {
1574 lyd_unlink_tree(node);
1575 }
1576
1577 while (node) {
1578 iter = node->next;
1579 lyd_unlink_tree(node);
1580 lyd_insert_node(NULL, &sibling, node);
1581 node = iter;
1582 }
1583 return LY_SUCCESS;
1584}
1585
Michal Vasko0249f7c2020-03-05 16:36:40 +01001586static LY_ERR
1587lyd_insert_after_check_place(struct lyd_node *anchor, struct lyd_node *sibling, struct lyd_node *node)
1588{
1589 if (sibling->parent) {
1590 /* nested, we do not care for the order */
1591 return LY_SUCCESS;
1592 }
1593
1594 if (anchor) {
Michal Vaskoc193ce92020-03-06 11:04:48 +01001595 if (anchor->next && (lyd_owner_module(anchor) == lyd_owner_module(anchor->next))
1596 && (lyd_owner_module(node) != lyd_owner_module(anchor))) {
Michal Vasko0249f7c2020-03-05 16:36:40 +01001597 LOGERR(sibling->schema->module->ctx, LY_EINVAL, "Cannot insert top-level module \"%s\" data into module \"%s\" data.",
Michal Vaskoc193ce92020-03-06 11:04:48 +01001598 lyd_owner_module(node)->name, lyd_owner_module(anchor)->name);
Michal Vasko0249f7c2020-03-05 16:36:40 +01001599 return LY_EINVAL;
1600 }
1601
Michal Vaskoc193ce92020-03-06 11:04:48 +01001602 if ((lyd_owner_module(node) == lyd_owner_module(anchor))
1603 || (anchor->next && (lyd_owner_module(node) == lyd_owner_module(anchor->next)))) {
Michal Vasko0249f7c2020-03-05 16:36:40 +01001604 /* inserting before/after its module data */
1605 return LY_SUCCESS;
1606 }
1607 }
1608
1609 /* find first sibling */
1610 while (sibling->prev->next) {
1611 sibling = sibling->prev;
1612 }
1613
1614 if (!anchor) {
Michal Vaskoc193ce92020-03-06 11:04:48 +01001615 if (lyd_owner_module(node) == lyd_owner_module(sibling)) {
Michal Vasko0249f7c2020-03-05 16:36:40 +01001616 /* inserting before its module data */
1617 return LY_SUCCESS;
1618 }
1619 }
1620
1621 /* check there are no data of this module */
1622 LY_LIST_FOR(sibling, sibling) {
Michal Vaskoc193ce92020-03-06 11:04:48 +01001623 if (lyd_owner_module(node) == lyd_owner_module(sibling)) {
Michal Vasko0249f7c2020-03-05 16:36:40 +01001624 /* some data of this module found */
1625 LOGERR(sibling->schema->module->ctx, LY_EINVAL, "Top-level data of module \"%s\" already exist,"
Michal Vaskoc193ce92020-03-06 11:04:48 +01001626 " they must be directly connected.", lyd_owner_module(node)->name);
Michal Vasko0249f7c2020-03-05 16:36:40 +01001627 return LY_EINVAL;
1628 }
1629 }
1630
1631 return LY_SUCCESS;
1632}
1633
Michal Vaskob1b5c262020-03-05 14:29:47 +01001634API LY_ERR
Michal Vaskof03ed032020-03-04 13:31:44 +01001635lyd_insert_before(struct lyd_node *sibling, struct lyd_node *node)
1636{
1637 struct lyd_node *iter;
1638
1639 LY_CHECK_ARG_RET(NULL, sibling, node, LY_EINVAL);
1640
Michal Vasko62ed12d2020-05-21 10:08:25 +02001641 LY_CHECK_RET(lyd_insert_check_schema(lysc_data_parent(sibling->schema), node->schema));
Michal Vaskof03ed032020-03-04 13:31:44 +01001642
1643 if (node->schema->flags & LYS_KEY) {
1644 LOGERR(sibling->schema->module->ctx, LY_EINVAL, "Cannot insert key \"%s\".", node->schema->name);
1645 return LY_EINVAL;
1646 } else if (sibling->schema->flags & LYS_KEY) {
1647 LOGERR(sibling->schema->module->ctx, LY_EINVAL, "Cannot insert into keys.");
1648 return LY_EINVAL;
1649 }
1650
Michal Vasko0249f7c2020-03-05 16:36:40 +01001651 LY_CHECK_RET(lyd_insert_after_check_place(sibling->prev->next ? sibling->prev : NULL, sibling, node));
1652
Michal Vaskof03ed032020-03-04 13:31:44 +01001653 if (node->parent || node->prev->next) {
1654 lyd_unlink_tree(node);
1655 }
1656
1657 /* insert in reverse order to get the original order */
1658 node = node->prev;
1659 while (node) {
1660 iter = node->prev;
1661 lyd_unlink_tree(node);
1662
1663 lyd_insert_before_node(sibling, node);
1664 /* move the anchor accordingly */
1665 sibling = node;
1666
1667 node = (iter == node) ? NULL : iter;
1668 }
1669 return LY_SUCCESS;
1670}
1671
1672API LY_ERR
1673lyd_insert_after(struct lyd_node *sibling, struct lyd_node *node)
1674{
1675 struct lyd_node *iter;
1676
1677 LY_CHECK_ARG_RET(NULL, sibling, node, LY_EINVAL);
1678
Michal Vasko62ed12d2020-05-21 10:08:25 +02001679 LY_CHECK_RET(lyd_insert_check_schema(lysc_data_parent(sibling->schema), node->schema));
Michal Vaskof03ed032020-03-04 13:31:44 +01001680
1681 if (node->schema->flags & LYS_KEY) {
1682 LOGERR(sibling->schema->module->ctx, LY_EINVAL, "Cannot insert key \"%s\".", node->schema->name);
1683 return LY_EINVAL;
1684 } else if (sibling->next && (sibling->next->schema->flags & LYS_KEY)) {
1685 LOGERR(sibling->schema->module->ctx, LY_EINVAL, "Cannot insert into keys.");
1686 return LY_EINVAL;
1687 }
1688
Michal Vasko0249f7c2020-03-05 16:36:40 +01001689 LY_CHECK_RET(lyd_insert_after_check_place(sibling, sibling, node));
1690
Michal Vaskof03ed032020-03-04 13:31:44 +01001691 if (node->parent || node->prev->next) {
1692 lyd_unlink_tree(node);
1693 }
1694
1695 while (node) {
1696 iter = node->next;
1697 lyd_unlink_tree(node);
1698
1699 lyd_insert_after_node(sibling, node);
1700 /* move the anchor accordingly */
1701 sibling = node;
1702
1703 node = iter;
1704 }
1705 return LY_SUCCESS;
1706}
1707
1708API void
1709lyd_unlink_tree(struct lyd_node *node)
1710{
1711 struct lyd_node *iter;
1712
1713 if (!node) {
1714 return;
1715 }
1716
1717 /* unlink from siblings */
1718 if (node->prev->next) {
1719 node->prev->next = node->next;
1720 }
1721 if (node->next) {
1722 node->next->prev = node->prev;
1723 } else {
1724 /* unlinking the last node */
1725 if (node->parent) {
1726 iter = node->parent->child;
1727 } else {
1728 iter = node->prev;
1729 while (iter->prev != node) {
1730 iter = iter->prev;
1731 }
1732 }
1733 /* update the "last" pointer from the first node */
1734 iter->prev = node->prev;
1735 }
1736
1737 /* unlink from parent */
1738 if (node->parent) {
1739 if (node->parent->child == node) {
1740 /* the node is the first child */
1741 node->parent->child = node->next;
1742 }
1743
1744 lyd_unlink_hash(node);
1745
1746 /* check for keyless list and update its hash */
1747 for (iter = (struct lyd_node *)node->parent; iter; iter = (struct lyd_node *)iter->parent) {
Michal Vasko413c7f22020-05-05 12:34:06 +02001748 if (iter->schema && (iter->schema->flags & LYS_KEYLESS)) {
Michal Vaskof03ed032020-03-04 13:31:44 +01001749 lyd_hash(iter);
1750 }
1751 }
1752
1753 node->parent = NULL;
1754 }
1755
1756 node->next = NULL;
1757 node->prev = node;
1758}
1759
Michal Vasko90932a92020-02-12 14:33:03 +01001760LY_ERR
Michal Vasko9f96a052020-03-10 09:41:45 +01001761lyd_create_meta(struct lyd_node *parent, struct lyd_meta **meta, const struct lys_module *mod, const char *name,
Michal Vasko52927e22020-03-16 17:26:14 +01001762 size_t name_len, const char *value, size_t value_len, int *dynamic, ly_clb_resolve_prefix resolve_prefix,
Michal Vasko8d544252020-03-02 10:19:52 +01001763 void *prefix_data, LYD_FORMAT format, const struct lysc_node *ctx_snode)
Michal Vasko90932a92020-02-12 14:33:03 +01001764{
1765 LY_ERR ret;
1766 struct lysc_ext_instance *ant = NULL;
Michal Vasko9f96a052020-03-10 09:41:45 +01001767 struct lyd_meta *mt, *last;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001768 LY_ARRAY_COUNT_TYPE u;
Michal Vasko90932a92020-02-12 14:33:03 +01001769
Michal Vasko9f96a052020-03-10 09:41:45 +01001770 assert((parent || meta) && mod);
Michal Vasko6f4cbb62020-02-28 11:15:47 +01001771
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001772 LY_ARRAY_FOR(mod->compiled->exts, u) {
1773 if (mod->compiled->exts[u].def->plugin == lyext_plugins_internal[LYEXT_PLUGIN_INTERNAL_ANNOTATION].plugin &&
1774 !ly_strncmp(mod->compiled->exts[u].argument, name, name_len)) {
Michal Vasko90932a92020-02-12 14:33:03 +01001775 /* we have the annotation definition */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001776 ant = &mod->compiled->exts[u];
Michal Vasko90932a92020-02-12 14:33:03 +01001777 break;
1778 }
1779 }
1780 if (!ant) {
1781 /* attribute is not defined as a metadata annotation (RFC 7952) */
1782 LOGERR(mod->ctx, LY_EINVAL, "Annotation definition for attribute \"%s:%.*s\" not found.",
1783 mod->name, name_len, name);
1784 return LY_EINVAL;
1785 }
1786
Michal Vasko9f96a052020-03-10 09:41:45 +01001787 mt = calloc(1, sizeof *mt);
1788 LY_CHECK_ERR_RET(!mt, LOGMEM(mod->ctx), LY_EMEM);
1789 mt->parent = parent;
1790 mt->annotation = ant;
Michal Vasko52927e22020-03-16 17:26:14 +01001791 ret = lyd_value_parse_meta(mod->ctx, mt, value, value_len, dynamic, 0, resolve_prefix, prefix_data, format, ctx_snode, NULL);
Michal Vasko90932a92020-02-12 14:33:03 +01001792 if ((ret != LY_SUCCESS) && (ret != LY_EINCOMPLETE)) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001793 free(mt);
Michal Vasko90932a92020-02-12 14:33:03 +01001794 return ret;
1795 }
Michal Vasko9f96a052020-03-10 09:41:45 +01001796 mt->name = lydict_insert(mod->ctx, name, name_len);
Michal Vasko90932a92020-02-12 14:33:03 +01001797
Michal Vasko6f4cbb62020-02-28 11:15:47 +01001798 /* insert as the last attribute */
1799 if (parent) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001800 if (parent->meta) {
1801 for (last = parent->meta; last->next; last = last->next);
1802 last->next = mt;
Michal Vasko6f4cbb62020-02-28 11:15:47 +01001803 } else {
Michal Vasko9f96a052020-03-10 09:41:45 +01001804 parent->meta = mt;
Michal Vasko6f4cbb62020-02-28 11:15:47 +01001805 }
Michal Vasko9f96a052020-03-10 09:41:45 +01001806 } else if (*meta) {
1807 for (last = *meta; last->next; last = last->next);
1808 last->next = mt;
Michal Vasko90932a92020-02-12 14:33:03 +01001809 }
1810
1811 /* remove default flags from NP containers */
Michal Vasko4ba6aef2020-07-09 15:44:23 +02001812 while (parent && (parent->schema->nodetype == LYS_CONTAINER) && (parent->flags & LYD_DEFAULT)) {
Michal Vasko90932a92020-02-12 14:33:03 +01001813 parent->flags &= ~LYD_DEFAULT;
1814 parent = (struct lyd_node *)parent->parent;
1815 }
1816
Michal Vasko9f96a052020-03-10 09:41:45 +01001817 if (meta) {
1818 *meta = mt;
Michal Vasko90932a92020-02-12 14:33:03 +01001819 }
1820 return ret;
1821}
1822
Michal Vasko52927e22020-03-16 17:26:14 +01001823LY_ERR
1824ly_create_attr(struct lyd_node *parent, struct ly_attr **attr, const struct ly_ctx *ctx, const char *name,
1825 size_t name_len, const char *value, size_t value_len, int *dynamic, LYD_FORMAT format,
1826 struct ly_prefix *val_prefs, const char *prefix, size_t prefix_len, const char *ns)
1827{
1828 struct ly_attr *at, *last;
1829 struct lyd_node_opaq *opaq;
1830
1831 assert(ctx && (parent || attr) && (!parent || !parent->schema));
1832 assert(name && name_len);
1833 assert((prefix_len && ns) || (!prefix_len && !ns));
1834
1835 if (!value_len) {
1836 value = "";
1837 }
1838
1839 at = calloc(1, sizeof *at);
1840 LY_CHECK_ERR_RET(!at, LOGMEM(ctx), LY_EMEM);
1841 at->parent = (struct lyd_node_opaq *)parent;
1842 at->name = lydict_insert(ctx, name, name_len);
1843 if (dynamic && *dynamic) {
1844 at->value = lydict_insert_zc(ctx, (char *)value);
1845 *dynamic = 0;
1846 } else {
1847 at->value = lydict_insert(ctx, value, value_len);
1848 }
1849
1850 at->format = format;
1851 at->val_prefs = val_prefs;
1852 if (ns) {
1853 at->prefix.pref = lydict_insert(ctx, prefix, prefix_len);
1854 at->prefix.ns = lydict_insert(ctx, ns, 0);
1855 }
1856
1857 /* insert as the last attribute */
1858 if (parent) {
1859 opaq = (struct lyd_node_opaq *)parent;
1860 if (opaq->attr) {
1861 for (last = opaq->attr; last->next; last = last->next);
1862 last->next = at;
1863 } else {
1864 opaq->attr = at;
1865 }
1866 } else if (*attr) {
1867 for (last = *attr; last->next; last = last->next);
1868 last->next = at;
1869 }
1870
1871 if (attr) {
1872 *attr = at;
1873 }
1874 return LY_SUCCESS;
1875}
1876
Radek Krejci084289f2019-07-09 17:35:30 +02001877API const struct lyd_node_term *
Michal Vasko004d3152020-06-11 19:59:22 +02001878lyd_target(const struct ly_path *path, const struct lyd_node *tree)
Radek Krejci084289f2019-07-09 17:35:30 +02001879{
Michal Vasko004d3152020-06-11 19:59:22 +02001880 struct lyd_node *target;
Radek Krejci084289f2019-07-09 17:35:30 +02001881
Michal Vasko004d3152020-06-11 19:59:22 +02001882 if (ly_path_eval(path, tree, &target)) {
1883 return NULL;
Radek Krejci084289f2019-07-09 17:35:30 +02001884 }
1885
Michal Vasko004d3152020-06-11 19:59:22 +02001886 return (struct lyd_node_term *)target;
Radek Krejci084289f2019-07-09 17:35:30 +02001887}
1888
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001889API LY_ERR
1890lyd_compare(const struct lyd_node *node1, const struct lyd_node *node2, int options)
1891{
1892 const struct lyd_node *iter1, *iter2;
1893 struct lyd_node_term *term1, *term2;
1894 struct lyd_node_any *any1, *any2;
Michal Vasko52927e22020-03-16 17:26:14 +01001895 struct lyd_node_opaq *opaq1, *opaq2;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001896 size_t len1, len2;
Radek Krejci084289f2019-07-09 17:35:30 +02001897
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001898 if (!node1 || !node2) {
1899 if (node1 == node2) {
1900 return LY_SUCCESS;
1901 } else {
1902 return LY_ENOT;
1903 }
1904 }
1905
Michal Vasko52927e22020-03-16 17:26:14 +01001906 if ((LYD_NODE_CTX(node1) != LYD_NODE_CTX(node2)) || (node1->schema != node2->schema)) {
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001907 return LY_ENOT;
1908 }
1909
1910 if (node1->hash != node2->hash) {
1911 return LY_ENOT;
1912 }
Michal Vasko52927e22020-03-16 17:26:14 +01001913 /* equal hashes do not mean equal nodes, they can be just in collision (or both be 0) so the nodes must be checked explicitly */
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001914
Michal Vasko52927e22020-03-16 17:26:14 +01001915 if (!node1->schema) {
1916 opaq1 = (struct lyd_node_opaq *)node1;
1917 opaq2 = (struct lyd_node_opaq *)node2;
1918 if ((opaq1->name != opaq2->name) || (opaq1->prefix.ns != opaq2->prefix.ns) || (opaq1->format != opaq2->format)) {
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001919 return LY_ENOT;
1920 }
Michal Vasko52927e22020-03-16 17:26:14 +01001921 switch (opaq1->format) {
1922 case LYD_XML:
1923 if (lyxml_value_compare(opaq1->value, opaq1->val_prefs, opaq2->value, opaq2->val_prefs)) {
1924 return LY_ENOT;
1925 }
1926 break;
1927 case LYD_SCHEMA:
Michal Vasko60ea6352020-06-29 13:39:39 +02001928 case LYD_LYB:
Michal Vasko52927e22020-03-16 17:26:14 +01001929 /* not allowed */
1930 LOGINT(LYD_NODE_CTX(node1));
1931 return LY_EINT;
1932 }
1933 if (options & LYD_COMPARE_FULL_RECURSION) {
1934 iter1 = opaq1->child;
1935 iter2 = opaq2->child;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001936 goto all_children_compare;
Michal Vasko52927e22020-03-16 17:26:14 +01001937 }
1938 return LY_SUCCESS;
1939 } else {
1940 switch (node1->schema->nodetype) {
1941 case LYS_LEAF:
1942 case LYS_LEAFLIST:
1943 if (options & LYD_COMPARE_DEFAULTS) {
1944 if ((node1->flags & LYD_DEFAULT) != (node2->flags & LYD_DEFAULT)) {
1945 return LY_ENOT;
1946 }
1947 }
1948
Michal Vasko1a2bf2e2020-06-16 13:07:48 +02001949 term1 = (struct lyd_node_term *)node1;
1950 term2 = (struct lyd_node_term *)node2;
1951 if (term1->value.realtype != term2->value.realtype) {
1952 return LY_ENOT;
1953 }
Michal Vasko52927e22020-03-16 17:26:14 +01001954
Michal Vasko1a2bf2e2020-06-16 13:07:48 +02001955 return term1->value.realtype->plugin->compare(&term1->value, &term2->value);
Michal Vasko52927e22020-03-16 17:26:14 +01001956 case LYS_CONTAINER:
1957 if (options & LYD_COMPARE_DEFAULTS) {
1958 if ((node1->flags & LYD_DEFAULT) != (node2->flags & LYD_DEFAULT)) {
1959 return LY_ENOT;
1960 }
1961 }
1962 if (options & LYD_COMPARE_FULL_RECURSION) {
1963 iter1 = ((struct lyd_node_inner*)node1)->child;
1964 iter2 = ((struct lyd_node_inner*)node2)->child;
1965 goto all_children_compare;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001966 }
1967 return LY_SUCCESS;
Michal Vasko1bf09392020-03-27 12:38:10 +01001968 case LYS_RPC:
Michal Vasko52927e22020-03-16 17:26:14 +01001969 case LYS_ACTION:
1970 if (options & LYD_COMPARE_FULL_RECURSION) {
1971 /* TODO action/RPC
1972 goto all_children_compare;
1973 */
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001974 }
1975 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01001976 case LYS_NOTIF:
1977 if (options & LYD_COMPARE_FULL_RECURSION) {
1978 /* TODO Notification
1979 goto all_children_compare;
1980 */
1981 }
1982 return LY_SUCCESS;
1983 case LYS_LIST:
1984 iter1 = ((struct lyd_node_inner*)node1)->child;
1985 iter2 = ((struct lyd_node_inner*)node2)->child;
1986
1987 if (!(node1->schema->flags & LYS_KEYLESS) && !(options & LYD_COMPARE_FULL_RECURSION)) {
1988 /* lists with keys, their equivalence is based on their keys */
1989 for (struct lysc_node *key = ((struct lysc_node_list*)node1->schema)->child;
Michal Vaskoc57d9a92020-06-23 13:28:27 +02001990 key && (key->flags & LYS_KEY);
Michal Vasko52927e22020-03-16 17:26:14 +01001991 key = key->next) {
1992 if (lyd_compare(iter1, iter2, options)) {
1993 return LY_ENOT;
1994 }
1995 iter1 = iter1->next;
1996 iter2 = iter2->next;
1997 }
1998 } else {
1999 /* lists without keys, their equivalence is based on equivalence of all the children (both direct and indirect) */
2000
2001 all_children_compare:
2002 if (!iter1 && !iter2) {
2003 /* no children, nothing to compare */
2004 return LY_SUCCESS;
2005 }
2006
2007 for (; iter1 && iter2; iter1 = iter1->next, iter2 = iter2->next) {
2008 if (lyd_compare(iter1, iter2, options | LYD_COMPARE_FULL_RECURSION)) {
2009 return LY_ENOT;
2010 }
2011 }
2012 if (iter1 || iter2) {
2013 return LY_ENOT;
2014 }
2015 }
2016 return LY_SUCCESS;
2017 case LYS_ANYXML:
2018 case LYS_ANYDATA:
2019 any1 = (struct lyd_node_any*)node1;
2020 any2 = (struct lyd_node_any*)node2;
2021
2022 if (any1->value_type != any2->value_type) {
2023 return LY_ENOT;
2024 }
2025 switch (any1->value_type) {
2026 case LYD_ANYDATA_DATATREE:
2027 iter1 = any1->value.tree;
2028 iter2 = any2->value.tree;
2029 goto all_children_compare;
2030 case LYD_ANYDATA_STRING:
2031 case LYD_ANYDATA_XML:
2032 case LYD_ANYDATA_JSON:
2033 len1 = strlen(any1->value.str);
2034 len2 = strlen(any2->value.str);
2035 if (len1 != len2 || strcmp(any1->value.str, any2->value.str)) {
2036 return LY_ENOT;
2037 }
2038 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01002039 case LYD_ANYDATA_LYB:
Michal Vasko60ea6352020-06-29 13:39:39 +02002040 len1 = lyd_lyb_data_length(any1->value.mem);
2041 len2 = lyd_lyb_data_length(any2->value.mem);
Michal Vasko52927e22020-03-16 17:26:14 +01002042 if (len1 != len2 || memcmp(any1->value.mem, any2->value.mem, len1)) {
2043 return LY_ENOT;
2044 }
2045 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01002046 }
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002047 }
2048 }
2049
Michal Vasko52927e22020-03-16 17:26:14 +01002050 LOGINT(LYD_NODE_CTX(node1));
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002051 return LY_EINT;
2052}
Radek Krejci22ebdba2019-07-25 13:59:43 +02002053
Michal Vasko21725742020-06-29 11:49:25 +02002054API LY_ERR
2055lyd_compare_meta(const struct lyd_meta *meta1, const struct lyd_meta *meta2)
2056{
2057 if (!meta1 || !meta2) {
2058 if (meta1 == meta2) {
2059 return LY_SUCCESS;
2060 } else {
2061 return LY_ENOT;
2062 }
2063 }
2064
2065 if ((LYD_NODE_CTX(meta1->parent) != LYD_NODE_CTX(meta2->parent)) || (meta1->annotation != meta2->annotation)) {
2066 return LY_ENOT;
2067 }
2068
2069 if (meta1->value.realtype != meta2->value.realtype) {
2070 return LY_ENOT;
2071 }
2072
2073 return meta1->value.realtype->plugin->compare(&meta1->value, &meta2->value);
2074}
2075
Radek Krejci22ebdba2019-07-25 13:59:43 +02002076/**
Michal Vasko52927e22020-03-16 17:26:14 +01002077 * @brief Duplicate a single node and connect it into @p parent (if present) or last of @p first siblings.
Radek Krejci22ebdba2019-07-25 13:59:43 +02002078 *
2079 * Ignores LYD_DUP_WITH_PARENTS and LYD_DUP_WITH_SIBLINGS which are supposed to be handled by lyd_dup().
Radek Krejcif8b95172020-05-15 14:51:06 +02002080 *
2081 * @param[in] node Original node to duplicate
2082 * @param[in] parent Parent to insert into, NULL for top-level sibling.
2083 * @param[in,out] first First sibling, NULL if no top-level sibling exist yet. Can be also NULL if @p parent is set.
2084 * @param[in] options Bitmask of options flags, see @ref dupoptions.
2085 * @param[out] dup_p Pointer where the created duplicated node is placed (besides connecting it int @p parent / @p first sibling).
2086 * @return LY_ERR value
Radek Krejci22ebdba2019-07-25 13:59:43 +02002087 */
Michal Vasko52927e22020-03-16 17:26:14 +01002088static LY_ERR
2089lyd_dup_recursive(const struct lyd_node *node, struct lyd_node *parent, struct lyd_node **first, int options,
2090 struct lyd_node **dup_p)
Radek Krejci22ebdba2019-07-25 13:59:43 +02002091{
Michal Vasko52927e22020-03-16 17:26:14 +01002092 LY_ERR ret;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002093 struct lyd_node *dup = NULL;
Michal Vasko61551fa2020-07-09 15:45:45 +02002094 struct lyd_meta *meta;
2095 struct lyd_node_any *any;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002096 LY_ARRAY_COUNT_TYPE u;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002097
Michal Vasko52927e22020-03-16 17:26:14 +01002098 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002099
Michal Vasko52927e22020-03-16 17:26:14 +01002100 if (!node->schema) {
2101 dup = calloc(1, sizeof(struct lyd_node_opaq));
2102 } else {
2103 switch (node->schema->nodetype) {
Michal Vasko1bf09392020-03-27 12:38:10 +01002104 case LYS_RPC:
Michal Vasko52927e22020-03-16 17:26:14 +01002105 case LYS_ACTION:
2106 case LYS_NOTIF:
2107 case LYS_CONTAINER:
2108 case LYS_LIST:
2109 dup = calloc(1, sizeof(struct lyd_node_inner));
2110 break;
2111 case LYS_LEAF:
2112 case LYS_LEAFLIST:
2113 dup = calloc(1, sizeof(struct lyd_node_term));
2114 break;
2115 case LYS_ANYDATA:
2116 case LYS_ANYXML:
2117 dup = calloc(1, sizeof(struct lyd_node_any));
2118 break;
2119 default:
2120 LOGINT(LYD_NODE_CTX(node));
2121 ret = LY_EINT;
2122 goto error;
2123 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02002124 }
Michal Vasko52927e22020-03-16 17:26:14 +01002125 LY_CHECK_ERR_GOTO(!dup, LOGMEM(LYD_NODE_CTX(node)); ret = LY_EMEM, error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002126
Michal Vaskof6df0a02020-06-16 13:08:34 +02002127 if (options & LYD_DUP_WITH_FLAGS) {
2128 dup->flags = node->flags;
2129 } else {
2130 dup->flags = (node->flags & LYD_DEFAULT) | LYD_NEW;
2131 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02002132 dup->schema = node->schema;
Michal Vasko52927e22020-03-16 17:26:14 +01002133 dup->prev = dup;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002134
Michal Vasko25a32822020-07-09 15:48:22 +02002135 /* duplicate metadata */
2136 if (!(options & LYD_DUP_NO_META)) {
2137 LY_LIST_FOR(node->meta, meta) {
2138 if (!lyd_dup_meta(meta, dup)) {
2139 ret = LY_EINT;
2140 goto error;
2141 }
2142 }
2143 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02002144
2145 /* nodetype-specific work */
Michal Vasko52927e22020-03-16 17:26:14 +01002146 if (!dup->schema) {
2147 struct lyd_node_opaq *opaq = (struct lyd_node_opaq *)dup;
2148 struct lyd_node_opaq *orig = (struct lyd_node_opaq *)node;
2149 struct lyd_node *child;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002150
2151 if (options & LYD_DUP_RECURSIVE) {
2152 /* duplicate all the children */
2153 LY_LIST_FOR(orig->child, child) {
Michal Vasko52927e22020-03-16 17:26:14 +01002154 LY_CHECK_GOTO(ret = lyd_dup_recursive(child, dup, NULL, options, NULL), error);
2155 }
2156 }
2157 opaq->name = lydict_insert(LYD_NODE_CTX(node), orig->name, 0);
2158 opaq->format = orig->format;
2159 if (orig->prefix.pref) {
2160 opaq->prefix.pref = lydict_insert(LYD_NODE_CTX(node), orig->prefix.pref, 0);
2161 }
2162 if (orig->prefix.ns) {
2163 opaq->prefix.ns = lydict_insert(LYD_NODE_CTX(node), orig->prefix.ns, 0);
2164 }
2165 if (orig->val_prefs) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002166 LY_ARRAY_CREATE_GOTO(LYD_NODE_CTX(node), opaq->val_prefs, LY_ARRAY_COUNT(orig->val_prefs), ret, error);
Michal Vasko52927e22020-03-16 17:26:14 +01002167 LY_ARRAY_FOR(orig->val_prefs, u) {
2168 opaq->val_prefs[u].pref = lydict_insert(LYD_NODE_CTX(node), orig->val_prefs[u].pref, 0);
2169 opaq->val_prefs[u].ns = lydict_insert(LYD_NODE_CTX(node), orig->val_prefs[u].ns, 0);
2170 LY_ARRAY_INCREMENT(opaq->val_prefs);
2171 }
2172 }
2173 opaq->value = lydict_insert(LYD_NODE_CTX(node), orig->value, 0);
2174 opaq->ctx = orig->ctx;
2175 } else if (dup->schema->nodetype & LYD_NODE_TERM) {
2176 struct lyd_node_term *term = (struct lyd_node_term *)dup;
2177 struct lyd_node_term *orig = (struct lyd_node_term *)node;
2178
2179 term->hash = orig->hash;
2180 term->value.realtype = orig->value.realtype;
2181 LY_CHECK_ERR_GOTO(term->value.realtype->plugin->duplicate(LYD_NODE_CTX(node), &orig->value, &term->value),
2182 LOGERR(LYD_NODE_CTX(node), LY_EINT, "Value duplication failed."); ret = LY_EINT, error);
2183 } else if (dup->schema->nodetype & LYD_NODE_INNER) {
2184 struct lyd_node_inner *orig = (struct lyd_node_inner *)node;
2185 struct lyd_node *child;
2186
2187 if (options & LYD_DUP_RECURSIVE) {
2188 /* duplicate all the children */
2189 LY_LIST_FOR(orig->child, child) {
2190 LY_CHECK_GOTO(ret = lyd_dup_recursive(child, dup, NULL, options, NULL), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002191 }
Radek Krejci0fe9b512019-07-26 17:51:05 +02002192 } else if (dup->schema->nodetype == LYS_LIST && !(dup->schema->flags & LYS_KEYLESS)) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02002193 /* always duplicate keys of a list */
Radek Krejci22ebdba2019-07-25 13:59:43 +02002194 child = orig->child;
Michal Vasko52927e22020-03-16 17:26:14 +01002195 for (struct lysc_node *key = ((struct lysc_node_list *)dup->schema)->child;
Michal Vaskoc57d9a92020-06-23 13:28:27 +02002196 key && (key->flags & LYS_KEY);
Radek Krejci0fe9b512019-07-26 17:51:05 +02002197 key = key->next) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02002198 if (!child) {
2199 /* possibly not keys are present in filtered tree */
2200 break;
Radek Krejci0fe9b512019-07-26 17:51:05 +02002201 } else if (child->schema != key) {
2202 /* possibly not all keys are present in filtered tree,
2203 * but there can be also some non-key nodes */
2204 continue;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002205 }
Michal Vasko52927e22020-03-16 17:26:14 +01002206 LY_CHECK_GOTO(ret = lyd_dup_recursive(child, dup, NULL, options, NULL), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002207 child = child->next;
2208 }
2209 }
2210 lyd_hash(dup);
2211 } else if (dup->schema->nodetype & LYD_NODE_ANY) {
Michal Vasko61551fa2020-07-09 15:45:45 +02002212 dup->hash = node->hash;
2213 any = (struct lyd_node_any *)node;
2214 LY_CHECK_GOTO(ret = lyd_any_copy_value(dup, &any->value, any->value_type), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002215 }
2216
Michal Vasko52927e22020-03-16 17:26:14 +01002217 /* insert */
2218 lyd_insert_node(parent, first, dup);
Michal Vasko52927e22020-03-16 17:26:14 +01002219
2220 if (dup_p) {
2221 *dup_p = dup;
2222 }
2223 return LY_SUCCESS;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002224
2225error:
Michal Vasko52927e22020-03-16 17:26:14 +01002226 lyd_free_tree(dup);
2227 return ret;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002228}
2229
2230API struct lyd_node *
2231lyd_dup(const struct lyd_node *node, struct lyd_node_inner *parent, int options)
2232{
Radek Krejci22ebdba2019-07-25 13:59:43 +02002233 const struct lyd_node *orig; /* original node to be duplicated */
2234 struct lyd_node *first = NULL; /* the first duplicated node, this is returned */
Radek Krejci22ebdba2019-07-25 13:59:43 +02002235 struct lyd_node *top = NULL; /* the most higher created node */
2236 struct lyd_node_inner *local_parent = NULL; /* the direct parent node for the duplicated node(s) */
2237 int keyless_parent_list = 0;
2238
2239 LY_CHECK_ARG_RET(NULL, node, NULL);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002240
2241 if (options & LYD_DUP_WITH_PARENTS) {
2242 struct lyd_node_inner *orig_parent, *iter;
2243 int repeat = 1;
2244 for (top = NULL, orig_parent = node->parent; repeat && orig_parent; orig_parent = orig_parent->parent) {
2245 if (parent && parent->schema == orig_parent->schema) {
2246 /* stop creating parents, connect what we have into the provided parent */
2247 iter = parent;
2248 repeat = 0;
2249 /* get know if there is a keyless list which we will have to rehash */
2250 for (struct lyd_node_inner *piter = parent; piter; piter = piter->parent) {
Radek Krejci0fe9b512019-07-26 17:51:05 +02002251 if (piter->schema->nodetype == LYS_LIST && (piter->schema->flags & LYS_KEYLESS)) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02002252 keyless_parent_list = 1;
2253 break;
2254 }
2255 }
2256 } else {
Michal Vasko52927e22020-03-16 17:26:14 +01002257 iter = NULL;
2258 LY_CHECK_GOTO(lyd_dup_recursive((struct lyd_node *)orig_parent, NULL, (struct lyd_node **)&iter, 0,
2259 (struct lyd_node **)&iter), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002260 }
2261 if (!local_parent) {
2262 local_parent = iter;
2263 }
2264 if (iter->child) {
2265 /* 1) list - add after keys
2266 * 2) provided parent with some children */
2267 iter->child->prev->next = top;
2268 if (top) {
2269 top->prev = iter->child->prev;
2270 iter->child->prev = top;
2271 }
2272 } else {
2273 iter->child = top;
2274 if (iter->schema->nodetype == LYS_LIST) {
2275 /* keyless list - we will need to rehash it since we are going to add nodes into it */
2276 keyless_parent_list = 1;
2277 }
2278 }
2279 if (top) {
2280 top->parent = iter;
2281 }
2282 top = (struct lyd_node*)iter;
2283 }
2284 if (repeat && parent) {
2285 /* given parent and created parents chain actually do not interconnect */
Michal Vasko25a32822020-07-09 15:48:22 +02002286 LOGERR(LYD_NODE_CTX(node), LY_EINVAL,
2287 "Invalid argument parent (%s()) - does not interconnect with the created node's parents chain.", __func__);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002288 goto error;
2289 }
2290 } else {
2291 local_parent = parent;
2292 }
2293
Radek Krejci22ebdba2019-07-25 13:59:43 +02002294 LY_LIST_FOR(node, orig) {
Michal Vasko52927e22020-03-16 17:26:14 +01002295 /* if there is no local parent, it will be inserted into first */
2296 LY_CHECK_GOTO(lyd_dup_recursive(orig, (struct lyd_node *)local_parent, &first, options, first ? NULL : &first), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002297 if (!(options & LYD_DUP_WITH_SIBLINGS)) {
2298 break;
2299 }
2300 }
2301 if (keyless_parent_list) {
2302 /* rehash */
2303 for (; local_parent; local_parent = local_parent->parent) {
Radek Krejci0fe9b512019-07-26 17:51:05 +02002304 if (local_parent->schema->nodetype == LYS_LIST && (local_parent->schema->flags & LYS_KEYLESS)) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02002305 lyd_hash((struct lyd_node*)local_parent);
2306 }
2307 }
2308 }
2309 return first;
2310
2311error:
2312 if (top) {
2313 lyd_free_tree(top);
2314 } else {
Michal Vaskof03ed032020-03-04 13:31:44 +01002315 lyd_free_siblings(first);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002316 }
2317 return NULL;
2318}
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002319
Michal Vasko25a32822020-07-09 15:48:22 +02002320API struct lyd_meta *
2321lyd_dup_meta(const struct lyd_meta *meta, struct lyd_node *node)
2322{
2323 LY_ERR ret;
2324 struct lyd_meta *mt, *last;
2325
2326 LY_CHECK_ARG_RET(NULL, meta, node, NULL);
2327
2328 /* create a copy */
2329 mt = calloc(1, sizeof *mt);
2330 LY_CHECK_ERR_RET(!mt, LOGMEM(LYD_NODE_CTX(node)), NULL);
2331 mt->parent = node;
2332 mt->annotation = meta->annotation;
2333 mt->value.realtype = meta->value.realtype;
2334 ret = mt->value.realtype->plugin->duplicate(LYD_NODE_CTX(node), &meta->value, &mt->value);
2335 LY_CHECK_ERR_RET(ret, LOGERR(LYD_NODE_CTX(node), LY_EINT, "Value duplication failed."), NULL);
2336 mt->name = lydict_insert(LYD_NODE_CTX(node), meta->name, 0);
2337
2338 /* insert as the last attribute */
2339 if (node->meta) {
2340 for (last = node->meta; last->next; last = last->next);
2341 last->next = mt;
2342 } else {
2343 node->meta = mt;
2344 }
2345
2346 return mt;
2347}
2348
Michal Vasko4490d312020-06-16 13:08:55 +02002349/**
2350 * @brief Merge a source sibling into target siblings.
2351 *
2352 * @param[in,out] first_trg First target sibling, is updated if top-level.
2353 * @param[in] parent_trg Target parent.
2354 * @param[in,out] sibling_src Source sibling to merge, set to NULL if spent.
2355 * @param[in] options Merge options.
2356 * @return LY_ERR value.
2357 */
2358static LY_ERR
2359lyd_merge_sibling_r(struct lyd_node **first_trg, struct lyd_node *parent_trg, const struct lyd_node **sibling_src_p,
2360 int options)
2361{
2362 LY_ERR ret;
2363 const struct lyd_node *child_src, *tmp, *sibling_src;
2364 struct lyd_node *match_trg, *dup_src, *next, *elem;
2365 struct lysc_type *type;
2366 LYD_ANYDATA_VALUETYPE tmp_val_type;
2367 union lyd_any_value tmp_val;
2368
2369 sibling_src = *sibling_src_p;
2370 if (sibling_src->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) {
2371 /* try to find the exact instance */
2372 ret = lyd_find_sibling_first(*first_trg, sibling_src, &match_trg);
2373 } else {
2374 /* try to simply find the node, there cannot be more instances */
2375 ret = lyd_find_sibling_val(*first_trg, sibling_src->schema, NULL, 0, &match_trg);
2376 }
2377
2378 if (!ret) {
2379 /* node found, make sure even value matches for all node types */
2380 if ((match_trg->schema->nodetype == LYS_LEAF) && lyd_compare(sibling_src, match_trg, LYD_COMPARE_DEFAULTS)) {
2381 /* since they are different, they cannot both be default */
2382 assert(!(sibling_src->flags & LYD_DEFAULT) || !(match_trg->flags & LYD_DEFAULT));
2383
2384 /* update value (or only LYD_DEFAULT flag) only if no flag set or the source node is not default */
2385 if (!(options & LYD_MERGE_EXPLICIT) || !(sibling_src->flags & LYD_DEFAULT)) {
2386 type = ((struct lysc_node_leaf *)match_trg->schema)->type;
2387 type->plugin->free(LYD_NODE_CTX(match_trg), &((struct lyd_node_term *)match_trg)->value);
2388 LY_CHECK_RET(type->plugin->duplicate(LYD_NODE_CTX(match_trg), &((struct lyd_node_term *)sibling_src)->value,
2389 &((struct lyd_node_term *)match_trg)->value));
2390
2391 /* copy flags and add LYD_NEW */
2392 match_trg->flags = sibling_src->flags | LYD_NEW;
2393 }
2394 } else if ((match_trg->schema->nodetype & LYS_ANYDATA) && lyd_compare(sibling_src, match_trg, 0)) {
2395 if (options & LYD_MERGE_DESTRUCT) {
2396 dup_src = (struct lyd_node *)sibling_src;
2397 lyd_unlink_tree(dup_src);
2398 /* spend it */
2399 *sibling_src_p = NULL;
2400 } else {
2401 dup_src = lyd_dup(sibling_src, NULL, 0);
2402 LY_CHECK_RET(!dup_src, LY_EMEM);
2403 }
2404 /* just switch values */
2405 tmp_val_type = ((struct lyd_node_any *)match_trg)->value_type;
2406 tmp_val = ((struct lyd_node_any *)match_trg)->value;
2407 ((struct lyd_node_any *)match_trg)->value_type = ((struct lyd_node_any *)sibling_src)->value_type;
2408 ((struct lyd_node_any *)match_trg)->value = ((struct lyd_node_any *)sibling_src)->value;
2409 ((struct lyd_node_any *)sibling_src)->value_type = tmp_val_type;
2410 ((struct lyd_node_any *)sibling_src)->value = tmp_val;
2411
2412 /* copy flags and add LYD_NEW */
2413 match_trg->flags = sibling_src->flags | LYD_NEW;
2414
2415 /* dup_src is not needed, actually */
2416 lyd_free_tree(dup_src);
2417 } else {
2418 /* check descendants, recursively */
Michal Vasko5bfd4be2020-06-23 13:26:19 +02002419 LY_LIST_FOR_SAFE(LYD_CHILD(sibling_src), tmp, child_src) {
Michal Vasko4490d312020-06-16 13:08:55 +02002420 LY_CHECK_RET(lyd_merge_sibling_r(lyd_node_children_p(match_trg), match_trg, &child_src, options));
2421 }
2422 }
2423 } else {
2424 /* node not found, merge it */
2425 if (options & LYD_MERGE_DESTRUCT) {
2426 dup_src = (struct lyd_node *)sibling_src;
2427 lyd_unlink_tree(dup_src);
2428 /* spend it */
2429 *sibling_src_p = NULL;
2430 } else {
2431 dup_src = lyd_dup(sibling_src, NULL, LYD_DUP_RECURSIVE | LYD_DUP_WITH_FLAGS);
2432 LY_CHECK_RET(!dup_src, LY_EMEM);
2433 }
2434
2435 /* set LYD_NEW for all the new nodes, required for validation */
2436 LYD_TREE_DFS_BEGIN(dup_src, next, elem) {
2437 elem->flags |= LYD_NEW;
2438 LYD_TREE_DFS_END(dup_src, next, elem);
2439 }
2440
2441 lyd_insert_node(parent_trg, first_trg, dup_src);
2442 }
2443
2444 return LY_SUCCESS;
2445}
2446
2447API LY_ERR
2448lyd_merge(struct lyd_node **target, const struct lyd_node *source, int options)
2449{
2450 const struct lyd_node *sibling_src, *tmp;
2451 int first;
2452
2453 LY_CHECK_ARG_RET(NULL, target, LY_EINVAL);
2454
2455 if (!source) {
2456 /* nothing to merge */
2457 return LY_SUCCESS;
2458 }
2459
2460 if (lysc_data_parent((*target)->schema) || lysc_data_parent(source->schema)) {
2461 LOGERR(LYD_NODE_CTX(source), LY_EINVAL, "Invalid arguments - can merge only 2 top-level subtrees (%s()).", __func__);
2462 return LY_EINVAL;
2463 }
2464
2465 LY_LIST_FOR_SAFE(source, tmp, sibling_src) {
2466 first = sibling_src == source ? 1 : 0;
2467 LY_CHECK_RET(lyd_merge_sibling_r(target, NULL, &sibling_src, options));
2468 if (first && !sibling_src) {
2469 /* source was spent (unlinked), move to the next node */
2470 source = tmp;
2471 }
2472
2473 if (options & LYD_MERGE_NOSIBLINGS) {
2474 break;
2475 }
2476 }
2477
2478 if (options & LYD_MERGE_DESTRUCT) {
2479 /* free any leftover source data that were not merged */
2480 lyd_free_siblings((struct lyd_node *)source);
2481 }
2482
2483 return LY_SUCCESS;
2484}
2485
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002486static LY_ERR
2487lyd_path_str_enlarge(char **buffer, size_t *buflen, size_t reqlen, int is_static)
2488{
Michal Vasko14654712020-02-06 08:35:21 +01002489 /* ending \0 */
2490 ++reqlen;
2491
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002492 if (reqlen > *buflen) {
2493 if (is_static) {
2494 return LY_EINCOMPLETE;
2495 }
2496
2497 *buffer = ly_realloc(*buffer, reqlen * sizeof **buffer);
2498 if (!*buffer) {
2499 return LY_EMEM;
2500 }
2501
2502 *buflen = reqlen;
2503 }
2504
2505 return LY_SUCCESS;
2506}
2507
Michal Vaskod59035b2020-07-08 12:00:06 +02002508LY_ERR
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002509lyd_path_list_predicate(const struct lyd_node *node, char **buffer, size_t *buflen, size_t *bufused, int is_static)
2510{
2511 const struct lyd_node *key;
2512 int dynamic = 0;
2513 size_t len;
2514 const char *val;
2515 char quot;
2516 LY_ERR rc;
2517
Michal Vasko5bfd4be2020-06-23 13:26:19 +02002518 for (key = lyd_node_children(node, 0); key && (key->schema->flags & LYS_KEY); key = key->next) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002519 val = lyd_value2str((struct lyd_node_term *)key, &dynamic);
2520 len = 1 + strlen(key->schema->name) + 2 + strlen(val) + 2;
2521 rc = lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static);
2522 if (rc != LY_SUCCESS) {
2523 if (dynamic) {
2524 free((char *)val);
2525 }
2526 return rc;
2527 }
2528
2529 quot = '\'';
2530 if (strchr(val, '\'')) {
2531 quot = '"';
2532 }
2533 *bufused += sprintf(*buffer + *bufused, "[%s=%c%s%c]", key->schema->name, quot, val, quot);
2534
2535 if (dynamic) {
2536 free((char *)val);
2537 }
2538 }
2539
2540 return LY_SUCCESS;
2541}
2542
2543/**
2544 * @brief Append leaf-list value predicate to path.
2545 *
2546 * @param[in] node Node to print.
2547 * @param[in,out] buffer Buffer to print to.
2548 * @param[in,out] buflen Current buffer length.
2549 * @param[in,out] bufused Current number of characters used in @p buffer.
2550 * @param[in] is_static Whether buffer is static or can be reallocated.
2551 * @return LY_ERR
2552 */
2553static LY_ERR
2554lyd_path_leaflist_predicate(const struct lyd_node *node, char **buffer, size_t *buflen, size_t *bufused, int is_static)
2555{
2556 int dynamic = 0;
2557 size_t len;
2558 const char *val;
2559 char quot;
2560 LY_ERR rc;
2561
2562 val = lyd_value2str((struct lyd_node_term *)node, &dynamic);
2563 len = 4 + strlen(val) + 2;
2564 rc = lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static);
2565 if (rc != LY_SUCCESS) {
2566 goto cleanup;
2567 }
2568
2569 quot = '\'';
2570 if (strchr(val, '\'')) {
2571 quot = '"';
2572 }
2573 *bufused += sprintf(*buffer + *bufused, "[.=%c%s%c]", quot, val, quot);
2574
2575cleanup:
2576 if (dynamic) {
2577 free((char *)val);
2578 }
2579 return rc;
2580}
2581
2582/**
2583 * @brief Append node position (relative to its other instances) predicate to path.
2584 *
2585 * @param[in] node Node to print.
2586 * @param[in,out] buffer Buffer to print to.
2587 * @param[in,out] buflen Current buffer length.
2588 * @param[in,out] bufused Current number of characters used in @p buffer.
2589 * @param[in] is_static Whether buffer is static or can be reallocated.
2590 * @return LY_ERR
2591 */
2592static LY_ERR
2593lyd_path_position_predicate(const struct lyd_node *node, char **buffer, size_t *buflen, size_t *bufused, int is_static)
2594{
2595 const struct lyd_node *first, *iter;
2596 size_t len;
2597 int pos;
2598 char *val = NULL;
2599 LY_ERR rc;
2600
2601 if (node->parent) {
2602 first = node->parent->child;
2603 } else {
2604 for (first = node; node->prev->next; node = node->prev);
2605 }
2606 pos = 1;
2607 for (iter = first; iter != node; iter = iter->next) {
2608 if (iter->schema == node->schema) {
2609 ++pos;
2610 }
2611 }
2612 if (asprintf(&val, "%d", pos) == -1) {
2613 return LY_EMEM;
2614 }
2615
2616 len = 1 + strlen(val) + 1;
2617 rc = lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static);
2618 if (rc != LY_SUCCESS) {
2619 goto cleanup;
2620 }
2621
2622 *bufused += sprintf(*buffer + *bufused, "[%s]", val);
2623
2624cleanup:
2625 free(val);
2626 return rc;
2627}
2628
2629API char *
2630lyd_path(const struct lyd_node *node, LYD_PATH_TYPE pathtype, char *buffer, size_t buflen)
2631{
Michal Vasko14654712020-02-06 08:35:21 +01002632 int is_static = 0, i, depth;
2633 size_t bufused = 0, len;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002634 const struct lyd_node *iter;
2635 const struct lys_module *mod;
2636 LY_ERR rc;
2637
2638 LY_CHECK_ARG_RET(NULL, node, NULL);
2639 if (buffer) {
2640 LY_CHECK_ARG_RET(node->schema->module->ctx, buflen > 1, NULL);
2641 is_static = 1;
Michal Vasko14654712020-02-06 08:35:21 +01002642 } else {
2643 buflen = 0;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002644 }
2645
2646 switch (pathtype) {
Michal Vasko14654712020-02-06 08:35:21 +01002647 case LYD_PATH_LOG:
2648 depth = 1;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002649 for (iter = node; iter->parent; iter = (const struct lyd_node *)iter->parent) {
2650 ++depth;
2651 }
2652
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002653 goto iter_print;
Michal Vasko14654712020-02-06 08:35:21 +01002654 while (depth) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002655 /* find the right node */
Michal Vasko14654712020-02-06 08:35:21 +01002656 for (iter = node, i = 1; i < depth; iter = (const struct lyd_node *)iter->parent, ++i);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002657iter_print:
2658 /* print prefix and name */
2659 mod = NULL;
2660 if (!iter->parent || (iter->schema->module != iter->parent->schema->module)) {
2661 mod = iter->schema->module;
2662 }
2663
2664 /* realloc string */
2665 len = 1 + (mod ? strlen(mod->name) + 1 : 0) + strlen(iter->schema->name);
2666 rc = lyd_path_str_enlarge(&buffer, &buflen, bufused + len, is_static);
2667 if (rc != LY_SUCCESS) {
2668 break;
2669 }
2670
2671 /* print next node */
2672 bufused += sprintf(buffer + bufused, "/%s%s%s", mod ? mod->name : "", mod ? ":" : "", iter->schema->name);
2673
2674 switch (iter->schema->nodetype) {
2675 case LYS_LIST:
2676 if (iter->schema->flags & LYS_KEYLESS) {
2677 /* print its position */
2678 rc = lyd_path_position_predicate(iter, &buffer, &buflen, &bufused, is_static);
2679 } else {
2680 /* print all list keys in predicates */
2681 rc = lyd_path_list_predicate(iter, &buffer, &buflen, &bufused, is_static);
2682 }
2683 break;
2684 case LYS_LEAFLIST:
2685 if (iter->schema->flags & LYS_CONFIG_W) {
2686 /* print leaf-list value */
2687 rc = lyd_path_leaflist_predicate(iter, &buffer, &buflen, &bufused, is_static);
2688 } else {
2689 /* print its position */
2690 rc = lyd_path_position_predicate(iter, &buffer, &buflen, &bufused, is_static);
2691 }
2692 break;
2693 default:
2694 /* nothing to print more */
2695 rc = LY_SUCCESS;
2696 break;
2697 }
2698 if (rc != LY_SUCCESS) {
2699 break;
2700 }
2701
Michal Vasko14654712020-02-06 08:35:21 +01002702 --depth;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002703 }
2704 break;
2705 }
2706
2707 return buffer;
2708}
Michal Vaskoe444f752020-02-10 12:20:06 +01002709
Michal Vasko25a32822020-07-09 15:48:22 +02002710API struct lyd_meta *
2711lyd_find_meta(const struct lyd_meta *first, const struct lys_module *module, const char *name)
2712{
2713 struct lyd_meta *ret = NULL;
2714 const struct ly_ctx *ctx;
2715 const char *prefix, *tmp;
2716 char *str;
2717 size_t pref_len, name_len;
2718
2719 LY_CHECK_ARG_RET(NULL, module || strchr(name, ':'), name, NULL);
2720
2721 if (!first) {
2722 return NULL;
2723 }
2724
2725 ctx = first->annotation->module->ctx;
2726
2727 /* parse the name */
2728 tmp = name;
2729 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
2730 LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name);
2731 return NULL;
2732 }
2733
2734 /* find the module */
2735 if (prefix) {
2736 str = strndup(prefix, pref_len);
2737 module = ly_ctx_get_module_latest(ctx, str);
2738 free(str);
2739 LY_CHECK_ERR_RET(!module, LOGERR(ctx, LY_EINVAL, "Module \"%.*s\" not found.", pref_len, prefix), NULL);
2740 }
2741
2742 /* find the metadata */
2743 LY_LIST_FOR(first, first) {
2744 if ((first->annotation->module == module) && !strcmp(first->name, name)) {
2745 ret = (struct lyd_meta *)first;
2746 break;
2747 }
2748 }
2749
2750 return ret;
2751}
2752
Michal Vasko9b368d32020-02-14 13:53:31 +01002753LY_ERR
2754lyd_find_sibling_next2(const struct lyd_node *first, const struct lysc_node *schema, const char *key_or_value,
2755 size_t val_len, struct lyd_node **match)
Michal Vaskoe444f752020-02-10 12:20:06 +01002756{
2757 LY_ERR rc;
2758 const struct lyd_node *node = NULL;
2759 struct lyd_node_term *term;
Michal Vasko00cbf532020-06-15 13:58:47 +02002760 struct lyxp_expr *expr = NULL;
2761 uint16_t exp_idx = 0;
2762 struct ly_path_predicate *predicates = NULL;
2763 enum ly_path_pred_type pred_type = 0;
Michal Vasko90932a92020-02-12 14:33:03 +01002764 struct lyd_value val = {0};
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002765 LY_ARRAY_COUNT_TYPE u;
Michal Vaskoe444f752020-02-10 12:20:06 +01002766
Michal Vasko9b368d32020-02-14 13:53:31 +01002767 LY_CHECK_ARG_RET(NULL, schema, LY_EINVAL);
Michal Vaskoe444f752020-02-10 12:20:06 +01002768
2769 if (!first) {
2770 /* no data */
Michal Vasko9b368d32020-02-14 13:53:31 +01002771 if (match) {
2772 *match = NULL;
2773 }
Michal Vaskoe444f752020-02-10 12:20:06 +01002774 return LY_ENOTFOUND;
2775 }
2776
Michal Vaskoe444f752020-02-10 12:20:06 +01002777 if (key_or_value && !val_len) {
2778 val_len = strlen(key_or_value);
2779 }
2780
2781 if (key_or_value && (schema->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
Michal Vasko90932a92020-02-12 14:33:03 +01002782 /* store the value */
Michal Vasko9b368d32020-02-14 13:53:31 +01002783 LY_CHECK_GOTO(rc = lyd_value_store(&val, schema, key_or_value, val_len, 0, lydjson_resolve_prefix, NULL, LYD_JSON), cleanup);
Michal Vaskoe444f752020-02-10 12:20:06 +01002784 } else if (key_or_value && (schema->nodetype == LYS_LIST)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02002785 /* parse keys */
2786 LY_CHECK_GOTO(rc = ly_path_parse_predicate(schema->module->ctx, key_or_value, val_len, LY_PATH_PREFIX_OPTIONAL,
2787 LY_PATH_PRED_KEYS, &expr), cleanup);
2788
2789 /* compile them */
2790 LY_CHECK_GOTO(rc = ly_path_compile_predicate(schema->module->ctx, NULL, schema, expr, &exp_idx, lydjson_resolve_prefix,
2791 NULL, LYD_JSON, &predicates, &pred_type), cleanup);
Michal Vaskoe444f752020-02-10 12:20:06 +01002792 }
2793
2794 /* find first matching value */
2795 LY_LIST_FOR(first, node) {
2796 if (node->schema != schema) {
2797 continue;
2798 }
2799
Michal Vasko00cbf532020-06-15 13:58:47 +02002800 if ((schema->nodetype == LYS_LIST) && predicates) {
Michal Vaskoe444f752020-02-10 12:20:06 +01002801 /* compare all set keys */
Michal Vasko00cbf532020-06-15 13:58:47 +02002802 LY_ARRAY_FOR(predicates, u) {
Michal Vaskoe444f752020-02-10 12:20:06 +01002803 /* find key */
Michal Vasko5bfd4be2020-06-23 13:26:19 +02002804 rc = lyd_find_sibling_val(lyd_node_children(node, 0), predicates[u].key, NULL, 0, (struct lyd_node **)&term);
Michal Vaskoe444f752020-02-10 12:20:06 +01002805 if (rc == LY_ENOTFOUND) {
2806 /* all keys must always exist */
Michal Vasko9b368d32020-02-14 13:53:31 +01002807 LOGINT_RET(schema->module->ctx);
Michal Vaskoe444f752020-02-10 12:20:06 +01002808 }
2809 LY_CHECK_GOTO(rc, cleanup);
2810
2811 /* compare values */
Michal Vasko00cbf532020-06-15 13:58:47 +02002812 if (!term->value.realtype->plugin->compare(&term->value, &predicates[u].value)) {
Michal Vaskoe444f752020-02-10 12:20:06 +01002813 break;
2814 }
2815 }
2816
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002817 if (u < LY_ARRAY_COUNT(predicates)) {
Michal Vaskoe444f752020-02-10 12:20:06 +01002818 /* not a match */
2819 continue;
2820 }
Michal Vasko90932a92020-02-12 14:33:03 +01002821 } else if ((schema->nodetype & (LYS_LEAF | LYS_LEAFLIST)) && val.realtype) {
Michal Vaskoe444f752020-02-10 12:20:06 +01002822 term = (struct lyd_node_term *)node;
2823
2824 /* compare values */
Michal Vasko90932a92020-02-12 14:33:03 +01002825 if (!term->value.realtype->plugin->compare(&term->value, &val)) {
Michal Vaskoe444f752020-02-10 12:20:06 +01002826 /* not a match */
2827 continue;
2828 }
2829 }
2830
2831 /* all criteria passed */
2832 break;
2833 }
2834
2835 if (!node) {
2836 rc = LY_ENOTFOUND;
Michal Vasko9b368d32020-02-14 13:53:31 +01002837 if (match) {
2838 *match = NULL;
2839 }
Michal Vaskoe444f752020-02-10 12:20:06 +01002840 goto cleanup;
2841 }
2842
2843 /* success */
Michal Vasko9b368d32020-02-14 13:53:31 +01002844 if (match) {
2845 *match = (struct lyd_node *)node;
2846 }
Michal Vaskoe444f752020-02-10 12:20:06 +01002847 rc = LY_SUCCESS;
2848
2849cleanup:
Michal Vasko00cbf532020-06-15 13:58:47 +02002850 ly_path_predicates_free(schema->module->ctx, pred_type, NULL, predicates);
2851 lyxp_expr_free(schema->module->ctx, expr);
Michal Vasko90932a92020-02-12 14:33:03 +01002852 if (val.realtype) {
Michal Vasko9b368d32020-02-14 13:53:31 +01002853 val.realtype->plugin->free(schema->module->ctx, &val);
Michal Vasko90932a92020-02-12 14:33:03 +01002854 }
Michal Vaskoe444f752020-02-10 12:20:06 +01002855 return rc;
2856}
2857
2858API LY_ERR
Michal Vasko9b368d32020-02-14 13:53:31 +01002859lyd_find_sibling_next(const struct lyd_node *first, const struct lys_module *module, const char *name, size_t name_len,
2860 const char *key_or_value, size_t val_len, struct lyd_node **match)
2861{
2862 const struct lysc_node *schema;
2863
2864 LY_CHECK_ARG_RET(NULL, module, name, match, LY_EINVAL);
2865
2866 if (!first) {
2867 /* no data */
2868 *match = NULL;
2869 return LY_ENOTFOUND;
2870 }
2871
2872 /* find schema */
2873 schema = lys_find_child(first->parent ? first->parent->schema : NULL, module, name, name_len, 0, 0);
2874 if (!schema) {
2875 LOGERR(module->ctx, LY_EINVAL, "Schema node not found.");
2876 return LY_EINVAL;
2877 }
2878
2879 return lyd_find_sibling_next2(first, schema, key_or_value, val_len, match);
2880}
2881
2882API LY_ERR
Michal Vaskoe444f752020-02-10 12:20:06 +01002883lyd_find_sibling_first(const struct lyd_node *siblings, const struct lyd_node *target, struct lyd_node **match)
2884{
2885 struct lyd_node **match_p;
2886 struct lyd_node_inner *parent;
2887
Michal Vaskof03ed032020-03-04 13:31:44 +01002888 LY_CHECK_ARG_RET(NULL, target, LY_EINVAL);
Michal Vaskoe444f752020-02-10 12:20:06 +01002889
Michal Vasko62ed12d2020-05-21 10:08:25 +02002890 if (!siblings || (lysc_data_parent(siblings->schema) != lysc_data_parent(target->schema))) {
2891 /* no data or schema mismatch */
Michal Vasko9b368d32020-02-14 13:53:31 +01002892 if (match) {
2893 *match = NULL;
2894 }
Michal Vaskoe444f752020-02-10 12:20:06 +01002895 return LY_ENOTFOUND;
2896 }
2897
2898 /* find first sibling */
2899 if (siblings->parent) {
2900 siblings = siblings->parent->child;
2901 } else {
2902 while (siblings->prev->next) {
2903 siblings = siblings->prev;
2904 }
2905 }
2906
2907 parent = (struct lyd_node_inner *)siblings->parent;
2908 if (parent && parent->children_ht) {
2909 assert(target->hash);
2910
2911 /* find by hash */
2912 if (!lyht_find(parent->children_ht, &target, target->hash, (void **)&match_p)) {
Michal Vaskoda859032020-07-14 12:20:14 +02002913 /* check even value when needed */
2914 if (!(target->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !lyd_compare(target, *match_p, 0)) {
2915 siblings = *match_p;
2916 } else {
2917 siblings = NULL;
2918 }
Michal Vaskoe444f752020-02-10 12:20:06 +01002919 } else {
2920 /* not found */
2921 siblings = NULL;
2922 }
2923 } else {
2924 /* no children hash table */
2925 for (; siblings; siblings = siblings->next) {
2926 if (!lyd_compare(siblings, target, 0)) {
2927 break;
2928 }
2929 }
2930 }
2931
2932 if (!siblings) {
Michal Vasko9b368d32020-02-14 13:53:31 +01002933 if (match) {
2934 *match = NULL;
2935 }
Michal Vaskoe444f752020-02-10 12:20:06 +01002936 return LY_ENOTFOUND;
2937 }
2938
Michal Vasko9b368d32020-02-14 13:53:31 +01002939 if (match) {
2940 *match = (struct lyd_node *)siblings;
2941 }
Michal Vaskoe444f752020-02-10 12:20:06 +01002942 return LY_SUCCESS;
2943}
2944
2945API LY_ERR
2946lyd_find_sibling_set(const struct lyd_node *siblings, const struct lyd_node *target, struct ly_set **set)
2947{
2948 struct lyd_node_inner *parent;
2949 struct lyd_node *match;
2950 struct lyd_node **match_p;
2951 struct ly_set *ret;
2952
2953 LY_CHECK_ARG_RET(NULL, target, set, LY_EINVAL);
2954
Michal Vasko62ed12d2020-05-21 10:08:25 +02002955 if (!siblings || (lysc_data_parent(siblings->schema) != lysc_data_parent(target->schema))) {
2956 /* no data or schema mismatch */
Michal Vaskoe444f752020-02-10 12:20:06 +01002957 return LY_ENOTFOUND;
2958 }
2959
2960 ret = ly_set_new();
2961 LY_CHECK_ERR_RET(!ret, LOGMEM(target->schema->module->ctx), LY_EMEM);
2962
2963 /* find first sibling */
2964 if (siblings->parent) {
2965 siblings = siblings->parent->child;
2966 } else {
2967 while (siblings->prev->next) {
2968 siblings = siblings->prev;
2969 }
2970 }
2971
2972 parent = (struct lyd_node_inner *)siblings->parent;
2973 if (parent && parent->children_ht) {
2974 assert(target->hash);
2975
2976 /* find by hash */
2977 if (!lyht_find(parent->children_ht, &target, target->hash, (void **)&match_p)) {
Michal Vaskoda859032020-07-14 12:20:14 +02002978 /* check even value when needed */
2979 if (!(target->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !lyd_compare(target, *match_p, 0)) {
2980 match = *match_p;
2981 } else {
2982 match = NULL;
2983 }
Michal Vaskoe444f752020-02-10 12:20:06 +01002984 } else {
2985 /* not found */
2986 match = NULL;
2987 }
2988 while (match) {
2989 /* add all found nodes into the return set */
2990 if (ly_set_add(ret, match, LY_SET_OPT_USEASLIST) == -1) {
2991 goto error;
2992 }
2993
2994 /* find next instance */
2995 if (lyht_find_next(parent->children_ht, &match, match->hash, (void **)&match_p)) {
2996 match = NULL;
2997 } else {
Michal Vaskoda859032020-07-14 12:20:14 +02002998 /* check even value when needed */
2999 if (!(match->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !lyd_compare(match, *match_p, 0)) {
3000 match = *match_p;
3001 } else {
3002 match = NULL;
3003 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003004 }
3005 }
3006 } else {
3007 /* no children hash table */
3008 for (; siblings; siblings = siblings->next) {
3009 if (!lyd_compare(siblings, target, 0)) {
3010 /* a match */
3011 if (ly_set_add(ret, (struct lyd_node *)siblings, LY_SET_OPT_USEASLIST) == -1) {
3012 goto error;
3013 }
3014 }
3015 }
3016 }
3017
3018 if (!ret->count) {
3019 ly_set_free(ret, NULL);
3020 return LY_ENOTFOUND;
3021 }
3022
3023 *set = ret;
3024 return LY_SUCCESS;
3025
3026error:
3027 ly_set_free(ret, NULL);
3028 return LY_EMEM;
3029}
3030
Michal Vasko90932a92020-02-12 14:33:03 +01003031static int
3032lyd_hash_table_schema_val_equal(void *val1_p, void *val2_p, int UNUSED(mod), void *UNUSED(cb_data))
3033{
3034 struct lysc_node *val1;
3035 struct lyd_node *val2;
3036
3037 val1 = *((struct lysc_node **)val1_p);
3038 val2 = *((struct lyd_node **)val2_p);
3039
3040 assert(val1->nodetype & (LYD_NODE_INNER | LYS_LEAF));
3041
3042 if (val1 == val2->schema) {
3043 /* schema match is enough */
3044 return 1;
3045 } else {
3046 return 0;
3047 }
3048}
3049
3050static LY_ERR
3051lyd_find_sibling_schema(const struct lyd_node *siblings, const struct lysc_node *schema, struct lyd_node **match)
3052{
3053 struct lyd_node **match_p;
3054 struct lyd_node_inner *parent;
3055 uint32_t hash;
3056 values_equal_cb ht_cb;
3057
3058 assert(siblings && schema && (schema->nodetype & (LYD_NODE_INNER | LYS_LEAF)));
3059
3060 /* find first sibling */
3061 if (siblings->parent) {
3062 siblings = siblings->parent->child;
3063 } else {
3064 while (siblings->prev->next) {
3065 siblings = siblings->prev;
3066 }
3067 }
3068
3069 parent = (struct lyd_node_inner *)siblings->parent;
3070 if (parent && parent->children_ht) {
3071 /* calculate our hash */
3072 hash = dict_hash_multi(0, schema->module->name, strlen(schema->module->name));
3073 hash = dict_hash_multi(hash, schema->name, strlen(schema->name));
3074 hash = dict_hash_multi(hash, NULL, 0);
3075
3076 /* use special hash table function */
3077 ht_cb = lyht_set_cb(parent->children_ht, lyd_hash_table_schema_val_equal);
3078
3079 /* find by hash */
3080 if (!lyht_find(parent->children_ht, &schema, hash, (void **)&match_p)) {
3081 siblings = *match_p;
3082 } else {
3083 /* not found */
3084 siblings = NULL;
3085 }
3086
3087 /* set the original hash table compare function back */
3088 lyht_set_cb(parent->children_ht, ht_cb);
3089 } else {
3090 /* no children hash table */
3091 for (; siblings; siblings = siblings->next) {
3092 if (siblings->schema == schema) {
3093 /* schema match is enough */
3094 break;
3095 }
3096 }
3097 }
3098
3099 if (!siblings) {
Michal Vasko9b368d32020-02-14 13:53:31 +01003100 if (match) {
3101 *match = NULL;
3102 }
Michal Vasko90932a92020-02-12 14:33:03 +01003103 return LY_ENOTFOUND;
3104 }
3105
Michal Vasko9b368d32020-02-14 13:53:31 +01003106 if (match) {
3107 *match = (struct lyd_node *)siblings;
3108 }
Michal Vasko90932a92020-02-12 14:33:03 +01003109 return LY_SUCCESS;
3110}
3111
Michal Vaskoe444f752020-02-10 12:20:06 +01003112API LY_ERR
3113lyd_find_sibling_val(const struct lyd_node *siblings, const struct lysc_node *schema, const char *key_or_value,
3114 size_t val_len, struct lyd_node **match)
3115{
3116 LY_ERR rc;
3117 struct lyd_node *target = NULL;
3118
3119 LY_CHECK_ARG_RET(NULL, schema, LY_EINVAL);
Michal Vasko62ed12d2020-05-21 10:08:25 +02003120 if ((schema->nodetype == LYS_LIST) && (schema->flags & LYS_KEYLESS)) {
Michal Vaskoe444f752020-02-10 12:20:06 +01003121 LOGERR(schema->module->ctx, LY_EINVAL, "Invalid arguments - key-less list (%s()).", __func__);
3122 return LY_EINVAL;
3123 } else if ((schema->nodetype & (LYS_LEAFLIST | LYS_LIST)) && !key_or_value) {
3124 LOGERR(schema->module->ctx, LY_EINVAL, "Invalid arguments - no value/keys for a (leaf-)list (%s()).", __func__);
3125 return LY_EINVAL;
3126 } else if (schema->nodetype & (LYS_CHOICE | LYS_CASE)) {
3127 LOGERR(schema->module->ctx, LY_EINVAL, "Invalid arguments - schema type %s (%s()).",
3128 lys_nodetype2str(schema->nodetype), __func__);
3129 return LY_EINVAL;
3130 }
3131
Michal Vasko62ed12d2020-05-21 10:08:25 +02003132 if (!siblings || (lysc_data_parent(siblings->schema) != lysc_data_parent(schema))) {
3133 /* no data or schema mismatch */
Michal Vasko9b368d32020-02-14 13:53:31 +01003134 if (match) {
3135 *match = NULL;
3136 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003137 return LY_ENOTFOUND;
3138 }
3139
Michal Vaskof03ed032020-03-04 13:31:44 +01003140 if (key_or_value && !val_len) {
3141 val_len = strlen(key_or_value);
3142 }
3143
Michal Vasko90932a92020-02-12 14:33:03 +01003144 /* create data node if needed and find it */
Michal Vaskoe444f752020-02-10 12:20:06 +01003145 switch (schema->nodetype) {
3146 case LYS_CONTAINER:
3147 case LYS_ANYXML:
3148 case LYS_ANYDATA:
3149 case LYS_NOTIF:
Michal Vasko1bf09392020-03-27 12:38:10 +01003150 case LYS_RPC:
Michal Vasko9b368d32020-02-14 13:53:31 +01003151 case LYS_ACTION:
Michal Vaskoe444f752020-02-10 12:20:06 +01003152 case LYS_LEAF:
Michal Vasko004d3152020-06-11 19:59:22 +02003153 /* find it based on schema only, there cannot be more instances */
Michal Vasko90932a92020-02-12 14:33:03 +01003154 rc = lyd_find_sibling_schema(siblings, schema, match);
Michal Vaskoe444f752020-02-10 12:20:06 +01003155 break;
3156 case LYS_LEAFLIST:
3157 /* target used attributes: schema, hash, value */
Michal Vaskocbff3e92020-05-27 12:56:41 +02003158 rc = lyd_create_term(schema, key_or_value, val_len, NULL, lydjson_resolve_prefix, NULL, LYD_JSON, &target);
3159 LY_CHECK_RET(rc && (rc != LY_EINCOMPLETE), rc);
3160 rc = LY_SUCCESS;
Michal Vasko90932a92020-02-12 14:33:03 +01003161 /* fallthrough */
Michal Vaskoe444f752020-02-10 12:20:06 +01003162 case LYS_LIST:
Michal Vasko90932a92020-02-12 14:33:03 +01003163 if (schema->nodetype == LYS_LIST) {
3164 /* target used attributes: schema, hash, child (all keys) */
Michal Vasko004d3152020-06-11 19:59:22 +02003165 LY_CHECK_RET(lyd_create_list2(schema, key_or_value, val_len, &target));
Michal Vasko90932a92020-02-12 14:33:03 +01003166 }
3167
3168 /* find it */
3169 rc = lyd_find_sibling_first(siblings, target, match);
Michal Vaskoe444f752020-02-10 12:20:06 +01003170 break;
3171 default:
3172 /* unreachable */
3173 LOGINT(schema->module->ctx);
3174 return LY_EINT;
3175 }
3176
Michal Vaskoe444f752020-02-10 12:20:06 +01003177 lyd_free_tree(target);
3178 return rc;
3179}
Michal Vaskoccc02342020-05-21 10:09:21 +02003180
3181API LY_ERR
3182lyd_find_xpath(const struct lyd_node *ctx_node, const char *xpath, struct ly_set **set)
3183{
3184 LY_ERR ret = LY_SUCCESS;
3185 struct lyxp_set xp_set;
3186 struct lyxp_expr *exp;
3187 uint32_t i;
3188
3189 LY_CHECK_ARG_RET(NULL, ctx_node, xpath, set, LY_EINVAL);
3190
3191 memset(&xp_set, 0, sizeof xp_set);
3192
3193 /* compile expression */
Michal Vasko004d3152020-06-11 19:59:22 +02003194 exp = lyxp_expr_parse((struct ly_ctx *)LYD_NODE_CTX(ctx_node), xpath, 0, 1);
Michal Vaskoccc02342020-05-21 10:09:21 +02003195 LY_CHECK_ERR_GOTO(!exp, ret = LY_EINVAL, cleanup);
3196
3197 /* evaluate expression */
3198 ret = lyxp_eval(exp, LYD_JSON, ctx_node->schema->module, ctx_node, LYXP_NODE_ELEM, ctx_node, &xp_set, 0);
3199 LY_CHECK_GOTO(ret, cleanup);
3200
3201 /* allocate return set */
3202 *set = ly_set_new();
3203 LY_CHECK_ERR_GOTO(!*set, LOGMEM(LYD_NODE_CTX(ctx_node)); ret = LY_EMEM, cleanup);
3204
3205 /* transform into ly_set */
3206 if (xp_set.type == LYXP_SET_NODE_SET) {
3207 /* allocate memory for all the elements once (even though not all items must be elements but most likely will be) */
3208 (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs);
3209 LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(LYD_NODE_CTX(ctx_node)); ret = LY_EMEM, cleanup);
3210 (*set)->size = xp_set.used;
3211
3212 for (i = 0; i < xp_set.used; ++i) {
3213 if (xp_set.val.nodes[i].type == LYXP_NODE_ELEM) {
3214 ly_set_add(*set, xp_set.val.nodes[i].node, LY_SET_OPT_USEASLIST);
3215 }
3216 }
3217 }
3218
3219cleanup:
Michal Vasko0691d522020-05-21 13:21:47 +02003220 lyxp_set_free_content(&xp_set);
Michal Vaskoccc02342020-05-21 10:09:21 +02003221 lyxp_expr_free((struct ly_ctx *)LYD_NODE_CTX(ctx_node), exp);
3222 return ret;
3223}