blob: db2b836225c0af11ea6881c557889432a2f501fa [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 Krejcicc551802020-12-05 11:57:20 +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
Michal Vasko65243892020-12-04 16:26:21 +0100740lyd_new_inner(struct lyd_node *parent, const struct lys_module *module, const char *name, ly_bool output,
741 struct lyd_node **node)
Michal Vasko013a8182020-03-03 10:46:53 +0100742{
743 struct lyd_node *ret = NULL;
744 const struct lysc_node *schema;
745 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
746
Michal Vasko6027eb92020-07-15 16:37:30 +0200747 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100748
Michal Vaskof03ed032020-03-04 13:31:44 +0100749 if (!module) {
750 module = parent->schema->module;
751 }
752
Michal Vasko3a41dff2020-07-15 14:30:28 +0200753 schema = lys_find_child(parent ? parent->schema : NULL, module, name, 0,
Radek Krejci41ac9942020-11-02 14:47:56 +0100754 LYS_CONTAINER | LYS_NOTIF | LYS_RPC | LYS_ACTION, output ? LYS_GETNEXT_OUTPUT : 0);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200755 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 +0100756
Michal Vasko3a41dff2020-07-15 14:30:28 +0200757 LY_CHECK_RET(lyd_create_inner(schema, &ret));
758 if (parent) {
Michal Vasko013a8182020-03-03 10:46:53 +0100759 lyd_insert_node(parent, NULL, ret);
760 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200761
762 if (node) {
763 *node = ret;
764 }
765 return LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +0100766}
767
Michal Vasko3a41dff2020-07-15 14:30:28 +0200768API LY_ERR
Michal Vasko65243892020-12-04 16:26:21 +0100769lyd_new_list(struct lyd_node *parent, const struct lys_module *module, const char *name, ly_bool output,
770 struct lyd_node **node, ...)
Michal Vasko013a8182020-03-03 10:46:53 +0100771{
772 struct lyd_node *ret = NULL, *key;
773 const struct lysc_node *schema, *key_s;
774 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
775 va_list ap;
776 const char *key_val;
777 LY_ERR rc = LY_SUCCESS;
778
Michal Vasko6027eb92020-07-15 16:37:30 +0200779 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100780
Michal Vaskof03ed032020-03-04 13:31:44 +0100781 if (!module) {
782 module = parent->schema->module;
783 }
784
Radek Krejci41ac9942020-11-02 14:47:56 +0100785 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 +0200786 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "List node \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +0100787
788 /* create list inner node */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200789 LY_CHECK_RET(lyd_create_inner(schema, &ret));
Michal Vasko013a8182020-03-03 10:46:53 +0100790
Michal Vasko3a41dff2020-07-15 14:30:28 +0200791 va_start(ap, node);
Michal Vasko013a8182020-03-03 10:46:53 +0100792
793 /* create and insert all the keys */
794 for (key_s = lysc_node_children(schema, 0); key_s && (key_s->flags & LYS_KEY); key_s = key_s->next) {
795 key_val = va_arg(ap, const char *);
796
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200797 rc = lyd_create_term(key_s, key_val, key_val ? strlen(key_val) : 0, NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA,
798 NULL, &key);
799 LY_CHECK_GOTO(rc, cleanup);
Michal Vasko013a8182020-03-03 10:46:53 +0100800 lyd_insert_node(ret, NULL, key);
801 }
802
Michal Vasko013a8182020-03-03 10:46:53 +0100803 if (parent) {
804 lyd_insert_node(parent, NULL, ret);
805 }
806
807cleanup:
Michal Vasko3a41dff2020-07-15 14:30:28 +0200808 va_end(ap);
Michal Vasko013a8182020-03-03 10:46:53 +0100809 if (rc) {
810 lyd_free_tree(ret);
811 ret = NULL;
Michal Vasko3a41dff2020-07-15 14:30:28 +0200812 } else if (node) {
813 *node = ret;
Michal Vasko013a8182020-03-03 10:46:53 +0100814 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200815 return rc;
Michal Vasko013a8182020-03-03 10:46:53 +0100816}
817
Michal Vasko3a41dff2020-07-15 14:30:28 +0200818API LY_ERR
819lyd_new_list2(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *keys,
Radek Krejci41ac9942020-11-02 14:47:56 +0100820 ly_bool output, struct lyd_node **node)
Michal Vasko013a8182020-03-03 10:46:53 +0100821{
822 struct lyd_node *ret = NULL;
823 const struct lysc_node *schema;
824 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
825
Michal Vasko6027eb92020-07-15 16:37:30 +0200826 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100827
Michal Vaskof03ed032020-03-04 13:31:44 +0100828 if (!module) {
829 module = parent->schema->module;
830 }
Michal Vasko004d3152020-06-11 19:59:22 +0200831 if (!keys) {
832 keys = "";
833 }
Michal Vaskof03ed032020-03-04 13:31:44 +0100834
Michal Vasko004d3152020-06-11 19:59:22 +0200835 /* find schema node */
Radek Krejci41ac9942020-11-02 14:47:56 +0100836 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 +0200837 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "List node \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +0100838
Michal Vasko004d3152020-06-11 19:59:22 +0200839 if ((schema->flags & LYS_KEYLESS) && !keys[0]) {
840 /* key-less list */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200841 LY_CHECK_RET(lyd_create_inner(schema, &ret));
Michal Vasko004d3152020-06-11 19:59:22 +0200842 } else {
843 /* create the list node */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200844 LY_CHECK_RET(lyd_create_list2(schema, keys, strlen(keys), &ret));
Michal Vasko004d3152020-06-11 19:59:22 +0200845 }
Michal Vasko004d3152020-06-11 19:59:22 +0200846 if (parent) {
Michal Vasko013a8182020-03-03 10:46:53 +0100847 lyd_insert_node(parent, NULL, ret);
848 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200849
850 if (node) {
851 *node = ret;
852 }
853 return LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +0100854}
855
Michal Vasko3a41dff2020-07-15 14:30:28 +0200856API LY_ERR
857lyd_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 +0100858 ly_bool output, struct lyd_node **node)
Michal Vasko013a8182020-03-03 10:46:53 +0100859{
Michal Vaskocbff3e92020-05-27 12:56:41 +0200860 LY_ERR rc;
Michal Vasko013a8182020-03-03 10:46:53 +0100861 struct lyd_node *ret = NULL;
862 const struct lysc_node *schema;
863 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
864
Michal Vasko6027eb92020-07-15 16:37:30 +0200865 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100866
Michal Vaskof03ed032020-03-04 13:31:44 +0100867 if (!module) {
868 module = parent->schema->module;
869 }
870
Radek Krejci41ac9942020-11-02 14:47:56 +0100871 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 +0200872 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "Term node \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +0100873
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200874 rc = lyd_create_term(schema, val_str, val_str ? strlen(val_str) : 0, NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, NULL,
875 &ret);
876 LY_CHECK_RET(rc);
Michal Vaskocbff3e92020-05-27 12:56:41 +0200877 if (parent) {
Michal Vasko013a8182020-03-03 10:46:53 +0100878 lyd_insert_node(parent, NULL, ret);
879 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200880
881 if (node) {
882 *node = ret;
883 }
884 return LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +0100885}
886
Michal Vasko3a41dff2020-07-15 14:30:28 +0200887API LY_ERR
Michal Vasko219006c2020-12-04 16:26:52 +0100888lyd_new_any(struct lyd_node *parent, const struct lys_module *module, const char *name, void *value,
Radek Krejci41ac9942020-11-02 14:47:56 +0100889 LYD_ANYDATA_VALUETYPE value_type, ly_bool output, struct lyd_node **node)
Michal Vasko013a8182020-03-03 10:46:53 +0100890{
891 struct lyd_node *ret = NULL;
892 const struct lysc_node *schema;
893 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
894
Michal Vasko6027eb92020-07-15 16:37:30 +0200895 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100896
Michal Vaskof03ed032020-03-04 13:31:44 +0100897 if (!module) {
898 module = parent->schema->module;
899 }
900
Radek Krejci41ac9942020-11-02 14:47:56 +0100901 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 +0200902 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "Any node \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +0100903
Michal Vasko366a4a12020-12-04 16:23:57 +0100904 LY_CHECK_RET(lyd_create_any(schema, value, value_type, 1, &ret));
Michal Vasko3a41dff2020-07-15 14:30:28 +0200905 if (parent) {
Michal Vasko013a8182020-03-03 10:46:53 +0100906 lyd_insert_node(parent, NULL, ret);
907 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200908
909 if (node) {
910 *node = ret;
911 }
912 return LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +0100913}
914
Michal Vasko4490d312020-06-16 13:08:55 +0200915/**
916 * @brief Update node value.
917 *
918 * @param[in] node Node to update.
919 * @param[in] value New value to set.
920 * @param[in] value_type Type of @p value for any node.
921 * @param[out] new_parent Set to @p node if the value was updated, otherwise set to NULL.
922 * @param[out] new_node Set to @p node if the value was updated, otherwise set to NULL.
923 * @return LY_ERR value.
924 */
Michal Vasko00cbf532020-06-15 13:58:47 +0200925static LY_ERR
926lyd_new_path_update(struct lyd_node *node, const void *value, LYD_ANYDATA_VALUETYPE value_type,
Radek Krejci0f969882020-08-21 16:56:47 +0200927 struct lyd_node **new_parent, struct lyd_node **new_node)
Michal Vasko00cbf532020-06-15 13:58:47 +0200928{
929 LY_ERR ret = LY_SUCCESS;
930 struct lyd_node *new_any;
931
932 switch (node->schema->nodetype) {
933 case LYS_CONTAINER:
934 case LYS_NOTIF:
935 case LYS_RPC:
936 case LYS_ACTION:
937 case LYS_LIST:
938 case LYS_LEAFLIST:
939 /* if it exists, there is nothing to update */
940 *new_parent = NULL;
941 *new_node = NULL;
942 break;
943 case LYS_LEAF:
944 ret = lyd_change_term(node, value);
945 if ((ret == LY_SUCCESS) || (ret == LY_EEXIST)) {
946 /* there was an actual change (at least of the default flag) */
947 *new_parent = node;
948 *new_node = node;
949 ret = LY_SUCCESS;
950 } else if (ret == LY_ENOT) {
951 /* no change */
952 *new_parent = NULL;
953 *new_node = NULL;
954 ret = LY_SUCCESS;
955 } /* else error */
956 break;
957 case LYS_ANYDATA:
958 case LYS_ANYXML:
959 /* create a new any node */
Michal Vasko366a4a12020-12-04 16:23:57 +0100960 LY_CHECK_RET(lyd_create_any(node->schema, value, value_type, 0, &new_any));
Michal Vasko00cbf532020-06-15 13:58:47 +0200961
962 /* compare with the existing one */
Michal Vasko8f359bf2020-07-28 10:41:15 +0200963 if (lyd_compare_single(node, new_any, 0)) {
Michal Vasko00cbf532020-06-15 13:58:47 +0200964 /* not equal, switch values (so that we can use generic node free) */
965 ((struct lyd_node_any *)new_any)->value = ((struct lyd_node_any *)node)->value;
966 ((struct lyd_node_any *)new_any)->value_type = ((struct lyd_node_any *)node)->value_type;
967 ((struct lyd_node_any *)node)->value.str = value;
968 ((struct lyd_node_any *)node)->value_type = value_type;
969
970 *new_parent = node;
971 *new_node = node;
972 } else {
973 /* they are equal */
974 *new_parent = NULL;
975 *new_node = NULL;
976 }
977 lyd_free_tree(new_any);
978 break;
979 default:
Michal Vaskob7be7a82020-08-20 09:09:04 +0200980 LOGINT(LYD_CTX(node));
Michal Vasko00cbf532020-06-15 13:58:47 +0200981 ret = LY_EINT;
982 break;
983 }
984
985 return ret;
986}
987
Michal Vasko3a41dff2020-07-15 14:30:28 +0200988API LY_ERR
Michal Vasko871a0252020-11-11 18:35:24 +0100989lyd_new_meta(const struct ly_ctx *ctx, struct lyd_node *parent, const struct lys_module *module, const char *name,
990 const char *val_str, ly_bool clear_dflt, struct lyd_meta **meta)
Michal Vaskod86997b2020-05-26 15:19:54 +0200991{
Michal Vaskod86997b2020-05-26 15:19:54 +0200992 const char *prefix, *tmp;
Michal Vaskod86997b2020-05-26 15:19:54 +0200993 size_t pref_len, name_len;
994
Michal Vasko871a0252020-11-11 18:35:24 +0100995 LY_CHECK_ARG_RET(NULL, ctx, name, module || strchr(name, ':'), parent || meta, LY_EINVAL);
Michal Vasko00cbf532020-06-15 13:58:47 +0200996
Michal Vasko871a0252020-11-11 18:35:24 +0100997 if (parent && !parent->schema) {
998 LOGERR(ctx, LY_EINVAL, "Cannot add metadata to an opaque node \"%s\".", ((struct lyd_node_opaq *)parent)->name);
999 return LY_EINVAL;
1000 }
Michal Vasko610553d2020-11-18 18:15:05 +01001001 if (meta) {
1002 *meta = NULL;
1003 }
Michal Vaskod86997b2020-05-26 15:19:54 +02001004
1005 /* parse the name */
1006 tmp = name;
1007 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
1008 LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name);
Michal Vasko871a0252020-11-11 18:35:24 +01001009 return LY_EINVAL;
Michal Vaskod86997b2020-05-26 15:19:54 +02001010 }
1011
1012 /* find the module */
1013 if (prefix) {
Radek Krejci0ad51f12020-07-16 12:08:12 +02001014 module = ly_ctx_get_module_implemented2(ctx, prefix, pref_len);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001015 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 +02001016 }
1017
1018 /* set value if none */
1019 if (!val_str) {
1020 val_str = "";
1021 }
1022
Michal Vasko871a0252020-11-11 18:35:24 +01001023 return lyd_create_meta(parent, meta, module, name, name_len, val_str, strlen(val_str), NULL, LY_PREF_JSON,
1024 NULL, LYD_HINT_DATA, clear_dflt, NULL);
1025}
Michal Vasko3a41dff2020-07-15 14:30:28 +02001026
Michal Vaskoba696702020-11-11 19:12:45 +01001027API LY_ERR
1028lyd_new_meta2(const struct ly_ctx *ctx, struct lyd_node *parent, ly_bool clear_dflt, const struct lyd_attr *attr,
1029 struct lyd_meta **meta)
1030{
1031 const struct lys_module *mod;
1032
1033 LY_CHECK_ARG_RET(NULL, ctx, attr, parent || meta, LY_EINVAL);
1034
1035 if (parent && !parent->schema) {
1036 LOGERR(ctx, LY_EINVAL, "Cannot add metadata to an opaque node \"%s\".", ((struct lyd_node_opaq *)parent)->name);
1037 return LY_EINVAL;
Michal Vasko3a41dff2020-07-15 14:30:28 +02001038 }
Michal Vasko610553d2020-11-18 18:15:05 +01001039 if (meta) {
1040 *meta = NULL;
1041 }
Michal Vaskoba696702020-11-11 19:12:45 +01001042
1043 switch (attr->format) {
1044 case LY_PREF_XML:
Michal Vaskoad92b672020-11-12 13:11:31 +01001045 mod = ly_ctx_get_module_implemented_ns(ctx, attr->name.module_ns);
Michal Vaskoba696702020-11-11 19:12:45 +01001046 if (!mod) {
Michal Vaskoad92b672020-11-12 13:11:31 +01001047 LOGERR(ctx, LY_EINVAL, "Module with namespace \"%s\" not found.", attr->name.module_ns);
Michal Vaskoba696702020-11-11 19:12:45 +01001048 return LY_ENOTFOUND;
1049 }
1050 break;
1051 case LY_PREF_JSON:
Michal Vaskoad92b672020-11-12 13:11:31 +01001052 mod = ly_ctx_get_module_implemented(ctx, attr->name.module_name);
Michal Vaskoba696702020-11-11 19:12:45 +01001053 if (!mod) {
Michal Vaskoad92b672020-11-12 13:11:31 +01001054 LOGERR(ctx, LY_EINVAL, "Module \"%s\" not found.", attr->name.module_name);
Michal Vaskoba696702020-11-11 19:12:45 +01001055 return LY_ENOTFOUND;
1056 }
1057 break;
1058 default:
1059 LOGINT_RET(ctx);
1060 }
1061
Michal Vaskoad92b672020-11-12 13:11:31 +01001062 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 +01001063 NULL, attr->format, attr->val_prefix_data, attr->hints, clear_dflt, NULL);
Michal Vaskod86997b2020-05-26 15:19:54 +02001064}
1065
Michal Vasko3a41dff2020-07-15 14:30:28 +02001066API LY_ERR
Michal Vasko00cbf532020-06-15 13:58:47 +02001067lyd_new_opaq(struct lyd_node *parent, const struct ly_ctx *ctx, const char *name, const char *value,
Radek Krejci0f969882020-08-21 16:56:47 +02001068 const char *module_name, struct lyd_node **node)
Michal Vasko00cbf532020-06-15 13:58:47 +02001069{
1070 struct lyd_node *ret = NULL;
1071
Michal Vasko6027eb92020-07-15 16:37:30 +02001072 LY_CHECK_ARG_RET(ctx, parent || ctx, parent || node, name, module_name, LY_EINVAL);
Michal Vasko00cbf532020-06-15 13:58:47 +02001073
1074 if (!ctx) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001075 ctx = LYD_CTX(parent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001076 }
1077 if (!value) {
1078 value = "";
1079 }
1080
Michal Vasko501af032020-11-11 20:27:44 +01001081 LY_CHECK_RET(lyd_create_opaq(ctx, name, strlen(name), NULL, 0, module_name, strlen(module_name), value,
1082 strlen(value), NULL, LY_PREF_JSON, NULL, 0, &ret));
Michal Vasko3a41dff2020-07-15 14:30:28 +02001083 if (parent) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001084 lyd_insert_node(parent, NULL, ret);
1085 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02001086
1087 if (node) {
1088 *node = ret;
1089 }
1090 return LY_SUCCESS;
Michal Vasko00cbf532020-06-15 13:58:47 +02001091}
1092
Michal Vasko3a41dff2020-07-15 14:30:28 +02001093API LY_ERR
1094lyd_new_attr(struct lyd_node *parent, const char *module_name, const char *name, const char *val_str,
Radek Krejci0f969882020-08-21 16:56:47 +02001095 struct lyd_attr **attr)
Michal Vasko00cbf532020-06-15 13:58:47 +02001096{
Radek Krejci1798aae2020-07-14 13:26:06 +02001097 struct lyd_attr *ret = NULL;
Michal Vasko00cbf532020-06-15 13:58:47 +02001098 const struct ly_ctx *ctx;
1099 const char *prefix, *tmp;
Michal Vasko51d21b82020-11-13 18:03:54 +01001100 size_t pref_len, name_len, mod_len;
Michal Vasko00cbf532020-06-15 13:58:47 +02001101
Michal Vasko3a41dff2020-07-15 14:30:28 +02001102 LY_CHECK_ARG_RET(NULL, parent, !parent->schema, name, LY_EINVAL);
Michal Vasko00cbf532020-06-15 13:58:47 +02001103
Michal Vaskob7be7a82020-08-20 09:09:04 +02001104 ctx = LYD_CTX(parent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001105
1106 /* parse the name */
1107 tmp = name;
1108 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
1109 LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001110 return LY_EVALID;
Michal Vasko00cbf532020-06-15 13:58:47 +02001111 }
1112
Michal Vasko51d21b82020-11-13 18:03:54 +01001113 /* get the module */
1114 if (module_name) {
1115 mod_len = strlen(module_name);
1116 } else {
1117 module_name = prefix;
1118 mod_len = pref_len;
1119 }
1120
Michal Vasko00cbf532020-06-15 13:58:47 +02001121 /* set value if none */
1122 if (!val_str) {
1123 val_str = "";
1124 }
1125
Michal Vasko51d21b82020-11-13 18:03:54 +01001126 LY_CHECK_RET(lyd_create_attr(parent, &ret, ctx, name, name_len, prefix, pref_len, module_name, mod_len, val_str,
1127 strlen(val_str), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA));
Michal Vasko3a41dff2020-07-15 14:30:28 +02001128
1129 if (attr) {
1130 *attr = ret;
1131 }
1132 return LY_SUCCESS;
Michal Vasko00cbf532020-06-15 13:58:47 +02001133}
1134
1135API LY_ERR
1136lyd_change_term(struct lyd_node *term, const char *val_str)
1137{
1138 LY_ERR ret = LY_SUCCESS;
1139 struct lysc_type *type;
1140 struct lyd_node_term *t;
1141 struct lyd_node *parent;
1142 struct lyd_value val = {0};
Radek Krejci857189e2020-09-01 13:26:36 +02001143 ly_bool dflt_change, val_change;
Michal Vasko00cbf532020-06-15 13:58:47 +02001144
1145 LY_CHECK_ARG_RET(NULL, term, term->schema, term->schema->nodetype & LYD_NODE_TERM, LY_EINVAL);
1146
1147 if (!val_str) {
1148 val_str = "";
1149 }
1150 t = (struct lyd_node_term *)term;
1151 type = ((struct lysc_node_leaf *)term->schema)->type;
1152
1153 /* parse the new value */
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001154 ret = lyd_value_store(LYD_CTX(term), &val, type, val_str, strlen(val_str), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA,
1155 term->schema, NULL, LY_VLOG_LYD, term);
1156 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001157
1158 /* compare original and new value */
1159 if (type->plugin->compare(&t->value, &val)) {
1160 /* values differ, switch them */
Michal Vaskob7be7a82020-08-20 09:09:04 +02001161 type->plugin->free(LYD_CTX(term), &t->value);
Michal Vasko00cbf532020-06-15 13:58:47 +02001162 t->value = val;
1163 memset(&val, 0, sizeof val);
1164 val_change = 1;
1165 } else {
1166 val_change = 0;
1167 }
1168
1169 /* always clear the default flag */
1170 if (term->flags & LYD_DEFAULT) {
1171 for (parent = term; parent; parent = (struct lyd_node *)parent->parent) {
1172 parent->flags &= ~LYD_DEFAULT;
1173 }
1174 dflt_change = 1;
1175 } else {
1176 dflt_change = 0;
1177 }
1178
1179 if (val_change || dflt_change) {
1180 /* make the node non-validated */
1181 term->flags &= LYD_NEW;
1182 }
1183
1184 if (val_change) {
1185 if (term->schema->nodetype == LYS_LEAFLIST) {
1186 /* leaf-list needs to be hashed again and re-inserted into parent */
1187 lyd_unlink_hash(term);
1188 lyd_hash(term);
1189 LY_CHECK_GOTO(ret = lyd_insert_hash(term), cleanup);
1190 } else if ((term->schema->flags & LYS_KEY) && term->parent) {
1191 /* list needs to be updated if its key was changed */
1192 assert(term->parent->schema->nodetype == LYS_LIST);
1193 lyd_unlink_hash((struct lyd_node *)term->parent);
1194 lyd_hash((struct lyd_node *)term->parent);
1195 LY_CHECK_GOTO(ret = lyd_insert_hash((struct lyd_node *)term->parent), cleanup);
1196 } /* else leaf that is not a key, its value is not used for its hash so it does not change */
1197 }
1198
1199 /* retrun value */
1200 if (!val_change) {
1201 if (dflt_change) {
1202 /* only default flag change */
1203 ret = LY_EEXIST;
1204 } else {
1205 /* no change */
1206 ret = LY_ENOT;
1207 }
1208 } /* else value changed, LY_SUCCESS */
1209
1210cleanup:
Michal Vaskob7be7a82020-08-20 09:09:04 +02001211 type->plugin->free(LYD_CTX(term), &val);
Michal Vasko00cbf532020-06-15 13:58:47 +02001212 return ret;
1213}
1214
Michal Vasko41586352020-07-13 13:54:25 +02001215API LY_ERR
1216lyd_change_meta(struct lyd_meta *meta, const char *val_str)
1217{
1218 LY_ERR ret = LY_SUCCESS;
Radek Krejci2b18bf12020-11-06 11:20:20 +01001219 struct lyd_meta *m2 = NULL;
Michal Vasko41586352020-07-13 13:54:25 +02001220 struct lyd_value val;
Radek Krejci857189e2020-09-01 13:26:36 +02001221 ly_bool val_change;
Michal Vasko41586352020-07-13 13:54:25 +02001222
1223 LY_CHECK_ARG_RET(NULL, meta, LY_EINVAL);
1224
1225 if (!val_str) {
1226 val_str = "";
1227 }
1228
1229 /* parse the new value into a new meta structure */
1230 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 +01001231 strlen(val_str), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, 0, NULL), cleanup);
Michal Vasko41586352020-07-13 13:54:25 +02001232
1233 /* compare original and new value */
1234 if (lyd_compare_meta(meta, m2)) {
1235 /* values differ, switch them */
1236 val = meta->value;
1237 meta->value = m2->value;
1238 m2->value = val;
1239 val_change = 1;
1240 } else {
1241 val_change = 0;
1242 }
1243
1244 /* retrun value */
1245 if (!val_change) {
1246 /* no change */
1247 ret = LY_ENOT;
1248 } /* else value changed, LY_SUCCESS */
1249
1250cleanup:
Michal Vasko1a66a5d2020-11-18 18:15:37 +01001251 lyd_free_meta_single(m2);
Michal Vasko41586352020-07-13 13:54:25 +02001252 return ret;
1253}
1254
Michal Vasko3a41dff2020-07-15 14:30:28 +02001255API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001256lyd_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 +02001257 struct lyd_node **node)
Michal Vasko00cbf532020-06-15 13:58:47 +02001258{
Michal Vasko3a41dff2020-07-15 14:30:28 +02001259 return lyd_new_path2(parent, ctx, path, value, 0, options, node, NULL);
Michal Vasko00cbf532020-06-15 13:58:47 +02001260}
1261
1262API LY_ERR
1263lyd_new_path2(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const void *value,
Radek Krejci1deb5be2020-08-26 16:43:36 +02001264 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 +02001265{
1266 LY_ERR ret = LY_SUCCESS, r;
1267 struct lyxp_expr *exp = NULL;
1268 struct ly_path *p = NULL;
1269 struct lyd_node *nparent = NULL, *nnode = NULL, *node = NULL, *cur_parent;
1270 const struct lysc_node *schema;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001271 LY_ARRAY_COUNT_TYPE path_idx = 0;
Michal Vasko00cbf532020-06-15 13:58:47 +02001272 struct ly_path_predicate *pred;
1273
1274 LY_CHECK_ARG_RET(ctx, parent || ctx, path, (path[0] == '/') || parent, LY_EINVAL);
1275
1276 if (!ctx) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001277 ctx = LYD_CTX(parent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001278 }
1279
1280 /* parse path */
Michal Vasko6b26e742020-07-17 15:02:10 +02001281 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 +02001282 LY_PATH_PREFIX_OPTIONAL, LY_PATH_PRED_SIMPLE, &exp), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001283
1284 /* compile path */
1285 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 +02001286 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 +01001287 NULL, NULL, &p), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001288
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001289 schema = p[LY_ARRAY_COUNT(p) - 1].node;
Michal Vasko69730152020-10-09 16:30:07 +02001290 if ((schema->nodetype == LYS_LIST) && (p[LY_ARRAY_COUNT(p) - 1].pred_type == LY_PATH_PREDTYPE_NONE) &&
Radek Krejci092e33c2020-10-12 15:33:10 +02001291 !(options & LYD_NEW_PATH_OPAQ)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001292 LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_XPATH, "Predicate missing for %s \"%s\" in path.",
Michal Vasko69730152020-10-09 16:30:07 +02001293 lys_nodetype2str(schema->nodetype), schema->name);
Michal Vasko00cbf532020-06-15 13:58:47 +02001294 ret = LY_EINVAL;
1295 goto cleanup;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001296 } 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 +02001297 /* parse leafref value into a predicate, if not defined in the path */
Michal Vasko00cbf532020-06-15 13:58:47 +02001298 if (!value) {
1299 value = "";
1300 }
1301
1302 r = LY_SUCCESS;
Radek Krejci092e33c2020-10-12 15:33:10 +02001303 if (options & LYD_NEW_PATH_OPAQ) {
Michal Vaskof937cfe2020-08-03 16:07:12 +02001304 r = lys_value_validate(NULL, schema, value, strlen(value));
Michal Vasko00cbf532020-06-15 13:58:47 +02001305 }
1306 if (!r) {
Michal Vasko3af81bc2020-11-18 18:16:13 +01001307 /* store the new predicate */
1308 p[LY_ARRAY_COUNT(p) - 1].pred_type = LY_PATH_PREDTYPE_LEAFLIST;
1309 LY_ARRAY_NEW_GOTO(ctx, p[LY_ARRAY_COUNT(p) - 1].predicates, pred, ret, cleanup);
1310
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001311 ret = lyd_value_store(ctx, &pred->value, ((struct lysc_node_leaflist *)schema)->type, value, strlen(value),
1312 NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, schema, NULL, LY_VLOG_LYSC, schema);
1313 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoae875662020-10-21 10:33:17 +02001314 ++((struct lysc_type *)pred->value.realtype)->refcount;
Michal Vasko00cbf532020-06-15 13:58:47 +02001315 } /* else we have opaq flag and the value is not valid, leavne no predicate and then create an opaque node */
1316 }
1317
1318 /* try to find any existing nodes in the path */
1319 if (parent) {
1320 ret = ly_path_eval_partial(p, parent, &path_idx, &node);
1321 if (ret == LY_SUCCESS) {
1322 /* the node exists, are we supposed to update it or is it just a default? */
Radek Krejci092e33c2020-10-12 15:33:10 +02001323 if (!(options & LYD_NEW_PATH_UPDATE) && !(node->flags & LYD_DEFAULT)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001324 LOGERR(ctx, LY_EEXIST, "Path \"%s\" already exists", path);
1325 ret = LY_EEXIST;
1326 goto cleanup;
1327 }
1328
1329 /* update the existing node */
1330 ret = lyd_new_path_update(node, value, value_type, &nparent, &nnode);
1331 goto cleanup;
1332 } else if (ret == LY_EINCOMPLETE) {
1333 /* some nodes were found, adjust the iterator to the next segment */
1334 ++path_idx;
1335 } else if (ret == LY_ENOTFOUND) {
1336 /* 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 +01001337 if (lysc_data_parent(p[0].node)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001338 node = parent;
1339 }
1340 } else {
1341 /* error */
1342 goto cleanup;
1343 }
1344 }
1345
1346 /* create all the non-existing nodes in a loop */
Michal Vaskod989ba02020-08-24 10:59:24 +02001347 for ( ; path_idx < LY_ARRAY_COUNT(p); ++path_idx) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001348 cur_parent = node;
1349 schema = p[path_idx].node;
1350
1351 switch (schema->nodetype) {
1352 case LYS_LIST:
1353 if (!(schema->flags & LYS_KEYLESS)) {
Radek Krejci092e33c2020-10-12 15:33:10 +02001354 if ((options & LYD_NEW_PATH_OPAQ) && (p[path_idx].pred_type == LY_PATH_PREDTYPE_NONE)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001355 /* creating opaque list without keys */
Michal Vasko501af032020-11-11 20:27:44 +01001356 LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), NULL, 0,
1357 schema->module->name, strlen(schema->module->name), NULL, 0, NULL, LY_PREF_JSON, NULL,
1358 LYD_NODEHINT_LIST, &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001359 } else {
1360 assert(p[path_idx].pred_type == LY_PATH_PREDTYPE_LIST);
1361 LY_CHECK_GOTO(ret = lyd_create_list(schema, p[path_idx].predicates, &node), cleanup);
1362 }
1363 break;
1364 }
Radek Krejcif13b87b2020-12-01 22:02:17 +01001365 /* fall through */
Michal Vasko00cbf532020-06-15 13:58:47 +02001366 case LYS_CONTAINER:
1367 case LYS_NOTIF:
1368 case LYS_RPC:
1369 case LYS_ACTION:
1370 LY_CHECK_GOTO(ret = lyd_create_inner(schema, &node), cleanup);
1371 break;
1372 case LYS_LEAFLIST:
Radek Krejci092e33c2020-10-12 15:33:10 +02001373 if ((options & LYD_NEW_PATH_OPAQ) && (p[path_idx].pred_type == LY_PATH_PREDTYPE_NONE)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001374 /* creating opaque leaf-list without value */
Michal Vasko501af032020-11-11 20:27:44 +01001375 LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), NULL, 0,
1376 schema->module->name, strlen(schema->module->name), NULL, 0, NULL, LY_PREF_JSON, NULL,
1377 LYD_NODEHINT_LEAFLIST, &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001378 } else {
1379 assert(p[path_idx].pred_type == LY_PATH_PREDTYPE_LEAFLIST);
1380 LY_CHECK_GOTO(ret = lyd_create_term2(schema, &p[path_idx].predicates[0].value, &node), cleanup);
1381 }
1382 break;
1383 case LYS_LEAF:
Michal Vasko35880332020-12-08 13:08:12 +01001384 if (lysc_is_key(schema)) {
1385 /* it must have been already created or some error will occur later */
1386 assert(cur_parent);
1387 node = lyd_child(cur_parent);
1388 assert(node && (node->schema == schema));
1389 goto next_iter;
1390 }
1391
1392 /* make sure there is some value */
Michal Vasko00cbf532020-06-15 13:58:47 +02001393 if (!value) {
1394 value = "";
1395 }
1396
1397 r = LY_SUCCESS;
Radek Krejci092e33c2020-10-12 15:33:10 +02001398 if (options & LYD_NEW_PATH_OPAQ) {
Michal Vaskof937cfe2020-08-03 16:07:12 +02001399 r = lys_value_validate(NULL, schema, value, strlen(value));
Michal Vasko00cbf532020-06-15 13:58:47 +02001400 }
1401 if (!r) {
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001402 ret = lyd_create_term(schema, value, strlen(value), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, NULL, &node);
1403 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001404 } else {
1405 /* creating opaque leaf without value */
Michal Vasko501af032020-11-11 20:27:44 +01001406 LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), NULL, 0, schema->module->name,
1407 strlen(schema->module->name), NULL, 0, NULL, LY_PREF_JSON, NULL, 0, &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001408 }
1409 break;
1410 case LYS_ANYDATA:
1411 case LYS_ANYXML:
Michal Vasko366a4a12020-12-04 16:23:57 +01001412 LY_CHECK_GOTO(ret = lyd_create_any(schema, value, value_type, 0, &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001413 break;
1414 default:
1415 LOGINT(ctx);
1416 ret = LY_EINT;
1417 goto cleanup;
1418 }
1419
1420 if (cur_parent) {
1421 /* connect to the parent */
1422 lyd_insert_node(cur_parent, NULL, node);
1423 } else if (parent) {
1424 /* connect to top-level siblings */
1425 lyd_insert_node(NULL, &parent, node);
1426 }
1427
Michal Vasko35880332020-12-08 13:08:12 +01001428next_iter:
Michal Vasko00cbf532020-06-15 13:58:47 +02001429 /* update remembered nodes */
1430 if (!nparent) {
1431 nparent = node;
1432 }
1433 nnode = node;
1434 }
1435
1436cleanup:
1437 lyxp_expr_free(ctx, exp);
1438 ly_path_free(ctx, p);
1439 if (!ret) {
1440 /* set out params only on success */
1441 if (new_parent) {
1442 *new_parent = nparent;
1443 }
1444 if (new_node) {
1445 *new_node = nnode;
1446 }
1447 }
1448 return ret;
1449}
1450
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001451LY_ERR
1452lyd_new_implicit_r(struct lyd_node *parent, struct lyd_node **first, const struct lysc_node *sparent,
Radek Krejci1deb5be2020-08-26 16:43:36 +02001453 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 +02001454 struct lyd_node **diff)
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001455{
1456 LY_ERR ret;
1457 const struct lysc_node *iter = NULL;
Radek Krejci2b18bf12020-11-06 11:20:20 +01001458 struct lyd_node *node = NULL;
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001459 struct lyd_value **dflts;
1460 LY_ARRAY_COUNT_TYPE u;
1461
1462 assert(first && (parent || sparent || mod));
1463
1464 if (!sparent && parent) {
1465 sparent = parent->schema;
1466 }
1467
1468 while ((iter = lys_getnext(iter, sparent, mod ? mod->compiled : NULL, LYS_GETNEXT_WITHCHOICE))) {
1469 if ((impl_opts & LYD_IMPLICIT_NO_STATE) && (iter->flags & LYS_CONFIG_R)) {
1470 continue;
Michal Vasko44b19a12020-08-07 09:21:30 +02001471 } else if ((impl_opts & LYD_IMPLICIT_NO_CONFIG) && (iter->flags & LYS_CONFIG_W)) {
1472 continue;
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001473 }
1474
1475 switch (iter->nodetype) {
1476 case LYS_CHOICE:
Michal Vaskobcf4d7d2020-11-18 18:16:49 +01001477 node = lys_getnext_data(NULL, *first, NULL, iter, NULL);
1478 if (!node && ((struct lysc_node_choice *)iter)->dflt) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001479 /* create default case data */
1480 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 +02001481 NULL, node_types, node_when, impl_opts, diff));
Michal Vaskobcf4d7d2020-11-18 18:16:49 +01001482 } else if (node) {
1483 /* create any default data in the existing case */
1484 assert(node->schema->parent->nodetype == LYS_CASE);
1485 LY_CHECK_RET(lyd_new_implicit_r(parent, first, node->schema->parent, NULL, node_types, node_when,
1486 impl_opts, diff));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001487 }
1488 break;
1489 case LYS_CONTAINER:
1490 if (!(iter->flags & LYS_PRESENCE) && lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
1491 /* create default NP container */
1492 LY_CHECK_RET(lyd_create_inner(iter, &node));
Michal Vasko0cadfcb2020-11-04 17:17:05 +01001493 node->flags = LYD_DEFAULT | (node->schema->when ? LYD_WHEN_TRUE : 0);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001494 lyd_insert_node(parent, first, node);
1495
1496 /* cannot be a NP container with when */
1497 assert(!iter->when);
1498
Michal Vaskoe49b6322020-11-05 17:38:36 +01001499 if (diff) {
1500 /* add into diff */
1501 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff));
1502 }
1503
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001504 /* create any default children */
1505 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 +02001506 impl_opts, diff));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001507 }
1508 break;
1509 case LYS_LEAF:
Michal Vasko69730152020-10-09 16:30:07 +02001510 if (!(impl_opts & LYD_IMPLICIT_NO_DEFAULTS) && ((struct lysc_node_leaf *)iter)->dflt &&
1511 lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001512 /* create default leaf */
1513 ret = lyd_create_term2(iter, ((struct lysc_node_leaf *)iter)->dflt, &node);
1514 if (ret == LY_EINCOMPLETE) {
1515 if (node_types) {
1516 /* remember to resolve type */
Radek Krejci3d92e442020-10-12 12:48:13 +02001517 LY_CHECK_RET(ly_set_add(node_types, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001518 }
1519 } else if (ret) {
1520 return ret;
1521 }
Michal Vasko0cadfcb2020-11-04 17:17:05 +01001522 node->flags = LYD_DEFAULT | (node->schema->when ? LYD_WHEN_TRUE : 0);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001523 lyd_insert_node(parent, first, node);
1524
1525 if (iter->when && node_when) {
1526 /* remember to resolve when */
Radek Krejci3d92e442020-10-12 12:48:13 +02001527 LY_CHECK_RET(ly_set_add(node_when, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001528 }
1529 if (diff) {
1530 /* add into diff */
1531 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff));
1532 }
1533 }
1534 break;
1535 case LYS_LEAFLIST:
Michal Vasko69730152020-10-09 16:30:07 +02001536 if (!(impl_opts & LYD_IMPLICIT_NO_DEFAULTS) && ((struct lysc_node_leaflist *)iter)->dflts &&
1537 lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001538 /* create all default leaf-lists */
1539 dflts = ((struct lysc_node_leaflist *)iter)->dflts;
1540 LY_ARRAY_FOR(dflts, u) {
1541 ret = lyd_create_term2(iter, dflts[u], &node);
1542 if (ret == LY_EINCOMPLETE) {
1543 if (node_types) {
1544 /* remember to resolve type */
Radek Krejci3d92e442020-10-12 12:48:13 +02001545 LY_CHECK_RET(ly_set_add(node_types, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001546 }
1547 } else if (ret) {
1548 return ret;
1549 }
Radek Krejcic5b54a02020-11-05 17:13:18 +01001550 node->flags = LYD_DEFAULT | (node->schema->when ? LYD_WHEN_TRUE : 0);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001551 lyd_insert_node(parent, first, node);
1552
1553 if (iter->when && node_when) {
1554 /* remember to resolve when */
Radek Krejci3d92e442020-10-12 12:48:13 +02001555 LY_CHECK_RET(ly_set_add(node_when, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001556 }
1557 if (diff) {
1558 /* add into diff */
1559 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff));
1560 }
1561 }
1562 }
1563 break;
1564 default:
1565 /* without defaults */
1566 break;
1567 }
1568 }
1569
1570 return LY_SUCCESS;
1571}
1572
1573API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001574lyd_new_implicit_tree(struct lyd_node *tree, uint32_t implicit_options, struct lyd_node **diff)
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001575{
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001576 LY_ERR ret = LY_SUCCESS;
Michal Vasko3488ada2020-12-03 14:18:19 +01001577 struct lyd_node *node;
1578 struct ly_set node_when = {0};
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001579
1580 LY_CHECK_ARG_RET(NULL, tree, LY_EINVAL);
1581 if (diff) {
1582 *diff = NULL;
1583 }
1584
Michal Vasko56daf732020-08-10 10:57:18 +02001585 LYD_TREE_DFS_BEGIN(tree, node) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001586 /* skip added default nodes */
Michal Vasko69730152020-10-09 16:30:07 +02001587 if (((node->flags & (LYD_DEFAULT | LYD_NEW)) != (LYD_DEFAULT | LYD_NEW)) &&
1588 (node->schema->nodetype & LYD_NODE_INNER)) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001589 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 +01001590 &node_when, implicit_options, diff), cleanup);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001591 }
1592
Michal Vasko56daf732020-08-10 10:57:18 +02001593 LYD_TREE_DFS_END(tree, node);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001594 }
1595
Michal Vasko3488ada2020-12-03 14:18:19 +01001596 /* resolve when and remove any invalid defaults */
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001597 LY_CHECK_GOTO(ret = lyd_validate_unres(&tree, NULL, &node_when, NULL, NULL, diff), cleanup);
Michal Vasko3488ada2020-12-03 14:18:19 +01001598
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001599cleanup:
Michal Vasko3488ada2020-12-03 14:18:19 +01001600 ly_set_erase(&node_when, NULL);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001601 if (ret && diff) {
1602 lyd_free_all(*diff);
1603 *diff = NULL;
1604 }
1605 return ret;
1606}
1607
1608API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001609lyd_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 +02001610{
1611 const struct lys_module *mod;
1612 struct lyd_node *d = NULL;
1613 uint32_t i = 0;
1614 LY_ERR ret = LY_SUCCESS;
1615
1616 LY_CHECK_ARG_RET(ctx, tree, *tree || ctx, LY_EINVAL);
1617 if (diff) {
1618 *diff = NULL;
1619 }
1620 if (!ctx) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001621 ctx = LYD_CTX(*tree);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001622 }
1623
1624 /* add nodes for each module one-by-one */
1625 while ((mod = ly_ctx_get_module_iter(ctx, &i))) {
1626 if (!mod->implemented) {
1627 continue;
1628 }
1629
1630 LY_CHECK_GOTO(ret = lyd_new_implicit_module(tree, mod, implicit_options, diff ? &d : NULL), cleanup);
1631 if (d) {
1632 /* merge into one diff */
1633 lyd_insert_sibling(*diff, d, diff);
1634
1635 d = NULL;
1636 }
1637 }
1638
1639cleanup:
1640 if (ret && diff) {
1641 lyd_free_all(*diff);
1642 *diff = NULL;
1643 }
1644 return ret;
1645}
1646
1647API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001648lyd_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 +02001649{
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001650 LY_ERR ret = LY_SUCCESS;
Michal Vasko3488ada2020-12-03 14:18:19 +01001651 struct lyd_node *root, *d = NULL;
1652 struct ly_set node_when = {0};
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001653
1654 LY_CHECK_ARG_RET(NULL, tree, module, LY_EINVAL);
1655 if (diff) {
1656 *diff = NULL;
1657 }
1658
1659 /* add all top-level defaults for this module */
Michal Vasko3488ada2020-12-03 14:18:19 +01001660 LY_CHECK_GOTO(ret = lyd_new_implicit_r(NULL, tree, NULL, module, NULL, &node_when, implicit_options, diff), cleanup);
1661
1662 /* resolve when and remove any invalid defaults */
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001663 LY_CHECK_GOTO(ret = lyd_validate_unres(tree, module, &node_when, NULL, NULL, diff), cleanup);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001664
1665 /* process nested nodes */
1666 LY_LIST_FOR(*tree, root) {
1667 /* skip added default nodes */
1668 if ((root->flags & (LYD_DEFAULT | LYD_NEW)) != (LYD_DEFAULT | LYD_NEW)) {
1669 LY_CHECK_GOTO(ret = lyd_new_implicit_tree(root, implicit_options, diff ? &d : NULL), cleanup);
1670
1671 if (d) {
1672 /* merge into one diff */
1673 lyd_insert_sibling(*diff, d, diff);
1674
1675 d = NULL;
1676 }
1677 }
1678 }
1679
1680cleanup:
Michal Vasko3488ada2020-12-03 14:18:19 +01001681 ly_set_erase(&node_when, NULL);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001682 if (ret && diff) {
1683 lyd_free_all(*diff);
1684 *diff = NULL;
1685 }
1686 return ret;
1687}
1688
Michal Vasko90932a92020-02-12 14:33:03 +01001689struct lyd_node *
Michal Vaskob104f112020-07-17 09:54:54 +02001690lyd_insert_get_next_anchor(const struct lyd_node *first_sibling, const struct lyd_node *new_node)
Michal Vasko90932a92020-02-12 14:33:03 +01001691{
Michal Vaskob104f112020-07-17 09:54:54 +02001692 const struct lysc_node *schema, *sparent;
Michal Vasko90932a92020-02-12 14:33:03 +01001693 struct lyd_node *match = NULL;
Radek Krejci857189e2020-09-01 13:26:36 +02001694 ly_bool found;
Michal Vasko90932a92020-02-12 14:33:03 +01001695
Michal Vaskob104f112020-07-17 09:54:54 +02001696 assert(new_node);
1697
1698 if (!first_sibling || !new_node->schema) {
1699 /* insert at the end, no next anchor */
Michal Vasko90932a92020-02-12 14:33:03 +01001700 return NULL;
1701 }
1702
Michal Vaskob104f112020-07-17 09:54:54 +02001703 if (first_sibling->parent && first_sibling->parent->children_ht) {
1704 /* find the anchor using hashes */
1705 sparent = first_sibling->parent->schema;
1706 schema = lys_getnext(new_node->schema, sparent, NULL, 0);
1707 while (schema) {
1708 /* keep trying to find the first existing instance of the closest following schema sibling,
1709 * otherwise return NULL - inserting at the end */
1710 if (!lyd_find_sibling_schema(first_sibling, schema, &match)) {
1711 break;
1712 }
1713
1714 schema = lys_getnext(schema, sparent, NULL, 0);
1715 }
1716 } else {
1717 /* find the anchor without hashes */
1718 match = (struct lyd_node *)first_sibling;
1719 if (!lysc_data_parent(new_node->schema)) {
1720 /* we are in top-level, skip all the data from preceding modules */
1721 LY_LIST_FOR(match, match) {
1722 if (!match->schema || (strcmp(lyd_owner_module(match)->name, lyd_owner_module(new_node)->name) >= 0)) {
1723 break;
1724 }
1725 }
1726 }
1727
1728 /* get the first schema sibling */
1729 sparent = lysc_data_parent(new_node->schema);
1730 schema = lys_getnext(NULL, sparent, new_node->schema->module->compiled, 0);
1731
1732 found = 0;
1733 LY_LIST_FOR(match, match) {
1734 if (!match->schema || (lyd_owner_module(match) != lyd_owner_module(new_node))) {
1735 /* we have found an opaque node, which must be at the end, so use it OR
1736 * modules do not match, so we must have traversed all the data from new_node module (if any),
1737 * we have found the first node of the next module, that is what we want */
1738 break;
1739 }
1740
1741 /* skip schema nodes until we find the instantiated one */
1742 while (!found) {
1743 if (new_node->schema == schema) {
1744 /* we have found the schema of the new node, continue search to find the first
1745 * data node with a different schema (after our schema) */
1746 found = 1;
1747 break;
1748 }
1749 if (match->schema == schema) {
1750 /* current node (match) is a data node still before the new node, continue search in data */
1751 break;
1752 }
1753 schema = lys_getnext(schema, sparent, new_node->schema->module->compiled, 0);
1754 assert(schema);
1755 }
1756
1757 if (found && (match->schema != new_node->schema)) {
1758 /* find the next node after we have found our node schema data instance */
1759 break;
1760 }
1761 }
Michal Vasko90932a92020-02-12 14:33:03 +01001762 }
1763
1764 return match;
1765}
1766
1767/**
1768 * @brief Insert node after a sibling.
1769 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001770 * Handles inserting into NP containers and key-less lists.
1771 *
Michal Vasko90932a92020-02-12 14:33:03 +01001772 * @param[in] sibling Sibling to insert after.
1773 * @param[in] node Node to insert.
1774 */
1775static void
Michal Vaskof03ed032020-03-04 13:31:44 +01001776lyd_insert_after_node(struct lyd_node *sibling, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001777{
Michal Vasko0249f7c2020-03-05 16:36:40 +01001778 struct lyd_node_inner *par;
1779
Michal Vasko90932a92020-02-12 14:33:03 +01001780 assert(!node->next && (node->prev == node));
1781
1782 node->next = sibling->next;
1783 node->prev = sibling;
1784 sibling->next = node;
1785 if (node->next) {
1786 /* sibling had a succeeding node */
1787 node->next->prev = node;
1788 } else {
1789 /* sibling was last, find first sibling and change its prev */
1790 if (sibling->parent) {
1791 sibling = sibling->parent->child;
1792 } else {
Michal Vaskod989ba02020-08-24 10:59:24 +02001793 for ( ; sibling->prev->next != node; sibling = sibling->prev) {}
Michal Vasko90932a92020-02-12 14:33:03 +01001794 }
1795 sibling->prev = node;
1796 }
1797 node->parent = sibling->parent;
Michal Vasko0249f7c2020-03-05 16:36:40 +01001798
Michal Vasko9f96a052020-03-10 09:41:45 +01001799 for (par = node->parent; par; par = par->parent) {
1800 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
1801 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01001802 par->flags &= ~LYD_DEFAULT;
1803 }
Michal Vaskob104f112020-07-17 09:54:54 +02001804 if (par->schema && (par->schema->nodetype == LYS_LIST) && (par->schema->flags & LYS_KEYLESS)) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001805 /* rehash key-less list */
1806 lyd_hash((struct lyd_node *)par);
1807 }
Michal Vasko0249f7c2020-03-05 16:36:40 +01001808 }
Michal Vasko90932a92020-02-12 14:33:03 +01001809}
1810
1811/**
1812 * @brief Insert node before a sibling.
1813 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001814 * Handles inserting into NP containers and key-less lists.
1815 *
Michal Vasko90932a92020-02-12 14:33:03 +01001816 * @param[in] sibling Sibling to insert before.
1817 * @param[in] node Node to insert.
1818 */
1819static void
Michal Vaskof03ed032020-03-04 13:31:44 +01001820lyd_insert_before_node(struct lyd_node *sibling, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001821{
Michal Vasko0249f7c2020-03-05 16:36:40 +01001822 struct lyd_node_inner *par;
1823
Michal Vasko90932a92020-02-12 14:33:03 +01001824 assert(!node->next && (node->prev == node));
1825
1826 node->next = sibling;
1827 /* covers situation of sibling being first */
1828 node->prev = sibling->prev;
1829 sibling->prev = node;
1830 if (node->prev->next) {
1831 /* sibling had a preceding node */
1832 node->prev->next = node;
1833 } else if (sibling->parent) {
1834 /* sibling was first and we must also change parent child pointer */
1835 sibling->parent->child = node;
1836 }
1837 node->parent = sibling->parent;
Michal Vasko0249f7c2020-03-05 16:36:40 +01001838
Michal Vasko9f96a052020-03-10 09:41:45 +01001839 for (par = node->parent; par; par = par->parent) {
1840 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
1841 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01001842 par->flags &= ~LYD_DEFAULT;
1843 }
Michal Vaskob104f112020-07-17 09:54:54 +02001844 if (par->schema && (par->schema->nodetype == LYS_LIST) && (par->schema->flags & LYS_KEYLESS)) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001845 /* rehash key-less list */
1846 lyd_hash((struct lyd_node *)par);
1847 }
Michal Vasko0249f7c2020-03-05 16:36:40 +01001848 }
Michal Vasko90932a92020-02-12 14:33:03 +01001849}
1850
1851/**
Michal Vaskob104f112020-07-17 09:54:54 +02001852 * @brief Insert node as the first and only child of a parent.
Michal Vasko90932a92020-02-12 14:33:03 +01001853 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001854 * Handles inserting into NP containers and key-less lists.
1855 *
Michal Vasko90932a92020-02-12 14:33:03 +01001856 * @param[in] parent Parent to insert into.
1857 * @param[in] node Node to insert.
1858 */
1859static void
Michal Vaskob104f112020-07-17 09:54:54 +02001860lyd_insert_only_child(struct lyd_node *parent, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001861{
1862 struct lyd_node_inner *par;
1863
Radek Krejcia1c1e542020-09-29 16:06:52 +02001864 assert(parent && !lyd_child(parent) && !node->next && (node->prev == node));
Michal Vasko52927e22020-03-16 17:26:14 +01001865 assert(!parent->schema || (parent->schema->nodetype & LYD_NODE_INNER));
Michal Vasko90932a92020-02-12 14:33:03 +01001866
1867 par = (struct lyd_node_inner *)parent;
1868
Michal Vaskob104f112020-07-17 09:54:54 +02001869 par->child = node;
Michal Vasko90932a92020-02-12 14:33:03 +01001870 node->parent = par;
Michal Vasko0249f7c2020-03-05 16:36:40 +01001871
Michal Vaskod989ba02020-08-24 10:59:24 +02001872 for ( ; par; par = par->parent) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001873 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
1874 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01001875 par->flags &= ~LYD_DEFAULT;
1876 }
Michal Vasko52927e22020-03-16 17:26:14 +01001877 if (par->schema && (par->schema->nodetype == LYS_LIST) && (par->schema->flags & LYS_KEYLESS)) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001878 /* rehash key-less list */
1879 lyd_hash((struct lyd_node *)par);
1880 }
Michal Vasko0249f7c2020-03-05 16:36:40 +01001881 }
Michal Vasko751cb4d2020-07-14 12:25:28 +02001882}
Michal Vasko0249f7c2020-03-05 16:36:40 +01001883
Michal Vasko751cb4d2020-07-14 12:25:28 +02001884/**
1885 * @brief Learn whether a list instance has all the keys.
1886 *
1887 * @param[in] list List instance to check.
1888 * @return non-zero if all the keys were found,
1889 * @return 0 otherwise.
1890 */
1891static int
1892lyd_insert_has_keys(const struct lyd_node *list)
1893{
1894 const struct lyd_node *key;
1895 const struct lysc_node *skey = NULL;
1896
1897 assert(list->schema->nodetype == LYS_LIST);
Radek Krejcia1c1e542020-09-29 16:06:52 +02001898 key = lyd_child(list);
Michal Vasko751cb4d2020-07-14 12:25:28 +02001899 while ((skey = lys_getnext(skey, list->schema, NULL, 0)) && (skey->flags & LYS_KEY)) {
1900 if (!key || (key->schema != skey)) {
1901 /* key missing */
1902 return 0;
1903 }
1904
1905 key = key->next;
1906 }
1907
1908 /* all keys found */
1909 return 1;
Michal Vasko90932a92020-02-12 14:33:03 +01001910}
1911
1912void
Michal Vaskob104f112020-07-17 09:54:54 +02001913lyd_insert_node(struct lyd_node *parent, struct lyd_node **first_sibling_p, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001914{
Michal Vaskob104f112020-07-17 09:54:54 +02001915 struct lyd_node *anchor, *first_sibling;
Michal Vasko90932a92020-02-12 14:33:03 +01001916
Michal Vaskob104f112020-07-17 09:54:54 +02001917 /* inserting list without its keys is not supported */
1918 assert((parent || first_sibling_p) && node && (node->hash || !node->schema));
Michal Vaskof756c942020-11-06 17:21:37 +01001919 assert(!parent || !parent->schema ||
1920 (parent->schema->nodetype & (LYS_CONTAINER | LYS_LIST | LYS_RPC | LYS_ACTION | LYS_NOTIF)));
Michal Vasko9b368d32020-02-14 13:53:31 +01001921
Michal Vaskob104f112020-07-17 09:54:54 +02001922 if (!parent && first_sibling_p && (*first_sibling_p) && (*first_sibling_p)->parent) {
1923 parent = (struct lyd_node *)(*first_sibling_p)->parent;
Michal Vasko9b368d32020-02-14 13:53:31 +01001924 }
Michal Vasko90932a92020-02-12 14:33:03 +01001925
Michal Vaskob104f112020-07-17 09:54:54 +02001926 /* get first sibling */
1927 first_sibling = parent ? ((struct lyd_node_inner *)parent)->child : *first_sibling_p;
Michal Vasko9f96a052020-03-10 09:41:45 +01001928
Michal Vaskob104f112020-07-17 09:54:54 +02001929 /* find the anchor, our next node, so we can insert before it */
1930 anchor = lyd_insert_get_next_anchor(first_sibling, node);
1931 if (anchor) {
1932 lyd_insert_before_node(anchor, node);
Michal Vasko26123192020-11-09 21:02:34 +01001933 if (!parent && (*first_sibling_p == anchor)) {
1934 /* move first sibling */
1935 *first_sibling_p = node;
1936 }
Michal Vaskob104f112020-07-17 09:54:54 +02001937 } else if (first_sibling) {
1938 lyd_insert_after_node(first_sibling->prev, node);
1939 } else if (parent) {
1940 lyd_insert_only_child(parent, node);
Michal Vasko90932a92020-02-12 14:33:03 +01001941 } else {
Michal Vaskob104f112020-07-17 09:54:54 +02001942 *first_sibling_p = node;
1943 }
1944
1945 /* insert into parent HT */
1946 lyd_insert_hash(node);
1947
1948 /* finish hashes for our parent, if needed and possible */
Michal Vasko9e8de2d2020-09-01 08:17:10 +02001949 if (node->schema && (node->schema->flags & LYS_KEY) && parent && lyd_insert_has_keys(parent)) {
Michal Vaskob104f112020-07-17 09:54:54 +02001950 lyd_hash(parent);
1951
1952 /* now we can insert even the list into its parent HT */
1953 lyd_insert_hash(parent);
Michal Vasko90932a92020-02-12 14:33:03 +01001954 }
Michal Vasko90932a92020-02-12 14:33:03 +01001955}
1956
Michal Vasko717a4c32020-12-07 09:40:10 +01001957/**
1958 * @brief Check schema place of a node to be inserted.
1959 *
1960 * @param[in] parent Schema node of the parent data node.
1961 * @param[in] sibling Schema node of a sibling data node.
1962 * @param[in] schema Schema node if the data node to be inserted.
1963 * @return LY_SUCCESS on success.
1964 * @return LY_EINVAL if the place is invalid.
1965 */
Michal Vaskof03ed032020-03-04 13:31:44 +01001966static LY_ERR
Michal Vasko717a4c32020-12-07 09:40:10 +01001967lyd_insert_check_schema(const struct lysc_node *parent, const struct lysc_node *sibling, const struct lysc_node *schema)
Michal Vaskof03ed032020-03-04 13:31:44 +01001968{
1969 const struct lysc_node *par2;
1970
Michal Vasko62ed12d2020-05-21 10:08:25 +02001971 assert(!parent || !(parent->nodetype & (LYS_CASE | LYS_CHOICE)));
Michal Vasko717a4c32020-12-07 09:40:10 +01001972 assert(!sibling || !(sibling->nodetype & (LYS_CASE | LYS_CHOICE)));
1973 assert(!schema || !(schema->nodetype & (LYS_CASE | LYS_CHOICE)));
Michal Vaskof03ed032020-03-04 13:31:44 +01001974
Michal Vasko717a4c32020-12-07 09:40:10 +01001975 if (!schema || (!parent && !sibling)) {
Michal Vasko71e795e2020-12-04 16:27:37 +01001976 /* opaque nodes can be inserted wherever */
1977 return LY_SUCCESS;
1978 }
1979
Michal Vasko717a4c32020-12-07 09:40:10 +01001980 if (!parent) {
1981 parent = lysc_data_parent(sibling);
1982 }
1983
Michal Vaskof03ed032020-03-04 13:31:44 +01001984 /* find schema parent */
Michal Vasko62ed12d2020-05-21 10:08:25 +02001985 par2 = lysc_data_parent(schema);
Michal Vaskof03ed032020-03-04 13:31:44 +01001986
1987 if (parent) {
1988 /* inner node */
1989 if (par2 != parent) {
Michal Vaskob104f112020-07-17 09:54:54 +02001990 LOGERR(schema->module->ctx, LY_EINVAL, "Cannot insert, parent of \"%s\" is not \"%s\".", schema->name,
Michal Vasko69730152020-10-09 16:30:07 +02001991 parent->name);
Michal Vaskof03ed032020-03-04 13:31:44 +01001992 return LY_EINVAL;
1993 }
1994 } else {
1995 /* top-level node */
1996 if (par2) {
Radek Krejcif6d14cb2020-07-02 16:11:45 +02001997 LOGERR(schema->module->ctx, LY_EINVAL, "Cannot insert, node \"%s\" is not top-level.", schema->name);
Michal Vaskof03ed032020-03-04 13:31:44 +01001998 return LY_EINVAL;
1999 }
2000 }
2001
2002 return LY_SUCCESS;
2003}
2004
2005API LY_ERR
Michal Vaskob104f112020-07-17 09:54:54 +02002006lyd_insert_child(struct lyd_node *parent, struct lyd_node *node)
Michal Vaskof03ed032020-03-04 13:31:44 +01002007{
2008 struct lyd_node *iter;
2009
Michal Vasko654bc852020-06-23 13:28:06 +02002010 LY_CHECK_ARG_RET(NULL, parent, node, parent->schema->nodetype & LYD_NODE_INNER, LY_EINVAL);
Michal Vaskof03ed032020-03-04 13:31:44 +01002011
Michal Vasko717a4c32020-12-07 09:40:10 +01002012 LY_CHECK_RET(lyd_insert_check_schema(parent->schema, NULL, node->schema));
Michal Vaskof03ed032020-03-04 13:31:44 +01002013
2014 if (node->schema->flags & LYS_KEY) {
2015 LOGERR(parent->schema->module->ctx, LY_EINVAL, "Cannot insert key \"%s\".", node->schema->name);
2016 return LY_EINVAL;
2017 }
2018
2019 if (node->parent || node->prev->next) {
2020 lyd_unlink_tree(node);
2021 }
2022
2023 while (node) {
2024 iter = node->next;
2025 lyd_unlink_tree(node);
2026 lyd_insert_node(parent, NULL, node);
2027 node = iter;
2028 }
2029 return LY_SUCCESS;
2030}
2031
2032API LY_ERR
Michal Vaskob104f112020-07-17 09:54:54 +02002033lyd_insert_sibling(struct lyd_node *sibling, struct lyd_node *node, struct lyd_node **first)
Michal Vaskob1b5c262020-03-05 14:29:47 +01002034{
2035 struct lyd_node *iter;
2036
Michal Vaskob104f112020-07-17 09:54:54 +02002037 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Michal Vaskob1b5c262020-03-05 14:29:47 +01002038
Michal Vaskob104f112020-07-17 09:54:54 +02002039 if (sibling) {
Michal Vasko717a4c32020-12-07 09:40:10 +01002040 LY_CHECK_RET(lyd_insert_check_schema(NULL, sibling->schema, node->schema));
Michal Vaskob1b5c262020-03-05 14:29:47 +01002041 }
2042
Michal Vasko553d0b52020-12-04 16:27:52 +01002043 if (sibling == node) {
2044 /* we need to keep the connection to siblings so we can insert into them */
2045 sibling = sibling->prev;
2046 }
2047
Michal Vaskob1b5c262020-03-05 14:29:47 +01002048 if (node->parent || node->prev->next) {
2049 lyd_unlink_tree(node);
2050 }
2051
2052 while (node) {
Michal Vasko71e795e2020-12-04 16:27:37 +01002053 if (lysc_is_key(node->schema)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002054 LOGERR(LYD_CTX(node), LY_EINVAL, "Cannot insert key \"%s\".", node->schema->name);
Michal Vaskob104f112020-07-17 09:54:54 +02002055 return LY_EINVAL;
2056 }
2057
Michal Vaskob1b5c262020-03-05 14:29:47 +01002058 iter = node->next;
2059 lyd_unlink_tree(node);
2060 lyd_insert_node(NULL, &sibling, node);
2061 node = iter;
2062 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01002063
Michal Vaskob104f112020-07-17 09:54:54 +02002064 if (first) {
2065 /* find the first sibling */
2066 *first = sibling;
2067 while ((*first)->prev->next) {
2068 *first = (*first)->prev;
Michal Vasko0249f7c2020-03-05 16:36:40 +01002069 }
2070 }
2071
2072 return LY_SUCCESS;
2073}
2074
Michal Vaskob1b5c262020-03-05 14:29:47 +01002075API LY_ERR
Michal Vaskof03ed032020-03-04 13:31:44 +01002076lyd_insert_before(struct lyd_node *sibling, struct lyd_node *node)
2077{
Michal Vaskof03ed032020-03-04 13:31:44 +01002078 LY_CHECK_ARG_RET(NULL, sibling, node, LY_EINVAL);
2079
Michal Vasko717a4c32020-12-07 09:40:10 +01002080 LY_CHECK_RET(lyd_insert_check_schema(NULL, sibling->schema, node->schema));
Michal Vaskof03ed032020-03-04 13:31:44 +01002081
Michal Vaskob104f112020-07-17 09:54:54 +02002082 if (!(node->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !(node->schema->flags & LYS_ORDBY_USER)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002083 LOGERR(LYD_CTX(sibling), LY_EINVAL, "Can be used only for user-ordered nodes.");
Michal Vaskof03ed032020-03-04 13:31:44 +01002084 return LY_EINVAL;
2085 }
2086
Michal Vasko4bc2ce32020-12-08 10:06:16 +01002087 lyd_unlink_tree(node);
2088 lyd_insert_before_node(sibling, node);
2089 lyd_insert_hash(node);
Michal Vaskof03ed032020-03-04 13:31:44 +01002090
Michal Vaskof03ed032020-03-04 13:31:44 +01002091 return LY_SUCCESS;
2092}
2093
2094API LY_ERR
2095lyd_insert_after(struct lyd_node *sibling, struct lyd_node *node)
2096{
Michal Vaskof03ed032020-03-04 13:31:44 +01002097 LY_CHECK_ARG_RET(NULL, sibling, node, LY_EINVAL);
2098
Michal Vasko717a4c32020-12-07 09:40:10 +01002099 LY_CHECK_RET(lyd_insert_check_schema(NULL, sibling->schema, node->schema));
Michal Vaskof03ed032020-03-04 13:31:44 +01002100
Michal Vaskob104f112020-07-17 09:54:54 +02002101 if (!(node->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !(node->schema->flags & LYS_ORDBY_USER)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002102 LOGERR(LYD_CTX(sibling), LY_EINVAL, "Can be used only for user-ordered nodes.");
Michal Vaskof03ed032020-03-04 13:31:44 +01002103 return LY_EINVAL;
2104 }
2105
Michal Vasko4bc2ce32020-12-08 10:06:16 +01002106 lyd_unlink_tree(node);
2107 lyd_insert_after_node(sibling, node);
2108 lyd_insert_hash(node);
Michal Vaskof03ed032020-03-04 13:31:44 +01002109
Michal Vaskof03ed032020-03-04 13:31:44 +01002110 return LY_SUCCESS;
2111}
2112
2113API void
2114lyd_unlink_tree(struct lyd_node *node)
2115{
2116 struct lyd_node *iter;
2117
2118 if (!node) {
2119 return;
2120 }
2121
Michal Vaskob104f112020-07-17 09:54:54 +02002122 /* update hashes while still linked into the tree */
2123 lyd_unlink_hash(node);
2124
Michal Vaskof03ed032020-03-04 13:31:44 +01002125 /* unlink from siblings */
2126 if (node->prev->next) {
2127 node->prev->next = node->next;
2128 }
2129 if (node->next) {
2130 node->next->prev = node->prev;
2131 } else {
2132 /* unlinking the last node */
2133 if (node->parent) {
2134 iter = node->parent->child;
2135 } else {
2136 iter = node->prev;
2137 while (iter->prev != node) {
2138 iter = iter->prev;
2139 }
2140 }
2141 /* update the "last" pointer from the first node */
2142 iter->prev = node->prev;
2143 }
2144
2145 /* unlink from parent */
2146 if (node->parent) {
2147 if (node->parent->child == node) {
2148 /* the node is the first child */
2149 node->parent->child = node->next;
2150 }
2151
Michal Vaskoab49dbe2020-07-17 12:32:47 +02002152 /* check for NP container whether its last non-default node is not being unlinked */
Michal Vasko69730152020-10-09 16:30:07 +02002153 if (node->parent->schema && (node->parent->schema->nodetype == LYS_CONTAINER) &&
2154 !(node->parent->flags & LYD_DEFAULT) && !(node->parent->schema->flags & LYS_PRESENCE)) {
Michal Vaskoab49dbe2020-07-17 12:32:47 +02002155 LY_LIST_FOR(node->parent->child, iter) {
2156 if ((iter != node) && !(iter->flags & LYD_DEFAULT)) {
2157 break;
2158 }
2159 }
2160 if (!iter) {
2161 node->parent->flags |= LYD_DEFAULT;
2162 }
2163 }
2164
Michal Vaskof03ed032020-03-04 13:31:44 +01002165 /* check for keyless list and update its hash */
2166 for (iter = (struct lyd_node *)node->parent; iter; iter = (struct lyd_node *)iter->parent) {
Michal Vasko413c7f22020-05-05 12:34:06 +02002167 if (iter->schema && (iter->schema->flags & LYS_KEYLESS)) {
Michal Vaskof03ed032020-03-04 13:31:44 +01002168 lyd_hash(iter);
2169 }
2170 }
2171
2172 node->parent = NULL;
2173 }
2174
2175 node->next = NULL;
2176 node->prev = node;
2177}
2178
Michal Vaskoa5da3292020-08-12 13:10:50 +02002179void
Michal Vasko871a0252020-11-11 18:35:24 +01002180lyd_insert_meta(struct lyd_node *parent, struct lyd_meta *meta, ly_bool clear_dflt)
Radek Krejci1798aae2020-07-14 13:26:06 +02002181{
2182 struct lyd_meta *last, *iter;
2183
2184 assert(parent);
Michal Vaskoa5da3292020-08-12 13:10:50 +02002185
2186 if (!meta) {
2187 return;
2188 }
Radek Krejci1798aae2020-07-14 13:26:06 +02002189
2190 for (iter = meta; iter; iter = iter->next) {
2191 iter->parent = parent;
2192 }
2193
2194 /* insert as the last attribute */
2195 if (parent->meta) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002196 for (last = parent->meta; last->next; last = last->next) {}
Radek Krejci1798aae2020-07-14 13:26:06 +02002197 last->next = meta;
2198 } else {
2199 parent->meta = meta;
2200 }
2201
2202 /* remove default flags from NP containers */
Michal Vasko871a0252020-11-11 18:35:24 +01002203 while (clear_dflt && parent && (parent->schema->nodetype == LYS_CONTAINER) && (parent->flags & LYD_DEFAULT)) {
Radek Krejci1798aae2020-07-14 13:26:06 +02002204 parent->flags &= ~LYD_DEFAULT;
2205 parent = (struct lyd_node *)parent->parent;
2206 }
Radek Krejci1798aae2020-07-14 13:26:06 +02002207}
2208
2209LY_ERR
Michal Vasko9f96a052020-03-10 09:41:45 +01002210lyd_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 +02002211 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 +01002212 void *prefix_data, uint32_t hints, ly_bool clear_dflt, ly_bool *incomplete)
Michal Vasko90932a92020-02-12 14:33:03 +01002213{
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002214 LY_ERR rc;
Michal Vasko90932a92020-02-12 14:33:03 +01002215 struct lysc_ext_instance *ant = NULL;
Michal Vasko9f96a052020-03-10 09:41:45 +01002216 struct lyd_meta *mt, *last;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002217 LY_ARRAY_COUNT_TYPE u;
Michal Vasko90932a92020-02-12 14:33:03 +01002218
Michal Vasko9f96a052020-03-10 09:41:45 +01002219 assert((parent || meta) && mod);
Michal Vasko6f4cbb62020-02-28 11:15:47 +01002220
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002221 LY_ARRAY_FOR(mod->compiled->exts, u) {
Michal Vasko69730152020-10-09 16:30:07 +02002222 if ((mod->compiled->exts[u].def->plugin == lyext_plugins_internal[LYEXT_PLUGIN_INTERNAL_ANNOTATION].plugin) &&
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002223 !ly_strncmp(mod->compiled->exts[u].argument, name, name_len)) {
Michal Vasko90932a92020-02-12 14:33:03 +01002224 /* we have the annotation definition */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002225 ant = &mod->compiled->exts[u];
Michal Vasko90932a92020-02-12 14:33:03 +01002226 break;
2227 }
2228 }
2229 if (!ant) {
2230 /* attribute is not defined as a metadata annotation (RFC 7952) */
2231 LOGERR(mod->ctx, LY_EINVAL, "Annotation definition for attribute \"%s:%.*s\" not found.",
2232 mod->name, name_len, name);
2233 return LY_EINVAL;
2234 }
2235
Michal Vasko9f96a052020-03-10 09:41:45 +01002236 mt = calloc(1, sizeof *mt);
2237 LY_CHECK_ERR_RET(!mt, LOGMEM(mod->ctx), LY_EMEM);
2238 mt->parent = parent;
2239 mt->annotation = ant;
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002240 rc = lyd_value_store(mod->ctx, &mt->value, ((struct lyext_metadata *)ant->data)->type, value, value_len, dynamic,
2241 format, prefix_data, hints, parent ? parent->schema : NULL, incomplete, LY_VLOG_NONE, NULL);
2242 LY_CHECK_ERR_RET(rc, free(mt), rc);
Radek Krejci011e4aa2020-09-04 15:22:31 +02002243 rc = lydict_insert(mod->ctx, name, name_len, &mt->name);
2244 LY_CHECK_ERR_RET(rc, free(mt), rc);
Michal Vasko90932a92020-02-12 14:33:03 +01002245
Michal Vasko6f4cbb62020-02-28 11:15:47 +01002246 /* insert as the last attribute */
2247 if (parent) {
Michal Vasko871a0252020-11-11 18:35:24 +01002248 lyd_insert_meta(parent, mt, clear_dflt);
Michal Vasko9f96a052020-03-10 09:41:45 +01002249 } else if (*meta) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002250 for (last = *meta; last->next; last = last->next) {}
Michal Vasko9f96a052020-03-10 09:41:45 +01002251 last->next = mt;
Michal Vasko90932a92020-02-12 14:33:03 +01002252 }
2253
Michal Vasko9f96a052020-03-10 09:41:45 +01002254 if (meta) {
2255 *meta = mt;
Michal Vasko90932a92020-02-12 14:33:03 +01002256 }
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002257 return LY_SUCCESS;
Michal Vasko90932a92020-02-12 14:33:03 +01002258}
2259
Michal Vaskoa5da3292020-08-12 13:10:50 +02002260void
2261lyd_insert_attr(struct lyd_node *parent, struct lyd_attr *attr)
2262{
2263 struct lyd_attr *last, *iter;
2264 struct lyd_node_opaq *opaq;
2265
2266 assert(parent && !parent->schema);
2267
2268 if (!attr) {
2269 return;
2270 }
2271
2272 opaq = (struct lyd_node_opaq *)parent;
2273 for (iter = attr; iter; iter = iter->next) {
2274 iter->parent = opaq;
2275 }
2276
2277 /* insert as the last attribute */
2278 if (opaq->attr) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002279 for (last = opaq->attr; last->next; last = last->next) {}
Michal Vaskoa5da3292020-08-12 13:10:50 +02002280 last->next = attr;
2281 } else {
2282 opaq->attr = attr;
2283 }
2284}
2285
Michal Vasko52927e22020-03-16 17:26:14 +01002286LY_ERR
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002287lyd_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 +01002288 const char *prefix, size_t prefix_len, const char *module_key, size_t module_key_len, const char *value,
2289 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 +01002290{
Radek Krejci011e4aa2020-09-04 15:22:31 +02002291 LY_ERR ret = LY_SUCCESS;
Radek Krejci1798aae2020-07-14 13:26:06 +02002292 struct lyd_attr *at, *last;
Michal Vasko52927e22020-03-16 17:26:14 +01002293
2294 assert(ctx && (parent || attr) && (!parent || !parent->schema));
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002295 assert(name && name_len && format);
Michal Vasko52927e22020-03-16 17:26:14 +01002296
2297 if (!value_len) {
2298 value = "";
2299 }
2300
2301 at = calloc(1, sizeof *at);
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01002302 LY_CHECK_ERR_RET(!at, LOGMEM(ctx); ly_free_prefix_data(format, val_prefix_data), LY_EMEM);
Radek Krejcid46e46a2020-09-15 14:22:42 +02002303
Michal Vaskoad92b672020-11-12 13:11:31 +01002304 LY_CHECK_GOTO(ret = lydict_insert(ctx, name, name_len, &at->name.name), finish);
Michal Vasko501af032020-11-11 20:27:44 +01002305 if (prefix_len) {
Michal Vaskoad92b672020-11-12 13:11:31 +01002306 LY_CHECK_GOTO(ret = lydict_insert(ctx, prefix, prefix_len, &at->name.prefix), finish);
Michal Vasko501af032020-11-11 20:27:44 +01002307 }
2308 if (module_key_len) {
Michal Vaskoad92b672020-11-12 13:11:31 +01002309 LY_CHECK_GOTO(ret = lydict_insert(ctx, module_key, module_key_len, &at->name.module_ns), finish);
Michal Vasko501af032020-11-11 20:27:44 +01002310 }
2311
Michal Vasko52927e22020-03-16 17:26:14 +01002312 if (dynamic && *dynamic) {
Radek Krejci011e4aa2020-09-04 15:22:31 +02002313 ret = lydict_insert_zc(ctx, (char *)value, &at->value);
2314 LY_CHECK_GOTO(ret, finish);
Michal Vasko52927e22020-03-16 17:26:14 +01002315 *dynamic = 0;
2316 } else {
Radek Krejci011e4aa2020-09-04 15:22:31 +02002317 LY_CHECK_GOTO(ret = lydict_insert(ctx, value, value_len, &at->value), finish);
Michal Vasko52927e22020-03-16 17:26:14 +01002318 }
Michal Vasko501af032020-11-11 20:27:44 +01002319 at->format = format;
2320 at->val_prefix_data = val_prefix_data;
2321 at->hints = hints;
Michal Vasko52927e22020-03-16 17:26:14 +01002322
2323 /* insert as the last attribute */
2324 if (parent) {
Michal Vaskoa5da3292020-08-12 13:10:50 +02002325 lyd_insert_attr(parent, at);
Michal Vasko52927e22020-03-16 17:26:14 +01002326 } else if (*attr) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002327 for (last = *attr; last->next; last = last->next) {}
Michal Vasko52927e22020-03-16 17:26:14 +01002328 last->next = at;
2329 }
2330
Radek Krejci011e4aa2020-09-04 15:22:31 +02002331finish:
2332 if (ret) {
2333 lyd_free_attr_single(ctx, at);
2334 } else if (attr) {
Michal Vasko52927e22020-03-16 17:26:14 +01002335 *attr = at;
2336 }
2337 return LY_SUCCESS;
2338}
2339
Radek Krejci084289f2019-07-09 17:35:30 +02002340API const struct lyd_node_term *
Michal Vasko004d3152020-06-11 19:59:22 +02002341lyd_target(const struct ly_path *path, const struct lyd_node *tree)
Radek Krejci084289f2019-07-09 17:35:30 +02002342{
Michal Vasko004d3152020-06-11 19:59:22 +02002343 struct lyd_node *target;
Radek Krejci084289f2019-07-09 17:35:30 +02002344
Michal Vasko004d3152020-06-11 19:59:22 +02002345 if (ly_path_eval(path, tree, &target)) {
2346 return NULL;
Radek Krejci084289f2019-07-09 17:35:30 +02002347 }
2348
Michal Vasko004d3152020-06-11 19:59:22 +02002349 return (struct lyd_node_term *)target;
Radek Krejci084289f2019-07-09 17:35:30 +02002350}
2351
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002352API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002353lyd_compare_single(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options)
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002354{
2355 const struct lyd_node *iter1, *iter2;
2356 struct lyd_node_term *term1, *term2;
2357 struct lyd_node_any *any1, *any2;
Michal Vasko52927e22020-03-16 17:26:14 +01002358 struct lyd_node_opaq *opaq1, *opaq2;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002359 size_t len1, len2;
Radek Krejci084289f2019-07-09 17:35:30 +02002360
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002361 if (!node1 || !node2) {
2362 if (node1 == node2) {
2363 return LY_SUCCESS;
2364 } else {
2365 return LY_ENOT;
2366 }
2367 }
2368
Michal Vaskob7be7a82020-08-20 09:09:04 +02002369 if ((LYD_CTX(node1) != LYD_CTX(node2)) || (node1->schema != node2->schema)) {
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002370 return LY_ENOT;
2371 }
2372
2373 if (node1->hash != node2->hash) {
2374 return LY_ENOT;
2375 }
Michal Vasko52927e22020-03-16 17:26:14 +01002376 /* 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 +02002377
Michal Vasko52927e22020-03-16 17:26:14 +01002378 if (!node1->schema) {
2379 opaq1 = (struct lyd_node_opaq *)node1;
2380 opaq2 = (struct lyd_node_opaq *)node2;
Michal Vaskoad92b672020-11-12 13:11:31 +01002381 if ((opaq1->name.name != opaq2->name.name) || (opaq1->format != opaq2->format) ||
2382 (opaq1->name.module_ns != opaq2->name.module_ns)) {
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002383 return LY_ENOT;
2384 }
Michal Vasko52927e22020-03-16 17:26:14 +01002385 switch (opaq1->format) {
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01002386 case LY_PREF_XML:
2387 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 +01002388 return LY_ENOT;
2389 }
2390 break;
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01002391 case LY_PREF_JSON:
Radek Krejci1798aae2020-07-14 13:26:06 +02002392 /* prefixes in JSON are unique, so it is not necessary to canonize the values */
2393 if (strcmp(opaq1->value, opaq2->value)) {
2394 return LY_ENOT;
2395 }
2396 break;
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01002397 default:
Michal Vasko52927e22020-03-16 17:26:14 +01002398 /* not allowed */
Michal Vaskob7be7a82020-08-20 09:09:04 +02002399 LOGINT(LYD_CTX(node1));
Michal Vasko52927e22020-03-16 17:26:14 +01002400 return LY_EINT;
2401 }
2402 if (options & LYD_COMPARE_FULL_RECURSION) {
2403 iter1 = opaq1->child;
2404 iter2 = opaq2->child;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002405 goto all_children_compare;
Michal Vasko52927e22020-03-16 17:26:14 +01002406 }
2407 return LY_SUCCESS;
2408 } else {
2409 switch (node1->schema->nodetype) {
2410 case LYS_LEAF:
2411 case LYS_LEAFLIST:
2412 if (options & LYD_COMPARE_DEFAULTS) {
2413 if ((node1->flags & LYD_DEFAULT) != (node2->flags & LYD_DEFAULT)) {
2414 return LY_ENOT;
2415 }
2416 }
2417
Michal Vasko1a2bf2e2020-06-16 13:07:48 +02002418 term1 = (struct lyd_node_term *)node1;
2419 term2 = (struct lyd_node_term *)node2;
2420 if (term1->value.realtype != term2->value.realtype) {
2421 return LY_ENOT;
2422 }
Michal Vasko52927e22020-03-16 17:26:14 +01002423
Michal Vasko1a2bf2e2020-06-16 13:07:48 +02002424 return term1->value.realtype->plugin->compare(&term1->value, &term2->value);
Michal Vasko52927e22020-03-16 17:26:14 +01002425 case LYS_CONTAINER:
2426 if (options & LYD_COMPARE_DEFAULTS) {
2427 if ((node1->flags & LYD_DEFAULT) != (node2->flags & LYD_DEFAULT)) {
2428 return LY_ENOT;
2429 }
2430 }
2431 if (options & LYD_COMPARE_FULL_RECURSION) {
Michal Vasko22df3f02020-08-24 13:29:22 +02002432 iter1 = ((struct lyd_node_inner *)node1)->child;
2433 iter2 = ((struct lyd_node_inner *)node2)->child;
Michal Vasko52927e22020-03-16 17:26:14 +01002434 goto all_children_compare;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002435 }
2436 return LY_SUCCESS;
Michal Vasko1bf09392020-03-27 12:38:10 +01002437 case LYS_RPC:
Michal Vasko52927e22020-03-16 17:26:14 +01002438 case LYS_ACTION:
2439 if (options & LYD_COMPARE_FULL_RECURSION) {
2440 /* TODO action/RPC
2441 goto all_children_compare;
2442 */
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002443 }
2444 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01002445 case LYS_NOTIF:
2446 if (options & LYD_COMPARE_FULL_RECURSION) {
2447 /* TODO Notification
2448 goto all_children_compare;
2449 */
2450 }
2451 return LY_SUCCESS;
2452 case LYS_LIST:
Michal Vasko22df3f02020-08-24 13:29:22 +02002453 iter1 = ((struct lyd_node_inner *)node1)->child;
2454 iter2 = ((struct lyd_node_inner *)node2)->child;
Michal Vasko52927e22020-03-16 17:26:14 +01002455
2456 if (!(node1->schema->flags & LYS_KEYLESS) && !(options & LYD_COMPARE_FULL_RECURSION)) {
2457 /* lists with keys, their equivalence is based on their keys */
Michal Vasko22df3f02020-08-24 13:29:22 +02002458 for (struct lysc_node *key = ((struct lysc_node_list *)node1->schema)->child;
Michal Vaskoc57d9a92020-06-23 13:28:27 +02002459 key && (key->flags & LYS_KEY);
Michal Vasko52927e22020-03-16 17:26:14 +01002460 key = key->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02002461 if (lyd_compare_single(iter1, iter2, options)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002462 return LY_ENOT;
2463 }
2464 iter1 = iter1->next;
2465 iter2 = iter2->next;
2466 }
2467 } else {
2468 /* lists without keys, their equivalence is based on equivalence of all the children (both direct and indirect) */
2469
Radek Krejci0f969882020-08-21 16:56:47 +02002470all_children_compare:
Michal Vasko52927e22020-03-16 17:26:14 +01002471 if (!iter1 && !iter2) {
2472 /* no children, nothing to compare */
2473 return LY_SUCCESS;
2474 }
2475
Michal Vaskod989ba02020-08-24 10:59:24 +02002476 for ( ; iter1 && iter2; iter1 = iter1->next, iter2 = iter2->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02002477 if (lyd_compare_single(iter1, iter2, options | LYD_COMPARE_FULL_RECURSION)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002478 return LY_ENOT;
2479 }
2480 }
2481 if (iter1 || iter2) {
2482 return LY_ENOT;
2483 }
2484 }
2485 return LY_SUCCESS;
2486 case LYS_ANYXML:
2487 case LYS_ANYDATA:
Michal Vasko22df3f02020-08-24 13:29:22 +02002488 any1 = (struct lyd_node_any *)node1;
2489 any2 = (struct lyd_node_any *)node2;
Michal Vasko52927e22020-03-16 17:26:14 +01002490
2491 if (any1->value_type != any2->value_type) {
2492 return LY_ENOT;
2493 }
2494 switch (any1->value_type) {
2495 case LYD_ANYDATA_DATATREE:
2496 iter1 = any1->value.tree;
2497 iter2 = any2->value.tree;
2498 goto all_children_compare;
2499 case LYD_ANYDATA_STRING:
2500 case LYD_ANYDATA_XML:
2501 case LYD_ANYDATA_JSON:
2502 len1 = strlen(any1->value.str);
2503 len2 = strlen(any2->value.str);
Michal Vasko69730152020-10-09 16:30:07 +02002504 if ((len1 != len2) || strcmp(any1->value.str, any2->value.str)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002505 return LY_ENOT;
2506 }
2507 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01002508 case LYD_ANYDATA_LYB:
Michal Vasko60ea6352020-06-29 13:39:39 +02002509 len1 = lyd_lyb_data_length(any1->value.mem);
2510 len2 = lyd_lyb_data_length(any2->value.mem);
Michal Vasko69730152020-10-09 16:30:07 +02002511 if ((len1 != len2) || memcmp(any1->value.mem, any2->value.mem, len1)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002512 return LY_ENOT;
2513 }
2514 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01002515 }
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002516 }
2517 }
2518
Michal Vaskob7be7a82020-08-20 09:09:04 +02002519 LOGINT(LYD_CTX(node1));
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002520 return LY_EINT;
2521}
Radek Krejci22ebdba2019-07-25 13:59:43 +02002522
Michal Vasko21725742020-06-29 11:49:25 +02002523API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002524lyd_compare_siblings(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options)
Michal Vasko8f359bf2020-07-28 10:41:15 +02002525{
Michal Vaskod989ba02020-08-24 10:59:24 +02002526 for ( ; node1 && node2; node1 = node1->next, node2 = node2->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02002527 LY_CHECK_RET(lyd_compare_single(node1, node2, options));
2528 }
2529
Michal Vasko11a81432020-07-28 16:31:29 +02002530 if (node1 == node2) {
2531 return LY_SUCCESS;
Michal Vasko8f359bf2020-07-28 10:41:15 +02002532 }
Michal Vasko11a81432020-07-28 16:31:29 +02002533 return LY_ENOT;
Michal Vasko8f359bf2020-07-28 10:41:15 +02002534}
2535
2536API LY_ERR
Michal Vasko21725742020-06-29 11:49:25 +02002537lyd_compare_meta(const struct lyd_meta *meta1, const struct lyd_meta *meta2)
2538{
2539 if (!meta1 || !meta2) {
2540 if (meta1 == meta2) {
2541 return LY_SUCCESS;
2542 } else {
2543 return LY_ENOT;
2544 }
2545 }
2546
Michal Vaskoa8083062020-11-06 17:22:10 +01002547 if ((meta1->annotation->module->ctx != meta2->annotation->module->ctx) || (meta1->annotation != meta2->annotation)) {
Michal Vasko21725742020-06-29 11:49:25 +02002548 return LY_ENOT;
2549 }
2550
2551 if (meta1->value.realtype != meta2->value.realtype) {
2552 return LY_ENOT;
2553 }
2554
2555 return meta1->value.realtype->plugin->compare(&meta1->value, &meta2->value);
2556}
2557
Radek Krejci22ebdba2019-07-25 13:59:43 +02002558/**
Michal Vasko52927e22020-03-16 17:26:14 +01002559 * @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 +02002560 *
2561 * 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 +02002562 *
2563 * @param[in] node Original node to duplicate
2564 * @param[in] parent Parent to insert into, NULL for top-level sibling.
2565 * @param[in,out] first First sibling, NULL if no top-level sibling exist yet. Can be also NULL if @p parent is set.
2566 * @param[in] options Bitmask of options flags, see @ref dupoptions.
2567 * @param[out] dup_p Pointer where the created duplicated node is placed (besides connecting it int @p parent / @p first sibling).
2568 * @return LY_ERR value
Radek Krejci22ebdba2019-07-25 13:59:43 +02002569 */
Michal Vasko52927e22020-03-16 17:26:14 +01002570static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002571lyd_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 +02002572 struct lyd_node **dup_p)
Radek Krejci22ebdba2019-07-25 13:59:43 +02002573{
Michal Vasko52927e22020-03-16 17:26:14 +01002574 LY_ERR ret;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002575 struct lyd_node *dup = NULL;
Michal Vasko61551fa2020-07-09 15:45:45 +02002576 struct lyd_meta *meta;
2577 struct lyd_node_any *any;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002578
Michal Vasko52927e22020-03-16 17:26:14 +01002579 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002580
Michal Vasko52927e22020-03-16 17:26:14 +01002581 if (!node->schema) {
2582 dup = calloc(1, sizeof(struct lyd_node_opaq));
2583 } else {
2584 switch (node->schema->nodetype) {
Michal Vasko1bf09392020-03-27 12:38:10 +01002585 case LYS_RPC:
Michal Vasko52927e22020-03-16 17:26:14 +01002586 case LYS_ACTION:
2587 case LYS_NOTIF:
2588 case LYS_CONTAINER:
2589 case LYS_LIST:
2590 dup = calloc(1, sizeof(struct lyd_node_inner));
2591 break;
2592 case LYS_LEAF:
2593 case LYS_LEAFLIST:
2594 dup = calloc(1, sizeof(struct lyd_node_term));
2595 break;
2596 case LYS_ANYDATA:
2597 case LYS_ANYXML:
2598 dup = calloc(1, sizeof(struct lyd_node_any));
2599 break;
2600 default:
Michal Vaskob7be7a82020-08-20 09:09:04 +02002601 LOGINT(LYD_CTX(node));
Michal Vasko52927e22020-03-16 17:26:14 +01002602 ret = LY_EINT;
2603 goto error;
2604 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02002605 }
Michal Vaskob7be7a82020-08-20 09:09:04 +02002606 LY_CHECK_ERR_GOTO(!dup, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002607
Michal Vaskof6df0a02020-06-16 13:08:34 +02002608 if (options & LYD_DUP_WITH_FLAGS) {
2609 dup->flags = node->flags;
2610 } else {
2611 dup->flags = (node->flags & LYD_DEFAULT) | LYD_NEW;
2612 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02002613 dup->schema = node->schema;
Michal Vasko52927e22020-03-16 17:26:14 +01002614 dup->prev = dup;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002615
Michal Vasko25a32822020-07-09 15:48:22 +02002616 /* duplicate metadata */
2617 if (!(options & LYD_DUP_NO_META)) {
2618 LY_LIST_FOR(node->meta, meta) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002619 LY_CHECK_GOTO(ret = lyd_dup_meta_single(meta, dup, NULL), error);
Michal Vasko25a32822020-07-09 15:48:22 +02002620 }
2621 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02002622
2623 /* nodetype-specific work */
Michal Vasko52927e22020-03-16 17:26:14 +01002624 if (!dup->schema) {
2625 struct lyd_node_opaq *opaq = (struct lyd_node_opaq *)dup;
2626 struct lyd_node_opaq *orig = (struct lyd_node_opaq *)node;
2627 struct lyd_node *child;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002628
2629 if (options & LYD_DUP_RECURSIVE) {
2630 /* duplicate all the children */
2631 LY_LIST_FOR(orig->child, child) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002632 LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, NULL, options, NULL), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002633 }
2634 }
Michal Vaskoad92b672020-11-12 13:11:31 +01002635 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->name.name, 0, &opaq->name.name), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002636 opaq->format = orig->format;
Michal Vaskoad92b672020-11-12 13:11:31 +01002637 if (orig->name.prefix) {
2638 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->name.prefix, 0, &opaq->name.prefix), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002639 }
Michal Vaskoad92b672020-11-12 13:11:31 +01002640 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 +01002641 if (orig->val_prefix_data) {
2642 ret = ly_dup_prefix_data(LYD_CTX(node), opaq->format, orig->val_prefix_data, &opaq->val_prefix_data);
2643 LY_CHECK_GOTO(ret, error);
Michal Vasko52927e22020-03-16 17:26:14 +01002644 }
Radek Krejci011e4aa2020-09-04 15:22:31 +02002645 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->value, 0, &opaq->value), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002646 opaq->ctx = orig->ctx;
2647 } else if (dup->schema->nodetype & LYD_NODE_TERM) {
2648 struct lyd_node_term *term = (struct lyd_node_term *)dup;
2649 struct lyd_node_term *orig = (struct lyd_node_term *)node;
2650
2651 term->hash = orig->hash;
Michal Vaskob7be7a82020-08-20 09:09:04 +02002652 LY_CHECK_ERR_GOTO(orig->value.realtype->plugin->duplicate(LYD_CTX(node), &orig->value, &term->value),
Michal Vasko69730152020-10-09 16:30:07 +02002653 LOGERR(LYD_CTX(node), LY_EINT, "Value duplication failed."); ret = LY_EINT, error);
Michal Vasko52927e22020-03-16 17:26:14 +01002654 } else if (dup->schema->nodetype & LYD_NODE_INNER) {
2655 struct lyd_node_inner *orig = (struct lyd_node_inner *)node;
2656 struct lyd_node *child;
2657
2658 if (options & LYD_DUP_RECURSIVE) {
2659 /* duplicate all the children */
2660 LY_LIST_FOR(orig->child, child) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002661 LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, NULL, options, NULL), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002662 }
Michal Vasko69730152020-10-09 16:30:07 +02002663 } else if ((dup->schema->nodetype == LYS_LIST) && !(dup->schema->flags & LYS_KEYLESS)) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02002664 /* always duplicate keys of a list */
Radek Krejci22ebdba2019-07-25 13:59:43 +02002665 child = orig->child;
Michal Vasko52927e22020-03-16 17:26:14 +01002666 for (struct lysc_node *key = ((struct lysc_node_list *)dup->schema)->child;
Michal Vaskoc57d9a92020-06-23 13:28:27 +02002667 key && (key->flags & LYS_KEY);
Radek Krejci0fe9b512019-07-26 17:51:05 +02002668 key = key->next) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02002669 if (!child) {
2670 /* possibly not keys are present in filtered tree */
2671 break;
Radek Krejci0fe9b512019-07-26 17:51:05 +02002672 } else if (child->schema != key) {
2673 /* possibly not all keys are present in filtered tree,
2674 * but there can be also some non-key nodes */
2675 continue;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002676 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002677 LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, NULL, options, NULL), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002678 child = child->next;
2679 }
2680 }
2681 lyd_hash(dup);
2682 } else if (dup->schema->nodetype & LYD_NODE_ANY) {
Michal Vasko61551fa2020-07-09 15:45:45 +02002683 dup->hash = node->hash;
2684 any = (struct lyd_node_any *)node;
2685 LY_CHECK_GOTO(ret = lyd_any_copy_value(dup, &any->value, any->value_type), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002686 }
2687
Michal Vasko52927e22020-03-16 17:26:14 +01002688 /* insert */
2689 lyd_insert_node(parent, first, dup);
Michal Vasko52927e22020-03-16 17:26:14 +01002690
2691 if (dup_p) {
2692 *dup_p = dup;
2693 }
2694 return LY_SUCCESS;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002695
2696error:
Michal Vasko52927e22020-03-16 17:26:14 +01002697 lyd_free_tree(dup);
2698 return ret;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002699}
2700
Michal Vasko3a41dff2020-07-15 14:30:28 +02002701static LY_ERR
2702lyd_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 +02002703 struct lyd_node_inner **local_parent)
Radek Krejci22ebdba2019-07-25 13:59:43 +02002704{
Michal Vasko3a41dff2020-07-15 14:30:28 +02002705 const struct lyd_node_inner *orig_parent, *iter;
Radek Krejci857189e2020-09-01 13:26:36 +02002706 ly_bool repeat = 1;
Michal Vasko3a41dff2020-07-15 14:30:28 +02002707
2708 *dup_parent = NULL;
2709 *local_parent = NULL;
2710
2711 for (orig_parent = node->parent; repeat && orig_parent; orig_parent = orig_parent->parent) {
2712 if (parent && (parent->schema == orig_parent->schema)) {
2713 /* stop creating parents, connect what we have into the provided parent */
2714 iter = parent;
2715 repeat = 0;
2716 } else {
2717 iter = NULL;
2718 LY_CHECK_RET(lyd_dup_r((struct lyd_node *)orig_parent, NULL, (struct lyd_node **)&iter, 0,
Radek Krejci0f969882020-08-21 16:56:47 +02002719 (struct lyd_node **)&iter));
Michal Vasko3a41dff2020-07-15 14:30:28 +02002720 }
2721 if (!*local_parent) {
2722 *local_parent = (struct lyd_node_inner *)iter;
2723 }
2724 if (iter->child) {
2725 /* 1) list - add after keys
2726 * 2) provided parent with some children */
2727 iter->child->prev->next = *dup_parent;
2728 if (*dup_parent) {
2729 (*dup_parent)->prev = iter->child->prev;
2730 iter->child->prev = *dup_parent;
2731 }
2732 } else {
2733 ((struct lyd_node_inner *)iter)->child = *dup_parent;
2734 }
2735 if (*dup_parent) {
2736 (*dup_parent)->parent = (struct lyd_node_inner *)iter;
2737 }
2738 *dup_parent = (struct lyd_node *)iter;
2739 }
2740
2741 if (repeat && parent) {
2742 /* given parent and created parents chain actually do not interconnect */
Michal Vaskob7be7a82020-08-20 09:09:04 +02002743 LOGERR(LYD_CTX(node), LY_EINVAL,
Michal Vasko69730152020-10-09 16:30:07 +02002744 "Invalid argument parent (%s()) - does not interconnect with the created node's parents chain.", __func__);
Michal Vasko3a41dff2020-07-15 14:30:28 +02002745 return LY_EINVAL;
2746 }
2747
2748 return LY_SUCCESS;
2749}
2750
2751static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02002752lyd_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 +02002753{
2754 LY_ERR rc;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002755 const struct lyd_node *orig; /* original node to be duplicated */
2756 struct lyd_node *first = NULL; /* the first duplicated node, this is returned */
Radek Krejci22ebdba2019-07-25 13:59:43 +02002757 struct lyd_node *top = NULL; /* the most higher created node */
2758 struct lyd_node_inner *local_parent = NULL; /* the direct parent node for the duplicated node(s) */
Radek Krejci22ebdba2019-07-25 13:59:43 +02002759
Michal Vasko3a41dff2020-07-15 14:30:28 +02002760 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002761
2762 if (options & LYD_DUP_WITH_PARENTS) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002763 LY_CHECK_GOTO(rc = lyd_dup_get_local_parent(node, parent, &top, &local_parent), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002764 } else {
2765 local_parent = parent;
2766 }
2767
Radek Krejci22ebdba2019-07-25 13:59:43 +02002768 LY_LIST_FOR(node, orig) {
Michal Vasko52927e22020-03-16 17:26:14 +01002769 /* if there is no local parent, it will be inserted into first */
Michal Vasko3a41dff2020-07-15 14:30:28 +02002770 LY_CHECK_GOTO(rc = lyd_dup_r(orig, (struct lyd_node *)local_parent, &first, options, first ? NULL : &first), error);
2771 if (nosiblings) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02002772 break;
2773 }
2774 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002775
2776 /* rehash if needed */
Michal Vaskod989ba02020-08-24 10:59:24 +02002777 for ( ; local_parent; local_parent = local_parent->parent) {
Michal Vasko69730152020-10-09 16:30:07 +02002778 if ((local_parent->schema->nodetype == LYS_LIST) && (local_parent->schema->flags & LYS_KEYLESS)) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002779 lyd_hash((struct lyd_node *)local_parent);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002780 }
2781 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002782
2783 if (dup) {
2784 *dup = first;
2785 }
2786 return LY_SUCCESS;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002787
2788error:
2789 if (top) {
2790 lyd_free_tree(top);
2791 } else {
Michal Vaskof03ed032020-03-04 13:31:44 +01002792 lyd_free_siblings(first);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002793 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002794 return rc;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002795}
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002796
Michal Vasko3a41dff2020-07-15 14:30:28 +02002797API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002798lyd_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 +02002799{
2800 return lyd_dup(node, parent, options, 1, dup);
2801}
2802
2803API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002804lyd_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 +02002805{
2806 return lyd_dup(node, parent, options, 0, dup);
2807}
2808
2809API LY_ERR
2810lyd_dup_meta_single(const struct lyd_meta *meta, struct lyd_node *node, struct lyd_meta **dup)
Michal Vasko25a32822020-07-09 15:48:22 +02002811{
Radek Krejci011e4aa2020-09-04 15:22:31 +02002812 LY_ERR ret = LY_SUCCESS;
Michal Vasko25a32822020-07-09 15:48:22 +02002813 struct lyd_meta *mt, *last;
2814
Michal Vasko3a41dff2020-07-15 14:30:28 +02002815 LY_CHECK_ARG_RET(NULL, meta, node, LY_EINVAL);
Michal Vasko25a32822020-07-09 15:48:22 +02002816
2817 /* create a copy */
2818 mt = calloc(1, sizeof *mt);
Michal Vaskob7be7a82020-08-20 09:09:04 +02002819 LY_CHECK_ERR_RET(!mt, LOGMEM(LYD_CTX(node)), LY_EMEM);
Michal Vasko25a32822020-07-09 15:48:22 +02002820 mt->annotation = meta->annotation;
Michal Vaskob7be7a82020-08-20 09:09:04 +02002821 ret = meta->value.realtype->plugin->duplicate(LYD_CTX(node), &meta->value, &mt->value);
Radek Krejci011e4aa2020-09-04 15:22:31 +02002822 LY_CHECK_ERR_GOTO(ret, LOGERR(LYD_CTX(node), LY_EINT, "Value duplication failed."), finish);
2823 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), meta->name, 0, &mt->name), finish);
Michal Vasko25a32822020-07-09 15:48:22 +02002824
2825 /* insert as the last attribute */
Radek Krejci011e4aa2020-09-04 15:22:31 +02002826 mt->parent = node;
Michal Vasko25a32822020-07-09 15:48:22 +02002827 if (node->meta) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002828 for (last = node->meta; last->next; last = last->next) {}
Michal Vasko25a32822020-07-09 15:48:22 +02002829 last->next = mt;
2830 } else {
2831 node->meta = mt;
2832 }
2833
Radek Krejci011e4aa2020-09-04 15:22:31 +02002834finish:
2835 if (ret) {
2836 lyd_free_meta_single(mt);
2837 } else if (dup) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002838 *dup = mt;
2839 }
2840 return LY_SUCCESS;
Michal Vasko25a32822020-07-09 15:48:22 +02002841}
2842
Michal Vasko4490d312020-06-16 13:08:55 +02002843/**
2844 * @brief Merge a source sibling into target siblings.
2845 *
2846 * @param[in,out] first_trg First target sibling, is updated if top-level.
2847 * @param[in] parent_trg Target parent.
2848 * @param[in,out] sibling_src Source sibling to merge, set to NULL if spent.
2849 * @param[in] options Merge options.
2850 * @return LY_ERR value.
2851 */
2852static LY_ERR
2853lyd_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 +02002854 uint16_t options)
Michal Vasko4490d312020-06-16 13:08:55 +02002855{
2856 LY_ERR ret;
2857 const struct lyd_node *child_src, *tmp, *sibling_src;
Michal Vasko56daf732020-08-10 10:57:18 +02002858 struct lyd_node *match_trg, *dup_src, *elem;
Michal Vasko4490d312020-06-16 13:08:55 +02002859 struct lysc_type *type;
Michal Vasko4490d312020-06-16 13:08:55 +02002860
2861 sibling_src = *sibling_src_p;
2862 if (sibling_src->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) {
2863 /* try to find the exact instance */
2864 ret = lyd_find_sibling_first(*first_trg, sibling_src, &match_trg);
2865 } else {
2866 /* try to simply find the node, there cannot be more instances */
2867 ret = lyd_find_sibling_val(*first_trg, sibling_src->schema, NULL, 0, &match_trg);
2868 }
2869
2870 if (!ret) {
2871 /* node found, make sure even value matches for all node types */
Michal Vasko8f359bf2020-07-28 10:41:15 +02002872 if ((match_trg->schema->nodetype == LYS_LEAF) && lyd_compare_single(sibling_src, match_trg, LYD_COMPARE_DEFAULTS)) {
Michal Vasko4490d312020-06-16 13:08:55 +02002873 /* since they are different, they cannot both be default */
2874 assert(!(sibling_src->flags & LYD_DEFAULT) || !(match_trg->flags & LYD_DEFAULT));
2875
Michal Vasko3a41dff2020-07-15 14:30:28 +02002876 /* update value (or only LYD_DEFAULT flag) only if flag set or the source node is not default */
2877 if ((options & LYD_MERGE_DEFAULTS) || !(sibling_src->flags & LYD_DEFAULT)) {
Michal Vasko4490d312020-06-16 13:08:55 +02002878 type = ((struct lysc_node_leaf *)match_trg->schema)->type;
Michal Vaskob7be7a82020-08-20 09:09:04 +02002879 type->plugin->free(LYD_CTX(match_trg), &((struct lyd_node_term *)match_trg)->value);
2880 LY_CHECK_RET(type->plugin->duplicate(LYD_CTX(match_trg), &((struct lyd_node_term *)sibling_src)->value,
Michal Vasko69730152020-10-09 16:30:07 +02002881 &((struct lyd_node_term *)match_trg)->value));
Michal Vasko4490d312020-06-16 13:08:55 +02002882
2883 /* copy flags and add LYD_NEW */
2884 match_trg->flags = sibling_src->flags | LYD_NEW;
2885 }
Michal Vasko8f359bf2020-07-28 10:41:15 +02002886 } else if ((match_trg->schema->nodetype & LYS_ANYDATA) && lyd_compare_single(sibling_src, match_trg, 0)) {
Michal Vasko4c583e82020-07-17 12:16:14 +02002887 /* update value */
2888 LY_CHECK_RET(lyd_any_copy_value(match_trg, &((struct lyd_node_any *)sibling_src)->value,
Radek Krejci0f969882020-08-21 16:56:47 +02002889 ((struct lyd_node_any *)sibling_src)->value_type));
Michal Vasko4490d312020-06-16 13:08:55 +02002890
2891 /* copy flags and add LYD_NEW */
2892 match_trg->flags = sibling_src->flags | LYD_NEW;
Michal Vasko4490d312020-06-16 13:08:55 +02002893 } else {
2894 /* check descendants, recursively */
Radek Krejcia1c1e542020-09-29 16:06:52 +02002895 LY_LIST_FOR_SAFE(lyd_child_no_keys(sibling_src), tmp, child_src) {
Michal Vasko4490d312020-06-16 13:08:55 +02002896 LY_CHECK_RET(lyd_merge_sibling_r(lyd_node_children_p(match_trg), match_trg, &child_src, options));
2897 }
2898 }
2899 } else {
2900 /* node not found, merge it */
2901 if (options & LYD_MERGE_DESTRUCT) {
2902 dup_src = (struct lyd_node *)sibling_src;
2903 lyd_unlink_tree(dup_src);
2904 /* spend it */
2905 *sibling_src_p = NULL;
2906 } else {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002907 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 +02002908 }
2909
2910 /* set LYD_NEW for all the new nodes, required for validation */
Michal Vasko56daf732020-08-10 10:57:18 +02002911 LYD_TREE_DFS_BEGIN(dup_src, elem) {
Michal Vasko4490d312020-06-16 13:08:55 +02002912 elem->flags |= LYD_NEW;
Michal Vasko56daf732020-08-10 10:57:18 +02002913 LYD_TREE_DFS_END(dup_src, elem);
Michal Vasko4490d312020-06-16 13:08:55 +02002914 }
2915
2916 lyd_insert_node(parent_trg, first_trg, dup_src);
2917 }
2918
2919 return LY_SUCCESS;
2920}
2921
Michal Vasko3a41dff2020-07-15 14:30:28 +02002922static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02002923lyd_merge(struct lyd_node **target, const struct lyd_node *source, uint16_t options, ly_bool nosiblings)
Michal Vasko4490d312020-06-16 13:08:55 +02002924{
2925 const struct lyd_node *sibling_src, *tmp;
Radek Krejci857189e2020-09-01 13:26:36 +02002926 ly_bool first;
Michal Vasko4490d312020-06-16 13:08:55 +02002927
2928 LY_CHECK_ARG_RET(NULL, target, LY_EINVAL);
2929
2930 if (!source) {
2931 /* nothing to merge */
2932 return LY_SUCCESS;
2933 }
2934
Michal Vasko831422b2020-11-24 11:20:51 +01002935 if ((*target && lysc_data_parent((*target)->schema)) || lysc_data_parent(source->schema)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002936 LOGERR(LYD_CTX(source), LY_EINVAL, "Invalid arguments - can merge only 2 top-level subtrees (%s()).", __func__);
Michal Vasko4490d312020-06-16 13:08:55 +02002937 return LY_EINVAL;
2938 }
2939
2940 LY_LIST_FOR_SAFE(source, tmp, sibling_src) {
Radek Krejci857189e2020-09-01 13:26:36 +02002941 first = (sibling_src == source) ? 1 : 0;
Michal Vasko4490d312020-06-16 13:08:55 +02002942 LY_CHECK_RET(lyd_merge_sibling_r(target, NULL, &sibling_src, options));
2943 if (first && !sibling_src) {
2944 /* source was spent (unlinked), move to the next node */
2945 source = tmp;
2946 }
2947
Michal Vasko3a41dff2020-07-15 14:30:28 +02002948 if (nosiblings) {
Michal Vasko4490d312020-06-16 13:08:55 +02002949 break;
2950 }
2951 }
2952
2953 if (options & LYD_MERGE_DESTRUCT) {
2954 /* free any leftover source data that were not merged */
2955 lyd_free_siblings((struct lyd_node *)source);
2956 }
2957
2958 return LY_SUCCESS;
2959}
2960
Michal Vasko3a41dff2020-07-15 14:30:28 +02002961API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002962lyd_merge_tree(struct lyd_node **target, const struct lyd_node *source, uint16_t options)
Michal Vasko3a41dff2020-07-15 14:30:28 +02002963{
2964 return lyd_merge(target, source, options, 1);
2965}
2966
2967API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002968lyd_merge_siblings(struct lyd_node **target, const struct lyd_node *source, uint16_t options)
Michal Vasko3a41dff2020-07-15 14:30:28 +02002969{
2970 return lyd_merge(target, source, options, 0);
2971}
2972
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002973static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02002974lyd_path_str_enlarge(char **buffer, size_t *buflen, size_t reqlen, ly_bool is_static)
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002975{
Michal Vasko14654712020-02-06 08:35:21 +01002976 /* ending \0 */
2977 ++reqlen;
2978
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002979 if (reqlen > *buflen) {
2980 if (is_static) {
2981 return LY_EINCOMPLETE;
2982 }
2983
2984 *buffer = ly_realloc(*buffer, reqlen * sizeof **buffer);
2985 if (!*buffer) {
2986 return LY_EMEM;
2987 }
2988
2989 *buflen = reqlen;
2990 }
2991
2992 return LY_SUCCESS;
2993}
2994
Michal Vaskod59035b2020-07-08 12:00:06 +02002995LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02002996lyd_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 +02002997{
2998 const struct lyd_node *key;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002999 size_t len;
3000 const char *val;
3001 char quot;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003002
Radek Krejcia1c1e542020-09-29 16:06:52 +02003003 for (key = lyd_child(node); key && (key->schema->flags & LYS_KEY); key = key->next) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02003004 val = LYD_CANON_VALUE(key);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003005 len = 1 + strlen(key->schema->name) + 2 + strlen(val) + 2;
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003006 LY_CHECK_RET(lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static));
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003007
3008 quot = '\'';
3009 if (strchr(val, '\'')) {
3010 quot = '"';
3011 }
3012 *bufused += sprintf(*buffer + *bufused, "[%s=%c%s%c]", key->schema->name, quot, val, quot);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003013 }
3014
3015 return LY_SUCCESS;
3016}
3017
3018/**
3019 * @brief Append leaf-list value predicate to path.
3020 *
3021 * @param[in] node Node to print.
3022 * @param[in,out] buffer Buffer to print to.
3023 * @param[in,out] buflen Current buffer length.
3024 * @param[in,out] bufused Current number of characters used in @p buffer.
3025 * @param[in] is_static Whether buffer is static or can be reallocated.
3026 * @return LY_ERR
3027 */
3028static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003029lyd_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 +02003030{
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003031 size_t len;
3032 const char *val;
3033 char quot;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003034
Michal Vaskob7be7a82020-08-20 09:09:04 +02003035 val = LYD_CANON_VALUE(node);
Radek Krejcif13b87b2020-12-01 22:02:17 +01003036 len = 4 + strlen(val) + 2; /* "[.='" + val + "']" */
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003037 LY_CHECK_RET(lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static));
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003038
3039 quot = '\'';
3040 if (strchr(val, '\'')) {
3041 quot = '"';
3042 }
3043 *bufused += sprintf(*buffer + *bufused, "[.=%c%s%c]", quot, val, quot);
3044
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003045 return LY_SUCCESS;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003046}
3047
3048/**
3049 * @brief Append node position (relative to its other instances) predicate to path.
3050 *
3051 * @param[in] node Node to print.
3052 * @param[in,out] buffer Buffer to print to.
3053 * @param[in,out] buflen Current buffer length.
3054 * @param[in,out] bufused Current number of characters used in @p buffer.
3055 * @param[in] is_static Whether buffer is static or can be reallocated.
3056 * @return LY_ERR
3057 */
3058static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003059lyd_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 +02003060{
3061 const struct lyd_node *first, *iter;
3062 size_t len;
Radek Krejci1deb5be2020-08-26 16:43:36 +02003063 uint64_t pos;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003064 char *val = NULL;
3065 LY_ERR rc;
3066
3067 if (node->parent) {
3068 first = node->parent->child;
3069 } else {
Michal Vaskoe070bfe2020-08-31 12:27:25 +02003070 for (first = node; first->prev->next; first = first->prev) {}
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003071 }
3072 pos = 1;
3073 for (iter = first; iter != node; iter = iter->next) {
3074 if (iter->schema == node->schema) {
3075 ++pos;
3076 }
3077 }
Radek Krejci1deb5be2020-08-26 16:43:36 +02003078 if (asprintf(&val, "%" PRIu64, pos) == -1) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003079 return LY_EMEM;
3080 }
3081
3082 len = 1 + strlen(val) + 1;
3083 rc = lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static);
3084 if (rc != LY_SUCCESS) {
3085 goto cleanup;
3086 }
3087
3088 *bufused += sprintf(*buffer + *bufused, "[%s]", val);
3089
3090cleanup:
3091 free(val);
3092 return rc;
3093}
3094
3095API char *
3096lyd_path(const struct lyd_node *node, LYD_PATH_TYPE pathtype, char *buffer, size_t buflen)
3097{
Radek Krejci857189e2020-09-01 13:26:36 +02003098 ly_bool is_static = 0;
Radek Krejci1deb5be2020-08-26 16:43:36 +02003099 uint32_t i, depth;
Michal Vasko14654712020-02-06 08:35:21 +01003100 size_t bufused = 0, len;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003101 const struct lyd_node *iter;
3102 const struct lys_module *mod;
Michal Vasko790b2bc2020-08-03 13:35:06 +02003103 LY_ERR rc = LY_SUCCESS;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003104
3105 LY_CHECK_ARG_RET(NULL, node, NULL);
3106 if (buffer) {
3107 LY_CHECK_ARG_RET(node->schema->module->ctx, buflen > 1, NULL);
3108 is_static = 1;
Michal Vasko14654712020-02-06 08:35:21 +01003109 } else {
3110 buflen = 0;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003111 }
3112
3113 switch (pathtype) {
Michal Vasko14654712020-02-06 08:35:21 +01003114 case LYD_PATH_LOG:
Michal Vasko790b2bc2020-08-03 13:35:06 +02003115 case LYD_PATH_LOG_NO_LAST_PRED:
Michal Vasko14654712020-02-06 08:35:21 +01003116 depth = 1;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003117 for (iter = node; iter->parent; iter = (const struct lyd_node *)iter->parent) {
3118 ++depth;
3119 }
3120
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003121 goto iter_print;
Michal Vasko14654712020-02-06 08:35:21 +01003122 while (depth) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003123 /* find the right node */
Radek Krejci1e008d22020-08-17 11:37:37 +02003124 for (iter = node, i = 1; i < depth; iter = (const struct lyd_node *)iter->parent, ++i) {}
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003125iter_print:
3126 /* print prefix and name */
3127 mod = NULL;
Michal Vasko69730152020-10-09 16:30:07 +02003128 if (iter->schema && (!iter->parent || (iter->schema->module != iter->parent->schema->module))) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003129 mod = iter->schema->module;
3130 }
3131
3132 /* realloc string */
Michal Vaskoad92b672020-11-12 13:11:31 +01003133 len = 1 + (mod ? strlen(mod->name) + 1 : 0) + (iter->schema ? strlen(iter->schema->name) :
3134 strlen(((struct lyd_node_opaq *)iter)->name.name));
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003135 rc = lyd_path_str_enlarge(&buffer, &buflen, bufused + len, is_static);
3136 if (rc != LY_SUCCESS) {
3137 break;
3138 }
3139
3140 /* print next node */
Radek Krejci1798aae2020-07-14 13:26:06 +02003141 bufused += sprintf(buffer + bufused, "/%s%s%s", mod ? mod->name : "", mod ? ":" : "",
Michal Vaskoad92b672020-11-12 13:11:31 +01003142 iter->schema ? iter->schema->name : ((struct lyd_node_opaq *)iter)->name.name);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003143
Michal Vasko790b2bc2020-08-03 13:35:06 +02003144 /* do not always print the last (first) predicate */
Michal Vasko552e1122020-11-06 17:22:44 +01003145 if (iter->schema && ((depth > 1) || (pathtype == LYD_PATH_LOG))) {
Michal Vasko790b2bc2020-08-03 13:35:06 +02003146 switch (iter->schema->nodetype) {
3147 case LYS_LIST:
3148 if (iter->schema->flags & LYS_KEYLESS) {
3149 /* print its position */
3150 rc = lyd_path_position_predicate(iter, &buffer, &buflen, &bufused, is_static);
3151 } else {
3152 /* print all list keys in predicates */
3153 rc = lyd_path_list_predicate(iter, &buffer, &buflen, &bufused, is_static);
3154 }
3155 break;
3156 case LYS_LEAFLIST:
3157 if (iter->schema->flags & LYS_CONFIG_W) {
3158 /* print leaf-list value */
3159 rc = lyd_path_leaflist_predicate(iter, &buffer, &buflen, &bufused, is_static);
3160 } else {
3161 /* print its position */
3162 rc = lyd_path_position_predicate(iter, &buffer, &buflen, &bufused, is_static);
3163 }
3164 break;
3165 default:
3166 /* nothing to print more */
3167 break;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003168 }
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003169 }
3170 if (rc != LY_SUCCESS) {
3171 break;
3172 }
3173
Michal Vasko14654712020-02-06 08:35:21 +01003174 --depth;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003175 }
3176 break;
3177 }
3178
3179 return buffer;
3180}
Michal Vaskoe444f752020-02-10 12:20:06 +01003181
Michal Vasko25a32822020-07-09 15:48:22 +02003182API struct lyd_meta *
3183lyd_find_meta(const struct lyd_meta *first, const struct lys_module *module, const char *name)
3184{
3185 struct lyd_meta *ret = NULL;
3186 const struct ly_ctx *ctx;
3187 const char *prefix, *tmp;
3188 char *str;
3189 size_t pref_len, name_len;
3190
3191 LY_CHECK_ARG_RET(NULL, module || strchr(name, ':'), name, NULL);
3192
3193 if (!first) {
3194 return NULL;
3195 }
3196
3197 ctx = first->annotation->module->ctx;
3198
3199 /* parse the name */
3200 tmp = name;
3201 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
3202 LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name);
3203 return NULL;
3204 }
3205
3206 /* find the module */
3207 if (prefix) {
3208 str = strndup(prefix, pref_len);
3209 module = ly_ctx_get_module_latest(ctx, str);
3210 free(str);
3211 LY_CHECK_ERR_RET(!module, LOGERR(ctx, LY_EINVAL, "Module \"%.*s\" not found.", pref_len, prefix), NULL);
3212 }
3213
3214 /* find the metadata */
3215 LY_LIST_FOR(first, first) {
3216 if ((first->annotation->module == module) && !strcmp(first->name, name)) {
3217 ret = (struct lyd_meta *)first;
3218 break;
3219 }
3220 }
3221
3222 return ret;
3223}
3224
Michal Vasko9b368d32020-02-14 13:53:31 +01003225API LY_ERR
Michal Vaskoe444f752020-02-10 12:20:06 +01003226lyd_find_sibling_first(const struct lyd_node *siblings, const struct lyd_node *target, struct lyd_node **match)
3227{
3228 struct lyd_node **match_p;
3229 struct lyd_node_inner *parent;
3230
Michal Vaskof03ed032020-03-04 13:31:44 +01003231 LY_CHECK_ARG_RET(NULL, target, LY_EINVAL);
Michal Vaskoe444f752020-02-10 12:20:06 +01003232
Michal Vasko62ed12d2020-05-21 10:08:25 +02003233 if (!siblings || (lysc_data_parent(siblings->schema) != lysc_data_parent(target->schema))) {
3234 /* no data or schema mismatch */
Michal Vasko9b368d32020-02-14 13:53:31 +01003235 if (match) {
3236 *match = NULL;
3237 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003238 return LY_ENOTFOUND;
3239 }
3240
3241 /* find first sibling */
3242 if (siblings->parent) {
3243 siblings = siblings->parent->child;
3244 } else {
3245 while (siblings->prev->next) {
3246 siblings = siblings->prev;
3247 }
3248 }
3249
3250 parent = (struct lyd_node_inner *)siblings->parent;
3251 if (parent && parent->children_ht) {
3252 assert(target->hash);
3253
3254 /* find by hash */
3255 if (!lyht_find(parent->children_ht, &target, target->hash, (void **)&match_p)) {
Michal Vaskoda859032020-07-14 12:20:14 +02003256 /* check even value when needed */
Michal Vasko8f359bf2020-07-28 10:41:15 +02003257 if (!(target->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !lyd_compare_single(target, *match_p, 0)) {
Michal Vaskoda859032020-07-14 12:20:14 +02003258 siblings = *match_p;
3259 } else {
3260 siblings = NULL;
3261 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003262 } else {
3263 /* not found */
3264 siblings = NULL;
3265 }
3266 } else {
3267 /* no children hash table */
Michal Vaskod989ba02020-08-24 10:59:24 +02003268 for ( ; siblings; siblings = siblings->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02003269 if (!lyd_compare_single(siblings, target, 0)) {
Michal Vaskoe444f752020-02-10 12:20:06 +01003270 break;
3271 }
3272 }
3273 }
3274
3275 if (!siblings) {
Michal Vasko9b368d32020-02-14 13:53:31 +01003276 if (match) {
3277 *match = NULL;
3278 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003279 return LY_ENOTFOUND;
3280 }
3281
Michal Vasko9b368d32020-02-14 13:53:31 +01003282 if (match) {
3283 *match = (struct lyd_node *)siblings;
3284 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003285 return LY_SUCCESS;
3286}
3287
Radek Krejci857189e2020-09-01 13:26:36 +02003288/**
3289 * @brief Comparison callback to match schema node with a schema of a data node.
3290 *
3291 * @param[in] val1_p Pointer to the schema node
3292 * @param[in] val2_p Pointer to the data node
3293 * Implementation of ::values_equal_cb.
3294 */
3295static ly_bool
3296lyd_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 +01003297{
3298 struct lysc_node *val1;
3299 struct lyd_node *val2;
3300
3301 val1 = *((struct lysc_node **)val1_p);
3302 val2 = *((struct lyd_node **)val2_p);
3303
Michal Vasko90932a92020-02-12 14:33:03 +01003304 if (val1 == val2->schema) {
3305 /* schema match is enough */
3306 return 1;
3307 } else {
3308 return 0;
3309 }
3310}
3311
Michal Vasko92239c72020-11-18 18:17:25 +01003312/**
3313 * @brief Search in the given siblings (NOT recursively) for the first schema node data instance.
3314 * Uses hashes - should be used whenever possible for best performance.
3315 *
3316 * @param[in] siblings Siblings to search in including preceding and succeeding nodes.
3317 * @param[in] schema Target data node schema to find.
3318 * @param[out] match Can be NULL, otherwise the found data node.
3319 * @return LY_SUCCESS on success, @p match set.
3320 * @return LY_ENOTFOUND if not found, @p match set to NULL.
3321 * @return LY_ERR value if another error occurred.
3322 */
Michal Vasko90932a92020-02-12 14:33:03 +01003323static LY_ERR
3324lyd_find_sibling_schema(const struct lyd_node *siblings, const struct lysc_node *schema, struct lyd_node **match)
3325{
3326 struct lyd_node **match_p;
3327 struct lyd_node_inner *parent;
3328 uint32_t hash;
3329 values_equal_cb ht_cb;
3330
Michal Vaskob104f112020-07-17 09:54:54 +02003331 assert(siblings && schema);
Michal Vasko90932a92020-02-12 14:33:03 +01003332
3333 parent = (struct lyd_node_inner *)siblings->parent;
Michal Vasko08fd6132020-11-18 18:17:45 +01003334 if (parent && parent->schema && parent->children_ht) {
Michal Vasko90932a92020-02-12 14:33:03 +01003335 /* calculate our hash */
3336 hash = dict_hash_multi(0, schema->module->name, strlen(schema->module->name));
3337 hash = dict_hash_multi(hash, schema->name, strlen(schema->name));
3338 hash = dict_hash_multi(hash, NULL, 0);
3339
3340 /* use special hash table function */
3341 ht_cb = lyht_set_cb(parent->children_ht, lyd_hash_table_schema_val_equal);
3342
3343 /* find by hash */
3344 if (!lyht_find(parent->children_ht, &schema, hash, (void **)&match_p)) {
3345 siblings = *match_p;
3346 } else {
3347 /* not found */
3348 siblings = NULL;
3349 }
3350
3351 /* set the original hash table compare function back */
3352 lyht_set_cb(parent->children_ht, ht_cb);
3353 } else {
Michal Vaskob104f112020-07-17 09:54:54 +02003354 /* find first sibling */
3355 if (siblings->parent) {
3356 siblings = siblings->parent->child;
3357 } else {
3358 while (siblings->prev->next) {
3359 siblings = siblings->prev;
3360 }
3361 }
3362
3363 /* search manually without hashes */
Michal Vaskod989ba02020-08-24 10:59:24 +02003364 for ( ; siblings; siblings = siblings->next) {
Michal Vasko90932a92020-02-12 14:33:03 +01003365 if (siblings->schema == schema) {
3366 /* schema match is enough */
3367 break;
3368 }
3369 }
3370 }
3371
3372 if (!siblings) {
Michal Vasko9b368d32020-02-14 13:53:31 +01003373 if (match) {
3374 *match = NULL;
3375 }
Michal Vasko90932a92020-02-12 14:33:03 +01003376 return LY_ENOTFOUND;
3377 }
3378
Michal Vasko9b368d32020-02-14 13:53:31 +01003379 if (match) {
3380 *match = (struct lyd_node *)siblings;
3381 }
Michal Vasko90932a92020-02-12 14:33:03 +01003382 return LY_SUCCESS;
3383}
3384
Michal Vaskoe444f752020-02-10 12:20:06 +01003385API LY_ERR
3386lyd_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 +02003387 size_t val_len, struct lyd_node **match)
Michal Vaskoe444f752020-02-10 12:20:06 +01003388{
3389 LY_ERR rc;
3390 struct lyd_node *target = NULL;
3391
Michal Vasko4c583e82020-07-17 12:16:14 +02003392 LY_CHECK_ARG_RET(NULL, schema, !(schema->nodetype & (LYS_CHOICE | LYS_CASE)), LY_EINVAL);
Michal Vaskoe444f752020-02-10 12:20:06 +01003393
Michal Vasko08fd6132020-11-18 18:17:45 +01003394 if (!siblings || (siblings->schema && (lysc_data_parent(siblings->schema) != lysc_data_parent(schema)))) {
Michal Vasko62ed12d2020-05-21 10:08:25 +02003395 /* no data or schema mismatch */
Michal Vasko9b368d32020-02-14 13:53:31 +01003396 if (match) {
3397 *match = NULL;
3398 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003399 return LY_ENOTFOUND;
3400 }
3401
Michal Vaskof03ed032020-03-04 13:31:44 +01003402 if (key_or_value && !val_len) {
3403 val_len = strlen(key_or_value);
3404 }
3405
Michal Vaskob104f112020-07-17 09:54:54 +02003406 if ((schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) && key_or_value) {
3407 /* create a data node and find the instance */
3408 if (schema->nodetype == LYS_LEAFLIST) {
3409 /* target used attributes: schema, hash, value */
Michal Vaskofeca4fb2020-10-05 08:58:40 +02003410 rc = lyd_create_term(schema, key_or_value, val_len, NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, NULL, &target);
3411 LY_CHECK_RET(rc);
Michal Vaskob104f112020-07-17 09:54:54 +02003412 } else {
Michal Vasko90932a92020-02-12 14:33:03 +01003413 /* target used attributes: schema, hash, child (all keys) */
Michal Vasko004d3152020-06-11 19:59:22 +02003414 LY_CHECK_RET(lyd_create_list2(schema, key_or_value, val_len, &target));
Michal Vasko90932a92020-02-12 14:33:03 +01003415 }
3416
3417 /* find it */
3418 rc = lyd_find_sibling_first(siblings, target, match);
Michal Vaskob104f112020-07-17 09:54:54 +02003419 } else {
3420 /* find the first schema node instance */
3421 rc = lyd_find_sibling_schema(siblings, schema, match);
Michal Vaskoe444f752020-02-10 12:20:06 +01003422 }
3423
Michal Vaskoe444f752020-02-10 12:20:06 +01003424 lyd_free_tree(target);
3425 return rc;
3426}
Michal Vaskoccc02342020-05-21 10:09:21 +02003427
3428API LY_ERR
3429lyd_find_xpath(const struct lyd_node *ctx_node, const char *xpath, struct ly_set **set)
3430{
3431 LY_ERR ret = LY_SUCCESS;
3432 struct lyxp_set xp_set;
Radek Krejcif03a9e22020-09-18 20:09:31 +02003433 struct lyxp_expr *exp = NULL;
Michal Vaskoccc02342020-05-21 10:09:21 +02003434 uint32_t i;
3435
3436 LY_CHECK_ARG_RET(NULL, ctx_node, xpath, set, LY_EINVAL);
3437
3438 memset(&xp_set, 0, sizeof xp_set);
3439
3440 /* compile expression */
Radek Krejcif03a9e22020-09-18 20:09:31 +02003441 ret = lyxp_expr_parse((struct ly_ctx *)LYD_CTX(ctx_node), xpath, 0, 1, &exp);
3442 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003443
3444 /* evaluate expression */
Michal Vaskocdad7122020-11-09 21:04:44 +01003445 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 +02003446 LY_CHECK_GOTO(ret, cleanup);
3447
3448 /* allocate return set */
Radek Krejciba03a5a2020-08-27 14:40:41 +02003449 ret = ly_set_new(set);
3450 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003451
3452 /* transform into ly_set */
3453 if (xp_set.type == LYXP_SET_NODE_SET) {
3454 /* allocate memory for all the elements once (even though not all items must be elements but most likely will be) */
3455 (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs);
Michal Vaskob7be7a82020-08-20 09:09:04 +02003456 LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(LYD_CTX(ctx_node)); ret = LY_EMEM, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003457 (*set)->size = xp_set.used;
3458
3459 for (i = 0; i < xp_set.used; ++i) {
3460 if (xp_set.val.nodes[i].type == LYXP_NODE_ELEM) {
Radek Krejci3d92e442020-10-12 12:48:13 +02003461 ret = ly_set_add(*set, xp_set.val.nodes[i].node, 1, NULL);
Radek Krejciba03a5a2020-08-27 14:40:41 +02003462 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003463 }
3464 }
3465 }
3466
3467cleanup:
Michal Vasko0691d522020-05-21 13:21:47 +02003468 lyxp_set_free_content(&xp_set);
Michal Vaskob7be7a82020-08-20 09:09:04 +02003469 lyxp_expr_free((struct ly_ctx *)LYD_CTX(ctx_node), exp);
Radek Krejci8f45abc2020-11-26 12:15:13 +01003470 if (ret) {
3471 ly_set_free(*set, NULL);
3472 *set = NULL;
3473 }
Michal Vaskoccc02342020-05-21 10:09:21 +02003474 return ret;
3475}
Radek Krejcica989142020-11-05 11:32:22 +01003476
3477API uint32_t
3478lyd_list_pos(const struct lyd_node *instance)
3479{
3480 const struct lyd_node *iter = NULL;
3481 uint32_t pos = 0;
3482
3483 if (!instance || !(instance->schema->nodetype & (LYS_LIST | LYS_LEAFLIST))) {
3484 return 0;
3485 }
3486
3487 /* data instances are ordered, so we can stop when we found instance of other schema node */
3488 for (iter = instance; iter->schema == instance->schema; iter = iter->prev) {
Radek Krejcibb27df32020-11-13 15:39:16 +01003489 if (pos && (iter->next == NULL)) {
Radek Krejcica989142020-11-05 11:32:22 +01003490 /* overrun to the end of the siblings list */
3491 break;
3492 }
3493 ++pos;
3494 }
3495
3496 return pos;
3497}
Radek Krejci4233f9b2020-11-05 12:38:35 +01003498
3499API struct lyd_node *
3500lyd_first_sibling(const struct lyd_node *node)
3501{
3502 struct lyd_node *start;
3503
3504 if (!node) {
3505 return NULL;
3506 }
3507
3508 /* get the first sibling */
3509 if (node->parent) {
3510 start = node->parent->child;
3511 } else {
Radek Krejcibb27df32020-11-13 15:39:16 +01003512 for (start = (struct lyd_node *)node; start->prev->next; start = start->prev) {}
Radek Krejci4233f9b2020-11-05 12:38:35 +01003513 }
3514
3515 return start;
3516}