blob: 870dd44105856fae8479cb202ade8aee6bcb1600 [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 Vasko405cc9e2020-12-01 12:01:27 +010069 ret = type->plugin->store(ctx, type, value, value_len, options, format, prefix_data, hints, ctx_node, val, NULL, &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,
Michal Vasko405cc9e2020-12-01 12:01:27 +0100131 LYD_HINT_SCHEMA, node, &storage, NULL, &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,
Michal Vasko405cc9e2020-12-01 12:01:27 +0100171 LYD_HINT_DATA, node->schema, &val, NULL, &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) {
Michal Vasko29134f82020-11-13 18:03:20 +0100193 if (val.realtype->basetype == LY_TYPE_UNION) {
194 *realtype = val.subvalue->value.realtype;
195 } else {
196 *realtype = val.realtype;
197 }
Michal Vasko3701af52020-08-03 14:29:38 +0200198 }
199
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200200 type->plugin->free(ctx ? ctx : LYD_CTX(node), &val);
Radek Krejci084289f2019-07-09 17:35:30 +0200201 return LY_SUCCESS;
202}
203
204API LY_ERR
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200205lyd_value_compare(const struct lyd_node_term *node, const char *value, size_t value_len)
Radek Krejci084289f2019-07-09 17:35:30 +0200206{
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200207 LY_ERR ret = LY_SUCCESS;
Radek Krejci084289f2019-07-09 17:35:30 +0200208 struct ly_ctx *ctx;
209 struct lysc_type *type;
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200210 struct lyd_value val = {0};
Radek Krejci084289f2019-07-09 17:35:30 +0200211
212 LY_CHECK_ARG_RET(node ? node->schema->module->ctx : NULL, node, value, LY_EINVAL);
213
214 ctx = node->schema->module->ctx;
Michal Vasko22df3f02020-08-24 13:29:22 +0200215 type = ((struct lysc_node_leaf *)node->schema)->type;
Radek Krejci084289f2019-07-09 17:35:30 +0200216
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200217 /* store the value */
218 ret = lyd_value_store(ctx, &val, type, value, value_len, NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, node->schema,
219 NULL, LY_VLOG_LYSC, node->schema);
220 LY_CHECK_RET(ret);
Radek Krejci084289f2019-07-09 17:35:30 +0200221
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200222 /* compare values */
223 ret = type->plugin->compare(&node->value, &val);
Radek Krejci084289f2019-07-09 17:35:30 +0200224
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200225 type->plugin->free(ctx, &val);
Radek Krejci084289f2019-07-09 17:35:30 +0200226 return ret;
227}
228
Radek Krejci19611252020-10-04 13:54:53 +0200229API ly_bool
230lyd_is_default(const struct lyd_node *node)
231{
232 const struct lysc_node_leaf *leaf;
233 const struct lysc_node_leaflist *llist;
234 const struct lyd_node_term *term;
235 LY_ARRAY_COUNT_TYPE u;
236
237 assert(node->schema->nodetype & LYD_NODE_TERM);
238 term = (const struct lyd_node_term *)node;
239
240 if (node->schema->nodetype == LYS_LEAF) {
241 leaf = (const struct lysc_node_leaf *)node->schema;
242 if (!leaf->dflt) {
243 return 0;
244 }
245
246 /* compare with the default value */
247 if (leaf->type->plugin->compare(&term->value, leaf->dflt)) {
248 return 0;
249 }
250 } else {
251 llist = (const struct lysc_node_leaflist *)node->schema;
252 if (!llist->dflts) {
253 return 0;
254 }
255
256 LY_ARRAY_FOR(llist->dflts, u) {
257 /* compare with each possible default value */
258 if (llist->type->plugin->compare(&term->value, llist->dflts[u])) {
259 return 0;
260 }
261 }
262 }
263
264 return 1;
265}
266
Radek Krejci7931b192020-06-25 17:05:03 +0200267static LYD_FORMAT
Michal Vasko63f3d842020-07-08 10:10:14 +0200268lyd_parse_get_format(const struct ly_in *in, LYD_FORMAT format)
Radek Krejcie7b95092019-05-15 11:03:07 +0200269{
Michal Vasko69730152020-10-09 16:30:07 +0200270 if (!format && (in->type == LY_IN_FILEPATH)) {
Radek Krejcie7b95092019-05-15 11:03:07 +0200271 /* unknown format - try to detect it from filename's suffix */
Radek Krejci7931b192020-06-25 17:05:03 +0200272 const char *path = in->method.fpath.filepath;
273 size_t len = strlen(path);
Radek Krejcie7b95092019-05-15 11:03:07 +0200274
275 /* ignore trailing whitespaces */
Michal Vaskod989ba02020-08-24 10:59:24 +0200276 for ( ; len > 0 && isspace(path[len - 1]); len--) {}
Radek Krejcie7b95092019-05-15 11:03:07 +0200277
Radek Krejcif13b87b2020-12-01 22:02:17 +0100278 if ((len >= LY_XML_SUFFIX_LEN + 1) &&
279 !strncmp(&path[len - LY_XML_SUFFIX_LEN], LY_XML_SUFFIX, LY_XML_SUFFIX_LEN)) {
Radek Krejcie7b95092019-05-15 11:03:07 +0200280 format = LYD_XML;
Radek Krejcif13b87b2020-12-01 22:02:17 +0100281 } else if ((len >= LY_JSON_SUFFIX_LEN + 1) &&
282 !strncmp(&path[len - LY_JSON_SUFFIX_LEN], LY_JSON_SUFFIX, LY_JSON_SUFFIX_LEN)) {
Radek Krejcie7b95092019-05-15 11:03:07 +0200283 format = LYD_JSON;
Radek Krejcif13b87b2020-12-01 22:02:17 +0100284 } else if ((len >= LY_LYB_SUFFIX_LEN + 1) &&
285 !strncmp(&path[len - LY_LYB_SUFFIX_LEN], LY_LYB_SUFFIX, LY_LYB_SUFFIX_LEN)) {
Radek Krejcie7b95092019-05-15 11:03:07 +0200286 format = LYD_LYB;
Radek Krejci7931b192020-06-25 17:05:03 +0200287 } /* else still unknown */
Radek Krejcie7b95092019-05-15 11:03:07 +0200288 }
289
Radek Krejci7931b192020-06-25 17:05:03 +0200290 return format;
291}
Radek Krejcie7b95092019-05-15 11:03:07 +0200292
Radek Krejci7931b192020-06-25 17:05:03 +0200293API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200294lyd_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 +0200295 struct lyd_node **tree)
Radek Krejci7931b192020-06-25 17:05:03 +0200296{
Radek Krejci1798aae2020-07-14 13:26:06 +0200297 LY_ERR ret = LY_SUCCESS;
298 struct lyd_ctx *lydctx = NULL;
299
Radek Krejci7931b192020-06-25 17:05:03 +0200300 LY_CHECK_ARG_RET(ctx, ctx, in, tree, LY_EINVAL);
301 LY_CHECK_ARG_RET(ctx, !(parse_options & ~LYD_PARSE_OPTS_MASK), LY_EINVAL);
302 LY_CHECK_ARG_RET(ctx, !(validate_options & ~LYD_VALIDATE_OPTS_MASK), LY_EINVAL);
303
304 format = lyd_parse_get_format(in, format);
305 LY_CHECK_ARG_RET(ctx, format, LY_EINVAL);
306
Radek Krejci1798aae2020-07-14 13:26:06 +0200307 /* init */
308 *tree = NULL;
309
Michal Vasko63f3d842020-07-08 10:10:14 +0200310 /* remember input position */
311 in->func_start = in->current;
Radek Krejci7931b192020-06-25 17:05:03 +0200312
313 switch (format) {
314 case LYD_XML:
Radek Krejci1798aae2020-07-14 13:26:06 +0200315 LY_CHECK_RET(lyd_parse_xml_data(ctx, in, parse_options, validate_options, tree, &lydctx));
316 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200317 case LYD_JSON:
Radek Krejci1798aae2020-07-14 13:26:06 +0200318 LY_CHECK_RET(lyd_parse_json_data(ctx, in, parse_options, validate_options, tree, &lydctx));
319 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200320 case LYD_LYB:
Radek Krejci1798aae2020-07-14 13:26:06 +0200321 LY_CHECK_RET(lyd_parse_lyb_data(ctx, in, parse_options, validate_options, tree, &lydctx));
322 break;
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200323 case LYD_UNKNOWN:
Radek Krejci7931b192020-06-25 17:05:03 +0200324 LOGINT_RET(ctx);
325 }
326
Radek Krejci1798aae2020-07-14 13:26:06 +0200327 if (!(parse_options & LYD_PARSE_ONLY)) {
328 uint32_t i = 0;
329 const struct lys_module *mod;
330 struct lyd_node *first, *next, **first2;
Radek Krejci7931b192020-06-25 17:05:03 +0200331
Radek Krejci1798aae2020-07-14 13:26:06 +0200332 next = *tree;
333 while (1) {
334 if (validate_options & LYD_VALIDATE_PRESENT) {
335 mod = lyd_data_next_module(&next, &first);
336 } else {
337 mod = lyd_mod_next_module(next, NULL, ctx, &i, &first);
338 }
339 if (!mod) {
340 break;
341 }
Radek Krejci45a44db2020-12-03 13:05:17 +0100342 if (!first || first == *tree) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200343 /* make sure first2 changes are carried to tree */
344 first2 = tree;
345 } else {
346 first2 = &first;
347 }
348
349 /* validate new top-level nodes, autodelete CANNOT occur, all nodes are new */
350 LY_CHECK_GOTO(ret = lyd_validate_new(first2, NULL, mod, NULL), cleanup);
351
352 /* add all top-level defaults for this module */
Michal Vasko32711382020-12-03 14:14:31 +0100353 ret = lyd_new_implicit_r(NULL, first2, NULL, mod, &lydctx->node_types, &lydctx->node_when,
Michal Vasko69730152020-10-09 16:30:07 +0200354 (validate_options & LYD_VALIDATE_NO_STATE) ? LYD_IMPLICIT_NO_STATE : 0, NULL);
Radek Krejci1798aae2020-07-14 13:26:06 +0200355 LY_CHECK_GOTO(ret, cleanup);
356
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100357 /* our first module node pointer may no longer be the first */
358 while (*first2 && (*first2)->prev->next && (lyd_owner_module(*first2) == lyd_owner_module((*first2)->prev))) {
359 *first2 = (*first2)->prev;
360 }
361
Radek Krejci1798aae2020-07-14 13:26:06 +0200362 /* finish incompletely validated terminal values/attributes and when conditions */
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100363 ret = lyd_validate_unres(first2, mod, &lydctx->node_when, &lydctx->node_types, &lydctx->meta_types, NULL);
Radek Krejci1798aae2020-07-14 13:26:06 +0200364 LY_CHECK_GOTO(ret, cleanup);
365
366 /* perform final validation that assumes the data tree is final */
Michal Vaskobd4db892020-11-23 16:58:20 +0100367 LY_CHECK_GOTO(ret = lyd_validate_final_r(*first2, NULL, NULL, mod, validate_options, 0), cleanup);
Radek Krejci1798aae2020-07-14 13:26:06 +0200368 }
369 }
370
371cleanup:
Michal Vaskoafac7822020-10-20 14:22:26 +0200372 lydctx->free(lydctx);
Radek Krejci1798aae2020-07-14 13:26:06 +0200373 if (ret) {
374 lyd_free_all(*tree);
375 *tree = NULL;
376 }
377 return ret;
Radek Krejci7931b192020-06-25 17:05:03 +0200378}
379
380API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200381lyd_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 +0200382 struct lyd_node **tree)
Radek Krejci7931b192020-06-25 17:05:03 +0200383{
384 LY_ERR ret;
385 struct ly_in *in;
386
387 LY_CHECK_RET(ly_in_new_memory(data, &in));
388 ret = lyd_parse_data(ctx, in, format, parse_options, validate_options, tree);
389
390 ly_in_free(in, 0);
391 return ret;
392}
393
394API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200395lyd_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 +0200396 struct lyd_node **tree)
Radek Krejci7931b192020-06-25 17:05:03 +0200397{
398 LY_ERR ret;
399 struct ly_in *in;
400
401 LY_CHECK_RET(ly_in_new_fd(fd, &in));
402 ret = lyd_parse_data(ctx, in, format, parse_options, validate_options, tree);
403
404 ly_in_free(in, 0);
405 return ret;
406}
407
408API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200409lyd_parse_data_path(const struct ly_ctx *ctx, const char *path, LYD_FORMAT format, uint32_t parse_options,
410 uint32_t validate_options, struct lyd_node **tree)
Radek Krejci7931b192020-06-25 17:05:03 +0200411{
412 LY_ERR ret;
413 struct ly_in *in;
414
415 LY_CHECK_RET(ly_in_new_filepath(path, 0, &in));
416 ret = lyd_parse_data(ctx, in, format, parse_options, validate_options, tree);
417
418 ly_in_free(in, 0);
419 return ret;
420}
421
Radek Krejci7931b192020-06-25 17:05:03 +0200422API LY_ERR
423lyd_parse_rpc(const struct ly_ctx *ctx, struct ly_in *in, LYD_FORMAT format, struct lyd_node **tree, struct lyd_node **op)
424{
425 LY_CHECK_ARG_RET(ctx, ctx, in, tree, LY_EINVAL);
426
427 format = lyd_parse_get_format(in, format);
428 LY_CHECK_ARG_RET(ctx, format, LY_EINVAL);
429
Radek Krejci1798aae2020-07-14 13:26:06 +0200430 /* init */
431 *tree = NULL;
432 if (op) {
433 *op = NULL;
434 }
435
Michal Vasko63f3d842020-07-08 10:10:14 +0200436 /* remember input position */
437 in->func_start = in->current;
438
Radek Krejci7931b192020-06-25 17:05:03 +0200439 switch (format) {
440 case LYD_XML:
Michal Vasko63f3d842020-07-08 10:10:14 +0200441 return lyd_parse_xml_rpc(ctx, in, tree, op);
Radek Krejci7931b192020-06-25 17:05:03 +0200442 case LYD_JSON:
Michal Vasko63f3d842020-07-08 10:10:14 +0200443 return lyd_parse_json_rpc(ctx, in, tree, op);
Radek Krejci7931b192020-06-25 17:05:03 +0200444 case LYD_LYB:
Michal Vasko63f3d842020-07-08 10:10:14 +0200445 return lyd_parse_lyb_rpc(ctx, in, tree, op);
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200446 case LYD_UNKNOWN:
447 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200448 }
449
450 LOGINT_RET(ctx);
451}
452
453API LY_ERR
Michal Vasko63f3d842020-07-08 10:10:14 +0200454lyd_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 +0200455 struct lyd_node **op)
Radek Krejci7931b192020-06-25 17:05:03 +0200456{
457 LY_CHECK_ARG_RET(NULL, request, LY_EINVAL);
Michal Vaskob7be7a82020-08-20 09:09:04 +0200458 LY_CHECK_ARG_RET(LYD_CTX(request), in, tree || op, LY_EINVAL);
Radek Krejci7931b192020-06-25 17:05:03 +0200459
460 format = lyd_parse_get_format(in, format);
Michal Vaskob7be7a82020-08-20 09:09:04 +0200461 LY_CHECK_ARG_RET(LYD_CTX(request), format, LY_EINVAL);
Radek Krejci7931b192020-06-25 17:05:03 +0200462
Radek Krejci1798aae2020-07-14 13:26:06 +0200463 /* init */
464 if (tree) {
465 *tree = NULL;
466 }
467 if (op) {
468 *op = NULL;
469 }
470
Michal Vasko63f3d842020-07-08 10:10:14 +0200471 /* remember input position */
472 in->func_start = in->current;
473
Radek Krejci7931b192020-06-25 17:05:03 +0200474 switch (format) {
475 case LYD_XML:
Michal Vasko63f3d842020-07-08 10:10:14 +0200476 return lyd_parse_xml_reply(request, in, tree, op);
Radek Krejci7931b192020-06-25 17:05:03 +0200477 case LYD_JSON:
Michal Vasko63f3d842020-07-08 10:10:14 +0200478 return lyd_parse_json_reply(request, in, tree, op);
Radek Krejci7931b192020-06-25 17:05:03 +0200479 case LYD_LYB:
Michal Vasko63f3d842020-07-08 10:10:14 +0200480 return lyd_parse_lyb_reply(request, in, tree, op);
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200481 case LYD_UNKNOWN:
482 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200483 }
484
Michal Vaskob7be7a82020-08-20 09:09:04 +0200485 LOGINT_RET(LYD_CTX(request));
Radek Krejci7931b192020-06-25 17:05:03 +0200486}
487
488API LY_ERR
489lyd_parse_notif(const struct ly_ctx *ctx, struct ly_in *in, LYD_FORMAT format, struct lyd_node **tree, struct lyd_node **ntf)
490{
Radek Krejci1798aae2020-07-14 13:26:06 +0200491 LY_CHECK_ARG_RET(ctx, ctx, in, tree || ntf, LY_EINVAL);
Radek Krejci7931b192020-06-25 17:05:03 +0200492
493 format = lyd_parse_get_format(in, format);
494 LY_CHECK_ARG_RET(ctx, format, LY_EINVAL);
495
Radek Krejci1798aae2020-07-14 13:26:06 +0200496 /* init */
497 if (tree) {
498 *tree = NULL;
499 }
500 if (ntf) {
501 *ntf = NULL;
502 }
503
Michal Vasko63f3d842020-07-08 10:10:14 +0200504 /* remember input position */
505 in->func_start = in->current;
506
Radek Krejci7931b192020-06-25 17:05:03 +0200507 switch (format) {
508 case LYD_XML:
Michal Vasko63f3d842020-07-08 10:10:14 +0200509 return lyd_parse_xml_notif(ctx, in, tree, ntf);
Radek Krejci7931b192020-06-25 17:05:03 +0200510 case LYD_JSON:
Michal Vasko63f3d842020-07-08 10:10:14 +0200511 return lyd_parse_json_notif(ctx, in, tree, ntf);
Radek Krejci7931b192020-06-25 17:05:03 +0200512 case LYD_LYB:
Michal Vasko63f3d842020-07-08 10:10:14 +0200513 return lyd_parse_lyb_notif(ctx, in, tree, ntf);
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200514 case LYD_UNKNOWN:
515 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200516 }
517
518 LOGINT_RET(ctx);
Radek Krejcie7b95092019-05-15 11:03:07 +0200519}
Radek Krejci084289f2019-07-09 17:35:30 +0200520
Michal Vasko90932a92020-02-12 14:33:03 +0100521LY_ERR
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200522lyd_create_term(const struct lysc_node *schema, const char *value, size_t value_len, ly_bool *dynamic,
523 LY_PREFIX_FORMAT format, void *prefix_data, uint32_t hints, ly_bool *incomplete, struct lyd_node **node)
Michal Vasko90932a92020-02-12 14:33:03 +0100524{
525 LY_ERR ret;
526 struct lyd_node_term *term;
527
Michal Vasko9b368d32020-02-14 13:53:31 +0100528 assert(schema->nodetype & LYD_NODE_TERM);
529
Michal Vasko90932a92020-02-12 14:33:03 +0100530 term = calloc(1, sizeof *term);
531 LY_CHECK_ERR_RET(!term, LOGMEM(schema->module->ctx), LY_EMEM);
532
533 term->schema = schema;
534 term->prev = (struct lyd_node *)term;
Michal Vasko9b368d32020-02-14 13:53:31 +0100535 term->flags = LYD_NEW;
Michal Vasko90932a92020-02-12 14:33:03 +0100536
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200537 ret = lyd_value_store(schema->module->ctx, &term->value, ((struct lysc_node_leaf *)term->schema)->type, value,
538 value_len, dynamic, format, prefix_data, hints, schema, incomplete, LY_VLOG_LYSC, schema);
539 LY_CHECK_ERR_RET(ret, free(term), ret);
Michal Vasko9b368d32020-02-14 13:53:31 +0100540 lyd_hash((struct lyd_node *)term);
541
542 *node = (struct lyd_node *)term;
543 return ret;
544}
545
546LY_ERR
547lyd_create_term2(const struct lysc_node *schema, const struct lyd_value *val, struct lyd_node **node)
548{
549 LY_ERR ret;
550 struct lyd_node_term *term;
551 struct lysc_type *type;
552
553 assert(schema->nodetype & LYD_NODE_TERM);
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200554 assert(val && val->canonical && val->realtype);
Michal Vasko9b368d32020-02-14 13:53:31 +0100555
556 term = calloc(1, sizeof *term);
557 LY_CHECK_ERR_RET(!term, LOGMEM(schema->module->ctx), LY_EMEM);
558
559 term->schema = schema;
560 term->prev = (struct lyd_node *)term;
561 term->flags = LYD_NEW;
562
563 type = ((struct lysc_node_leaf *)schema)->type;
564 ret = type->plugin->duplicate(schema->module->ctx, val, &term->value);
565 if (ret) {
566 LOGERR(schema->module->ctx, ret, "Value duplication failed.");
567 free(term);
568 return ret;
569 }
570 lyd_hash((struct lyd_node *)term);
Michal Vasko90932a92020-02-12 14:33:03 +0100571
572 *node = (struct lyd_node *)term;
573 return ret;
574}
575
576LY_ERR
577lyd_create_inner(const struct lysc_node *schema, struct lyd_node **node)
578{
579 struct lyd_node_inner *in;
580
Michal Vasko9b368d32020-02-14 13:53:31 +0100581 assert(schema->nodetype & LYD_NODE_INNER);
582
Michal Vasko90932a92020-02-12 14:33:03 +0100583 in = calloc(1, sizeof *in);
584 LY_CHECK_ERR_RET(!in, LOGMEM(schema->module->ctx), LY_EMEM);
585
586 in->schema = schema;
587 in->prev = (struct lyd_node *)in;
Michal Vasko9b368d32020-02-14 13:53:31 +0100588 in->flags = LYD_NEW;
Michal Vasko3383be72020-11-03 17:15:31 +0100589 if ((schema->nodetype == LYS_CONTAINER) && !(schema->flags & LYS_PRESENCE)) {
590 in->flags |= LYD_DEFAULT;
591 }
Michal Vasko90932a92020-02-12 14:33:03 +0100592
Michal Vasko9b368d32020-02-14 13:53:31 +0100593 /* do not hash list with keys, we need them for the hash */
594 if ((schema->nodetype != LYS_LIST) || (schema->flags & LYS_KEYLESS)) {
595 lyd_hash((struct lyd_node *)in);
596 }
Michal Vasko90932a92020-02-12 14:33:03 +0100597
598 *node = (struct lyd_node *)in;
599 return LY_SUCCESS;
600}
601
Michal Vasko90932a92020-02-12 14:33:03 +0100602LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +0200603lyd_create_list(const struct lysc_node *schema, const struct ly_path_predicate *predicates, struct lyd_node **node)
Michal Vasko90932a92020-02-12 14:33:03 +0100604{
605 LY_ERR ret = LY_SUCCESS;
Michal Vasko90932a92020-02-12 14:33:03 +0100606 struct lyd_node *list = NULL, *key;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200607 LY_ARRAY_COUNT_TYPE u;
Michal Vasko90932a92020-02-12 14:33:03 +0100608
Michal Vasko004d3152020-06-11 19:59:22 +0200609 assert((schema->nodetype == LYS_LIST) && !(schema->flags & LYS_KEYLESS));
Michal Vasko90932a92020-02-12 14:33:03 +0100610
611 /* create list */
612 LY_CHECK_GOTO(ret = lyd_create_inner(schema, &list), cleanup);
613
Michal Vasko90932a92020-02-12 14:33:03 +0100614 /* create and insert all the keys */
Michal Vasko004d3152020-06-11 19:59:22 +0200615 LY_ARRAY_FOR(predicates, u) {
616 LY_CHECK_GOTO(ret = lyd_create_term2(predicates[u].key, &predicates[u].value, &key), cleanup);
Michal Vasko90932a92020-02-12 14:33:03 +0100617 lyd_insert_node(list, NULL, key);
618 }
619
Michal Vasko9b368d32020-02-14 13:53:31 +0100620 /* hash having all the keys */
621 lyd_hash(list);
622
Michal Vasko90932a92020-02-12 14:33:03 +0100623 /* success */
624 *node = list;
625 list = NULL;
626
627cleanup:
628 lyd_free_tree(list);
Michal Vasko004d3152020-06-11 19:59:22 +0200629 return ret;
630}
631
632static LY_ERR
633lyd_create_list2(const struct lysc_node *schema, const char *keys, size_t keys_len, struct lyd_node **node)
634{
635 LY_ERR ret = LY_SUCCESS;
636 struct lyxp_expr *expr = NULL;
637 uint16_t exp_idx = 0;
638 enum ly_path_pred_type pred_type = 0;
639 struct ly_path_predicate *predicates = NULL;
640
641 /* parse keys */
Michal Vasko6b26e742020-07-17 15:02:10 +0200642 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 +0200643 LY_PATH_PRED_KEYS, &expr), cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +0200644
645 /* compile them */
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200646 LY_CHECK_GOTO(ret = ly_path_compile_predicate(schema->module->ctx, NULL, NULL, schema, expr, &exp_idx, LY_PREF_JSON,
647 NULL, &predicates, &pred_type), cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +0200648
649 /* create the list node */
650 LY_CHECK_GOTO(ret = lyd_create_list(schema, predicates, node), cleanup);
651
652cleanup:
653 lyxp_expr_free(schema->module->ctx, expr);
Michal Vaskof7e16e22020-10-21 09:24:39 +0200654 ly_path_predicates_free(schema->module->ctx, pred_type, predicates);
Michal Vasko90932a92020-02-12 14:33:03 +0100655 return ret;
656}
657
658LY_ERR
Michal Vasko366a4a12020-12-04 16:23:57 +0100659lyd_create_any(const struct lysc_node *schema, const void *value, LYD_ANYDATA_VALUETYPE value_type, ly_bool use_value,
660 struct lyd_node **node)
Michal Vasko90932a92020-02-12 14:33:03 +0100661{
Michal Vasko366a4a12020-12-04 16:23:57 +0100662 LY_ERR ret;
Michal Vasko90932a92020-02-12 14:33:03 +0100663 struct lyd_node_any *any;
Michal Vasko366a4a12020-12-04 16:23:57 +0100664 union lyd_any_value any_val;
Michal Vasko90932a92020-02-12 14:33:03 +0100665
Michal Vasko9b368d32020-02-14 13:53:31 +0100666 assert(schema->nodetype & LYD_NODE_ANY);
667
Michal Vasko90932a92020-02-12 14:33:03 +0100668 any = calloc(1, sizeof *any);
669 LY_CHECK_ERR_RET(!any, LOGMEM(schema->module->ctx), LY_EMEM);
670
671 any->schema = schema;
672 any->prev = (struct lyd_node *)any;
Michal Vasko9b368d32020-02-14 13:53:31 +0100673 any->flags = LYD_NEW;
Michal Vasko90932a92020-02-12 14:33:03 +0100674
Radek Krejci1798aae2020-07-14 13:26:06 +0200675 /* TODO: convert XML/JSON strings into a opaq data tree */
Michal Vasko366a4a12020-12-04 16:23:57 +0100676
677 if (use_value) {
678 any->value.str = value;
679 any->value_type = value_type;
680 } else {
681 any_val.str = value;
682 ret = lyd_any_copy_value((struct lyd_node *)any, &any_val, value_type);
683 LY_CHECK_ERR_RET(ret, free(any), ret);
684 }
Michal Vasko9b368d32020-02-14 13:53:31 +0100685 lyd_hash((struct lyd_node *)any);
Michal Vasko90932a92020-02-12 14:33:03 +0100686
687 *node = (struct lyd_node *)any;
688 return LY_SUCCESS;
689}
690
Michal Vasko52927e22020-03-16 17:26:14 +0100691LY_ERR
Michal Vasko501af032020-11-11 20:27:44 +0100692lyd_create_opaq(const struct ly_ctx *ctx, const char *name, size_t name_len, const char *prefix, size_t pref_len,
693 const char *module_key, size_t module_key_len, const char *value, size_t value_len, ly_bool *dynamic,
694 LY_PREFIX_FORMAT format, void *val_prefix_data, uint32_t hints, struct lyd_node **node)
Michal Vasko52927e22020-03-16 17:26:14 +0100695{
Radek Krejci011e4aa2020-09-04 15:22:31 +0200696 LY_ERR ret = LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +0100697 struct lyd_node_opaq *opaq;
698
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200699 assert(ctx && name && name_len && format);
Michal Vasko52927e22020-03-16 17:26:14 +0100700
701 if (!value_len) {
702 value = "";
703 }
704
705 opaq = calloc(1, sizeof *opaq);
Michal Vasko501af032020-11-11 20:27:44 +0100706 LY_CHECK_ERR_GOTO(!opaq, LOGMEM(ctx); ret = LY_EMEM, finish);
Michal Vasko52927e22020-03-16 17:26:14 +0100707
708 opaq->prev = (struct lyd_node *)opaq;
Michal Vaskoad92b672020-11-12 13:11:31 +0100709 LY_CHECK_GOTO(ret = lydict_insert(ctx, name, name_len, &opaq->name.name), finish);
Radek Krejci011e4aa2020-09-04 15:22:31 +0200710
Michal Vasko52927e22020-03-16 17:26:14 +0100711 if (pref_len) {
Michal Vaskoad92b672020-11-12 13:11:31 +0100712 LY_CHECK_GOTO(ret = lydict_insert(ctx, prefix, pref_len, &opaq->name.prefix), finish);
Michal Vasko52927e22020-03-16 17:26:14 +0100713 }
Radek Krejci1798aae2020-07-14 13:26:06 +0200714 if (module_key_len) {
Michal Vaskoad92b672020-11-12 13:11:31 +0100715 LY_CHECK_GOTO(ret = lydict_insert(ctx, module_key, module_key_len, &opaq->name.module_ns), finish);
Radek Krejci1798aae2020-07-14 13:26:06 +0200716 }
Michal Vasko52927e22020-03-16 17:26:14 +0100717 if (dynamic && *dynamic) {
Radek Krejci011e4aa2020-09-04 15:22:31 +0200718 LY_CHECK_GOTO(ret = lydict_insert_zc(ctx, (char *)value, &opaq->value), finish);
Michal Vasko52927e22020-03-16 17:26:14 +0100719 *dynamic = 0;
720 } else {
Radek Krejci011e4aa2020-09-04 15:22:31 +0200721 LY_CHECK_GOTO(ret = lydict_insert(ctx, value, value_len, &opaq->value), finish);
Michal Vasko52927e22020-03-16 17:26:14 +0100722 }
Michal Vasko501af032020-11-11 20:27:44 +0100723
724 opaq->format = format;
725 opaq->val_prefix_data = val_prefix_data;
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200726 opaq->hints = hints;
Michal Vasko52927e22020-03-16 17:26:14 +0100727 opaq->ctx = ctx;
728
Radek Krejci011e4aa2020-09-04 15:22:31 +0200729finish:
730 if (ret) {
731 lyd_free_tree((struct lyd_node *)opaq);
Michal Vasko501af032020-11-11 20:27:44 +0100732 ly_free_prefix_data(format, val_prefix_data);
Radek Krejci011e4aa2020-09-04 15:22:31 +0200733 } else {
734 *node = (struct lyd_node *)opaq;
735 }
736 return ret;
Michal Vasko52927e22020-03-16 17:26:14 +0100737}
738
Michal Vasko3a41dff2020-07-15 14:30:28 +0200739API LY_ERR
Radek Krejci41ac9942020-11-02 14:47:56 +0100740lyd_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 +0100741{
742 struct lyd_node *ret = NULL;
743 const struct lysc_node *schema;
744 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
745
Michal Vasko6027eb92020-07-15 16:37:30 +0200746 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100747
Michal Vaskof03ed032020-03-04 13:31:44 +0100748 if (!module) {
749 module = parent->schema->module;
750 }
751
Michal Vasko3a41dff2020-07-15 14:30:28 +0200752 schema = lys_find_child(parent ? parent->schema : NULL, module, name, 0,
Radek Krejci41ac9942020-11-02 14:47:56 +0100753 LYS_CONTAINER | LYS_NOTIF | LYS_RPC | LYS_ACTION, output ? LYS_GETNEXT_OUTPUT : 0);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200754 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 +0100755
Michal Vasko3a41dff2020-07-15 14:30:28 +0200756 LY_CHECK_RET(lyd_create_inner(schema, &ret));
757 if (parent) {
Michal Vasko013a8182020-03-03 10:46:53 +0100758 lyd_insert_node(parent, NULL, ret);
759 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200760
761 if (node) {
762 *node = ret;
763 }
764 return LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +0100765}
766
Michal Vasko3a41dff2020-07-15 14:30:28 +0200767API LY_ERR
Radek Krejci41ac9942020-11-02 14:47:56 +0100768lyd_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 +0100769{
770 struct lyd_node *ret = NULL, *key;
771 const struct lysc_node *schema, *key_s;
772 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
773 va_list ap;
774 const char *key_val;
775 LY_ERR rc = LY_SUCCESS;
776
Michal Vasko6027eb92020-07-15 16:37:30 +0200777 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100778
Michal Vaskof03ed032020-03-04 13:31:44 +0100779 if (!module) {
780 module = parent->schema->module;
781 }
782
Radek Krejci41ac9942020-11-02 14:47:56 +0100783 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 +0200784 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "List node \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +0100785
786 /* create list inner node */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200787 LY_CHECK_RET(lyd_create_inner(schema, &ret));
Michal Vasko013a8182020-03-03 10:46:53 +0100788
Michal Vasko3a41dff2020-07-15 14:30:28 +0200789 va_start(ap, node);
Michal Vasko013a8182020-03-03 10:46:53 +0100790
791 /* create and insert all the keys */
792 for (key_s = lysc_node_children(schema, 0); key_s && (key_s->flags & LYS_KEY); key_s = key_s->next) {
793 key_val = va_arg(ap, const char *);
794
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200795 rc = lyd_create_term(key_s, key_val, key_val ? strlen(key_val) : 0, NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA,
796 NULL, &key);
797 LY_CHECK_GOTO(rc, cleanup);
Michal Vasko013a8182020-03-03 10:46:53 +0100798 lyd_insert_node(ret, NULL, key);
799 }
800
Michal Vasko013a8182020-03-03 10:46:53 +0100801 if (parent) {
802 lyd_insert_node(parent, NULL, ret);
803 }
804
805cleanup:
Michal Vasko3a41dff2020-07-15 14:30:28 +0200806 va_end(ap);
Michal Vasko013a8182020-03-03 10:46:53 +0100807 if (rc) {
808 lyd_free_tree(ret);
809 ret = NULL;
Michal Vasko3a41dff2020-07-15 14:30:28 +0200810 } else if (node) {
811 *node = ret;
Michal Vasko013a8182020-03-03 10:46:53 +0100812 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200813 return rc;
Michal Vasko013a8182020-03-03 10:46:53 +0100814}
815
Michal Vasko3a41dff2020-07-15 14:30:28 +0200816API LY_ERR
817lyd_new_list2(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *keys,
Radek Krejci41ac9942020-11-02 14:47:56 +0100818 ly_bool output, struct lyd_node **node)
Michal Vasko013a8182020-03-03 10:46:53 +0100819{
820 struct lyd_node *ret = NULL;
821 const struct lysc_node *schema;
822 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
823
Michal Vasko6027eb92020-07-15 16:37:30 +0200824 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100825
Michal Vaskof03ed032020-03-04 13:31:44 +0100826 if (!module) {
827 module = parent->schema->module;
828 }
Michal Vasko004d3152020-06-11 19:59:22 +0200829 if (!keys) {
830 keys = "";
831 }
Michal Vaskof03ed032020-03-04 13:31:44 +0100832
Michal Vasko004d3152020-06-11 19:59:22 +0200833 /* find schema node */
Radek Krejci41ac9942020-11-02 14:47:56 +0100834 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 +0200835 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "List node \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +0100836
Michal Vasko004d3152020-06-11 19:59:22 +0200837 if ((schema->flags & LYS_KEYLESS) && !keys[0]) {
838 /* key-less list */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200839 LY_CHECK_RET(lyd_create_inner(schema, &ret));
Michal Vasko004d3152020-06-11 19:59:22 +0200840 } else {
841 /* create the list node */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200842 LY_CHECK_RET(lyd_create_list2(schema, keys, strlen(keys), &ret));
Michal Vasko004d3152020-06-11 19:59:22 +0200843 }
Michal Vasko004d3152020-06-11 19:59:22 +0200844 if (parent) {
Michal Vasko013a8182020-03-03 10:46:53 +0100845 lyd_insert_node(parent, NULL, ret);
846 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200847
848 if (node) {
849 *node = ret;
850 }
851 return LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +0100852}
853
Michal Vasko3a41dff2020-07-15 14:30:28 +0200854API LY_ERR
855lyd_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 +0100856 ly_bool output, struct lyd_node **node)
Michal Vasko013a8182020-03-03 10:46:53 +0100857{
Michal Vaskocbff3e92020-05-27 12:56:41 +0200858 LY_ERR rc;
Michal Vasko013a8182020-03-03 10:46:53 +0100859 struct lyd_node *ret = NULL;
860 const struct lysc_node *schema;
861 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
862
Michal Vasko6027eb92020-07-15 16:37:30 +0200863 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100864
Michal Vaskof03ed032020-03-04 13:31:44 +0100865 if (!module) {
866 module = parent->schema->module;
867 }
868
Radek Krejci41ac9942020-11-02 14:47:56 +0100869 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 +0200870 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "Term node \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +0100871
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200872 rc = lyd_create_term(schema, val_str, val_str ? strlen(val_str) : 0, NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, NULL,
873 &ret);
874 LY_CHECK_RET(rc);
Michal Vaskocbff3e92020-05-27 12:56:41 +0200875 if (parent) {
Michal Vasko013a8182020-03-03 10:46:53 +0100876 lyd_insert_node(parent, NULL, ret);
877 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200878
879 if (node) {
880 *node = ret;
881 }
882 return LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +0100883}
884
Michal Vasko3a41dff2020-07-15 14:30:28 +0200885API LY_ERR
Michal Vasko013a8182020-03-03 10:46:53 +0100886lyd_new_any(struct lyd_node *parent, const struct lys_module *module, const char *name, const void *value,
Radek Krejci41ac9942020-11-02 14:47:56 +0100887 LYD_ANYDATA_VALUETYPE value_type, ly_bool output, struct lyd_node **node)
Michal Vasko013a8182020-03-03 10:46:53 +0100888{
889 struct lyd_node *ret = NULL;
890 const struct lysc_node *schema;
891 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
892
Michal Vasko6027eb92020-07-15 16:37:30 +0200893 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100894
Michal Vaskof03ed032020-03-04 13:31:44 +0100895 if (!module) {
896 module = parent->schema->module;
897 }
898
Radek Krejci41ac9942020-11-02 14:47:56 +0100899 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 +0200900 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "Any node \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +0100901
Michal Vasko366a4a12020-12-04 16:23:57 +0100902 LY_CHECK_RET(lyd_create_any(schema, value, value_type, 1, &ret));
Michal Vasko3a41dff2020-07-15 14:30:28 +0200903 if (parent) {
Michal Vasko013a8182020-03-03 10:46:53 +0100904 lyd_insert_node(parent, NULL, ret);
905 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200906
907 if (node) {
908 *node = ret;
909 }
910 return LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +0100911}
912
Michal Vasko4490d312020-06-16 13:08:55 +0200913/**
914 * @brief Update node value.
915 *
916 * @param[in] node Node to update.
917 * @param[in] value New value to set.
918 * @param[in] value_type Type of @p value for any node.
919 * @param[out] new_parent Set to @p node if the value was updated, otherwise set to NULL.
920 * @param[out] new_node Set to @p node if the value was updated, otherwise set to NULL.
921 * @return LY_ERR value.
922 */
Michal Vasko00cbf532020-06-15 13:58:47 +0200923static LY_ERR
924lyd_new_path_update(struct lyd_node *node, const void *value, LYD_ANYDATA_VALUETYPE value_type,
Radek Krejci0f969882020-08-21 16:56:47 +0200925 struct lyd_node **new_parent, struct lyd_node **new_node)
Michal Vasko00cbf532020-06-15 13:58:47 +0200926{
927 LY_ERR ret = LY_SUCCESS;
928 struct lyd_node *new_any;
929
930 switch (node->schema->nodetype) {
931 case LYS_CONTAINER:
932 case LYS_NOTIF:
933 case LYS_RPC:
934 case LYS_ACTION:
935 case LYS_LIST:
936 case LYS_LEAFLIST:
937 /* if it exists, there is nothing to update */
938 *new_parent = NULL;
939 *new_node = NULL;
940 break;
941 case LYS_LEAF:
942 ret = lyd_change_term(node, value);
943 if ((ret == LY_SUCCESS) || (ret == LY_EEXIST)) {
944 /* there was an actual change (at least of the default flag) */
945 *new_parent = node;
946 *new_node = node;
947 ret = LY_SUCCESS;
948 } else if (ret == LY_ENOT) {
949 /* no change */
950 *new_parent = NULL;
951 *new_node = NULL;
952 ret = LY_SUCCESS;
953 } /* else error */
954 break;
955 case LYS_ANYDATA:
956 case LYS_ANYXML:
957 /* create a new any node */
Michal Vasko366a4a12020-12-04 16:23:57 +0100958 LY_CHECK_RET(lyd_create_any(node->schema, value, value_type, 0, &new_any));
Michal Vasko00cbf532020-06-15 13:58:47 +0200959
960 /* compare with the existing one */
Michal Vasko8f359bf2020-07-28 10:41:15 +0200961 if (lyd_compare_single(node, new_any, 0)) {
Michal Vasko00cbf532020-06-15 13:58:47 +0200962 /* not equal, switch values (so that we can use generic node free) */
963 ((struct lyd_node_any *)new_any)->value = ((struct lyd_node_any *)node)->value;
964 ((struct lyd_node_any *)new_any)->value_type = ((struct lyd_node_any *)node)->value_type;
965 ((struct lyd_node_any *)node)->value.str = value;
966 ((struct lyd_node_any *)node)->value_type = value_type;
967
968 *new_parent = node;
969 *new_node = node;
970 } else {
971 /* they are equal */
972 *new_parent = NULL;
973 *new_node = NULL;
974 }
975 lyd_free_tree(new_any);
976 break;
977 default:
Michal Vaskob7be7a82020-08-20 09:09:04 +0200978 LOGINT(LYD_CTX(node));
Michal Vasko00cbf532020-06-15 13:58:47 +0200979 ret = LY_EINT;
980 break;
981 }
982
983 return ret;
984}
985
Michal Vasko3a41dff2020-07-15 14:30:28 +0200986API LY_ERR
Michal Vasko871a0252020-11-11 18:35:24 +0100987lyd_new_meta(const struct ly_ctx *ctx, struct lyd_node *parent, const struct lys_module *module, const char *name,
988 const char *val_str, ly_bool clear_dflt, struct lyd_meta **meta)
Michal Vaskod86997b2020-05-26 15:19:54 +0200989{
Michal Vaskod86997b2020-05-26 15:19:54 +0200990 const char *prefix, *tmp;
Michal Vaskod86997b2020-05-26 15:19:54 +0200991 size_t pref_len, name_len;
992
Michal Vasko871a0252020-11-11 18:35:24 +0100993 LY_CHECK_ARG_RET(NULL, ctx, name, module || strchr(name, ':'), parent || meta, LY_EINVAL);
Michal Vasko00cbf532020-06-15 13:58:47 +0200994
Michal Vasko871a0252020-11-11 18:35:24 +0100995 if (parent && !parent->schema) {
996 LOGERR(ctx, LY_EINVAL, "Cannot add metadata to an opaque node \"%s\".", ((struct lyd_node_opaq *)parent)->name);
997 return LY_EINVAL;
998 }
Michal Vasko610553d2020-11-18 18:15:05 +0100999 if (meta) {
1000 *meta = NULL;
1001 }
Michal Vaskod86997b2020-05-26 15:19:54 +02001002
1003 /* parse the name */
1004 tmp = name;
1005 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
1006 LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name);
Michal Vasko871a0252020-11-11 18:35:24 +01001007 return LY_EINVAL;
Michal Vaskod86997b2020-05-26 15:19:54 +02001008 }
1009
1010 /* find the module */
1011 if (prefix) {
Radek Krejci0ad51f12020-07-16 12:08:12 +02001012 module = ly_ctx_get_module_implemented2(ctx, prefix, pref_len);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001013 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 +02001014 }
1015
1016 /* set value if none */
1017 if (!val_str) {
1018 val_str = "";
1019 }
1020
Michal Vasko871a0252020-11-11 18:35:24 +01001021 return lyd_create_meta(parent, meta, module, name, name_len, val_str, strlen(val_str), NULL, LY_PREF_JSON,
1022 NULL, LYD_HINT_DATA, clear_dflt, NULL);
1023}
Michal Vasko3a41dff2020-07-15 14:30:28 +02001024
Michal Vaskoba696702020-11-11 19:12:45 +01001025API LY_ERR
1026lyd_new_meta2(const struct ly_ctx *ctx, struct lyd_node *parent, ly_bool clear_dflt, const struct lyd_attr *attr,
1027 struct lyd_meta **meta)
1028{
1029 const struct lys_module *mod;
1030
1031 LY_CHECK_ARG_RET(NULL, ctx, attr, parent || meta, LY_EINVAL);
1032
1033 if (parent && !parent->schema) {
1034 LOGERR(ctx, LY_EINVAL, "Cannot add metadata to an opaque node \"%s\".", ((struct lyd_node_opaq *)parent)->name);
1035 return LY_EINVAL;
Michal Vasko3a41dff2020-07-15 14:30:28 +02001036 }
Michal Vasko610553d2020-11-18 18:15:05 +01001037 if (meta) {
1038 *meta = NULL;
1039 }
Michal Vaskoba696702020-11-11 19:12:45 +01001040
1041 switch (attr->format) {
1042 case LY_PREF_XML:
Michal Vaskoad92b672020-11-12 13:11:31 +01001043 mod = ly_ctx_get_module_implemented_ns(ctx, attr->name.module_ns);
Michal Vaskoba696702020-11-11 19:12:45 +01001044 if (!mod) {
Michal Vaskoad92b672020-11-12 13:11:31 +01001045 LOGERR(ctx, LY_EINVAL, "Module with namespace \"%s\" not found.", attr->name.module_ns);
Michal Vaskoba696702020-11-11 19:12:45 +01001046 return LY_ENOTFOUND;
1047 }
1048 break;
1049 case LY_PREF_JSON:
Michal Vaskoad92b672020-11-12 13:11:31 +01001050 mod = ly_ctx_get_module_implemented(ctx, attr->name.module_name);
Michal Vaskoba696702020-11-11 19:12:45 +01001051 if (!mod) {
Michal Vaskoad92b672020-11-12 13:11:31 +01001052 LOGERR(ctx, LY_EINVAL, "Module \"%s\" not found.", attr->name.module_name);
Michal Vaskoba696702020-11-11 19:12:45 +01001053 return LY_ENOTFOUND;
1054 }
1055 break;
1056 default:
1057 LOGINT_RET(ctx);
1058 }
1059
Michal Vaskoad92b672020-11-12 13:11:31 +01001060 return lyd_create_meta(parent, meta, mod, attr->name.name, strlen(attr->name.name), attr->value, strlen(attr->value),
Michal Vaskoba696702020-11-11 19:12:45 +01001061 NULL, attr->format, attr->val_prefix_data, attr->hints, clear_dflt, NULL);
Michal Vaskod86997b2020-05-26 15:19:54 +02001062}
1063
Michal Vasko3a41dff2020-07-15 14:30:28 +02001064API LY_ERR
Michal Vasko00cbf532020-06-15 13:58:47 +02001065lyd_new_opaq(struct lyd_node *parent, const struct ly_ctx *ctx, const char *name, const char *value,
Radek Krejci0f969882020-08-21 16:56:47 +02001066 const char *module_name, struct lyd_node **node)
Michal Vasko00cbf532020-06-15 13:58:47 +02001067{
1068 struct lyd_node *ret = NULL;
1069
Michal Vasko6027eb92020-07-15 16:37:30 +02001070 LY_CHECK_ARG_RET(ctx, parent || ctx, parent || node, name, module_name, LY_EINVAL);
Michal Vasko00cbf532020-06-15 13:58:47 +02001071
1072 if (!ctx) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001073 ctx = LYD_CTX(parent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001074 }
1075 if (!value) {
1076 value = "";
1077 }
1078
Michal Vasko501af032020-11-11 20:27:44 +01001079 LY_CHECK_RET(lyd_create_opaq(ctx, name, strlen(name), NULL, 0, module_name, strlen(module_name), value,
1080 strlen(value), NULL, LY_PREF_JSON, NULL, 0, &ret));
Michal Vasko3a41dff2020-07-15 14:30:28 +02001081 if (parent) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001082 lyd_insert_node(parent, NULL, ret);
1083 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02001084
1085 if (node) {
1086 *node = ret;
1087 }
1088 return LY_SUCCESS;
Michal Vasko00cbf532020-06-15 13:58:47 +02001089}
1090
Michal Vasko3a41dff2020-07-15 14:30:28 +02001091API LY_ERR
1092lyd_new_attr(struct lyd_node *parent, const char *module_name, const char *name, const char *val_str,
Radek Krejci0f969882020-08-21 16:56:47 +02001093 struct lyd_attr **attr)
Michal Vasko00cbf532020-06-15 13:58:47 +02001094{
Radek Krejci1798aae2020-07-14 13:26:06 +02001095 struct lyd_attr *ret = NULL;
Michal Vasko00cbf532020-06-15 13:58:47 +02001096 const struct ly_ctx *ctx;
1097 const char *prefix, *tmp;
Michal Vasko51d21b82020-11-13 18:03:54 +01001098 size_t pref_len, name_len, mod_len;
Michal Vasko00cbf532020-06-15 13:58:47 +02001099
Michal Vasko3a41dff2020-07-15 14:30:28 +02001100 LY_CHECK_ARG_RET(NULL, parent, !parent->schema, name, LY_EINVAL);
Michal Vasko00cbf532020-06-15 13:58:47 +02001101
Michal Vaskob7be7a82020-08-20 09:09:04 +02001102 ctx = LYD_CTX(parent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001103
1104 /* parse the name */
1105 tmp = name;
1106 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
1107 LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001108 return LY_EVALID;
Michal Vasko00cbf532020-06-15 13:58:47 +02001109 }
1110
Michal Vasko51d21b82020-11-13 18:03:54 +01001111 /* get the module */
1112 if (module_name) {
1113 mod_len = strlen(module_name);
1114 } else {
1115 module_name = prefix;
1116 mod_len = pref_len;
1117 }
1118
Michal Vasko00cbf532020-06-15 13:58:47 +02001119 /* set value if none */
1120 if (!val_str) {
1121 val_str = "";
1122 }
1123
Michal Vasko51d21b82020-11-13 18:03:54 +01001124 LY_CHECK_RET(lyd_create_attr(parent, &ret, ctx, name, name_len, prefix, pref_len, module_name, mod_len, val_str,
1125 strlen(val_str), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA));
Michal Vasko3a41dff2020-07-15 14:30:28 +02001126
1127 if (attr) {
1128 *attr = ret;
1129 }
1130 return LY_SUCCESS;
Michal Vasko00cbf532020-06-15 13:58:47 +02001131}
1132
1133API LY_ERR
1134lyd_change_term(struct lyd_node *term, const char *val_str)
1135{
1136 LY_ERR ret = LY_SUCCESS;
1137 struct lysc_type *type;
1138 struct lyd_node_term *t;
1139 struct lyd_node *parent;
1140 struct lyd_value val = {0};
Radek Krejci857189e2020-09-01 13:26:36 +02001141 ly_bool dflt_change, val_change;
Michal Vasko00cbf532020-06-15 13:58:47 +02001142
1143 LY_CHECK_ARG_RET(NULL, term, term->schema, term->schema->nodetype & LYD_NODE_TERM, LY_EINVAL);
1144
1145 if (!val_str) {
1146 val_str = "";
1147 }
1148 t = (struct lyd_node_term *)term;
1149 type = ((struct lysc_node_leaf *)term->schema)->type;
1150
1151 /* parse the new value */
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001152 ret = lyd_value_store(LYD_CTX(term), &val, type, val_str, strlen(val_str), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA,
1153 term->schema, NULL, LY_VLOG_LYD, term);
1154 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001155
1156 /* compare original and new value */
1157 if (type->plugin->compare(&t->value, &val)) {
1158 /* values differ, switch them */
Michal Vaskob7be7a82020-08-20 09:09:04 +02001159 type->plugin->free(LYD_CTX(term), &t->value);
Michal Vasko00cbf532020-06-15 13:58:47 +02001160 t->value = val;
1161 memset(&val, 0, sizeof val);
1162 val_change = 1;
1163 } else {
1164 val_change = 0;
1165 }
1166
1167 /* always clear the default flag */
1168 if (term->flags & LYD_DEFAULT) {
1169 for (parent = term; parent; parent = (struct lyd_node *)parent->parent) {
1170 parent->flags &= ~LYD_DEFAULT;
1171 }
1172 dflt_change = 1;
1173 } else {
1174 dflt_change = 0;
1175 }
1176
1177 if (val_change || dflt_change) {
1178 /* make the node non-validated */
1179 term->flags &= LYD_NEW;
1180 }
1181
1182 if (val_change) {
1183 if (term->schema->nodetype == LYS_LEAFLIST) {
1184 /* leaf-list needs to be hashed again and re-inserted into parent */
1185 lyd_unlink_hash(term);
1186 lyd_hash(term);
1187 LY_CHECK_GOTO(ret = lyd_insert_hash(term), cleanup);
1188 } else if ((term->schema->flags & LYS_KEY) && term->parent) {
1189 /* list needs to be updated if its key was changed */
1190 assert(term->parent->schema->nodetype == LYS_LIST);
1191 lyd_unlink_hash((struct lyd_node *)term->parent);
1192 lyd_hash((struct lyd_node *)term->parent);
1193 LY_CHECK_GOTO(ret = lyd_insert_hash((struct lyd_node *)term->parent), cleanup);
1194 } /* else leaf that is not a key, its value is not used for its hash so it does not change */
1195 }
1196
1197 /* retrun value */
1198 if (!val_change) {
1199 if (dflt_change) {
1200 /* only default flag change */
1201 ret = LY_EEXIST;
1202 } else {
1203 /* no change */
1204 ret = LY_ENOT;
1205 }
1206 } /* else value changed, LY_SUCCESS */
1207
1208cleanup:
Michal Vaskob7be7a82020-08-20 09:09:04 +02001209 type->plugin->free(LYD_CTX(term), &val);
Michal Vasko00cbf532020-06-15 13:58:47 +02001210 return ret;
1211}
1212
Michal Vasko41586352020-07-13 13:54:25 +02001213API LY_ERR
1214lyd_change_meta(struct lyd_meta *meta, const char *val_str)
1215{
1216 LY_ERR ret = LY_SUCCESS;
Radek Krejci2b18bf12020-11-06 11:20:20 +01001217 struct lyd_meta *m2 = NULL;
Michal Vasko41586352020-07-13 13:54:25 +02001218 struct lyd_value val;
Radek Krejci857189e2020-09-01 13:26:36 +02001219 ly_bool val_change;
Michal Vasko41586352020-07-13 13:54:25 +02001220
1221 LY_CHECK_ARG_RET(NULL, meta, LY_EINVAL);
1222
1223 if (!val_str) {
1224 val_str = "";
1225 }
1226
1227 /* parse the new value into a new meta structure */
1228 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 +01001229 strlen(val_str), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, 0, NULL), cleanup);
Michal Vasko41586352020-07-13 13:54:25 +02001230
1231 /* compare original and new value */
1232 if (lyd_compare_meta(meta, m2)) {
1233 /* values differ, switch them */
1234 val = meta->value;
1235 meta->value = m2->value;
1236 m2->value = val;
1237 val_change = 1;
1238 } else {
1239 val_change = 0;
1240 }
1241
1242 /* retrun value */
1243 if (!val_change) {
1244 /* no change */
1245 ret = LY_ENOT;
1246 } /* else value changed, LY_SUCCESS */
1247
1248cleanup:
Michal Vasko1a66a5d2020-11-18 18:15:37 +01001249 lyd_free_meta_single(m2);
Michal Vasko41586352020-07-13 13:54:25 +02001250 return ret;
1251}
1252
Michal Vasko3a41dff2020-07-15 14:30:28 +02001253API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001254lyd_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 +02001255 struct lyd_node **node)
Michal Vasko00cbf532020-06-15 13:58:47 +02001256{
Michal Vasko3a41dff2020-07-15 14:30:28 +02001257 return lyd_new_path2(parent, ctx, path, value, 0, options, node, NULL);
Michal Vasko00cbf532020-06-15 13:58:47 +02001258}
1259
1260API LY_ERR
1261lyd_new_path2(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const void *value,
Radek Krejci1deb5be2020-08-26 16:43:36 +02001262 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 +02001263{
1264 LY_ERR ret = LY_SUCCESS, r;
1265 struct lyxp_expr *exp = NULL;
1266 struct ly_path *p = NULL;
1267 struct lyd_node *nparent = NULL, *nnode = NULL, *node = NULL, *cur_parent;
1268 const struct lysc_node *schema;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001269 LY_ARRAY_COUNT_TYPE path_idx = 0;
Michal Vasko00cbf532020-06-15 13:58:47 +02001270 struct ly_path_predicate *pred;
1271
1272 LY_CHECK_ARG_RET(ctx, parent || ctx, path, (path[0] == '/') || parent, LY_EINVAL);
1273
1274 if (!ctx) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001275 ctx = LYD_CTX(parent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001276 }
1277
1278 /* parse path */
Michal Vasko6b26e742020-07-17 15:02:10 +02001279 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 +02001280 LY_PATH_PREFIX_OPTIONAL, LY_PATH_PRED_SIMPLE, &exp), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001281
1282 /* compile path */
1283 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 +02001284 options & LYD_NEW_PATH_OUTPUT ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT, LY_PATH_TARGET_MANY, LY_PREF_JSON,
Michal Vasko405cc9e2020-12-01 12:01:27 +01001285 NULL, NULL, &p), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001286
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001287 schema = p[LY_ARRAY_COUNT(p) - 1].node;
Michal Vasko69730152020-10-09 16:30:07 +02001288 if ((schema->nodetype == LYS_LIST) && (p[LY_ARRAY_COUNT(p) - 1].pred_type == LY_PATH_PREDTYPE_NONE) &&
Radek Krejci092e33c2020-10-12 15:33:10 +02001289 !(options & LYD_NEW_PATH_OPAQ)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001290 LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_XPATH, "Predicate missing for %s \"%s\" in path.",
Michal Vasko69730152020-10-09 16:30:07 +02001291 lys_nodetype2str(schema->nodetype), schema->name);
Michal Vasko00cbf532020-06-15 13:58:47 +02001292 ret = LY_EINVAL;
1293 goto cleanup;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001294 } 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 +02001295 /* parse leafref value into a predicate, if not defined in the path */
Michal Vasko00cbf532020-06-15 13:58:47 +02001296 if (!value) {
1297 value = "";
1298 }
1299
1300 r = LY_SUCCESS;
Radek Krejci092e33c2020-10-12 15:33:10 +02001301 if (options & LYD_NEW_PATH_OPAQ) {
Michal Vaskof937cfe2020-08-03 16:07:12 +02001302 r = lys_value_validate(NULL, schema, value, strlen(value));
Michal Vasko00cbf532020-06-15 13:58:47 +02001303 }
1304 if (!r) {
Michal Vasko3af81bc2020-11-18 18:16:13 +01001305 /* store the new predicate */
1306 p[LY_ARRAY_COUNT(p) - 1].pred_type = LY_PATH_PREDTYPE_LEAFLIST;
1307 LY_ARRAY_NEW_GOTO(ctx, p[LY_ARRAY_COUNT(p) - 1].predicates, pred, ret, cleanup);
1308
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001309 ret = lyd_value_store(ctx, &pred->value, ((struct lysc_node_leaflist *)schema)->type, value, strlen(value),
1310 NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, schema, NULL, LY_VLOG_LYSC, schema);
1311 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoae875662020-10-21 10:33:17 +02001312 ++((struct lysc_type *)pred->value.realtype)->refcount;
Michal Vasko00cbf532020-06-15 13:58:47 +02001313 } /* else we have opaq flag and the value is not valid, leavne no predicate and then create an opaque node */
1314 }
1315
1316 /* try to find any existing nodes in the path */
1317 if (parent) {
1318 ret = ly_path_eval_partial(p, parent, &path_idx, &node);
1319 if (ret == LY_SUCCESS) {
1320 /* the node exists, are we supposed to update it or is it just a default? */
Radek Krejci092e33c2020-10-12 15:33:10 +02001321 if (!(options & LYD_NEW_PATH_UPDATE) && !(node->flags & LYD_DEFAULT)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001322 LOGERR(ctx, LY_EEXIST, "Path \"%s\" already exists", path);
1323 ret = LY_EEXIST;
1324 goto cleanup;
1325 }
1326
1327 /* update the existing node */
1328 ret = lyd_new_path_update(node, value, value_type, &nparent, &nnode);
1329 goto cleanup;
1330 } else if (ret == LY_EINCOMPLETE) {
1331 /* some nodes were found, adjust the iterator to the next segment */
1332 ++path_idx;
1333 } else if (ret == LY_ENOTFOUND) {
1334 /* 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 +01001335 if (lysc_data_parent(p[0].node)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001336 node = parent;
1337 }
1338 } else {
1339 /* error */
1340 goto cleanup;
1341 }
1342 }
1343
1344 /* create all the non-existing nodes in a loop */
Michal Vaskod989ba02020-08-24 10:59:24 +02001345 for ( ; path_idx < LY_ARRAY_COUNT(p); ++path_idx) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001346 cur_parent = node;
1347 schema = p[path_idx].node;
1348
1349 switch (schema->nodetype) {
1350 case LYS_LIST:
1351 if (!(schema->flags & LYS_KEYLESS)) {
Radek Krejci092e33c2020-10-12 15:33:10 +02001352 if ((options & LYD_NEW_PATH_OPAQ) && (p[path_idx].pred_type == LY_PATH_PREDTYPE_NONE)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001353 /* creating opaque list without keys */
Michal Vasko501af032020-11-11 20:27:44 +01001354 LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), NULL, 0,
1355 schema->module->name, strlen(schema->module->name), NULL, 0, NULL, LY_PREF_JSON, NULL,
1356 LYD_NODEHINT_LIST, &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001357 } else {
1358 assert(p[path_idx].pred_type == LY_PATH_PREDTYPE_LIST);
1359 LY_CHECK_GOTO(ret = lyd_create_list(schema, p[path_idx].predicates, &node), cleanup);
1360 }
1361 break;
1362 }
Radek Krejcif13b87b2020-12-01 22:02:17 +01001363 /* fall through */
Michal Vasko00cbf532020-06-15 13:58:47 +02001364 case LYS_CONTAINER:
1365 case LYS_NOTIF:
1366 case LYS_RPC:
1367 case LYS_ACTION:
1368 LY_CHECK_GOTO(ret = lyd_create_inner(schema, &node), cleanup);
1369 break;
1370 case LYS_LEAFLIST:
Radek Krejci092e33c2020-10-12 15:33:10 +02001371 if ((options & LYD_NEW_PATH_OPAQ) && (p[path_idx].pred_type == LY_PATH_PREDTYPE_NONE)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001372 /* creating opaque leaf-list without value */
Michal Vasko501af032020-11-11 20:27:44 +01001373 LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), NULL, 0,
1374 schema->module->name, strlen(schema->module->name), NULL, 0, NULL, LY_PREF_JSON, NULL,
1375 LYD_NODEHINT_LEAFLIST, &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001376 } else {
1377 assert(p[path_idx].pred_type == LY_PATH_PREDTYPE_LEAFLIST);
1378 LY_CHECK_GOTO(ret = lyd_create_term2(schema, &p[path_idx].predicates[0].value, &node), cleanup);
1379 }
1380 break;
1381 case LYS_LEAF:
1382 /* make there is some value */
1383 if (!value) {
1384 value = "";
1385 }
1386
1387 r = LY_SUCCESS;
Radek Krejci092e33c2020-10-12 15:33:10 +02001388 if (options & LYD_NEW_PATH_OPAQ) {
Michal Vaskof937cfe2020-08-03 16:07:12 +02001389 r = lys_value_validate(NULL, schema, value, strlen(value));
Michal Vasko00cbf532020-06-15 13:58:47 +02001390 }
1391 if (!r) {
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001392 ret = lyd_create_term(schema, value, strlen(value), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, NULL, &node);
1393 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001394 } else {
1395 /* creating opaque leaf without value */
Michal Vasko501af032020-11-11 20:27:44 +01001396 LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), NULL, 0, schema->module->name,
1397 strlen(schema->module->name), NULL, 0, NULL, LY_PREF_JSON, NULL, 0, &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001398 }
1399 break;
1400 case LYS_ANYDATA:
1401 case LYS_ANYXML:
Michal Vasko366a4a12020-12-04 16:23:57 +01001402 LY_CHECK_GOTO(ret = lyd_create_any(schema, value, value_type, 0, &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001403 break;
1404 default:
1405 LOGINT(ctx);
1406 ret = LY_EINT;
1407 goto cleanup;
1408 }
1409
1410 if (cur_parent) {
1411 /* connect to the parent */
1412 lyd_insert_node(cur_parent, NULL, node);
1413 } else if (parent) {
1414 /* connect to top-level siblings */
1415 lyd_insert_node(NULL, &parent, node);
1416 }
1417
1418 /* update remembered nodes */
1419 if (!nparent) {
1420 nparent = node;
1421 }
1422 nnode = node;
1423 }
1424
1425cleanup:
1426 lyxp_expr_free(ctx, exp);
1427 ly_path_free(ctx, p);
1428 if (!ret) {
1429 /* set out params only on success */
1430 if (new_parent) {
1431 *new_parent = nparent;
1432 }
1433 if (new_node) {
1434 *new_node = nnode;
1435 }
1436 }
1437 return ret;
1438}
1439
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001440LY_ERR
1441lyd_new_implicit_r(struct lyd_node *parent, struct lyd_node **first, const struct lysc_node *sparent,
Radek Krejci1deb5be2020-08-26 16:43:36 +02001442 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 +02001443 struct lyd_node **diff)
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001444{
1445 LY_ERR ret;
1446 const struct lysc_node *iter = NULL;
Radek Krejci2b18bf12020-11-06 11:20:20 +01001447 struct lyd_node *node = NULL;
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001448 struct lyd_value **dflts;
1449 LY_ARRAY_COUNT_TYPE u;
1450
1451 assert(first && (parent || sparent || mod));
1452
1453 if (!sparent && parent) {
1454 sparent = parent->schema;
1455 }
1456
1457 while ((iter = lys_getnext(iter, sparent, mod ? mod->compiled : NULL, LYS_GETNEXT_WITHCHOICE))) {
1458 if ((impl_opts & LYD_IMPLICIT_NO_STATE) && (iter->flags & LYS_CONFIG_R)) {
1459 continue;
Michal Vasko44b19a12020-08-07 09:21:30 +02001460 } else if ((impl_opts & LYD_IMPLICIT_NO_CONFIG) && (iter->flags & LYS_CONFIG_W)) {
1461 continue;
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001462 }
1463
1464 switch (iter->nodetype) {
1465 case LYS_CHOICE:
Michal Vaskobcf4d7d2020-11-18 18:16:49 +01001466 node = lys_getnext_data(NULL, *first, NULL, iter, NULL);
1467 if (!node && ((struct lysc_node_choice *)iter)->dflt) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001468 /* create default case data */
1469 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 +02001470 NULL, node_types, node_when, impl_opts, diff));
Michal Vaskobcf4d7d2020-11-18 18:16:49 +01001471 } else if (node) {
1472 /* create any default data in the existing case */
1473 assert(node->schema->parent->nodetype == LYS_CASE);
1474 LY_CHECK_RET(lyd_new_implicit_r(parent, first, node->schema->parent, NULL, node_types, node_when,
1475 impl_opts, diff));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001476 }
1477 break;
1478 case LYS_CONTAINER:
1479 if (!(iter->flags & LYS_PRESENCE) && lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
1480 /* create default NP container */
1481 LY_CHECK_RET(lyd_create_inner(iter, &node));
Michal Vasko0cadfcb2020-11-04 17:17:05 +01001482 node->flags = LYD_DEFAULT | (node->schema->when ? LYD_WHEN_TRUE : 0);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001483 lyd_insert_node(parent, first, node);
1484
1485 /* cannot be a NP container with when */
1486 assert(!iter->when);
1487
Michal Vaskoe49b6322020-11-05 17:38:36 +01001488 if (diff) {
1489 /* add into diff */
1490 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff));
1491 }
1492
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001493 /* create any default children */
1494 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 +02001495 impl_opts, diff));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001496 }
1497 break;
1498 case LYS_LEAF:
Michal Vasko69730152020-10-09 16:30:07 +02001499 if (!(impl_opts & LYD_IMPLICIT_NO_DEFAULTS) && ((struct lysc_node_leaf *)iter)->dflt &&
1500 lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001501 /* create default leaf */
1502 ret = lyd_create_term2(iter, ((struct lysc_node_leaf *)iter)->dflt, &node);
1503 if (ret == LY_EINCOMPLETE) {
1504 if (node_types) {
1505 /* remember to resolve type */
Radek Krejci3d92e442020-10-12 12:48:13 +02001506 LY_CHECK_RET(ly_set_add(node_types, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001507 }
1508 } else if (ret) {
1509 return ret;
1510 }
Michal Vasko0cadfcb2020-11-04 17:17:05 +01001511 node->flags = LYD_DEFAULT | (node->schema->when ? LYD_WHEN_TRUE : 0);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001512 lyd_insert_node(parent, first, node);
1513
1514 if (iter->when && node_when) {
1515 /* remember to resolve when */
Radek Krejci3d92e442020-10-12 12:48:13 +02001516 LY_CHECK_RET(ly_set_add(node_when, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001517 }
1518 if (diff) {
1519 /* add into diff */
1520 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff));
1521 }
1522 }
1523 break;
1524 case LYS_LEAFLIST:
Michal Vasko69730152020-10-09 16:30:07 +02001525 if (!(impl_opts & LYD_IMPLICIT_NO_DEFAULTS) && ((struct lysc_node_leaflist *)iter)->dflts &&
1526 lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001527 /* create all default leaf-lists */
1528 dflts = ((struct lysc_node_leaflist *)iter)->dflts;
1529 LY_ARRAY_FOR(dflts, u) {
1530 ret = lyd_create_term2(iter, dflts[u], &node);
1531 if (ret == LY_EINCOMPLETE) {
1532 if (node_types) {
1533 /* remember to resolve type */
Radek Krejci3d92e442020-10-12 12:48:13 +02001534 LY_CHECK_RET(ly_set_add(node_types, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001535 }
1536 } else if (ret) {
1537 return ret;
1538 }
Radek Krejcic5b54a02020-11-05 17:13:18 +01001539 node->flags = LYD_DEFAULT | (node->schema->when ? LYD_WHEN_TRUE : 0);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001540 lyd_insert_node(parent, first, node);
1541
1542 if (iter->when && node_when) {
1543 /* remember to resolve when */
Radek Krejci3d92e442020-10-12 12:48:13 +02001544 LY_CHECK_RET(ly_set_add(node_when, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001545 }
1546 if (diff) {
1547 /* add into diff */
1548 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff));
1549 }
1550 }
1551 }
1552 break;
1553 default:
1554 /* without defaults */
1555 break;
1556 }
1557 }
1558
1559 return LY_SUCCESS;
1560}
1561
1562API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001563lyd_new_implicit_tree(struct lyd_node *tree, uint32_t implicit_options, struct lyd_node **diff)
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001564{
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001565 LY_ERR ret = LY_SUCCESS;
Michal Vasko3488ada2020-12-03 14:18:19 +01001566 struct lyd_node *node;
1567 struct ly_set node_when = {0};
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001568
1569 LY_CHECK_ARG_RET(NULL, tree, LY_EINVAL);
1570 if (diff) {
1571 *diff = NULL;
1572 }
1573
Michal Vasko56daf732020-08-10 10:57:18 +02001574 LYD_TREE_DFS_BEGIN(tree, node) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001575 /* skip added default nodes */
Michal Vasko69730152020-10-09 16:30:07 +02001576 if (((node->flags & (LYD_DEFAULT | LYD_NEW)) != (LYD_DEFAULT | LYD_NEW)) &&
1577 (node->schema->nodetype & LYD_NODE_INNER)) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001578 LY_CHECK_GOTO(ret = lyd_new_implicit_r(node, lyd_node_children_p((struct lyd_node *)node), NULL, NULL, NULL,
Michal Vasko3488ada2020-12-03 14:18:19 +01001579 &node_when, implicit_options, diff), cleanup);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001580 }
1581
Michal Vasko56daf732020-08-10 10:57:18 +02001582 LYD_TREE_DFS_END(tree, node);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001583 }
1584
Michal Vasko3488ada2020-12-03 14:18:19 +01001585 /* resolve when and remove any invalid defaults */
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001586 LY_CHECK_GOTO(ret = lyd_validate_unres(&tree, NULL, &node_when, NULL, NULL, diff), cleanup);
Michal Vasko3488ada2020-12-03 14:18:19 +01001587
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001588cleanup:
Michal Vasko3488ada2020-12-03 14:18:19 +01001589 ly_set_erase(&node_when, NULL);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001590 if (ret && diff) {
1591 lyd_free_all(*diff);
1592 *diff = NULL;
1593 }
1594 return ret;
1595}
1596
1597API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001598lyd_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 +02001599{
1600 const struct lys_module *mod;
1601 struct lyd_node *d = NULL;
1602 uint32_t i = 0;
1603 LY_ERR ret = LY_SUCCESS;
1604
1605 LY_CHECK_ARG_RET(ctx, tree, *tree || ctx, LY_EINVAL);
1606 if (diff) {
1607 *diff = NULL;
1608 }
1609 if (!ctx) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001610 ctx = LYD_CTX(*tree);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001611 }
1612
1613 /* add nodes for each module one-by-one */
1614 while ((mod = ly_ctx_get_module_iter(ctx, &i))) {
1615 if (!mod->implemented) {
1616 continue;
1617 }
1618
1619 LY_CHECK_GOTO(ret = lyd_new_implicit_module(tree, mod, implicit_options, diff ? &d : NULL), cleanup);
1620 if (d) {
1621 /* merge into one diff */
1622 lyd_insert_sibling(*diff, d, diff);
1623
1624 d = NULL;
1625 }
1626 }
1627
1628cleanup:
1629 if (ret && diff) {
1630 lyd_free_all(*diff);
1631 *diff = NULL;
1632 }
1633 return ret;
1634}
1635
1636API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001637lyd_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 +02001638{
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001639 LY_ERR ret = LY_SUCCESS;
Michal Vasko3488ada2020-12-03 14:18:19 +01001640 struct lyd_node *root, *d = NULL;
1641 struct ly_set node_when = {0};
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001642
1643 LY_CHECK_ARG_RET(NULL, tree, module, LY_EINVAL);
1644 if (diff) {
1645 *diff = NULL;
1646 }
1647
1648 /* add all top-level defaults for this module */
Michal Vasko3488ada2020-12-03 14:18:19 +01001649 LY_CHECK_GOTO(ret = lyd_new_implicit_r(NULL, tree, NULL, module, NULL, &node_when, implicit_options, diff), cleanup);
1650
1651 /* resolve when and remove any invalid defaults */
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001652 LY_CHECK_GOTO(ret = lyd_validate_unres(tree, module, &node_when, NULL, NULL, diff), cleanup);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001653
1654 /* process nested nodes */
1655 LY_LIST_FOR(*tree, root) {
1656 /* skip added default nodes */
1657 if ((root->flags & (LYD_DEFAULT | LYD_NEW)) != (LYD_DEFAULT | LYD_NEW)) {
1658 LY_CHECK_GOTO(ret = lyd_new_implicit_tree(root, implicit_options, diff ? &d : NULL), cleanup);
1659
1660 if (d) {
1661 /* merge into one diff */
1662 lyd_insert_sibling(*diff, d, diff);
1663
1664 d = NULL;
1665 }
1666 }
1667 }
1668
1669cleanup:
Michal Vasko3488ada2020-12-03 14:18:19 +01001670 ly_set_erase(&node_when, NULL);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001671 if (ret && diff) {
1672 lyd_free_all(*diff);
1673 *diff = NULL;
1674 }
1675 return ret;
1676}
1677
Michal Vasko90932a92020-02-12 14:33:03 +01001678struct lyd_node *
Michal Vaskob104f112020-07-17 09:54:54 +02001679lyd_insert_get_next_anchor(const struct lyd_node *first_sibling, const struct lyd_node *new_node)
Michal Vasko90932a92020-02-12 14:33:03 +01001680{
Michal Vaskob104f112020-07-17 09:54:54 +02001681 const struct lysc_node *schema, *sparent;
Michal Vasko90932a92020-02-12 14:33:03 +01001682 struct lyd_node *match = NULL;
Radek Krejci857189e2020-09-01 13:26:36 +02001683 ly_bool found;
Michal Vasko90932a92020-02-12 14:33:03 +01001684
Michal Vaskob104f112020-07-17 09:54:54 +02001685 assert(new_node);
1686
1687 if (!first_sibling || !new_node->schema) {
1688 /* insert at the end, no next anchor */
Michal Vasko90932a92020-02-12 14:33:03 +01001689 return NULL;
1690 }
1691
Michal Vaskob104f112020-07-17 09:54:54 +02001692 if (first_sibling->parent && first_sibling->parent->children_ht) {
1693 /* find the anchor using hashes */
1694 sparent = first_sibling->parent->schema;
1695 schema = lys_getnext(new_node->schema, sparent, NULL, 0);
1696 while (schema) {
1697 /* keep trying to find the first existing instance of the closest following schema sibling,
1698 * otherwise return NULL - inserting at the end */
1699 if (!lyd_find_sibling_schema(first_sibling, schema, &match)) {
1700 break;
1701 }
1702
1703 schema = lys_getnext(schema, sparent, NULL, 0);
1704 }
1705 } else {
1706 /* find the anchor without hashes */
1707 match = (struct lyd_node *)first_sibling;
1708 if (!lysc_data_parent(new_node->schema)) {
1709 /* we are in top-level, skip all the data from preceding modules */
1710 LY_LIST_FOR(match, match) {
1711 if (!match->schema || (strcmp(lyd_owner_module(match)->name, lyd_owner_module(new_node)->name) >= 0)) {
1712 break;
1713 }
1714 }
1715 }
1716
1717 /* get the first schema sibling */
1718 sparent = lysc_data_parent(new_node->schema);
1719 schema = lys_getnext(NULL, sparent, new_node->schema->module->compiled, 0);
1720
1721 found = 0;
1722 LY_LIST_FOR(match, match) {
1723 if (!match->schema || (lyd_owner_module(match) != lyd_owner_module(new_node))) {
1724 /* we have found an opaque node, which must be at the end, so use it OR
1725 * modules do not match, so we must have traversed all the data from new_node module (if any),
1726 * we have found the first node of the next module, that is what we want */
1727 break;
1728 }
1729
1730 /* skip schema nodes until we find the instantiated one */
1731 while (!found) {
1732 if (new_node->schema == schema) {
1733 /* we have found the schema of the new node, continue search to find the first
1734 * data node with a different schema (after our schema) */
1735 found = 1;
1736 break;
1737 }
1738 if (match->schema == schema) {
1739 /* current node (match) is a data node still before the new node, continue search in data */
1740 break;
1741 }
1742 schema = lys_getnext(schema, sparent, new_node->schema->module->compiled, 0);
1743 assert(schema);
1744 }
1745
1746 if (found && (match->schema != new_node->schema)) {
1747 /* find the next node after we have found our node schema data instance */
1748 break;
1749 }
1750 }
Michal Vasko90932a92020-02-12 14:33:03 +01001751 }
1752
1753 return match;
1754}
1755
1756/**
1757 * @brief Insert node after a sibling.
1758 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001759 * Handles inserting into NP containers and key-less lists.
1760 *
Michal Vasko90932a92020-02-12 14:33:03 +01001761 * @param[in] sibling Sibling to insert after.
1762 * @param[in] node Node to insert.
1763 */
1764static void
Michal Vaskof03ed032020-03-04 13:31:44 +01001765lyd_insert_after_node(struct lyd_node *sibling, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001766{
Michal Vasko0249f7c2020-03-05 16:36:40 +01001767 struct lyd_node_inner *par;
1768
Michal Vasko90932a92020-02-12 14:33:03 +01001769 assert(!node->next && (node->prev == node));
1770
1771 node->next = sibling->next;
1772 node->prev = sibling;
1773 sibling->next = node;
1774 if (node->next) {
1775 /* sibling had a succeeding node */
1776 node->next->prev = node;
1777 } else {
1778 /* sibling was last, find first sibling and change its prev */
1779 if (sibling->parent) {
1780 sibling = sibling->parent->child;
1781 } else {
Michal Vaskod989ba02020-08-24 10:59:24 +02001782 for ( ; sibling->prev->next != node; sibling = sibling->prev) {}
Michal Vasko90932a92020-02-12 14:33:03 +01001783 }
1784 sibling->prev = node;
1785 }
1786 node->parent = sibling->parent;
Michal Vasko0249f7c2020-03-05 16:36:40 +01001787
Michal Vasko9f96a052020-03-10 09:41:45 +01001788 for (par = node->parent; par; par = par->parent) {
1789 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
1790 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01001791 par->flags &= ~LYD_DEFAULT;
1792 }
Michal Vaskob104f112020-07-17 09:54:54 +02001793 if (par->schema && (par->schema->nodetype == LYS_LIST) && (par->schema->flags & LYS_KEYLESS)) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001794 /* rehash key-less list */
1795 lyd_hash((struct lyd_node *)par);
1796 }
Michal Vasko0249f7c2020-03-05 16:36:40 +01001797 }
Michal Vasko90932a92020-02-12 14:33:03 +01001798}
1799
1800/**
1801 * @brief Insert node before a sibling.
1802 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001803 * Handles inserting into NP containers and key-less lists.
1804 *
Michal Vasko90932a92020-02-12 14:33:03 +01001805 * @param[in] sibling Sibling to insert before.
1806 * @param[in] node Node to insert.
1807 */
1808static void
Michal Vaskof03ed032020-03-04 13:31:44 +01001809lyd_insert_before_node(struct lyd_node *sibling, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001810{
Michal Vasko0249f7c2020-03-05 16:36:40 +01001811 struct lyd_node_inner *par;
1812
Michal Vasko90932a92020-02-12 14:33:03 +01001813 assert(!node->next && (node->prev == node));
1814
1815 node->next = sibling;
1816 /* covers situation of sibling being first */
1817 node->prev = sibling->prev;
1818 sibling->prev = node;
1819 if (node->prev->next) {
1820 /* sibling had a preceding node */
1821 node->prev->next = node;
1822 } else if (sibling->parent) {
1823 /* sibling was first and we must also change parent child pointer */
1824 sibling->parent->child = node;
1825 }
1826 node->parent = sibling->parent;
Michal Vasko0249f7c2020-03-05 16:36:40 +01001827
Michal Vasko9f96a052020-03-10 09:41:45 +01001828 for (par = node->parent; par; par = par->parent) {
1829 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
1830 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01001831 par->flags &= ~LYD_DEFAULT;
1832 }
Michal Vaskob104f112020-07-17 09:54:54 +02001833 if (par->schema && (par->schema->nodetype == LYS_LIST) && (par->schema->flags & LYS_KEYLESS)) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001834 /* rehash key-less list */
1835 lyd_hash((struct lyd_node *)par);
1836 }
Michal Vasko0249f7c2020-03-05 16:36:40 +01001837 }
Michal Vasko90932a92020-02-12 14:33:03 +01001838}
1839
1840/**
Michal Vaskob104f112020-07-17 09:54:54 +02001841 * @brief Insert node as the first and only child of a parent.
Michal Vasko90932a92020-02-12 14:33:03 +01001842 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001843 * Handles inserting into NP containers and key-less lists.
1844 *
Michal Vasko90932a92020-02-12 14:33:03 +01001845 * @param[in] parent Parent to insert into.
1846 * @param[in] node Node to insert.
1847 */
1848static void
Michal Vaskob104f112020-07-17 09:54:54 +02001849lyd_insert_only_child(struct lyd_node *parent, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001850{
1851 struct lyd_node_inner *par;
1852
Radek Krejcia1c1e542020-09-29 16:06:52 +02001853 assert(parent && !lyd_child(parent) && !node->next && (node->prev == node));
Michal Vasko52927e22020-03-16 17:26:14 +01001854 assert(!parent->schema || (parent->schema->nodetype & LYD_NODE_INNER));
Michal Vasko90932a92020-02-12 14:33:03 +01001855
1856 par = (struct lyd_node_inner *)parent;
1857
Michal Vaskob104f112020-07-17 09:54:54 +02001858 par->child = node;
Michal Vasko90932a92020-02-12 14:33:03 +01001859 node->parent = par;
Michal Vasko0249f7c2020-03-05 16:36:40 +01001860
Michal Vaskod989ba02020-08-24 10:59:24 +02001861 for ( ; par; par = par->parent) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001862 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
1863 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01001864 par->flags &= ~LYD_DEFAULT;
1865 }
Michal Vasko52927e22020-03-16 17:26:14 +01001866 if (par->schema && (par->schema->nodetype == LYS_LIST) && (par->schema->flags & LYS_KEYLESS)) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001867 /* rehash key-less list */
1868 lyd_hash((struct lyd_node *)par);
1869 }
Michal Vasko0249f7c2020-03-05 16:36:40 +01001870 }
Michal Vasko751cb4d2020-07-14 12:25:28 +02001871}
Michal Vasko0249f7c2020-03-05 16:36:40 +01001872
Michal Vasko751cb4d2020-07-14 12:25:28 +02001873/**
1874 * @brief Learn whether a list instance has all the keys.
1875 *
1876 * @param[in] list List instance to check.
1877 * @return non-zero if all the keys were found,
1878 * @return 0 otherwise.
1879 */
1880static int
1881lyd_insert_has_keys(const struct lyd_node *list)
1882{
1883 const struct lyd_node *key;
1884 const struct lysc_node *skey = NULL;
1885
1886 assert(list->schema->nodetype == LYS_LIST);
Radek Krejcia1c1e542020-09-29 16:06:52 +02001887 key = lyd_child(list);
Michal Vasko751cb4d2020-07-14 12:25:28 +02001888 while ((skey = lys_getnext(skey, list->schema, NULL, 0)) && (skey->flags & LYS_KEY)) {
1889 if (!key || (key->schema != skey)) {
1890 /* key missing */
1891 return 0;
1892 }
1893
1894 key = key->next;
1895 }
1896
1897 /* all keys found */
1898 return 1;
Michal Vasko90932a92020-02-12 14:33:03 +01001899}
1900
1901void
Michal Vaskob104f112020-07-17 09:54:54 +02001902lyd_insert_node(struct lyd_node *parent, struct lyd_node **first_sibling_p, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001903{
Michal Vaskob104f112020-07-17 09:54:54 +02001904 struct lyd_node *anchor, *first_sibling;
Michal Vasko90932a92020-02-12 14:33:03 +01001905
Michal Vaskob104f112020-07-17 09:54:54 +02001906 /* inserting list without its keys is not supported */
1907 assert((parent || first_sibling_p) && node && (node->hash || !node->schema));
Michal Vaskof756c942020-11-06 17:21:37 +01001908 assert(!parent || !parent->schema ||
1909 (parent->schema->nodetype & (LYS_CONTAINER | LYS_LIST | LYS_RPC | LYS_ACTION | LYS_NOTIF)));
Michal Vasko9b368d32020-02-14 13:53:31 +01001910
Michal Vaskob104f112020-07-17 09:54:54 +02001911 if (!parent && first_sibling_p && (*first_sibling_p) && (*first_sibling_p)->parent) {
1912 parent = (struct lyd_node *)(*first_sibling_p)->parent;
Michal Vasko9b368d32020-02-14 13:53:31 +01001913 }
Michal Vasko90932a92020-02-12 14:33:03 +01001914
Michal Vaskob104f112020-07-17 09:54:54 +02001915 /* get first sibling */
1916 first_sibling = parent ? ((struct lyd_node_inner *)parent)->child : *first_sibling_p;
Michal Vasko9f96a052020-03-10 09:41:45 +01001917
Michal Vaskob104f112020-07-17 09:54:54 +02001918 /* find the anchor, our next node, so we can insert before it */
1919 anchor = lyd_insert_get_next_anchor(first_sibling, node);
1920 if (anchor) {
1921 lyd_insert_before_node(anchor, node);
Michal Vasko26123192020-11-09 21:02:34 +01001922 if (!parent && (*first_sibling_p == anchor)) {
1923 /* move first sibling */
1924 *first_sibling_p = node;
1925 }
Michal Vaskob104f112020-07-17 09:54:54 +02001926 } else if (first_sibling) {
1927 lyd_insert_after_node(first_sibling->prev, node);
1928 } else if (parent) {
1929 lyd_insert_only_child(parent, node);
Michal Vasko90932a92020-02-12 14:33:03 +01001930 } else {
Michal Vaskob104f112020-07-17 09:54:54 +02001931 *first_sibling_p = node;
1932 }
1933
1934 /* insert into parent HT */
1935 lyd_insert_hash(node);
1936
1937 /* finish hashes for our parent, if needed and possible */
Michal Vasko9e8de2d2020-09-01 08:17:10 +02001938 if (node->schema && (node->schema->flags & LYS_KEY) && parent && lyd_insert_has_keys(parent)) {
Michal Vaskob104f112020-07-17 09:54:54 +02001939 lyd_hash(parent);
1940
1941 /* now we can insert even the list into its parent HT */
1942 lyd_insert_hash(parent);
Michal Vasko90932a92020-02-12 14:33:03 +01001943 }
Michal Vasko90932a92020-02-12 14:33:03 +01001944}
1945
Michal Vaskof03ed032020-03-04 13:31:44 +01001946static LY_ERR
1947lyd_insert_check_schema(const struct lysc_node *parent, const struct lysc_node *schema)
1948{
1949 const struct lysc_node *par2;
1950
1951 assert(schema);
Michal Vasko62ed12d2020-05-21 10:08:25 +02001952 assert(!parent || !(parent->nodetype & (LYS_CASE | LYS_CHOICE)));
Michal Vaskof03ed032020-03-04 13:31:44 +01001953
1954 /* find schema parent */
Michal Vasko62ed12d2020-05-21 10:08:25 +02001955 par2 = lysc_data_parent(schema);
Michal Vaskof03ed032020-03-04 13:31:44 +01001956
1957 if (parent) {
1958 /* inner node */
1959 if (par2 != parent) {
Michal Vaskob104f112020-07-17 09:54:54 +02001960 LOGERR(schema->module->ctx, LY_EINVAL, "Cannot insert, parent of \"%s\" is not \"%s\".", schema->name,
Michal Vasko69730152020-10-09 16:30:07 +02001961 parent->name);
Michal Vaskof03ed032020-03-04 13:31:44 +01001962 return LY_EINVAL;
1963 }
1964 } else {
1965 /* top-level node */
1966 if (par2) {
Radek Krejcif6d14cb2020-07-02 16:11:45 +02001967 LOGERR(schema->module->ctx, LY_EINVAL, "Cannot insert, node \"%s\" is not top-level.", schema->name);
Michal Vaskof03ed032020-03-04 13:31:44 +01001968 return LY_EINVAL;
1969 }
1970 }
1971
1972 return LY_SUCCESS;
1973}
1974
1975API LY_ERR
Michal Vaskob104f112020-07-17 09:54:54 +02001976lyd_insert_child(struct lyd_node *parent, struct lyd_node *node)
Michal Vaskof03ed032020-03-04 13:31:44 +01001977{
1978 struct lyd_node *iter;
1979
Michal Vasko654bc852020-06-23 13:28:06 +02001980 LY_CHECK_ARG_RET(NULL, parent, node, parent->schema->nodetype & LYD_NODE_INNER, LY_EINVAL);
Michal Vaskof03ed032020-03-04 13:31:44 +01001981
1982 LY_CHECK_RET(lyd_insert_check_schema(parent->schema, node->schema));
1983
1984 if (node->schema->flags & LYS_KEY) {
1985 LOGERR(parent->schema->module->ctx, LY_EINVAL, "Cannot insert key \"%s\".", node->schema->name);
1986 return LY_EINVAL;
1987 }
1988
1989 if (node->parent || node->prev->next) {
1990 lyd_unlink_tree(node);
1991 }
1992
1993 while (node) {
1994 iter = node->next;
1995 lyd_unlink_tree(node);
1996 lyd_insert_node(parent, NULL, node);
1997 node = iter;
1998 }
1999 return LY_SUCCESS;
2000}
2001
2002API LY_ERR
Michal Vaskob104f112020-07-17 09:54:54 +02002003lyd_insert_sibling(struct lyd_node *sibling, struct lyd_node *node, struct lyd_node **first)
Michal Vaskob1b5c262020-03-05 14:29:47 +01002004{
2005 struct lyd_node *iter;
2006
Michal Vaskob104f112020-07-17 09:54:54 +02002007 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Michal Vaskob1b5c262020-03-05 14:29:47 +01002008
Michal Vaskob104f112020-07-17 09:54:54 +02002009 if (sibling) {
2010 LY_CHECK_RET(lyd_insert_check_schema(lysc_data_parent(sibling->schema), node->schema));
Michal Vaskob1b5c262020-03-05 14:29:47 +01002011 }
2012
2013 if (node->parent || node->prev->next) {
2014 lyd_unlink_tree(node);
2015 }
2016
2017 while (node) {
Michal Vaskob104f112020-07-17 09:54:54 +02002018 if (node->schema->flags & LYS_KEY) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002019 LOGERR(LYD_CTX(node), LY_EINVAL, "Cannot insert key \"%s\".", node->schema->name);
Michal Vaskob104f112020-07-17 09:54:54 +02002020 return LY_EINVAL;
2021 }
2022
Michal Vaskob1b5c262020-03-05 14:29:47 +01002023 iter = node->next;
2024 lyd_unlink_tree(node);
2025 lyd_insert_node(NULL, &sibling, node);
2026 node = iter;
2027 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01002028
Michal Vaskob104f112020-07-17 09:54:54 +02002029 if (first) {
2030 /* find the first sibling */
2031 *first = sibling;
2032 while ((*first)->prev->next) {
2033 *first = (*first)->prev;
Michal Vasko0249f7c2020-03-05 16:36:40 +01002034 }
2035 }
2036
2037 return LY_SUCCESS;
2038}
2039
Michal Vaskob1b5c262020-03-05 14:29:47 +01002040API LY_ERR
Michal Vaskof03ed032020-03-04 13:31:44 +01002041lyd_insert_before(struct lyd_node *sibling, struct lyd_node *node)
2042{
2043 struct lyd_node *iter;
2044
2045 LY_CHECK_ARG_RET(NULL, sibling, node, LY_EINVAL);
2046
Michal Vasko62ed12d2020-05-21 10:08:25 +02002047 LY_CHECK_RET(lyd_insert_check_schema(lysc_data_parent(sibling->schema), node->schema));
Michal Vaskof03ed032020-03-04 13:31:44 +01002048
Michal Vaskob104f112020-07-17 09:54:54 +02002049 if (!(node->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !(node->schema->flags & LYS_ORDBY_USER)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002050 LOGERR(LYD_CTX(sibling), LY_EINVAL, "Can be used only for user-ordered nodes.");
Michal Vaskof03ed032020-03-04 13:31:44 +01002051 return LY_EINVAL;
2052 }
2053
2054 if (node->parent || node->prev->next) {
2055 lyd_unlink_tree(node);
2056 }
2057
2058 /* insert in reverse order to get the original order */
2059 node = node->prev;
2060 while (node) {
2061 iter = node->prev;
2062 lyd_unlink_tree(node);
2063
2064 lyd_insert_before_node(sibling, node);
Michal Vasko751cb4d2020-07-14 12:25:28 +02002065 lyd_insert_hash(node);
2066
Michal Vaskof03ed032020-03-04 13:31:44 +01002067 /* move the anchor accordingly */
2068 sibling = node;
2069
2070 node = (iter == node) ? NULL : iter;
2071 }
2072 return LY_SUCCESS;
2073}
2074
2075API LY_ERR
2076lyd_insert_after(struct lyd_node *sibling, struct lyd_node *node)
2077{
2078 struct lyd_node *iter;
2079
2080 LY_CHECK_ARG_RET(NULL, sibling, node, LY_EINVAL);
2081
Michal Vasko62ed12d2020-05-21 10:08:25 +02002082 LY_CHECK_RET(lyd_insert_check_schema(lysc_data_parent(sibling->schema), node->schema));
Michal Vaskof03ed032020-03-04 13:31:44 +01002083
Michal Vaskob104f112020-07-17 09:54:54 +02002084 if (!(node->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !(node->schema->flags & LYS_ORDBY_USER)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002085 LOGERR(LYD_CTX(sibling), LY_EINVAL, "Can be used only for user-ordered nodes.");
Michal Vaskof03ed032020-03-04 13:31:44 +01002086 return LY_EINVAL;
2087 }
2088
2089 if (node->parent || node->prev->next) {
2090 lyd_unlink_tree(node);
2091 }
2092
2093 while (node) {
2094 iter = node->next;
2095 lyd_unlink_tree(node);
2096
2097 lyd_insert_after_node(sibling, node);
Michal Vasko751cb4d2020-07-14 12:25:28 +02002098 lyd_insert_hash(node);
2099
Michal Vaskof03ed032020-03-04 13:31:44 +01002100 /* move the anchor accordingly */
2101 sibling = node;
2102
2103 node = iter;
2104 }
2105 return LY_SUCCESS;
2106}
2107
2108API void
2109lyd_unlink_tree(struct lyd_node *node)
2110{
2111 struct lyd_node *iter;
2112
2113 if (!node) {
2114 return;
2115 }
2116
Michal Vaskob104f112020-07-17 09:54:54 +02002117 /* update hashes while still linked into the tree */
2118 lyd_unlink_hash(node);
2119
Michal Vaskof03ed032020-03-04 13:31:44 +01002120 /* unlink from siblings */
2121 if (node->prev->next) {
2122 node->prev->next = node->next;
2123 }
2124 if (node->next) {
2125 node->next->prev = node->prev;
2126 } else {
2127 /* unlinking the last node */
2128 if (node->parent) {
2129 iter = node->parent->child;
2130 } else {
2131 iter = node->prev;
2132 while (iter->prev != node) {
2133 iter = iter->prev;
2134 }
2135 }
2136 /* update the "last" pointer from the first node */
2137 iter->prev = node->prev;
2138 }
2139
2140 /* unlink from parent */
2141 if (node->parent) {
2142 if (node->parent->child == node) {
2143 /* the node is the first child */
2144 node->parent->child = node->next;
2145 }
2146
Michal Vaskoab49dbe2020-07-17 12:32:47 +02002147 /* check for NP container whether its last non-default node is not being unlinked */
Michal Vasko69730152020-10-09 16:30:07 +02002148 if (node->parent->schema && (node->parent->schema->nodetype == LYS_CONTAINER) &&
2149 !(node->parent->flags & LYD_DEFAULT) && !(node->parent->schema->flags & LYS_PRESENCE)) {
Michal Vaskoab49dbe2020-07-17 12:32:47 +02002150 LY_LIST_FOR(node->parent->child, iter) {
2151 if ((iter != node) && !(iter->flags & LYD_DEFAULT)) {
2152 break;
2153 }
2154 }
2155 if (!iter) {
2156 node->parent->flags |= LYD_DEFAULT;
2157 }
2158 }
2159
Michal Vaskof03ed032020-03-04 13:31:44 +01002160 /* check for keyless list and update its hash */
2161 for (iter = (struct lyd_node *)node->parent; iter; iter = (struct lyd_node *)iter->parent) {
Michal Vasko413c7f22020-05-05 12:34:06 +02002162 if (iter->schema && (iter->schema->flags & LYS_KEYLESS)) {
Michal Vaskof03ed032020-03-04 13:31:44 +01002163 lyd_hash(iter);
2164 }
2165 }
2166
2167 node->parent = NULL;
2168 }
2169
2170 node->next = NULL;
2171 node->prev = node;
2172}
2173
Michal Vaskoa5da3292020-08-12 13:10:50 +02002174void
Michal Vasko871a0252020-11-11 18:35:24 +01002175lyd_insert_meta(struct lyd_node *parent, struct lyd_meta *meta, ly_bool clear_dflt)
Radek Krejci1798aae2020-07-14 13:26:06 +02002176{
2177 struct lyd_meta *last, *iter;
2178
2179 assert(parent);
Michal Vaskoa5da3292020-08-12 13:10:50 +02002180
2181 if (!meta) {
2182 return;
2183 }
Radek Krejci1798aae2020-07-14 13:26:06 +02002184
2185 for (iter = meta; iter; iter = iter->next) {
2186 iter->parent = parent;
2187 }
2188
2189 /* insert as the last attribute */
2190 if (parent->meta) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002191 for (last = parent->meta; last->next; last = last->next) {}
Radek Krejci1798aae2020-07-14 13:26:06 +02002192 last->next = meta;
2193 } else {
2194 parent->meta = meta;
2195 }
2196
2197 /* remove default flags from NP containers */
Michal Vasko871a0252020-11-11 18:35:24 +01002198 while (clear_dflt && parent && (parent->schema->nodetype == LYS_CONTAINER) && (parent->flags & LYD_DEFAULT)) {
Radek Krejci1798aae2020-07-14 13:26:06 +02002199 parent->flags &= ~LYD_DEFAULT;
2200 parent = (struct lyd_node *)parent->parent;
2201 }
Radek Krejci1798aae2020-07-14 13:26:06 +02002202}
2203
2204LY_ERR
Michal Vasko9f96a052020-03-10 09:41:45 +01002205lyd_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 +02002206 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 +01002207 void *prefix_data, uint32_t hints, ly_bool clear_dflt, ly_bool *incomplete)
Michal Vasko90932a92020-02-12 14:33:03 +01002208{
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002209 LY_ERR rc;
Michal Vasko90932a92020-02-12 14:33:03 +01002210 struct lysc_ext_instance *ant = NULL;
Michal Vasko9f96a052020-03-10 09:41:45 +01002211 struct lyd_meta *mt, *last;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002212 LY_ARRAY_COUNT_TYPE u;
Michal Vasko90932a92020-02-12 14:33:03 +01002213
Michal Vasko9f96a052020-03-10 09:41:45 +01002214 assert((parent || meta) && mod);
Michal Vasko6f4cbb62020-02-28 11:15:47 +01002215
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002216 LY_ARRAY_FOR(mod->compiled->exts, u) {
Michal Vasko69730152020-10-09 16:30:07 +02002217 if ((mod->compiled->exts[u].def->plugin == lyext_plugins_internal[LYEXT_PLUGIN_INTERNAL_ANNOTATION].plugin) &&
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002218 !ly_strncmp(mod->compiled->exts[u].argument, name, name_len)) {
Michal Vasko90932a92020-02-12 14:33:03 +01002219 /* we have the annotation definition */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002220 ant = &mod->compiled->exts[u];
Michal Vasko90932a92020-02-12 14:33:03 +01002221 break;
2222 }
2223 }
2224 if (!ant) {
2225 /* attribute is not defined as a metadata annotation (RFC 7952) */
2226 LOGERR(mod->ctx, LY_EINVAL, "Annotation definition for attribute \"%s:%.*s\" not found.",
2227 mod->name, name_len, name);
2228 return LY_EINVAL;
2229 }
2230
Michal Vasko9f96a052020-03-10 09:41:45 +01002231 mt = calloc(1, sizeof *mt);
2232 LY_CHECK_ERR_RET(!mt, LOGMEM(mod->ctx), LY_EMEM);
2233 mt->parent = parent;
2234 mt->annotation = ant;
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002235 rc = lyd_value_store(mod->ctx, &mt->value, ((struct lyext_metadata *)ant->data)->type, value, value_len, dynamic,
2236 format, prefix_data, hints, parent ? parent->schema : NULL, incomplete, LY_VLOG_NONE, NULL);
2237 LY_CHECK_ERR_RET(rc, free(mt), rc);
Radek Krejci011e4aa2020-09-04 15:22:31 +02002238 rc = lydict_insert(mod->ctx, name, name_len, &mt->name);
2239 LY_CHECK_ERR_RET(rc, free(mt), rc);
Michal Vasko90932a92020-02-12 14:33:03 +01002240
Michal Vasko6f4cbb62020-02-28 11:15:47 +01002241 /* insert as the last attribute */
2242 if (parent) {
Michal Vasko871a0252020-11-11 18:35:24 +01002243 lyd_insert_meta(parent, mt, clear_dflt);
Michal Vasko9f96a052020-03-10 09:41:45 +01002244 } else if (*meta) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002245 for (last = *meta; last->next; last = last->next) {}
Michal Vasko9f96a052020-03-10 09:41:45 +01002246 last->next = mt;
Michal Vasko90932a92020-02-12 14:33:03 +01002247 }
2248
Michal Vasko9f96a052020-03-10 09:41:45 +01002249 if (meta) {
2250 *meta = mt;
Michal Vasko90932a92020-02-12 14:33:03 +01002251 }
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002252 return LY_SUCCESS;
Michal Vasko90932a92020-02-12 14:33:03 +01002253}
2254
Michal Vaskoa5da3292020-08-12 13:10:50 +02002255void
2256lyd_insert_attr(struct lyd_node *parent, struct lyd_attr *attr)
2257{
2258 struct lyd_attr *last, *iter;
2259 struct lyd_node_opaq *opaq;
2260
2261 assert(parent && !parent->schema);
2262
2263 if (!attr) {
2264 return;
2265 }
2266
2267 opaq = (struct lyd_node_opaq *)parent;
2268 for (iter = attr; iter; iter = iter->next) {
2269 iter->parent = opaq;
2270 }
2271
2272 /* insert as the last attribute */
2273 if (opaq->attr) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002274 for (last = opaq->attr; last->next; last = last->next) {}
Michal Vaskoa5da3292020-08-12 13:10:50 +02002275 last->next = attr;
2276 } else {
2277 opaq->attr = attr;
2278 }
2279}
2280
Michal Vasko52927e22020-03-16 17:26:14 +01002281LY_ERR
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002282lyd_create_attr(struct lyd_node *parent, struct lyd_attr **attr, const struct ly_ctx *ctx, const char *name, size_t name_len,
Michal Vasko501af032020-11-11 20:27:44 +01002283 const char *prefix, size_t prefix_len, const char *module_key, size_t module_key_len, const char *value,
2284 size_t value_len, ly_bool *dynamic, LY_PREFIX_FORMAT format, void *val_prefix_data, uint32_t hints)
Michal Vasko52927e22020-03-16 17:26:14 +01002285{
Radek Krejci011e4aa2020-09-04 15:22:31 +02002286 LY_ERR ret = LY_SUCCESS;
Radek Krejci1798aae2020-07-14 13:26:06 +02002287 struct lyd_attr *at, *last;
Michal Vasko52927e22020-03-16 17:26:14 +01002288
2289 assert(ctx && (parent || attr) && (!parent || !parent->schema));
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002290 assert(name && name_len && format);
Michal Vasko52927e22020-03-16 17:26:14 +01002291
2292 if (!value_len) {
2293 value = "";
2294 }
2295
2296 at = calloc(1, sizeof *at);
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01002297 LY_CHECK_ERR_RET(!at, LOGMEM(ctx); ly_free_prefix_data(format, val_prefix_data), LY_EMEM);
Radek Krejcid46e46a2020-09-15 14:22:42 +02002298
Michal Vaskoad92b672020-11-12 13:11:31 +01002299 LY_CHECK_GOTO(ret = lydict_insert(ctx, name, name_len, &at->name.name), finish);
Michal Vasko501af032020-11-11 20:27:44 +01002300 if (prefix_len) {
Michal Vaskoad92b672020-11-12 13:11:31 +01002301 LY_CHECK_GOTO(ret = lydict_insert(ctx, prefix, prefix_len, &at->name.prefix), finish);
Michal Vasko501af032020-11-11 20:27:44 +01002302 }
2303 if (module_key_len) {
Michal Vaskoad92b672020-11-12 13:11:31 +01002304 LY_CHECK_GOTO(ret = lydict_insert(ctx, module_key, module_key_len, &at->name.module_ns), finish);
Michal Vasko501af032020-11-11 20:27:44 +01002305 }
2306
Michal Vasko52927e22020-03-16 17:26:14 +01002307 if (dynamic && *dynamic) {
Radek Krejci011e4aa2020-09-04 15:22:31 +02002308 ret = lydict_insert_zc(ctx, (char *)value, &at->value);
2309 LY_CHECK_GOTO(ret, finish);
Michal Vasko52927e22020-03-16 17:26:14 +01002310 *dynamic = 0;
2311 } else {
Radek Krejci011e4aa2020-09-04 15:22:31 +02002312 LY_CHECK_GOTO(ret = lydict_insert(ctx, value, value_len, &at->value), finish);
Michal Vasko52927e22020-03-16 17:26:14 +01002313 }
Michal Vasko501af032020-11-11 20:27:44 +01002314 at->format = format;
2315 at->val_prefix_data = val_prefix_data;
2316 at->hints = hints;
Michal Vasko52927e22020-03-16 17:26:14 +01002317
2318 /* insert as the last attribute */
2319 if (parent) {
Michal Vaskoa5da3292020-08-12 13:10:50 +02002320 lyd_insert_attr(parent, at);
Michal Vasko52927e22020-03-16 17:26:14 +01002321 } else if (*attr) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002322 for (last = *attr; last->next; last = last->next) {}
Michal Vasko52927e22020-03-16 17:26:14 +01002323 last->next = at;
2324 }
2325
Radek Krejci011e4aa2020-09-04 15:22:31 +02002326finish:
2327 if (ret) {
2328 lyd_free_attr_single(ctx, at);
2329 } else if (attr) {
Michal Vasko52927e22020-03-16 17:26:14 +01002330 *attr = at;
2331 }
2332 return LY_SUCCESS;
2333}
2334
Radek Krejci084289f2019-07-09 17:35:30 +02002335API const struct lyd_node_term *
Michal Vasko004d3152020-06-11 19:59:22 +02002336lyd_target(const struct ly_path *path, const struct lyd_node *tree)
Radek Krejci084289f2019-07-09 17:35:30 +02002337{
Michal Vasko004d3152020-06-11 19:59:22 +02002338 struct lyd_node *target;
Radek Krejci084289f2019-07-09 17:35:30 +02002339
Michal Vasko004d3152020-06-11 19:59:22 +02002340 if (ly_path_eval(path, tree, &target)) {
2341 return NULL;
Radek Krejci084289f2019-07-09 17:35:30 +02002342 }
2343
Michal Vasko004d3152020-06-11 19:59:22 +02002344 return (struct lyd_node_term *)target;
Radek Krejci084289f2019-07-09 17:35:30 +02002345}
2346
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002347API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002348lyd_compare_single(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options)
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002349{
2350 const struct lyd_node *iter1, *iter2;
2351 struct lyd_node_term *term1, *term2;
2352 struct lyd_node_any *any1, *any2;
Michal Vasko52927e22020-03-16 17:26:14 +01002353 struct lyd_node_opaq *opaq1, *opaq2;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002354 size_t len1, len2;
Radek Krejci084289f2019-07-09 17:35:30 +02002355
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002356 if (!node1 || !node2) {
2357 if (node1 == node2) {
2358 return LY_SUCCESS;
2359 } else {
2360 return LY_ENOT;
2361 }
2362 }
2363
Michal Vaskob7be7a82020-08-20 09:09:04 +02002364 if ((LYD_CTX(node1) != LYD_CTX(node2)) || (node1->schema != node2->schema)) {
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002365 return LY_ENOT;
2366 }
2367
2368 if (node1->hash != node2->hash) {
2369 return LY_ENOT;
2370 }
Michal Vasko52927e22020-03-16 17:26:14 +01002371 /* 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 +02002372
Michal Vasko52927e22020-03-16 17:26:14 +01002373 if (!node1->schema) {
2374 opaq1 = (struct lyd_node_opaq *)node1;
2375 opaq2 = (struct lyd_node_opaq *)node2;
Michal Vaskoad92b672020-11-12 13:11:31 +01002376 if ((opaq1->name.name != opaq2->name.name) || (opaq1->format != opaq2->format) ||
2377 (opaq1->name.module_ns != opaq2->name.module_ns)) {
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002378 return LY_ENOT;
2379 }
Michal Vasko52927e22020-03-16 17:26:14 +01002380 switch (opaq1->format) {
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01002381 case LY_PREF_XML:
2382 if (lyxml_value_compare(LYD_CTX(node1), opaq1->value, opaq1->val_prefix_data, opaq2->value, opaq2->val_prefix_data)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002383 return LY_ENOT;
2384 }
2385 break;
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01002386 case LY_PREF_JSON:
Radek Krejci1798aae2020-07-14 13:26:06 +02002387 /* prefixes in JSON are unique, so it is not necessary to canonize the values */
2388 if (strcmp(opaq1->value, opaq2->value)) {
2389 return LY_ENOT;
2390 }
2391 break;
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01002392 default:
Michal Vasko52927e22020-03-16 17:26:14 +01002393 /* not allowed */
Michal Vaskob7be7a82020-08-20 09:09:04 +02002394 LOGINT(LYD_CTX(node1));
Michal Vasko52927e22020-03-16 17:26:14 +01002395 return LY_EINT;
2396 }
2397 if (options & LYD_COMPARE_FULL_RECURSION) {
2398 iter1 = opaq1->child;
2399 iter2 = opaq2->child;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002400 goto all_children_compare;
Michal Vasko52927e22020-03-16 17:26:14 +01002401 }
2402 return LY_SUCCESS;
2403 } else {
2404 switch (node1->schema->nodetype) {
2405 case LYS_LEAF:
2406 case LYS_LEAFLIST:
2407 if (options & LYD_COMPARE_DEFAULTS) {
2408 if ((node1->flags & LYD_DEFAULT) != (node2->flags & LYD_DEFAULT)) {
2409 return LY_ENOT;
2410 }
2411 }
2412
Michal Vasko1a2bf2e2020-06-16 13:07:48 +02002413 term1 = (struct lyd_node_term *)node1;
2414 term2 = (struct lyd_node_term *)node2;
2415 if (term1->value.realtype != term2->value.realtype) {
2416 return LY_ENOT;
2417 }
Michal Vasko52927e22020-03-16 17:26:14 +01002418
Michal Vasko1a2bf2e2020-06-16 13:07:48 +02002419 return term1->value.realtype->plugin->compare(&term1->value, &term2->value);
Michal Vasko52927e22020-03-16 17:26:14 +01002420 case LYS_CONTAINER:
2421 if (options & LYD_COMPARE_DEFAULTS) {
2422 if ((node1->flags & LYD_DEFAULT) != (node2->flags & LYD_DEFAULT)) {
2423 return LY_ENOT;
2424 }
2425 }
2426 if (options & LYD_COMPARE_FULL_RECURSION) {
Michal Vasko22df3f02020-08-24 13:29:22 +02002427 iter1 = ((struct lyd_node_inner *)node1)->child;
2428 iter2 = ((struct lyd_node_inner *)node2)->child;
Michal Vasko52927e22020-03-16 17:26:14 +01002429 goto all_children_compare;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002430 }
2431 return LY_SUCCESS;
Michal Vasko1bf09392020-03-27 12:38:10 +01002432 case LYS_RPC:
Michal Vasko52927e22020-03-16 17:26:14 +01002433 case LYS_ACTION:
2434 if (options & LYD_COMPARE_FULL_RECURSION) {
2435 /* TODO action/RPC
2436 goto all_children_compare;
2437 */
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002438 }
2439 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01002440 case LYS_NOTIF:
2441 if (options & LYD_COMPARE_FULL_RECURSION) {
2442 /* TODO Notification
2443 goto all_children_compare;
2444 */
2445 }
2446 return LY_SUCCESS;
2447 case LYS_LIST:
Michal Vasko22df3f02020-08-24 13:29:22 +02002448 iter1 = ((struct lyd_node_inner *)node1)->child;
2449 iter2 = ((struct lyd_node_inner *)node2)->child;
Michal Vasko52927e22020-03-16 17:26:14 +01002450
2451 if (!(node1->schema->flags & LYS_KEYLESS) && !(options & LYD_COMPARE_FULL_RECURSION)) {
2452 /* lists with keys, their equivalence is based on their keys */
Michal Vasko22df3f02020-08-24 13:29:22 +02002453 for (struct lysc_node *key = ((struct lysc_node_list *)node1->schema)->child;
Michal Vaskoc57d9a92020-06-23 13:28:27 +02002454 key && (key->flags & LYS_KEY);
Michal Vasko52927e22020-03-16 17:26:14 +01002455 key = key->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02002456 if (lyd_compare_single(iter1, iter2, options)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002457 return LY_ENOT;
2458 }
2459 iter1 = iter1->next;
2460 iter2 = iter2->next;
2461 }
2462 } else {
2463 /* lists without keys, their equivalence is based on equivalence of all the children (both direct and indirect) */
2464
Radek Krejci0f969882020-08-21 16:56:47 +02002465all_children_compare:
Michal Vasko52927e22020-03-16 17:26:14 +01002466 if (!iter1 && !iter2) {
2467 /* no children, nothing to compare */
2468 return LY_SUCCESS;
2469 }
2470
Michal Vaskod989ba02020-08-24 10:59:24 +02002471 for ( ; iter1 && iter2; iter1 = iter1->next, iter2 = iter2->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02002472 if (lyd_compare_single(iter1, iter2, options | LYD_COMPARE_FULL_RECURSION)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002473 return LY_ENOT;
2474 }
2475 }
2476 if (iter1 || iter2) {
2477 return LY_ENOT;
2478 }
2479 }
2480 return LY_SUCCESS;
2481 case LYS_ANYXML:
2482 case LYS_ANYDATA:
Michal Vasko22df3f02020-08-24 13:29:22 +02002483 any1 = (struct lyd_node_any *)node1;
2484 any2 = (struct lyd_node_any *)node2;
Michal Vasko52927e22020-03-16 17:26:14 +01002485
2486 if (any1->value_type != any2->value_type) {
2487 return LY_ENOT;
2488 }
2489 switch (any1->value_type) {
2490 case LYD_ANYDATA_DATATREE:
2491 iter1 = any1->value.tree;
2492 iter2 = any2->value.tree;
2493 goto all_children_compare;
2494 case LYD_ANYDATA_STRING:
2495 case LYD_ANYDATA_XML:
2496 case LYD_ANYDATA_JSON:
2497 len1 = strlen(any1->value.str);
2498 len2 = strlen(any2->value.str);
Michal Vasko69730152020-10-09 16:30:07 +02002499 if ((len1 != len2) || strcmp(any1->value.str, any2->value.str)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002500 return LY_ENOT;
2501 }
2502 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01002503 case LYD_ANYDATA_LYB:
Michal Vasko60ea6352020-06-29 13:39:39 +02002504 len1 = lyd_lyb_data_length(any1->value.mem);
2505 len2 = lyd_lyb_data_length(any2->value.mem);
Michal Vasko69730152020-10-09 16:30:07 +02002506 if ((len1 != len2) || memcmp(any1->value.mem, any2->value.mem, len1)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002507 return LY_ENOT;
2508 }
2509 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01002510 }
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002511 }
2512 }
2513
Michal Vaskob7be7a82020-08-20 09:09:04 +02002514 LOGINT(LYD_CTX(node1));
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002515 return LY_EINT;
2516}
Radek Krejci22ebdba2019-07-25 13:59:43 +02002517
Michal Vasko21725742020-06-29 11:49:25 +02002518API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002519lyd_compare_siblings(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options)
Michal Vasko8f359bf2020-07-28 10:41:15 +02002520{
Michal Vaskod989ba02020-08-24 10:59:24 +02002521 for ( ; node1 && node2; node1 = node1->next, node2 = node2->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02002522 LY_CHECK_RET(lyd_compare_single(node1, node2, options));
2523 }
2524
Michal Vasko11a81432020-07-28 16:31:29 +02002525 if (node1 == node2) {
2526 return LY_SUCCESS;
Michal Vasko8f359bf2020-07-28 10:41:15 +02002527 }
Michal Vasko11a81432020-07-28 16:31:29 +02002528 return LY_ENOT;
Michal Vasko8f359bf2020-07-28 10:41:15 +02002529}
2530
2531API LY_ERR
Michal Vasko21725742020-06-29 11:49:25 +02002532lyd_compare_meta(const struct lyd_meta *meta1, const struct lyd_meta *meta2)
2533{
2534 if (!meta1 || !meta2) {
2535 if (meta1 == meta2) {
2536 return LY_SUCCESS;
2537 } else {
2538 return LY_ENOT;
2539 }
2540 }
2541
Michal Vaskoa8083062020-11-06 17:22:10 +01002542 if ((meta1->annotation->module->ctx != meta2->annotation->module->ctx) || (meta1->annotation != meta2->annotation)) {
Michal Vasko21725742020-06-29 11:49:25 +02002543 return LY_ENOT;
2544 }
2545
2546 if (meta1->value.realtype != meta2->value.realtype) {
2547 return LY_ENOT;
2548 }
2549
2550 return meta1->value.realtype->plugin->compare(&meta1->value, &meta2->value);
2551}
2552
Radek Krejci22ebdba2019-07-25 13:59:43 +02002553/**
Michal Vasko52927e22020-03-16 17:26:14 +01002554 * @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 +02002555 *
2556 * 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 +02002557 *
2558 * @param[in] node Original node to duplicate
2559 * @param[in] parent Parent to insert into, NULL for top-level sibling.
2560 * @param[in,out] first First sibling, NULL if no top-level sibling exist yet. Can be also NULL if @p parent is set.
2561 * @param[in] options Bitmask of options flags, see @ref dupoptions.
2562 * @param[out] dup_p Pointer where the created duplicated node is placed (besides connecting it int @p parent / @p first sibling).
2563 * @return LY_ERR value
Radek Krejci22ebdba2019-07-25 13:59:43 +02002564 */
Michal Vasko52927e22020-03-16 17:26:14 +01002565static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002566lyd_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 +02002567 struct lyd_node **dup_p)
Radek Krejci22ebdba2019-07-25 13:59:43 +02002568{
Michal Vasko52927e22020-03-16 17:26:14 +01002569 LY_ERR ret;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002570 struct lyd_node *dup = NULL;
Michal Vasko61551fa2020-07-09 15:45:45 +02002571 struct lyd_meta *meta;
2572 struct lyd_node_any *any;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002573
Michal Vasko52927e22020-03-16 17:26:14 +01002574 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002575
Michal Vasko52927e22020-03-16 17:26:14 +01002576 if (!node->schema) {
2577 dup = calloc(1, sizeof(struct lyd_node_opaq));
2578 } else {
2579 switch (node->schema->nodetype) {
Michal Vasko1bf09392020-03-27 12:38:10 +01002580 case LYS_RPC:
Michal Vasko52927e22020-03-16 17:26:14 +01002581 case LYS_ACTION:
2582 case LYS_NOTIF:
2583 case LYS_CONTAINER:
2584 case LYS_LIST:
2585 dup = calloc(1, sizeof(struct lyd_node_inner));
2586 break;
2587 case LYS_LEAF:
2588 case LYS_LEAFLIST:
2589 dup = calloc(1, sizeof(struct lyd_node_term));
2590 break;
2591 case LYS_ANYDATA:
2592 case LYS_ANYXML:
2593 dup = calloc(1, sizeof(struct lyd_node_any));
2594 break;
2595 default:
Michal Vaskob7be7a82020-08-20 09:09:04 +02002596 LOGINT(LYD_CTX(node));
Michal Vasko52927e22020-03-16 17:26:14 +01002597 ret = LY_EINT;
2598 goto error;
2599 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02002600 }
Michal Vaskob7be7a82020-08-20 09:09:04 +02002601 LY_CHECK_ERR_GOTO(!dup, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002602
Michal Vaskof6df0a02020-06-16 13:08:34 +02002603 if (options & LYD_DUP_WITH_FLAGS) {
2604 dup->flags = node->flags;
2605 } else {
2606 dup->flags = (node->flags & LYD_DEFAULT) | LYD_NEW;
2607 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02002608 dup->schema = node->schema;
Michal Vasko52927e22020-03-16 17:26:14 +01002609 dup->prev = dup;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002610
Michal Vasko25a32822020-07-09 15:48:22 +02002611 /* duplicate metadata */
2612 if (!(options & LYD_DUP_NO_META)) {
2613 LY_LIST_FOR(node->meta, meta) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002614 LY_CHECK_GOTO(ret = lyd_dup_meta_single(meta, dup, NULL), error);
Michal Vasko25a32822020-07-09 15:48:22 +02002615 }
2616 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02002617
2618 /* nodetype-specific work */
Michal Vasko52927e22020-03-16 17:26:14 +01002619 if (!dup->schema) {
2620 struct lyd_node_opaq *opaq = (struct lyd_node_opaq *)dup;
2621 struct lyd_node_opaq *orig = (struct lyd_node_opaq *)node;
2622 struct lyd_node *child;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002623
2624 if (options & LYD_DUP_RECURSIVE) {
2625 /* duplicate all the children */
2626 LY_LIST_FOR(orig->child, child) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002627 LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, NULL, options, NULL), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002628 }
2629 }
Michal Vaskoad92b672020-11-12 13:11:31 +01002630 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->name.name, 0, &opaq->name.name), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002631 opaq->format = orig->format;
Michal Vaskoad92b672020-11-12 13:11:31 +01002632 if (orig->name.prefix) {
2633 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->name.prefix, 0, &opaq->name.prefix), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002634 }
Michal Vaskoad92b672020-11-12 13:11:31 +01002635 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->name.module_ns, 0, &opaq->name.module_ns), error);
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01002636 if (orig->val_prefix_data) {
2637 ret = ly_dup_prefix_data(LYD_CTX(node), opaq->format, orig->val_prefix_data, &opaq->val_prefix_data);
2638 LY_CHECK_GOTO(ret, error);
Michal Vasko52927e22020-03-16 17:26:14 +01002639 }
Radek Krejci011e4aa2020-09-04 15:22:31 +02002640 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->value, 0, &opaq->value), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002641 opaq->ctx = orig->ctx;
2642 } else if (dup->schema->nodetype & LYD_NODE_TERM) {
2643 struct lyd_node_term *term = (struct lyd_node_term *)dup;
2644 struct lyd_node_term *orig = (struct lyd_node_term *)node;
2645
2646 term->hash = orig->hash;
Michal Vaskob7be7a82020-08-20 09:09:04 +02002647 LY_CHECK_ERR_GOTO(orig->value.realtype->plugin->duplicate(LYD_CTX(node), &orig->value, &term->value),
Michal Vasko69730152020-10-09 16:30:07 +02002648 LOGERR(LYD_CTX(node), LY_EINT, "Value duplication failed."); ret = LY_EINT, error);
Michal Vasko52927e22020-03-16 17:26:14 +01002649 } else if (dup->schema->nodetype & LYD_NODE_INNER) {
2650 struct lyd_node_inner *orig = (struct lyd_node_inner *)node;
2651 struct lyd_node *child;
2652
2653 if (options & LYD_DUP_RECURSIVE) {
2654 /* duplicate all the children */
2655 LY_LIST_FOR(orig->child, child) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002656 LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, NULL, options, NULL), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002657 }
Michal Vasko69730152020-10-09 16:30:07 +02002658 } else if ((dup->schema->nodetype == LYS_LIST) && !(dup->schema->flags & LYS_KEYLESS)) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02002659 /* always duplicate keys of a list */
Radek Krejci22ebdba2019-07-25 13:59:43 +02002660 child = orig->child;
Michal Vasko52927e22020-03-16 17:26:14 +01002661 for (struct lysc_node *key = ((struct lysc_node_list *)dup->schema)->child;
Michal Vaskoc57d9a92020-06-23 13:28:27 +02002662 key && (key->flags & LYS_KEY);
Radek Krejci0fe9b512019-07-26 17:51:05 +02002663 key = key->next) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02002664 if (!child) {
2665 /* possibly not keys are present in filtered tree */
2666 break;
Radek Krejci0fe9b512019-07-26 17:51:05 +02002667 } else if (child->schema != key) {
2668 /* possibly not all keys are present in filtered tree,
2669 * but there can be also some non-key nodes */
2670 continue;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002671 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002672 LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, NULL, options, NULL), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002673 child = child->next;
2674 }
2675 }
2676 lyd_hash(dup);
2677 } else if (dup->schema->nodetype & LYD_NODE_ANY) {
Michal Vasko61551fa2020-07-09 15:45:45 +02002678 dup->hash = node->hash;
2679 any = (struct lyd_node_any *)node;
2680 LY_CHECK_GOTO(ret = lyd_any_copy_value(dup, &any->value, any->value_type), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002681 }
2682
Michal Vasko52927e22020-03-16 17:26:14 +01002683 /* insert */
2684 lyd_insert_node(parent, first, dup);
Michal Vasko52927e22020-03-16 17:26:14 +01002685
2686 if (dup_p) {
2687 *dup_p = dup;
2688 }
2689 return LY_SUCCESS;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002690
2691error:
Michal Vasko52927e22020-03-16 17:26:14 +01002692 lyd_free_tree(dup);
2693 return ret;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002694}
2695
Michal Vasko3a41dff2020-07-15 14:30:28 +02002696static LY_ERR
2697lyd_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 +02002698 struct lyd_node_inner **local_parent)
Radek Krejci22ebdba2019-07-25 13:59:43 +02002699{
Michal Vasko3a41dff2020-07-15 14:30:28 +02002700 const struct lyd_node_inner *orig_parent, *iter;
Radek Krejci857189e2020-09-01 13:26:36 +02002701 ly_bool repeat = 1;
Michal Vasko3a41dff2020-07-15 14:30:28 +02002702
2703 *dup_parent = NULL;
2704 *local_parent = NULL;
2705
2706 for (orig_parent = node->parent; repeat && orig_parent; orig_parent = orig_parent->parent) {
2707 if (parent && (parent->schema == orig_parent->schema)) {
2708 /* stop creating parents, connect what we have into the provided parent */
2709 iter = parent;
2710 repeat = 0;
2711 } else {
2712 iter = NULL;
2713 LY_CHECK_RET(lyd_dup_r((struct lyd_node *)orig_parent, NULL, (struct lyd_node **)&iter, 0,
Radek Krejci0f969882020-08-21 16:56:47 +02002714 (struct lyd_node **)&iter));
Michal Vasko3a41dff2020-07-15 14:30:28 +02002715 }
2716 if (!*local_parent) {
2717 *local_parent = (struct lyd_node_inner *)iter;
2718 }
2719 if (iter->child) {
2720 /* 1) list - add after keys
2721 * 2) provided parent with some children */
2722 iter->child->prev->next = *dup_parent;
2723 if (*dup_parent) {
2724 (*dup_parent)->prev = iter->child->prev;
2725 iter->child->prev = *dup_parent;
2726 }
2727 } else {
2728 ((struct lyd_node_inner *)iter)->child = *dup_parent;
2729 }
2730 if (*dup_parent) {
2731 (*dup_parent)->parent = (struct lyd_node_inner *)iter;
2732 }
2733 *dup_parent = (struct lyd_node *)iter;
2734 }
2735
2736 if (repeat && parent) {
2737 /* given parent and created parents chain actually do not interconnect */
Michal Vaskob7be7a82020-08-20 09:09:04 +02002738 LOGERR(LYD_CTX(node), LY_EINVAL,
Michal Vasko69730152020-10-09 16:30:07 +02002739 "Invalid argument parent (%s()) - does not interconnect with the created node's parents chain.", __func__);
Michal Vasko3a41dff2020-07-15 14:30:28 +02002740 return LY_EINVAL;
2741 }
2742
2743 return LY_SUCCESS;
2744}
2745
2746static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02002747lyd_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 +02002748{
2749 LY_ERR rc;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002750 const struct lyd_node *orig; /* original node to be duplicated */
2751 struct lyd_node *first = NULL; /* the first duplicated node, this is returned */
Radek Krejci22ebdba2019-07-25 13:59:43 +02002752 struct lyd_node *top = NULL; /* the most higher created node */
2753 struct lyd_node_inner *local_parent = NULL; /* the direct parent node for the duplicated node(s) */
Radek Krejci22ebdba2019-07-25 13:59:43 +02002754
Michal Vasko3a41dff2020-07-15 14:30:28 +02002755 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002756
2757 if (options & LYD_DUP_WITH_PARENTS) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002758 LY_CHECK_GOTO(rc = lyd_dup_get_local_parent(node, parent, &top, &local_parent), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002759 } else {
2760 local_parent = parent;
2761 }
2762
Radek Krejci22ebdba2019-07-25 13:59:43 +02002763 LY_LIST_FOR(node, orig) {
Michal Vasko52927e22020-03-16 17:26:14 +01002764 /* if there is no local parent, it will be inserted into first */
Michal Vasko3a41dff2020-07-15 14:30:28 +02002765 LY_CHECK_GOTO(rc = lyd_dup_r(orig, (struct lyd_node *)local_parent, &first, options, first ? NULL : &first), error);
2766 if (nosiblings) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02002767 break;
2768 }
2769 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002770
2771 /* rehash if needed */
Michal Vaskod989ba02020-08-24 10:59:24 +02002772 for ( ; local_parent; local_parent = local_parent->parent) {
Michal Vasko69730152020-10-09 16:30:07 +02002773 if ((local_parent->schema->nodetype == LYS_LIST) && (local_parent->schema->flags & LYS_KEYLESS)) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002774 lyd_hash((struct lyd_node *)local_parent);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002775 }
2776 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002777
2778 if (dup) {
2779 *dup = first;
2780 }
2781 return LY_SUCCESS;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002782
2783error:
2784 if (top) {
2785 lyd_free_tree(top);
2786 } else {
Michal Vaskof03ed032020-03-04 13:31:44 +01002787 lyd_free_siblings(first);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002788 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002789 return rc;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002790}
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002791
Michal Vasko3a41dff2020-07-15 14:30:28 +02002792API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002793lyd_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 +02002794{
2795 return lyd_dup(node, parent, options, 1, dup);
2796}
2797
2798API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002799lyd_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 +02002800{
2801 return lyd_dup(node, parent, options, 0, dup);
2802}
2803
2804API LY_ERR
2805lyd_dup_meta_single(const struct lyd_meta *meta, struct lyd_node *node, struct lyd_meta **dup)
Michal Vasko25a32822020-07-09 15:48:22 +02002806{
Radek Krejci011e4aa2020-09-04 15:22:31 +02002807 LY_ERR ret = LY_SUCCESS;
Michal Vasko25a32822020-07-09 15:48:22 +02002808 struct lyd_meta *mt, *last;
2809
Michal Vasko3a41dff2020-07-15 14:30:28 +02002810 LY_CHECK_ARG_RET(NULL, meta, node, LY_EINVAL);
Michal Vasko25a32822020-07-09 15:48:22 +02002811
2812 /* create a copy */
2813 mt = calloc(1, sizeof *mt);
Michal Vaskob7be7a82020-08-20 09:09:04 +02002814 LY_CHECK_ERR_RET(!mt, LOGMEM(LYD_CTX(node)), LY_EMEM);
Michal Vasko25a32822020-07-09 15:48:22 +02002815 mt->annotation = meta->annotation;
Michal Vaskob7be7a82020-08-20 09:09:04 +02002816 ret = meta->value.realtype->plugin->duplicate(LYD_CTX(node), &meta->value, &mt->value);
Radek Krejci011e4aa2020-09-04 15:22:31 +02002817 LY_CHECK_ERR_GOTO(ret, LOGERR(LYD_CTX(node), LY_EINT, "Value duplication failed."), finish);
2818 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), meta->name, 0, &mt->name), finish);
Michal Vasko25a32822020-07-09 15:48:22 +02002819
2820 /* insert as the last attribute */
Radek Krejci011e4aa2020-09-04 15:22:31 +02002821 mt->parent = node;
Michal Vasko25a32822020-07-09 15:48:22 +02002822 if (node->meta) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002823 for (last = node->meta; last->next; last = last->next) {}
Michal Vasko25a32822020-07-09 15:48:22 +02002824 last->next = mt;
2825 } else {
2826 node->meta = mt;
2827 }
2828
Radek Krejci011e4aa2020-09-04 15:22:31 +02002829finish:
2830 if (ret) {
2831 lyd_free_meta_single(mt);
2832 } else if (dup) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002833 *dup = mt;
2834 }
2835 return LY_SUCCESS;
Michal Vasko25a32822020-07-09 15:48:22 +02002836}
2837
Michal Vasko4490d312020-06-16 13:08:55 +02002838/**
2839 * @brief Merge a source sibling into target siblings.
2840 *
2841 * @param[in,out] first_trg First target sibling, is updated if top-level.
2842 * @param[in] parent_trg Target parent.
2843 * @param[in,out] sibling_src Source sibling to merge, set to NULL if spent.
2844 * @param[in] options Merge options.
2845 * @return LY_ERR value.
2846 */
2847static LY_ERR
2848lyd_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 +02002849 uint16_t options)
Michal Vasko4490d312020-06-16 13:08:55 +02002850{
2851 LY_ERR ret;
2852 const struct lyd_node *child_src, *tmp, *sibling_src;
Michal Vasko56daf732020-08-10 10:57:18 +02002853 struct lyd_node *match_trg, *dup_src, *elem;
Michal Vasko4490d312020-06-16 13:08:55 +02002854 struct lysc_type *type;
Michal Vasko4490d312020-06-16 13:08:55 +02002855
2856 sibling_src = *sibling_src_p;
2857 if (sibling_src->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) {
2858 /* try to find the exact instance */
2859 ret = lyd_find_sibling_first(*first_trg, sibling_src, &match_trg);
2860 } else {
2861 /* try to simply find the node, there cannot be more instances */
2862 ret = lyd_find_sibling_val(*first_trg, sibling_src->schema, NULL, 0, &match_trg);
2863 }
2864
2865 if (!ret) {
2866 /* node found, make sure even value matches for all node types */
Michal Vasko8f359bf2020-07-28 10:41:15 +02002867 if ((match_trg->schema->nodetype == LYS_LEAF) && lyd_compare_single(sibling_src, match_trg, LYD_COMPARE_DEFAULTS)) {
Michal Vasko4490d312020-06-16 13:08:55 +02002868 /* since they are different, they cannot both be default */
2869 assert(!(sibling_src->flags & LYD_DEFAULT) || !(match_trg->flags & LYD_DEFAULT));
2870
Michal Vasko3a41dff2020-07-15 14:30:28 +02002871 /* update value (or only LYD_DEFAULT flag) only if flag set or the source node is not default */
2872 if ((options & LYD_MERGE_DEFAULTS) || !(sibling_src->flags & LYD_DEFAULT)) {
Michal Vasko4490d312020-06-16 13:08:55 +02002873 type = ((struct lysc_node_leaf *)match_trg->schema)->type;
Michal Vaskob7be7a82020-08-20 09:09:04 +02002874 type->plugin->free(LYD_CTX(match_trg), &((struct lyd_node_term *)match_trg)->value);
2875 LY_CHECK_RET(type->plugin->duplicate(LYD_CTX(match_trg), &((struct lyd_node_term *)sibling_src)->value,
Michal Vasko69730152020-10-09 16:30:07 +02002876 &((struct lyd_node_term *)match_trg)->value));
Michal Vasko4490d312020-06-16 13:08:55 +02002877
2878 /* copy flags and add LYD_NEW */
2879 match_trg->flags = sibling_src->flags | LYD_NEW;
2880 }
Michal Vasko8f359bf2020-07-28 10:41:15 +02002881 } else if ((match_trg->schema->nodetype & LYS_ANYDATA) && lyd_compare_single(sibling_src, match_trg, 0)) {
Michal Vasko4c583e82020-07-17 12:16:14 +02002882 /* update value */
2883 LY_CHECK_RET(lyd_any_copy_value(match_trg, &((struct lyd_node_any *)sibling_src)->value,
Radek Krejci0f969882020-08-21 16:56:47 +02002884 ((struct lyd_node_any *)sibling_src)->value_type));
Michal Vasko4490d312020-06-16 13:08:55 +02002885
2886 /* copy flags and add LYD_NEW */
2887 match_trg->flags = sibling_src->flags | LYD_NEW;
Michal Vasko4490d312020-06-16 13:08:55 +02002888 } else {
2889 /* check descendants, recursively */
Radek Krejcia1c1e542020-09-29 16:06:52 +02002890 LY_LIST_FOR_SAFE(lyd_child_no_keys(sibling_src), tmp, child_src) {
Michal Vasko4490d312020-06-16 13:08:55 +02002891 LY_CHECK_RET(lyd_merge_sibling_r(lyd_node_children_p(match_trg), match_trg, &child_src, options));
2892 }
2893 }
2894 } else {
2895 /* node not found, merge it */
2896 if (options & LYD_MERGE_DESTRUCT) {
2897 dup_src = (struct lyd_node *)sibling_src;
2898 lyd_unlink_tree(dup_src);
2899 /* spend it */
2900 *sibling_src_p = NULL;
2901 } else {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002902 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 +02002903 }
2904
2905 /* set LYD_NEW for all the new nodes, required for validation */
Michal Vasko56daf732020-08-10 10:57:18 +02002906 LYD_TREE_DFS_BEGIN(dup_src, elem) {
Michal Vasko4490d312020-06-16 13:08:55 +02002907 elem->flags |= LYD_NEW;
Michal Vasko56daf732020-08-10 10:57:18 +02002908 LYD_TREE_DFS_END(dup_src, elem);
Michal Vasko4490d312020-06-16 13:08:55 +02002909 }
2910
2911 lyd_insert_node(parent_trg, first_trg, dup_src);
2912 }
2913
2914 return LY_SUCCESS;
2915}
2916
Michal Vasko3a41dff2020-07-15 14:30:28 +02002917static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02002918lyd_merge(struct lyd_node **target, const struct lyd_node *source, uint16_t options, ly_bool nosiblings)
Michal Vasko4490d312020-06-16 13:08:55 +02002919{
2920 const struct lyd_node *sibling_src, *tmp;
Radek Krejci857189e2020-09-01 13:26:36 +02002921 ly_bool first;
Michal Vasko4490d312020-06-16 13:08:55 +02002922
2923 LY_CHECK_ARG_RET(NULL, target, LY_EINVAL);
2924
2925 if (!source) {
2926 /* nothing to merge */
2927 return LY_SUCCESS;
2928 }
2929
Michal Vasko831422b2020-11-24 11:20:51 +01002930 if ((*target && lysc_data_parent((*target)->schema)) || lysc_data_parent(source->schema)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002931 LOGERR(LYD_CTX(source), LY_EINVAL, "Invalid arguments - can merge only 2 top-level subtrees (%s()).", __func__);
Michal Vasko4490d312020-06-16 13:08:55 +02002932 return LY_EINVAL;
2933 }
2934
2935 LY_LIST_FOR_SAFE(source, tmp, sibling_src) {
Radek Krejci857189e2020-09-01 13:26:36 +02002936 first = (sibling_src == source) ? 1 : 0;
Michal Vasko4490d312020-06-16 13:08:55 +02002937 LY_CHECK_RET(lyd_merge_sibling_r(target, NULL, &sibling_src, options));
2938 if (first && !sibling_src) {
2939 /* source was spent (unlinked), move to the next node */
2940 source = tmp;
2941 }
2942
Michal Vasko3a41dff2020-07-15 14:30:28 +02002943 if (nosiblings) {
Michal Vasko4490d312020-06-16 13:08:55 +02002944 break;
2945 }
2946 }
2947
2948 if (options & LYD_MERGE_DESTRUCT) {
2949 /* free any leftover source data that were not merged */
2950 lyd_free_siblings((struct lyd_node *)source);
2951 }
2952
2953 return LY_SUCCESS;
2954}
2955
Michal Vasko3a41dff2020-07-15 14:30:28 +02002956API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002957lyd_merge_tree(struct lyd_node **target, const struct lyd_node *source, uint16_t options)
Michal Vasko3a41dff2020-07-15 14:30:28 +02002958{
2959 return lyd_merge(target, source, options, 1);
2960}
2961
2962API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002963lyd_merge_siblings(struct lyd_node **target, const struct lyd_node *source, uint16_t options)
Michal Vasko3a41dff2020-07-15 14:30:28 +02002964{
2965 return lyd_merge(target, source, options, 0);
2966}
2967
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002968static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02002969lyd_path_str_enlarge(char **buffer, size_t *buflen, size_t reqlen, ly_bool is_static)
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002970{
Michal Vasko14654712020-02-06 08:35:21 +01002971 /* ending \0 */
2972 ++reqlen;
2973
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002974 if (reqlen > *buflen) {
2975 if (is_static) {
2976 return LY_EINCOMPLETE;
2977 }
2978
2979 *buffer = ly_realloc(*buffer, reqlen * sizeof **buffer);
2980 if (!*buffer) {
2981 return LY_EMEM;
2982 }
2983
2984 *buflen = reqlen;
2985 }
2986
2987 return LY_SUCCESS;
2988}
2989
Michal Vaskod59035b2020-07-08 12:00:06 +02002990LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02002991lyd_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 +02002992{
2993 const struct lyd_node *key;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002994 size_t len;
2995 const char *val;
2996 char quot;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002997
Radek Krejcia1c1e542020-09-29 16:06:52 +02002998 for (key = lyd_child(node); key && (key->schema->flags & LYS_KEY); key = key->next) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002999 val = LYD_CANON_VALUE(key);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003000 len = 1 + strlen(key->schema->name) + 2 + strlen(val) + 2;
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003001 LY_CHECK_RET(lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static));
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003002
3003 quot = '\'';
3004 if (strchr(val, '\'')) {
3005 quot = '"';
3006 }
3007 *bufused += sprintf(*buffer + *bufused, "[%s=%c%s%c]", key->schema->name, quot, val, quot);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003008 }
3009
3010 return LY_SUCCESS;
3011}
3012
3013/**
3014 * @brief Append leaf-list value predicate to path.
3015 *
3016 * @param[in] node Node to print.
3017 * @param[in,out] buffer Buffer to print to.
3018 * @param[in,out] buflen Current buffer length.
3019 * @param[in,out] bufused Current number of characters used in @p buffer.
3020 * @param[in] is_static Whether buffer is static or can be reallocated.
3021 * @return LY_ERR
3022 */
3023static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003024lyd_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 +02003025{
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003026 size_t len;
3027 const char *val;
3028 char quot;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003029
Michal Vaskob7be7a82020-08-20 09:09:04 +02003030 val = LYD_CANON_VALUE(node);
Radek Krejcif13b87b2020-12-01 22:02:17 +01003031 len = 4 + strlen(val) + 2; /* "[.='" + val + "']" */
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003032 LY_CHECK_RET(lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static));
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003033
3034 quot = '\'';
3035 if (strchr(val, '\'')) {
3036 quot = '"';
3037 }
3038 *bufused += sprintf(*buffer + *bufused, "[.=%c%s%c]", quot, val, quot);
3039
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003040 return LY_SUCCESS;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003041}
3042
3043/**
3044 * @brief Append node position (relative to its other instances) predicate to path.
3045 *
3046 * @param[in] node Node to print.
3047 * @param[in,out] buffer Buffer to print to.
3048 * @param[in,out] buflen Current buffer length.
3049 * @param[in,out] bufused Current number of characters used in @p buffer.
3050 * @param[in] is_static Whether buffer is static or can be reallocated.
3051 * @return LY_ERR
3052 */
3053static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003054lyd_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 +02003055{
3056 const struct lyd_node *first, *iter;
3057 size_t len;
Radek Krejci1deb5be2020-08-26 16:43:36 +02003058 uint64_t pos;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003059 char *val = NULL;
3060 LY_ERR rc;
3061
3062 if (node->parent) {
3063 first = node->parent->child;
3064 } else {
Michal Vaskoe070bfe2020-08-31 12:27:25 +02003065 for (first = node; first->prev->next; first = first->prev) {}
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003066 }
3067 pos = 1;
3068 for (iter = first; iter != node; iter = iter->next) {
3069 if (iter->schema == node->schema) {
3070 ++pos;
3071 }
3072 }
Radek Krejci1deb5be2020-08-26 16:43:36 +02003073 if (asprintf(&val, "%" PRIu64, pos) == -1) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003074 return LY_EMEM;
3075 }
3076
3077 len = 1 + strlen(val) + 1;
3078 rc = lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static);
3079 if (rc != LY_SUCCESS) {
3080 goto cleanup;
3081 }
3082
3083 *bufused += sprintf(*buffer + *bufused, "[%s]", val);
3084
3085cleanup:
3086 free(val);
3087 return rc;
3088}
3089
3090API char *
3091lyd_path(const struct lyd_node *node, LYD_PATH_TYPE pathtype, char *buffer, size_t buflen)
3092{
Radek Krejci857189e2020-09-01 13:26:36 +02003093 ly_bool is_static = 0;
Radek Krejci1deb5be2020-08-26 16:43:36 +02003094 uint32_t i, depth;
Michal Vasko14654712020-02-06 08:35:21 +01003095 size_t bufused = 0, len;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003096 const struct lyd_node *iter;
3097 const struct lys_module *mod;
Michal Vasko790b2bc2020-08-03 13:35:06 +02003098 LY_ERR rc = LY_SUCCESS;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003099
3100 LY_CHECK_ARG_RET(NULL, node, NULL);
3101 if (buffer) {
3102 LY_CHECK_ARG_RET(node->schema->module->ctx, buflen > 1, NULL);
3103 is_static = 1;
Michal Vasko14654712020-02-06 08:35:21 +01003104 } else {
3105 buflen = 0;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003106 }
3107
3108 switch (pathtype) {
Michal Vasko14654712020-02-06 08:35:21 +01003109 case LYD_PATH_LOG:
Michal Vasko790b2bc2020-08-03 13:35:06 +02003110 case LYD_PATH_LOG_NO_LAST_PRED:
Michal Vasko14654712020-02-06 08:35:21 +01003111 depth = 1;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003112 for (iter = node; iter->parent; iter = (const struct lyd_node *)iter->parent) {
3113 ++depth;
3114 }
3115
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003116 goto iter_print;
Michal Vasko14654712020-02-06 08:35:21 +01003117 while (depth) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003118 /* find the right node */
Radek Krejci1e008d22020-08-17 11:37:37 +02003119 for (iter = node, i = 1; i < depth; iter = (const struct lyd_node *)iter->parent, ++i) {}
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003120iter_print:
3121 /* print prefix and name */
3122 mod = NULL;
Michal Vasko69730152020-10-09 16:30:07 +02003123 if (iter->schema && (!iter->parent || (iter->schema->module != iter->parent->schema->module))) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003124 mod = iter->schema->module;
3125 }
3126
3127 /* realloc string */
Michal Vaskoad92b672020-11-12 13:11:31 +01003128 len = 1 + (mod ? strlen(mod->name) + 1 : 0) + (iter->schema ? strlen(iter->schema->name) :
3129 strlen(((struct lyd_node_opaq *)iter)->name.name));
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003130 rc = lyd_path_str_enlarge(&buffer, &buflen, bufused + len, is_static);
3131 if (rc != LY_SUCCESS) {
3132 break;
3133 }
3134
3135 /* print next node */
Radek Krejci1798aae2020-07-14 13:26:06 +02003136 bufused += sprintf(buffer + bufused, "/%s%s%s", mod ? mod->name : "", mod ? ":" : "",
Michal Vaskoad92b672020-11-12 13:11:31 +01003137 iter->schema ? iter->schema->name : ((struct lyd_node_opaq *)iter)->name.name);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003138
Michal Vasko790b2bc2020-08-03 13:35:06 +02003139 /* do not always print the last (first) predicate */
Michal Vasko552e1122020-11-06 17:22:44 +01003140 if (iter->schema && ((depth > 1) || (pathtype == LYD_PATH_LOG))) {
Michal Vasko790b2bc2020-08-03 13:35:06 +02003141 switch (iter->schema->nodetype) {
3142 case LYS_LIST:
3143 if (iter->schema->flags & LYS_KEYLESS) {
3144 /* print its position */
3145 rc = lyd_path_position_predicate(iter, &buffer, &buflen, &bufused, is_static);
3146 } else {
3147 /* print all list keys in predicates */
3148 rc = lyd_path_list_predicate(iter, &buffer, &buflen, &bufused, is_static);
3149 }
3150 break;
3151 case LYS_LEAFLIST:
3152 if (iter->schema->flags & LYS_CONFIG_W) {
3153 /* print leaf-list value */
3154 rc = lyd_path_leaflist_predicate(iter, &buffer, &buflen, &bufused, is_static);
3155 } else {
3156 /* print its position */
3157 rc = lyd_path_position_predicate(iter, &buffer, &buflen, &bufused, is_static);
3158 }
3159 break;
3160 default:
3161 /* nothing to print more */
3162 break;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003163 }
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003164 }
3165 if (rc != LY_SUCCESS) {
3166 break;
3167 }
3168
Michal Vasko14654712020-02-06 08:35:21 +01003169 --depth;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003170 }
3171 break;
3172 }
3173
3174 return buffer;
3175}
Michal Vaskoe444f752020-02-10 12:20:06 +01003176
Michal Vasko25a32822020-07-09 15:48:22 +02003177API struct lyd_meta *
3178lyd_find_meta(const struct lyd_meta *first, const struct lys_module *module, const char *name)
3179{
3180 struct lyd_meta *ret = NULL;
3181 const struct ly_ctx *ctx;
3182 const char *prefix, *tmp;
3183 char *str;
3184 size_t pref_len, name_len;
3185
3186 LY_CHECK_ARG_RET(NULL, module || strchr(name, ':'), name, NULL);
3187
3188 if (!first) {
3189 return NULL;
3190 }
3191
3192 ctx = first->annotation->module->ctx;
3193
3194 /* parse the name */
3195 tmp = name;
3196 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
3197 LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name);
3198 return NULL;
3199 }
3200
3201 /* find the module */
3202 if (prefix) {
3203 str = strndup(prefix, pref_len);
3204 module = ly_ctx_get_module_latest(ctx, str);
3205 free(str);
3206 LY_CHECK_ERR_RET(!module, LOGERR(ctx, LY_EINVAL, "Module \"%.*s\" not found.", pref_len, prefix), NULL);
3207 }
3208
3209 /* find the metadata */
3210 LY_LIST_FOR(first, first) {
3211 if ((first->annotation->module == module) && !strcmp(first->name, name)) {
3212 ret = (struct lyd_meta *)first;
3213 break;
3214 }
3215 }
3216
3217 return ret;
3218}
3219
Michal Vasko9b368d32020-02-14 13:53:31 +01003220API LY_ERR
Michal Vaskoe444f752020-02-10 12:20:06 +01003221lyd_find_sibling_first(const struct lyd_node *siblings, const struct lyd_node *target, struct lyd_node **match)
3222{
3223 struct lyd_node **match_p;
3224 struct lyd_node_inner *parent;
3225
Michal Vaskof03ed032020-03-04 13:31:44 +01003226 LY_CHECK_ARG_RET(NULL, target, LY_EINVAL);
Michal Vaskoe444f752020-02-10 12:20:06 +01003227
Michal Vasko62ed12d2020-05-21 10:08:25 +02003228 if (!siblings || (lysc_data_parent(siblings->schema) != lysc_data_parent(target->schema))) {
3229 /* no data or schema mismatch */
Michal Vasko9b368d32020-02-14 13:53:31 +01003230 if (match) {
3231 *match = NULL;
3232 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003233 return LY_ENOTFOUND;
3234 }
3235
3236 /* find first sibling */
3237 if (siblings->parent) {
3238 siblings = siblings->parent->child;
3239 } else {
3240 while (siblings->prev->next) {
3241 siblings = siblings->prev;
3242 }
3243 }
3244
3245 parent = (struct lyd_node_inner *)siblings->parent;
3246 if (parent && parent->children_ht) {
3247 assert(target->hash);
3248
3249 /* find by hash */
3250 if (!lyht_find(parent->children_ht, &target, target->hash, (void **)&match_p)) {
Michal Vaskoda859032020-07-14 12:20:14 +02003251 /* check even value when needed */
Michal Vasko8f359bf2020-07-28 10:41:15 +02003252 if (!(target->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !lyd_compare_single(target, *match_p, 0)) {
Michal Vaskoda859032020-07-14 12:20:14 +02003253 siblings = *match_p;
3254 } else {
3255 siblings = NULL;
3256 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003257 } else {
3258 /* not found */
3259 siblings = NULL;
3260 }
3261 } else {
3262 /* no children hash table */
Michal Vaskod989ba02020-08-24 10:59:24 +02003263 for ( ; siblings; siblings = siblings->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02003264 if (!lyd_compare_single(siblings, target, 0)) {
Michal Vaskoe444f752020-02-10 12:20:06 +01003265 break;
3266 }
3267 }
3268 }
3269
3270 if (!siblings) {
Michal Vasko9b368d32020-02-14 13:53:31 +01003271 if (match) {
3272 *match = NULL;
3273 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003274 return LY_ENOTFOUND;
3275 }
3276
Michal Vasko9b368d32020-02-14 13:53:31 +01003277 if (match) {
3278 *match = (struct lyd_node *)siblings;
3279 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003280 return LY_SUCCESS;
3281}
3282
Radek Krejci857189e2020-09-01 13:26:36 +02003283/**
3284 * @brief Comparison callback to match schema node with a schema of a data node.
3285 *
3286 * @param[in] val1_p Pointer to the schema node
3287 * @param[in] val2_p Pointer to the data node
3288 * Implementation of ::values_equal_cb.
3289 */
3290static ly_bool
3291lyd_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 +01003292{
3293 struct lysc_node *val1;
3294 struct lyd_node *val2;
3295
3296 val1 = *((struct lysc_node **)val1_p);
3297 val2 = *((struct lyd_node **)val2_p);
3298
Michal Vasko90932a92020-02-12 14:33:03 +01003299 if (val1 == val2->schema) {
3300 /* schema match is enough */
3301 return 1;
3302 } else {
3303 return 0;
3304 }
3305}
3306
Michal Vasko92239c72020-11-18 18:17:25 +01003307/**
3308 * @brief Search in the given siblings (NOT recursively) for the first schema node data instance.
3309 * Uses hashes - should be used whenever possible for best performance.
3310 *
3311 * @param[in] siblings Siblings to search in including preceding and succeeding nodes.
3312 * @param[in] schema Target data node schema to find.
3313 * @param[out] match Can be NULL, otherwise the found data node.
3314 * @return LY_SUCCESS on success, @p match set.
3315 * @return LY_ENOTFOUND if not found, @p match set to NULL.
3316 * @return LY_ERR value if another error occurred.
3317 */
Michal Vasko90932a92020-02-12 14:33:03 +01003318static LY_ERR
3319lyd_find_sibling_schema(const struct lyd_node *siblings, const struct lysc_node *schema, struct lyd_node **match)
3320{
3321 struct lyd_node **match_p;
3322 struct lyd_node_inner *parent;
3323 uint32_t hash;
3324 values_equal_cb ht_cb;
3325
Michal Vaskob104f112020-07-17 09:54:54 +02003326 assert(siblings && schema);
Michal Vasko90932a92020-02-12 14:33:03 +01003327
3328 parent = (struct lyd_node_inner *)siblings->parent;
Michal Vasko08fd6132020-11-18 18:17:45 +01003329 if (parent && parent->schema && parent->children_ht) {
Michal Vasko90932a92020-02-12 14:33:03 +01003330 /* calculate our hash */
3331 hash = dict_hash_multi(0, schema->module->name, strlen(schema->module->name));
3332 hash = dict_hash_multi(hash, schema->name, strlen(schema->name));
3333 hash = dict_hash_multi(hash, NULL, 0);
3334
3335 /* use special hash table function */
3336 ht_cb = lyht_set_cb(parent->children_ht, lyd_hash_table_schema_val_equal);
3337
3338 /* find by hash */
3339 if (!lyht_find(parent->children_ht, &schema, hash, (void **)&match_p)) {
3340 siblings = *match_p;
3341 } else {
3342 /* not found */
3343 siblings = NULL;
3344 }
3345
3346 /* set the original hash table compare function back */
3347 lyht_set_cb(parent->children_ht, ht_cb);
3348 } else {
Michal Vaskob104f112020-07-17 09:54:54 +02003349 /* find first sibling */
3350 if (siblings->parent) {
3351 siblings = siblings->parent->child;
3352 } else {
3353 while (siblings->prev->next) {
3354 siblings = siblings->prev;
3355 }
3356 }
3357
3358 /* search manually without hashes */
Michal Vaskod989ba02020-08-24 10:59:24 +02003359 for ( ; siblings; siblings = siblings->next) {
Michal Vasko90932a92020-02-12 14:33:03 +01003360 if (siblings->schema == schema) {
3361 /* schema match is enough */
3362 break;
3363 }
3364 }
3365 }
3366
3367 if (!siblings) {
Michal Vasko9b368d32020-02-14 13:53:31 +01003368 if (match) {
3369 *match = NULL;
3370 }
Michal Vasko90932a92020-02-12 14:33:03 +01003371 return LY_ENOTFOUND;
3372 }
3373
Michal Vasko9b368d32020-02-14 13:53:31 +01003374 if (match) {
3375 *match = (struct lyd_node *)siblings;
3376 }
Michal Vasko90932a92020-02-12 14:33:03 +01003377 return LY_SUCCESS;
3378}
3379
Michal Vaskoe444f752020-02-10 12:20:06 +01003380API LY_ERR
3381lyd_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 +02003382 size_t val_len, struct lyd_node **match)
Michal Vaskoe444f752020-02-10 12:20:06 +01003383{
3384 LY_ERR rc;
3385 struct lyd_node *target = NULL;
3386
Michal Vasko4c583e82020-07-17 12:16:14 +02003387 LY_CHECK_ARG_RET(NULL, schema, !(schema->nodetype & (LYS_CHOICE | LYS_CASE)), LY_EINVAL);
Michal Vaskoe444f752020-02-10 12:20:06 +01003388
Michal Vasko08fd6132020-11-18 18:17:45 +01003389 if (!siblings || (siblings->schema && (lysc_data_parent(siblings->schema) != lysc_data_parent(schema)))) {
Michal Vasko62ed12d2020-05-21 10:08:25 +02003390 /* no data or schema mismatch */
Michal Vasko9b368d32020-02-14 13:53:31 +01003391 if (match) {
3392 *match = NULL;
3393 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003394 return LY_ENOTFOUND;
3395 }
3396
Michal Vaskof03ed032020-03-04 13:31:44 +01003397 if (key_or_value && !val_len) {
3398 val_len = strlen(key_or_value);
3399 }
3400
Michal Vaskob104f112020-07-17 09:54:54 +02003401 if ((schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) && key_or_value) {
3402 /* create a data node and find the instance */
3403 if (schema->nodetype == LYS_LEAFLIST) {
3404 /* target used attributes: schema, hash, value */
Michal Vaskofeca4fb2020-10-05 08:58:40 +02003405 rc = lyd_create_term(schema, key_or_value, val_len, NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, NULL, &target);
3406 LY_CHECK_RET(rc);
Michal Vaskob104f112020-07-17 09:54:54 +02003407 } else {
Michal Vasko90932a92020-02-12 14:33:03 +01003408 /* target used attributes: schema, hash, child (all keys) */
Michal Vasko004d3152020-06-11 19:59:22 +02003409 LY_CHECK_RET(lyd_create_list2(schema, key_or_value, val_len, &target));
Michal Vasko90932a92020-02-12 14:33:03 +01003410 }
3411
3412 /* find it */
3413 rc = lyd_find_sibling_first(siblings, target, match);
Michal Vaskob104f112020-07-17 09:54:54 +02003414 } else {
3415 /* find the first schema node instance */
3416 rc = lyd_find_sibling_schema(siblings, schema, match);
Michal Vaskoe444f752020-02-10 12:20:06 +01003417 }
3418
Michal Vaskoe444f752020-02-10 12:20:06 +01003419 lyd_free_tree(target);
3420 return rc;
3421}
Michal Vaskoccc02342020-05-21 10:09:21 +02003422
3423API LY_ERR
3424lyd_find_xpath(const struct lyd_node *ctx_node, const char *xpath, struct ly_set **set)
3425{
3426 LY_ERR ret = LY_SUCCESS;
3427 struct lyxp_set xp_set;
Radek Krejcif03a9e22020-09-18 20:09:31 +02003428 struct lyxp_expr *exp = NULL;
Michal Vaskoccc02342020-05-21 10:09:21 +02003429 uint32_t i;
3430
3431 LY_CHECK_ARG_RET(NULL, ctx_node, xpath, set, LY_EINVAL);
3432
3433 memset(&xp_set, 0, sizeof xp_set);
3434
3435 /* compile expression */
Radek Krejcif03a9e22020-09-18 20:09:31 +02003436 ret = lyxp_expr_parse((struct ly_ctx *)LYD_CTX(ctx_node), xpath, 0, 1, &exp);
3437 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003438
3439 /* evaluate expression */
Michal Vaskocdad7122020-11-09 21:04:44 +01003440 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 +02003441 LY_CHECK_GOTO(ret, cleanup);
3442
3443 /* allocate return set */
Radek Krejciba03a5a2020-08-27 14:40:41 +02003444 ret = ly_set_new(set);
3445 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003446
3447 /* transform into ly_set */
3448 if (xp_set.type == LYXP_SET_NODE_SET) {
3449 /* allocate memory for all the elements once (even though not all items must be elements but most likely will be) */
3450 (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs);
Michal Vaskob7be7a82020-08-20 09:09:04 +02003451 LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(LYD_CTX(ctx_node)); ret = LY_EMEM, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003452 (*set)->size = xp_set.used;
3453
3454 for (i = 0; i < xp_set.used; ++i) {
3455 if (xp_set.val.nodes[i].type == LYXP_NODE_ELEM) {
Radek Krejci3d92e442020-10-12 12:48:13 +02003456 ret = ly_set_add(*set, xp_set.val.nodes[i].node, 1, NULL);
Radek Krejciba03a5a2020-08-27 14:40:41 +02003457 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003458 }
3459 }
3460 }
3461
3462cleanup:
Michal Vasko0691d522020-05-21 13:21:47 +02003463 lyxp_set_free_content(&xp_set);
Michal Vaskob7be7a82020-08-20 09:09:04 +02003464 lyxp_expr_free((struct ly_ctx *)LYD_CTX(ctx_node), exp);
Radek Krejci8f45abc2020-11-26 12:15:13 +01003465 if (ret) {
3466 ly_set_free(*set, NULL);
3467 *set = NULL;
3468 }
Michal Vaskoccc02342020-05-21 10:09:21 +02003469 return ret;
3470}
Radek Krejcica989142020-11-05 11:32:22 +01003471
3472API uint32_t
3473lyd_list_pos(const struct lyd_node *instance)
3474{
3475 const struct lyd_node *iter = NULL;
3476 uint32_t pos = 0;
3477
3478 if (!instance || !(instance->schema->nodetype & (LYS_LIST | LYS_LEAFLIST))) {
3479 return 0;
3480 }
3481
3482 /* data instances are ordered, so we can stop when we found instance of other schema node */
3483 for (iter = instance; iter->schema == instance->schema; iter = iter->prev) {
Radek Krejcibb27df32020-11-13 15:39:16 +01003484 if (pos && (iter->next == NULL)) {
Radek Krejcica989142020-11-05 11:32:22 +01003485 /* overrun to the end of the siblings list */
3486 break;
3487 }
3488 ++pos;
3489 }
3490
3491 return pos;
3492}
Radek Krejci4233f9b2020-11-05 12:38:35 +01003493
3494API struct lyd_node *
3495lyd_first_sibling(const struct lyd_node *node)
3496{
3497 struct lyd_node *start;
3498
3499 if (!node) {
3500 return NULL;
3501 }
3502
3503 /* get the first sibling */
3504 if (node->parent) {
3505 start = node->parent->child;
3506 } else {
Radek Krejcibb27df32020-11-13 15:39:16 +01003507 for (start = (struct lyd_node *)node; start->prev->next; start = start->prev) {}
Radek Krejci4233f9b2020-11-05 12:38:35 +01003508 }
3509
3510 return start;
3511}