blob: 2627811f158794f3f58ab5e51c7601228372ac64 [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
Michal Vasko871a0252020-11-11 18:35:24 +0100964lyd_new_meta(const struct ly_ctx *ctx, struct lyd_node *parent, const struct lys_module *module, const char *name,
965 const char *val_str, ly_bool clear_dflt, struct lyd_meta **meta)
Michal Vaskod86997b2020-05-26 15:19:54 +0200966{
Michal Vaskod86997b2020-05-26 15:19:54 +0200967 const char *prefix, *tmp;
Michal Vaskod86997b2020-05-26 15:19:54 +0200968 size_t pref_len, name_len;
969
Michal Vasko871a0252020-11-11 18:35:24 +0100970 LY_CHECK_ARG_RET(NULL, ctx, name, module || strchr(name, ':'), parent || meta, LY_EINVAL);
Michal Vasko00cbf532020-06-15 13:58:47 +0200971
Michal Vasko871a0252020-11-11 18:35:24 +0100972 if (parent && !parent->schema) {
973 LOGERR(ctx, LY_EINVAL, "Cannot add metadata to an opaque node \"%s\".", ((struct lyd_node_opaq *)parent)->name);
974 return LY_EINVAL;
975 }
Michal Vaskod86997b2020-05-26 15:19:54 +0200976
977 /* parse the name */
978 tmp = name;
979 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
980 LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name);
Michal Vasko871a0252020-11-11 18:35:24 +0100981 return LY_EINVAL;
Michal Vaskod86997b2020-05-26 15:19:54 +0200982 }
983
984 /* find the module */
985 if (prefix) {
Radek Krejci0ad51f12020-07-16 12:08:12 +0200986 module = ly_ctx_get_module_implemented2(ctx, prefix, pref_len);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200987 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 +0200988 }
989
990 /* set value if none */
991 if (!val_str) {
992 val_str = "";
993 }
994
Michal Vasko871a0252020-11-11 18:35:24 +0100995 return lyd_create_meta(parent, meta, module, name, name_len, val_str, strlen(val_str), NULL, LY_PREF_JSON,
996 NULL, LYD_HINT_DATA, clear_dflt, NULL);
997}
Michal Vasko3a41dff2020-07-15 14:30:28 +0200998
Michal Vasko3a41dff2020-07-15 14:30:28 +0200999 }
Michal Vaskod86997b2020-05-26 15:19:54 +02001000}
1001
Michal Vasko3a41dff2020-07-15 14:30:28 +02001002API LY_ERR
Michal Vasko00cbf532020-06-15 13:58:47 +02001003lyd_new_opaq(struct lyd_node *parent, const struct ly_ctx *ctx, const char *name, const char *value,
Radek Krejci0f969882020-08-21 16:56:47 +02001004 const char *module_name, struct lyd_node **node)
Michal Vasko00cbf532020-06-15 13:58:47 +02001005{
1006 struct lyd_node *ret = NULL;
1007
Michal Vasko6027eb92020-07-15 16:37:30 +02001008 LY_CHECK_ARG_RET(ctx, parent || ctx, parent || node, name, module_name, LY_EINVAL);
Michal Vasko00cbf532020-06-15 13:58:47 +02001009
1010 if (!ctx) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001011 ctx = LYD_CTX(parent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001012 }
1013 if (!value) {
1014 value = "";
1015 }
1016
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001017 LY_CHECK_RET(lyd_create_opaq(ctx, name, strlen(name), value, strlen(value), NULL, LYD_JSON, 0, NULL, NULL, 0,
1018 module_name, strlen(module_name), &ret));
Michal Vasko3a41dff2020-07-15 14:30:28 +02001019 if (parent) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001020 lyd_insert_node(parent, NULL, ret);
1021 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02001022
1023 if (node) {
1024 *node = ret;
1025 }
1026 return LY_SUCCESS;
Michal Vasko00cbf532020-06-15 13:58:47 +02001027}
1028
Michal Vasko3a41dff2020-07-15 14:30:28 +02001029API LY_ERR
1030lyd_new_attr(struct lyd_node *parent, const char *module_name, const char *name, const char *val_str,
Radek Krejci0f969882020-08-21 16:56:47 +02001031 struct lyd_attr **attr)
Michal Vasko00cbf532020-06-15 13:58:47 +02001032{
Radek Krejci1798aae2020-07-14 13:26:06 +02001033 struct lyd_attr *ret = NULL;
Michal Vasko00cbf532020-06-15 13:58:47 +02001034 const struct ly_ctx *ctx;
1035 const char *prefix, *tmp;
1036 size_t pref_len, name_len;
1037
Michal Vasko3a41dff2020-07-15 14:30:28 +02001038 LY_CHECK_ARG_RET(NULL, parent, !parent->schema, name, LY_EINVAL);
Michal Vasko00cbf532020-06-15 13:58:47 +02001039
Michal Vaskob7be7a82020-08-20 09:09:04 +02001040 ctx = LYD_CTX(parent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001041
1042 /* parse the name */
1043 tmp = name;
1044 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
1045 LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001046 return LY_EVALID;
Michal Vasko00cbf532020-06-15 13:58:47 +02001047 }
1048
1049 /* set value if none */
1050 if (!val_str) {
1051 val_str = "";
1052 }
1053
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001054 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 +02001055 prefix, pref_len, module_name, module_name ? strlen(module_name) : 0));
Michal Vasko3a41dff2020-07-15 14:30:28 +02001056
1057 if (attr) {
1058 *attr = ret;
1059 }
1060 return LY_SUCCESS;
Michal Vasko00cbf532020-06-15 13:58:47 +02001061}
1062
1063API LY_ERR
1064lyd_change_term(struct lyd_node *term, const char *val_str)
1065{
1066 LY_ERR ret = LY_SUCCESS;
1067 struct lysc_type *type;
1068 struct lyd_node_term *t;
1069 struct lyd_node *parent;
1070 struct lyd_value val = {0};
Radek Krejci857189e2020-09-01 13:26:36 +02001071 ly_bool dflt_change, val_change;
Michal Vasko00cbf532020-06-15 13:58:47 +02001072
1073 LY_CHECK_ARG_RET(NULL, term, term->schema, term->schema->nodetype & LYD_NODE_TERM, LY_EINVAL);
1074
1075 if (!val_str) {
1076 val_str = "";
1077 }
1078 t = (struct lyd_node_term *)term;
1079 type = ((struct lysc_node_leaf *)term->schema)->type;
1080
1081 /* parse the new value */
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001082 ret = lyd_value_store(LYD_CTX(term), &val, type, val_str, strlen(val_str), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA,
1083 term->schema, NULL, LY_VLOG_LYD, term);
1084 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001085
1086 /* compare original and new value */
1087 if (type->plugin->compare(&t->value, &val)) {
1088 /* values differ, switch them */
Michal Vaskob7be7a82020-08-20 09:09:04 +02001089 type->plugin->free(LYD_CTX(term), &t->value);
Michal Vasko00cbf532020-06-15 13:58:47 +02001090 t->value = val;
1091 memset(&val, 0, sizeof val);
1092 val_change = 1;
1093 } else {
1094 val_change = 0;
1095 }
1096
1097 /* always clear the default flag */
1098 if (term->flags & LYD_DEFAULT) {
1099 for (parent = term; parent; parent = (struct lyd_node *)parent->parent) {
1100 parent->flags &= ~LYD_DEFAULT;
1101 }
1102 dflt_change = 1;
1103 } else {
1104 dflt_change = 0;
1105 }
1106
1107 if (val_change || dflt_change) {
1108 /* make the node non-validated */
1109 term->flags &= LYD_NEW;
1110 }
1111
1112 if (val_change) {
1113 if (term->schema->nodetype == LYS_LEAFLIST) {
1114 /* leaf-list needs to be hashed again and re-inserted into parent */
1115 lyd_unlink_hash(term);
1116 lyd_hash(term);
1117 LY_CHECK_GOTO(ret = lyd_insert_hash(term), cleanup);
1118 } else if ((term->schema->flags & LYS_KEY) && term->parent) {
1119 /* list needs to be updated if its key was changed */
1120 assert(term->parent->schema->nodetype == LYS_LIST);
1121 lyd_unlink_hash((struct lyd_node *)term->parent);
1122 lyd_hash((struct lyd_node *)term->parent);
1123 LY_CHECK_GOTO(ret = lyd_insert_hash((struct lyd_node *)term->parent), cleanup);
1124 } /* else leaf that is not a key, its value is not used for its hash so it does not change */
1125 }
1126
1127 /* retrun value */
1128 if (!val_change) {
1129 if (dflt_change) {
1130 /* only default flag change */
1131 ret = LY_EEXIST;
1132 } else {
1133 /* no change */
1134 ret = LY_ENOT;
1135 }
1136 } /* else value changed, LY_SUCCESS */
1137
1138cleanup:
Michal Vaskob7be7a82020-08-20 09:09:04 +02001139 type->plugin->free(LYD_CTX(term), &val);
Michal Vasko00cbf532020-06-15 13:58:47 +02001140 return ret;
1141}
1142
Michal Vasko41586352020-07-13 13:54:25 +02001143API LY_ERR
1144lyd_change_meta(struct lyd_meta *meta, const char *val_str)
1145{
1146 LY_ERR ret = LY_SUCCESS;
Radek Krejci2b18bf12020-11-06 11:20:20 +01001147 struct lyd_meta *m2 = NULL;
Michal Vasko41586352020-07-13 13:54:25 +02001148 struct lyd_value val;
Radek Krejci857189e2020-09-01 13:26:36 +02001149 ly_bool val_change;
Michal Vasko41586352020-07-13 13:54:25 +02001150
1151 LY_CHECK_ARG_RET(NULL, meta, LY_EINVAL);
1152
1153 if (!val_str) {
1154 val_str = "";
1155 }
1156
1157 /* parse the new value into a new meta structure */
1158 LY_CHECK_GOTO(ret = lyd_create_meta(NULL, &m2, meta->annotation->module, meta->name, strlen(meta->name), val_str,
Michal Vasko871a0252020-11-11 18:35:24 +01001159 strlen(val_str), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, 0, NULL), cleanup);
Michal Vasko41586352020-07-13 13:54:25 +02001160
1161 /* compare original and new value */
1162 if (lyd_compare_meta(meta, m2)) {
1163 /* values differ, switch them */
1164 val = meta->value;
1165 meta->value = m2->value;
1166 m2->value = val;
1167 val_change = 1;
1168 } else {
1169 val_change = 0;
1170 }
1171
1172 /* retrun value */
1173 if (!val_change) {
1174 /* no change */
1175 ret = LY_ENOT;
1176 } /* else value changed, LY_SUCCESS */
1177
1178cleanup:
1179 return ret;
1180}
1181
Michal Vasko3a41dff2020-07-15 14:30:28 +02001182API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001183lyd_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 +02001184 struct lyd_node **node)
Michal Vasko00cbf532020-06-15 13:58:47 +02001185{
Michal Vasko3a41dff2020-07-15 14:30:28 +02001186 return lyd_new_path2(parent, ctx, path, value, 0, options, node, NULL);
Michal Vasko00cbf532020-06-15 13:58:47 +02001187}
1188
1189API LY_ERR
1190lyd_new_path2(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const void *value,
Radek Krejci1deb5be2020-08-26 16:43:36 +02001191 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 +02001192{
1193 LY_ERR ret = LY_SUCCESS, r;
1194 struct lyxp_expr *exp = NULL;
1195 struct ly_path *p = NULL;
1196 struct lyd_node *nparent = NULL, *nnode = NULL, *node = NULL, *cur_parent;
1197 const struct lysc_node *schema;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001198 LY_ARRAY_COUNT_TYPE path_idx = 0;
Michal Vasko00cbf532020-06-15 13:58:47 +02001199 struct ly_path_predicate *pred;
1200
1201 LY_CHECK_ARG_RET(ctx, parent || ctx, path, (path[0] == '/') || parent, LY_EINVAL);
1202
1203 if (!ctx) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001204 ctx = LYD_CTX(parent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001205 }
1206
1207 /* parse path */
Michal Vasko6b26e742020-07-17 15:02:10 +02001208 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 +02001209 LY_PATH_PREFIX_OPTIONAL, LY_PATH_PRED_SIMPLE, &exp), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001210
1211 /* compile path */
1212 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 +02001213 options & LYD_NEW_PATH_OUTPUT ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT, LY_PATH_TARGET_MANY, LY_PREF_JSON,
1214 NULL, &p), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001215
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001216 schema = p[LY_ARRAY_COUNT(p) - 1].node;
Michal Vasko69730152020-10-09 16:30:07 +02001217 if ((schema->nodetype == LYS_LIST) && (p[LY_ARRAY_COUNT(p) - 1].pred_type == LY_PATH_PREDTYPE_NONE) &&
Radek Krejci092e33c2020-10-12 15:33:10 +02001218 !(options & LYD_NEW_PATH_OPAQ)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001219 LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_XPATH, "Predicate missing for %s \"%s\" in path.",
Michal Vasko69730152020-10-09 16:30:07 +02001220 lys_nodetype2str(schema->nodetype), schema->name);
Michal Vasko00cbf532020-06-15 13:58:47 +02001221 ret = LY_EINVAL;
1222 goto cleanup;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001223 } 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 +02001224 /* parse leafref value into a predicate, if not defined in the path */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001225 p[LY_ARRAY_COUNT(p) - 1].pred_type = LY_PATH_PREDTYPE_LEAFLIST;
1226 LY_ARRAY_NEW_GOTO(ctx, p[LY_ARRAY_COUNT(p) - 1].predicates, pred, ret, cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001227
1228 if (!value) {
1229 value = "";
1230 }
1231
1232 r = LY_SUCCESS;
Radek Krejci092e33c2020-10-12 15:33:10 +02001233 if (options & LYD_NEW_PATH_OPAQ) {
Michal Vaskof937cfe2020-08-03 16:07:12 +02001234 r = lys_value_validate(NULL, schema, value, strlen(value));
Michal Vasko00cbf532020-06-15 13:58:47 +02001235 }
1236 if (!r) {
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001237 ret = lyd_value_store(ctx, &pred->value, ((struct lysc_node_leaflist *)schema)->type, value, strlen(value),
1238 NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, schema, NULL, LY_VLOG_LYSC, schema);
1239 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoae875662020-10-21 10:33:17 +02001240 ++((struct lysc_type *)pred->value.realtype)->refcount;
Michal Vasko00cbf532020-06-15 13:58:47 +02001241 } /* else we have opaq flag and the value is not valid, leavne no predicate and then create an opaque node */
1242 }
1243
1244 /* try to find any existing nodes in the path */
1245 if (parent) {
1246 ret = ly_path_eval_partial(p, parent, &path_idx, &node);
1247 if (ret == LY_SUCCESS) {
1248 /* the node exists, are we supposed to update it or is it just a default? */
Radek Krejci092e33c2020-10-12 15:33:10 +02001249 if (!(options & LYD_NEW_PATH_UPDATE) && !(node->flags & LYD_DEFAULT)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001250 LOGERR(ctx, LY_EEXIST, "Path \"%s\" already exists", path);
1251 ret = LY_EEXIST;
1252 goto cleanup;
1253 }
1254
1255 /* update the existing node */
1256 ret = lyd_new_path_update(node, value, value_type, &nparent, &nnode);
1257 goto cleanup;
1258 } else if (ret == LY_EINCOMPLETE) {
1259 /* some nodes were found, adjust the iterator to the next segment */
1260 ++path_idx;
1261 } else if (ret == LY_ENOTFOUND) {
1262 /* 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 +01001263 if (lysc_data_parent(p[0].node)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001264 node = parent;
1265 }
1266 } else {
1267 /* error */
1268 goto cleanup;
1269 }
1270 }
1271
1272 /* create all the non-existing nodes in a loop */
Michal Vaskod989ba02020-08-24 10:59:24 +02001273 for ( ; path_idx < LY_ARRAY_COUNT(p); ++path_idx) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001274 cur_parent = node;
1275 schema = p[path_idx].node;
1276
1277 switch (schema->nodetype) {
1278 case LYS_LIST:
1279 if (!(schema->flags & LYS_KEYLESS)) {
Radek Krejci092e33c2020-10-12 15:33:10 +02001280 if ((options & LYD_NEW_PATH_OPAQ) && (p[path_idx].pred_type == LY_PATH_PREDTYPE_NONE)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001281 /* creating opaque list without keys */
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001282 LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), NULL, 0, NULL, LYD_JSON,
1283 LYD_NODEHINT_LIST, NULL, NULL, 0, schema->module->name, strlen(schema->module->name), &node),
Michal Vasko69730152020-10-09 16:30:07 +02001284 cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001285 } else {
1286 assert(p[path_idx].pred_type == LY_PATH_PREDTYPE_LIST);
1287 LY_CHECK_GOTO(ret = lyd_create_list(schema, p[path_idx].predicates, &node), cleanup);
1288 }
1289 break;
1290 }
Radek Krejci0f969882020-08-21 16:56:47 +02001291 /* fallthrough */
Michal Vasko00cbf532020-06-15 13:58:47 +02001292 case LYS_CONTAINER:
1293 case LYS_NOTIF:
1294 case LYS_RPC:
1295 case LYS_ACTION:
1296 LY_CHECK_GOTO(ret = lyd_create_inner(schema, &node), cleanup);
1297 break;
1298 case LYS_LEAFLIST:
Radek Krejci092e33c2020-10-12 15:33:10 +02001299 if ((options & LYD_NEW_PATH_OPAQ) && (p[path_idx].pred_type == LY_PATH_PREDTYPE_NONE)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001300 /* creating opaque leaf-list without value */
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001301 LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), NULL, 0, NULL, LYD_JSON,
1302 LYD_NODEHINT_LEAFLIST, NULL, NULL, 0, schema->module->name, strlen(schema->module->name), &node),
1303 cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001304 } else {
1305 assert(p[path_idx].pred_type == LY_PATH_PREDTYPE_LEAFLIST);
1306 LY_CHECK_GOTO(ret = lyd_create_term2(schema, &p[path_idx].predicates[0].value, &node), cleanup);
1307 }
1308 break;
1309 case LYS_LEAF:
1310 /* make there is some value */
1311 if (!value) {
1312 value = "";
1313 }
1314
1315 r = LY_SUCCESS;
Radek Krejci092e33c2020-10-12 15:33:10 +02001316 if (options & LYD_NEW_PATH_OPAQ) {
Michal Vaskof937cfe2020-08-03 16:07:12 +02001317 r = lys_value_validate(NULL, schema, value, strlen(value));
Michal Vasko00cbf532020-06-15 13:58:47 +02001318 }
1319 if (!r) {
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001320 ret = lyd_create_term(schema, value, strlen(value), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, NULL, &node);
1321 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001322 } else {
1323 /* creating opaque leaf without value */
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001324 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 +02001325 0, NULL, NULL, 0, schema->module->name,
1326 strlen(schema->module->name), &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001327 }
1328 break;
1329 case LYS_ANYDATA:
1330 case LYS_ANYXML:
1331 LY_CHECK_GOTO(ret = lyd_create_any(schema, value, value_type, &node), cleanup);
1332 break;
1333 default:
1334 LOGINT(ctx);
1335 ret = LY_EINT;
1336 goto cleanup;
1337 }
1338
1339 if (cur_parent) {
1340 /* connect to the parent */
1341 lyd_insert_node(cur_parent, NULL, node);
1342 } else if (parent) {
1343 /* connect to top-level siblings */
1344 lyd_insert_node(NULL, &parent, node);
1345 }
1346
1347 /* update remembered nodes */
1348 if (!nparent) {
1349 nparent = node;
1350 }
1351 nnode = node;
1352 }
1353
1354cleanup:
1355 lyxp_expr_free(ctx, exp);
1356 ly_path_free(ctx, p);
1357 if (!ret) {
1358 /* set out params only on success */
1359 if (new_parent) {
1360 *new_parent = nparent;
1361 }
1362 if (new_node) {
1363 *new_node = nnode;
1364 }
1365 }
1366 return ret;
1367}
1368
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001369LY_ERR
1370lyd_new_implicit_r(struct lyd_node *parent, struct lyd_node **first, const struct lysc_node *sparent,
Radek Krejci1deb5be2020-08-26 16:43:36 +02001371 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 +02001372 struct lyd_node **diff)
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001373{
1374 LY_ERR ret;
1375 const struct lysc_node *iter = NULL;
Radek Krejci2b18bf12020-11-06 11:20:20 +01001376 struct lyd_node *node = NULL;
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001377 struct lyd_value **dflts;
1378 LY_ARRAY_COUNT_TYPE u;
1379
1380 assert(first && (parent || sparent || mod));
1381
1382 if (!sparent && parent) {
1383 sparent = parent->schema;
1384 }
1385
1386 while ((iter = lys_getnext(iter, sparent, mod ? mod->compiled : NULL, LYS_GETNEXT_WITHCHOICE))) {
1387 if ((impl_opts & LYD_IMPLICIT_NO_STATE) && (iter->flags & LYS_CONFIG_R)) {
1388 continue;
Michal Vasko44b19a12020-08-07 09:21:30 +02001389 } else if ((impl_opts & LYD_IMPLICIT_NO_CONFIG) && (iter->flags & LYS_CONFIG_W)) {
1390 continue;
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001391 }
1392
1393 switch (iter->nodetype) {
1394 case LYS_CHOICE:
1395 if (((struct lysc_node_choice *)iter)->dflt && !lys_getnext_data(NULL, *first, NULL, iter, NULL)) {
1396 /* create default case data */
1397 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 +02001398 NULL, node_types, node_when, impl_opts, diff));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001399 }
1400 break;
1401 case LYS_CONTAINER:
1402 if (!(iter->flags & LYS_PRESENCE) && lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
1403 /* create default NP container */
1404 LY_CHECK_RET(lyd_create_inner(iter, &node));
Michal Vasko0cadfcb2020-11-04 17:17:05 +01001405 node->flags = LYD_DEFAULT | (node->schema->when ? LYD_WHEN_TRUE : 0);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001406 lyd_insert_node(parent, first, node);
1407
1408 /* cannot be a NP container with when */
1409 assert(!iter->when);
1410
Michal Vaskoe49b6322020-11-05 17:38:36 +01001411 if (diff) {
1412 /* add into diff */
1413 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff));
1414 }
1415
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001416 /* create any default children */
1417 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 +02001418 impl_opts, diff));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001419 }
1420 break;
1421 case LYS_LEAF:
Michal Vasko69730152020-10-09 16:30:07 +02001422 if (!(impl_opts & LYD_IMPLICIT_NO_DEFAULTS) && ((struct lysc_node_leaf *)iter)->dflt &&
1423 lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001424 /* create default leaf */
1425 ret = lyd_create_term2(iter, ((struct lysc_node_leaf *)iter)->dflt, &node);
1426 if (ret == LY_EINCOMPLETE) {
1427 if (node_types) {
1428 /* remember to resolve type */
Radek Krejci3d92e442020-10-12 12:48:13 +02001429 LY_CHECK_RET(ly_set_add(node_types, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001430 }
1431 } else if (ret) {
1432 return ret;
1433 }
Michal Vasko0cadfcb2020-11-04 17:17:05 +01001434 node->flags = LYD_DEFAULT | (node->schema->when ? LYD_WHEN_TRUE : 0);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001435 lyd_insert_node(parent, first, node);
1436
1437 if (iter->when && node_when) {
1438 /* remember to resolve when */
Radek Krejci3d92e442020-10-12 12:48:13 +02001439 LY_CHECK_RET(ly_set_add(node_when, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001440 }
1441 if (diff) {
1442 /* add into diff */
1443 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff));
1444 }
1445 }
1446 break;
1447 case LYS_LEAFLIST:
Michal Vasko69730152020-10-09 16:30:07 +02001448 if (!(impl_opts & LYD_IMPLICIT_NO_DEFAULTS) && ((struct lysc_node_leaflist *)iter)->dflts &&
1449 lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001450 /* create all default leaf-lists */
1451 dflts = ((struct lysc_node_leaflist *)iter)->dflts;
1452 LY_ARRAY_FOR(dflts, u) {
1453 ret = lyd_create_term2(iter, dflts[u], &node);
1454 if (ret == LY_EINCOMPLETE) {
1455 if (node_types) {
1456 /* remember to resolve type */
Radek Krejci3d92e442020-10-12 12:48:13 +02001457 LY_CHECK_RET(ly_set_add(node_types, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001458 }
1459 } else if (ret) {
1460 return ret;
1461 }
Radek Krejcic5b54a02020-11-05 17:13:18 +01001462 node->flags = LYD_DEFAULT | (node->schema->when ? LYD_WHEN_TRUE : 0);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001463 lyd_insert_node(parent, first, node);
1464
1465 if (iter->when && node_when) {
1466 /* remember to resolve when */
Radek Krejci3d92e442020-10-12 12:48:13 +02001467 LY_CHECK_RET(ly_set_add(node_when, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001468 }
1469 if (diff) {
1470 /* add into diff */
1471 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff));
1472 }
1473 }
1474 }
1475 break;
1476 default:
1477 /* without defaults */
1478 break;
1479 }
1480 }
1481
1482 return LY_SUCCESS;
1483}
1484
1485API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001486lyd_new_implicit_tree(struct lyd_node *tree, uint32_t implicit_options, struct lyd_node **diff)
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001487{
Michal Vasko56daf732020-08-10 10:57:18 +02001488 struct lyd_node *node;
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001489 LY_ERR ret = LY_SUCCESS;
1490
1491 LY_CHECK_ARG_RET(NULL, tree, LY_EINVAL);
1492 if (diff) {
1493 *diff = NULL;
1494 }
1495
Michal Vasko56daf732020-08-10 10:57:18 +02001496 LYD_TREE_DFS_BEGIN(tree, node) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001497 /* skip added default nodes */
Michal Vasko69730152020-10-09 16:30:07 +02001498 if (((node->flags & (LYD_DEFAULT | LYD_NEW)) != (LYD_DEFAULT | LYD_NEW)) &&
1499 (node->schema->nodetype & LYD_NODE_INNER)) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001500 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 +02001501 NULL, implicit_options, diff), cleanup);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001502 }
1503
Michal Vasko56daf732020-08-10 10:57:18 +02001504 LYD_TREE_DFS_END(tree, node);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001505 }
1506
1507cleanup:
1508 if (ret && diff) {
1509 lyd_free_all(*diff);
1510 *diff = NULL;
1511 }
1512 return ret;
1513}
1514
1515API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001516lyd_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 +02001517{
1518 const struct lys_module *mod;
1519 struct lyd_node *d = NULL;
1520 uint32_t i = 0;
1521 LY_ERR ret = LY_SUCCESS;
1522
1523 LY_CHECK_ARG_RET(ctx, tree, *tree || ctx, LY_EINVAL);
1524 if (diff) {
1525 *diff = NULL;
1526 }
1527 if (!ctx) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001528 ctx = LYD_CTX(*tree);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001529 }
1530
1531 /* add nodes for each module one-by-one */
1532 while ((mod = ly_ctx_get_module_iter(ctx, &i))) {
1533 if (!mod->implemented) {
1534 continue;
1535 }
1536
1537 LY_CHECK_GOTO(ret = lyd_new_implicit_module(tree, mod, implicit_options, diff ? &d : NULL), cleanup);
1538 if (d) {
1539 /* merge into one diff */
1540 lyd_insert_sibling(*diff, d, diff);
1541
1542 d = NULL;
1543 }
1544 }
1545
1546cleanup:
1547 if (ret && diff) {
1548 lyd_free_all(*diff);
1549 *diff = NULL;
1550 }
1551 return ret;
1552}
1553
1554API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001555lyd_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 +02001556{
1557 struct lyd_node *root, *d = NULL;
1558 LY_ERR ret = LY_SUCCESS;
1559
1560 LY_CHECK_ARG_RET(NULL, tree, module, LY_EINVAL);
1561 if (diff) {
1562 *diff = NULL;
1563 }
1564
1565 /* add all top-level defaults for this module */
1566 LY_CHECK_GOTO(ret = lyd_new_implicit_r(NULL, tree, NULL, module, NULL, NULL, implicit_options, diff), cleanup);
1567
1568 /* process nested nodes */
1569 LY_LIST_FOR(*tree, root) {
1570 /* skip added default nodes */
1571 if ((root->flags & (LYD_DEFAULT | LYD_NEW)) != (LYD_DEFAULT | LYD_NEW)) {
1572 LY_CHECK_GOTO(ret = lyd_new_implicit_tree(root, implicit_options, diff ? &d : NULL), cleanup);
1573
1574 if (d) {
1575 /* merge into one diff */
1576 lyd_insert_sibling(*diff, d, diff);
1577
1578 d = NULL;
1579 }
1580 }
1581 }
1582
1583cleanup:
1584 if (ret && diff) {
1585 lyd_free_all(*diff);
1586 *diff = NULL;
1587 }
1588 return ret;
1589}
1590
Michal Vasko90932a92020-02-12 14:33:03 +01001591struct lyd_node *
Michal Vaskob104f112020-07-17 09:54:54 +02001592lyd_insert_get_next_anchor(const struct lyd_node *first_sibling, const struct lyd_node *new_node)
Michal Vasko90932a92020-02-12 14:33:03 +01001593{
Michal Vaskob104f112020-07-17 09:54:54 +02001594 const struct lysc_node *schema, *sparent;
Michal Vasko90932a92020-02-12 14:33:03 +01001595 struct lyd_node *match = NULL;
Radek Krejci857189e2020-09-01 13:26:36 +02001596 ly_bool found;
Michal Vasko90932a92020-02-12 14:33:03 +01001597
Michal Vaskob104f112020-07-17 09:54:54 +02001598 assert(new_node);
1599
1600 if (!first_sibling || !new_node->schema) {
1601 /* insert at the end, no next anchor */
Michal Vasko90932a92020-02-12 14:33:03 +01001602 return NULL;
1603 }
1604
Michal Vaskob104f112020-07-17 09:54:54 +02001605 if (first_sibling->parent && first_sibling->parent->children_ht) {
1606 /* find the anchor using hashes */
1607 sparent = first_sibling->parent->schema;
1608 schema = lys_getnext(new_node->schema, sparent, NULL, 0);
1609 while (schema) {
1610 /* keep trying to find the first existing instance of the closest following schema sibling,
1611 * otherwise return NULL - inserting at the end */
1612 if (!lyd_find_sibling_schema(first_sibling, schema, &match)) {
1613 break;
1614 }
1615
1616 schema = lys_getnext(schema, sparent, NULL, 0);
1617 }
1618 } else {
1619 /* find the anchor without hashes */
1620 match = (struct lyd_node *)first_sibling;
1621 if (!lysc_data_parent(new_node->schema)) {
1622 /* we are in top-level, skip all the data from preceding modules */
1623 LY_LIST_FOR(match, match) {
1624 if (!match->schema || (strcmp(lyd_owner_module(match)->name, lyd_owner_module(new_node)->name) >= 0)) {
1625 break;
1626 }
1627 }
1628 }
1629
1630 /* get the first schema sibling */
1631 sparent = lysc_data_parent(new_node->schema);
1632 schema = lys_getnext(NULL, sparent, new_node->schema->module->compiled, 0);
1633
1634 found = 0;
1635 LY_LIST_FOR(match, match) {
1636 if (!match->schema || (lyd_owner_module(match) != lyd_owner_module(new_node))) {
1637 /* we have found an opaque node, which must be at the end, so use it OR
1638 * modules do not match, so we must have traversed all the data from new_node module (if any),
1639 * we have found the first node of the next module, that is what we want */
1640 break;
1641 }
1642
1643 /* skip schema nodes until we find the instantiated one */
1644 while (!found) {
1645 if (new_node->schema == schema) {
1646 /* we have found the schema of the new node, continue search to find the first
1647 * data node with a different schema (after our schema) */
1648 found = 1;
1649 break;
1650 }
1651 if (match->schema == schema) {
1652 /* current node (match) is a data node still before the new node, continue search in data */
1653 break;
1654 }
1655 schema = lys_getnext(schema, sparent, new_node->schema->module->compiled, 0);
1656 assert(schema);
1657 }
1658
1659 if (found && (match->schema != new_node->schema)) {
1660 /* find the next node after we have found our node schema data instance */
1661 break;
1662 }
1663 }
Michal Vasko90932a92020-02-12 14:33:03 +01001664 }
1665
1666 return match;
1667}
1668
1669/**
1670 * @brief Insert node after a sibling.
1671 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001672 * Handles inserting into NP containers and key-less lists.
1673 *
Michal Vasko90932a92020-02-12 14:33:03 +01001674 * @param[in] sibling Sibling to insert after.
1675 * @param[in] node Node to insert.
1676 */
1677static void
Michal Vaskof03ed032020-03-04 13:31:44 +01001678lyd_insert_after_node(struct lyd_node *sibling, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001679{
Michal Vasko0249f7c2020-03-05 16:36:40 +01001680 struct lyd_node_inner *par;
1681
Michal Vasko90932a92020-02-12 14:33:03 +01001682 assert(!node->next && (node->prev == node));
1683
1684 node->next = sibling->next;
1685 node->prev = sibling;
1686 sibling->next = node;
1687 if (node->next) {
1688 /* sibling had a succeeding node */
1689 node->next->prev = node;
1690 } else {
1691 /* sibling was last, find first sibling and change its prev */
1692 if (sibling->parent) {
1693 sibling = sibling->parent->child;
1694 } else {
Michal Vaskod989ba02020-08-24 10:59:24 +02001695 for ( ; sibling->prev->next != node; sibling = sibling->prev) {}
Michal Vasko90932a92020-02-12 14:33:03 +01001696 }
1697 sibling->prev = node;
1698 }
1699 node->parent = sibling->parent;
Michal Vasko0249f7c2020-03-05 16:36:40 +01001700
Michal Vasko9f96a052020-03-10 09:41:45 +01001701 for (par = node->parent; par; par = par->parent) {
1702 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
1703 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01001704 par->flags &= ~LYD_DEFAULT;
1705 }
Michal Vaskob104f112020-07-17 09:54:54 +02001706 if (par->schema && (par->schema->nodetype == LYS_LIST) && (par->schema->flags & LYS_KEYLESS)) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001707 /* rehash key-less list */
1708 lyd_hash((struct lyd_node *)par);
1709 }
Michal Vasko0249f7c2020-03-05 16:36:40 +01001710 }
Michal Vasko90932a92020-02-12 14:33:03 +01001711}
1712
1713/**
1714 * @brief Insert node before a sibling.
1715 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001716 * Handles inserting into NP containers and key-less lists.
1717 *
Michal Vasko90932a92020-02-12 14:33:03 +01001718 * @param[in] sibling Sibling to insert before.
1719 * @param[in] node Node to insert.
1720 */
1721static void
Michal Vaskof03ed032020-03-04 13:31:44 +01001722lyd_insert_before_node(struct lyd_node *sibling, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001723{
Michal Vasko0249f7c2020-03-05 16:36:40 +01001724 struct lyd_node_inner *par;
1725
Michal Vasko90932a92020-02-12 14:33:03 +01001726 assert(!node->next && (node->prev == node));
1727
1728 node->next = sibling;
1729 /* covers situation of sibling being first */
1730 node->prev = sibling->prev;
1731 sibling->prev = node;
1732 if (node->prev->next) {
1733 /* sibling had a preceding node */
1734 node->prev->next = node;
1735 } else if (sibling->parent) {
1736 /* sibling was first and we must also change parent child pointer */
1737 sibling->parent->child = node;
1738 }
1739 node->parent = sibling->parent;
Michal Vasko0249f7c2020-03-05 16:36:40 +01001740
Michal Vasko9f96a052020-03-10 09:41:45 +01001741 for (par = node->parent; par; par = par->parent) {
1742 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
1743 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01001744 par->flags &= ~LYD_DEFAULT;
1745 }
Michal Vaskob104f112020-07-17 09:54:54 +02001746 if (par->schema && (par->schema->nodetype == LYS_LIST) && (par->schema->flags & LYS_KEYLESS)) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001747 /* rehash key-less list */
1748 lyd_hash((struct lyd_node *)par);
1749 }
Michal Vasko0249f7c2020-03-05 16:36:40 +01001750 }
Michal Vasko90932a92020-02-12 14:33:03 +01001751}
1752
1753/**
Michal Vaskob104f112020-07-17 09:54:54 +02001754 * @brief Insert node as the first and only child of a parent.
Michal Vasko90932a92020-02-12 14:33:03 +01001755 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001756 * Handles inserting into NP containers and key-less lists.
1757 *
Michal Vasko90932a92020-02-12 14:33:03 +01001758 * @param[in] parent Parent to insert into.
1759 * @param[in] node Node to insert.
1760 */
1761static void
Michal Vaskob104f112020-07-17 09:54:54 +02001762lyd_insert_only_child(struct lyd_node *parent, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001763{
1764 struct lyd_node_inner *par;
1765
Radek Krejcia1c1e542020-09-29 16:06:52 +02001766 assert(parent && !lyd_child(parent) && !node->next && (node->prev == node));
Michal Vasko52927e22020-03-16 17:26:14 +01001767 assert(!parent->schema || (parent->schema->nodetype & LYD_NODE_INNER));
Michal Vasko90932a92020-02-12 14:33:03 +01001768
1769 par = (struct lyd_node_inner *)parent;
1770
Michal Vaskob104f112020-07-17 09:54:54 +02001771 par->child = node;
Michal Vasko90932a92020-02-12 14:33:03 +01001772 node->parent = par;
Michal Vasko0249f7c2020-03-05 16:36:40 +01001773
Michal Vaskod989ba02020-08-24 10:59:24 +02001774 for ( ; par; par = par->parent) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001775 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
1776 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01001777 par->flags &= ~LYD_DEFAULT;
1778 }
Michal Vasko52927e22020-03-16 17:26:14 +01001779 if (par->schema && (par->schema->nodetype == LYS_LIST) && (par->schema->flags & LYS_KEYLESS)) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001780 /* rehash key-less list */
1781 lyd_hash((struct lyd_node *)par);
1782 }
Michal Vasko0249f7c2020-03-05 16:36:40 +01001783 }
Michal Vasko751cb4d2020-07-14 12:25:28 +02001784}
Michal Vasko0249f7c2020-03-05 16:36:40 +01001785
Michal Vasko751cb4d2020-07-14 12:25:28 +02001786/**
1787 * @brief Learn whether a list instance has all the keys.
1788 *
1789 * @param[in] list List instance to check.
1790 * @return non-zero if all the keys were found,
1791 * @return 0 otherwise.
1792 */
1793static int
1794lyd_insert_has_keys(const struct lyd_node *list)
1795{
1796 const struct lyd_node *key;
1797 const struct lysc_node *skey = NULL;
1798
1799 assert(list->schema->nodetype == LYS_LIST);
Radek Krejcia1c1e542020-09-29 16:06:52 +02001800 key = lyd_child(list);
Michal Vasko751cb4d2020-07-14 12:25:28 +02001801 while ((skey = lys_getnext(skey, list->schema, NULL, 0)) && (skey->flags & LYS_KEY)) {
1802 if (!key || (key->schema != skey)) {
1803 /* key missing */
1804 return 0;
1805 }
1806
1807 key = key->next;
1808 }
1809
1810 /* all keys found */
1811 return 1;
Michal Vasko90932a92020-02-12 14:33:03 +01001812}
1813
1814void
Michal Vaskob104f112020-07-17 09:54:54 +02001815lyd_insert_node(struct lyd_node *parent, struct lyd_node **first_sibling_p, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001816{
Michal Vaskob104f112020-07-17 09:54:54 +02001817 struct lyd_node *anchor, *first_sibling;
Michal Vasko90932a92020-02-12 14:33:03 +01001818
Michal Vaskob104f112020-07-17 09:54:54 +02001819 /* inserting list without its keys is not supported */
1820 assert((parent || first_sibling_p) && node && (node->hash || !node->schema));
Michal Vaskof756c942020-11-06 17:21:37 +01001821 assert(!parent || !parent->schema ||
1822 (parent->schema->nodetype & (LYS_CONTAINER | LYS_LIST | LYS_RPC | LYS_ACTION | LYS_NOTIF)));
Michal Vasko9b368d32020-02-14 13:53:31 +01001823
Michal Vaskob104f112020-07-17 09:54:54 +02001824 if (!parent && first_sibling_p && (*first_sibling_p) && (*first_sibling_p)->parent) {
1825 parent = (struct lyd_node *)(*first_sibling_p)->parent;
Michal Vasko9b368d32020-02-14 13:53:31 +01001826 }
Michal Vasko90932a92020-02-12 14:33:03 +01001827
Michal Vaskob104f112020-07-17 09:54:54 +02001828 /* get first sibling */
1829 first_sibling = parent ? ((struct lyd_node_inner *)parent)->child : *first_sibling_p;
Michal Vasko9f96a052020-03-10 09:41:45 +01001830
Michal Vaskob104f112020-07-17 09:54:54 +02001831 /* find the anchor, our next node, so we can insert before it */
1832 anchor = lyd_insert_get_next_anchor(first_sibling, node);
1833 if (anchor) {
1834 lyd_insert_before_node(anchor, node);
Michal Vasko26123192020-11-09 21:02:34 +01001835 if (!parent && (*first_sibling_p == anchor)) {
1836 /* move first sibling */
1837 *first_sibling_p = node;
1838 }
Michal Vaskob104f112020-07-17 09:54:54 +02001839 } else if (first_sibling) {
1840 lyd_insert_after_node(first_sibling->prev, node);
1841 } else if (parent) {
1842 lyd_insert_only_child(parent, node);
Michal Vasko90932a92020-02-12 14:33:03 +01001843 } else {
Michal Vaskob104f112020-07-17 09:54:54 +02001844 *first_sibling_p = node;
1845 }
1846
1847 /* insert into parent HT */
1848 lyd_insert_hash(node);
1849
1850 /* finish hashes for our parent, if needed and possible */
Michal Vasko9e8de2d2020-09-01 08:17:10 +02001851 if (node->schema && (node->schema->flags & LYS_KEY) && parent && lyd_insert_has_keys(parent)) {
Michal Vaskob104f112020-07-17 09:54:54 +02001852 lyd_hash(parent);
1853
1854 /* now we can insert even the list into its parent HT */
1855 lyd_insert_hash(parent);
Michal Vasko90932a92020-02-12 14:33:03 +01001856 }
Michal Vasko90932a92020-02-12 14:33:03 +01001857}
1858
Michal Vaskof03ed032020-03-04 13:31:44 +01001859static LY_ERR
1860lyd_insert_check_schema(const struct lysc_node *parent, const struct lysc_node *schema)
1861{
1862 const struct lysc_node *par2;
1863
1864 assert(schema);
Michal Vasko62ed12d2020-05-21 10:08:25 +02001865 assert(!parent || !(parent->nodetype & (LYS_CASE | LYS_CHOICE)));
Michal Vaskof03ed032020-03-04 13:31:44 +01001866
1867 /* find schema parent */
Michal Vasko62ed12d2020-05-21 10:08:25 +02001868 par2 = lysc_data_parent(schema);
Michal Vaskof03ed032020-03-04 13:31:44 +01001869
1870 if (parent) {
1871 /* inner node */
1872 if (par2 != parent) {
Michal Vaskob104f112020-07-17 09:54:54 +02001873 LOGERR(schema->module->ctx, LY_EINVAL, "Cannot insert, parent of \"%s\" is not \"%s\".", schema->name,
Michal Vasko69730152020-10-09 16:30:07 +02001874 parent->name);
Michal Vaskof03ed032020-03-04 13:31:44 +01001875 return LY_EINVAL;
1876 }
1877 } else {
1878 /* top-level node */
1879 if (par2) {
Radek Krejcif6d14cb2020-07-02 16:11:45 +02001880 LOGERR(schema->module->ctx, LY_EINVAL, "Cannot insert, node \"%s\" is not top-level.", schema->name);
Michal Vaskof03ed032020-03-04 13:31:44 +01001881 return LY_EINVAL;
1882 }
1883 }
1884
1885 return LY_SUCCESS;
1886}
1887
1888API LY_ERR
Michal Vaskob104f112020-07-17 09:54:54 +02001889lyd_insert_child(struct lyd_node *parent, struct lyd_node *node)
Michal Vaskof03ed032020-03-04 13:31:44 +01001890{
1891 struct lyd_node *iter;
1892
Michal Vasko654bc852020-06-23 13:28:06 +02001893 LY_CHECK_ARG_RET(NULL, parent, node, parent->schema->nodetype & LYD_NODE_INNER, LY_EINVAL);
Michal Vaskof03ed032020-03-04 13:31:44 +01001894
1895 LY_CHECK_RET(lyd_insert_check_schema(parent->schema, node->schema));
1896
1897 if (node->schema->flags & LYS_KEY) {
1898 LOGERR(parent->schema->module->ctx, LY_EINVAL, "Cannot insert key \"%s\".", node->schema->name);
1899 return LY_EINVAL;
1900 }
1901
1902 if (node->parent || node->prev->next) {
1903 lyd_unlink_tree(node);
1904 }
1905
1906 while (node) {
1907 iter = node->next;
1908 lyd_unlink_tree(node);
1909 lyd_insert_node(parent, NULL, node);
1910 node = iter;
1911 }
1912 return LY_SUCCESS;
1913}
1914
1915API LY_ERR
Michal Vaskob104f112020-07-17 09:54:54 +02001916lyd_insert_sibling(struct lyd_node *sibling, struct lyd_node *node, struct lyd_node **first)
Michal Vaskob1b5c262020-03-05 14:29:47 +01001917{
1918 struct lyd_node *iter;
1919
Michal Vaskob104f112020-07-17 09:54:54 +02001920 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001921
Michal Vaskob104f112020-07-17 09:54:54 +02001922 if (sibling) {
1923 LY_CHECK_RET(lyd_insert_check_schema(lysc_data_parent(sibling->schema), node->schema));
Michal Vaskob1b5c262020-03-05 14:29:47 +01001924 }
1925
1926 if (node->parent || node->prev->next) {
1927 lyd_unlink_tree(node);
1928 }
1929
1930 while (node) {
Michal Vaskob104f112020-07-17 09:54:54 +02001931 if (node->schema->flags & LYS_KEY) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001932 LOGERR(LYD_CTX(node), LY_EINVAL, "Cannot insert key \"%s\".", node->schema->name);
Michal Vaskob104f112020-07-17 09:54:54 +02001933 return LY_EINVAL;
1934 }
1935
Michal Vaskob1b5c262020-03-05 14:29:47 +01001936 iter = node->next;
1937 lyd_unlink_tree(node);
1938 lyd_insert_node(NULL, &sibling, node);
1939 node = iter;
1940 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01001941
Michal Vaskob104f112020-07-17 09:54:54 +02001942 if (first) {
1943 /* find the first sibling */
1944 *first = sibling;
1945 while ((*first)->prev->next) {
1946 *first = (*first)->prev;
Michal Vasko0249f7c2020-03-05 16:36:40 +01001947 }
1948 }
1949
1950 return LY_SUCCESS;
1951}
1952
Michal Vaskob1b5c262020-03-05 14:29:47 +01001953API LY_ERR
Michal Vaskof03ed032020-03-04 13:31:44 +01001954lyd_insert_before(struct lyd_node *sibling, struct lyd_node *node)
1955{
1956 struct lyd_node *iter;
1957
1958 LY_CHECK_ARG_RET(NULL, sibling, node, LY_EINVAL);
1959
Michal Vasko62ed12d2020-05-21 10:08:25 +02001960 LY_CHECK_RET(lyd_insert_check_schema(lysc_data_parent(sibling->schema), node->schema));
Michal Vaskof03ed032020-03-04 13:31:44 +01001961
Michal Vaskob104f112020-07-17 09:54:54 +02001962 if (!(node->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !(node->schema->flags & LYS_ORDBY_USER)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001963 LOGERR(LYD_CTX(sibling), LY_EINVAL, "Can be used only for user-ordered nodes.");
Michal Vaskof03ed032020-03-04 13:31:44 +01001964 return LY_EINVAL;
1965 }
1966
1967 if (node->parent || node->prev->next) {
1968 lyd_unlink_tree(node);
1969 }
1970
1971 /* insert in reverse order to get the original order */
1972 node = node->prev;
1973 while (node) {
1974 iter = node->prev;
1975 lyd_unlink_tree(node);
1976
1977 lyd_insert_before_node(sibling, node);
Michal Vasko751cb4d2020-07-14 12:25:28 +02001978 lyd_insert_hash(node);
1979
Michal Vaskof03ed032020-03-04 13:31:44 +01001980 /* move the anchor accordingly */
1981 sibling = node;
1982
1983 node = (iter == node) ? NULL : iter;
1984 }
1985 return LY_SUCCESS;
1986}
1987
1988API LY_ERR
1989lyd_insert_after(struct lyd_node *sibling, struct lyd_node *node)
1990{
1991 struct lyd_node *iter;
1992
1993 LY_CHECK_ARG_RET(NULL, sibling, node, LY_EINVAL);
1994
Michal Vasko62ed12d2020-05-21 10:08:25 +02001995 LY_CHECK_RET(lyd_insert_check_schema(lysc_data_parent(sibling->schema), node->schema));
Michal Vaskof03ed032020-03-04 13:31:44 +01001996
Michal Vaskob104f112020-07-17 09:54:54 +02001997 if (!(node->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !(node->schema->flags & LYS_ORDBY_USER)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001998 LOGERR(LYD_CTX(sibling), LY_EINVAL, "Can be used only for user-ordered nodes.");
Michal Vaskof03ed032020-03-04 13:31:44 +01001999 return LY_EINVAL;
2000 }
2001
2002 if (node->parent || node->prev->next) {
2003 lyd_unlink_tree(node);
2004 }
2005
2006 while (node) {
2007 iter = node->next;
2008 lyd_unlink_tree(node);
2009
2010 lyd_insert_after_node(sibling, node);
Michal Vasko751cb4d2020-07-14 12:25:28 +02002011 lyd_insert_hash(node);
2012
Michal Vaskof03ed032020-03-04 13:31:44 +01002013 /* move the anchor accordingly */
2014 sibling = node;
2015
2016 node = iter;
2017 }
2018 return LY_SUCCESS;
2019}
2020
2021API void
2022lyd_unlink_tree(struct lyd_node *node)
2023{
2024 struct lyd_node *iter;
2025
2026 if (!node) {
2027 return;
2028 }
2029
Michal Vaskob104f112020-07-17 09:54:54 +02002030 /* update hashes while still linked into the tree */
2031 lyd_unlink_hash(node);
2032
Michal Vaskof03ed032020-03-04 13:31:44 +01002033 /* unlink from siblings */
2034 if (node->prev->next) {
2035 node->prev->next = node->next;
2036 }
2037 if (node->next) {
2038 node->next->prev = node->prev;
2039 } else {
2040 /* unlinking the last node */
2041 if (node->parent) {
2042 iter = node->parent->child;
2043 } else {
2044 iter = node->prev;
2045 while (iter->prev != node) {
2046 iter = iter->prev;
2047 }
2048 }
2049 /* update the "last" pointer from the first node */
2050 iter->prev = node->prev;
2051 }
2052
2053 /* unlink from parent */
2054 if (node->parent) {
2055 if (node->parent->child == node) {
2056 /* the node is the first child */
2057 node->parent->child = node->next;
2058 }
2059
Michal Vaskoab49dbe2020-07-17 12:32:47 +02002060 /* check for NP container whether its last non-default node is not being unlinked */
Michal Vasko69730152020-10-09 16:30:07 +02002061 if (node->parent->schema && (node->parent->schema->nodetype == LYS_CONTAINER) &&
2062 !(node->parent->flags & LYD_DEFAULT) && !(node->parent->schema->flags & LYS_PRESENCE)) {
Michal Vaskoab49dbe2020-07-17 12:32:47 +02002063 LY_LIST_FOR(node->parent->child, iter) {
2064 if ((iter != node) && !(iter->flags & LYD_DEFAULT)) {
2065 break;
2066 }
2067 }
2068 if (!iter) {
2069 node->parent->flags |= LYD_DEFAULT;
2070 }
2071 }
2072
Michal Vaskof03ed032020-03-04 13:31:44 +01002073 /* check for keyless list and update its hash */
2074 for (iter = (struct lyd_node *)node->parent; iter; iter = (struct lyd_node *)iter->parent) {
Michal Vasko413c7f22020-05-05 12:34:06 +02002075 if (iter->schema && (iter->schema->flags & LYS_KEYLESS)) {
Michal Vaskof03ed032020-03-04 13:31:44 +01002076 lyd_hash(iter);
2077 }
2078 }
2079
2080 node->parent = NULL;
2081 }
2082
2083 node->next = NULL;
2084 node->prev = node;
2085}
2086
Michal Vaskoa5da3292020-08-12 13:10:50 +02002087void
Michal Vasko871a0252020-11-11 18:35:24 +01002088lyd_insert_meta(struct lyd_node *parent, struct lyd_meta *meta, ly_bool clear_dflt)
Radek Krejci1798aae2020-07-14 13:26:06 +02002089{
2090 struct lyd_meta *last, *iter;
2091
2092 assert(parent);
Michal Vaskoa5da3292020-08-12 13:10:50 +02002093
2094 if (!meta) {
2095 return;
2096 }
Radek Krejci1798aae2020-07-14 13:26:06 +02002097
2098 for (iter = meta; iter; iter = iter->next) {
2099 iter->parent = parent;
2100 }
2101
2102 /* insert as the last attribute */
2103 if (parent->meta) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002104 for (last = parent->meta; last->next; last = last->next) {}
Radek Krejci1798aae2020-07-14 13:26:06 +02002105 last->next = meta;
2106 } else {
2107 parent->meta = meta;
2108 }
2109
2110 /* remove default flags from NP containers */
Michal Vasko871a0252020-11-11 18:35:24 +01002111 while (clear_dflt && parent && (parent->schema->nodetype == LYS_CONTAINER) && (parent->flags & LYD_DEFAULT)) {
Radek Krejci1798aae2020-07-14 13:26:06 +02002112 parent->flags &= ~LYD_DEFAULT;
2113 parent = (struct lyd_node *)parent->parent;
2114 }
Radek Krejci1798aae2020-07-14 13:26:06 +02002115}
2116
2117LY_ERR
Michal Vasko9f96a052020-03-10 09:41:45 +01002118lyd_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 +02002119 size_t name_len, const char *value, size_t value_len, ly_bool *dynamic, LY_PREFIX_FORMAT format,
Michal Vasko871a0252020-11-11 18:35:24 +01002120 void *prefix_data, uint32_t hints, ly_bool clear_dflt, ly_bool *incomplete)
Michal Vasko90932a92020-02-12 14:33:03 +01002121{
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002122 LY_ERR rc;
Michal Vasko90932a92020-02-12 14:33:03 +01002123 struct lysc_ext_instance *ant = NULL;
Michal Vasko9f96a052020-03-10 09:41:45 +01002124 struct lyd_meta *mt, *last;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002125 LY_ARRAY_COUNT_TYPE u;
Michal Vasko90932a92020-02-12 14:33:03 +01002126
Michal Vasko9f96a052020-03-10 09:41:45 +01002127 assert((parent || meta) && mod);
Michal Vasko6f4cbb62020-02-28 11:15:47 +01002128
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002129 LY_ARRAY_FOR(mod->compiled->exts, u) {
Michal Vasko69730152020-10-09 16:30:07 +02002130 if ((mod->compiled->exts[u].def->plugin == lyext_plugins_internal[LYEXT_PLUGIN_INTERNAL_ANNOTATION].plugin) &&
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002131 !ly_strncmp(mod->compiled->exts[u].argument, name, name_len)) {
Michal Vasko90932a92020-02-12 14:33:03 +01002132 /* we have the annotation definition */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002133 ant = &mod->compiled->exts[u];
Michal Vasko90932a92020-02-12 14:33:03 +01002134 break;
2135 }
2136 }
2137 if (!ant) {
2138 /* attribute is not defined as a metadata annotation (RFC 7952) */
2139 LOGERR(mod->ctx, LY_EINVAL, "Annotation definition for attribute \"%s:%.*s\" not found.",
2140 mod->name, name_len, name);
2141 return LY_EINVAL;
2142 }
2143
Michal Vasko9f96a052020-03-10 09:41:45 +01002144 mt = calloc(1, sizeof *mt);
2145 LY_CHECK_ERR_RET(!mt, LOGMEM(mod->ctx), LY_EMEM);
2146 mt->parent = parent;
2147 mt->annotation = ant;
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002148 rc = lyd_value_store(mod->ctx, &mt->value, ((struct lyext_metadata *)ant->data)->type, value, value_len, dynamic,
2149 format, prefix_data, hints, parent ? parent->schema : NULL, incomplete, LY_VLOG_NONE, NULL);
2150 LY_CHECK_ERR_RET(rc, free(mt), rc);
Radek Krejci011e4aa2020-09-04 15:22:31 +02002151 rc = lydict_insert(mod->ctx, name, name_len, &mt->name);
2152 LY_CHECK_ERR_RET(rc, free(mt), rc);
Michal Vasko90932a92020-02-12 14:33:03 +01002153
Michal Vasko6f4cbb62020-02-28 11:15:47 +01002154 /* insert as the last attribute */
2155 if (parent) {
Michal Vasko871a0252020-11-11 18:35:24 +01002156 lyd_insert_meta(parent, mt, clear_dflt);
Michal Vasko9f96a052020-03-10 09:41:45 +01002157 } else if (*meta) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002158 for (last = *meta; last->next; last = last->next) {}
Michal Vasko9f96a052020-03-10 09:41:45 +01002159 last->next = mt;
Michal Vasko90932a92020-02-12 14:33:03 +01002160 }
2161
Michal Vasko9f96a052020-03-10 09:41:45 +01002162 if (meta) {
2163 *meta = mt;
Michal Vasko90932a92020-02-12 14:33:03 +01002164 }
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002165 return LY_SUCCESS;
Michal Vasko90932a92020-02-12 14:33:03 +01002166}
2167
Michal Vaskoa5da3292020-08-12 13:10:50 +02002168void
2169lyd_insert_attr(struct lyd_node *parent, struct lyd_attr *attr)
2170{
2171 struct lyd_attr *last, *iter;
2172 struct lyd_node_opaq *opaq;
2173
2174 assert(parent && !parent->schema);
2175
2176 if (!attr) {
2177 return;
2178 }
2179
2180 opaq = (struct lyd_node_opaq *)parent;
2181 for (iter = attr; iter; iter = iter->next) {
2182 iter->parent = opaq;
2183 }
2184
2185 /* insert as the last attribute */
2186 if (opaq->attr) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002187 for (last = opaq->attr; last->next; last = last->next) {}
Michal Vaskoa5da3292020-08-12 13:10:50 +02002188 last->next = attr;
2189 } else {
2190 opaq->attr = attr;
2191 }
2192}
2193
Michal Vasko52927e22020-03-16 17:26:14 +01002194LY_ERR
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002195lyd_create_attr(struct lyd_node *parent, struct lyd_attr **attr, const struct ly_ctx *ctx, const char *name, size_t name_len,
2196 const char *value, size_t value_len, ly_bool *dynamic, LYD_FORMAT format, uint32_t hints,
Radek Krejci0f969882020-08-21 16:56:47 +02002197 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 +01002198{
Radek Krejci011e4aa2020-09-04 15:22:31 +02002199 LY_ERR ret = LY_SUCCESS;
Radek Krejci1798aae2020-07-14 13:26:06 +02002200 struct lyd_attr *at, *last;
Michal Vasko52927e22020-03-16 17:26:14 +01002201
2202 assert(ctx && (parent || attr) && (!parent || !parent->schema));
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002203 assert(name && name_len && format);
Michal Vasko52927e22020-03-16 17:26:14 +01002204
2205 if (!value_len) {
2206 value = "";
2207 }
2208
2209 at = calloc(1, sizeof *at);
Radek Krejcid46e46a2020-09-15 14:22:42 +02002210 LY_CHECK_ERR_RET(!at, LOGMEM(ctx); ly_free_val_prefs(ctx, val_prefs), LY_EMEM);
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002211 at->hints = hints;
Radek Krejcid46e46a2020-09-15 14:22:42 +02002212 at->format = format;
2213 at->val_prefs = val_prefs;
2214
Radek Krejci011e4aa2020-09-04 15:22:31 +02002215 LY_CHECK_GOTO(ret = lydict_insert(ctx, name, name_len, &at->name), finish);
Michal Vasko52927e22020-03-16 17:26:14 +01002216 if (dynamic && *dynamic) {
Radek Krejci011e4aa2020-09-04 15:22:31 +02002217 ret = lydict_insert_zc(ctx, (char *)value, &at->value);
2218 LY_CHECK_GOTO(ret, finish);
Michal Vasko52927e22020-03-16 17:26:14 +01002219 *dynamic = 0;
2220 } else {
Radek Krejci011e4aa2020-09-04 15:22:31 +02002221 LY_CHECK_GOTO(ret = lydict_insert(ctx, value, value_len, &at->value), finish);
Michal Vasko52927e22020-03-16 17:26:14 +01002222 }
2223
Radek Krejci1798aae2020-07-14 13:26:06 +02002224 if (prefix_len) {
Radek Krejci011e4aa2020-09-04 15:22:31 +02002225 LY_CHECK_GOTO(ret = lydict_insert(ctx, prefix, prefix_len, &at->prefix.id), finish);
Radek Krejci1798aae2020-07-14 13:26:06 +02002226 }
2227 if (module_key_len) {
Radek Krejci011e4aa2020-09-04 15:22:31 +02002228 LY_CHECK_GOTO(ret = lydict_insert(ctx, module_key, module_key_len, &at->prefix.module_ns), finish);
Michal Vasko52927e22020-03-16 17:26:14 +01002229 }
2230
2231 /* insert as the last attribute */
2232 if (parent) {
Michal Vaskoa5da3292020-08-12 13:10:50 +02002233 lyd_insert_attr(parent, at);
Michal Vasko52927e22020-03-16 17:26:14 +01002234 } else if (*attr) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002235 for (last = *attr; last->next; last = last->next) {}
Michal Vasko52927e22020-03-16 17:26:14 +01002236 last->next = at;
2237 }
2238
Radek Krejci011e4aa2020-09-04 15:22:31 +02002239finish:
2240 if (ret) {
2241 lyd_free_attr_single(ctx, at);
2242 } else if (attr) {
Michal Vasko52927e22020-03-16 17:26:14 +01002243 *attr = at;
2244 }
2245 return LY_SUCCESS;
2246}
2247
Radek Krejci084289f2019-07-09 17:35:30 +02002248API const struct lyd_node_term *
Michal Vasko004d3152020-06-11 19:59:22 +02002249lyd_target(const struct ly_path *path, const struct lyd_node *tree)
Radek Krejci084289f2019-07-09 17:35:30 +02002250{
Michal Vasko004d3152020-06-11 19:59:22 +02002251 struct lyd_node *target;
Radek Krejci084289f2019-07-09 17:35:30 +02002252
Michal Vasko004d3152020-06-11 19:59:22 +02002253 if (ly_path_eval(path, tree, &target)) {
2254 return NULL;
Radek Krejci084289f2019-07-09 17:35:30 +02002255 }
2256
Michal Vasko004d3152020-06-11 19:59:22 +02002257 return (struct lyd_node_term *)target;
Radek Krejci084289f2019-07-09 17:35:30 +02002258}
2259
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002260API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002261lyd_compare_single(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options)
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002262{
2263 const struct lyd_node *iter1, *iter2;
2264 struct lyd_node_term *term1, *term2;
2265 struct lyd_node_any *any1, *any2;
Michal Vasko52927e22020-03-16 17:26:14 +01002266 struct lyd_node_opaq *opaq1, *opaq2;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002267 size_t len1, len2;
Radek Krejci084289f2019-07-09 17:35:30 +02002268
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002269 if (!node1 || !node2) {
2270 if (node1 == node2) {
2271 return LY_SUCCESS;
2272 } else {
2273 return LY_ENOT;
2274 }
2275 }
2276
Michal Vaskob7be7a82020-08-20 09:09:04 +02002277 if ((LYD_CTX(node1) != LYD_CTX(node2)) || (node1->schema != node2->schema)) {
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002278 return LY_ENOT;
2279 }
2280
2281 if (node1->hash != node2->hash) {
2282 return LY_ENOT;
2283 }
Michal Vasko52927e22020-03-16 17:26:14 +01002284 /* 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 +02002285
Michal Vasko52927e22020-03-16 17:26:14 +01002286 if (!node1->schema) {
2287 opaq1 = (struct lyd_node_opaq *)node1;
2288 opaq2 = (struct lyd_node_opaq *)node2;
Radek Krejci1798aae2020-07-14 13:26:06 +02002289 if ((opaq1->name != opaq2->name) || (opaq1->format != opaq2->format) || (opaq1->prefix.module_ns != opaq2->prefix.module_ns)) {
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002290 return LY_ENOT;
2291 }
Michal Vasko52927e22020-03-16 17:26:14 +01002292 switch (opaq1->format) {
2293 case LYD_XML:
2294 if (lyxml_value_compare(opaq1->value, opaq1->val_prefs, opaq2->value, opaq2->val_prefs)) {
2295 return LY_ENOT;
2296 }
2297 break;
Radek Krejci1798aae2020-07-14 13:26:06 +02002298 case LYD_JSON:
2299 /* prefixes in JSON are unique, so it is not necessary to canonize the values */
2300 if (strcmp(opaq1->value, opaq2->value)) {
2301 return LY_ENOT;
2302 }
2303 break;
Michal Vasko60ea6352020-06-29 13:39:39 +02002304 case LYD_LYB:
Michal Vaskoc8a230d2020-08-14 12:17:10 +02002305 case LYD_UNKNOWN:
Michal Vasko52927e22020-03-16 17:26:14 +01002306 /* not allowed */
Michal Vaskob7be7a82020-08-20 09:09:04 +02002307 LOGINT(LYD_CTX(node1));
Michal Vasko52927e22020-03-16 17:26:14 +01002308 return LY_EINT;
2309 }
2310 if (options & LYD_COMPARE_FULL_RECURSION) {
2311 iter1 = opaq1->child;
2312 iter2 = opaq2->child;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002313 goto all_children_compare;
Michal Vasko52927e22020-03-16 17:26:14 +01002314 }
2315 return LY_SUCCESS;
2316 } else {
2317 switch (node1->schema->nodetype) {
2318 case LYS_LEAF:
2319 case LYS_LEAFLIST:
2320 if (options & LYD_COMPARE_DEFAULTS) {
2321 if ((node1->flags & LYD_DEFAULT) != (node2->flags & LYD_DEFAULT)) {
2322 return LY_ENOT;
2323 }
2324 }
2325
Michal Vasko1a2bf2e2020-06-16 13:07:48 +02002326 term1 = (struct lyd_node_term *)node1;
2327 term2 = (struct lyd_node_term *)node2;
2328 if (term1->value.realtype != term2->value.realtype) {
2329 return LY_ENOT;
2330 }
Michal Vasko52927e22020-03-16 17:26:14 +01002331
Michal Vasko1a2bf2e2020-06-16 13:07:48 +02002332 return term1->value.realtype->plugin->compare(&term1->value, &term2->value);
Michal Vasko52927e22020-03-16 17:26:14 +01002333 case LYS_CONTAINER:
2334 if (options & LYD_COMPARE_DEFAULTS) {
2335 if ((node1->flags & LYD_DEFAULT) != (node2->flags & LYD_DEFAULT)) {
2336 return LY_ENOT;
2337 }
2338 }
2339 if (options & LYD_COMPARE_FULL_RECURSION) {
Michal Vasko22df3f02020-08-24 13:29:22 +02002340 iter1 = ((struct lyd_node_inner *)node1)->child;
2341 iter2 = ((struct lyd_node_inner *)node2)->child;
Michal Vasko52927e22020-03-16 17:26:14 +01002342 goto all_children_compare;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002343 }
2344 return LY_SUCCESS;
Michal Vasko1bf09392020-03-27 12:38:10 +01002345 case LYS_RPC:
Michal Vasko52927e22020-03-16 17:26:14 +01002346 case LYS_ACTION:
2347 if (options & LYD_COMPARE_FULL_RECURSION) {
2348 /* TODO action/RPC
2349 goto all_children_compare;
2350 */
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002351 }
2352 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01002353 case LYS_NOTIF:
2354 if (options & LYD_COMPARE_FULL_RECURSION) {
2355 /* TODO Notification
2356 goto all_children_compare;
2357 */
2358 }
2359 return LY_SUCCESS;
2360 case LYS_LIST:
Michal Vasko22df3f02020-08-24 13:29:22 +02002361 iter1 = ((struct lyd_node_inner *)node1)->child;
2362 iter2 = ((struct lyd_node_inner *)node2)->child;
Michal Vasko52927e22020-03-16 17:26:14 +01002363
2364 if (!(node1->schema->flags & LYS_KEYLESS) && !(options & LYD_COMPARE_FULL_RECURSION)) {
2365 /* lists with keys, their equivalence is based on their keys */
Michal Vasko22df3f02020-08-24 13:29:22 +02002366 for (struct lysc_node *key = ((struct lysc_node_list *)node1->schema)->child;
Michal Vaskoc57d9a92020-06-23 13:28:27 +02002367 key && (key->flags & LYS_KEY);
Michal Vasko52927e22020-03-16 17:26:14 +01002368 key = key->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02002369 if (lyd_compare_single(iter1, iter2, options)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002370 return LY_ENOT;
2371 }
2372 iter1 = iter1->next;
2373 iter2 = iter2->next;
2374 }
2375 } else {
2376 /* lists without keys, their equivalence is based on equivalence of all the children (both direct and indirect) */
2377
Radek Krejci0f969882020-08-21 16:56:47 +02002378all_children_compare:
Michal Vasko52927e22020-03-16 17:26:14 +01002379 if (!iter1 && !iter2) {
2380 /* no children, nothing to compare */
2381 return LY_SUCCESS;
2382 }
2383
Michal Vaskod989ba02020-08-24 10:59:24 +02002384 for ( ; iter1 && iter2; iter1 = iter1->next, iter2 = iter2->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02002385 if (lyd_compare_single(iter1, iter2, options | LYD_COMPARE_FULL_RECURSION)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002386 return LY_ENOT;
2387 }
2388 }
2389 if (iter1 || iter2) {
2390 return LY_ENOT;
2391 }
2392 }
2393 return LY_SUCCESS;
2394 case LYS_ANYXML:
2395 case LYS_ANYDATA:
Michal Vasko22df3f02020-08-24 13:29:22 +02002396 any1 = (struct lyd_node_any *)node1;
2397 any2 = (struct lyd_node_any *)node2;
Michal Vasko52927e22020-03-16 17:26:14 +01002398
2399 if (any1->value_type != any2->value_type) {
2400 return LY_ENOT;
2401 }
2402 switch (any1->value_type) {
2403 case LYD_ANYDATA_DATATREE:
2404 iter1 = any1->value.tree;
2405 iter2 = any2->value.tree;
2406 goto all_children_compare;
2407 case LYD_ANYDATA_STRING:
2408 case LYD_ANYDATA_XML:
2409 case LYD_ANYDATA_JSON:
2410 len1 = strlen(any1->value.str);
2411 len2 = strlen(any2->value.str);
Michal Vasko69730152020-10-09 16:30:07 +02002412 if ((len1 != len2) || strcmp(any1->value.str, any2->value.str)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002413 return LY_ENOT;
2414 }
2415 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01002416 case LYD_ANYDATA_LYB:
Michal Vasko60ea6352020-06-29 13:39:39 +02002417 len1 = lyd_lyb_data_length(any1->value.mem);
2418 len2 = lyd_lyb_data_length(any2->value.mem);
Michal Vasko69730152020-10-09 16:30:07 +02002419 if ((len1 != len2) || memcmp(any1->value.mem, any2->value.mem, len1)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002420 return LY_ENOT;
2421 }
2422 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01002423 }
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002424 }
2425 }
2426
Michal Vaskob7be7a82020-08-20 09:09:04 +02002427 LOGINT(LYD_CTX(node1));
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002428 return LY_EINT;
2429}
Radek Krejci22ebdba2019-07-25 13:59:43 +02002430
Michal Vasko21725742020-06-29 11:49:25 +02002431API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002432lyd_compare_siblings(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options)
Michal Vasko8f359bf2020-07-28 10:41:15 +02002433{
Michal Vaskod989ba02020-08-24 10:59:24 +02002434 for ( ; node1 && node2; node1 = node1->next, node2 = node2->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02002435 LY_CHECK_RET(lyd_compare_single(node1, node2, options));
2436 }
2437
Michal Vasko11a81432020-07-28 16:31:29 +02002438 if (node1 == node2) {
2439 return LY_SUCCESS;
Michal Vasko8f359bf2020-07-28 10:41:15 +02002440 }
Michal Vasko11a81432020-07-28 16:31:29 +02002441 return LY_ENOT;
Michal Vasko8f359bf2020-07-28 10:41:15 +02002442}
2443
2444API LY_ERR
Michal Vasko21725742020-06-29 11:49:25 +02002445lyd_compare_meta(const struct lyd_meta *meta1, const struct lyd_meta *meta2)
2446{
2447 if (!meta1 || !meta2) {
2448 if (meta1 == meta2) {
2449 return LY_SUCCESS;
2450 } else {
2451 return LY_ENOT;
2452 }
2453 }
2454
Michal Vaskoa8083062020-11-06 17:22:10 +01002455 if ((meta1->annotation->module->ctx != meta2->annotation->module->ctx) || (meta1->annotation != meta2->annotation)) {
Michal Vasko21725742020-06-29 11:49:25 +02002456 return LY_ENOT;
2457 }
2458
2459 if (meta1->value.realtype != meta2->value.realtype) {
2460 return LY_ENOT;
2461 }
2462
2463 return meta1->value.realtype->plugin->compare(&meta1->value, &meta2->value);
2464}
2465
Radek Krejci22ebdba2019-07-25 13:59:43 +02002466/**
Michal Vasko52927e22020-03-16 17:26:14 +01002467 * @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 +02002468 *
2469 * 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 +02002470 *
2471 * @param[in] node Original node to duplicate
2472 * @param[in] parent Parent to insert into, NULL for top-level sibling.
2473 * @param[in,out] first First sibling, NULL if no top-level sibling exist yet. Can be also NULL if @p parent is set.
2474 * @param[in] options Bitmask of options flags, see @ref dupoptions.
2475 * @param[out] dup_p Pointer where the created duplicated node is placed (besides connecting it int @p parent / @p first sibling).
2476 * @return LY_ERR value
Radek Krejci22ebdba2019-07-25 13:59:43 +02002477 */
Michal Vasko52927e22020-03-16 17:26:14 +01002478static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002479lyd_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 +02002480 struct lyd_node **dup_p)
Radek Krejci22ebdba2019-07-25 13:59:43 +02002481{
Michal Vasko52927e22020-03-16 17:26:14 +01002482 LY_ERR ret;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002483 struct lyd_node *dup = NULL;
Michal Vasko61551fa2020-07-09 15:45:45 +02002484 struct lyd_meta *meta;
2485 struct lyd_node_any *any;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002486 LY_ARRAY_COUNT_TYPE u;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002487
Michal Vasko52927e22020-03-16 17:26:14 +01002488 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002489
Michal Vasko52927e22020-03-16 17:26:14 +01002490 if (!node->schema) {
2491 dup = calloc(1, sizeof(struct lyd_node_opaq));
2492 } else {
2493 switch (node->schema->nodetype) {
Michal Vasko1bf09392020-03-27 12:38:10 +01002494 case LYS_RPC:
Michal Vasko52927e22020-03-16 17:26:14 +01002495 case LYS_ACTION:
2496 case LYS_NOTIF:
2497 case LYS_CONTAINER:
2498 case LYS_LIST:
2499 dup = calloc(1, sizeof(struct lyd_node_inner));
2500 break;
2501 case LYS_LEAF:
2502 case LYS_LEAFLIST:
2503 dup = calloc(1, sizeof(struct lyd_node_term));
2504 break;
2505 case LYS_ANYDATA:
2506 case LYS_ANYXML:
2507 dup = calloc(1, sizeof(struct lyd_node_any));
2508 break;
2509 default:
Michal Vaskob7be7a82020-08-20 09:09:04 +02002510 LOGINT(LYD_CTX(node));
Michal Vasko52927e22020-03-16 17:26:14 +01002511 ret = LY_EINT;
2512 goto error;
2513 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02002514 }
Michal Vaskob7be7a82020-08-20 09:09:04 +02002515 LY_CHECK_ERR_GOTO(!dup, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002516
Michal Vaskof6df0a02020-06-16 13:08:34 +02002517 if (options & LYD_DUP_WITH_FLAGS) {
2518 dup->flags = node->flags;
2519 } else {
2520 dup->flags = (node->flags & LYD_DEFAULT) | LYD_NEW;
2521 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02002522 dup->schema = node->schema;
Michal Vasko52927e22020-03-16 17:26:14 +01002523 dup->prev = dup;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002524
Michal Vasko25a32822020-07-09 15:48:22 +02002525 /* duplicate metadata */
2526 if (!(options & LYD_DUP_NO_META)) {
2527 LY_LIST_FOR(node->meta, meta) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002528 LY_CHECK_GOTO(ret = lyd_dup_meta_single(meta, dup, NULL), error);
Michal Vasko25a32822020-07-09 15:48:22 +02002529 }
2530 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02002531
2532 /* nodetype-specific work */
Michal Vasko52927e22020-03-16 17:26:14 +01002533 if (!dup->schema) {
2534 struct lyd_node_opaq *opaq = (struct lyd_node_opaq *)dup;
2535 struct lyd_node_opaq *orig = (struct lyd_node_opaq *)node;
2536 struct lyd_node *child;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002537
2538 if (options & LYD_DUP_RECURSIVE) {
2539 /* duplicate all the children */
2540 LY_LIST_FOR(orig->child, child) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002541 LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, NULL, options, NULL), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002542 }
2543 }
Radek Krejci011e4aa2020-09-04 15:22:31 +02002544 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->name, 0, &opaq->name), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002545 opaq->format = orig->format;
Radek Krejci1798aae2020-07-14 13:26:06 +02002546 if (orig->prefix.id) {
Radek Krejci011e4aa2020-09-04 15:22:31 +02002547 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->prefix.id, 0, &opaq->prefix.id), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002548 }
Radek Krejci011e4aa2020-09-04 15:22:31 +02002549 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 +01002550 if (orig->val_prefs) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002551 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 +01002552 LY_ARRAY_FOR(orig->val_prefs, u) {
Radek Krejci011e4aa2020-09-04 15:22:31 +02002553 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->val_prefs[u].id, 0, &opaq->val_prefs[u].id), error);
2554 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 +01002555 LY_ARRAY_INCREMENT(opaq->val_prefs);
2556 }
2557 }
Radek Krejci011e4aa2020-09-04 15:22:31 +02002558 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->value, 0, &opaq->value), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002559 opaq->ctx = orig->ctx;
2560 } else if (dup->schema->nodetype & LYD_NODE_TERM) {
2561 struct lyd_node_term *term = (struct lyd_node_term *)dup;
2562 struct lyd_node_term *orig = (struct lyd_node_term *)node;
2563
2564 term->hash = orig->hash;
Michal Vaskob7be7a82020-08-20 09:09:04 +02002565 LY_CHECK_ERR_GOTO(orig->value.realtype->plugin->duplicate(LYD_CTX(node), &orig->value, &term->value),
Michal Vasko69730152020-10-09 16:30:07 +02002566 LOGERR(LYD_CTX(node), LY_EINT, "Value duplication failed."); ret = LY_EINT, error);
Michal Vasko52927e22020-03-16 17:26:14 +01002567 } else if (dup->schema->nodetype & LYD_NODE_INNER) {
2568 struct lyd_node_inner *orig = (struct lyd_node_inner *)node;
2569 struct lyd_node *child;
2570
2571 if (options & LYD_DUP_RECURSIVE) {
2572 /* duplicate all the children */
2573 LY_LIST_FOR(orig->child, child) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002574 LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, NULL, options, NULL), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002575 }
Michal Vasko69730152020-10-09 16:30:07 +02002576 } else if ((dup->schema->nodetype == LYS_LIST) && !(dup->schema->flags & LYS_KEYLESS)) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02002577 /* always duplicate keys of a list */
Radek Krejci22ebdba2019-07-25 13:59:43 +02002578 child = orig->child;
Michal Vasko52927e22020-03-16 17:26:14 +01002579 for (struct lysc_node *key = ((struct lysc_node_list *)dup->schema)->child;
Michal Vaskoc57d9a92020-06-23 13:28:27 +02002580 key && (key->flags & LYS_KEY);
Radek Krejci0fe9b512019-07-26 17:51:05 +02002581 key = key->next) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02002582 if (!child) {
2583 /* possibly not keys are present in filtered tree */
2584 break;
Radek Krejci0fe9b512019-07-26 17:51:05 +02002585 } else if (child->schema != key) {
2586 /* possibly not all keys are present in filtered tree,
2587 * but there can be also some non-key nodes */
2588 continue;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002589 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002590 LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, NULL, options, NULL), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002591 child = child->next;
2592 }
2593 }
2594 lyd_hash(dup);
2595 } else if (dup->schema->nodetype & LYD_NODE_ANY) {
Michal Vasko61551fa2020-07-09 15:45:45 +02002596 dup->hash = node->hash;
2597 any = (struct lyd_node_any *)node;
2598 LY_CHECK_GOTO(ret = lyd_any_copy_value(dup, &any->value, any->value_type), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002599 }
2600
Michal Vasko52927e22020-03-16 17:26:14 +01002601 /* insert */
2602 lyd_insert_node(parent, first, dup);
Michal Vasko52927e22020-03-16 17:26:14 +01002603
2604 if (dup_p) {
2605 *dup_p = dup;
2606 }
2607 return LY_SUCCESS;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002608
2609error:
Michal Vasko52927e22020-03-16 17:26:14 +01002610 lyd_free_tree(dup);
2611 return ret;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002612}
2613
Michal Vasko3a41dff2020-07-15 14:30:28 +02002614static LY_ERR
2615lyd_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 +02002616 struct lyd_node_inner **local_parent)
Radek Krejci22ebdba2019-07-25 13:59:43 +02002617{
Michal Vasko3a41dff2020-07-15 14:30:28 +02002618 const struct lyd_node_inner *orig_parent, *iter;
Radek Krejci857189e2020-09-01 13:26:36 +02002619 ly_bool repeat = 1;
Michal Vasko3a41dff2020-07-15 14:30:28 +02002620
2621 *dup_parent = NULL;
2622 *local_parent = NULL;
2623
2624 for (orig_parent = node->parent; repeat && orig_parent; orig_parent = orig_parent->parent) {
2625 if (parent && (parent->schema == orig_parent->schema)) {
2626 /* stop creating parents, connect what we have into the provided parent */
2627 iter = parent;
2628 repeat = 0;
2629 } else {
2630 iter = NULL;
2631 LY_CHECK_RET(lyd_dup_r((struct lyd_node *)orig_parent, NULL, (struct lyd_node **)&iter, 0,
Radek Krejci0f969882020-08-21 16:56:47 +02002632 (struct lyd_node **)&iter));
Michal Vasko3a41dff2020-07-15 14:30:28 +02002633 }
2634 if (!*local_parent) {
2635 *local_parent = (struct lyd_node_inner *)iter;
2636 }
2637 if (iter->child) {
2638 /* 1) list - add after keys
2639 * 2) provided parent with some children */
2640 iter->child->prev->next = *dup_parent;
2641 if (*dup_parent) {
2642 (*dup_parent)->prev = iter->child->prev;
2643 iter->child->prev = *dup_parent;
2644 }
2645 } else {
2646 ((struct lyd_node_inner *)iter)->child = *dup_parent;
2647 }
2648 if (*dup_parent) {
2649 (*dup_parent)->parent = (struct lyd_node_inner *)iter;
2650 }
2651 *dup_parent = (struct lyd_node *)iter;
2652 }
2653
2654 if (repeat && parent) {
2655 /* given parent and created parents chain actually do not interconnect */
Michal Vaskob7be7a82020-08-20 09:09:04 +02002656 LOGERR(LYD_CTX(node), LY_EINVAL,
Michal Vasko69730152020-10-09 16:30:07 +02002657 "Invalid argument parent (%s()) - does not interconnect with the created node's parents chain.", __func__);
Michal Vasko3a41dff2020-07-15 14:30:28 +02002658 return LY_EINVAL;
2659 }
2660
2661 return LY_SUCCESS;
2662}
2663
2664static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02002665lyd_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 +02002666{
2667 LY_ERR rc;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002668 const struct lyd_node *orig; /* original node to be duplicated */
2669 struct lyd_node *first = NULL; /* the first duplicated node, this is returned */
Radek Krejci22ebdba2019-07-25 13:59:43 +02002670 struct lyd_node *top = NULL; /* the most higher created node */
2671 struct lyd_node_inner *local_parent = NULL; /* the direct parent node for the duplicated node(s) */
Radek Krejci22ebdba2019-07-25 13:59:43 +02002672
Michal Vasko3a41dff2020-07-15 14:30:28 +02002673 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002674
2675 if (options & LYD_DUP_WITH_PARENTS) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002676 LY_CHECK_GOTO(rc = lyd_dup_get_local_parent(node, parent, &top, &local_parent), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002677 } else {
2678 local_parent = parent;
2679 }
2680
Radek Krejci22ebdba2019-07-25 13:59:43 +02002681 LY_LIST_FOR(node, orig) {
Michal Vasko52927e22020-03-16 17:26:14 +01002682 /* if there is no local parent, it will be inserted into first */
Michal Vasko3a41dff2020-07-15 14:30:28 +02002683 LY_CHECK_GOTO(rc = lyd_dup_r(orig, (struct lyd_node *)local_parent, &first, options, first ? NULL : &first), error);
2684 if (nosiblings) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02002685 break;
2686 }
2687 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002688
2689 /* rehash if needed */
Michal Vaskod989ba02020-08-24 10:59:24 +02002690 for ( ; local_parent; local_parent = local_parent->parent) {
Michal Vasko69730152020-10-09 16:30:07 +02002691 if ((local_parent->schema->nodetype == LYS_LIST) && (local_parent->schema->flags & LYS_KEYLESS)) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002692 lyd_hash((struct lyd_node *)local_parent);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002693 }
2694 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002695
2696 if (dup) {
2697 *dup = first;
2698 }
2699 return LY_SUCCESS;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002700
2701error:
2702 if (top) {
2703 lyd_free_tree(top);
2704 } else {
Michal Vaskof03ed032020-03-04 13:31:44 +01002705 lyd_free_siblings(first);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002706 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002707 return rc;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002708}
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002709
Michal Vasko3a41dff2020-07-15 14:30:28 +02002710API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002711lyd_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 +02002712{
2713 return lyd_dup(node, parent, options, 1, dup);
2714}
2715
2716API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002717lyd_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 +02002718{
2719 return lyd_dup(node, parent, options, 0, dup);
2720}
2721
2722API LY_ERR
2723lyd_dup_meta_single(const struct lyd_meta *meta, struct lyd_node *node, struct lyd_meta **dup)
Michal Vasko25a32822020-07-09 15:48:22 +02002724{
Radek Krejci011e4aa2020-09-04 15:22:31 +02002725 LY_ERR ret = LY_SUCCESS;
Michal Vasko25a32822020-07-09 15:48:22 +02002726 struct lyd_meta *mt, *last;
2727
Michal Vasko3a41dff2020-07-15 14:30:28 +02002728 LY_CHECK_ARG_RET(NULL, meta, node, LY_EINVAL);
Michal Vasko25a32822020-07-09 15:48:22 +02002729
2730 /* create a copy */
2731 mt = calloc(1, sizeof *mt);
Michal Vaskob7be7a82020-08-20 09:09:04 +02002732 LY_CHECK_ERR_RET(!mt, LOGMEM(LYD_CTX(node)), LY_EMEM);
Michal Vasko25a32822020-07-09 15:48:22 +02002733 mt->annotation = meta->annotation;
Michal Vaskob7be7a82020-08-20 09:09:04 +02002734 ret = meta->value.realtype->plugin->duplicate(LYD_CTX(node), &meta->value, &mt->value);
Radek Krejci011e4aa2020-09-04 15:22:31 +02002735 LY_CHECK_ERR_GOTO(ret, LOGERR(LYD_CTX(node), LY_EINT, "Value duplication failed."), finish);
2736 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), meta->name, 0, &mt->name), finish);
Michal Vasko25a32822020-07-09 15:48:22 +02002737
2738 /* insert as the last attribute */
Radek Krejci011e4aa2020-09-04 15:22:31 +02002739 mt->parent = node;
Michal Vasko25a32822020-07-09 15:48:22 +02002740 if (node->meta) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002741 for (last = node->meta; last->next; last = last->next) {}
Michal Vasko25a32822020-07-09 15:48:22 +02002742 last->next = mt;
2743 } else {
2744 node->meta = mt;
2745 }
2746
Radek Krejci011e4aa2020-09-04 15:22:31 +02002747finish:
2748 if (ret) {
2749 lyd_free_meta_single(mt);
2750 } else if (dup) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002751 *dup = mt;
2752 }
2753 return LY_SUCCESS;
Michal Vasko25a32822020-07-09 15:48:22 +02002754}
2755
Michal Vasko4490d312020-06-16 13:08:55 +02002756/**
2757 * @brief Merge a source sibling into target siblings.
2758 *
2759 * @param[in,out] first_trg First target sibling, is updated if top-level.
2760 * @param[in] parent_trg Target parent.
2761 * @param[in,out] sibling_src Source sibling to merge, set to NULL if spent.
2762 * @param[in] options Merge options.
2763 * @return LY_ERR value.
2764 */
2765static LY_ERR
2766lyd_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 +02002767 uint16_t options)
Michal Vasko4490d312020-06-16 13:08:55 +02002768{
2769 LY_ERR ret;
2770 const struct lyd_node *child_src, *tmp, *sibling_src;
Michal Vasko56daf732020-08-10 10:57:18 +02002771 struct lyd_node *match_trg, *dup_src, *elem;
Michal Vasko4490d312020-06-16 13:08:55 +02002772 struct lysc_type *type;
Michal Vasko4490d312020-06-16 13:08:55 +02002773
2774 sibling_src = *sibling_src_p;
2775 if (sibling_src->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) {
2776 /* try to find the exact instance */
2777 ret = lyd_find_sibling_first(*first_trg, sibling_src, &match_trg);
2778 } else {
2779 /* try to simply find the node, there cannot be more instances */
2780 ret = lyd_find_sibling_val(*first_trg, sibling_src->schema, NULL, 0, &match_trg);
2781 }
2782
2783 if (!ret) {
2784 /* node found, make sure even value matches for all node types */
Michal Vasko8f359bf2020-07-28 10:41:15 +02002785 if ((match_trg->schema->nodetype == LYS_LEAF) && lyd_compare_single(sibling_src, match_trg, LYD_COMPARE_DEFAULTS)) {
Michal Vasko4490d312020-06-16 13:08:55 +02002786 /* since they are different, they cannot both be default */
2787 assert(!(sibling_src->flags & LYD_DEFAULT) || !(match_trg->flags & LYD_DEFAULT));
2788
Michal Vasko3a41dff2020-07-15 14:30:28 +02002789 /* update value (or only LYD_DEFAULT flag) only if flag set or the source node is not default */
2790 if ((options & LYD_MERGE_DEFAULTS) || !(sibling_src->flags & LYD_DEFAULT)) {
Michal Vasko4490d312020-06-16 13:08:55 +02002791 type = ((struct lysc_node_leaf *)match_trg->schema)->type;
Michal Vaskob7be7a82020-08-20 09:09:04 +02002792 type->plugin->free(LYD_CTX(match_trg), &((struct lyd_node_term *)match_trg)->value);
2793 LY_CHECK_RET(type->plugin->duplicate(LYD_CTX(match_trg), &((struct lyd_node_term *)sibling_src)->value,
Michal Vasko69730152020-10-09 16:30:07 +02002794 &((struct lyd_node_term *)match_trg)->value));
Michal Vasko4490d312020-06-16 13:08:55 +02002795
2796 /* copy flags and add LYD_NEW */
2797 match_trg->flags = sibling_src->flags | LYD_NEW;
2798 }
Michal Vasko8f359bf2020-07-28 10:41:15 +02002799 } else if ((match_trg->schema->nodetype & LYS_ANYDATA) && lyd_compare_single(sibling_src, match_trg, 0)) {
Michal Vasko4c583e82020-07-17 12:16:14 +02002800 /* update value */
2801 LY_CHECK_RET(lyd_any_copy_value(match_trg, &((struct lyd_node_any *)sibling_src)->value,
Radek Krejci0f969882020-08-21 16:56:47 +02002802 ((struct lyd_node_any *)sibling_src)->value_type));
Michal Vasko4490d312020-06-16 13:08:55 +02002803
2804 /* copy flags and add LYD_NEW */
2805 match_trg->flags = sibling_src->flags | LYD_NEW;
Michal Vasko4490d312020-06-16 13:08:55 +02002806 } else {
2807 /* check descendants, recursively */
Radek Krejcia1c1e542020-09-29 16:06:52 +02002808 LY_LIST_FOR_SAFE(lyd_child_no_keys(sibling_src), tmp, child_src) {
Michal Vasko4490d312020-06-16 13:08:55 +02002809 LY_CHECK_RET(lyd_merge_sibling_r(lyd_node_children_p(match_trg), match_trg, &child_src, options));
2810 }
2811 }
2812 } else {
2813 /* node not found, merge it */
2814 if (options & LYD_MERGE_DESTRUCT) {
2815 dup_src = (struct lyd_node *)sibling_src;
2816 lyd_unlink_tree(dup_src);
2817 /* spend it */
2818 *sibling_src_p = NULL;
2819 } else {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002820 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 +02002821 }
2822
2823 /* set LYD_NEW for all the new nodes, required for validation */
Michal Vasko56daf732020-08-10 10:57:18 +02002824 LYD_TREE_DFS_BEGIN(dup_src, elem) {
Michal Vasko4490d312020-06-16 13:08:55 +02002825 elem->flags |= LYD_NEW;
Michal Vasko56daf732020-08-10 10:57:18 +02002826 LYD_TREE_DFS_END(dup_src, elem);
Michal Vasko4490d312020-06-16 13:08:55 +02002827 }
2828
2829 lyd_insert_node(parent_trg, first_trg, dup_src);
2830 }
2831
2832 return LY_SUCCESS;
2833}
2834
Michal Vasko3a41dff2020-07-15 14:30:28 +02002835static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02002836lyd_merge(struct lyd_node **target, const struct lyd_node *source, uint16_t options, ly_bool nosiblings)
Michal Vasko4490d312020-06-16 13:08:55 +02002837{
2838 const struct lyd_node *sibling_src, *tmp;
Radek Krejci857189e2020-09-01 13:26:36 +02002839 ly_bool first;
Michal Vasko4490d312020-06-16 13:08:55 +02002840
2841 LY_CHECK_ARG_RET(NULL, target, LY_EINVAL);
2842
2843 if (!source) {
2844 /* nothing to merge */
2845 return LY_SUCCESS;
2846 }
2847
2848 if (lysc_data_parent((*target)->schema) || lysc_data_parent(source->schema)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002849 LOGERR(LYD_CTX(source), LY_EINVAL, "Invalid arguments - can merge only 2 top-level subtrees (%s()).", __func__);
Michal Vasko4490d312020-06-16 13:08:55 +02002850 return LY_EINVAL;
2851 }
2852
2853 LY_LIST_FOR_SAFE(source, tmp, sibling_src) {
Radek Krejci857189e2020-09-01 13:26:36 +02002854 first = (sibling_src == source) ? 1 : 0;
Michal Vasko4490d312020-06-16 13:08:55 +02002855 LY_CHECK_RET(lyd_merge_sibling_r(target, NULL, &sibling_src, options));
2856 if (first && !sibling_src) {
2857 /* source was spent (unlinked), move to the next node */
2858 source = tmp;
2859 }
2860
Michal Vasko3a41dff2020-07-15 14:30:28 +02002861 if (nosiblings) {
Michal Vasko4490d312020-06-16 13:08:55 +02002862 break;
2863 }
2864 }
2865
2866 if (options & LYD_MERGE_DESTRUCT) {
2867 /* free any leftover source data that were not merged */
2868 lyd_free_siblings((struct lyd_node *)source);
2869 }
2870
2871 return LY_SUCCESS;
2872}
2873
Michal Vasko3a41dff2020-07-15 14:30:28 +02002874API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002875lyd_merge_tree(struct lyd_node **target, const struct lyd_node *source, uint16_t options)
Michal Vasko3a41dff2020-07-15 14:30:28 +02002876{
2877 return lyd_merge(target, source, options, 1);
2878}
2879
2880API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002881lyd_merge_siblings(struct lyd_node **target, const struct lyd_node *source, uint16_t options)
Michal Vasko3a41dff2020-07-15 14:30:28 +02002882{
2883 return lyd_merge(target, source, options, 0);
2884}
2885
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002886static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02002887lyd_path_str_enlarge(char **buffer, size_t *buflen, size_t reqlen, ly_bool is_static)
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002888{
Michal Vasko14654712020-02-06 08:35:21 +01002889 /* ending \0 */
2890 ++reqlen;
2891
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002892 if (reqlen > *buflen) {
2893 if (is_static) {
2894 return LY_EINCOMPLETE;
2895 }
2896
2897 *buffer = ly_realloc(*buffer, reqlen * sizeof **buffer);
2898 if (!*buffer) {
2899 return LY_EMEM;
2900 }
2901
2902 *buflen = reqlen;
2903 }
2904
2905 return LY_SUCCESS;
2906}
2907
Michal Vaskod59035b2020-07-08 12:00:06 +02002908LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02002909lyd_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 +02002910{
2911 const struct lyd_node *key;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002912 size_t len;
2913 const char *val;
2914 char quot;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002915
Radek Krejcia1c1e542020-09-29 16:06:52 +02002916 for (key = lyd_child(node); key && (key->schema->flags & LYS_KEY); key = key->next) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002917 val = LYD_CANON_VALUE(key);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002918 len = 1 + strlen(key->schema->name) + 2 + strlen(val) + 2;
Michal Vaskoba99a3e2020-08-18 15:50:05 +02002919 LY_CHECK_RET(lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static));
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002920
2921 quot = '\'';
2922 if (strchr(val, '\'')) {
2923 quot = '"';
2924 }
2925 *bufused += sprintf(*buffer + *bufused, "[%s=%c%s%c]", key->schema->name, quot, val, quot);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002926 }
2927
2928 return LY_SUCCESS;
2929}
2930
2931/**
2932 * @brief Append leaf-list value predicate to path.
2933 *
2934 * @param[in] node Node to print.
2935 * @param[in,out] buffer Buffer to print to.
2936 * @param[in,out] buflen Current buffer length.
2937 * @param[in,out] bufused Current number of characters used in @p buffer.
2938 * @param[in] is_static Whether buffer is static or can be reallocated.
2939 * @return LY_ERR
2940 */
2941static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02002942lyd_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 +02002943{
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002944 size_t len;
2945 const char *val;
2946 char quot;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002947
Michal Vaskob7be7a82020-08-20 09:09:04 +02002948 val = LYD_CANON_VALUE(node);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002949 len = 4 + strlen(val) + 2;
Michal Vaskoba99a3e2020-08-18 15:50:05 +02002950 LY_CHECK_RET(lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static));
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002951
2952 quot = '\'';
2953 if (strchr(val, '\'')) {
2954 quot = '"';
2955 }
2956 *bufused += sprintf(*buffer + *bufused, "[.=%c%s%c]", quot, val, quot);
2957
Michal Vaskoba99a3e2020-08-18 15:50:05 +02002958 return LY_SUCCESS;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002959}
2960
2961/**
2962 * @brief Append node position (relative to its other instances) predicate to path.
2963 *
2964 * @param[in] node Node to print.
2965 * @param[in,out] buffer Buffer to print to.
2966 * @param[in,out] buflen Current buffer length.
2967 * @param[in,out] bufused Current number of characters used in @p buffer.
2968 * @param[in] is_static Whether buffer is static or can be reallocated.
2969 * @return LY_ERR
2970 */
2971static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02002972lyd_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 +02002973{
2974 const struct lyd_node *first, *iter;
2975 size_t len;
Radek Krejci1deb5be2020-08-26 16:43:36 +02002976 uint64_t pos;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002977 char *val = NULL;
2978 LY_ERR rc;
2979
2980 if (node->parent) {
2981 first = node->parent->child;
2982 } else {
Michal Vaskoe070bfe2020-08-31 12:27:25 +02002983 for (first = node; first->prev->next; first = first->prev) {}
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002984 }
2985 pos = 1;
2986 for (iter = first; iter != node; iter = iter->next) {
2987 if (iter->schema == node->schema) {
2988 ++pos;
2989 }
2990 }
Radek Krejci1deb5be2020-08-26 16:43:36 +02002991 if (asprintf(&val, "%" PRIu64, pos) == -1) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002992 return LY_EMEM;
2993 }
2994
2995 len = 1 + strlen(val) + 1;
2996 rc = lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static);
2997 if (rc != LY_SUCCESS) {
2998 goto cleanup;
2999 }
3000
3001 *bufused += sprintf(*buffer + *bufused, "[%s]", val);
3002
3003cleanup:
3004 free(val);
3005 return rc;
3006}
3007
3008API char *
3009lyd_path(const struct lyd_node *node, LYD_PATH_TYPE pathtype, char *buffer, size_t buflen)
3010{
Radek Krejci857189e2020-09-01 13:26:36 +02003011 ly_bool is_static = 0;
Radek Krejci1deb5be2020-08-26 16:43:36 +02003012 uint32_t i, depth;
Michal Vasko14654712020-02-06 08:35:21 +01003013 size_t bufused = 0, len;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003014 const struct lyd_node *iter;
3015 const struct lys_module *mod;
Michal Vasko790b2bc2020-08-03 13:35:06 +02003016 LY_ERR rc = LY_SUCCESS;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003017
3018 LY_CHECK_ARG_RET(NULL, node, NULL);
3019 if (buffer) {
3020 LY_CHECK_ARG_RET(node->schema->module->ctx, buflen > 1, NULL);
3021 is_static = 1;
Michal Vasko14654712020-02-06 08:35:21 +01003022 } else {
3023 buflen = 0;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003024 }
3025
3026 switch (pathtype) {
Michal Vasko14654712020-02-06 08:35:21 +01003027 case LYD_PATH_LOG:
Michal Vasko790b2bc2020-08-03 13:35:06 +02003028 case LYD_PATH_LOG_NO_LAST_PRED:
Michal Vasko14654712020-02-06 08:35:21 +01003029 depth = 1;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003030 for (iter = node; iter->parent; iter = (const struct lyd_node *)iter->parent) {
3031 ++depth;
3032 }
3033
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003034 goto iter_print;
Michal Vasko14654712020-02-06 08:35:21 +01003035 while (depth) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003036 /* find the right node */
Radek Krejci1e008d22020-08-17 11:37:37 +02003037 for (iter = node, i = 1; i < depth; iter = (const struct lyd_node *)iter->parent, ++i) {}
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003038iter_print:
3039 /* print prefix and name */
3040 mod = NULL;
Michal Vasko69730152020-10-09 16:30:07 +02003041 if (iter->schema && (!iter->parent || (iter->schema->module != iter->parent->schema->module))) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003042 mod = iter->schema->module;
3043 }
3044
3045 /* realloc string */
Michal Vasko22df3f02020-08-24 13:29:22 +02003046 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 +02003047 rc = lyd_path_str_enlarge(&buffer, &buflen, bufused + len, is_static);
3048 if (rc != LY_SUCCESS) {
3049 break;
3050 }
3051
3052 /* print next node */
Radek Krejci1798aae2020-07-14 13:26:06 +02003053 bufused += sprintf(buffer + bufused, "/%s%s%s", mod ? mod->name : "", mod ? ":" : "",
Michal Vasko69730152020-10-09 16:30:07 +02003054 iter->schema ? iter->schema->name : ((struct lyd_node_opaq *)iter)->name);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003055
Michal Vasko790b2bc2020-08-03 13:35:06 +02003056 /* do not always print the last (first) predicate */
Michal Vasko552e1122020-11-06 17:22:44 +01003057 if (iter->schema && ((depth > 1) || (pathtype == LYD_PATH_LOG))) {
Michal Vasko790b2bc2020-08-03 13:35:06 +02003058 switch (iter->schema->nodetype) {
3059 case LYS_LIST:
3060 if (iter->schema->flags & LYS_KEYLESS) {
3061 /* print its position */
3062 rc = lyd_path_position_predicate(iter, &buffer, &buflen, &bufused, is_static);
3063 } else {
3064 /* print all list keys in predicates */
3065 rc = lyd_path_list_predicate(iter, &buffer, &buflen, &bufused, is_static);
3066 }
3067 break;
3068 case LYS_LEAFLIST:
3069 if (iter->schema->flags & LYS_CONFIG_W) {
3070 /* print leaf-list value */
3071 rc = lyd_path_leaflist_predicate(iter, &buffer, &buflen, &bufused, is_static);
3072 } else {
3073 /* print its position */
3074 rc = lyd_path_position_predicate(iter, &buffer, &buflen, &bufused, is_static);
3075 }
3076 break;
3077 default:
3078 /* nothing to print more */
3079 break;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003080 }
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003081 }
3082 if (rc != LY_SUCCESS) {
3083 break;
3084 }
3085
Michal Vasko14654712020-02-06 08:35:21 +01003086 --depth;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003087 }
3088 break;
3089 }
3090
3091 return buffer;
3092}
Michal Vaskoe444f752020-02-10 12:20:06 +01003093
Michal Vasko25a32822020-07-09 15:48:22 +02003094API struct lyd_meta *
3095lyd_find_meta(const struct lyd_meta *first, const struct lys_module *module, const char *name)
3096{
3097 struct lyd_meta *ret = NULL;
3098 const struct ly_ctx *ctx;
3099 const char *prefix, *tmp;
3100 char *str;
3101 size_t pref_len, name_len;
3102
3103 LY_CHECK_ARG_RET(NULL, module || strchr(name, ':'), name, NULL);
3104
3105 if (!first) {
3106 return NULL;
3107 }
3108
3109 ctx = first->annotation->module->ctx;
3110
3111 /* parse the name */
3112 tmp = name;
3113 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
3114 LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name);
3115 return NULL;
3116 }
3117
3118 /* find the module */
3119 if (prefix) {
3120 str = strndup(prefix, pref_len);
3121 module = ly_ctx_get_module_latest(ctx, str);
3122 free(str);
3123 LY_CHECK_ERR_RET(!module, LOGERR(ctx, LY_EINVAL, "Module \"%.*s\" not found.", pref_len, prefix), NULL);
3124 }
3125
3126 /* find the metadata */
3127 LY_LIST_FOR(first, first) {
3128 if ((first->annotation->module == module) && !strcmp(first->name, name)) {
3129 ret = (struct lyd_meta *)first;
3130 break;
3131 }
3132 }
3133
3134 return ret;
3135}
3136
Michal Vasko9b368d32020-02-14 13:53:31 +01003137API LY_ERR
Michal Vaskoe444f752020-02-10 12:20:06 +01003138lyd_find_sibling_first(const struct lyd_node *siblings, const struct lyd_node *target, struct lyd_node **match)
3139{
3140 struct lyd_node **match_p;
3141 struct lyd_node_inner *parent;
3142
Michal Vaskof03ed032020-03-04 13:31:44 +01003143 LY_CHECK_ARG_RET(NULL, target, LY_EINVAL);
Michal Vaskoe444f752020-02-10 12:20:06 +01003144
Michal Vasko62ed12d2020-05-21 10:08:25 +02003145 if (!siblings || (lysc_data_parent(siblings->schema) != lysc_data_parent(target->schema))) {
3146 /* no data or schema mismatch */
Michal Vasko9b368d32020-02-14 13:53:31 +01003147 if (match) {
3148 *match = NULL;
3149 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003150 return LY_ENOTFOUND;
3151 }
3152
3153 /* find first sibling */
3154 if (siblings->parent) {
3155 siblings = siblings->parent->child;
3156 } else {
3157 while (siblings->prev->next) {
3158 siblings = siblings->prev;
3159 }
3160 }
3161
3162 parent = (struct lyd_node_inner *)siblings->parent;
3163 if (parent && parent->children_ht) {
3164 assert(target->hash);
3165
3166 /* find by hash */
3167 if (!lyht_find(parent->children_ht, &target, target->hash, (void **)&match_p)) {
Michal Vaskoda859032020-07-14 12:20:14 +02003168 /* check even value when needed */
Michal Vasko8f359bf2020-07-28 10:41:15 +02003169 if (!(target->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !lyd_compare_single(target, *match_p, 0)) {
Michal Vaskoda859032020-07-14 12:20:14 +02003170 siblings = *match_p;
3171 } else {
3172 siblings = NULL;
3173 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003174 } else {
3175 /* not found */
3176 siblings = NULL;
3177 }
3178 } else {
3179 /* no children hash table */
Michal Vaskod989ba02020-08-24 10:59:24 +02003180 for ( ; siblings; siblings = siblings->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02003181 if (!lyd_compare_single(siblings, target, 0)) {
Michal Vaskoe444f752020-02-10 12:20:06 +01003182 break;
3183 }
3184 }
3185 }
3186
3187 if (!siblings) {
Michal Vasko9b368d32020-02-14 13:53:31 +01003188 if (match) {
3189 *match = NULL;
3190 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003191 return LY_ENOTFOUND;
3192 }
3193
Michal Vasko9b368d32020-02-14 13:53:31 +01003194 if (match) {
3195 *match = (struct lyd_node *)siblings;
3196 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003197 return LY_SUCCESS;
3198}
3199
Radek Krejci857189e2020-09-01 13:26:36 +02003200/**
3201 * @brief Comparison callback to match schema node with a schema of a data node.
3202 *
3203 * @param[in] val1_p Pointer to the schema node
3204 * @param[in] val2_p Pointer to the data node
3205 * Implementation of ::values_equal_cb.
3206 */
3207static ly_bool
3208lyd_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 +01003209{
3210 struct lysc_node *val1;
3211 struct lyd_node *val2;
3212
3213 val1 = *((struct lysc_node **)val1_p);
3214 val2 = *((struct lyd_node **)val2_p);
3215
Michal Vasko90932a92020-02-12 14:33:03 +01003216 if (val1 == val2->schema) {
3217 /* schema match is enough */
3218 return 1;
3219 } else {
3220 return 0;
3221 }
3222}
3223
3224static LY_ERR
3225lyd_find_sibling_schema(const struct lyd_node *siblings, const struct lysc_node *schema, struct lyd_node **match)
3226{
3227 struct lyd_node **match_p;
3228 struct lyd_node_inner *parent;
3229 uint32_t hash;
3230 values_equal_cb ht_cb;
3231
Michal Vaskob104f112020-07-17 09:54:54 +02003232 assert(siblings && schema);
Michal Vasko90932a92020-02-12 14:33:03 +01003233
3234 parent = (struct lyd_node_inner *)siblings->parent;
3235 if (parent && parent->children_ht) {
3236 /* calculate our hash */
3237 hash = dict_hash_multi(0, schema->module->name, strlen(schema->module->name));
3238 hash = dict_hash_multi(hash, schema->name, strlen(schema->name));
3239 hash = dict_hash_multi(hash, NULL, 0);
3240
3241 /* use special hash table function */
3242 ht_cb = lyht_set_cb(parent->children_ht, lyd_hash_table_schema_val_equal);
3243
3244 /* find by hash */
3245 if (!lyht_find(parent->children_ht, &schema, hash, (void **)&match_p)) {
3246 siblings = *match_p;
3247 } else {
3248 /* not found */
3249 siblings = NULL;
3250 }
3251
3252 /* set the original hash table compare function back */
3253 lyht_set_cb(parent->children_ht, ht_cb);
3254 } else {
Michal Vaskob104f112020-07-17 09:54:54 +02003255 /* find first sibling */
3256 if (siblings->parent) {
3257 siblings = siblings->parent->child;
3258 } else {
3259 while (siblings->prev->next) {
3260 siblings = siblings->prev;
3261 }
3262 }
3263
3264 /* search manually without hashes */
Michal Vaskod989ba02020-08-24 10:59:24 +02003265 for ( ; siblings; siblings = siblings->next) {
Michal Vasko90932a92020-02-12 14:33:03 +01003266 if (siblings->schema == schema) {
3267 /* schema match is enough */
3268 break;
3269 }
3270 }
3271 }
3272
3273 if (!siblings) {
Michal Vasko9b368d32020-02-14 13:53:31 +01003274 if (match) {
3275 *match = NULL;
3276 }
Michal Vasko90932a92020-02-12 14:33:03 +01003277 return LY_ENOTFOUND;
3278 }
3279
Michal Vasko9b368d32020-02-14 13:53:31 +01003280 if (match) {
3281 *match = (struct lyd_node *)siblings;
3282 }
Michal Vasko90932a92020-02-12 14:33:03 +01003283 return LY_SUCCESS;
3284}
3285
Michal Vaskoe444f752020-02-10 12:20:06 +01003286API LY_ERR
3287lyd_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 +02003288 size_t val_len, struct lyd_node **match)
Michal Vaskoe444f752020-02-10 12:20:06 +01003289{
3290 LY_ERR rc;
3291 struct lyd_node *target = NULL;
3292
Michal Vasko4c583e82020-07-17 12:16:14 +02003293 LY_CHECK_ARG_RET(NULL, schema, !(schema->nodetype & (LYS_CHOICE | LYS_CASE)), LY_EINVAL);
Michal Vaskoe444f752020-02-10 12:20:06 +01003294
Michal Vasko62ed12d2020-05-21 10:08:25 +02003295 if (!siblings || (lysc_data_parent(siblings->schema) != lysc_data_parent(schema))) {
3296 /* no data or schema mismatch */
Michal Vasko9b368d32020-02-14 13:53:31 +01003297 if (match) {
3298 *match = NULL;
3299 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003300 return LY_ENOTFOUND;
3301 }
3302
Michal Vaskof03ed032020-03-04 13:31:44 +01003303 if (key_or_value && !val_len) {
3304 val_len = strlen(key_or_value);
3305 }
3306
Michal Vaskob104f112020-07-17 09:54:54 +02003307 if ((schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) && key_or_value) {
3308 /* create a data node and find the instance */
3309 if (schema->nodetype == LYS_LEAFLIST) {
3310 /* target used attributes: schema, hash, value */
Michal Vaskofeca4fb2020-10-05 08:58:40 +02003311 rc = lyd_create_term(schema, key_or_value, val_len, NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, NULL, &target);
3312 LY_CHECK_RET(rc);
Michal Vaskob104f112020-07-17 09:54:54 +02003313 } else {
Michal Vasko90932a92020-02-12 14:33:03 +01003314 /* target used attributes: schema, hash, child (all keys) */
Michal Vasko004d3152020-06-11 19:59:22 +02003315 LY_CHECK_RET(lyd_create_list2(schema, key_or_value, val_len, &target));
Michal Vasko90932a92020-02-12 14:33:03 +01003316 }
3317
3318 /* find it */
3319 rc = lyd_find_sibling_first(siblings, target, match);
Michal Vaskob104f112020-07-17 09:54:54 +02003320 } else {
3321 /* find the first schema node instance */
3322 rc = lyd_find_sibling_schema(siblings, schema, match);
Michal Vaskoe444f752020-02-10 12:20:06 +01003323 }
3324
Michal Vaskoe444f752020-02-10 12:20:06 +01003325 lyd_free_tree(target);
3326 return rc;
3327}
Michal Vaskoccc02342020-05-21 10:09:21 +02003328
3329API LY_ERR
3330lyd_find_xpath(const struct lyd_node *ctx_node, const char *xpath, struct ly_set **set)
3331{
3332 LY_ERR ret = LY_SUCCESS;
3333 struct lyxp_set xp_set;
Radek Krejcif03a9e22020-09-18 20:09:31 +02003334 struct lyxp_expr *exp = NULL;
Michal Vaskoccc02342020-05-21 10:09:21 +02003335 uint32_t i;
3336
3337 LY_CHECK_ARG_RET(NULL, ctx_node, xpath, set, LY_EINVAL);
3338
3339 memset(&xp_set, 0, sizeof xp_set);
3340
3341 /* compile expression */
Radek Krejcif03a9e22020-09-18 20:09:31 +02003342 ret = lyxp_expr_parse((struct ly_ctx *)LYD_CTX(ctx_node), xpath, 0, 1, &exp);
3343 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003344
3345 /* evaluate expression */
Michal Vaskocdad7122020-11-09 21:04:44 +01003346 ret = lyxp_eval(exp, NULL, LY_PREF_JSON, NULL, ctx_node, ctx_node, &xp_set, LYXP_IGNORE_WHEN);
Michal Vaskoccc02342020-05-21 10:09:21 +02003347 LY_CHECK_GOTO(ret, cleanup);
3348
3349 /* allocate return set */
Radek Krejciba03a5a2020-08-27 14:40:41 +02003350 ret = ly_set_new(set);
3351 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003352
3353 /* transform into ly_set */
3354 if (xp_set.type == LYXP_SET_NODE_SET) {
3355 /* allocate memory for all the elements once (even though not all items must be elements but most likely will be) */
3356 (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs);
Michal Vaskob7be7a82020-08-20 09:09:04 +02003357 LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(LYD_CTX(ctx_node)); ret = LY_EMEM, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003358 (*set)->size = xp_set.used;
3359
3360 for (i = 0; i < xp_set.used; ++i) {
3361 if (xp_set.val.nodes[i].type == LYXP_NODE_ELEM) {
Radek Krejci3d92e442020-10-12 12:48:13 +02003362 ret = ly_set_add(*set, xp_set.val.nodes[i].node, 1, NULL);
Radek Krejciba03a5a2020-08-27 14:40:41 +02003363 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003364 }
3365 }
3366 }
3367
3368cleanup:
Michal Vasko0691d522020-05-21 13:21:47 +02003369 lyxp_set_free_content(&xp_set);
Michal Vaskob7be7a82020-08-20 09:09:04 +02003370 lyxp_expr_free((struct ly_ctx *)LYD_CTX(ctx_node), exp);
Michal Vaskoccc02342020-05-21 10:09:21 +02003371 return ret;
3372}
Radek Krejcica989142020-11-05 11:32:22 +01003373
3374API uint32_t
3375lyd_list_pos(const struct lyd_node *instance)
3376{
3377 const struct lyd_node *iter = NULL;
3378 uint32_t pos = 0;
3379
3380 if (!instance || !(instance->schema->nodetype & (LYS_LIST | LYS_LEAFLIST))) {
3381 return 0;
3382 }
3383
3384 /* data instances are ordered, so we can stop when we found instance of other schema node */
3385 for (iter = instance; iter->schema == instance->schema; iter = iter->prev) {
3386 if (pos && iter->next == NULL) {
3387 /* overrun to the end of the siblings list */
3388 break;
3389 }
3390 ++pos;
3391 }
3392
3393 return pos;
3394}
Radek Krejci4233f9b2020-11-05 12:38:35 +01003395
3396API struct lyd_node *
3397lyd_first_sibling(const struct lyd_node *node)
3398{
3399 struct lyd_node *start;
3400
3401 if (!node) {
3402 return NULL;
3403 }
3404
3405 /* get the first sibling */
3406 if (node->parent) {
3407 start = node->parent->child;
3408 } else {
3409 for (start = (struct lyd_node *)node; start->prev->next; start = start->prev);
3410 }
3411
3412 return start;
3413}