blob: 5d6c63c5b510a8fa30809c9153da37f6276add47 [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>
Radek Krejci47fab892020-11-05 17:02:41 +010021#include <inttypes.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020022#include <stdarg.h>
23#include <stdint.h>
Radek Krejci535ea9f2020-05-29 16:01:05 +020024#include <stdio.h>
25#include <stdlib.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020026#include <string.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020027
Radek Krejci535ea9f2020-05-29 16:01:05 +020028#include "common.h"
Michal Vasko5aa44c02020-06-29 11:47:02 +020029#include "compat.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020030#include "context.h"
31#include "dict.h"
Michal Vaskoa6669ba2020-08-06 16:14:26 +020032#include "diff.h"
Michal Vasko90932a92020-02-12 14:33:03 +010033#include "hash_table.h"
Radek Krejci47fab892020-11-05 17:02:41 +010034#include "in.h"
Michal Vaskoafac7822020-10-20 14:22:26 +020035#include "in_internal.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"
Michal Vasko90932a92020-02-12 14:33:03 +010041#include "plugins_exts_internal.h"
Michal Vasko69730152020-10-09 16:30:07 +020042#include "plugins_exts_metadata.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"
Michal Vaskoa6669ba2020-08-06 16:14:26 +020049#include "validation.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020050#include "xml.h"
51#include "xpath.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020052
Michal Vaskob104f112020-07-17 09:54:54 +020053static LY_ERR lyd_find_sibling_schema(const struct lyd_node *siblings, const struct lysc_node *schema,
Radek Krejci0f969882020-08-21 16:56:47 +020054 struct lyd_node **match);
Michal Vaskob104f112020-07-17 09:54:54 +020055
Radek Krejci084289f2019-07-09 17:35:30 +020056LY_ERR
Michal Vaskofeca4fb2020-10-05 08:58:40 +020057lyd_value_store(const struct ly_ctx *ctx, struct lyd_value *val, const struct lysc_type *type, const char *value,
58 size_t value_len, ly_bool *dynamic, LY_PREFIX_FORMAT format, void *prefix_data, uint32_t hints,
59 const struct lysc_node *ctx_node, ly_bool *incomplete, enum LY_VLOG_ELEM log_elem_type, const void *log_elem)
Radek Krejci084289f2019-07-09 17:35:30 +020060{
Michal Vaskofeca4fb2020-10-05 08:58:40 +020061 LY_ERR ret;
Radek Krejci084289f2019-07-09 17:35:30 +020062 struct ly_err_item *err = NULL;
Michal Vasko25d6ad02020-10-22 12:20:22 +020063 uint32_t options = (dynamic && *dynamic ? LY_TYPE_STORE_DYNAMIC : 0);
Radek Krejci084289f2019-07-09 17:35:30 +020064
Michal Vaskofeca4fb2020-10-05 08:58:40 +020065 if (incomplete) {
66 *incomplete = 0;
Radek Krejci084289f2019-07-09 17:35:30 +020067 }
68
Michal Vaskofeca4fb2020-10-05 08:58:40 +020069 ret = type->plugin->store(ctx, type, value, value_len, options, format, prefix_data, hints, ctx_node, val, &err);
Michal Vasko90932a92020-02-12 14:33:03 +010070 if (ret == LY_EINCOMPLETE) {
Michal Vaskofeca4fb2020-10-05 08:58:40 +020071 if (incomplete) {
72 *incomplete = 1;
73 }
74 } else if (ret) {
75 if (err) {
76 LOGVAL(ctx, log_elem_type, log_elem, err->vecode, err->msg);
77 ly_err_free(err);
78 } else {
79 LOGVAL(ctx, log_elem_type, log_elem, LYVE_OTHER, "Storing value \"%.*s\" failed.", (int)value_len, value);
80 }
81 return ret;
Michal Vasko90932a92020-02-12 14:33:03 +010082 }
83
Michal Vaskofeca4fb2020-10-05 08:58:40 +020084 if (dynamic) {
85 *dynamic = 0;
86 }
87 return LY_SUCCESS;
Michal Vasko90932a92020-02-12 14:33:03 +010088}
89
Radek Krejci38d85362019-09-05 16:26:38 +020090LY_ERR
Michal Vaskofeca4fb2020-10-05 08:58:40 +020091lyd_value_validate_incomplete(const struct ly_ctx *ctx, const struct lysc_type *type, struct lyd_value *val,
92 const struct lyd_node *ctx_node, const struct lyd_node *tree, enum LY_VLOG_ELEM log_elem_type, const void *log_elem)
Radek Krejci38d85362019-09-05 16:26:38 +020093{
Michal Vaskofeca4fb2020-10-05 08:58:40 +020094 LY_ERR ret;
Radek Krejci38d85362019-09-05 16:26:38 +020095 struct ly_err_item *err = NULL;
Radek Krejci38d85362019-09-05 16:26:38 +020096
Michal Vaskofeca4fb2020-10-05 08:58:40 +020097 assert(type->plugin->validate);
Michal Vasko8d544252020-03-02 10:19:52 +010098
Michal Vaskofeca4fb2020-10-05 08:58:40 +020099 ret = type->plugin->validate(ctx, type, ctx_node, tree, val, &err);
100 if (ret) {
Radek Krejci38d85362019-09-05 16:26:38 +0200101 if (err) {
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200102 LOGVAL(ctx, log_elem_type, log_elem, err->vecode, err->msg);
Radek Krejci38d85362019-09-05 16:26:38 +0200103 ly_err_free(err);
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200104 } else {
105 LOGVAL(ctx, log_elem_type, log_elem, LYVE_OTHER, "Resolving value \"%s\" failed.", val->canonical);
Radek Krejci38d85362019-09-05 16:26:38 +0200106 }
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200107 return ret;
Radek Krejci38d85362019-09-05 16:26:38 +0200108 }
109
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200110 return LY_SUCCESS;
Radek Krejci38d85362019-09-05 16:26:38 +0200111}
112
Michal Vaskof937cfe2020-08-03 16:07:12 +0200113LY_ERR
114_lys_value_validate(const struct ly_ctx *ctx, const struct lysc_node *node, const char *value, size_t value_len,
Radek Krejci0f969882020-08-21 16:56:47 +0200115 LY_PREFIX_FORMAT format, void *prefix_data)
Radek Krejci084289f2019-07-09 17:35:30 +0200116{
117 LY_ERR rc = LY_SUCCESS;
118 struct ly_err_item *err = NULL;
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200119 struct lyd_value storage;
Radek Krejci084289f2019-07-09 17:35:30 +0200120 struct lysc_type *type;
Radek Krejci084289f2019-07-09 17:35:30 +0200121
122 LY_CHECK_ARG_RET(ctx, node, value, LY_EINVAL);
123
124 if (!(node->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
125 LOGARG(ctx, node);
126 return LY_EINVAL;
127 }
128
Michal Vasko22df3f02020-08-24 13:29:22 +0200129 type = ((struct lysc_node_leaf *)node)->type;
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200130 rc = type->plugin->store(ctx ? ctx : node->module->ctx, type, value, value_len, 0, format, prefix_data,
131 LYD_HINT_SCHEMA, node, &storage, &err);
Radek Krejci73dead22019-07-11 16:46:16 +0200132 if (rc == LY_EINCOMPLETE) {
133 /* actually success since we do not provide the context tree and call validation with
134 * LY_TYPE_OPTS_INCOMPLETE_DATA */
135 rc = LY_SUCCESS;
136 } else if (rc && err) {
137 if (ctx) {
138 /* log only in case the ctx was provided as input parameter */
Radek Krejci73dead22019-07-11 16:46:16 +0200139 LOGVAL(ctx, LY_VLOG_STR, err->path, err->vecode, err->msg);
Radek Krejci084289f2019-07-09 17:35:30 +0200140 }
Radek Krejci73dead22019-07-11 16:46:16 +0200141 ly_err_free(err);
Radek Krejci084289f2019-07-09 17:35:30 +0200142 }
143
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200144 if (!rc) {
145 type->plugin->free(ctx ? ctx : node->module->ctx, &storage);
146 }
Radek Krejci084289f2019-07-09 17:35:30 +0200147 return rc;
148}
149
150API LY_ERR
Michal Vaskof937cfe2020-08-03 16:07:12 +0200151lys_value_validate(const struct ly_ctx *ctx, const struct lysc_node *node, const char *value, size_t value_len)
152{
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200153 return _lys_value_validate(ctx, node, value, value_len, LY_PREF_JSON, NULL);
Michal Vaskof937cfe2020-08-03 16:07:12 +0200154}
155
156API LY_ERR
Michal Vasko44685da2020-03-17 15:38:06 +0100157lyd_value_validate(const struct ly_ctx *ctx, const struct lyd_node_term *node, const char *value, size_t value_len,
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200158 const struct lyd_node *tree, const struct lysc_type **realtype)
Radek Krejci084289f2019-07-09 17:35:30 +0200159{
160 LY_ERR rc;
161 struct ly_err_item *err = NULL;
162 struct lysc_type *type;
Michal Vasko3701af52020-08-03 14:29:38 +0200163 struct lyd_value val = {0};
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200164 ly_bool stored = 0;
Radek Krejci084289f2019-07-09 17:35:30 +0200165
166 LY_CHECK_ARG_RET(ctx, node, value, LY_EINVAL);
167
Michal Vasko22df3f02020-08-24 13:29:22 +0200168 type = ((struct lysc_node_leaf *)node->schema)->type;
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200169 /* store */
170 rc = type->plugin->store(ctx ? ctx : LYD_CTX(node), type, value, value_len, 0, LY_PREF_JSON, NULL,
171 LYD_HINT_DATA, node->schema, &val, &err);
Radek Krejci73dead22019-07-11 16:46:16 +0200172 if (rc == LY_EINCOMPLETE) {
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200173 stored = 1;
174
175 /* resolve */
176 rc = type->plugin->validate(ctx ? ctx : LYD_CTX(node), type, (struct lyd_node *)node, tree, &val, &err);
177 }
178
179 if (rc) {
Radek Krejci73dead22019-07-11 16:46:16 +0200180 if (err) {
181 if (ctx) {
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200182 LOGVAL(ctx, LY_VLOG_LYD, node, err->vecode, err->msg);
Radek Krejci084289f2019-07-09 17:35:30 +0200183 }
Radek Krejci73dead22019-07-11 16:46:16 +0200184 ly_err_free(err);
Radek Krejci084289f2019-07-09 17:35:30 +0200185 }
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200186 if (stored) {
187 type->plugin->free(ctx ? ctx : LYD_CTX(node), &val);
188 }
Radek Krejci73dead22019-07-11 16:46:16 +0200189 return rc;
Radek Krejci084289f2019-07-09 17:35:30 +0200190 }
191
Michal Vasko3701af52020-08-03 14:29:38 +0200192 if (realtype) {
193 *realtype = val.realtype;
194 }
195
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200196 type->plugin->free(ctx ? ctx : LYD_CTX(node), &val);
Radek Krejci084289f2019-07-09 17:35:30 +0200197 return LY_SUCCESS;
198}
199
200API LY_ERR
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200201lyd_value_compare(const struct lyd_node_term *node, const char *value, size_t value_len)
Radek Krejci084289f2019-07-09 17:35:30 +0200202{
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200203 LY_ERR ret = LY_SUCCESS;
Radek Krejci084289f2019-07-09 17:35:30 +0200204 struct ly_ctx *ctx;
205 struct lysc_type *type;
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200206 struct lyd_value val = {0};
Radek Krejci084289f2019-07-09 17:35:30 +0200207
208 LY_CHECK_ARG_RET(node ? node->schema->module->ctx : NULL, node, value, LY_EINVAL);
209
210 ctx = node->schema->module->ctx;
Michal Vasko22df3f02020-08-24 13:29:22 +0200211 type = ((struct lysc_node_leaf *)node->schema)->type;
Radek Krejci084289f2019-07-09 17:35:30 +0200212
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200213 /* store the value */
214 ret = lyd_value_store(ctx, &val, type, value, value_len, NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, node->schema,
215 NULL, LY_VLOG_LYSC, node->schema);
216 LY_CHECK_RET(ret);
Radek Krejci084289f2019-07-09 17:35:30 +0200217
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200218 /* compare values */
219 ret = type->plugin->compare(&node->value, &val);
Radek Krejci084289f2019-07-09 17:35:30 +0200220
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200221 type->plugin->free(ctx, &val);
Radek Krejci084289f2019-07-09 17:35:30 +0200222 return ret;
223}
224
Radek Krejci19611252020-10-04 13:54:53 +0200225API ly_bool
226lyd_is_default(const struct lyd_node *node)
227{
228 const struct lysc_node_leaf *leaf;
229 const struct lysc_node_leaflist *llist;
230 const struct lyd_node_term *term;
231 LY_ARRAY_COUNT_TYPE u;
232
233 assert(node->schema->nodetype & LYD_NODE_TERM);
234 term = (const struct lyd_node_term *)node;
235
236 if (node->schema->nodetype == LYS_LEAF) {
237 leaf = (const struct lysc_node_leaf *)node->schema;
238 if (!leaf->dflt) {
239 return 0;
240 }
241
242 /* compare with the default value */
243 if (leaf->type->plugin->compare(&term->value, leaf->dflt)) {
244 return 0;
245 }
246 } else {
247 llist = (const struct lysc_node_leaflist *)node->schema;
248 if (!llist->dflts) {
249 return 0;
250 }
251
252 LY_ARRAY_FOR(llist->dflts, u) {
253 /* compare with each possible default value */
254 if (llist->type->plugin->compare(&term->value, llist->dflts[u])) {
255 return 0;
256 }
257 }
258 }
259
260 return 1;
261}
262
Radek Krejci7931b192020-06-25 17:05:03 +0200263static LYD_FORMAT
Michal Vasko63f3d842020-07-08 10:10:14 +0200264lyd_parse_get_format(const struct ly_in *in, LYD_FORMAT format)
Radek Krejcie7b95092019-05-15 11:03:07 +0200265{
Michal Vasko69730152020-10-09 16:30:07 +0200266 if (!format && (in->type == LY_IN_FILEPATH)) {
Radek Krejcie7b95092019-05-15 11:03:07 +0200267 /* unknown format - try to detect it from filename's suffix */
Radek Krejci7931b192020-06-25 17:05:03 +0200268 const char *path = in->method.fpath.filepath;
269 size_t len = strlen(path);
Radek Krejcie7b95092019-05-15 11:03:07 +0200270
271 /* ignore trailing whitespaces */
Michal Vaskod989ba02020-08-24 10:59:24 +0200272 for ( ; len > 0 && isspace(path[len - 1]); len--) {}
Radek Krejcie7b95092019-05-15 11:03:07 +0200273
Michal Vasko69730152020-10-09 16:30:07 +0200274 if ((len >= 5) && !strncmp(&path[len - 4], ".xml", 4)) {
Radek Krejcie7b95092019-05-15 11:03:07 +0200275 format = LYD_XML;
Michal Vasko69730152020-10-09 16:30:07 +0200276 } else if ((len >= 6) && !strncmp(&path[len - 5], ".json", 5)) {
Radek Krejcie7b95092019-05-15 11:03:07 +0200277 format = LYD_JSON;
Michal Vasko69730152020-10-09 16:30:07 +0200278 } else if ((len >= 5) && !strncmp(&path[len - 4], ".lyb", 4)) {
Radek Krejcie7b95092019-05-15 11:03:07 +0200279 format = LYD_LYB;
Radek Krejci7931b192020-06-25 17:05:03 +0200280 } /* else still unknown */
Radek Krejcie7b95092019-05-15 11:03:07 +0200281 }
282
Radek Krejci7931b192020-06-25 17:05:03 +0200283 return format;
284}
Radek Krejcie7b95092019-05-15 11:03:07 +0200285
Radek Krejci7931b192020-06-25 17:05:03 +0200286API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200287lyd_parse_data(const struct ly_ctx *ctx, struct ly_in *in, LYD_FORMAT format, uint32_t parse_options, uint32_t validate_options,
Radek Krejci0f969882020-08-21 16:56:47 +0200288 struct lyd_node **tree)
Radek Krejci7931b192020-06-25 17:05:03 +0200289{
Radek Krejci1798aae2020-07-14 13:26:06 +0200290 LY_ERR ret = LY_SUCCESS;
291 struct lyd_ctx *lydctx = NULL;
292
Radek Krejci7931b192020-06-25 17:05:03 +0200293 LY_CHECK_ARG_RET(ctx, ctx, in, tree, LY_EINVAL);
294 LY_CHECK_ARG_RET(ctx, !(parse_options & ~LYD_PARSE_OPTS_MASK), LY_EINVAL);
295 LY_CHECK_ARG_RET(ctx, !(validate_options & ~LYD_VALIDATE_OPTS_MASK), LY_EINVAL);
296
297 format = lyd_parse_get_format(in, format);
298 LY_CHECK_ARG_RET(ctx, format, LY_EINVAL);
299
Radek Krejci1798aae2020-07-14 13:26:06 +0200300 /* init */
301 *tree = NULL;
302
Michal Vasko63f3d842020-07-08 10:10:14 +0200303 /* remember input position */
304 in->func_start = in->current;
Radek Krejci7931b192020-06-25 17:05:03 +0200305
306 switch (format) {
307 case LYD_XML:
Radek Krejci1798aae2020-07-14 13:26:06 +0200308 LY_CHECK_RET(lyd_parse_xml_data(ctx, in, parse_options, validate_options, tree, &lydctx));
309 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200310 case LYD_JSON:
Radek Krejci1798aae2020-07-14 13:26:06 +0200311 LY_CHECK_RET(lyd_parse_json_data(ctx, in, parse_options, validate_options, tree, &lydctx));
312 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200313 case LYD_LYB:
Radek Krejci1798aae2020-07-14 13:26:06 +0200314 LY_CHECK_RET(lyd_parse_lyb_data(ctx, in, parse_options, validate_options, tree, &lydctx));
315 break;
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200316 case LYD_UNKNOWN:
Radek Krejci7931b192020-06-25 17:05:03 +0200317 LOGINT_RET(ctx);
318 }
319
Radek Krejci1798aae2020-07-14 13:26:06 +0200320 if (!(parse_options & LYD_PARSE_ONLY)) {
321 uint32_t i = 0;
322 const struct lys_module *mod;
323 struct lyd_node *first, *next, **first2;
Radek Krejci7931b192020-06-25 17:05:03 +0200324
Radek Krejci1798aae2020-07-14 13:26:06 +0200325 next = *tree;
326 while (1) {
327 if (validate_options & LYD_VALIDATE_PRESENT) {
328 mod = lyd_data_next_module(&next, &first);
329 } else {
330 mod = lyd_mod_next_module(next, NULL, ctx, &i, &first);
331 }
332 if (!mod) {
333 break;
334 }
335 if (first == *tree) {
336 /* make sure first2 changes are carried to tree */
337 first2 = tree;
338 } else {
339 first2 = &first;
340 }
341
342 /* validate new top-level nodes, autodelete CANNOT occur, all nodes are new */
343 LY_CHECK_GOTO(ret = lyd_validate_new(first2, NULL, mod, NULL), cleanup);
344
345 /* add all top-level defaults for this module */
346 ret = lyd_new_implicit_r(NULL, first2, NULL, mod, &lydctx->unres_node_type, &lydctx->when_check,
Michal Vasko69730152020-10-09 16:30:07 +0200347 (validate_options & LYD_VALIDATE_NO_STATE) ? LYD_IMPLICIT_NO_STATE : 0, NULL);
Radek Krejci1798aae2020-07-14 13:26:06 +0200348 LY_CHECK_GOTO(ret, cleanup);
349
350 /* finish incompletely validated terminal values/attributes and when conditions */
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200351 ret = lyd_validate_unres(tree, &lydctx->when_check, &lydctx->unres_node_type, &lydctx->unres_meta_type, NULL);
Radek Krejci1798aae2020-07-14 13:26:06 +0200352 LY_CHECK_GOTO(ret, cleanup);
353
354 /* perform final validation that assumes the data tree is final */
355 LY_CHECK_GOTO(ret = lyd_validate_final_r(*first2, NULL, mod, validate_options, 0), cleanup);
356 }
357 }
358
359cleanup:
Michal Vaskoafac7822020-10-20 14:22:26 +0200360 lydctx->free(lydctx);
Radek Krejci1798aae2020-07-14 13:26:06 +0200361 if (ret) {
362 lyd_free_all(*tree);
363 *tree = NULL;
364 }
365 return ret;
Radek Krejci7931b192020-06-25 17:05:03 +0200366}
367
368API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200369lyd_parse_data_mem(const struct ly_ctx *ctx, const char *data, LYD_FORMAT format, uint32_t parse_options, uint32_t validate_options,
Radek Krejci0f969882020-08-21 16:56:47 +0200370 struct lyd_node **tree)
Radek Krejci7931b192020-06-25 17:05:03 +0200371{
372 LY_ERR ret;
373 struct ly_in *in;
374
375 LY_CHECK_RET(ly_in_new_memory(data, &in));
376 ret = lyd_parse_data(ctx, in, format, parse_options, validate_options, tree);
377
378 ly_in_free(in, 0);
379 return ret;
380}
381
382API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200383lyd_parse_data_fd(const struct ly_ctx *ctx, int fd, LYD_FORMAT format, uint32_t parse_options, uint32_t validate_options,
Radek Krejci0f969882020-08-21 16:56:47 +0200384 struct lyd_node **tree)
Radek Krejci7931b192020-06-25 17:05:03 +0200385{
386 LY_ERR ret;
387 struct ly_in *in;
388
389 LY_CHECK_RET(ly_in_new_fd(fd, &in));
390 ret = lyd_parse_data(ctx, in, format, parse_options, validate_options, tree);
391
392 ly_in_free(in, 0);
393 return ret;
394}
395
396API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200397lyd_parse_data_path(const struct ly_ctx *ctx, const char *path, LYD_FORMAT format, uint32_t parse_options,
398 uint32_t validate_options, struct lyd_node **tree)
Radek Krejci7931b192020-06-25 17:05:03 +0200399{
400 LY_ERR ret;
401 struct ly_in *in;
402
403 LY_CHECK_RET(ly_in_new_filepath(path, 0, &in));
404 ret = lyd_parse_data(ctx, in, format, parse_options, validate_options, tree);
405
406 ly_in_free(in, 0);
407 return ret;
408}
409
Radek Krejci7931b192020-06-25 17:05:03 +0200410API LY_ERR
411lyd_parse_rpc(const struct ly_ctx *ctx, struct ly_in *in, LYD_FORMAT format, struct lyd_node **tree, struct lyd_node **op)
412{
413 LY_CHECK_ARG_RET(ctx, ctx, in, tree, LY_EINVAL);
414
415 format = lyd_parse_get_format(in, format);
416 LY_CHECK_ARG_RET(ctx, format, LY_EINVAL);
417
Radek Krejci1798aae2020-07-14 13:26:06 +0200418 /* init */
419 *tree = NULL;
420 if (op) {
421 *op = NULL;
422 }
423
Michal Vasko63f3d842020-07-08 10:10:14 +0200424 /* remember input position */
425 in->func_start = in->current;
426
Radek Krejci7931b192020-06-25 17:05:03 +0200427 switch (format) {
428 case LYD_XML:
Michal Vasko63f3d842020-07-08 10:10:14 +0200429 return lyd_parse_xml_rpc(ctx, in, tree, op);
Radek Krejci7931b192020-06-25 17:05:03 +0200430 case LYD_JSON:
Michal Vasko63f3d842020-07-08 10:10:14 +0200431 return lyd_parse_json_rpc(ctx, in, tree, op);
Radek Krejci7931b192020-06-25 17:05:03 +0200432 case LYD_LYB:
Michal Vasko63f3d842020-07-08 10:10:14 +0200433 return lyd_parse_lyb_rpc(ctx, in, tree, op);
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200434 case LYD_UNKNOWN:
435 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200436 }
437
438 LOGINT_RET(ctx);
439}
440
441API LY_ERR
Michal Vasko63f3d842020-07-08 10:10:14 +0200442lyd_parse_reply(const struct lyd_node *request, struct ly_in *in, LYD_FORMAT format, struct lyd_node **tree,
Radek Krejci0f969882020-08-21 16:56:47 +0200443 struct lyd_node **op)
Radek Krejci7931b192020-06-25 17:05:03 +0200444{
445 LY_CHECK_ARG_RET(NULL, request, LY_EINVAL);
Michal Vaskob7be7a82020-08-20 09:09:04 +0200446 LY_CHECK_ARG_RET(LYD_CTX(request), in, tree || op, LY_EINVAL);
Radek Krejci7931b192020-06-25 17:05:03 +0200447
448 format = lyd_parse_get_format(in, format);
Michal Vaskob7be7a82020-08-20 09:09:04 +0200449 LY_CHECK_ARG_RET(LYD_CTX(request), format, LY_EINVAL);
Radek Krejci7931b192020-06-25 17:05:03 +0200450
Radek Krejci1798aae2020-07-14 13:26:06 +0200451 /* init */
452 if (tree) {
453 *tree = NULL;
454 }
455 if (op) {
456 *op = NULL;
457 }
458
Michal Vasko63f3d842020-07-08 10:10:14 +0200459 /* remember input position */
460 in->func_start = in->current;
461
Radek Krejci7931b192020-06-25 17:05:03 +0200462 switch (format) {
463 case LYD_XML:
Michal Vasko63f3d842020-07-08 10:10:14 +0200464 return lyd_parse_xml_reply(request, in, tree, op);
Radek Krejci7931b192020-06-25 17:05:03 +0200465 case LYD_JSON:
Michal Vasko63f3d842020-07-08 10:10:14 +0200466 return lyd_parse_json_reply(request, in, tree, op);
Radek Krejci7931b192020-06-25 17:05:03 +0200467 case LYD_LYB:
Michal Vasko63f3d842020-07-08 10:10:14 +0200468 return lyd_parse_lyb_reply(request, in, tree, op);
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200469 case LYD_UNKNOWN:
470 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200471 }
472
Michal Vaskob7be7a82020-08-20 09:09:04 +0200473 LOGINT_RET(LYD_CTX(request));
Radek Krejci7931b192020-06-25 17:05:03 +0200474}
475
476API LY_ERR
477lyd_parse_notif(const struct ly_ctx *ctx, struct ly_in *in, LYD_FORMAT format, struct lyd_node **tree, struct lyd_node **ntf)
478{
Radek Krejci1798aae2020-07-14 13:26:06 +0200479 LY_CHECK_ARG_RET(ctx, ctx, in, tree || ntf, LY_EINVAL);
Radek Krejci7931b192020-06-25 17:05:03 +0200480
481 format = lyd_parse_get_format(in, format);
482 LY_CHECK_ARG_RET(ctx, format, LY_EINVAL);
483
Radek Krejci1798aae2020-07-14 13:26:06 +0200484 /* init */
485 if (tree) {
486 *tree = NULL;
487 }
488 if (ntf) {
489 *ntf = NULL;
490 }
491
Michal Vasko63f3d842020-07-08 10:10:14 +0200492 /* remember input position */
493 in->func_start = in->current;
494
Radek Krejci7931b192020-06-25 17:05:03 +0200495 switch (format) {
496 case LYD_XML:
Michal Vasko63f3d842020-07-08 10:10:14 +0200497 return lyd_parse_xml_notif(ctx, in, tree, ntf);
Radek Krejci7931b192020-06-25 17:05:03 +0200498 case LYD_JSON:
Michal Vasko63f3d842020-07-08 10:10:14 +0200499 return lyd_parse_json_notif(ctx, in, tree, ntf);
Radek Krejci7931b192020-06-25 17:05:03 +0200500 case LYD_LYB:
Michal Vasko63f3d842020-07-08 10:10:14 +0200501 return lyd_parse_lyb_notif(ctx, in, tree, ntf);
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200502 case LYD_UNKNOWN:
503 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200504 }
505
506 LOGINT_RET(ctx);
Radek Krejcie7b95092019-05-15 11:03:07 +0200507}
Radek Krejci084289f2019-07-09 17:35:30 +0200508
Michal Vasko90932a92020-02-12 14:33:03 +0100509LY_ERR
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200510lyd_create_term(const struct lysc_node *schema, const char *value, size_t value_len, ly_bool *dynamic,
511 LY_PREFIX_FORMAT format, void *prefix_data, uint32_t hints, ly_bool *incomplete, struct lyd_node **node)
Michal Vasko90932a92020-02-12 14:33:03 +0100512{
513 LY_ERR ret;
514 struct lyd_node_term *term;
515
Michal Vasko9b368d32020-02-14 13:53:31 +0100516 assert(schema->nodetype & LYD_NODE_TERM);
517
Michal Vasko90932a92020-02-12 14:33:03 +0100518 term = calloc(1, sizeof *term);
519 LY_CHECK_ERR_RET(!term, LOGMEM(schema->module->ctx), LY_EMEM);
520
521 term->schema = schema;
522 term->prev = (struct lyd_node *)term;
Michal Vasko9b368d32020-02-14 13:53:31 +0100523 term->flags = LYD_NEW;
Michal Vasko90932a92020-02-12 14:33:03 +0100524
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200525 ret = lyd_value_store(schema->module->ctx, &term->value, ((struct lysc_node_leaf *)term->schema)->type, value,
526 value_len, dynamic, format, prefix_data, hints, schema, incomplete, LY_VLOG_LYSC, schema);
527 LY_CHECK_ERR_RET(ret, free(term), ret);
Michal Vasko9b368d32020-02-14 13:53:31 +0100528 lyd_hash((struct lyd_node *)term);
529
530 *node = (struct lyd_node *)term;
531 return ret;
532}
533
534LY_ERR
535lyd_create_term2(const struct lysc_node *schema, const struct lyd_value *val, struct lyd_node **node)
536{
537 LY_ERR ret;
538 struct lyd_node_term *term;
539 struct lysc_type *type;
540
541 assert(schema->nodetype & LYD_NODE_TERM);
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200542 assert(val && val->canonical && val->realtype);
Michal Vasko9b368d32020-02-14 13:53:31 +0100543
544 term = calloc(1, sizeof *term);
545 LY_CHECK_ERR_RET(!term, LOGMEM(schema->module->ctx), LY_EMEM);
546
547 term->schema = schema;
548 term->prev = (struct lyd_node *)term;
549 term->flags = LYD_NEW;
550
551 type = ((struct lysc_node_leaf *)schema)->type;
552 ret = type->plugin->duplicate(schema->module->ctx, val, &term->value);
553 if (ret) {
554 LOGERR(schema->module->ctx, ret, "Value duplication failed.");
555 free(term);
556 return ret;
557 }
558 lyd_hash((struct lyd_node *)term);
Michal Vasko90932a92020-02-12 14:33:03 +0100559
560 *node = (struct lyd_node *)term;
561 return ret;
562}
563
564LY_ERR
565lyd_create_inner(const struct lysc_node *schema, struct lyd_node **node)
566{
567 struct lyd_node_inner *in;
568
Michal Vasko9b368d32020-02-14 13:53:31 +0100569 assert(schema->nodetype & LYD_NODE_INNER);
570
Michal Vasko90932a92020-02-12 14:33:03 +0100571 in = calloc(1, sizeof *in);
572 LY_CHECK_ERR_RET(!in, LOGMEM(schema->module->ctx), LY_EMEM);
573
574 in->schema = schema;
575 in->prev = (struct lyd_node *)in;
Michal Vasko9b368d32020-02-14 13:53:31 +0100576 in->flags = LYD_NEW;
Michal Vasko3383be72020-11-03 17:15:31 +0100577 if ((schema->nodetype == LYS_CONTAINER) && !(schema->flags & LYS_PRESENCE)) {
578 in->flags |= LYD_DEFAULT;
579 }
Michal Vasko90932a92020-02-12 14:33:03 +0100580
Michal Vasko9b368d32020-02-14 13:53:31 +0100581 /* do not hash list with keys, we need them for the hash */
582 if ((schema->nodetype != LYS_LIST) || (schema->flags & LYS_KEYLESS)) {
583 lyd_hash((struct lyd_node *)in);
584 }
Michal Vasko90932a92020-02-12 14:33:03 +0100585
586 *node = (struct lyd_node *)in;
587 return LY_SUCCESS;
588}
589
Michal Vasko90932a92020-02-12 14:33:03 +0100590LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +0200591lyd_create_list(const struct lysc_node *schema, const struct ly_path_predicate *predicates, struct lyd_node **node)
Michal Vasko90932a92020-02-12 14:33:03 +0100592{
593 LY_ERR ret = LY_SUCCESS;
Michal Vasko90932a92020-02-12 14:33:03 +0100594 struct lyd_node *list = NULL, *key;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200595 LY_ARRAY_COUNT_TYPE u;
Michal Vasko90932a92020-02-12 14:33:03 +0100596
Michal Vasko004d3152020-06-11 19:59:22 +0200597 assert((schema->nodetype == LYS_LIST) && !(schema->flags & LYS_KEYLESS));
Michal Vasko90932a92020-02-12 14:33:03 +0100598
599 /* create list */
600 LY_CHECK_GOTO(ret = lyd_create_inner(schema, &list), cleanup);
601
Michal Vasko90932a92020-02-12 14:33:03 +0100602 /* create and insert all the keys */
Michal Vasko004d3152020-06-11 19:59:22 +0200603 LY_ARRAY_FOR(predicates, u) {
604 LY_CHECK_GOTO(ret = lyd_create_term2(predicates[u].key, &predicates[u].value, &key), cleanup);
Michal Vasko90932a92020-02-12 14:33:03 +0100605 lyd_insert_node(list, NULL, key);
606 }
607
Michal Vasko9b368d32020-02-14 13:53:31 +0100608 /* hash having all the keys */
609 lyd_hash(list);
610
Michal Vasko90932a92020-02-12 14:33:03 +0100611 /* success */
612 *node = list;
613 list = NULL;
614
615cleanup:
616 lyd_free_tree(list);
Michal Vasko004d3152020-06-11 19:59:22 +0200617 return ret;
618}
619
620static LY_ERR
621lyd_create_list2(const struct lysc_node *schema, const char *keys, size_t keys_len, struct lyd_node **node)
622{
623 LY_ERR ret = LY_SUCCESS;
624 struct lyxp_expr *expr = NULL;
625 uint16_t exp_idx = 0;
626 enum ly_path_pred_type pred_type = 0;
627 struct ly_path_predicate *predicates = NULL;
628
629 /* parse keys */
Michal Vasko6b26e742020-07-17 15:02:10 +0200630 LY_CHECK_GOTO(ret = ly_path_parse_predicate(schema->module->ctx, NULL, keys, keys_len, LY_PATH_PREFIX_OPTIONAL,
Michal Vasko69730152020-10-09 16:30:07 +0200631 LY_PATH_PRED_KEYS, &expr), cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +0200632
633 /* compile them */
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200634 LY_CHECK_GOTO(ret = ly_path_compile_predicate(schema->module->ctx, NULL, NULL, schema, expr, &exp_idx, LY_PREF_JSON,
635 NULL, &predicates, &pred_type), cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +0200636
637 /* create the list node */
638 LY_CHECK_GOTO(ret = lyd_create_list(schema, predicates, node), cleanup);
639
640cleanup:
641 lyxp_expr_free(schema->module->ctx, expr);
Michal Vaskof7e16e22020-10-21 09:24:39 +0200642 ly_path_predicates_free(schema->module->ctx, pred_type, predicates);
Michal Vasko90932a92020-02-12 14:33:03 +0100643 return ret;
644}
645
646LY_ERR
647lyd_create_any(const struct lysc_node *schema, const void *value, LYD_ANYDATA_VALUETYPE value_type, struct lyd_node **node)
648{
649 struct lyd_node_any *any;
650
Michal Vasko9b368d32020-02-14 13:53:31 +0100651 assert(schema->nodetype & LYD_NODE_ANY);
652
Michal Vasko90932a92020-02-12 14:33:03 +0100653 any = calloc(1, sizeof *any);
654 LY_CHECK_ERR_RET(!any, LOGMEM(schema->module->ctx), LY_EMEM);
655
656 any->schema = schema;
657 any->prev = (struct lyd_node *)any;
Michal Vasko9b368d32020-02-14 13:53:31 +0100658 any->flags = LYD_NEW;
Michal Vasko90932a92020-02-12 14:33:03 +0100659
Radek Krejci1798aae2020-07-14 13:26:06 +0200660 /* TODO: convert XML/JSON strings into a opaq data tree */
661 any->value.str = value;
Michal Vasko90932a92020-02-12 14:33:03 +0100662 any->value_type = value_type;
Michal Vasko9b368d32020-02-14 13:53:31 +0100663 lyd_hash((struct lyd_node *)any);
Michal Vasko90932a92020-02-12 14:33:03 +0100664
665 *node = (struct lyd_node *)any;
666 return LY_SUCCESS;
667}
668
Michal Vasko52927e22020-03-16 17:26:14 +0100669LY_ERR
670lyd_create_opaq(const struct ly_ctx *ctx, const char *name, size_t name_len, const char *value, size_t value_len,
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200671 ly_bool *dynamic, LYD_FORMAT format, uint32_t hints, struct ly_prefix *val_prefs, const char *prefix, size_t pref_len,
Radek Krejci0f969882020-08-21 16:56:47 +0200672 const char *module_key, size_t module_key_len, struct lyd_node **node)
Michal Vasko52927e22020-03-16 17:26:14 +0100673{
Radek Krejci011e4aa2020-09-04 15:22:31 +0200674 LY_ERR ret = LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +0100675 struct lyd_node_opaq *opaq;
676
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200677 assert(ctx && name && name_len && format);
Michal Vasko52927e22020-03-16 17:26:14 +0100678
679 if (!value_len) {
680 value = "";
681 }
682
683 opaq = calloc(1, sizeof *opaq);
Radek Krejcid46e46a2020-09-15 14:22:42 +0200684 LY_CHECK_ERR_RET(!opaq, LOGMEM(ctx); ly_free_val_prefs(ctx, val_prefs), LY_EMEM);
Michal Vasko52927e22020-03-16 17:26:14 +0100685
686 opaq->prev = (struct lyd_node *)opaq;
Radek Krejcid46e46a2020-09-15 14:22:42 +0200687 opaq->val_prefs = val_prefs;
688 opaq->format = format;
Radek Krejci011e4aa2020-09-04 15:22:31 +0200689 LY_CHECK_GOTO(ret = lydict_insert(ctx, name, name_len, &opaq->name), finish);
690
Michal Vasko52927e22020-03-16 17:26:14 +0100691 if (pref_len) {
Radek Krejci011e4aa2020-09-04 15:22:31 +0200692 LY_CHECK_GOTO(ret = lydict_insert(ctx, prefix, pref_len, &opaq->prefix.id), finish);
Michal Vasko52927e22020-03-16 17:26:14 +0100693 }
Radek Krejci1798aae2020-07-14 13:26:06 +0200694 if (module_key_len) {
Radek Krejci011e4aa2020-09-04 15:22:31 +0200695 LY_CHECK_GOTO(ret = lydict_insert(ctx, module_key, module_key_len, &opaq->prefix.module_ns), finish);
Radek Krejci1798aae2020-07-14 13:26:06 +0200696 }
697
Michal Vasko52927e22020-03-16 17:26:14 +0100698 if (dynamic && *dynamic) {
Radek Krejci011e4aa2020-09-04 15:22:31 +0200699 LY_CHECK_GOTO(ret = lydict_insert_zc(ctx, (char *)value, &opaq->value), finish);
Michal Vasko52927e22020-03-16 17:26:14 +0100700 *dynamic = 0;
701 } else {
Radek Krejci011e4aa2020-09-04 15:22:31 +0200702 LY_CHECK_GOTO(ret = lydict_insert(ctx, value, value_len, &opaq->value), finish);
Michal Vasko52927e22020-03-16 17:26:14 +0100703 }
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200704 opaq->hints = hints;
Michal Vasko52927e22020-03-16 17:26:14 +0100705 opaq->ctx = ctx;
706
Radek Krejci011e4aa2020-09-04 15:22:31 +0200707finish:
708 if (ret) {
709 lyd_free_tree((struct lyd_node *)opaq);
710 } else {
711 *node = (struct lyd_node *)opaq;
712 }
713 return ret;
Michal Vasko52927e22020-03-16 17:26:14 +0100714}
715
Michal Vasko3a41dff2020-07-15 14:30:28 +0200716API LY_ERR
Radek Krejci41ac9942020-11-02 14:47:56 +0100717lyd_new_inner(struct lyd_node *parent, const struct lys_module *module, const char *name, ly_bool output, struct lyd_node **node)
Michal Vasko013a8182020-03-03 10:46:53 +0100718{
719 struct lyd_node *ret = NULL;
720 const struct lysc_node *schema;
721 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
722
Michal Vasko6027eb92020-07-15 16:37:30 +0200723 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100724
Michal Vaskof03ed032020-03-04 13:31:44 +0100725 if (!module) {
726 module = parent->schema->module;
727 }
728
Michal Vasko3a41dff2020-07-15 14:30:28 +0200729 schema = lys_find_child(parent ? parent->schema : NULL, module, name, 0,
Radek Krejci41ac9942020-11-02 14:47:56 +0100730 LYS_CONTAINER | LYS_NOTIF | LYS_RPC | LYS_ACTION, output ? LYS_GETNEXT_OUTPUT : 0);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200731 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "Inner node (and not a list) \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +0100732
Michal Vasko3a41dff2020-07-15 14:30:28 +0200733 LY_CHECK_RET(lyd_create_inner(schema, &ret));
734 if (parent) {
Michal Vasko013a8182020-03-03 10:46:53 +0100735 lyd_insert_node(parent, NULL, ret);
736 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200737
738 if (node) {
739 *node = ret;
740 }
741 return LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +0100742}
743
Michal Vasko3a41dff2020-07-15 14:30:28 +0200744API LY_ERR
Radek Krejci41ac9942020-11-02 14:47:56 +0100745lyd_new_list(struct lyd_node *parent, const struct lys_module *module, const char *name, ly_bool output, struct lyd_node **node, ...)
Michal Vasko013a8182020-03-03 10:46:53 +0100746{
747 struct lyd_node *ret = NULL, *key;
748 const struct lysc_node *schema, *key_s;
749 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
750 va_list ap;
751 const char *key_val;
752 LY_ERR rc = LY_SUCCESS;
753
Michal Vasko6027eb92020-07-15 16:37:30 +0200754 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100755
Michal Vaskof03ed032020-03-04 13:31:44 +0100756 if (!module) {
757 module = parent->schema->module;
758 }
759
Radek Krejci41ac9942020-11-02 14:47:56 +0100760 schema = lys_find_child(parent ? parent->schema : NULL, module, name, 0, LYS_LIST, output ? LYS_GETNEXT_OUTPUT : 0);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200761 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "List node \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +0100762
763 /* create list inner node */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200764 LY_CHECK_RET(lyd_create_inner(schema, &ret));
Michal Vasko013a8182020-03-03 10:46:53 +0100765
Michal Vasko3a41dff2020-07-15 14:30:28 +0200766 va_start(ap, node);
Michal Vasko013a8182020-03-03 10:46:53 +0100767
768 /* create and insert all the keys */
769 for (key_s = lysc_node_children(schema, 0); key_s && (key_s->flags & LYS_KEY); key_s = key_s->next) {
770 key_val = va_arg(ap, const char *);
771
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200772 rc = lyd_create_term(key_s, key_val, key_val ? strlen(key_val) : 0, NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA,
773 NULL, &key);
774 LY_CHECK_GOTO(rc, cleanup);
Michal Vasko013a8182020-03-03 10:46:53 +0100775 lyd_insert_node(ret, NULL, key);
776 }
777
Michal Vasko013a8182020-03-03 10:46:53 +0100778 if (parent) {
779 lyd_insert_node(parent, NULL, ret);
780 }
781
782cleanup:
Michal Vasko3a41dff2020-07-15 14:30:28 +0200783 va_end(ap);
Michal Vasko013a8182020-03-03 10:46:53 +0100784 if (rc) {
785 lyd_free_tree(ret);
786 ret = NULL;
Michal Vasko3a41dff2020-07-15 14:30:28 +0200787 } else if (node) {
788 *node = ret;
Michal Vasko013a8182020-03-03 10:46:53 +0100789 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200790 return rc;
Michal Vasko013a8182020-03-03 10:46:53 +0100791}
792
Michal Vasko3a41dff2020-07-15 14:30:28 +0200793API LY_ERR
794lyd_new_list2(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *keys,
Radek Krejci41ac9942020-11-02 14:47:56 +0100795 ly_bool output, struct lyd_node **node)
Michal Vasko013a8182020-03-03 10:46:53 +0100796{
797 struct lyd_node *ret = NULL;
798 const struct lysc_node *schema;
799 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
800
Michal Vasko6027eb92020-07-15 16:37:30 +0200801 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100802
Michal Vaskof03ed032020-03-04 13:31:44 +0100803 if (!module) {
804 module = parent->schema->module;
805 }
Michal Vasko004d3152020-06-11 19:59:22 +0200806 if (!keys) {
807 keys = "";
808 }
Michal Vaskof03ed032020-03-04 13:31:44 +0100809
Michal Vasko004d3152020-06-11 19:59:22 +0200810 /* find schema node */
Radek Krejci41ac9942020-11-02 14:47:56 +0100811 schema = lys_find_child(parent ? parent->schema : NULL, module, name, 0, LYS_LIST, output ? LYS_GETNEXT_OUTPUT : 0);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200812 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "List node \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +0100813
Michal Vasko004d3152020-06-11 19:59:22 +0200814 if ((schema->flags & LYS_KEYLESS) && !keys[0]) {
815 /* key-less list */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200816 LY_CHECK_RET(lyd_create_inner(schema, &ret));
Michal Vasko004d3152020-06-11 19:59:22 +0200817 } else {
818 /* create the list node */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200819 LY_CHECK_RET(lyd_create_list2(schema, keys, strlen(keys), &ret));
Michal Vasko004d3152020-06-11 19:59:22 +0200820 }
Michal Vasko004d3152020-06-11 19:59:22 +0200821 if (parent) {
Michal Vasko013a8182020-03-03 10:46:53 +0100822 lyd_insert_node(parent, NULL, ret);
823 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200824
825 if (node) {
826 *node = ret;
827 }
828 return LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +0100829}
830
Michal Vasko3a41dff2020-07-15 14:30:28 +0200831API LY_ERR
832lyd_new_term(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *val_str,
Radek Krejci41ac9942020-11-02 14:47:56 +0100833 ly_bool output, struct lyd_node **node)
Michal Vasko013a8182020-03-03 10:46:53 +0100834{
Michal Vaskocbff3e92020-05-27 12:56:41 +0200835 LY_ERR rc;
Michal Vasko013a8182020-03-03 10:46:53 +0100836 struct lyd_node *ret = NULL;
837 const struct lysc_node *schema;
838 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
839
Michal Vasko6027eb92020-07-15 16:37:30 +0200840 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100841
Michal Vaskof03ed032020-03-04 13:31:44 +0100842 if (!module) {
843 module = parent->schema->module;
844 }
845
Radek Krejci41ac9942020-11-02 14:47:56 +0100846 schema = lys_find_child(parent ? parent->schema : NULL, module, name, 0, LYD_NODE_TERM, output ? LYS_GETNEXT_OUTPUT : 0);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200847 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "Term node \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +0100848
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200849 rc = lyd_create_term(schema, val_str, val_str ? strlen(val_str) : 0, NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, NULL,
850 &ret);
851 LY_CHECK_RET(rc);
Michal Vaskocbff3e92020-05-27 12:56:41 +0200852 if (parent) {
Michal Vasko013a8182020-03-03 10:46:53 +0100853 lyd_insert_node(parent, NULL, ret);
854 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200855
856 if (node) {
857 *node = ret;
858 }
859 return LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +0100860}
861
Michal Vasko3a41dff2020-07-15 14:30:28 +0200862API LY_ERR
Michal Vasko013a8182020-03-03 10:46:53 +0100863lyd_new_any(struct lyd_node *parent, const struct lys_module *module, const char *name, const void *value,
Radek Krejci41ac9942020-11-02 14:47:56 +0100864 LYD_ANYDATA_VALUETYPE value_type, ly_bool output, struct lyd_node **node)
Michal Vasko013a8182020-03-03 10:46:53 +0100865{
866 struct lyd_node *ret = NULL;
867 const struct lysc_node *schema;
868 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
869
Michal Vasko6027eb92020-07-15 16:37:30 +0200870 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100871
Michal Vaskof03ed032020-03-04 13:31:44 +0100872 if (!module) {
873 module = parent->schema->module;
874 }
875
Radek Krejci41ac9942020-11-02 14:47:56 +0100876 schema = lys_find_child(parent ? parent->schema : NULL, module, name, 0, LYD_NODE_ANY, output ? LYS_GETNEXT_OUTPUT : 0);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200877 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "Any node \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +0100878
Michal Vasko3a41dff2020-07-15 14:30:28 +0200879 LY_CHECK_RET(lyd_create_any(schema, value, value_type, &ret));
880 if (parent) {
Michal Vasko013a8182020-03-03 10:46:53 +0100881 lyd_insert_node(parent, NULL, ret);
882 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200883
884 if (node) {
885 *node = ret;
886 }
887 return LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +0100888}
889
Michal Vasko4490d312020-06-16 13:08:55 +0200890/**
891 * @brief Update node value.
892 *
893 * @param[in] node Node to update.
894 * @param[in] value New value to set.
895 * @param[in] value_type Type of @p value for any node.
896 * @param[out] new_parent Set to @p node if the value was updated, otherwise set to NULL.
897 * @param[out] new_node Set to @p node if the value was updated, otherwise set to NULL.
898 * @return LY_ERR value.
899 */
Michal Vasko00cbf532020-06-15 13:58:47 +0200900static LY_ERR
901lyd_new_path_update(struct lyd_node *node, const void *value, LYD_ANYDATA_VALUETYPE value_type,
Radek Krejci0f969882020-08-21 16:56:47 +0200902 struct lyd_node **new_parent, struct lyd_node **new_node)
Michal Vasko00cbf532020-06-15 13:58:47 +0200903{
904 LY_ERR ret = LY_SUCCESS;
905 struct lyd_node *new_any;
906
907 switch (node->schema->nodetype) {
908 case LYS_CONTAINER:
909 case LYS_NOTIF:
910 case LYS_RPC:
911 case LYS_ACTION:
912 case LYS_LIST:
913 case LYS_LEAFLIST:
914 /* if it exists, there is nothing to update */
915 *new_parent = NULL;
916 *new_node = NULL;
917 break;
918 case LYS_LEAF:
919 ret = lyd_change_term(node, value);
920 if ((ret == LY_SUCCESS) || (ret == LY_EEXIST)) {
921 /* there was an actual change (at least of the default flag) */
922 *new_parent = node;
923 *new_node = node;
924 ret = LY_SUCCESS;
925 } else if (ret == LY_ENOT) {
926 /* no change */
927 *new_parent = NULL;
928 *new_node = NULL;
929 ret = LY_SUCCESS;
930 } /* else error */
931 break;
932 case LYS_ANYDATA:
933 case LYS_ANYXML:
934 /* create a new any node */
935 LY_CHECK_RET(lyd_create_any(node->schema, value, value_type, &new_any));
936
937 /* compare with the existing one */
Michal Vasko8f359bf2020-07-28 10:41:15 +0200938 if (lyd_compare_single(node, new_any, 0)) {
Michal Vasko00cbf532020-06-15 13:58:47 +0200939 /* not equal, switch values (so that we can use generic node free) */
940 ((struct lyd_node_any *)new_any)->value = ((struct lyd_node_any *)node)->value;
941 ((struct lyd_node_any *)new_any)->value_type = ((struct lyd_node_any *)node)->value_type;
942 ((struct lyd_node_any *)node)->value.str = value;
943 ((struct lyd_node_any *)node)->value_type = value_type;
944
945 *new_parent = node;
946 *new_node = node;
947 } else {
948 /* they are equal */
949 *new_parent = NULL;
950 *new_node = NULL;
951 }
952 lyd_free_tree(new_any);
953 break;
954 default:
Michal Vaskob7be7a82020-08-20 09:09:04 +0200955 LOGINT(LYD_CTX(node));
Michal Vasko00cbf532020-06-15 13:58:47 +0200956 ret = LY_EINT;
957 break;
958 }
959
960 return ret;
961}
962
Michal Vasko3a41dff2020-07-15 14:30:28 +0200963API LY_ERR
964lyd_new_meta(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *val_str,
Radek Krejci0f969882020-08-21 16:56:47 +0200965 struct lyd_meta **meta)
Michal Vaskod86997b2020-05-26 15:19:54 +0200966{
967 struct lyd_meta *ret = NULL;
Michal Vasko00cbf532020-06-15 13:58:47 +0200968 const struct ly_ctx *ctx;
Michal Vaskod86997b2020-05-26 15:19:54 +0200969 const char *prefix, *tmp;
Michal Vaskod86997b2020-05-26 15:19:54 +0200970 size_t pref_len, name_len;
971
Michal Vasko3a41dff2020-07-15 14:30:28 +0200972 LY_CHECK_ARG_RET(NULL, parent, name, module || strchr(name, ':'), LY_EINVAL);
Michal Vasko00cbf532020-06-15 13:58:47 +0200973
Michal Vaskob7be7a82020-08-20 09:09:04 +0200974 ctx = LYD_CTX(parent);
Michal Vaskod86997b2020-05-26 15:19:54 +0200975
976 /* parse the name */
977 tmp = name;
978 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
979 LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200980 return LY_EVALID;
Michal Vaskod86997b2020-05-26 15:19:54 +0200981 }
982
983 /* find the module */
984 if (prefix) {
Radek Krejci0ad51f12020-07-16 12:08:12 +0200985 module = ly_ctx_get_module_implemented2(ctx, prefix, pref_len);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200986 LY_CHECK_ERR_RET(!module, LOGERR(ctx, LY_EINVAL, "Module \"%.*s\" not found.", pref_len, prefix), LY_ENOTFOUND);
Michal Vaskod86997b2020-05-26 15:19:54 +0200987 }
988
989 /* set value if none */
990 if (!val_str) {
991 val_str = "";
992 }
993
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200994 LY_CHECK_RET(lyd_create_meta(parent, &ret, module, name, name_len, val_str, strlen(val_str), NULL, LY_PREF_JSON,
995 NULL, LYD_HINT_DATA, NULL));
Michal Vasko3a41dff2020-07-15 14:30:28 +0200996
997 if (meta) {
998 *meta = ret;
999 }
1000 return LY_SUCCESS;
Michal Vaskod86997b2020-05-26 15:19:54 +02001001}
1002
Michal Vasko3a41dff2020-07-15 14:30:28 +02001003API LY_ERR
Michal Vasko00cbf532020-06-15 13:58:47 +02001004lyd_new_opaq(struct lyd_node *parent, const struct ly_ctx *ctx, const char *name, const char *value,
Radek Krejci0f969882020-08-21 16:56:47 +02001005 const char *module_name, struct lyd_node **node)
Michal Vasko00cbf532020-06-15 13:58:47 +02001006{
1007 struct lyd_node *ret = NULL;
1008
Michal Vasko6027eb92020-07-15 16:37:30 +02001009 LY_CHECK_ARG_RET(ctx, parent || ctx, parent || node, name, module_name, LY_EINVAL);
Michal Vasko00cbf532020-06-15 13:58:47 +02001010
1011 if (!ctx) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001012 ctx = LYD_CTX(parent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001013 }
1014 if (!value) {
1015 value = "";
1016 }
1017
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001018 LY_CHECK_RET(lyd_create_opaq(ctx, name, strlen(name), value, strlen(value), NULL, LYD_JSON, 0, NULL, NULL, 0,
1019 module_name, strlen(module_name), &ret));
Michal Vasko3a41dff2020-07-15 14:30:28 +02001020 if (parent) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001021 lyd_insert_node(parent, NULL, ret);
1022 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02001023
1024 if (node) {
1025 *node = ret;
1026 }
1027 return LY_SUCCESS;
Michal Vasko00cbf532020-06-15 13:58:47 +02001028}
1029
Michal Vasko3a41dff2020-07-15 14:30:28 +02001030API LY_ERR
1031lyd_new_attr(struct lyd_node *parent, const char *module_name, const char *name, const char *val_str,
Radek Krejci0f969882020-08-21 16:56:47 +02001032 struct lyd_attr **attr)
Michal Vasko00cbf532020-06-15 13:58:47 +02001033{
Radek Krejci1798aae2020-07-14 13:26:06 +02001034 struct lyd_attr *ret = NULL;
Michal Vasko00cbf532020-06-15 13:58:47 +02001035 const struct ly_ctx *ctx;
1036 const char *prefix, *tmp;
1037 size_t pref_len, name_len;
1038
Michal Vasko3a41dff2020-07-15 14:30:28 +02001039 LY_CHECK_ARG_RET(NULL, parent, !parent->schema, name, LY_EINVAL);
Michal Vasko00cbf532020-06-15 13:58:47 +02001040
Michal Vaskob7be7a82020-08-20 09:09:04 +02001041 ctx = LYD_CTX(parent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001042
1043 /* parse the name */
1044 tmp = name;
1045 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
1046 LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001047 return LY_EVALID;
Michal Vasko00cbf532020-06-15 13:58:47 +02001048 }
1049
1050 /* set value if none */
1051 if (!val_str) {
1052 val_str = "";
1053 }
1054
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001055 LY_CHECK_RET(lyd_create_attr(parent, &ret, ctx, name, name_len, val_str, strlen(val_str), NULL, LYD_JSON, 0, NULL,
Michal Vasko69730152020-10-09 16:30:07 +02001056 prefix, pref_len, module_name, module_name ? strlen(module_name) : 0));
Michal Vasko3a41dff2020-07-15 14:30:28 +02001057
1058 if (attr) {
1059 *attr = ret;
1060 }
1061 return LY_SUCCESS;
Michal Vasko00cbf532020-06-15 13:58:47 +02001062}
1063
1064API LY_ERR
1065lyd_change_term(struct lyd_node *term, const char *val_str)
1066{
1067 LY_ERR ret = LY_SUCCESS;
1068 struct lysc_type *type;
1069 struct lyd_node_term *t;
1070 struct lyd_node *parent;
1071 struct lyd_value val = {0};
Radek Krejci857189e2020-09-01 13:26:36 +02001072 ly_bool dflt_change, val_change;
Michal Vasko00cbf532020-06-15 13:58:47 +02001073
1074 LY_CHECK_ARG_RET(NULL, term, term->schema, term->schema->nodetype & LYD_NODE_TERM, LY_EINVAL);
1075
1076 if (!val_str) {
1077 val_str = "";
1078 }
1079 t = (struct lyd_node_term *)term;
1080 type = ((struct lysc_node_leaf *)term->schema)->type;
1081
1082 /* parse the new value */
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001083 ret = lyd_value_store(LYD_CTX(term), &val, type, val_str, strlen(val_str), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA,
1084 term->schema, NULL, LY_VLOG_LYD, term);
1085 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001086
1087 /* compare original and new value */
1088 if (type->plugin->compare(&t->value, &val)) {
1089 /* values differ, switch them */
Michal Vaskob7be7a82020-08-20 09:09:04 +02001090 type->plugin->free(LYD_CTX(term), &t->value);
Michal Vasko00cbf532020-06-15 13:58:47 +02001091 t->value = val;
1092 memset(&val, 0, sizeof val);
1093 val_change = 1;
1094 } else {
1095 val_change = 0;
1096 }
1097
1098 /* always clear the default flag */
1099 if (term->flags & LYD_DEFAULT) {
1100 for (parent = term; parent; parent = (struct lyd_node *)parent->parent) {
1101 parent->flags &= ~LYD_DEFAULT;
1102 }
1103 dflt_change = 1;
1104 } else {
1105 dflt_change = 0;
1106 }
1107
1108 if (val_change || dflt_change) {
1109 /* make the node non-validated */
1110 term->flags &= LYD_NEW;
1111 }
1112
1113 if (val_change) {
1114 if (term->schema->nodetype == LYS_LEAFLIST) {
1115 /* leaf-list needs to be hashed again and re-inserted into parent */
1116 lyd_unlink_hash(term);
1117 lyd_hash(term);
1118 LY_CHECK_GOTO(ret = lyd_insert_hash(term), cleanup);
1119 } else if ((term->schema->flags & LYS_KEY) && term->parent) {
1120 /* list needs to be updated if its key was changed */
1121 assert(term->parent->schema->nodetype == LYS_LIST);
1122 lyd_unlink_hash((struct lyd_node *)term->parent);
1123 lyd_hash((struct lyd_node *)term->parent);
1124 LY_CHECK_GOTO(ret = lyd_insert_hash((struct lyd_node *)term->parent), cleanup);
1125 } /* else leaf that is not a key, its value is not used for its hash so it does not change */
1126 }
1127
1128 /* retrun value */
1129 if (!val_change) {
1130 if (dflt_change) {
1131 /* only default flag change */
1132 ret = LY_EEXIST;
1133 } else {
1134 /* no change */
1135 ret = LY_ENOT;
1136 }
1137 } /* else value changed, LY_SUCCESS */
1138
1139cleanup:
Michal Vaskob7be7a82020-08-20 09:09:04 +02001140 type->plugin->free(LYD_CTX(term), &val);
Michal Vasko00cbf532020-06-15 13:58:47 +02001141 return ret;
1142}
1143
Michal Vasko41586352020-07-13 13:54:25 +02001144API LY_ERR
1145lyd_change_meta(struct lyd_meta *meta, const char *val_str)
1146{
1147 LY_ERR ret = LY_SUCCESS;
Radek Krejci2b18bf12020-11-06 11:20:20 +01001148 struct lyd_meta *m2 = NULL;
Michal Vasko41586352020-07-13 13:54:25 +02001149 struct lyd_value val;
Radek Krejci857189e2020-09-01 13:26:36 +02001150 ly_bool val_change;
Michal Vasko41586352020-07-13 13:54:25 +02001151
1152 LY_CHECK_ARG_RET(NULL, meta, LY_EINVAL);
1153
1154 if (!val_str) {
1155 val_str = "";
1156 }
1157
1158 /* parse the new value into a new meta structure */
1159 LY_CHECK_GOTO(ret = lyd_create_meta(NULL, &m2, meta->annotation->module, meta->name, strlen(meta->name), val_str,
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001160 strlen(val_str), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, NULL), cleanup);
Michal Vasko41586352020-07-13 13:54:25 +02001161
1162 /* compare original and new value */
1163 if (lyd_compare_meta(meta, m2)) {
1164 /* values differ, switch them */
1165 val = meta->value;
1166 meta->value = m2->value;
1167 m2->value = val;
1168 val_change = 1;
1169 } else {
1170 val_change = 0;
1171 }
1172
1173 /* retrun value */
1174 if (!val_change) {
1175 /* no change */
1176 ret = LY_ENOT;
1177 } /* else value changed, LY_SUCCESS */
1178
1179cleanup:
1180 return ret;
1181}
1182
Michal Vasko3a41dff2020-07-15 14:30:28 +02001183API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001184lyd_new_path(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const char *value, uint32_t options,
Radek Krejci0f969882020-08-21 16:56:47 +02001185 struct lyd_node **node)
Michal Vasko00cbf532020-06-15 13:58:47 +02001186{
Michal Vasko3a41dff2020-07-15 14:30:28 +02001187 return lyd_new_path2(parent, ctx, path, value, 0, options, node, NULL);
Michal Vasko00cbf532020-06-15 13:58:47 +02001188}
1189
1190API LY_ERR
1191lyd_new_path2(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const void *value,
Radek Krejci1deb5be2020-08-26 16:43:36 +02001192 LYD_ANYDATA_VALUETYPE value_type, uint32_t options, struct lyd_node **new_parent, struct lyd_node **new_node)
Michal Vasko00cbf532020-06-15 13:58:47 +02001193{
1194 LY_ERR ret = LY_SUCCESS, r;
1195 struct lyxp_expr *exp = NULL;
1196 struct ly_path *p = NULL;
1197 struct lyd_node *nparent = NULL, *nnode = NULL, *node = NULL, *cur_parent;
1198 const struct lysc_node *schema;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001199 LY_ARRAY_COUNT_TYPE path_idx = 0;
Michal Vasko00cbf532020-06-15 13:58:47 +02001200 struct ly_path_predicate *pred;
1201
1202 LY_CHECK_ARG_RET(ctx, parent || ctx, path, (path[0] == '/') || parent, LY_EINVAL);
1203
1204 if (!ctx) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001205 ctx = LYD_CTX(parent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001206 }
1207
1208 /* parse path */
Michal Vasko6b26e742020-07-17 15:02:10 +02001209 LY_CHECK_GOTO(ret = ly_path_parse(ctx, NULL, path, strlen(path), LY_PATH_BEGIN_EITHER, LY_PATH_LREF_FALSE,
Michal Vasko69730152020-10-09 16:30:07 +02001210 LY_PATH_PREFIX_OPTIONAL, LY_PATH_PRED_SIMPLE, &exp), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001211
1212 /* compile path */
1213 LY_CHECK_GOTO(ret = ly_path_compile(ctx, NULL, parent ? parent->schema : NULL, exp, LY_PATH_LREF_FALSE,
Michal Vasko5d24f6c2020-10-13 13:49:06 +02001214 options & LYD_NEW_PATH_OUTPUT ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT, LY_PATH_TARGET_MANY, LY_PREF_JSON,
1215 NULL, &p), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001216
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001217 schema = p[LY_ARRAY_COUNT(p) - 1].node;
Michal Vasko69730152020-10-09 16:30:07 +02001218 if ((schema->nodetype == LYS_LIST) && (p[LY_ARRAY_COUNT(p) - 1].pred_type == LY_PATH_PREDTYPE_NONE) &&
Radek Krejci092e33c2020-10-12 15:33:10 +02001219 !(options & LYD_NEW_PATH_OPAQ)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001220 LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_XPATH, "Predicate missing for %s \"%s\" in path.",
Michal Vasko69730152020-10-09 16:30:07 +02001221 lys_nodetype2str(schema->nodetype), schema->name);
Michal Vasko00cbf532020-06-15 13:58:47 +02001222 ret = LY_EINVAL;
1223 goto cleanup;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001224 } 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 +02001225 /* parse leafref value into a predicate, if not defined in the path */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001226 p[LY_ARRAY_COUNT(p) - 1].pred_type = LY_PATH_PREDTYPE_LEAFLIST;
1227 LY_ARRAY_NEW_GOTO(ctx, p[LY_ARRAY_COUNT(p) - 1].predicates, pred, ret, cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001228
1229 if (!value) {
1230 value = "";
1231 }
1232
1233 r = LY_SUCCESS;
Radek Krejci092e33c2020-10-12 15:33:10 +02001234 if (options & LYD_NEW_PATH_OPAQ) {
Michal Vaskof937cfe2020-08-03 16:07:12 +02001235 r = lys_value_validate(NULL, schema, value, strlen(value));
Michal Vasko00cbf532020-06-15 13:58:47 +02001236 }
1237 if (!r) {
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001238 ret = lyd_value_store(ctx, &pred->value, ((struct lysc_node_leaflist *)schema)->type, value, strlen(value),
1239 NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, schema, NULL, LY_VLOG_LYSC, schema);
1240 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoae875662020-10-21 10:33:17 +02001241 ++((struct lysc_type *)pred->value.realtype)->refcount;
Michal Vasko00cbf532020-06-15 13:58:47 +02001242 } /* else we have opaq flag and the value is not valid, leavne no predicate and then create an opaque node */
1243 }
1244
1245 /* try to find any existing nodes in the path */
1246 if (parent) {
1247 ret = ly_path_eval_partial(p, parent, &path_idx, &node);
1248 if (ret == LY_SUCCESS) {
1249 /* the node exists, are we supposed to update it or is it just a default? */
Radek Krejci092e33c2020-10-12 15:33:10 +02001250 if (!(options & LYD_NEW_PATH_UPDATE) && !(node->flags & LYD_DEFAULT)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001251 LOGERR(ctx, LY_EEXIST, "Path \"%s\" already exists", path);
1252 ret = LY_EEXIST;
1253 goto cleanup;
1254 }
1255
1256 /* update the existing node */
1257 ret = lyd_new_path_update(node, value, value_type, &nparent, &nnode);
1258 goto cleanup;
1259 } else if (ret == LY_EINCOMPLETE) {
1260 /* some nodes were found, adjust the iterator to the next segment */
1261 ++path_idx;
1262 } else if (ret == LY_ENOTFOUND) {
1263 /* we will create the nodes from top-level, default behavior (absolute path), or from the parent (relative path) */
Michal Vasko45b0d202020-11-06 17:20:46 +01001264 if (lysc_data_parent(p[0].node)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001265 node = parent;
1266 }
1267 } else {
1268 /* error */
1269 goto cleanup;
1270 }
1271 }
1272
1273 /* create all the non-existing nodes in a loop */
Michal Vaskod989ba02020-08-24 10:59:24 +02001274 for ( ; path_idx < LY_ARRAY_COUNT(p); ++path_idx) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001275 cur_parent = node;
1276 schema = p[path_idx].node;
1277
1278 switch (schema->nodetype) {
1279 case LYS_LIST:
1280 if (!(schema->flags & LYS_KEYLESS)) {
Radek Krejci092e33c2020-10-12 15:33:10 +02001281 if ((options & LYD_NEW_PATH_OPAQ) && (p[path_idx].pred_type == LY_PATH_PREDTYPE_NONE)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001282 /* creating opaque list without keys */
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001283 LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), NULL, 0, NULL, LYD_JSON,
1284 LYD_NODEHINT_LIST, NULL, NULL, 0, schema->module->name, strlen(schema->module->name), &node),
Michal Vasko69730152020-10-09 16:30:07 +02001285 cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001286 } else {
1287 assert(p[path_idx].pred_type == LY_PATH_PREDTYPE_LIST);
1288 LY_CHECK_GOTO(ret = lyd_create_list(schema, p[path_idx].predicates, &node), cleanup);
1289 }
1290 break;
1291 }
Radek Krejci0f969882020-08-21 16:56:47 +02001292 /* fallthrough */
Michal Vasko00cbf532020-06-15 13:58:47 +02001293 case LYS_CONTAINER:
1294 case LYS_NOTIF:
1295 case LYS_RPC:
1296 case LYS_ACTION:
1297 LY_CHECK_GOTO(ret = lyd_create_inner(schema, &node), cleanup);
1298 break;
1299 case LYS_LEAFLIST:
Radek Krejci092e33c2020-10-12 15:33:10 +02001300 if ((options & LYD_NEW_PATH_OPAQ) && (p[path_idx].pred_type == LY_PATH_PREDTYPE_NONE)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001301 /* creating opaque leaf-list without value */
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001302 LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), NULL, 0, NULL, LYD_JSON,
1303 LYD_NODEHINT_LEAFLIST, NULL, NULL, 0, schema->module->name, strlen(schema->module->name), &node),
1304 cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001305 } else {
1306 assert(p[path_idx].pred_type == LY_PATH_PREDTYPE_LEAFLIST);
1307 LY_CHECK_GOTO(ret = lyd_create_term2(schema, &p[path_idx].predicates[0].value, &node), cleanup);
1308 }
1309 break;
1310 case LYS_LEAF:
1311 /* make there is some value */
1312 if (!value) {
1313 value = "";
1314 }
1315
1316 r = LY_SUCCESS;
Radek Krejci092e33c2020-10-12 15:33:10 +02001317 if (options & LYD_NEW_PATH_OPAQ) {
Michal Vaskof937cfe2020-08-03 16:07:12 +02001318 r = lys_value_validate(NULL, schema, value, strlen(value));
Michal Vasko00cbf532020-06-15 13:58:47 +02001319 }
1320 if (!r) {
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001321 ret = lyd_create_term(schema, value, strlen(value), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, NULL, &node);
1322 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001323 } else {
1324 /* creating opaque leaf without value */
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001325 LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), NULL, 0, NULL, LYD_JSON,
Michal Vasko69730152020-10-09 16:30:07 +02001326 0, NULL, NULL, 0, schema->module->name,
1327 strlen(schema->module->name), &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001328 }
1329 break;
1330 case LYS_ANYDATA:
1331 case LYS_ANYXML:
1332 LY_CHECK_GOTO(ret = lyd_create_any(schema, value, value_type, &node), cleanup);
1333 break;
1334 default:
1335 LOGINT(ctx);
1336 ret = LY_EINT;
1337 goto cleanup;
1338 }
1339
1340 if (cur_parent) {
1341 /* connect to the parent */
1342 lyd_insert_node(cur_parent, NULL, node);
1343 } else if (parent) {
1344 /* connect to top-level siblings */
1345 lyd_insert_node(NULL, &parent, node);
1346 }
1347
1348 /* update remembered nodes */
1349 if (!nparent) {
1350 nparent = node;
1351 }
1352 nnode = node;
1353 }
1354
1355cleanup:
1356 lyxp_expr_free(ctx, exp);
1357 ly_path_free(ctx, p);
1358 if (!ret) {
1359 /* set out params only on success */
1360 if (new_parent) {
1361 *new_parent = nparent;
1362 }
1363 if (new_node) {
1364 *new_node = nnode;
1365 }
1366 }
1367 return ret;
1368}
1369
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001370LY_ERR
1371lyd_new_implicit_r(struct lyd_node *parent, struct lyd_node **first, const struct lysc_node *sparent,
Radek Krejci1deb5be2020-08-26 16:43:36 +02001372 const struct lys_module *mod, struct ly_set *node_types, struct ly_set *node_when, uint32_t impl_opts,
Radek Krejci0f969882020-08-21 16:56:47 +02001373 struct lyd_node **diff)
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001374{
1375 LY_ERR ret;
1376 const struct lysc_node *iter = NULL;
Radek Krejci2b18bf12020-11-06 11:20:20 +01001377 struct lyd_node *node = NULL;
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001378 struct lyd_value **dflts;
1379 LY_ARRAY_COUNT_TYPE u;
1380
1381 assert(first && (parent || sparent || mod));
1382
1383 if (!sparent && parent) {
1384 sparent = parent->schema;
1385 }
1386
1387 while ((iter = lys_getnext(iter, sparent, mod ? mod->compiled : NULL, LYS_GETNEXT_WITHCHOICE))) {
1388 if ((impl_opts & LYD_IMPLICIT_NO_STATE) && (iter->flags & LYS_CONFIG_R)) {
1389 continue;
Michal Vasko44b19a12020-08-07 09:21:30 +02001390 } else if ((impl_opts & LYD_IMPLICIT_NO_CONFIG) && (iter->flags & LYS_CONFIG_W)) {
1391 continue;
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001392 }
1393
1394 switch (iter->nodetype) {
1395 case LYS_CHOICE:
1396 if (((struct lysc_node_choice *)iter)->dflt && !lys_getnext_data(NULL, *first, NULL, iter, NULL)) {
1397 /* create default case data */
1398 LY_CHECK_RET(lyd_new_implicit_r(parent, first, (struct lysc_node *)((struct lysc_node_choice *)iter)->dflt,
Michal Vasko69730152020-10-09 16:30:07 +02001399 NULL, node_types, node_when, impl_opts, diff));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001400 }
1401 break;
1402 case LYS_CONTAINER:
1403 if (!(iter->flags & LYS_PRESENCE) && lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
1404 /* create default NP container */
1405 LY_CHECK_RET(lyd_create_inner(iter, &node));
Michal Vasko0cadfcb2020-11-04 17:17:05 +01001406 node->flags = LYD_DEFAULT | (node->schema->when ? LYD_WHEN_TRUE : 0);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001407 lyd_insert_node(parent, first, node);
1408
1409 /* cannot be a NP container with when */
1410 assert(!iter->when);
1411
Michal Vaskoe49b6322020-11-05 17:38:36 +01001412 if (diff) {
1413 /* add into diff */
1414 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff));
1415 }
1416
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001417 /* create any default children */
1418 LY_CHECK_RET(lyd_new_implicit_r(node, lyd_node_children_p(node), NULL, NULL, node_types, node_when,
Michal Vasko69730152020-10-09 16:30:07 +02001419 impl_opts, diff));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001420 }
1421 break;
1422 case LYS_LEAF:
Michal Vasko69730152020-10-09 16:30:07 +02001423 if (!(impl_opts & LYD_IMPLICIT_NO_DEFAULTS) && ((struct lysc_node_leaf *)iter)->dflt &&
1424 lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001425 /* create default leaf */
1426 ret = lyd_create_term2(iter, ((struct lysc_node_leaf *)iter)->dflt, &node);
1427 if (ret == LY_EINCOMPLETE) {
1428 if (node_types) {
1429 /* remember to resolve type */
Radek Krejci3d92e442020-10-12 12:48:13 +02001430 LY_CHECK_RET(ly_set_add(node_types, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001431 }
1432 } else if (ret) {
1433 return ret;
1434 }
Michal Vasko0cadfcb2020-11-04 17:17:05 +01001435 node->flags = LYD_DEFAULT | (node->schema->when ? LYD_WHEN_TRUE : 0);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001436 lyd_insert_node(parent, first, node);
1437
1438 if (iter->when && node_when) {
1439 /* remember to resolve when */
Radek Krejci3d92e442020-10-12 12:48:13 +02001440 LY_CHECK_RET(ly_set_add(node_when, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001441 }
1442 if (diff) {
1443 /* add into diff */
1444 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff));
1445 }
1446 }
1447 break;
1448 case LYS_LEAFLIST:
Michal Vasko69730152020-10-09 16:30:07 +02001449 if (!(impl_opts & LYD_IMPLICIT_NO_DEFAULTS) && ((struct lysc_node_leaflist *)iter)->dflts &&
1450 lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001451 /* create all default leaf-lists */
1452 dflts = ((struct lysc_node_leaflist *)iter)->dflts;
1453 LY_ARRAY_FOR(dflts, u) {
1454 ret = lyd_create_term2(iter, dflts[u], &node);
1455 if (ret == LY_EINCOMPLETE) {
1456 if (node_types) {
1457 /* remember to resolve type */
Radek Krejci3d92e442020-10-12 12:48:13 +02001458 LY_CHECK_RET(ly_set_add(node_types, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001459 }
1460 } else if (ret) {
1461 return ret;
1462 }
Radek Krejcic5b54a02020-11-05 17:13:18 +01001463 node->flags = LYD_DEFAULT | (node->schema->when ? LYD_WHEN_TRUE : 0);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001464 lyd_insert_node(parent, first, node);
1465
1466 if (iter->when && node_when) {
1467 /* remember to resolve when */
Radek Krejci3d92e442020-10-12 12:48:13 +02001468 LY_CHECK_RET(ly_set_add(node_when, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001469 }
1470 if (diff) {
1471 /* add into diff */
1472 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff));
1473 }
1474 }
1475 }
1476 break;
1477 default:
1478 /* without defaults */
1479 break;
1480 }
1481 }
1482
1483 return LY_SUCCESS;
1484}
1485
1486API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001487lyd_new_implicit_tree(struct lyd_node *tree, uint32_t implicit_options, struct lyd_node **diff)
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001488{
Michal Vasko56daf732020-08-10 10:57:18 +02001489 struct lyd_node *node;
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001490 LY_ERR ret = LY_SUCCESS;
1491
1492 LY_CHECK_ARG_RET(NULL, tree, LY_EINVAL);
1493 if (diff) {
1494 *diff = NULL;
1495 }
1496
Michal Vasko56daf732020-08-10 10:57:18 +02001497 LYD_TREE_DFS_BEGIN(tree, node) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001498 /* skip added default nodes */
Michal Vasko69730152020-10-09 16:30:07 +02001499 if (((node->flags & (LYD_DEFAULT | LYD_NEW)) != (LYD_DEFAULT | LYD_NEW)) &&
1500 (node->schema->nodetype & LYD_NODE_INNER)) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001501 LY_CHECK_GOTO(ret = lyd_new_implicit_r(node, lyd_node_children_p((struct lyd_node *)node), NULL, NULL, NULL,
Michal Vasko69730152020-10-09 16:30:07 +02001502 NULL, implicit_options, diff), cleanup);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001503 }
1504
Michal Vasko56daf732020-08-10 10:57:18 +02001505 LYD_TREE_DFS_END(tree, node);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001506 }
1507
1508cleanup:
1509 if (ret && diff) {
1510 lyd_free_all(*diff);
1511 *diff = NULL;
1512 }
1513 return ret;
1514}
1515
1516API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001517lyd_new_implicit_all(struct lyd_node **tree, const struct ly_ctx *ctx, uint32_t implicit_options, struct lyd_node **diff)
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001518{
1519 const struct lys_module *mod;
1520 struct lyd_node *d = NULL;
1521 uint32_t i = 0;
1522 LY_ERR ret = LY_SUCCESS;
1523
1524 LY_CHECK_ARG_RET(ctx, tree, *tree || ctx, LY_EINVAL);
1525 if (diff) {
1526 *diff = NULL;
1527 }
1528 if (!ctx) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001529 ctx = LYD_CTX(*tree);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001530 }
1531
1532 /* add nodes for each module one-by-one */
1533 while ((mod = ly_ctx_get_module_iter(ctx, &i))) {
1534 if (!mod->implemented) {
1535 continue;
1536 }
1537
1538 LY_CHECK_GOTO(ret = lyd_new_implicit_module(tree, mod, implicit_options, diff ? &d : NULL), cleanup);
1539 if (d) {
1540 /* merge into one diff */
1541 lyd_insert_sibling(*diff, d, diff);
1542
1543 d = NULL;
1544 }
1545 }
1546
1547cleanup:
1548 if (ret && diff) {
1549 lyd_free_all(*diff);
1550 *diff = NULL;
1551 }
1552 return ret;
1553}
1554
1555API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001556lyd_new_implicit_module(struct lyd_node **tree, const struct lys_module *module, uint32_t implicit_options, struct lyd_node **diff)
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001557{
1558 struct lyd_node *root, *d = NULL;
1559 LY_ERR ret = LY_SUCCESS;
1560
1561 LY_CHECK_ARG_RET(NULL, tree, module, LY_EINVAL);
1562 if (diff) {
1563 *diff = NULL;
1564 }
1565
1566 /* add all top-level defaults for this module */
1567 LY_CHECK_GOTO(ret = lyd_new_implicit_r(NULL, tree, NULL, module, NULL, NULL, implicit_options, diff), cleanup);
1568
1569 /* process nested nodes */
1570 LY_LIST_FOR(*tree, root) {
1571 /* skip added default nodes */
1572 if ((root->flags & (LYD_DEFAULT | LYD_NEW)) != (LYD_DEFAULT | LYD_NEW)) {
1573 LY_CHECK_GOTO(ret = lyd_new_implicit_tree(root, implicit_options, diff ? &d : NULL), cleanup);
1574
1575 if (d) {
1576 /* merge into one diff */
1577 lyd_insert_sibling(*diff, d, diff);
1578
1579 d = NULL;
1580 }
1581 }
1582 }
1583
1584cleanup:
1585 if (ret && diff) {
1586 lyd_free_all(*diff);
1587 *diff = NULL;
1588 }
1589 return ret;
1590}
1591
Michal Vasko90932a92020-02-12 14:33:03 +01001592struct lyd_node *
Michal Vaskob104f112020-07-17 09:54:54 +02001593lyd_insert_get_next_anchor(const struct lyd_node *first_sibling, const struct lyd_node *new_node)
Michal Vasko90932a92020-02-12 14:33:03 +01001594{
Michal Vaskob104f112020-07-17 09:54:54 +02001595 const struct lysc_node *schema, *sparent;
Michal Vasko90932a92020-02-12 14:33:03 +01001596 struct lyd_node *match = NULL;
Radek Krejci857189e2020-09-01 13:26:36 +02001597 ly_bool found;
Michal Vasko90932a92020-02-12 14:33:03 +01001598
Michal Vaskob104f112020-07-17 09:54:54 +02001599 assert(new_node);
1600
1601 if (!first_sibling || !new_node->schema) {
1602 /* insert at the end, no next anchor */
Michal Vasko90932a92020-02-12 14:33:03 +01001603 return NULL;
1604 }
1605
Michal Vaskob104f112020-07-17 09:54:54 +02001606 if (first_sibling->parent && first_sibling->parent->children_ht) {
1607 /* find the anchor using hashes */
1608 sparent = first_sibling->parent->schema;
1609 schema = lys_getnext(new_node->schema, sparent, NULL, 0);
1610 while (schema) {
1611 /* keep trying to find the first existing instance of the closest following schema sibling,
1612 * otherwise return NULL - inserting at the end */
1613 if (!lyd_find_sibling_schema(first_sibling, schema, &match)) {
1614 break;
1615 }
1616
1617 schema = lys_getnext(schema, sparent, NULL, 0);
1618 }
1619 } else {
1620 /* find the anchor without hashes */
1621 match = (struct lyd_node *)first_sibling;
1622 if (!lysc_data_parent(new_node->schema)) {
1623 /* we are in top-level, skip all the data from preceding modules */
1624 LY_LIST_FOR(match, match) {
1625 if (!match->schema || (strcmp(lyd_owner_module(match)->name, lyd_owner_module(new_node)->name) >= 0)) {
1626 break;
1627 }
1628 }
1629 }
1630
1631 /* get the first schema sibling */
1632 sparent = lysc_data_parent(new_node->schema);
1633 schema = lys_getnext(NULL, sparent, new_node->schema->module->compiled, 0);
1634
1635 found = 0;
1636 LY_LIST_FOR(match, match) {
1637 if (!match->schema || (lyd_owner_module(match) != lyd_owner_module(new_node))) {
1638 /* we have found an opaque node, which must be at the end, so use it OR
1639 * modules do not match, so we must have traversed all the data from new_node module (if any),
1640 * we have found the first node of the next module, that is what we want */
1641 break;
1642 }
1643
1644 /* skip schema nodes until we find the instantiated one */
1645 while (!found) {
1646 if (new_node->schema == schema) {
1647 /* we have found the schema of the new node, continue search to find the first
1648 * data node with a different schema (after our schema) */
1649 found = 1;
1650 break;
1651 }
1652 if (match->schema == schema) {
1653 /* current node (match) is a data node still before the new node, continue search in data */
1654 break;
1655 }
1656 schema = lys_getnext(schema, sparent, new_node->schema->module->compiled, 0);
1657 assert(schema);
1658 }
1659
1660 if (found && (match->schema != new_node->schema)) {
1661 /* find the next node after we have found our node schema data instance */
1662 break;
1663 }
1664 }
Michal Vasko90932a92020-02-12 14:33:03 +01001665 }
1666
1667 return match;
1668}
1669
1670/**
1671 * @brief Insert node after a sibling.
1672 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001673 * Handles inserting into NP containers and key-less lists.
1674 *
Michal Vasko90932a92020-02-12 14:33:03 +01001675 * @param[in] sibling Sibling to insert after.
1676 * @param[in] node Node to insert.
1677 */
1678static void
Michal Vaskof03ed032020-03-04 13:31:44 +01001679lyd_insert_after_node(struct lyd_node *sibling, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001680{
Michal Vasko0249f7c2020-03-05 16:36:40 +01001681 struct lyd_node_inner *par;
1682
Michal Vasko90932a92020-02-12 14:33:03 +01001683 assert(!node->next && (node->prev == node));
1684
1685 node->next = sibling->next;
1686 node->prev = sibling;
1687 sibling->next = node;
1688 if (node->next) {
1689 /* sibling had a succeeding node */
1690 node->next->prev = node;
1691 } else {
1692 /* sibling was last, find first sibling and change its prev */
1693 if (sibling->parent) {
1694 sibling = sibling->parent->child;
1695 } else {
Michal Vaskod989ba02020-08-24 10:59:24 +02001696 for ( ; sibling->prev->next != node; sibling = sibling->prev) {}
Michal Vasko90932a92020-02-12 14:33:03 +01001697 }
1698 sibling->prev = node;
1699 }
1700 node->parent = sibling->parent;
Michal Vasko0249f7c2020-03-05 16:36:40 +01001701
Michal Vasko9f96a052020-03-10 09:41:45 +01001702 for (par = node->parent; par; par = par->parent) {
1703 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
1704 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01001705 par->flags &= ~LYD_DEFAULT;
1706 }
Michal Vaskob104f112020-07-17 09:54:54 +02001707 if (par->schema && (par->schema->nodetype == LYS_LIST) && (par->schema->flags & LYS_KEYLESS)) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001708 /* rehash key-less list */
1709 lyd_hash((struct lyd_node *)par);
1710 }
Michal Vasko0249f7c2020-03-05 16:36:40 +01001711 }
Michal Vasko90932a92020-02-12 14:33:03 +01001712}
1713
1714/**
1715 * @brief Insert node before a sibling.
1716 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001717 * Handles inserting into NP containers and key-less lists.
1718 *
Michal Vasko90932a92020-02-12 14:33:03 +01001719 * @param[in] sibling Sibling to insert before.
1720 * @param[in] node Node to insert.
1721 */
1722static void
Michal Vaskof03ed032020-03-04 13:31:44 +01001723lyd_insert_before_node(struct lyd_node *sibling, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001724{
Michal Vasko0249f7c2020-03-05 16:36:40 +01001725 struct lyd_node_inner *par;
1726
Michal Vasko90932a92020-02-12 14:33:03 +01001727 assert(!node->next && (node->prev == node));
1728
1729 node->next = sibling;
1730 /* covers situation of sibling being first */
1731 node->prev = sibling->prev;
1732 sibling->prev = node;
1733 if (node->prev->next) {
1734 /* sibling had a preceding node */
1735 node->prev->next = node;
1736 } else if (sibling->parent) {
1737 /* sibling was first and we must also change parent child pointer */
1738 sibling->parent->child = node;
1739 }
1740 node->parent = sibling->parent;
Michal Vasko0249f7c2020-03-05 16:36:40 +01001741
Michal Vasko9f96a052020-03-10 09:41:45 +01001742 for (par = node->parent; par; par = par->parent) {
1743 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
1744 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01001745 par->flags &= ~LYD_DEFAULT;
1746 }
Michal Vaskob104f112020-07-17 09:54:54 +02001747 if (par->schema && (par->schema->nodetype == LYS_LIST) && (par->schema->flags & LYS_KEYLESS)) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001748 /* rehash key-less list */
1749 lyd_hash((struct lyd_node *)par);
1750 }
Michal Vasko0249f7c2020-03-05 16:36:40 +01001751 }
Michal Vasko90932a92020-02-12 14:33:03 +01001752}
1753
1754/**
Michal Vaskob104f112020-07-17 09:54:54 +02001755 * @brief Insert node as the first and only child of a parent.
Michal Vasko90932a92020-02-12 14:33:03 +01001756 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001757 * Handles inserting into NP containers and key-less lists.
1758 *
Michal Vasko90932a92020-02-12 14:33:03 +01001759 * @param[in] parent Parent to insert into.
1760 * @param[in] node Node to insert.
1761 */
1762static void
Michal Vaskob104f112020-07-17 09:54:54 +02001763lyd_insert_only_child(struct lyd_node *parent, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001764{
1765 struct lyd_node_inner *par;
1766
Radek Krejcia1c1e542020-09-29 16:06:52 +02001767 assert(parent && !lyd_child(parent) && !node->next && (node->prev == node));
Michal Vasko52927e22020-03-16 17:26:14 +01001768 assert(!parent->schema || (parent->schema->nodetype & LYD_NODE_INNER));
Michal Vasko90932a92020-02-12 14:33:03 +01001769
1770 par = (struct lyd_node_inner *)parent;
1771
Michal Vaskob104f112020-07-17 09:54:54 +02001772 par->child = node;
Michal Vasko90932a92020-02-12 14:33:03 +01001773 node->parent = par;
Michal Vasko0249f7c2020-03-05 16:36:40 +01001774
Michal Vaskod989ba02020-08-24 10:59:24 +02001775 for ( ; par; par = par->parent) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001776 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
1777 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01001778 par->flags &= ~LYD_DEFAULT;
1779 }
Michal Vasko52927e22020-03-16 17:26:14 +01001780 if (par->schema && (par->schema->nodetype == LYS_LIST) && (par->schema->flags & LYS_KEYLESS)) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001781 /* rehash key-less list */
1782 lyd_hash((struct lyd_node *)par);
1783 }
Michal Vasko0249f7c2020-03-05 16:36:40 +01001784 }
Michal Vasko751cb4d2020-07-14 12:25:28 +02001785}
Michal Vasko0249f7c2020-03-05 16:36:40 +01001786
Michal Vasko751cb4d2020-07-14 12:25:28 +02001787/**
1788 * @brief Learn whether a list instance has all the keys.
1789 *
1790 * @param[in] list List instance to check.
1791 * @return non-zero if all the keys were found,
1792 * @return 0 otherwise.
1793 */
1794static int
1795lyd_insert_has_keys(const struct lyd_node *list)
1796{
1797 const struct lyd_node *key;
1798 const struct lysc_node *skey = NULL;
1799
1800 assert(list->schema->nodetype == LYS_LIST);
Radek Krejcia1c1e542020-09-29 16:06:52 +02001801 key = lyd_child(list);
Michal Vasko751cb4d2020-07-14 12:25:28 +02001802 while ((skey = lys_getnext(skey, list->schema, NULL, 0)) && (skey->flags & LYS_KEY)) {
1803 if (!key || (key->schema != skey)) {
1804 /* key missing */
1805 return 0;
1806 }
1807
1808 key = key->next;
1809 }
1810
1811 /* all keys found */
1812 return 1;
Michal Vasko90932a92020-02-12 14:33:03 +01001813}
1814
1815void
Michal Vaskob104f112020-07-17 09:54:54 +02001816lyd_insert_node(struct lyd_node *parent, struct lyd_node **first_sibling_p, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001817{
Michal Vaskob104f112020-07-17 09:54:54 +02001818 struct lyd_node *anchor, *first_sibling;
Michal Vasko90932a92020-02-12 14:33:03 +01001819
Michal Vaskob104f112020-07-17 09:54:54 +02001820 /* inserting list without its keys is not supported */
1821 assert((parent || first_sibling_p) && node && (node->hash || !node->schema));
Michal Vaskof756c942020-11-06 17:21:37 +01001822 assert(!parent || !parent->schema ||
1823 (parent->schema->nodetype & (LYS_CONTAINER | LYS_LIST | LYS_RPC | LYS_ACTION | LYS_NOTIF)));
Michal Vasko9b368d32020-02-14 13:53:31 +01001824
Michal Vaskob104f112020-07-17 09:54:54 +02001825 if (!parent && first_sibling_p && (*first_sibling_p) && (*first_sibling_p)->parent) {
1826 parent = (struct lyd_node *)(*first_sibling_p)->parent;
Michal Vasko9b368d32020-02-14 13:53:31 +01001827 }
Michal Vasko90932a92020-02-12 14:33:03 +01001828
Michal Vaskob104f112020-07-17 09:54:54 +02001829 /* get first sibling */
1830 first_sibling = parent ? ((struct lyd_node_inner *)parent)->child : *first_sibling_p;
Michal Vasko9f96a052020-03-10 09:41:45 +01001831
Michal Vaskob104f112020-07-17 09:54:54 +02001832 /* find the anchor, our next node, so we can insert before it */
1833 anchor = lyd_insert_get_next_anchor(first_sibling, node);
1834 if (anchor) {
1835 lyd_insert_before_node(anchor, node);
Michal Vasko26123192020-11-09 21:02:34 +01001836 if (!parent && (*first_sibling_p == anchor)) {
1837 /* move first sibling */
1838 *first_sibling_p = node;
1839 }
Michal Vaskob104f112020-07-17 09:54:54 +02001840 } else if (first_sibling) {
1841 lyd_insert_after_node(first_sibling->prev, node);
1842 } else if (parent) {
1843 lyd_insert_only_child(parent, node);
Michal Vasko90932a92020-02-12 14:33:03 +01001844 } else {
Michal Vaskob104f112020-07-17 09:54:54 +02001845 *first_sibling_p = node;
1846 }
1847
1848 /* insert into parent HT */
1849 lyd_insert_hash(node);
1850
1851 /* finish hashes for our parent, if needed and possible */
Michal Vasko9e8de2d2020-09-01 08:17:10 +02001852 if (node->schema && (node->schema->flags & LYS_KEY) && parent && lyd_insert_has_keys(parent)) {
Michal Vaskob104f112020-07-17 09:54:54 +02001853 lyd_hash(parent);
1854
1855 /* now we can insert even the list into its parent HT */
1856 lyd_insert_hash(parent);
Michal Vasko90932a92020-02-12 14:33:03 +01001857 }
Michal Vasko90932a92020-02-12 14:33:03 +01001858}
1859
Michal Vaskof03ed032020-03-04 13:31:44 +01001860static LY_ERR
1861lyd_insert_check_schema(const struct lysc_node *parent, const struct lysc_node *schema)
1862{
1863 const struct lysc_node *par2;
1864
1865 assert(schema);
Michal Vasko62ed12d2020-05-21 10:08:25 +02001866 assert(!parent || !(parent->nodetype & (LYS_CASE | LYS_CHOICE)));
Michal Vaskof03ed032020-03-04 13:31:44 +01001867
1868 /* find schema parent */
Michal Vasko62ed12d2020-05-21 10:08:25 +02001869 par2 = lysc_data_parent(schema);
Michal Vaskof03ed032020-03-04 13:31:44 +01001870
1871 if (parent) {
1872 /* inner node */
1873 if (par2 != parent) {
Michal Vaskob104f112020-07-17 09:54:54 +02001874 LOGERR(schema->module->ctx, LY_EINVAL, "Cannot insert, parent of \"%s\" is not \"%s\".", schema->name,
Michal Vasko69730152020-10-09 16:30:07 +02001875 parent->name);
Michal Vaskof03ed032020-03-04 13:31:44 +01001876 return LY_EINVAL;
1877 }
1878 } else {
1879 /* top-level node */
1880 if (par2) {
Radek Krejcif6d14cb2020-07-02 16:11:45 +02001881 LOGERR(schema->module->ctx, LY_EINVAL, "Cannot insert, node \"%s\" is not top-level.", schema->name);
Michal Vaskof03ed032020-03-04 13:31:44 +01001882 return LY_EINVAL;
1883 }
1884 }
1885
1886 return LY_SUCCESS;
1887}
1888
1889API LY_ERR
Michal Vaskob104f112020-07-17 09:54:54 +02001890lyd_insert_child(struct lyd_node *parent, struct lyd_node *node)
Michal Vaskof03ed032020-03-04 13:31:44 +01001891{
1892 struct lyd_node *iter;
1893
Michal Vasko654bc852020-06-23 13:28:06 +02001894 LY_CHECK_ARG_RET(NULL, parent, node, parent->schema->nodetype & LYD_NODE_INNER, LY_EINVAL);
Michal Vaskof03ed032020-03-04 13:31:44 +01001895
1896 LY_CHECK_RET(lyd_insert_check_schema(parent->schema, node->schema));
1897
1898 if (node->schema->flags & LYS_KEY) {
1899 LOGERR(parent->schema->module->ctx, LY_EINVAL, "Cannot insert key \"%s\".", node->schema->name);
1900 return LY_EINVAL;
1901 }
1902
1903 if (node->parent || node->prev->next) {
1904 lyd_unlink_tree(node);
1905 }
1906
1907 while (node) {
1908 iter = node->next;
1909 lyd_unlink_tree(node);
1910 lyd_insert_node(parent, NULL, node);
1911 node = iter;
1912 }
1913 return LY_SUCCESS;
1914}
1915
1916API LY_ERR
Michal Vaskob104f112020-07-17 09:54:54 +02001917lyd_insert_sibling(struct lyd_node *sibling, struct lyd_node *node, struct lyd_node **first)
Michal Vaskob1b5c262020-03-05 14:29:47 +01001918{
1919 struct lyd_node *iter;
1920
Michal Vaskob104f112020-07-17 09:54:54 +02001921 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001922
Michal Vaskob104f112020-07-17 09:54:54 +02001923 if (sibling) {
1924 LY_CHECK_RET(lyd_insert_check_schema(lysc_data_parent(sibling->schema), node->schema));
Michal Vaskob1b5c262020-03-05 14:29:47 +01001925 }
1926
1927 if (node->parent || node->prev->next) {
1928 lyd_unlink_tree(node);
1929 }
1930
1931 while (node) {
Michal Vaskob104f112020-07-17 09:54:54 +02001932 if (node->schema->flags & LYS_KEY) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001933 LOGERR(LYD_CTX(node), LY_EINVAL, "Cannot insert key \"%s\".", node->schema->name);
Michal Vaskob104f112020-07-17 09:54:54 +02001934 return LY_EINVAL;
1935 }
1936
Michal Vaskob1b5c262020-03-05 14:29:47 +01001937 iter = node->next;
1938 lyd_unlink_tree(node);
1939 lyd_insert_node(NULL, &sibling, node);
1940 node = iter;
1941 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01001942
Michal Vaskob104f112020-07-17 09:54:54 +02001943 if (first) {
1944 /* find the first sibling */
1945 *first = sibling;
1946 while ((*first)->prev->next) {
1947 *first = (*first)->prev;
Michal Vasko0249f7c2020-03-05 16:36:40 +01001948 }
1949 }
1950
1951 return LY_SUCCESS;
1952}
1953
Michal Vaskob1b5c262020-03-05 14:29:47 +01001954API LY_ERR
Michal Vaskof03ed032020-03-04 13:31:44 +01001955lyd_insert_before(struct lyd_node *sibling, struct lyd_node *node)
1956{
1957 struct lyd_node *iter;
1958
1959 LY_CHECK_ARG_RET(NULL, sibling, node, LY_EINVAL);
1960
Michal Vasko62ed12d2020-05-21 10:08:25 +02001961 LY_CHECK_RET(lyd_insert_check_schema(lysc_data_parent(sibling->schema), node->schema));
Michal Vaskof03ed032020-03-04 13:31:44 +01001962
Michal Vaskob104f112020-07-17 09:54:54 +02001963 if (!(node->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !(node->schema->flags & LYS_ORDBY_USER)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001964 LOGERR(LYD_CTX(sibling), LY_EINVAL, "Can be used only for user-ordered nodes.");
Michal Vaskof03ed032020-03-04 13:31:44 +01001965 return LY_EINVAL;
1966 }
1967
1968 if (node->parent || node->prev->next) {
1969 lyd_unlink_tree(node);
1970 }
1971
1972 /* insert in reverse order to get the original order */
1973 node = node->prev;
1974 while (node) {
1975 iter = node->prev;
1976 lyd_unlink_tree(node);
1977
1978 lyd_insert_before_node(sibling, node);
Michal Vasko751cb4d2020-07-14 12:25:28 +02001979 lyd_insert_hash(node);
1980
Michal Vaskof03ed032020-03-04 13:31:44 +01001981 /* move the anchor accordingly */
1982 sibling = node;
1983
1984 node = (iter == node) ? NULL : iter;
1985 }
1986 return LY_SUCCESS;
1987}
1988
1989API LY_ERR
1990lyd_insert_after(struct lyd_node *sibling, struct lyd_node *node)
1991{
1992 struct lyd_node *iter;
1993
1994 LY_CHECK_ARG_RET(NULL, sibling, node, LY_EINVAL);
1995
Michal Vasko62ed12d2020-05-21 10:08:25 +02001996 LY_CHECK_RET(lyd_insert_check_schema(lysc_data_parent(sibling->schema), node->schema));
Michal Vaskof03ed032020-03-04 13:31:44 +01001997
Michal Vaskob104f112020-07-17 09:54:54 +02001998 if (!(node->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !(node->schema->flags & LYS_ORDBY_USER)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001999 LOGERR(LYD_CTX(sibling), LY_EINVAL, "Can be used only for user-ordered nodes.");
Michal Vaskof03ed032020-03-04 13:31:44 +01002000 return LY_EINVAL;
2001 }
2002
2003 if (node->parent || node->prev->next) {
2004 lyd_unlink_tree(node);
2005 }
2006
2007 while (node) {
2008 iter = node->next;
2009 lyd_unlink_tree(node);
2010
2011 lyd_insert_after_node(sibling, node);
Michal Vasko751cb4d2020-07-14 12:25:28 +02002012 lyd_insert_hash(node);
2013
Michal Vaskof03ed032020-03-04 13:31:44 +01002014 /* move the anchor accordingly */
2015 sibling = node;
2016
2017 node = iter;
2018 }
2019 return LY_SUCCESS;
2020}
2021
2022API void
2023lyd_unlink_tree(struct lyd_node *node)
2024{
2025 struct lyd_node *iter;
2026
2027 if (!node) {
2028 return;
2029 }
2030
Michal Vaskob104f112020-07-17 09:54:54 +02002031 /* update hashes while still linked into the tree */
2032 lyd_unlink_hash(node);
2033
Michal Vaskof03ed032020-03-04 13:31:44 +01002034 /* unlink from siblings */
2035 if (node->prev->next) {
2036 node->prev->next = node->next;
2037 }
2038 if (node->next) {
2039 node->next->prev = node->prev;
2040 } else {
2041 /* unlinking the last node */
2042 if (node->parent) {
2043 iter = node->parent->child;
2044 } else {
2045 iter = node->prev;
2046 while (iter->prev != node) {
2047 iter = iter->prev;
2048 }
2049 }
2050 /* update the "last" pointer from the first node */
2051 iter->prev = node->prev;
2052 }
2053
2054 /* unlink from parent */
2055 if (node->parent) {
2056 if (node->parent->child == node) {
2057 /* the node is the first child */
2058 node->parent->child = node->next;
2059 }
2060
Michal Vaskoab49dbe2020-07-17 12:32:47 +02002061 /* check for NP container whether its last non-default node is not being unlinked */
Michal Vasko69730152020-10-09 16:30:07 +02002062 if (node->parent->schema && (node->parent->schema->nodetype == LYS_CONTAINER) &&
2063 !(node->parent->flags & LYD_DEFAULT) && !(node->parent->schema->flags & LYS_PRESENCE)) {
Michal Vaskoab49dbe2020-07-17 12:32:47 +02002064 LY_LIST_FOR(node->parent->child, iter) {
2065 if ((iter != node) && !(iter->flags & LYD_DEFAULT)) {
2066 break;
2067 }
2068 }
2069 if (!iter) {
2070 node->parent->flags |= LYD_DEFAULT;
2071 }
2072 }
2073
Michal Vaskof03ed032020-03-04 13:31:44 +01002074 /* check for keyless list and update its hash */
2075 for (iter = (struct lyd_node *)node->parent; iter; iter = (struct lyd_node *)iter->parent) {
Michal Vasko413c7f22020-05-05 12:34:06 +02002076 if (iter->schema && (iter->schema->flags & LYS_KEYLESS)) {
Michal Vaskof03ed032020-03-04 13:31:44 +01002077 lyd_hash(iter);
2078 }
2079 }
2080
2081 node->parent = NULL;
2082 }
2083
2084 node->next = NULL;
2085 node->prev = node;
2086}
2087
Michal Vaskoa5da3292020-08-12 13:10:50 +02002088void
Radek Krejci1798aae2020-07-14 13:26:06 +02002089lyd_insert_meta(struct lyd_node *parent, struct lyd_meta *meta)
2090{
2091 struct lyd_meta *last, *iter;
2092
2093 assert(parent);
Michal Vaskoa5da3292020-08-12 13:10:50 +02002094
2095 if (!meta) {
2096 return;
2097 }
Radek Krejci1798aae2020-07-14 13:26:06 +02002098
2099 for (iter = meta; iter; iter = iter->next) {
2100 iter->parent = parent;
2101 }
2102
2103 /* insert as the last attribute */
2104 if (parent->meta) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002105 for (last = parent->meta; last->next; last = last->next) {}
Radek Krejci1798aae2020-07-14 13:26:06 +02002106 last->next = meta;
2107 } else {
2108 parent->meta = meta;
2109 }
2110
2111 /* remove default flags from NP containers */
2112 while (parent && (parent->schema->nodetype == LYS_CONTAINER) && (parent->flags & LYD_DEFAULT)) {
2113 parent->flags &= ~LYD_DEFAULT;
2114 parent = (struct lyd_node *)parent->parent;
2115 }
Radek Krejci1798aae2020-07-14 13:26:06 +02002116}
2117
2118LY_ERR
Michal Vasko9f96a052020-03-10 09:41:45 +01002119lyd_create_meta(struct lyd_node *parent, struct lyd_meta **meta, const struct lys_module *mod, const char *name,
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002120 size_t name_len, const char *value, size_t value_len, ly_bool *dynamic, LY_PREFIX_FORMAT format,
2121 void *prefix_data, uint32_t hints, ly_bool *incomplete)
Michal Vasko90932a92020-02-12 14:33:03 +01002122{
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002123 LY_ERR rc;
Michal Vasko90932a92020-02-12 14:33:03 +01002124 struct lysc_ext_instance *ant = NULL;
Michal Vasko9f96a052020-03-10 09:41:45 +01002125 struct lyd_meta *mt, *last;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002126 LY_ARRAY_COUNT_TYPE u;
Michal Vasko90932a92020-02-12 14:33:03 +01002127
Michal Vasko9f96a052020-03-10 09:41:45 +01002128 assert((parent || meta) && mod);
Michal Vasko6f4cbb62020-02-28 11:15:47 +01002129
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002130 LY_ARRAY_FOR(mod->compiled->exts, u) {
Michal Vasko69730152020-10-09 16:30:07 +02002131 if ((mod->compiled->exts[u].def->plugin == lyext_plugins_internal[LYEXT_PLUGIN_INTERNAL_ANNOTATION].plugin) &&
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002132 !ly_strncmp(mod->compiled->exts[u].argument, name, name_len)) {
Michal Vasko90932a92020-02-12 14:33:03 +01002133 /* we have the annotation definition */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002134 ant = &mod->compiled->exts[u];
Michal Vasko90932a92020-02-12 14:33:03 +01002135 break;
2136 }
2137 }
2138 if (!ant) {
2139 /* attribute is not defined as a metadata annotation (RFC 7952) */
2140 LOGERR(mod->ctx, LY_EINVAL, "Annotation definition for attribute \"%s:%.*s\" not found.",
2141 mod->name, name_len, name);
2142 return LY_EINVAL;
2143 }
2144
Michal Vasko9f96a052020-03-10 09:41:45 +01002145 mt = calloc(1, sizeof *mt);
2146 LY_CHECK_ERR_RET(!mt, LOGMEM(mod->ctx), LY_EMEM);
2147 mt->parent = parent;
2148 mt->annotation = ant;
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002149 rc = lyd_value_store(mod->ctx, &mt->value, ((struct lyext_metadata *)ant->data)->type, value, value_len, dynamic,
2150 format, prefix_data, hints, parent ? parent->schema : NULL, incomplete, LY_VLOG_NONE, NULL);
2151 LY_CHECK_ERR_RET(rc, free(mt), rc);
Radek Krejci011e4aa2020-09-04 15:22:31 +02002152 rc = lydict_insert(mod->ctx, name, name_len, &mt->name);
2153 LY_CHECK_ERR_RET(rc, free(mt), rc);
Michal Vasko90932a92020-02-12 14:33:03 +01002154
Michal Vasko6f4cbb62020-02-28 11:15:47 +01002155 /* insert as the last attribute */
2156 if (parent) {
Michal Vaskoa5da3292020-08-12 13:10:50 +02002157 lyd_insert_meta(parent, mt);
Michal Vasko9f96a052020-03-10 09:41:45 +01002158 } else if (*meta) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002159 for (last = *meta; last->next; last = last->next) {}
Michal Vasko9f96a052020-03-10 09:41:45 +01002160 last->next = mt;
Michal Vasko90932a92020-02-12 14:33:03 +01002161 }
2162
Michal Vasko9f96a052020-03-10 09:41:45 +01002163 if (meta) {
2164 *meta = mt;
Michal Vasko90932a92020-02-12 14:33:03 +01002165 }
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002166 return LY_SUCCESS;
Michal Vasko90932a92020-02-12 14:33:03 +01002167}
2168
Michal Vaskoa5da3292020-08-12 13:10:50 +02002169void
2170lyd_insert_attr(struct lyd_node *parent, struct lyd_attr *attr)
2171{
2172 struct lyd_attr *last, *iter;
2173 struct lyd_node_opaq *opaq;
2174
2175 assert(parent && !parent->schema);
2176
2177 if (!attr) {
2178 return;
2179 }
2180
2181 opaq = (struct lyd_node_opaq *)parent;
2182 for (iter = attr; iter; iter = iter->next) {
2183 iter->parent = opaq;
2184 }
2185
2186 /* insert as the last attribute */
2187 if (opaq->attr) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002188 for (last = opaq->attr; last->next; last = last->next) {}
Michal Vaskoa5da3292020-08-12 13:10:50 +02002189 last->next = attr;
2190 } else {
2191 opaq->attr = attr;
2192 }
2193}
2194
Michal Vasko52927e22020-03-16 17:26:14 +01002195LY_ERR
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002196lyd_create_attr(struct lyd_node *parent, struct lyd_attr **attr, const struct ly_ctx *ctx, const char *name, size_t name_len,
2197 const char *value, size_t value_len, ly_bool *dynamic, LYD_FORMAT format, uint32_t hints,
Radek Krejci0f969882020-08-21 16:56:47 +02002198 struct ly_prefix *val_prefs, const char *prefix, size_t prefix_len, const char *module_key, size_t module_key_len)
Michal Vasko52927e22020-03-16 17:26:14 +01002199{
Radek Krejci011e4aa2020-09-04 15:22:31 +02002200 LY_ERR ret = LY_SUCCESS;
Radek Krejci1798aae2020-07-14 13:26:06 +02002201 struct lyd_attr *at, *last;
Michal Vasko52927e22020-03-16 17:26:14 +01002202
2203 assert(ctx && (parent || attr) && (!parent || !parent->schema));
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002204 assert(name && name_len && format);
Michal Vasko52927e22020-03-16 17:26:14 +01002205
2206 if (!value_len) {
2207 value = "";
2208 }
2209
2210 at = calloc(1, sizeof *at);
Radek Krejcid46e46a2020-09-15 14:22:42 +02002211 LY_CHECK_ERR_RET(!at, LOGMEM(ctx); ly_free_val_prefs(ctx, val_prefs), LY_EMEM);
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002212 at->hints = hints;
Radek Krejcid46e46a2020-09-15 14:22:42 +02002213 at->format = format;
2214 at->val_prefs = val_prefs;
2215
Radek Krejci011e4aa2020-09-04 15:22:31 +02002216 LY_CHECK_GOTO(ret = lydict_insert(ctx, name, name_len, &at->name), finish);
Michal Vasko52927e22020-03-16 17:26:14 +01002217 if (dynamic && *dynamic) {
Radek Krejci011e4aa2020-09-04 15:22:31 +02002218 ret = lydict_insert_zc(ctx, (char *)value, &at->value);
2219 LY_CHECK_GOTO(ret, finish);
Michal Vasko52927e22020-03-16 17:26:14 +01002220 *dynamic = 0;
2221 } else {
Radek Krejci011e4aa2020-09-04 15:22:31 +02002222 LY_CHECK_GOTO(ret = lydict_insert(ctx, value, value_len, &at->value), finish);
Michal Vasko52927e22020-03-16 17:26:14 +01002223 }
2224
Radek Krejci1798aae2020-07-14 13:26:06 +02002225 if (prefix_len) {
Radek Krejci011e4aa2020-09-04 15:22:31 +02002226 LY_CHECK_GOTO(ret = lydict_insert(ctx, prefix, prefix_len, &at->prefix.id), finish);
Radek Krejci1798aae2020-07-14 13:26:06 +02002227 }
2228 if (module_key_len) {
Radek Krejci011e4aa2020-09-04 15:22:31 +02002229 LY_CHECK_GOTO(ret = lydict_insert(ctx, module_key, module_key_len, &at->prefix.module_ns), finish);
Michal Vasko52927e22020-03-16 17:26:14 +01002230 }
2231
2232 /* insert as the last attribute */
2233 if (parent) {
Michal Vaskoa5da3292020-08-12 13:10:50 +02002234 lyd_insert_attr(parent, at);
Michal Vasko52927e22020-03-16 17:26:14 +01002235 } else if (*attr) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002236 for (last = *attr; last->next; last = last->next) {}
Michal Vasko52927e22020-03-16 17:26:14 +01002237 last->next = at;
2238 }
2239
Radek Krejci011e4aa2020-09-04 15:22:31 +02002240finish:
2241 if (ret) {
2242 lyd_free_attr_single(ctx, at);
2243 } else if (attr) {
Michal Vasko52927e22020-03-16 17:26:14 +01002244 *attr = at;
2245 }
2246 return LY_SUCCESS;
2247}
2248
Radek Krejci084289f2019-07-09 17:35:30 +02002249API const struct lyd_node_term *
Michal Vasko004d3152020-06-11 19:59:22 +02002250lyd_target(const struct ly_path *path, const struct lyd_node *tree)
Radek Krejci084289f2019-07-09 17:35:30 +02002251{
Michal Vasko004d3152020-06-11 19:59:22 +02002252 struct lyd_node *target;
Radek Krejci084289f2019-07-09 17:35:30 +02002253
Michal Vasko004d3152020-06-11 19:59:22 +02002254 if (ly_path_eval(path, tree, &target)) {
2255 return NULL;
Radek Krejci084289f2019-07-09 17:35:30 +02002256 }
2257
Michal Vasko004d3152020-06-11 19:59:22 +02002258 return (struct lyd_node_term *)target;
Radek Krejci084289f2019-07-09 17:35:30 +02002259}
2260
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002261API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002262lyd_compare_single(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options)
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002263{
2264 const struct lyd_node *iter1, *iter2;
2265 struct lyd_node_term *term1, *term2;
2266 struct lyd_node_any *any1, *any2;
Michal Vasko52927e22020-03-16 17:26:14 +01002267 struct lyd_node_opaq *opaq1, *opaq2;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002268 size_t len1, len2;
Radek Krejci084289f2019-07-09 17:35:30 +02002269
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002270 if (!node1 || !node2) {
2271 if (node1 == node2) {
2272 return LY_SUCCESS;
2273 } else {
2274 return LY_ENOT;
2275 }
2276 }
2277
Michal Vaskob7be7a82020-08-20 09:09:04 +02002278 if ((LYD_CTX(node1) != LYD_CTX(node2)) || (node1->schema != node2->schema)) {
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002279 return LY_ENOT;
2280 }
2281
2282 if (node1->hash != node2->hash) {
2283 return LY_ENOT;
2284 }
Michal Vasko52927e22020-03-16 17:26:14 +01002285 /* 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 +02002286
Michal Vasko52927e22020-03-16 17:26:14 +01002287 if (!node1->schema) {
2288 opaq1 = (struct lyd_node_opaq *)node1;
2289 opaq2 = (struct lyd_node_opaq *)node2;
Radek Krejci1798aae2020-07-14 13:26:06 +02002290 if ((opaq1->name != opaq2->name) || (opaq1->format != opaq2->format) || (opaq1->prefix.module_ns != opaq2->prefix.module_ns)) {
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002291 return LY_ENOT;
2292 }
Michal Vasko52927e22020-03-16 17:26:14 +01002293 switch (opaq1->format) {
2294 case LYD_XML:
2295 if (lyxml_value_compare(opaq1->value, opaq1->val_prefs, opaq2->value, opaq2->val_prefs)) {
2296 return LY_ENOT;
2297 }
2298 break;
Radek Krejci1798aae2020-07-14 13:26:06 +02002299 case LYD_JSON:
2300 /* prefixes in JSON are unique, so it is not necessary to canonize the values */
2301 if (strcmp(opaq1->value, opaq2->value)) {
2302 return LY_ENOT;
2303 }
2304 break;
Michal Vasko60ea6352020-06-29 13:39:39 +02002305 case LYD_LYB:
Michal Vaskoc8a230d2020-08-14 12:17:10 +02002306 case LYD_UNKNOWN:
Michal Vasko52927e22020-03-16 17:26:14 +01002307 /* not allowed */
Michal Vaskob7be7a82020-08-20 09:09:04 +02002308 LOGINT(LYD_CTX(node1));
Michal Vasko52927e22020-03-16 17:26:14 +01002309 return LY_EINT;
2310 }
2311 if (options & LYD_COMPARE_FULL_RECURSION) {
2312 iter1 = opaq1->child;
2313 iter2 = opaq2->child;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002314 goto all_children_compare;
Michal Vasko52927e22020-03-16 17:26:14 +01002315 }
2316 return LY_SUCCESS;
2317 } else {
2318 switch (node1->schema->nodetype) {
2319 case LYS_LEAF:
2320 case LYS_LEAFLIST:
2321 if (options & LYD_COMPARE_DEFAULTS) {
2322 if ((node1->flags & LYD_DEFAULT) != (node2->flags & LYD_DEFAULT)) {
2323 return LY_ENOT;
2324 }
2325 }
2326
Michal Vasko1a2bf2e2020-06-16 13:07:48 +02002327 term1 = (struct lyd_node_term *)node1;
2328 term2 = (struct lyd_node_term *)node2;
2329 if (term1->value.realtype != term2->value.realtype) {
2330 return LY_ENOT;
2331 }
Michal Vasko52927e22020-03-16 17:26:14 +01002332
Michal Vasko1a2bf2e2020-06-16 13:07:48 +02002333 return term1->value.realtype->plugin->compare(&term1->value, &term2->value);
Michal Vasko52927e22020-03-16 17:26:14 +01002334 case LYS_CONTAINER:
2335 if (options & LYD_COMPARE_DEFAULTS) {
2336 if ((node1->flags & LYD_DEFAULT) != (node2->flags & LYD_DEFAULT)) {
2337 return LY_ENOT;
2338 }
2339 }
2340 if (options & LYD_COMPARE_FULL_RECURSION) {
Michal Vasko22df3f02020-08-24 13:29:22 +02002341 iter1 = ((struct lyd_node_inner *)node1)->child;
2342 iter2 = ((struct lyd_node_inner *)node2)->child;
Michal Vasko52927e22020-03-16 17:26:14 +01002343 goto all_children_compare;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002344 }
2345 return LY_SUCCESS;
Michal Vasko1bf09392020-03-27 12:38:10 +01002346 case LYS_RPC:
Michal Vasko52927e22020-03-16 17:26:14 +01002347 case LYS_ACTION:
2348 if (options & LYD_COMPARE_FULL_RECURSION) {
2349 /* TODO action/RPC
2350 goto all_children_compare;
2351 */
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002352 }
2353 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01002354 case LYS_NOTIF:
2355 if (options & LYD_COMPARE_FULL_RECURSION) {
2356 /* TODO Notification
2357 goto all_children_compare;
2358 */
2359 }
2360 return LY_SUCCESS;
2361 case LYS_LIST:
Michal Vasko22df3f02020-08-24 13:29:22 +02002362 iter1 = ((struct lyd_node_inner *)node1)->child;
2363 iter2 = ((struct lyd_node_inner *)node2)->child;
Michal Vasko52927e22020-03-16 17:26:14 +01002364
2365 if (!(node1->schema->flags & LYS_KEYLESS) && !(options & LYD_COMPARE_FULL_RECURSION)) {
2366 /* lists with keys, their equivalence is based on their keys */
Michal Vasko22df3f02020-08-24 13:29:22 +02002367 for (struct lysc_node *key = ((struct lysc_node_list *)node1->schema)->child;
Michal Vaskoc57d9a92020-06-23 13:28:27 +02002368 key && (key->flags & LYS_KEY);
Michal Vasko52927e22020-03-16 17:26:14 +01002369 key = key->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02002370 if (lyd_compare_single(iter1, iter2, options)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002371 return LY_ENOT;
2372 }
2373 iter1 = iter1->next;
2374 iter2 = iter2->next;
2375 }
2376 } else {
2377 /* lists without keys, their equivalence is based on equivalence of all the children (both direct and indirect) */
2378
Radek Krejci0f969882020-08-21 16:56:47 +02002379all_children_compare:
Michal Vasko52927e22020-03-16 17:26:14 +01002380 if (!iter1 && !iter2) {
2381 /* no children, nothing to compare */
2382 return LY_SUCCESS;
2383 }
2384
Michal Vaskod989ba02020-08-24 10:59:24 +02002385 for ( ; iter1 && iter2; iter1 = iter1->next, iter2 = iter2->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02002386 if (lyd_compare_single(iter1, iter2, options | LYD_COMPARE_FULL_RECURSION)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002387 return LY_ENOT;
2388 }
2389 }
2390 if (iter1 || iter2) {
2391 return LY_ENOT;
2392 }
2393 }
2394 return LY_SUCCESS;
2395 case LYS_ANYXML:
2396 case LYS_ANYDATA:
Michal Vasko22df3f02020-08-24 13:29:22 +02002397 any1 = (struct lyd_node_any *)node1;
2398 any2 = (struct lyd_node_any *)node2;
Michal Vasko52927e22020-03-16 17:26:14 +01002399
2400 if (any1->value_type != any2->value_type) {
2401 return LY_ENOT;
2402 }
2403 switch (any1->value_type) {
2404 case LYD_ANYDATA_DATATREE:
2405 iter1 = any1->value.tree;
2406 iter2 = any2->value.tree;
2407 goto all_children_compare;
2408 case LYD_ANYDATA_STRING:
2409 case LYD_ANYDATA_XML:
2410 case LYD_ANYDATA_JSON:
2411 len1 = strlen(any1->value.str);
2412 len2 = strlen(any2->value.str);
Michal Vasko69730152020-10-09 16:30:07 +02002413 if ((len1 != len2) || strcmp(any1->value.str, any2->value.str)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002414 return LY_ENOT;
2415 }
2416 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01002417 case LYD_ANYDATA_LYB:
Michal Vasko60ea6352020-06-29 13:39:39 +02002418 len1 = lyd_lyb_data_length(any1->value.mem);
2419 len2 = lyd_lyb_data_length(any2->value.mem);
Michal Vasko69730152020-10-09 16:30:07 +02002420 if ((len1 != len2) || memcmp(any1->value.mem, any2->value.mem, len1)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002421 return LY_ENOT;
2422 }
2423 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01002424 }
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002425 }
2426 }
2427
Michal Vaskob7be7a82020-08-20 09:09:04 +02002428 LOGINT(LYD_CTX(node1));
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002429 return LY_EINT;
2430}
Radek Krejci22ebdba2019-07-25 13:59:43 +02002431
Michal Vasko21725742020-06-29 11:49:25 +02002432API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002433lyd_compare_siblings(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options)
Michal Vasko8f359bf2020-07-28 10:41:15 +02002434{
Michal Vaskod989ba02020-08-24 10:59:24 +02002435 for ( ; node1 && node2; node1 = node1->next, node2 = node2->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02002436 LY_CHECK_RET(lyd_compare_single(node1, node2, options));
2437 }
2438
Michal Vasko11a81432020-07-28 16:31:29 +02002439 if (node1 == node2) {
2440 return LY_SUCCESS;
Michal Vasko8f359bf2020-07-28 10:41:15 +02002441 }
Michal Vasko11a81432020-07-28 16:31:29 +02002442 return LY_ENOT;
Michal Vasko8f359bf2020-07-28 10:41:15 +02002443}
2444
2445API LY_ERR
Michal Vasko21725742020-06-29 11:49:25 +02002446lyd_compare_meta(const struct lyd_meta *meta1, const struct lyd_meta *meta2)
2447{
2448 if (!meta1 || !meta2) {
2449 if (meta1 == meta2) {
2450 return LY_SUCCESS;
2451 } else {
2452 return LY_ENOT;
2453 }
2454 }
2455
Michal Vaskoa8083062020-11-06 17:22:10 +01002456 if ((meta1->annotation->module->ctx != meta2->annotation->module->ctx) || (meta1->annotation != meta2->annotation)) {
Michal Vasko21725742020-06-29 11:49:25 +02002457 return LY_ENOT;
2458 }
2459
2460 if (meta1->value.realtype != meta2->value.realtype) {
2461 return LY_ENOT;
2462 }
2463
2464 return meta1->value.realtype->plugin->compare(&meta1->value, &meta2->value);
2465}
2466
Radek Krejci22ebdba2019-07-25 13:59:43 +02002467/**
Michal Vasko52927e22020-03-16 17:26:14 +01002468 * @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 +02002469 *
2470 * 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 +02002471 *
2472 * @param[in] node Original node to duplicate
2473 * @param[in] parent Parent to insert into, NULL for top-level sibling.
2474 * @param[in,out] first First sibling, NULL if no top-level sibling exist yet. Can be also NULL if @p parent is set.
2475 * @param[in] options Bitmask of options flags, see @ref dupoptions.
2476 * @param[out] dup_p Pointer where the created duplicated node is placed (besides connecting it int @p parent / @p first sibling).
2477 * @return LY_ERR value
Radek Krejci22ebdba2019-07-25 13:59:43 +02002478 */
Michal Vasko52927e22020-03-16 17:26:14 +01002479static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002480lyd_dup_r(const struct lyd_node *node, struct lyd_node *parent, struct lyd_node **first, uint32_t options,
Radek Krejci0f969882020-08-21 16:56:47 +02002481 struct lyd_node **dup_p)
Radek Krejci22ebdba2019-07-25 13:59:43 +02002482{
Michal Vasko52927e22020-03-16 17:26:14 +01002483 LY_ERR ret;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002484 struct lyd_node *dup = NULL;
Michal Vasko61551fa2020-07-09 15:45:45 +02002485 struct lyd_meta *meta;
2486 struct lyd_node_any *any;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002487 LY_ARRAY_COUNT_TYPE u;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002488
Michal Vasko52927e22020-03-16 17:26:14 +01002489 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002490
Michal Vasko52927e22020-03-16 17:26:14 +01002491 if (!node->schema) {
2492 dup = calloc(1, sizeof(struct lyd_node_opaq));
2493 } else {
2494 switch (node->schema->nodetype) {
Michal Vasko1bf09392020-03-27 12:38:10 +01002495 case LYS_RPC:
Michal Vasko52927e22020-03-16 17:26:14 +01002496 case LYS_ACTION:
2497 case LYS_NOTIF:
2498 case LYS_CONTAINER:
2499 case LYS_LIST:
2500 dup = calloc(1, sizeof(struct lyd_node_inner));
2501 break;
2502 case LYS_LEAF:
2503 case LYS_LEAFLIST:
2504 dup = calloc(1, sizeof(struct lyd_node_term));
2505 break;
2506 case LYS_ANYDATA:
2507 case LYS_ANYXML:
2508 dup = calloc(1, sizeof(struct lyd_node_any));
2509 break;
2510 default:
Michal Vaskob7be7a82020-08-20 09:09:04 +02002511 LOGINT(LYD_CTX(node));
Michal Vasko52927e22020-03-16 17:26:14 +01002512 ret = LY_EINT;
2513 goto error;
2514 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02002515 }
Michal Vaskob7be7a82020-08-20 09:09:04 +02002516 LY_CHECK_ERR_GOTO(!dup, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002517
Michal Vaskof6df0a02020-06-16 13:08:34 +02002518 if (options & LYD_DUP_WITH_FLAGS) {
2519 dup->flags = node->flags;
2520 } else {
2521 dup->flags = (node->flags & LYD_DEFAULT) | LYD_NEW;
2522 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02002523 dup->schema = node->schema;
Michal Vasko52927e22020-03-16 17:26:14 +01002524 dup->prev = dup;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002525
Michal Vasko25a32822020-07-09 15:48:22 +02002526 /* duplicate metadata */
2527 if (!(options & LYD_DUP_NO_META)) {
2528 LY_LIST_FOR(node->meta, meta) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002529 LY_CHECK_GOTO(ret = lyd_dup_meta_single(meta, dup, NULL), error);
Michal Vasko25a32822020-07-09 15:48:22 +02002530 }
2531 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02002532
2533 /* nodetype-specific work */
Michal Vasko52927e22020-03-16 17:26:14 +01002534 if (!dup->schema) {
2535 struct lyd_node_opaq *opaq = (struct lyd_node_opaq *)dup;
2536 struct lyd_node_opaq *orig = (struct lyd_node_opaq *)node;
2537 struct lyd_node *child;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002538
2539 if (options & LYD_DUP_RECURSIVE) {
2540 /* duplicate all the children */
2541 LY_LIST_FOR(orig->child, child) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002542 LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, NULL, options, NULL), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002543 }
2544 }
Radek Krejci011e4aa2020-09-04 15:22:31 +02002545 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->name, 0, &opaq->name), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002546 opaq->format = orig->format;
Radek Krejci1798aae2020-07-14 13:26:06 +02002547 if (orig->prefix.id) {
Radek Krejci011e4aa2020-09-04 15:22:31 +02002548 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->prefix.id, 0, &opaq->prefix.id), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002549 }
Radek Krejci011e4aa2020-09-04 15:22:31 +02002550 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->prefix.module_ns, 0, &opaq->prefix.module_ns), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002551 if (orig->val_prefs) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002552 LY_ARRAY_CREATE_GOTO(LYD_CTX(node), opaq->val_prefs, LY_ARRAY_COUNT(orig->val_prefs), ret, error);
Michal Vasko52927e22020-03-16 17:26:14 +01002553 LY_ARRAY_FOR(orig->val_prefs, u) {
Radek Krejci011e4aa2020-09-04 15:22:31 +02002554 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->val_prefs[u].id, 0, &opaq->val_prefs[u].id), error);
2555 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->val_prefs[u].module_ns, 0, &opaq->val_prefs[u].module_ns), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002556 LY_ARRAY_INCREMENT(opaq->val_prefs);
2557 }
2558 }
Radek Krejci011e4aa2020-09-04 15:22:31 +02002559 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->value, 0, &opaq->value), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002560 opaq->ctx = orig->ctx;
2561 } else if (dup->schema->nodetype & LYD_NODE_TERM) {
2562 struct lyd_node_term *term = (struct lyd_node_term *)dup;
2563 struct lyd_node_term *orig = (struct lyd_node_term *)node;
2564
2565 term->hash = orig->hash;
Michal Vaskob7be7a82020-08-20 09:09:04 +02002566 LY_CHECK_ERR_GOTO(orig->value.realtype->plugin->duplicate(LYD_CTX(node), &orig->value, &term->value),
Michal Vasko69730152020-10-09 16:30:07 +02002567 LOGERR(LYD_CTX(node), LY_EINT, "Value duplication failed."); ret = LY_EINT, error);
Michal Vasko52927e22020-03-16 17:26:14 +01002568 } else if (dup->schema->nodetype & LYD_NODE_INNER) {
2569 struct lyd_node_inner *orig = (struct lyd_node_inner *)node;
2570 struct lyd_node *child;
2571
2572 if (options & LYD_DUP_RECURSIVE) {
2573 /* duplicate all the children */
2574 LY_LIST_FOR(orig->child, child) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002575 LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, NULL, options, NULL), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002576 }
Michal Vasko69730152020-10-09 16:30:07 +02002577 } else if ((dup->schema->nodetype == LYS_LIST) && !(dup->schema->flags & LYS_KEYLESS)) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02002578 /* always duplicate keys of a list */
Radek Krejci22ebdba2019-07-25 13:59:43 +02002579 child = orig->child;
Michal Vasko52927e22020-03-16 17:26:14 +01002580 for (struct lysc_node *key = ((struct lysc_node_list *)dup->schema)->child;
Michal Vaskoc57d9a92020-06-23 13:28:27 +02002581 key && (key->flags & LYS_KEY);
Radek Krejci0fe9b512019-07-26 17:51:05 +02002582 key = key->next) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02002583 if (!child) {
2584 /* possibly not keys are present in filtered tree */
2585 break;
Radek Krejci0fe9b512019-07-26 17:51:05 +02002586 } else if (child->schema != key) {
2587 /* possibly not all keys are present in filtered tree,
2588 * but there can be also some non-key nodes */
2589 continue;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002590 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002591 LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, NULL, options, NULL), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002592 child = child->next;
2593 }
2594 }
2595 lyd_hash(dup);
2596 } else if (dup->schema->nodetype & LYD_NODE_ANY) {
Michal Vasko61551fa2020-07-09 15:45:45 +02002597 dup->hash = node->hash;
2598 any = (struct lyd_node_any *)node;
2599 LY_CHECK_GOTO(ret = lyd_any_copy_value(dup, &any->value, any->value_type), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002600 }
2601
Michal Vasko52927e22020-03-16 17:26:14 +01002602 /* insert */
2603 lyd_insert_node(parent, first, dup);
Michal Vasko52927e22020-03-16 17:26:14 +01002604
2605 if (dup_p) {
2606 *dup_p = dup;
2607 }
2608 return LY_SUCCESS;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002609
2610error:
Michal Vasko52927e22020-03-16 17:26:14 +01002611 lyd_free_tree(dup);
2612 return ret;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002613}
2614
Michal Vasko3a41dff2020-07-15 14:30:28 +02002615static LY_ERR
2616lyd_dup_get_local_parent(const struct lyd_node *node, const struct lyd_node_inner *parent, struct lyd_node **dup_parent,
Radek Krejci0f969882020-08-21 16:56:47 +02002617 struct lyd_node_inner **local_parent)
Radek Krejci22ebdba2019-07-25 13:59:43 +02002618{
Michal Vasko3a41dff2020-07-15 14:30:28 +02002619 const struct lyd_node_inner *orig_parent, *iter;
Radek Krejci857189e2020-09-01 13:26:36 +02002620 ly_bool repeat = 1;
Michal Vasko3a41dff2020-07-15 14:30:28 +02002621
2622 *dup_parent = NULL;
2623 *local_parent = NULL;
2624
2625 for (orig_parent = node->parent; repeat && orig_parent; orig_parent = orig_parent->parent) {
2626 if (parent && (parent->schema == orig_parent->schema)) {
2627 /* stop creating parents, connect what we have into the provided parent */
2628 iter = parent;
2629 repeat = 0;
2630 } else {
2631 iter = NULL;
2632 LY_CHECK_RET(lyd_dup_r((struct lyd_node *)orig_parent, NULL, (struct lyd_node **)&iter, 0,
Radek Krejci0f969882020-08-21 16:56:47 +02002633 (struct lyd_node **)&iter));
Michal Vasko3a41dff2020-07-15 14:30:28 +02002634 }
2635 if (!*local_parent) {
2636 *local_parent = (struct lyd_node_inner *)iter;
2637 }
2638 if (iter->child) {
2639 /* 1) list - add after keys
2640 * 2) provided parent with some children */
2641 iter->child->prev->next = *dup_parent;
2642 if (*dup_parent) {
2643 (*dup_parent)->prev = iter->child->prev;
2644 iter->child->prev = *dup_parent;
2645 }
2646 } else {
2647 ((struct lyd_node_inner *)iter)->child = *dup_parent;
2648 }
2649 if (*dup_parent) {
2650 (*dup_parent)->parent = (struct lyd_node_inner *)iter;
2651 }
2652 *dup_parent = (struct lyd_node *)iter;
2653 }
2654
2655 if (repeat && parent) {
2656 /* given parent and created parents chain actually do not interconnect */
Michal Vaskob7be7a82020-08-20 09:09:04 +02002657 LOGERR(LYD_CTX(node), LY_EINVAL,
Michal Vasko69730152020-10-09 16:30:07 +02002658 "Invalid argument parent (%s()) - does not interconnect with the created node's parents chain.", __func__);
Michal Vasko3a41dff2020-07-15 14:30:28 +02002659 return LY_EINVAL;
2660 }
2661
2662 return LY_SUCCESS;
2663}
2664
2665static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02002666lyd_dup(const struct lyd_node *node, struct lyd_node_inner *parent, uint32_t options, ly_bool nosiblings, struct lyd_node **dup)
Michal Vasko3a41dff2020-07-15 14:30:28 +02002667{
2668 LY_ERR rc;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002669 const struct lyd_node *orig; /* original node to be duplicated */
2670 struct lyd_node *first = NULL; /* the first duplicated node, this is returned */
Radek Krejci22ebdba2019-07-25 13:59:43 +02002671 struct lyd_node *top = NULL; /* the most higher created node */
2672 struct lyd_node_inner *local_parent = NULL; /* the direct parent node for the duplicated node(s) */
Radek Krejci22ebdba2019-07-25 13:59:43 +02002673
Michal Vasko3a41dff2020-07-15 14:30:28 +02002674 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002675
2676 if (options & LYD_DUP_WITH_PARENTS) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002677 LY_CHECK_GOTO(rc = lyd_dup_get_local_parent(node, parent, &top, &local_parent), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002678 } else {
2679 local_parent = parent;
2680 }
2681
Radek Krejci22ebdba2019-07-25 13:59:43 +02002682 LY_LIST_FOR(node, orig) {
Michal Vasko52927e22020-03-16 17:26:14 +01002683 /* if there is no local parent, it will be inserted into first */
Michal Vasko3a41dff2020-07-15 14:30:28 +02002684 LY_CHECK_GOTO(rc = lyd_dup_r(orig, (struct lyd_node *)local_parent, &first, options, first ? NULL : &first), error);
2685 if (nosiblings) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02002686 break;
2687 }
2688 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002689
2690 /* rehash if needed */
Michal Vaskod989ba02020-08-24 10:59:24 +02002691 for ( ; local_parent; local_parent = local_parent->parent) {
Michal Vasko69730152020-10-09 16:30:07 +02002692 if ((local_parent->schema->nodetype == LYS_LIST) && (local_parent->schema->flags & LYS_KEYLESS)) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002693 lyd_hash((struct lyd_node *)local_parent);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002694 }
2695 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002696
2697 if (dup) {
2698 *dup = first;
2699 }
2700 return LY_SUCCESS;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002701
2702error:
2703 if (top) {
2704 lyd_free_tree(top);
2705 } else {
Michal Vaskof03ed032020-03-04 13:31:44 +01002706 lyd_free_siblings(first);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002707 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002708 return rc;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002709}
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002710
Michal Vasko3a41dff2020-07-15 14:30:28 +02002711API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002712lyd_dup_single(const struct lyd_node *node, struct lyd_node_inner *parent, uint32_t options, struct lyd_node **dup)
Michal Vasko3a41dff2020-07-15 14:30:28 +02002713{
2714 return lyd_dup(node, parent, options, 1, dup);
2715}
2716
2717API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002718lyd_dup_siblings(const struct lyd_node *node, struct lyd_node_inner *parent, uint32_t options, struct lyd_node **dup)
Michal Vasko3a41dff2020-07-15 14:30:28 +02002719{
2720 return lyd_dup(node, parent, options, 0, dup);
2721}
2722
2723API LY_ERR
2724lyd_dup_meta_single(const struct lyd_meta *meta, struct lyd_node *node, struct lyd_meta **dup)
Michal Vasko25a32822020-07-09 15:48:22 +02002725{
Radek Krejci011e4aa2020-09-04 15:22:31 +02002726 LY_ERR ret = LY_SUCCESS;
Michal Vasko25a32822020-07-09 15:48:22 +02002727 struct lyd_meta *mt, *last;
2728
Michal Vasko3a41dff2020-07-15 14:30:28 +02002729 LY_CHECK_ARG_RET(NULL, meta, node, LY_EINVAL);
Michal Vasko25a32822020-07-09 15:48:22 +02002730
2731 /* create a copy */
2732 mt = calloc(1, sizeof *mt);
Michal Vaskob7be7a82020-08-20 09:09:04 +02002733 LY_CHECK_ERR_RET(!mt, LOGMEM(LYD_CTX(node)), LY_EMEM);
Michal Vasko25a32822020-07-09 15:48:22 +02002734 mt->annotation = meta->annotation;
Michal Vaskob7be7a82020-08-20 09:09:04 +02002735 ret = meta->value.realtype->plugin->duplicate(LYD_CTX(node), &meta->value, &mt->value);
Radek Krejci011e4aa2020-09-04 15:22:31 +02002736 LY_CHECK_ERR_GOTO(ret, LOGERR(LYD_CTX(node), LY_EINT, "Value duplication failed."), finish);
2737 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), meta->name, 0, &mt->name), finish);
Michal Vasko25a32822020-07-09 15:48:22 +02002738
2739 /* insert as the last attribute */
Radek Krejci011e4aa2020-09-04 15:22:31 +02002740 mt->parent = node;
Michal Vasko25a32822020-07-09 15:48:22 +02002741 if (node->meta) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002742 for (last = node->meta; last->next; last = last->next) {}
Michal Vasko25a32822020-07-09 15:48:22 +02002743 last->next = mt;
2744 } else {
2745 node->meta = mt;
2746 }
2747
Radek Krejci011e4aa2020-09-04 15:22:31 +02002748finish:
2749 if (ret) {
2750 lyd_free_meta_single(mt);
2751 } else if (dup) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002752 *dup = mt;
2753 }
2754 return LY_SUCCESS;
Michal Vasko25a32822020-07-09 15:48:22 +02002755}
2756
Michal Vasko4490d312020-06-16 13:08:55 +02002757/**
2758 * @brief Merge a source sibling into target siblings.
2759 *
2760 * @param[in,out] first_trg First target sibling, is updated if top-level.
2761 * @param[in] parent_trg Target parent.
2762 * @param[in,out] sibling_src Source sibling to merge, set to NULL if spent.
2763 * @param[in] options Merge options.
2764 * @return LY_ERR value.
2765 */
2766static LY_ERR
2767lyd_merge_sibling_r(struct lyd_node **first_trg, struct lyd_node *parent_trg, const struct lyd_node **sibling_src_p,
Radek Krejci1deb5be2020-08-26 16:43:36 +02002768 uint16_t options)
Michal Vasko4490d312020-06-16 13:08:55 +02002769{
2770 LY_ERR ret;
2771 const struct lyd_node *child_src, *tmp, *sibling_src;
Michal Vasko56daf732020-08-10 10:57:18 +02002772 struct lyd_node *match_trg, *dup_src, *elem;
Michal Vasko4490d312020-06-16 13:08:55 +02002773 struct lysc_type *type;
Michal Vasko4490d312020-06-16 13:08:55 +02002774
2775 sibling_src = *sibling_src_p;
2776 if (sibling_src->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) {
2777 /* try to find the exact instance */
2778 ret = lyd_find_sibling_first(*first_trg, sibling_src, &match_trg);
2779 } else {
2780 /* try to simply find the node, there cannot be more instances */
2781 ret = lyd_find_sibling_val(*first_trg, sibling_src->schema, NULL, 0, &match_trg);
2782 }
2783
2784 if (!ret) {
2785 /* node found, make sure even value matches for all node types */
Michal Vasko8f359bf2020-07-28 10:41:15 +02002786 if ((match_trg->schema->nodetype == LYS_LEAF) && lyd_compare_single(sibling_src, match_trg, LYD_COMPARE_DEFAULTS)) {
Michal Vasko4490d312020-06-16 13:08:55 +02002787 /* since they are different, they cannot both be default */
2788 assert(!(sibling_src->flags & LYD_DEFAULT) || !(match_trg->flags & LYD_DEFAULT));
2789
Michal Vasko3a41dff2020-07-15 14:30:28 +02002790 /* update value (or only LYD_DEFAULT flag) only if flag set or the source node is not default */
2791 if ((options & LYD_MERGE_DEFAULTS) || !(sibling_src->flags & LYD_DEFAULT)) {
Michal Vasko4490d312020-06-16 13:08:55 +02002792 type = ((struct lysc_node_leaf *)match_trg->schema)->type;
Michal Vaskob7be7a82020-08-20 09:09:04 +02002793 type->plugin->free(LYD_CTX(match_trg), &((struct lyd_node_term *)match_trg)->value);
2794 LY_CHECK_RET(type->plugin->duplicate(LYD_CTX(match_trg), &((struct lyd_node_term *)sibling_src)->value,
Michal Vasko69730152020-10-09 16:30:07 +02002795 &((struct lyd_node_term *)match_trg)->value));
Michal Vasko4490d312020-06-16 13:08:55 +02002796
2797 /* copy flags and add LYD_NEW */
2798 match_trg->flags = sibling_src->flags | LYD_NEW;
2799 }
Michal Vasko8f359bf2020-07-28 10:41:15 +02002800 } else if ((match_trg->schema->nodetype & LYS_ANYDATA) && lyd_compare_single(sibling_src, match_trg, 0)) {
Michal Vasko4c583e82020-07-17 12:16:14 +02002801 /* update value */
2802 LY_CHECK_RET(lyd_any_copy_value(match_trg, &((struct lyd_node_any *)sibling_src)->value,
Radek Krejci0f969882020-08-21 16:56:47 +02002803 ((struct lyd_node_any *)sibling_src)->value_type));
Michal Vasko4490d312020-06-16 13:08:55 +02002804
2805 /* copy flags and add LYD_NEW */
2806 match_trg->flags = sibling_src->flags | LYD_NEW;
Michal Vasko4490d312020-06-16 13:08:55 +02002807 } else {
2808 /* check descendants, recursively */
Radek Krejcia1c1e542020-09-29 16:06:52 +02002809 LY_LIST_FOR_SAFE(lyd_child_no_keys(sibling_src), tmp, child_src) {
Michal Vasko4490d312020-06-16 13:08:55 +02002810 LY_CHECK_RET(lyd_merge_sibling_r(lyd_node_children_p(match_trg), match_trg, &child_src, options));
2811 }
2812 }
2813 } else {
2814 /* node not found, merge it */
2815 if (options & LYD_MERGE_DESTRUCT) {
2816 dup_src = (struct lyd_node *)sibling_src;
2817 lyd_unlink_tree(dup_src);
2818 /* spend it */
2819 *sibling_src_p = NULL;
2820 } else {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002821 LY_CHECK_RET(lyd_dup_single(sibling_src, NULL, LYD_DUP_RECURSIVE | LYD_DUP_WITH_FLAGS, &dup_src));
Michal Vasko4490d312020-06-16 13:08:55 +02002822 }
2823
2824 /* set LYD_NEW for all the new nodes, required for validation */
Michal Vasko56daf732020-08-10 10:57:18 +02002825 LYD_TREE_DFS_BEGIN(dup_src, elem) {
Michal Vasko4490d312020-06-16 13:08:55 +02002826 elem->flags |= LYD_NEW;
Michal Vasko56daf732020-08-10 10:57:18 +02002827 LYD_TREE_DFS_END(dup_src, elem);
Michal Vasko4490d312020-06-16 13:08:55 +02002828 }
2829
2830 lyd_insert_node(parent_trg, first_trg, dup_src);
2831 }
2832
2833 return LY_SUCCESS;
2834}
2835
Michal Vasko3a41dff2020-07-15 14:30:28 +02002836static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02002837lyd_merge(struct lyd_node **target, const struct lyd_node *source, uint16_t options, ly_bool nosiblings)
Michal Vasko4490d312020-06-16 13:08:55 +02002838{
2839 const struct lyd_node *sibling_src, *tmp;
Radek Krejci857189e2020-09-01 13:26:36 +02002840 ly_bool first;
Michal Vasko4490d312020-06-16 13:08:55 +02002841
2842 LY_CHECK_ARG_RET(NULL, target, LY_EINVAL);
2843
2844 if (!source) {
2845 /* nothing to merge */
2846 return LY_SUCCESS;
2847 }
2848
2849 if (lysc_data_parent((*target)->schema) || lysc_data_parent(source->schema)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002850 LOGERR(LYD_CTX(source), LY_EINVAL, "Invalid arguments - can merge only 2 top-level subtrees (%s()).", __func__);
Michal Vasko4490d312020-06-16 13:08:55 +02002851 return LY_EINVAL;
2852 }
2853
2854 LY_LIST_FOR_SAFE(source, tmp, sibling_src) {
Radek Krejci857189e2020-09-01 13:26:36 +02002855 first = (sibling_src == source) ? 1 : 0;
Michal Vasko4490d312020-06-16 13:08:55 +02002856 LY_CHECK_RET(lyd_merge_sibling_r(target, NULL, &sibling_src, options));
2857 if (first && !sibling_src) {
2858 /* source was spent (unlinked), move to the next node */
2859 source = tmp;
2860 }
2861
Michal Vasko3a41dff2020-07-15 14:30:28 +02002862 if (nosiblings) {
Michal Vasko4490d312020-06-16 13:08:55 +02002863 break;
2864 }
2865 }
2866
2867 if (options & LYD_MERGE_DESTRUCT) {
2868 /* free any leftover source data that were not merged */
2869 lyd_free_siblings((struct lyd_node *)source);
2870 }
2871
2872 return LY_SUCCESS;
2873}
2874
Michal Vasko3a41dff2020-07-15 14:30:28 +02002875API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002876lyd_merge_tree(struct lyd_node **target, const struct lyd_node *source, uint16_t options)
Michal Vasko3a41dff2020-07-15 14:30:28 +02002877{
2878 return lyd_merge(target, source, options, 1);
2879}
2880
2881API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002882lyd_merge_siblings(struct lyd_node **target, const struct lyd_node *source, uint16_t options)
Michal Vasko3a41dff2020-07-15 14:30:28 +02002883{
2884 return lyd_merge(target, source, options, 0);
2885}
2886
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002887static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02002888lyd_path_str_enlarge(char **buffer, size_t *buflen, size_t reqlen, ly_bool is_static)
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002889{
Michal Vasko14654712020-02-06 08:35:21 +01002890 /* ending \0 */
2891 ++reqlen;
2892
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002893 if (reqlen > *buflen) {
2894 if (is_static) {
2895 return LY_EINCOMPLETE;
2896 }
2897
2898 *buffer = ly_realloc(*buffer, reqlen * sizeof **buffer);
2899 if (!*buffer) {
2900 return LY_EMEM;
2901 }
2902
2903 *buflen = reqlen;
2904 }
2905
2906 return LY_SUCCESS;
2907}
2908
Michal Vaskod59035b2020-07-08 12:00:06 +02002909LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02002910lyd_path_list_predicate(const struct lyd_node *node, char **buffer, size_t *buflen, size_t *bufused, ly_bool is_static)
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002911{
2912 const struct lyd_node *key;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002913 size_t len;
2914 const char *val;
2915 char quot;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002916
Radek Krejcia1c1e542020-09-29 16:06:52 +02002917 for (key = lyd_child(node); key && (key->schema->flags & LYS_KEY); key = key->next) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002918 val = LYD_CANON_VALUE(key);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002919 len = 1 + strlen(key->schema->name) + 2 + strlen(val) + 2;
Michal Vaskoba99a3e2020-08-18 15:50:05 +02002920 LY_CHECK_RET(lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static));
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002921
2922 quot = '\'';
2923 if (strchr(val, '\'')) {
2924 quot = '"';
2925 }
2926 *bufused += sprintf(*buffer + *bufused, "[%s=%c%s%c]", key->schema->name, quot, val, quot);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002927 }
2928
2929 return LY_SUCCESS;
2930}
2931
2932/**
2933 * @brief Append leaf-list value predicate to path.
2934 *
2935 * @param[in] node Node to print.
2936 * @param[in,out] buffer Buffer to print to.
2937 * @param[in,out] buflen Current buffer length.
2938 * @param[in,out] bufused Current number of characters used in @p buffer.
2939 * @param[in] is_static Whether buffer is static or can be reallocated.
2940 * @return LY_ERR
2941 */
2942static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02002943lyd_path_leaflist_predicate(const struct lyd_node *node, char **buffer, size_t *buflen, size_t *bufused, ly_bool is_static)
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002944{
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002945 size_t len;
2946 const char *val;
2947 char quot;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002948
Michal Vaskob7be7a82020-08-20 09:09:04 +02002949 val = LYD_CANON_VALUE(node);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002950 len = 4 + strlen(val) + 2;
Michal Vaskoba99a3e2020-08-18 15:50:05 +02002951 LY_CHECK_RET(lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static));
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002952
2953 quot = '\'';
2954 if (strchr(val, '\'')) {
2955 quot = '"';
2956 }
2957 *bufused += sprintf(*buffer + *bufused, "[.=%c%s%c]", quot, val, quot);
2958
Michal Vaskoba99a3e2020-08-18 15:50:05 +02002959 return LY_SUCCESS;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002960}
2961
2962/**
2963 * @brief Append node position (relative to its other instances) predicate to path.
2964 *
2965 * @param[in] node Node to print.
2966 * @param[in,out] buffer Buffer to print to.
2967 * @param[in,out] buflen Current buffer length.
2968 * @param[in,out] bufused Current number of characters used in @p buffer.
2969 * @param[in] is_static Whether buffer is static or can be reallocated.
2970 * @return LY_ERR
2971 */
2972static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02002973lyd_path_position_predicate(const struct lyd_node *node, char **buffer, size_t *buflen, size_t *bufused, ly_bool is_static)
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002974{
2975 const struct lyd_node *first, *iter;
2976 size_t len;
Radek Krejci1deb5be2020-08-26 16:43:36 +02002977 uint64_t pos;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002978 char *val = NULL;
2979 LY_ERR rc;
2980
2981 if (node->parent) {
2982 first = node->parent->child;
2983 } else {
Michal Vaskoe070bfe2020-08-31 12:27:25 +02002984 for (first = node; first->prev->next; first = first->prev) {}
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002985 }
2986 pos = 1;
2987 for (iter = first; iter != node; iter = iter->next) {
2988 if (iter->schema == node->schema) {
2989 ++pos;
2990 }
2991 }
Radek Krejci1deb5be2020-08-26 16:43:36 +02002992 if (asprintf(&val, "%" PRIu64, pos) == -1) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002993 return LY_EMEM;
2994 }
2995
2996 len = 1 + strlen(val) + 1;
2997 rc = lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static);
2998 if (rc != LY_SUCCESS) {
2999 goto cleanup;
3000 }
3001
3002 *bufused += sprintf(*buffer + *bufused, "[%s]", val);
3003
3004cleanup:
3005 free(val);
3006 return rc;
3007}
3008
3009API char *
3010lyd_path(const struct lyd_node *node, LYD_PATH_TYPE pathtype, char *buffer, size_t buflen)
3011{
Radek Krejci857189e2020-09-01 13:26:36 +02003012 ly_bool is_static = 0;
Radek Krejci1deb5be2020-08-26 16:43:36 +02003013 uint32_t i, depth;
Michal Vasko14654712020-02-06 08:35:21 +01003014 size_t bufused = 0, len;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003015 const struct lyd_node *iter;
3016 const struct lys_module *mod;
Michal Vasko790b2bc2020-08-03 13:35:06 +02003017 LY_ERR rc = LY_SUCCESS;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003018
3019 LY_CHECK_ARG_RET(NULL, node, NULL);
3020 if (buffer) {
3021 LY_CHECK_ARG_RET(node->schema->module->ctx, buflen > 1, NULL);
3022 is_static = 1;
Michal Vasko14654712020-02-06 08:35:21 +01003023 } else {
3024 buflen = 0;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003025 }
3026
3027 switch (pathtype) {
Michal Vasko14654712020-02-06 08:35:21 +01003028 case LYD_PATH_LOG:
Michal Vasko790b2bc2020-08-03 13:35:06 +02003029 case LYD_PATH_LOG_NO_LAST_PRED:
Michal Vasko14654712020-02-06 08:35:21 +01003030 depth = 1;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003031 for (iter = node; iter->parent; iter = (const struct lyd_node *)iter->parent) {
3032 ++depth;
3033 }
3034
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003035 goto iter_print;
Michal Vasko14654712020-02-06 08:35:21 +01003036 while (depth) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003037 /* find the right node */
Radek Krejci1e008d22020-08-17 11:37:37 +02003038 for (iter = node, i = 1; i < depth; iter = (const struct lyd_node *)iter->parent, ++i) {}
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003039iter_print:
3040 /* print prefix and name */
3041 mod = NULL;
Michal Vasko69730152020-10-09 16:30:07 +02003042 if (iter->schema && (!iter->parent || (iter->schema->module != iter->parent->schema->module))) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003043 mod = iter->schema->module;
3044 }
3045
3046 /* realloc string */
Michal Vasko22df3f02020-08-24 13:29:22 +02003047 len = 1 + (mod ? strlen(mod->name) + 1 : 0) + (iter->schema ? strlen(iter->schema->name) : strlen(((struct lyd_node_opaq *)iter)->name));
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003048 rc = lyd_path_str_enlarge(&buffer, &buflen, bufused + len, is_static);
3049 if (rc != LY_SUCCESS) {
3050 break;
3051 }
3052
3053 /* print next node */
Radek Krejci1798aae2020-07-14 13:26:06 +02003054 bufused += sprintf(buffer + bufused, "/%s%s%s", mod ? mod->name : "", mod ? ":" : "",
Michal Vasko69730152020-10-09 16:30:07 +02003055 iter->schema ? iter->schema->name : ((struct lyd_node_opaq *)iter)->name);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003056
Michal Vasko790b2bc2020-08-03 13:35:06 +02003057 /* do not always print the last (first) predicate */
Michal Vasko552e1122020-11-06 17:22:44 +01003058 if (iter->schema && ((depth > 1) || (pathtype == LYD_PATH_LOG))) {
Michal Vasko790b2bc2020-08-03 13:35:06 +02003059 switch (iter->schema->nodetype) {
3060 case LYS_LIST:
3061 if (iter->schema->flags & LYS_KEYLESS) {
3062 /* print its position */
3063 rc = lyd_path_position_predicate(iter, &buffer, &buflen, &bufused, is_static);
3064 } else {
3065 /* print all list keys in predicates */
3066 rc = lyd_path_list_predicate(iter, &buffer, &buflen, &bufused, is_static);
3067 }
3068 break;
3069 case LYS_LEAFLIST:
3070 if (iter->schema->flags & LYS_CONFIG_W) {
3071 /* print leaf-list value */
3072 rc = lyd_path_leaflist_predicate(iter, &buffer, &buflen, &bufused, is_static);
3073 } else {
3074 /* print its position */
3075 rc = lyd_path_position_predicate(iter, &buffer, &buflen, &bufused, is_static);
3076 }
3077 break;
3078 default:
3079 /* nothing to print more */
3080 break;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003081 }
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003082 }
3083 if (rc != LY_SUCCESS) {
3084 break;
3085 }
3086
Michal Vasko14654712020-02-06 08:35:21 +01003087 --depth;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003088 }
3089 break;
3090 }
3091
3092 return buffer;
3093}
Michal Vaskoe444f752020-02-10 12:20:06 +01003094
Michal Vasko25a32822020-07-09 15:48:22 +02003095API struct lyd_meta *
3096lyd_find_meta(const struct lyd_meta *first, const struct lys_module *module, const char *name)
3097{
3098 struct lyd_meta *ret = NULL;
3099 const struct ly_ctx *ctx;
3100 const char *prefix, *tmp;
3101 char *str;
3102 size_t pref_len, name_len;
3103
3104 LY_CHECK_ARG_RET(NULL, module || strchr(name, ':'), name, NULL);
3105
3106 if (!first) {
3107 return NULL;
3108 }
3109
3110 ctx = first->annotation->module->ctx;
3111
3112 /* parse the name */
3113 tmp = name;
3114 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
3115 LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name);
3116 return NULL;
3117 }
3118
3119 /* find the module */
3120 if (prefix) {
3121 str = strndup(prefix, pref_len);
3122 module = ly_ctx_get_module_latest(ctx, str);
3123 free(str);
3124 LY_CHECK_ERR_RET(!module, LOGERR(ctx, LY_EINVAL, "Module \"%.*s\" not found.", pref_len, prefix), NULL);
3125 }
3126
3127 /* find the metadata */
3128 LY_LIST_FOR(first, first) {
3129 if ((first->annotation->module == module) && !strcmp(first->name, name)) {
3130 ret = (struct lyd_meta *)first;
3131 break;
3132 }
3133 }
3134
3135 return ret;
3136}
3137
Michal Vasko9b368d32020-02-14 13:53:31 +01003138API LY_ERR
Michal Vaskoe444f752020-02-10 12:20:06 +01003139lyd_find_sibling_first(const struct lyd_node *siblings, const struct lyd_node *target, struct lyd_node **match)
3140{
3141 struct lyd_node **match_p;
3142 struct lyd_node_inner *parent;
3143
Michal Vaskof03ed032020-03-04 13:31:44 +01003144 LY_CHECK_ARG_RET(NULL, target, LY_EINVAL);
Michal Vaskoe444f752020-02-10 12:20:06 +01003145
Michal Vasko62ed12d2020-05-21 10:08:25 +02003146 if (!siblings || (lysc_data_parent(siblings->schema) != lysc_data_parent(target->schema))) {
3147 /* no data or schema mismatch */
Michal Vasko9b368d32020-02-14 13:53:31 +01003148 if (match) {
3149 *match = NULL;
3150 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003151 return LY_ENOTFOUND;
3152 }
3153
3154 /* find first sibling */
3155 if (siblings->parent) {
3156 siblings = siblings->parent->child;
3157 } else {
3158 while (siblings->prev->next) {
3159 siblings = siblings->prev;
3160 }
3161 }
3162
3163 parent = (struct lyd_node_inner *)siblings->parent;
3164 if (parent && parent->children_ht) {
3165 assert(target->hash);
3166
3167 /* find by hash */
3168 if (!lyht_find(parent->children_ht, &target, target->hash, (void **)&match_p)) {
Michal Vaskoda859032020-07-14 12:20:14 +02003169 /* check even value when needed */
Michal Vasko8f359bf2020-07-28 10:41:15 +02003170 if (!(target->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !lyd_compare_single(target, *match_p, 0)) {
Michal Vaskoda859032020-07-14 12:20:14 +02003171 siblings = *match_p;
3172 } else {
3173 siblings = NULL;
3174 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003175 } else {
3176 /* not found */
3177 siblings = NULL;
3178 }
3179 } else {
3180 /* no children hash table */
Michal Vaskod989ba02020-08-24 10:59:24 +02003181 for ( ; siblings; siblings = siblings->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02003182 if (!lyd_compare_single(siblings, target, 0)) {
Michal Vaskoe444f752020-02-10 12:20:06 +01003183 break;
3184 }
3185 }
3186 }
3187
3188 if (!siblings) {
Michal Vasko9b368d32020-02-14 13:53:31 +01003189 if (match) {
3190 *match = NULL;
3191 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003192 return LY_ENOTFOUND;
3193 }
3194
Michal Vasko9b368d32020-02-14 13:53:31 +01003195 if (match) {
3196 *match = (struct lyd_node *)siblings;
3197 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003198 return LY_SUCCESS;
3199}
3200
Radek Krejci857189e2020-09-01 13:26:36 +02003201/**
3202 * @brief Comparison callback to match schema node with a schema of a data node.
3203 *
3204 * @param[in] val1_p Pointer to the schema node
3205 * @param[in] val2_p Pointer to the data node
3206 * Implementation of ::values_equal_cb.
3207 */
3208static ly_bool
3209lyd_hash_table_schema_val_equal(void *val1_p, void *val2_p, ly_bool UNUSED(mod), void *UNUSED(cb_data))
Michal Vasko90932a92020-02-12 14:33:03 +01003210{
3211 struct lysc_node *val1;
3212 struct lyd_node *val2;
3213
3214 val1 = *((struct lysc_node **)val1_p);
3215 val2 = *((struct lyd_node **)val2_p);
3216
Michal Vasko90932a92020-02-12 14:33:03 +01003217 if (val1 == val2->schema) {
3218 /* schema match is enough */
3219 return 1;
3220 } else {
3221 return 0;
3222 }
3223}
3224
3225static LY_ERR
3226lyd_find_sibling_schema(const struct lyd_node *siblings, const struct lysc_node *schema, struct lyd_node **match)
3227{
3228 struct lyd_node **match_p;
3229 struct lyd_node_inner *parent;
3230 uint32_t hash;
3231 values_equal_cb ht_cb;
3232
Michal Vaskob104f112020-07-17 09:54:54 +02003233 assert(siblings && schema);
Michal Vasko90932a92020-02-12 14:33:03 +01003234
3235 parent = (struct lyd_node_inner *)siblings->parent;
3236 if (parent && parent->children_ht) {
3237 /* calculate our hash */
3238 hash = dict_hash_multi(0, schema->module->name, strlen(schema->module->name));
3239 hash = dict_hash_multi(hash, schema->name, strlen(schema->name));
3240 hash = dict_hash_multi(hash, NULL, 0);
3241
3242 /* use special hash table function */
3243 ht_cb = lyht_set_cb(parent->children_ht, lyd_hash_table_schema_val_equal);
3244
3245 /* find by hash */
3246 if (!lyht_find(parent->children_ht, &schema, hash, (void **)&match_p)) {
3247 siblings = *match_p;
3248 } else {
3249 /* not found */
3250 siblings = NULL;
3251 }
3252
3253 /* set the original hash table compare function back */
3254 lyht_set_cb(parent->children_ht, ht_cb);
3255 } else {
Michal Vaskob104f112020-07-17 09:54:54 +02003256 /* find first sibling */
3257 if (siblings->parent) {
3258 siblings = siblings->parent->child;
3259 } else {
3260 while (siblings->prev->next) {
3261 siblings = siblings->prev;
3262 }
3263 }
3264
3265 /* search manually without hashes */
Michal Vaskod989ba02020-08-24 10:59:24 +02003266 for ( ; siblings; siblings = siblings->next) {
Michal Vasko90932a92020-02-12 14:33:03 +01003267 if (siblings->schema == schema) {
3268 /* schema match is enough */
3269 break;
3270 }
3271 }
3272 }
3273
3274 if (!siblings) {
Michal Vasko9b368d32020-02-14 13:53:31 +01003275 if (match) {
3276 *match = NULL;
3277 }
Michal Vasko90932a92020-02-12 14:33:03 +01003278 return LY_ENOTFOUND;
3279 }
3280
Michal Vasko9b368d32020-02-14 13:53:31 +01003281 if (match) {
3282 *match = (struct lyd_node *)siblings;
3283 }
Michal Vasko90932a92020-02-12 14:33:03 +01003284 return LY_SUCCESS;
3285}
3286
Michal Vaskoe444f752020-02-10 12:20:06 +01003287API LY_ERR
3288lyd_find_sibling_val(const struct lyd_node *siblings, const struct lysc_node *schema, const char *key_or_value,
Radek Krejci0f969882020-08-21 16:56:47 +02003289 size_t val_len, struct lyd_node **match)
Michal Vaskoe444f752020-02-10 12:20:06 +01003290{
3291 LY_ERR rc;
3292 struct lyd_node *target = NULL;
3293
Michal Vasko4c583e82020-07-17 12:16:14 +02003294 LY_CHECK_ARG_RET(NULL, schema, !(schema->nodetype & (LYS_CHOICE | LYS_CASE)), LY_EINVAL);
Michal Vaskoe444f752020-02-10 12:20:06 +01003295
Michal Vasko62ed12d2020-05-21 10:08:25 +02003296 if (!siblings || (lysc_data_parent(siblings->schema) != lysc_data_parent(schema))) {
3297 /* no data or schema mismatch */
Michal Vasko9b368d32020-02-14 13:53:31 +01003298 if (match) {
3299 *match = NULL;
3300 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003301 return LY_ENOTFOUND;
3302 }
3303
Michal Vaskof03ed032020-03-04 13:31:44 +01003304 if (key_or_value && !val_len) {
3305 val_len = strlen(key_or_value);
3306 }
3307
Michal Vaskob104f112020-07-17 09:54:54 +02003308 if ((schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) && key_or_value) {
3309 /* create a data node and find the instance */
3310 if (schema->nodetype == LYS_LEAFLIST) {
3311 /* target used attributes: schema, hash, value */
Michal Vaskofeca4fb2020-10-05 08:58:40 +02003312 rc = lyd_create_term(schema, key_or_value, val_len, NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, NULL, &target);
3313 LY_CHECK_RET(rc);
Michal Vaskob104f112020-07-17 09:54:54 +02003314 } else {
Michal Vasko90932a92020-02-12 14:33:03 +01003315 /* target used attributes: schema, hash, child (all keys) */
Michal Vasko004d3152020-06-11 19:59:22 +02003316 LY_CHECK_RET(lyd_create_list2(schema, key_or_value, val_len, &target));
Michal Vasko90932a92020-02-12 14:33:03 +01003317 }
3318
3319 /* find it */
3320 rc = lyd_find_sibling_first(siblings, target, match);
Michal Vaskob104f112020-07-17 09:54:54 +02003321 } else {
3322 /* find the first schema node instance */
3323 rc = lyd_find_sibling_schema(siblings, schema, match);
Michal Vaskoe444f752020-02-10 12:20:06 +01003324 }
3325
Michal Vaskoe444f752020-02-10 12:20:06 +01003326 lyd_free_tree(target);
3327 return rc;
3328}
Michal Vaskoccc02342020-05-21 10:09:21 +02003329
3330API LY_ERR
3331lyd_find_xpath(const struct lyd_node *ctx_node, const char *xpath, struct ly_set **set)
3332{
3333 LY_ERR ret = LY_SUCCESS;
3334 struct lyxp_set xp_set;
Radek Krejcif03a9e22020-09-18 20:09:31 +02003335 struct lyxp_expr *exp = NULL;
Michal Vaskoccc02342020-05-21 10:09:21 +02003336 uint32_t i;
3337
3338 LY_CHECK_ARG_RET(NULL, ctx_node, xpath, set, LY_EINVAL);
3339
3340 memset(&xp_set, 0, sizeof xp_set);
3341
3342 /* compile expression */
Radek Krejcif03a9e22020-09-18 20:09:31 +02003343 ret = lyxp_expr_parse((struct ly_ctx *)LYD_CTX(ctx_node), xpath, 0, 1, &exp);
3344 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003345
3346 /* evaluate expression */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02003347 ret = lyxp_eval(exp, NULL, LY_PREF_JSON, NULL, ctx_node, ctx_node, &xp_set, 0);
Michal Vaskoccc02342020-05-21 10:09:21 +02003348 LY_CHECK_GOTO(ret, cleanup);
3349
3350 /* allocate return set */
Radek Krejciba03a5a2020-08-27 14:40:41 +02003351 ret = ly_set_new(set);
3352 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003353
3354 /* transform into ly_set */
3355 if (xp_set.type == LYXP_SET_NODE_SET) {
3356 /* allocate memory for all the elements once (even though not all items must be elements but most likely will be) */
3357 (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs);
Michal Vaskob7be7a82020-08-20 09:09:04 +02003358 LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(LYD_CTX(ctx_node)); ret = LY_EMEM, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003359 (*set)->size = xp_set.used;
3360
3361 for (i = 0; i < xp_set.used; ++i) {
3362 if (xp_set.val.nodes[i].type == LYXP_NODE_ELEM) {
Radek Krejci3d92e442020-10-12 12:48:13 +02003363 ret = ly_set_add(*set, xp_set.val.nodes[i].node, 1, NULL);
Radek Krejciba03a5a2020-08-27 14:40:41 +02003364 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003365 }
3366 }
3367 }
3368
3369cleanup:
Michal Vasko0691d522020-05-21 13:21:47 +02003370 lyxp_set_free_content(&xp_set);
Michal Vaskob7be7a82020-08-20 09:09:04 +02003371 lyxp_expr_free((struct ly_ctx *)LYD_CTX(ctx_node), exp);
Michal Vaskoccc02342020-05-21 10:09:21 +02003372 return ret;
3373}
Radek Krejcica989142020-11-05 11:32:22 +01003374
3375API uint32_t
3376lyd_list_pos(const struct lyd_node *instance)
3377{
3378 const struct lyd_node *iter = NULL;
3379 uint32_t pos = 0;
3380
3381 if (!instance || !(instance->schema->nodetype & (LYS_LIST | LYS_LEAFLIST))) {
3382 return 0;
3383 }
3384
3385 /* data instances are ordered, so we can stop when we found instance of other schema node */
3386 for (iter = instance; iter->schema == instance->schema; iter = iter->prev) {
3387 if (pos && iter->next == NULL) {
3388 /* overrun to the end of the siblings list */
3389 break;
3390 }
3391 ++pos;
3392 }
3393
3394 return pos;
3395}
Radek Krejci4233f9b2020-11-05 12:38:35 +01003396
3397API struct lyd_node *
3398lyd_first_sibling(const struct lyd_node *node)
3399{
3400 struct lyd_node *start;
3401
3402 if (!node) {
3403 return NULL;
3404 }
3405
3406 /* get the first sibling */
3407 if (node->parent) {
3408 start = node->parent->child;
3409 } else {
3410 for (start = (struct lyd_node *)node; start->prev->next; start = start->prev);
3411 }
3412
3413 return start;
3414}