blob: e4665052561fc63e49bd9677c21f3deadbc79edf [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 Vasko2552ea32020-12-08 15:32:34 +0100454lyd_parse_reply(const struct ly_ctx *ctx, 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{
Michal Vasko2552ea32020-12-08 15:32:34 +0100457 LY_CHECK_ARG_RET(ctx, ctx, in, tree || op, LY_EINVAL);
Radek Krejci7931b192020-06-25 17:05:03 +0200458
459 format = lyd_parse_get_format(in, format);
Michal Vasko2552ea32020-12-08 15:32:34 +0100460 LY_CHECK_ARG_RET(ctx, format, LY_EINVAL);
Radek Krejci7931b192020-06-25 17:05:03 +0200461
Radek Krejci1798aae2020-07-14 13:26:06 +0200462 /* init */
463 if (tree) {
464 *tree = NULL;
465 }
466 if (op) {
467 *op = NULL;
468 }
469
Michal Vasko63f3d842020-07-08 10:10:14 +0200470 /* remember input position */
471 in->func_start = in->current;
472
Radek Krejci7931b192020-06-25 17:05:03 +0200473 switch (format) {
474 case LYD_XML:
Michal Vasko2552ea32020-12-08 15:32:34 +0100475 return lyd_parse_xml_reply(ctx, in, tree, op);
Radek Krejci7931b192020-06-25 17:05:03 +0200476 case LYD_JSON:
Michal Vasko2552ea32020-12-08 15:32:34 +0100477 return lyd_parse_json_reply(ctx, in, tree, op);
Radek Krejci7931b192020-06-25 17:05:03 +0200478 case LYD_LYB:
Michal Vasko2552ea32020-12-08 15:32:34 +0100479 return lyd_parse_lyb_reply(ctx, in, tree, op);
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200480 case LYD_UNKNOWN:
481 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200482 }
483
Michal Vasko2552ea32020-12-08 15:32:34 +0100484 LOGINT_RET(ctx);
Radek Krejci7931b192020-06-25 17:05:03 +0200485}
486
487API LY_ERR
488lyd_parse_notif(const struct ly_ctx *ctx, struct ly_in *in, LYD_FORMAT format, struct lyd_node **tree, struct lyd_node **ntf)
489{
Radek Krejci1798aae2020-07-14 13:26:06 +0200490 LY_CHECK_ARG_RET(ctx, ctx, in, tree || ntf, LY_EINVAL);
Radek Krejci7931b192020-06-25 17:05:03 +0200491
492 format = lyd_parse_get_format(in, format);
493 LY_CHECK_ARG_RET(ctx, format, LY_EINVAL);
494
Radek Krejci1798aae2020-07-14 13:26:06 +0200495 /* init */
496 if (tree) {
497 *tree = NULL;
498 }
499 if (ntf) {
500 *ntf = NULL;
501 }
502
Michal Vasko63f3d842020-07-08 10:10:14 +0200503 /* remember input position */
504 in->func_start = in->current;
505
Radek Krejci7931b192020-06-25 17:05:03 +0200506 switch (format) {
507 case LYD_XML:
Michal Vasko63f3d842020-07-08 10:10:14 +0200508 return lyd_parse_xml_notif(ctx, in, tree, ntf);
Radek Krejci7931b192020-06-25 17:05:03 +0200509 case LYD_JSON:
Michal Vasko63f3d842020-07-08 10:10:14 +0200510 return lyd_parse_json_notif(ctx, in, tree, ntf);
Radek Krejci7931b192020-06-25 17:05:03 +0200511 case LYD_LYB:
Michal Vasko63f3d842020-07-08 10:10:14 +0200512 return lyd_parse_lyb_notif(ctx, in, tree, ntf);
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200513 case LYD_UNKNOWN:
514 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200515 }
516
517 LOGINT_RET(ctx);
Radek Krejcie7b95092019-05-15 11:03:07 +0200518}
Radek Krejci084289f2019-07-09 17:35:30 +0200519
Michal Vasko90932a92020-02-12 14:33:03 +0100520LY_ERR
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200521lyd_create_term(const struct lysc_node *schema, const char *value, size_t value_len, ly_bool *dynamic,
522 LY_PREFIX_FORMAT format, void *prefix_data, uint32_t hints, ly_bool *incomplete, struct lyd_node **node)
Michal Vasko90932a92020-02-12 14:33:03 +0100523{
524 LY_ERR ret;
525 struct lyd_node_term *term;
526
Michal Vasko9b368d32020-02-14 13:53:31 +0100527 assert(schema->nodetype & LYD_NODE_TERM);
528
Michal Vasko90932a92020-02-12 14:33:03 +0100529 term = calloc(1, sizeof *term);
530 LY_CHECK_ERR_RET(!term, LOGMEM(schema->module->ctx), LY_EMEM);
531
532 term->schema = schema;
533 term->prev = (struct lyd_node *)term;
Michal Vasko9b368d32020-02-14 13:53:31 +0100534 term->flags = LYD_NEW;
Michal Vasko90932a92020-02-12 14:33:03 +0100535
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200536 ret = lyd_value_store(schema->module->ctx, &term->value, ((struct lysc_node_leaf *)term->schema)->type, value,
537 value_len, dynamic, format, prefix_data, hints, schema, incomplete, LY_VLOG_LYSC, schema);
538 LY_CHECK_ERR_RET(ret, free(term), ret);
Michal Vasko9b368d32020-02-14 13:53:31 +0100539 lyd_hash((struct lyd_node *)term);
540
541 *node = (struct lyd_node *)term;
542 return ret;
543}
544
545LY_ERR
546lyd_create_term2(const struct lysc_node *schema, const struct lyd_value *val, struct lyd_node **node)
547{
548 LY_ERR ret;
549 struct lyd_node_term *term;
550 struct lysc_type *type;
551
552 assert(schema->nodetype & LYD_NODE_TERM);
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200553 assert(val && val->canonical && val->realtype);
Michal Vasko9b368d32020-02-14 13:53:31 +0100554
555 term = calloc(1, sizeof *term);
556 LY_CHECK_ERR_RET(!term, LOGMEM(schema->module->ctx), LY_EMEM);
557
558 term->schema = schema;
559 term->prev = (struct lyd_node *)term;
560 term->flags = LYD_NEW;
561
562 type = ((struct lysc_node_leaf *)schema)->type;
563 ret = type->plugin->duplicate(schema->module->ctx, val, &term->value);
564 if (ret) {
565 LOGERR(schema->module->ctx, ret, "Value duplication failed.");
566 free(term);
567 return ret;
568 }
569 lyd_hash((struct lyd_node *)term);
Michal Vasko90932a92020-02-12 14:33:03 +0100570
571 *node = (struct lyd_node *)term;
572 return ret;
573}
574
575LY_ERR
576lyd_create_inner(const struct lysc_node *schema, struct lyd_node **node)
577{
578 struct lyd_node_inner *in;
579
Michal Vasko9b368d32020-02-14 13:53:31 +0100580 assert(schema->nodetype & LYD_NODE_INNER);
581
Michal Vasko90932a92020-02-12 14:33:03 +0100582 in = calloc(1, sizeof *in);
583 LY_CHECK_ERR_RET(!in, LOGMEM(schema->module->ctx), LY_EMEM);
584
585 in->schema = schema;
586 in->prev = (struct lyd_node *)in;
Michal Vasko9b368d32020-02-14 13:53:31 +0100587 in->flags = LYD_NEW;
Michal Vasko3383be72020-11-03 17:15:31 +0100588 if ((schema->nodetype == LYS_CONTAINER) && !(schema->flags & LYS_PRESENCE)) {
589 in->flags |= LYD_DEFAULT;
590 }
Michal Vasko90932a92020-02-12 14:33:03 +0100591
Michal Vasko9b368d32020-02-14 13:53:31 +0100592 /* do not hash list with keys, we need them for the hash */
593 if ((schema->nodetype != LYS_LIST) || (schema->flags & LYS_KEYLESS)) {
594 lyd_hash((struct lyd_node *)in);
595 }
Michal Vasko90932a92020-02-12 14:33:03 +0100596
597 *node = (struct lyd_node *)in;
598 return LY_SUCCESS;
599}
600
Michal Vasko90932a92020-02-12 14:33:03 +0100601LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +0200602lyd_create_list(const struct lysc_node *schema, const struct ly_path_predicate *predicates, struct lyd_node **node)
Michal Vasko90932a92020-02-12 14:33:03 +0100603{
604 LY_ERR ret = LY_SUCCESS;
Michal Vasko90932a92020-02-12 14:33:03 +0100605 struct lyd_node *list = NULL, *key;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200606 LY_ARRAY_COUNT_TYPE u;
Michal Vasko90932a92020-02-12 14:33:03 +0100607
Michal Vasko004d3152020-06-11 19:59:22 +0200608 assert((schema->nodetype == LYS_LIST) && !(schema->flags & LYS_KEYLESS));
Michal Vasko90932a92020-02-12 14:33:03 +0100609
610 /* create list */
611 LY_CHECK_GOTO(ret = lyd_create_inner(schema, &list), cleanup);
612
Michal Vasko90932a92020-02-12 14:33:03 +0100613 /* create and insert all the keys */
Michal Vasko004d3152020-06-11 19:59:22 +0200614 LY_ARRAY_FOR(predicates, u) {
615 LY_CHECK_GOTO(ret = lyd_create_term2(predicates[u].key, &predicates[u].value, &key), cleanup);
Michal Vasko90932a92020-02-12 14:33:03 +0100616 lyd_insert_node(list, NULL, key);
617 }
618
Michal Vasko9b368d32020-02-14 13:53:31 +0100619 /* hash having all the keys */
620 lyd_hash(list);
621
Michal Vasko90932a92020-02-12 14:33:03 +0100622 /* success */
623 *node = list;
624 list = NULL;
625
626cleanup:
627 lyd_free_tree(list);
Michal Vasko004d3152020-06-11 19:59:22 +0200628 return ret;
629}
630
631static LY_ERR
632lyd_create_list2(const struct lysc_node *schema, const char *keys, size_t keys_len, struct lyd_node **node)
633{
634 LY_ERR ret = LY_SUCCESS;
635 struct lyxp_expr *expr = NULL;
636 uint16_t exp_idx = 0;
637 enum ly_path_pred_type pred_type = 0;
638 struct ly_path_predicate *predicates = NULL;
639
640 /* parse keys */
Michal Vasko6b26e742020-07-17 15:02:10 +0200641 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 +0200642 LY_PATH_PRED_KEYS, &expr), cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +0200643
644 /* compile them */
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200645 LY_CHECK_GOTO(ret = ly_path_compile_predicate(schema->module->ctx, NULL, NULL, schema, expr, &exp_idx, LY_PREF_JSON,
646 NULL, &predicates, &pred_type), cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +0200647
648 /* create the list node */
649 LY_CHECK_GOTO(ret = lyd_create_list(schema, predicates, node), cleanup);
650
651cleanup:
652 lyxp_expr_free(schema->module->ctx, expr);
Michal Vaskof7e16e22020-10-21 09:24:39 +0200653 ly_path_predicates_free(schema->module->ctx, pred_type, predicates);
Michal Vasko90932a92020-02-12 14:33:03 +0100654 return ret;
655}
656
657LY_ERR
Michal Vasko366a4a12020-12-04 16:23:57 +0100658lyd_create_any(const struct lysc_node *schema, const void *value, LYD_ANYDATA_VALUETYPE value_type, ly_bool use_value,
659 struct lyd_node **node)
Michal Vasko90932a92020-02-12 14:33:03 +0100660{
Michal Vasko366a4a12020-12-04 16:23:57 +0100661 LY_ERR ret;
Michal Vasko90932a92020-02-12 14:33:03 +0100662 struct lyd_node_any *any;
Michal Vasko366a4a12020-12-04 16:23:57 +0100663 union lyd_any_value any_val;
Michal Vasko90932a92020-02-12 14:33:03 +0100664
Michal Vasko9b368d32020-02-14 13:53:31 +0100665 assert(schema->nodetype & LYD_NODE_ANY);
666
Michal Vasko90932a92020-02-12 14:33:03 +0100667 any = calloc(1, sizeof *any);
668 LY_CHECK_ERR_RET(!any, LOGMEM(schema->module->ctx), LY_EMEM);
669
670 any->schema = schema;
671 any->prev = (struct lyd_node *)any;
Michal Vasko9b368d32020-02-14 13:53:31 +0100672 any->flags = LYD_NEW;
Michal Vasko90932a92020-02-12 14:33:03 +0100673
Radek Krejci1798aae2020-07-14 13:26:06 +0200674 /* TODO: convert XML/JSON strings into a opaq data tree */
Michal Vasko366a4a12020-12-04 16:23:57 +0100675
676 if (use_value) {
677 any->value.str = value;
678 any->value_type = value_type;
679 } else {
680 any_val.str = value;
681 ret = lyd_any_copy_value((struct lyd_node *)any, &any_val, value_type);
682 LY_CHECK_ERR_RET(ret, free(any), ret);
683 }
Michal Vasko9b368d32020-02-14 13:53:31 +0100684 lyd_hash((struct lyd_node *)any);
Michal Vasko90932a92020-02-12 14:33:03 +0100685
686 *node = (struct lyd_node *)any;
687 return LY_SUCCESS;
688}
689
Michal Vasko52927e22020-03-16 17:26:14 +0100690LY_ERR
Michal Vasko501af032020-11-11 20:27:44 +0100691lyd_create_opaq(const struct ly_ctx *ctx, const char *name, size_t name_len, const char *prefix, size_t pref_len,
692 const char *module_key, size_t module_key_len, const char *value, size_t value_len, ly_bool *dynamic,
693 LY_PREFIX_FORMAT format, void *val_prefix_data, uint32_t hints, struct lyd_node **node)
Michal Vasko52927e22020-03-16 17:26:14 +0100694{
Radek Krejci011e4aa2020-09-04 15:22:31 +0200695 LY_ERR ret = LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +0100696 struct lyd_node_opaq *opaq;
697
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200698 assert(ctx && name && name_len && format);
Michal Vasko52927e22020-03-16 17:26:14 +0100699
700 if (!value_len) {
701 value = "";
702 }
703
704 opaq = calloc(1, sizeof *opaq);
Michal Vasko501af032020-11-11 20:27:44 +0100705 LY_CHECK_ERR_GOTO(!opaq, LOGMEM(ctx); ret = LY_EMEM, finish);
Michal Vasko52927e22020-03-16 17:26:14 +0100706
707 opaq->prev = (struct lyd_node *)opaq;
Michal Vaskoad92b672020-11-12 13:11:31 +0100708 LY_CHECK_GOTO(ret = lydict_insert(ctx, name, name_len, &opaq->name.name), finish);
Radek Krejci011e4aa2020-09-04 15:22:31 +0200709
Michal Vasko52927e22020-03-16 17:26:14 +0100710 if (pref_len) {
Michal Vaskoad92b672020-11-12 13:11:31 +0100711 LY_CHECK_GOTO(ret = lydict_insert(ctx, prefix, pref_len, &opaq->name.prefix), finish);
Michal Vasko52927e22020-03-16 17:26:14 +0100712 }
Radek Krejci1798aae2020-07-14 13:26:06 +0200713 if (module_key_len) {
Michal Vaskoad92b672020-11-12 13:11:31 +0100714 LY_CHECK_GOTO(ret = lydict_insert(ctx, module_key, module_key_len, &opaq->name.module_ns), finish);
Radek Krejci1798aae2020-07-14 13:26:06 +0200715 }
Michal Vasko52927e22020-03-16 17:26:14 +0100716 if (dynamic && *dynamic) {
Radek Krejci011e4aa2020-09-04 15:22:31 +0200717 LY_CHECK_GOTO(ret = lydict_insert_zc(ctx, (char *)value, &opaq->value), finish);
Michal Vasko52927e22020-03-16 17:26:14 +0100718 *dynamic = 0;
719 } else {
Radek Krejci011e4aa2020-09-04 15:22:31 +0200720 LY_CHECK_GOTO(ret = lydict_insert(ctx, value, value_len, &opaq->value), finish);
Michal Vasko52927e22020-03-16 17:26:14 +0100721 }
Michal Vasko501af032020-11-11 20:27:44 +0100722
723 opaq->format = format;
724 opaq->val_prefix_data = val_prefix_data;
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200725 opaq->hints = hints;
Michal Vasko52927e22020-03-16 17:26:14 +0100726 opaq->ctx = ctx;
727
Radek Krejci011e4aa2020-09-04 15:22:31 +0200728finish:
729 if (ret) {
730 lyd_free_tree((struct lyd_node *)opaq);
Michal Vasko501af032020-11-11 20:27:44 +0100731 ly_free_prefix_data(format, val_prefix_data);
Radek Krejci011e4aa2020-09-04 15:22:31 +0200732 } else {
733 *node = (struct lyd_node *)opaq;
734 }
735 return ret;
Michal Vasko52927e22020-03-16 17:26:14 +0100736}
737
Michal Vasko3a41dff2020-07-15 14:30:28 +0200738API LY_ERR
Michal Vasko65243892020-12-04 16:26:21 +0100739lyd_new_inner(struct lyd_node *parent, const struct lys_module *module, const char *name, ly_bool output,
740 struct lyd_node **node)
Michal Vasko013a8182020-03-03 10:46:53 +0100741{
742 struct lyd_node *ret = NULL;
743 const struct lysc_node *schema;
744 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
745
Michal Vasko6027eb92020-07-15 16:37:30 +0200746 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100747
Michal Vaskof03ed032020-03-04 13:31:44 +0100748 if (!module) {
749 module = parent->schema->module;
750 }
751
Michal Vasko3a41dff2020-07-15 14:30:28 +0200752 schema = lys_find_child(parent ? parent->schema : NULL, module, name, 0,
Radek Krejci41ac9942020-11-02 14:47:56 +0100753 LYS_CONTAINER | LYS_NOTIF | LYS_RPC | LYS_ACTION, output ? LYS_GETNEXT_OUTPUT : 0);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200754 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "Inner node (and not a list) \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +0100755
Michal Vasko3a41dff2020-07-15 14:30:28 +0200756 LY_CHECK_RET(lyd_create_inner(schema, &ret));
757 if (parent) {
Michal Vasko013a8182020-03-03 10:46:53 +0100758 lyd_insert_node(parent, NULL, ret);
759 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200760
761 if (node) {
762 *node = ret;
763 }
764 return LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +0100765}
766
Michal Vasko3a41dff2020-07-15 14:30:28 +0200767API LY_ERR
Michal Vasko65243892020-12-04 16:26:21 +0100768lyd_new_list(struct lyd_node *parent, const struct lys_module *module, const char *name, ly_bool output,
769 struct lyd_node **node, ...)
Michal Vasko013a8182020-03-03 10:46:53 +0100770{
771 struct lyd_node *ret = NULL, *key;
772 const struct lysc_node *schema, *key_s;
773 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
774 va_list ap;
775 const char *key_val;
776 LY_ERR rc = LY_SUCCESS;
777
Michal Vasko6027eb92020-07-15 16:37:30 +0200778 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100779
Michal Vaskof03ed032020-03-04 13:31:44 +0100780 if (!module) {
781 module = parent->schema->module;
782 }
783
Radek Krejci41ac9942020-11-02 14:47:56 +0100784 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 +0200785 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "List node \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +0100786
787 /* create list inner node */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200788 LY_CHECK_RET(lyd_create_inner(schema, &ret));
Michal Vasko013a8182020-03-03 10:46:53 +0100789
Michal Vasko3a41dff2020-07-15 14:30:28 +0200790 va_start(ap, node);
Michal Vasko013a8182020-03-03 10:46:53 +0100791
792 /* create and insert all the keys */
793 for (key_s = lysc_node_children(schema, 0); key_s && (key_s->flags & LYS_KEY); key_s = key_s->next) {
794 key_val = va_arg(ap, const char *);
795
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200796 rc = lyd_create_term(key_s, key_val, key_val ? strlen(key_val) : 0, NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA,
797 NULL, &key);
798 LY_CHECK_GOTO(rc, cleanup);
Michal Vasko013a8182020-03-03 10:46:53 +0100799 lyd_insert_node(ret, NULL, key);
800 }
801
Michal Vasko013a8182020-03-03 10:46:53 +0100802 if (parent) {
803 lyd_insert_node(parent, NULL, ret);
804 }
805
806cleanup:
Michal Vasko3a41dff2020-07-15 14:30:28 +0200807 va_end(ap);
Michal Vasko013a8182020-03-03 10:46:53 +0100808 if (rc) {
809 lyd_free_tree(ret);
810 ret = NULL;
Michal Vasko3a41dff2020-07-15 14:30:28 +0200811 } else if (node) {
812 *node = ret;
Michal Vasko013a8182020-03-03 10:46:53 +0100813 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200814 return rc;
Michal Vasko013a8182020-03-03 10:46:53 +0100815}
816
Michal Vasko3a41dff2020-07-15 14:30:28 +0200817API LY_ERR
818lyd_new_list2(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *keys,
Radek Krejci41ac9942020-11-02 14:47:56 +0100819 ly_bool output, struct lyd_node **node)
Michal Vasko013a8182020-03-03 10:46:53 +0100820{
821 struct lyd_node *ret = NULL;
822 const struct lysc_node *schema;
823 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
824
Michal Vasko6027eb92020-07-15 16:37:30 +0200825 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100826
Michal Vaskof03ed032020-03-04 13:31:44 +0100827 if (!module) {
828 module = parent->schema->module;
829 }
Michal Vasko004d3152020-06-11 19:59:22 +0200830 if (!keys) {
831 keys = "";
832 }
Michal Vaskof03ed032020-03-04 13:31:44 +0100833
Michal Vasko004d3152020-06-11 19:59:22 +0200834 /* find schema node */
Radek Krejci41ac9942020-11-02 14:47:56 +0100835 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 +0200836 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "List node \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +0100837
Michal Vasko004d3152020-06-11 19:59:22 +0200838 if ((schema->flags & LYS_KEYLESS) && !keys[0]) {
839 /* key-less list */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200840 LY_CHECK_RET(lyd_create_inner(schema, &ret));
Michal Vasko004d3152020-06-11 19:59:22 +0200841 } else {
842 /* create the list node */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200843 LY_CHECK_RET(lyd_create_list2(schema, keys, strlen(keys), &ret));
Michal Vasko004d3152020-06-11 19:59:22 +0200844 }
Michal Vasko004d3152020-06-11 19:59:22 +0200845 if (parent) {
Michal Vasko013a8182020-03-03 10:46:53 +0100846 lyd_insert_node(parent, NULL, ret);
847 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200848
849 if (node) {
850 *node = ret;
851 }
852 return LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +0100853}
854
Michal Vasko3a41dff2020-07-15 14:30:28 +0200855API LY_ERR
856lyd_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 +0100857 ly_bool output, struct lyd_node **node)
Michal Vasko013a8182020-03-03 10:46:53 +0100858{
Michal Vaskocbff3e92020-05-27 12:56:41 +0200859 LY_ERR rc;
Michal Vasko013a8182020-03-03 10:46:53 +0100860 struct lyd_node *ret = NULL;
861 const struct lysc_node *schema;
862 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
863
Michal Vasko6027eb92020-07-15 16:37:30 +0200864 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100865
Michal Vaskof03ed032020-03-04 13:31:44 +0100866 if (!module) {
867 module = parent->schema->module;
868 }
869
Radek Krejci41ac9942020-11-02 14:47:56 +0100870 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 +0200871 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "Term node \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +0100872
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200873 rc = lyd_create_term(schema, val_str, val_str ? strlen(val_str) : 0, NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, NULL,
874 &ret);
875 LY_CHECK_RET(rc);
Michal Vaskocbff3e92020-05-27 12:56:41 +0200876 if (parent) {
Michal Vasko013a8182020-03-03 10:46:53 +0100877 lyd_insert_node(parent, NULL, ret);
878 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200879
880 if (node) {
881 *node = ret;
882 }
883 return LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +0100884}
885
Michal Vasko3a41dff2020-07-15 14:30:28 +0200886API LY_ERR
Michal Vasko219006c2020-12-04 16:26:52 +0100887lyd_new_any(struct lyd_node *parent, const struct lys_module *module, const char *name, void *value,
Radek Krejci41ac9942020-11-02 14:47:56 +0100888 LYD_ANYDATA_VALUETYPE value_type, ly_bool output, struct lyd_node **node)
Michal Vasko013a8182020-03-03 10:46:53 +0100889{
890 struct lyd_node *ret = NULL;
891 const struct lysc_node *schema;
892 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
893
Michal Vasko6027eb92020-07-15 16:37:30 +0200894 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100895
Michal Vaskof03ed032020-03-04 13:31:44 +0100896 if (!module) {
897 module = parent->schema->module;
898 }
899
Radek Krejci41ac9942020-11-02 14:47:56 +0100900 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 +0200901 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "Any node \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +0100902
Michal Vasko366a4a12020-12-04 16:23:57 +0100903 LY_CHECK_RET(lyd_create_any(schema, value, value_type, 1, &ret));
Michal Vasko3a41dff2020-07-15 14:30:28 +0200904 if (parent) {
Michal Vasko013a8182020-03-03 10:46:53 +0100905 lyd_insert_node(parent, NULL, ret);
906 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200907
908 if (node) {
909 *node = ret;
910 }
911 return LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +0100912}
913
Michal Vasko4490d312020-06-16 13:08:55 +0200914/**
915 * @brief Update node value.
916 *
917 * @param[in] node Node to update.
918 * @param[in] value New value to set.
919 * @param[in] value_type Type of @p value for any node.
920 * @param[out] new_parent Set to @p node if the value was updated, otherwise set to NULL.
921 * @param[out] new_node Set to @p node if the value was updated, otherwise set to NULL.
922 * @return LY_ERR value.
923 */
Michal Vasko00cbf532020-06-15 13:58:47 +0200924static LY_ERR
925lyd_new_path_update(struct lyd_node *node, const void *value, LYD_ANYDATA_VALUETYPE value_type,
Radek Krejci0f969882020-08-21 16:56:47 +0200926 struct lyd_node **new_parent, struct lyd_node **new_node)
Michal Vasko00cbf532020-06-15 13:58:47 +0200927{
928 LY_ERR ret = LY_SUCCESS;
929 struct lyd_node *new_any;
930
931 switch (node->schema->nodetype) {
932 case LYS_CONTAINER:
933 case LYS_NOTIF:
934 case LYS_RPC:
935 case LYS_ACTION:
936 case LYS_LIST:
937 case LYS_LEAFLIST:
938 /* if it exists, there is nothing to update */
939 *new_parent = NULL;
940 *new_node = NULL;
941 break;
942 case LYS_LEAF:
943 ret = lyd_change_term(node, value);
944 if ((ret == LY_SUCCESS) || (ret == LY_EEXIST)) {
945 /* there was an actual change (at least of the default flag) */
946 *new_parent = node;
947 *new_node = node;
948 ret = LY_SUCCESS;
949 } else if (ret == LY_ENOT) {
950 /* no change */
951 *new_parent = NULL;
952 *new_node = NULL;
953 ret = LY_SUCCESS;
954 } /* else error */
955 break;
956 case LYS_ANYDATA:
957 case LYS_ANYXML:
958 /* create a new any node */
Michal Vasko366a4a12020-12-04 16:23:57 +0100959 LY_CHECK_RET(lyd_create_any(node->schema, value, value_type, 0, &new_any));
Michal Vasko00cbf532020-06-15 13:58:47 +0200960
961 /* compare with the existing one */
Michal Vasko8f359bf2020-07-28 10:41:15 +0200962 if (lyd_compare_single(node, new_any, 0)) {
Michal Vasko00cbf532020-06-15 13:58:47 +0200963 /* not equal, switch values (so that we can use generic node free) */
964 ((struct lyd_node_any *)new_any)->value = ((struct lyd_node_any *)node)->value;
965 ((struct lyd_node_any *)new_any)->value_type = ((struct lyd_node_any *)node)->value_type;
966 ((struct lyd_node_any *)node)->value.str = value;
967 ((struct lyd_node_any *)node)->value_type = value_type;
968
969 *new_parent = node;
970 *new_node = node;
971 } else {
972 /* they are equal */
973 *new_parent = NULL;
974 *new_node = NULL;
975 }
976 lyd_free_tree(new_any);
977 break;
978 default:
Michal Vaskob7be7a82020-08-20 09:09:04 +0200979 LOGINT(LYD_CTX(node));
Michal Vasko00cbf532020-06-15 13:58:47 +0200980 ret = LY_EINT;
981 break;
982 }
983
984 return ret;
985}
986
Michal Vasko3a41dff2020-07-15 14:30:28 +0200987API LY_ERR
Michal Vasko871a0252020-11-11 18:35:24 +0100988lyd_new_meta(const struct ly_ctx *ctx, struct lyd_node *parent, const struct lys_module *module, const char *name,
989 const char *val_str, ly_bool clear_dflt, struct lyd_meta **meta)
Michal Vaskod86997b2020-05-26 15:19:54 +0200990{
Michal Vaskod86997b2020-05-26 15:19:54 +0200991 const char *prefix, *tmp;
Michal Vaskod86997b2020-05-26 15:19:54 +0200992 size_t pref_len, name_len;
993
Michal Vasko871a0252020-11-11 18:35:24 +0100994 LY_CHECK_ARG_RET(NULL, ctx, name, module || strchr(name, ':'), parent || meta, LY_EINVAL);
Michal Vasko00cbf532020-06-15 13:58:47 +0200995
Michal Vasko871a0252020-11-11 18:35:24 +0100996 if (parent && !parent->schema) {
997 LOGERR(ctx, LY_EINVAL, "Cannot add metadata to an opaque node \"%s\".", ((struct lyd_node_opaq *)parent)->name);
998 return LY_EINVAL;
999 }
Michal Vasko610553d2020-11-18 18:15:05 +01001000 if (meta) {
1001 *meta = NULL;
1002 }
Michal Vaskod86997b2020-05-26 15:19:54 +02001003
1004 /* parse the name */
1005 tmp = name;
1006 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
1007 LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name);
Michal Vasko871a0252020-11-11 18:35:24 +01001008 return LY_EINVAL;
Michal Vaskod86997b2020-05-26 15:19:54 +02001009 }
1010
1011 /* find the module */
1012 if (prefix) {
Radek Krejci0ad51f12020-07-16 12:08:12 +02001013 module = ly_ctx_get_module_implemented2(ctx, prefix, pref_len);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001014 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 +02001015 }
1016
1017 /* set value if none */
1018 if (!val_str) {
1019 val_str = "";
1020 }
1021
Michal Vasko871a0252020-11-11 18:35:24 +01001022 return lyd_create_meta(parent, meta, module, name, name_len, val_str, strlen(val_str), NULL, LY_PREF_JSON,
1023 NULL, LYD_HINT_DATA, clear_dflt, NULL);
1024}
Michal Vasko3a41dff2020-07-15 14:30:28 +02001025
Michal Vaskoba696702020-11-11 19:12:45 +01001026API LY_ERR
1027lyd_new_meta2(const struct ly_ctx *ctx, struct lyd_node *parent, ly_bool clear_dflt, const struct lyd_attr *attr,
1028 struct lyd_meta **meta)
1029{
1030 const struct lys_module *mod;
1031
1032 LY_CHECK_ARG_RET(NULL, ctx, attr, parent || meta, LY_EINVAL);
1033
1034 if (parent && !parent->schema) {
1035 LOGERR(ctx, LY_EINVAL, "Cannot add metadata to an opaque node \"%s\".", ((struct lyd_node_opaq *)parent)->name);
1036 return LY_EINVAL;
Michal Vasko3a41dff2020-07-15 14:30:28 +02001037 }
Michal Vasko610553d2020-11-18 18:15:05 +01001038 if (meta) {
1039 *meta = NULL;
1040 }
Michal Vaskoba696702020-11-11 19:12:45 +01001041
1042 switch (attr->format) {
1043 case LY_PREF_XML:
Michal Vaskoad92b672020-11-12 13:11:31 +01001044 mod = ly_ctx_get_module_implemented_ns(ctx, attr->name.module_ns);
Michal Vaskoba696702020-11-11 19:12:45 +01001045 if (!mod) {
Michal Vaskoad92b672020-11-12 13:11:31 +01001046 LOGERR(ctx, LY_EINVAL, "Module with namespace \"%s\" not found.", attr->name.module_ns);
Michal Vaskoba696702020-11-11 19:12:45 +01001047 return LY_ENOTFOUND;
1048 }
1049 break;
1050 case LY_PREF_JSON:
Michal Vaskoad92b672020-11-12 13:11:31 +01001051 mod = ly_ctx_get_module_implemented(ctx, attr->name.module_name);
Michal Vaskoba696702020-11-11 19:12:45 +01001052 if (!mod) {
Michal Vaskoad92b672020-11-12 13:11:31 +01001053 LOGERR(ctx, LY_EINVAL, "Module \"%s\" not found.", attr->name.module_name);
Michal Vaskoba696702020-11-11 19:12:45 +01001054 return LY_ENOTFOUND;
1055 }
1056 break;
1057 default:
1058 LOGINT_RET(ctx);
1059 }
1060
Michal Vaskoad92b672020-11-12 13:11:31 +01001061 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 +01001062 NULL, attr->format, attr->val_prefix_data, attr->hints, clear_dflt, NULL);
Michal Vaskod86997b2020-05-26 15:19:54 +02001063}
1064
Michal Vasko3a41dff2020-07-15 14:30:28 +02001065API LY_ERR
Michal Vasko00cbf532020-06-15 13:58:47 +02001066lyd_new_opaq(struct lyd_node *parent, const struct ly_ctx *ctx, const char *name, const char *value,
Radek Krejci0f969882020-08-21 16:56:47 +02001067 const char *module_name, struct lyd_node **node)
Michal Vasko00cbf532020-06-15 13:58:47 +02001068{
1069 struct lyd_node *ret = NULL;
1070
Michal Vasko6027eb92020-07-15 16:37:30 +02001071 LY_CHECK_ARG_RET(ctx, parent || ctx, parent || node, name, module_name, LY_EINVAL);
Michal Vasko00cbf532020-06-15 13:58:47 +02001072
1073 if (!ctx) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001074 ctx = LYD_CTX(parent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001075 }
1076 if (!value) {
1077 value = "";
1078 }
1079
Michal Vasko501af032020-11-11 20:27:44 +01001080 LY_CHECK_RET(lyd_create_opaq(ctx, name, strlen(name), NULL, 0, module_name, strlen(module_name), value,
1081 strlen(value), NULL, LY_PREF_JSON, NULL, 0, &ret));
Michal Vasko3a41dff2020-07-15 14:30:28 +02001082 if (parent) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001083 lyd_insert_node(parent, NULL, ret);
1084 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02001085
1086 if (node) {
1087 *node = ret;
1088 }
1089 return LY_SUCCESS;
Michal Vasko00cbf532020-06-15 13:58:47 +02001090}
1091
Michal Vasko3a41dff2020-07-15 14:30:28 +02001092API LY_ERR
1093lyd_new_attr(struct lyd_node *parent, const char *module_name, const char *name, const char *val_str,
Radek Krejci0f969882020-08-21 16:56:47 +02001094 struct lyd_attr **attr)
Michal Vasko00cbf532020-06-15 13:58:47 +02001095{
Radek Krejci1798aae2020-07-14 13:26:06 +02001096 struct lyd_attr *ret = NULL;
Michal Vasko00cbf532020-06-15 13:58:47 +02001097 const struct ly_ctx *ctx;
1098 const char *prefix, *tmp;
Michal Vasko51d21b82020-11-13 18:03:54 +01001099 size_t pref_len, name_len, mod_len;
Michal Vasko00cbf532020-06-15 13:58:47 +02001100
Michal Vasko3a41dff2020-07-15 14:30:28 +02001101 LY_CHECK_ARG_RET(NULL, parent, !parent->schema, name, LY_EINVAL);
Michal Vasko00cbf532020-06-15 13:58:47 +02001102
Michal Vaskob7be7a82020-08-20 09:09:04 +02001103 ctx = LYD_CTX(parent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001104
1105 /* parse the name */
1106 tmp = name;
1107 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
1108 LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001109 return LY_EVALID;
Michal Vasko00cbf532020-06-15 13:58:47 +02001110 }
1111
Michal Vasko51d21b82020-11-13 18:03:54 +01001112 /* get the module */
1113 if (module_name) {
1114 mod_len = strlen(module_name);
1115 } else {
1116 module_name = prefix;
1117 mod_len = pref_len;
1118 }
1119
Michal Vasko00cbf532020-06-15 13:58:47 +02001120 /* set value if none */
1121 if (!val_str) {
1122 val_str = "";
1123 }
1124
Michal Vasko51d21b82020-11-13 18:03:54 +01001125 LY_CHECK_RET(lyd_create_attr(parent, &ret, ctx, name, name_len, prefix, pref_len, module_name, mod_len, val_str,
1126 strlen(val_str), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA));
Michal Vasko3a41dff2020-07-15 14:30:28 +02001127
1128 if (attr) {
1129 *attr = ret;
1130 }
1131 return LY_SUCCESS;
Michal Vasko00cbf532020-06-15 13:58:47 +02001132}
1133
1134API LY_ERR
1135lyd_change_term(struct lyd_node *term, const char *val_str)
1136{
1137 LY_ERR ret = LY_SUCCESS;
1138 struct lysc_type *type;
1139 struct lyd_node_term *t;
1140 struct lyd_node *parent;
1141 struct lyd_value val = {0};
Radek Krejci857189e2020-09-01 13:26:36 +02001142 ly_bool dflt_change, val_change;
Michal Vasko00cbf532020-06-15 13:58:47 +02001143
1144 LY_CHECK_ARG_RET(NULL, term, term->schema, term->schema->nodetype & LYD_NODE_TERM, LY_EINVAL);
1145
1146 if (!val_str) {
1147 val_str = "";
1148 }
1149 t = (struct lyd_node_term *)term;
1150 type = ((struct lysc_node_leaf *)term->schema)->type;
1151
1152 /* parse the new value */
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001153 ret = lyd_value_store(LYD_CTX(term), &val, type, val_str, strlen(val_str), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA,
1154 term->schema, NULL, LY_VLOG_LYD, term);
1155 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001156
1157 /* compare original and new value */
1158 if (type->plugin->compare(&t->value, &val)) {
1159 /* values differ, switch them */
Michal Vaskob7be7a82020-08-20 09:09:04 +02001160 type->plugin->free(LYD_CTX(term), &t->value);
Michal Vasko00cbf532020-06-15 13:58:47 +02001161 t->value = val;
1162 memset(&val, 0, sizeof val);
1163 val_change = 1;
1164 } else {
1165 val_change = 0;
1166 }
1167
1168 /* always clear the default flag */
1169 if (term->flags & LYD_DEFAULT) {
1170 for (parent = term; parent; parent = (struct lyd_node *)parent->parent) {
1171 parent->flags &= ~LYD_DEFAULT;
1172 }
1173 dflt_change = 1;
1174 } else {
1175 dflt_change = 0;
1176 }
1177
1178 if (val_change || dflt_change) {
1179 /* make the node non-validated */
1180 term->flags &= LYD_NEW;
1181 }
1182
1183 if (val_change) {
1184 if (term->schema->nodetype == LYS_LEAFLIST) {
1185 /* leaf-list needs to be hashed again and re-inserted into parent */
1186 lyd_unlink_hash(term);
1187 lyd_hash(term);
1188 LY_CHECK_GOTO(ret = lyd_insert_hash(term), cleanup);
1189 } else if ((term->schema->flags & LYS_KEY) && term->parent) {
1190 /* list needs to be updated if its key was changed */
1191 assert(term->parent->schema->nodetype == LYS_LIST);
1192 lyd_unlink_hash((struct lyd_node *)term->parent);
1193 lyd_hash((struct lyd_node *)term->parent);
1194 LY_CHECK_GOTO(ret = lyd_insert_hash((struct lyd_node *)term->parent), cleanup);
1195 } /* else leaf that is not a key, its value is not used for its hash so it does not change */
1196 }
1197
1198 /* retrun value */
1199 if (!val_change) {
1200 if (dflt_change) {
1201 /* only default flag change */
1202 ret = LY_EEXIST;
1203 } else {
1204 /* no change */
1205 ret = LY_ENOT;
1206 }
1207 } /* else value changed, LY_SUCCESS */
1208
1209cleanup:
Michal Vasko59512fc2020-12-09 18:13:29 +01001210 if (val.realtype) {
1211 type->plugin->free(LYD_CTX(term), &val);
1212 }
Michal Vasko00cbf532020-06-15 13:58:47 +02001213 return ret;
1214}
1215
Michal Vasko41586352020-07-13 13:54:25 +02001216API LY_ERR
1217lyd_change_meta(struct lyd_meta *meta, const char *val_str)
1218{
1219 LY_ERR ret = LY_SUCCESS;
Radek Krejci2b18bf12020-11-06 11:20:20 +01001220 struct lyd_meta *m2 = NULL;
Michal Vasko41586352020-07-13 13:54:25 +02001221 struct lyd_value val;
Radek Krejci857189e2020-09-01 13:26:36 +02001222 ly_bool val_change;
Michal Vasko41586352020-07-13 13:54:25 +02001223
1224 LY_CHECK_ARG_RET(NULL, meta, LY_EINVAL);
1225
1226 if (!val_str) {
1227 val_str = "";
1228 }
1229
1230 /* parse the new value into a new meta structure */
1231 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 +01001232 strlen(val_str), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, 0, NULL), cleanup);
Michal Vasko41586352020-07-13 13:54:25 +02001233
1234 /* compare original and new value */
1235 if (lyd_compare_meta(meta, m2)) {
1236 /* values differ, switch them */
1237 val = meta->value;
1238 meta->value = m2->value;
1239 m2->value = val;
1240 val_change = 1;
1241 } else {
1242 val_change = 0;
1243 }
1244
1245 /* retrun value */
1246 if (!val_change) {
1247 /* no change */
1248 ret = LY_ENOT;
1249 } /* else value changed, LY_SUCCESS */
1250
1251cleanup:
Michal Vasko1a66a5d2020-11-18 18:15:37 +01001252 lyd_free_meta_single(m2);
Michal Vasko41586352020-07-13 13:54:25 +02001253 return ret;
1254}
1255
Michal Vasko3a41dff2020-07-15 14:30:28 +02001256API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001257lyd_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 +02001258 struct lyd_node **node)
Michal Vasko00cbf532020-06-15 13:58:47 +02001259{
Michal Vasko3a41dff2020-07-15 14:30:28 +02001260 return lyd_new_path2(parent, ctx, path, value, 0, options, node, NULL);
Michal Vasko00cbf532020-06-15 13:58:47 +02001261}
1262
1263API LY_ERR
1264lyd_new_path2(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const void *value,
Radek Krejci1deb5be2020-08-26 16:43:36 +02001265 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 +02001266{
1267 LY_ERR ret = LY_SUCCESS, r;
1268 struct lyxp_expr *exp = NULL;
1269 struct ly_path *p = NULL;
1270 struct lyd_node *nparent = NULL, *nnode = NULL, *node = NULL, *cur_parent;
1271 const struct lysc_node *schema;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001272 LY_ARRAY_COUNT_TYPE path_idx = 0;
Michal Vasko00cbf532020-06-15 13:58:47 +02001273 struct ly_path_predicate *pred;
1274
1275 LY_CHECK_ARG_RET(ctx, parent || ctx, path, (path[0] == '/') || parent, LY_EINVAL);
1276
1277 if (!ctx) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001278 ctx = LYD_CTX(parent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001279 }
1280
1281 /* parse path */
Michal Vasko6b26e742020-07-17 15:02:10 +02001282 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 +02001283 LY_PATH_PREFIX_OPTIONAL, LY_PATH_PRED_SIMPLE, &exp), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001284
1285 /* compile path */
1286 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 +02001287 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 +01001288 NULL, NULL, &p), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001289
Radek Krejcic7d13e32020-12-09 12:32:24 +01001290 assert(p);
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001291 schema = p[LY_ARRAY_COUNT(p) - 1].node;
Michal Vasko69730152020-10-09 16:30:07 +02001292 if ((schema->nodetype == LYS_LIST) && (p[LY_ARRAY_COUNT(p) - 1].pred_type == LY_PATH_PREDTYPE_NONE) &&
Radek Krejci092e33c2020-10-12 15:33:10 +02001293 !(options & LYD_NEW_PATH_OPAQ)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001294 LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_XPATH, "Predicate missing for %s \"%s\" in path.",
Michal Vasko69730152020-10-09 16:30:07 +02001295 lys_nodetype2str(schema->nodetype), schema->name);
Michal Vasko00cbf532020-06-15 13:58:47 +02001296 ret = LY_EINVAL;
1297 goto cleanup;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001298 } 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 +02001299 /* parse leafref value into a predicate, if not defined in the path */
Michal Vasko00cbf532020-06-15 13:58:47 +02001300 if (!value) {
1301 value = "";
1302 }
1303
1304 r = LY_SUCCESS;
Radek Krejci092e33c2020-10-12 15:33:10 +02001305 if (options & LYD_NEW_PATH_OPAQ) {
Michal Vaskof937cfe2020-08-03 16:07:12 +02001306 r = lys_value_validate(NULL, schema, value, strlen(value));
Michal Vasko00cbf532020-06-15 13:58:47 +02001307 }
1308 if (!r) {
Michal Vasko3af81bc2020-11-18 18:16:13 +01001309 /* store the new predicate */
1310 p[LY_ARRAY_COUNT(p) - 1].pred_type = LY_PATH_PREDTYPE_LEAFLIST;
1311 LY_ARRAY_NEW_GOTO(ctx, p[LY_ARRAY_COUNT(p) - 1].predicates, pred, ret, cleanup);
1312
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001313 ret = lyd_value_store(ctx, &pred->value, ((struct lysc_node_leaflist *)schema)->type, value, strlen(value),
1314 NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, schema, NULL, LY_VLOG_LYSC, schema);
1315 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoae875662020-10-21 10:33:17 +02001316 ++((struct lysc_type *)pred->value.realtype)->refcount;
Michal Vasko00cbf532020-06-15 13:58:47 +02001317 } /* else we have opaq flag and the value is not valid, leavne no predicate and then create an opaque node */
1318 }
1319
1320 /* try to find any existing nodes in the path */
1321 if (parent) {
1322 ret = ly_path_eval_partial(p, parent, &path_idx, &node);
1323 if (ret == LY_SUCCESS) {
1324 /* the node exists, are we supposed to update it or is it just a default? */
Radek Krejci092e33c2020-10-12 15:33:10 +02001325 if (!(options & LYD_NEW_PATH_UPDATE) && !(node->flags & LYD_DEFAULT)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001326 LOGERR(ctx, LY_EEXIST, "Path \"%s\" already exists", path);
1327 ret = LY_EEXIST;
1328 goto cleanup;
1329 }
1330
1331 /* update the existing node */
1332 ret = lyd_new_path_update(node, value, value_type, &nparent, &nnode);
1333 goto cleanup;
1334 } else if (ret == LY_EINCOMPLETE) {
1335 /* some nodes were found, adjust the iterator to the next segment */
1336 ++path_idx;
1337 } else if (ret == LY_ENOTFOUND) {
1338 /* 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 +01001339 if (lysc_data_parent(p[0].node)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001340 node = parent;
1341 }
1342 } else {
1343 /* error */
1344 goto cleanup;
1345 }
1346 }
1347
1348 /* create all the non-existing nodes in a loop */
Michal Vaskod989ba02020-08-24 10:59:24 +02001349 for ( ; path_idx < LY_ARRAY_COUNT(p); ++path_idx) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001350 cur_parent = node;
1351 schema = p[path_idx].node;
1352
1353 switch (schema->nodetype) {
1354 case LYS_LIST:
1355 if (!(schema->flags & LYS_KEYLESS)) {
Radek Krejci092e33c2020-10-12 15:33:10 +02001356 if ((options & LYD_NEW_PATH_OPAQ) && (p[path_idx].pred_type == LY_PATH_PREDTYPE_NONE)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001357 /* creating opaque list without keys */
Michal Vasko501af032020-11-11 20:27:44 +01001358 LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), NULL, 0,
1359 schema->module->name, strlen(schema->module->name), NULL, 0, NULL, LY_PREF_JSON, NULL,
1360 LYD_NODEHINT_LIST, &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001361 } else {
1362 assert(p[path_idx].pred_type == LY_PATH_PREDTYPE_LIST);
1363 LY_CHECK_GOTO(ret = lyd_create_list(schema, p[path_idx].predicates, &node), cleanup);
1364 }
1365 break;
1366 }
Radek Krejcif13b87b2020-12-01 22:02:17 +01001367 /* fall through */
Michal Vasko00cbf532020-06-15 13:58:47 +02001368 case LYS_CONTAINER:
1369 case LYS_NOTIF:
1370 case LYS_RPC:
1371 case LYS_ACTION:
1372 LY_CHECK_GOTO(ret = lyd_create_inner(schema, &node), cleanup);
1373 break;
1374 case LYS_LEAFLIST:
Radek Krejci092e33c2020-10-12 15:33:10 +02001375 if ((options & LYD_NEW_PATH_OPAQ) && (p[path_idx].pred_type == LY_PATH_PREDTYPE_NONE)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001376 /* creating opaque leaf-list without value */
Michal Vasko501af032020-11-11 20:27:44 +01001377 LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), NULL, 0,
1378 schema->module->name, strlen(schema->module->name), NULL, 0, NULL, LY_PREF_JSON, NULL,
1379 LYD_NODEHINT_LEAFLIST, &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001380 } else {
1381 assert(p[path_idx].pred_type == LY_PATH_PREDTYPE_LEAFLIST);
1382 LY_CHECK_GOTO(ret = lyd_create_term2(schema, &p[path_idx].predicates[0].value, &node), cleanup);
1383 }
1384 break;
1385 case LYS_LEAF:
Michal Vasko35880332020-12-08 13:08:12 +01001386 if (lysc_is_key(schema)) {
1387 /* it must have been already created or some error will occur later */
1388 assert(cur_parent);
1389 node = lyd_child(cur_parent);
1390 assert(node && (node->schema == schema));
1391 goto next_iter;
1392 }
1393
1394 /* make sure there is some value */
Michal Vasko00cbf532020-06-15 13:58:47 +02001395 if (!value) {
1396 value = "";
1397 }
1398
1399 r = LY_SUCCESS;
Radek Krejci092e33c2020-10-12 15:33:10 +02001400 if (options & LYD_NEW_PATH_OPAQ) {
Michal Vaskof937cfe2020-08-03 16:07:12 +02001401 r = lys_value_validate(NULL, schema, value, strlen(value));
Michal Vasko00cbf532020-06-15 13:58:47 +02001402 }
1403 if (!r) {
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001404 ret = lyd_create_term(schema, value, strlen(value), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, NULL, &node);
1405 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001406 } else {
1407 /* creating opaque leaf without value */
Michal Vasko501af032020-11-11 20:27:44 +01001408 LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), NULL, 0, schema->module->name,
1409 strlen(schema->module->name), NULL, 0, NULL, LY_PREF_JSON, NULL, 0, &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001410 }
1411 break;
1412 case LYS_ANYDATA:
1413 case LYS_ANYXML:
Michal Vasko366a4a12020-12-04 16:23:57 +01001414 LY_CHECK_GOTO(ret = lyd_create_any(schema, value, value_type, 0, &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001415 break;
1416 default:
1417 LOGINT(ctx);
1418 ret = LY_EINT;
1419 goto cleanup;
1420 }
1421
1422 if (cur_parent) {
1423 /* connect to the parent */
1424 lyd_insert_node(cur_parent, NULL, node);
1425 } else if (parent) {
1426 /* connect to top-level siblings */
1427 lyd_insert_node(NULL, &parent, node);
1428 }
1429
Michal Vasko35880332020-12-08 13:08:12 +01001430next_iter:
Michal Vasko00cbf532020-06-15 13:58:47 +02001431 /* update remembered nodes */
1432 if (!nparent) {
1433 nparent = node;
1434 }
1435 nnode = node;
1436 }
1437
1438cleanup:
1439 lyxp_expr_free(ctx, exp);
1440 ly_path_free(ctx, p);
1441 if (!ret) {
1442 /* set out params only on success */
1443 if (new_parent) {
1444 *new_parent = nparent;
1445 }
1446 if (new_node) {
1447 *new_node = nnode;
1448 }
Michal Vaskof4b95ba2020-12-11 08:42:33 +01001449 } else {
1450 lyd_free_tree(nparent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001451 }
1452 return ret;
1453}
1454
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001455LY_ERR
1456lyd_new_implicit_r(struct lyd_node *parent, struct lyd_node **first, const struct lysc_node *sparent,
Radek Krejci1deb5be2020-08-26 16:43:36 +02001457 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 +02001458 struct lyd_node **diff)
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001459{
1460 LY_ERR ret;
Michal Vasko630d9892020-12-08 17:11:08 +01001461 const struct lysc_node *iter = NULL, *sp;
Radek Krejci2b18bf12020-11-06 11:20:20 +01001462 struct lyd_node *node = NULL;
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001463 struct lyd_value **dflts;
1464 LY_ARRAY_COUNT_TYPE u;
Michal Vasko630d9892020-12-08 17:11:08 +01001465 uint32_t getnext_opts;
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001466
1467 assert(first && (parent || sparent || mod));
1468
1469 if (!sparent && parent) {
1470 sparent = parent->schema;
1471 }
1472
Michal Vasko630d9892020-12-08 17:11:08 +01001473 for (sp = sparent; sp && !(sp->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)); sp = sp->parent) {}
1474 if (sp) {
1475 /* these options lose meaning in operations and could cause skipping some nodes
1476 * (because LYS_CONFIG* flags are set in the schema nodes with a different meaning) */
1477 impl_opts &= ~(LYD_IMPLICIT_NO_STATE | LYD_IMPLICIT_NO_CONFIG);
1478 }
1479
1480 getnext_opts = LYS_GETNEXT_WITHCHOICE;
1481 if (impl_opts & LYD_IMPLICIT_OUTPUT) {
1482 getnext_opts |= LYS_GETNEXT_OUTPUT;
1483 }
1484
1485 while ((iter = lys_getnext(iter, sparent, mod ? mod->compiled : NULL, getnext_opts))) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001486 if ((impl_opts & LYD_IMPLICIT_NO_STATE) && (iter->flags & LYS_CONFIG_R)) {
1487 continue;
Michal Vasko44b19a12020-08-07 09:21:30 +02001488 } else if ((impl_opts & LYD_IMPLICIT_NO_CONFIG) && (iter->flags & LYS_CONFIG_W)) {
1489 continue;
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001490 }
1491
1492 switch (iter->nodetype) {
1493 case LYS_CHOICE:
Michal Vaskobcf4d7d2020-11-18 18:16:49 +01001494 node = lys_getnext_data(NULL, *first, NULL, iter, NULL);
1495 if (!node && ((struct lysc_node_choice *)iter)->dflt) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001496 /* create default case data */
1497 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 +02001498 NULL, node_types, node_when, impl_opts, diff));
Michal Vaskobcf4d7d2020-11-18 18:16:49 +01001499 } else if (node) {
1500 /* create any default data in the existing case */
1501 assert(node->schema->parent->nodetype == LYS_CASE);
1502 LY_CHECK_RET(lyd_new_implicit_r(parent, first, node->schema->parent, NULL, node_types, node_when,
1503 impl_opts, diff));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001504 }
1505 break;
1506 case LYS_CONTAINER:
1507 if (!(iter->flags & LYS_PRESENCE) && lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
1508 /* create default NP container */
1509 LY_CHECK_RET(lyd_create_inner(iter, &node));
Michal Vasko0cadfcb2020-11-04 17:17:05 +01001510 node->flags = LYD_DEFAULT | (node->schema->when ? LYD_WHEN_TRUE : 0);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001511 lyd_insert_node(parent, first, node);
1512
1513 /* cannot be a NP container with when */
1514 assert(!iter->when);
1515
Michal Vaskoe49b6322020-11-05 17:38:36 +01001516 if (diff) {
1517 /* add into diff */
1518 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff));
1519 }
1520
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001521 /* create any default children */
1522 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 +02001523 impl_opts, diff));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001524 }
1525 break;
1526 case LYS_LEAF:
Michal Vasko69730152020-10-09 16:30:07 +02001527 if (!(impl_opts & LYD_IMPLICIT_NO_DEFAULTS) && ((struct lysc_node_leaf *)iter)->dflt &&
1528 lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001529 /* create default leaf */
1530 ret = lyd_create_term2(iter, ((struct lysc_node_leaf *)iter)->dflt, &node);
1531 if (ret == LY_EINCOMPLETE) {
1532 if (node_types) {
1533 /* remember to resolve type */
Radek Krejci3d92e442020-10-12 12:48:13 +02001534 LY_CHECK_RET(ly_set_add(node_types, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001535 }
1536 } else if (ret) {
1537 return ret;
1538 }
Michal Vasko0cadfcb2020-11-04 17:17:05 +01001539 node->flags = LYD_DEFAULT | (node->schema->when ? LYD_WHEN_TRUE : 0);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001540 lyd_insert_node(parent, first, node);
1541
1542 if (iter->when && node_when) {
1543 /* remember to resolve when */
Radek Krejci3d92e442020-10-12 12:48:13 +02001544 LY_CHECK_RET(ly_set_add(node_when, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001545 }
1546 if (diff) {
1547 /* add into diff */
1548 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff));
1549 }
1550 }
1551 break;
1552 case LYS_LEAFLIST:
Michal Vasko69730152020-10-09 16:30:07 +02001553 if (!(impl_opts & LYD_IMPLICIT_NO_DEFAULTS) && ((struct lysc_node_leaflist *)iter)->dflts &&
1554 lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001555 /* create all default leaf-lists */
1556 dflts = ((struct lysc_node_leaflist *)iter)->dflts;
1557 LY_ARRAY_FOR(dflts, u) {
1558 ret = lyd_create_term2(iter, dflts[u], &node);
1559 if (ret == LY_EINCOMPLETE) {
1560 if (node_types) {
1561 /* remember to resolve type */
Radek Krejci3d92e442020-10-12 12:48:13 +02001562 LY_CHECK_RET(ly_set_add(node_types, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001563 }
1564 } else if (ret) {
1565 return ret;
1566 }
Radek Krejcic5b54a02020-11-05 17:13:18 +01001567 node->flags = LYD_DEFAULT | (node->schema->when ? LYD_WHEN_TRUE : 0);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001568 lyd_insert_node(parent, first, node);
1569
1570 if (iter->when && node_when) {
1571 /* remember to resolve when */
Radek Krejci3d92e442020-10-12 12:48:13 +02001572 LY_CHECK_RET(ly_set_add(node_when, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001573 }
1574 if (diff) {
1575 /* add into diff */
1576 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff));
1577 }
1578 }
1579 }
1580 break;
1581 default:
1582 /* without defaults */
1583 break;
1584 }
1585 }
1586
1587 return LY_SUCCESS;
1588}
1589
1590API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001591lyd_new_implicit_tree(struct lyd_node *tree, uint32_t implicit_options, struct lyd_node **diff)
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001592{
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001593 LY_ERR ret = LY_SUCCESS;
Michal Vasko3488ada2020-12-03 14:18:19 +01001594 struct lyd_node *node;
1595 struct ly_set node_when = {0};
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001596
1597 LY_CHECK_ARG_RET(NULL, tree, LY_EINVAL);
1598 if (diff) {
1599 *diff = NULL;
1600 }
1601
Michal Vasko56daf732020-08-10 10:57:18 +02001602 LYD_TREE_DFS_BEGIN(tree, node) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001603 /* skip added default nodes */
Michal Vasko69730152020-10-09 16:30:07 +02001604 if (((node->flags & (LYD_DEFAULT | LYD_NEW)) != (LYD_DEFAULT | LYD_NEW)) &&
1605 (node->schema->nodetype & LYD_NODE_INNER)) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001606 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 +01001607 &node_when, implicit_options, diff), cleanup);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001608 }
1609
Michal Vasko56daf732020-08-10 10:57:18 +02001610 LYD_TREE_DFS_END(tree, node);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001611 }
1612
Michal Vasko3488ada2020-12-03 14:18:19 +01001613 /* resolve when and remove any invalid defaults */
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001614 LY_CHECK_GOTO(ret = lyd_validate_unres(&tree, NULL, &node_when, NULL, NULL, diff), cleanup);
Michal Vasko3488ada2020-12-03 14:18:19 +01001615
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001616cleanup:
Michal Vasko3488ada2020-12-03 14:18:19 +01001617 ly_set_erase(&node_when, NULL);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001618 if (ret && diff) {
1619 lyd_free_all(*diff);
1620 *diff = NULL;
1621 }
1622 return ret;
1623}
1624
1625API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001626lyd_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 +02001627{
1628 const struct lys_module *mod;
1629 struct lyd_node *d = NULL;
1630 uint32_t i = 0;
1631 LY_ERR ret = LY_SUCCESS;
1632
1633 LY_CHECK_ARG_RET(ctx, tree, *tree || ctx, LY_EINVAL);
1634 if (diff) {
1635 *diff = NULL;
1636 }
1637 if (!ctx) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001638 ctx = LYD_CTX(*tree);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001639 }
1640
1641 /* add nodes for each module one-by-one */
1642 while ((mod = ly_ctx_get_module_iter(ctx, &i))) {
1643 if (!mod->implemented) {
1644 continue;
1645 }
1646
1647 LY_CHECK_GOTO(ret = lyd_new_implicit_module(tree, mod, implicit_options, diff ? &d : NULL), cleanup);
1648 if (d) {
1649 /* merge into one diff */
1650 lyd_insert_sibling(*diff, d, diff);
1651
1652 d = NULL;
1653 }
1654 }
1655
1656cleanup:
1657 if (ret && diff) {
1658 lyd_free_all(*diff);
1659 *diff = NULL;
1660 }
1661 return ret;
1662}
1663
1664API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001665lyd_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 +02001666{
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001667 LY_ERR ret = LY_SUCCESS;
Michal Vasko3488ada2020-12-03 14:18:19 +01001668 struct lyd_node *root, *d = NULL;
1669 struct ly_set node_when = {0};
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001670
1671 LY_CHECK_ARG_RET(NULL, tree, module, LY_EINVAL);
1672 if (diff) {
1673 *diff = NULL;
1674 }
1675
1676 /* add all top-level defaults for this module */
Michal Vasko3488ada2020-12-03 14:18:19 +01001677 LY_CHECK_GOTO(ret = lyd_new_implicit_r(NULL, tree, NULL, module, NULL, &node_when, implicit_options, diff), cleanup);
1678
1679 /* resolve when and remove any invalid defaults */
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001680 LY_CHECK_GOTO(ret = lyd_validate_unres(tree, module, &node_when, NULL, NULL, diff), cleanup);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001681
1682 /* process nested nodes */
1683 LY_LIST_FOR(*tree, root) {
1684 /* skip added default nodes */
1685 if ((root->flags & (LYD_DEFAULT | LYD_NEW)) != (LYD_DEFAULT | LYD_NEW)) {
1686 LY_CHECK_GOTO(ret = lyd_new_implicit_tree(root, implicit_options, diff ? &d : NULL), cleanup);
1687
1688 if (d) {
1689 /* merge into one diff */
1690 lyd_insert_sibling(*diff, d, diff);
1691
1692 d = NULL;
1693 }
1694 }
1695 }
1696
1697cleanup:
Michal Vasko3488ada2020-12-03 14:18:19 +01001698 ly_set_erase(&node_when, NULL);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001699 if (ret && diff) {
1700 lyd_free_all(*diff);
1701 *diff = NULL;
1702 }
1703 return ret;
1704}
1705
Michal Vasko90932a92020-02-12 14:33:03 +01001706struct lyd_node *
Michal Vaskob104f112020-07-17 09:54:54 +02001707lyd_insert_get_next_anchor(const struct lyd_node *first_sibling, const struct lyd_node *new_node)
Michal Vasko90932a92020-02-12 14:33:03 +01001708{
Michal Vaskob104f112020-07-17 09:54:54 +02001709 const struct lysc_node *schema, *sparent;
Michal Vasko90932a92020-02-12 14:33:03 +01001710 struct lyd_node *match = NULL;
Radek Krejci857189e2020-09-01 13:26:36 +02001711 ly_bool found;
Michal Vasko93b16062020-12-09 18:14:18 +01001712 uint32_t getnext_opts;
Michal Vasko90932a92020-02-12 14:33:03 +01001713
Michal Vaskob104f112020-07-17 09:54:54 +02001714 assert(new_node);
1715
1716 if (!first_sibling || !new_node->schema) {
1717 /* insert at the end, no next anchor */
Michal Vasko90932a92020-02-12 14:33:03 +01001718 return NULL;
1719 }
1720
Michal Vasko93b16062020-12-09 18:14:18 +01001721 getnext_opts = 0;
1722 if (new_node->schema->flags & LYS_CONFIG_R) {
1723 getnext_opts = LYS_GETNEXT_OUTPUT;
1724 }
1725
Michal Vaskob104f112020-07-17 09:54:54 +02001726 if (first_sibling->parent && first_sibling->parent->children_ht) {
1727 /* find the anchor using hashes */
1728 sparent = first_sibling->parent->schema;
Michal Vasko93b16062020-12-09 18:14:18 +01001729 schema = lys_getnext(new_node->schema, sparent, NULL, getnext_opts);
Michal Vaskob104f112020-07-17 09:54:54 +02001730 while (schema) {
1731 /* keep trying to find the first existing instance of the closest following schema sibling,
1732 * otherwise return NULL - inserting at the end */
1733 if (!lyd_find_sibling_schema(first_sibling, schema, &match)) {
1734 break;
1735 }
1736
Michal Vasko93b16062020-12-09 18:14:18 +01001737 schema = lys_getnext(schema, sparent, NULL, getnext_opts);
Michal Vaskob104f112020-07-17 09:54:54 +02001738 }
1739 } else {
1740 /* find the anchor without hashes */
1741 match = (struct lyd_node *)first_sibling;
1742 if (!lysc_data_parent(new_node->schema)) {
1743 /* we are in top-level, skip all the data from preceding modules */
1744 LY_LIST_FOR(match, match) {
1745 if (!match->schema || (strcmp(lyd_owner_module(match)->name, lyd_owner_module(new_node)->name) >= 0)) {
1746 break;
1747 }
1748 }
1749 }
1750
1751 /* get the first schema sibling */
1752 sparent = lysc_data_parent(new_node->schema);
Michal Vasko93b16062020-12-09 18:14:18 +01001753 schema = lys_getnext(NULL, sparent, new_node->schema->module->compiled, getnext_opts);
Michal Vaskob104f112020-07-17 09:54:54 +02001754
1755 found = 0;
1756 LY_LIST_FOR(match, match) {
1757 if (!match->schema || (lyd_owner_module(match) != lyd_owner_module(new_node))) {
1758 /* we have found an opaque node, which must be at the end, so use it OR
1759 * modules do not match, so we must have traversed all the data from new_node module (if any),
1760 * we have found the first node of the next module, that is what we want */
1761 break;
1762 }
1763
1764 /* skip schema nodes until we find the instantiated one */
1765 while (!found) {
1766 if (new_node->schema == schema) {
1767 /* we have found the schema of the new node, continue search to find the first
1768 * data node with a different schema (after our schema) */
1769 found = 1;
1770 break;
1771 }
1772 if (match->schema == schema) {
1773 /* current node (match) is a data node still before the new node, continue search in data */
1774 break;
1775 }
Michal Vasko93b16062020-12-09 18:14:18 +01001776 schema = lys_getnext(schema, sparent, new_node->schema->module->compiled, getnext_opts);
Michal Vaskob104f112020-07-17 09:54:54 +02001777 assert(schema);
1778 }
1779
1780 if (found && (match->schema != new_node->schema)) {
1781 /* find the next node after we have found our node schema data instance */
1782 break;
1783 }
1784 }
Michal Vasko90932a92020-02-12 14:33:03 +01001785 }
1786
1787 return match;
1788}
1789
1790/**
1791 * @brief Insert node after a sibling.
1792 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001793 * Handles inserting into NP containers and key-less lists.
1794 *
Michal Vasko90932a92020-02-12 14:33:03 +01001795 * @param[in] sibling Sibling to insert after.
1796 * @param[in] node Node to insert.
1797 */
1798static void
Michal Vaskof03ed032020-03-04 13:31:44 +01001799lyd_insert_after_node(struct lyd_node *sibling, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001800{
Michal Vasko0249f7c2020-03-05 16:36:40 +01001801 struct lyd_node_inner *par;
1802
Michal Vasko90932a92020-02-12 14:33:03 +01001803 assert(!node->next && (node->prev == node));
1804
1805 node->next = sibling->next;
1806 node->prev = sibling;
1807 sibling->next = node;
1808 if (node->next) {
1809 /* sibling had a succeeding node */
1810 node->next->prev = node;
1811 } else {
1812 /* sibling was last, find first sibling and change its prev */
1813 if (sibling->parent) {
1814 sibling = sibling->parent->child;
1815 } else {
Michal Vaskod989ba02020-08-24 10:59:24 +02001816 for ( ; sibling->prev->next != node; sibling = sibling->prev) {}
Michal Vasko90932a92020-02-12 14:33:03 +01001817 }
1818 sibling->prev = node;
1819 }
1820 node->parent = sibling->parent;
Michal Vasko0249f7c2020-03-05 16:36:40 +01001821
Michal Vasko9f96a052020-03-10 09:41:45 +01001822 for (par = node->parent; par; par = par->parent) {
1823 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
1824 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01001825 par->flags &= ~LYD_DEFAULT;
1826 }
Michal Vaskob104f112020-07-17 09:54:54 +02001827 if (par->schema && (par->schema->nodetype == LYS_LIST) && (par->schema->flags & LYS_KEYLESS)) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001828 /* rehash key-less list */
1829 lyd_hash((struct lyd_node *)par);
1830 }
Michal Vasko0249f7c2020-03-05 16:36:40 +01001831 }
Michal Vasko90932a92020-02-12 14:33:03 +01001832}
1833
1834/**
1835 * @brief Insert node before a sibling.
1836 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001837 * Handles inserting into NP containers and key-less lists.
1838 *
Michal Vasko90932a92020-02-12 14:33:03 +01001839 * @param[in] sibling Sibling to insert before.
1840 * @param[in] node Node to insert.
1841 */
1842static void
Michal Vaskof03ed032020-03-04 13:31:44 +01001843lyd_insert_before_node(struct lyd_node *sibling, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001844{
Michal Vasko0249f7c2020-03-05 16:36:40 +01001845 struct lyd_node_inner *par;
1846
Michal Vasko90932a92020-02-12 14:33:03 +01001847 assert(!node->next && (node->prev == node));
1848
1849 node->next = sibling;
1850 /* covers situation of sibling being first */
1851 node->prev = sibling->prev;
1852 sibling->prev = node;
1853 if (node->prev->next) {
1854 /* sibling had a preceding node */
1855 node->prev->next = node;
1856 } else if (sibling->parent) {
1857 /* sibling was first and we must also change parent child pointer */
1858 sibling->parent->child = node;
1859 }
1860 node->parent = sibling->parent;
Michal Vasko0249f7c2020-03-05 16:36:40 +01001861
Michal Vasko9f96a052020-03-10 09:41:45 +01001862 for (par = node->parent; par; par = par->parent) {
1863 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
1864 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01001865 par->flags &= ~LYD_DEFAULT;
1866 }
Michal Vaskob104f112020-07-17 09:54:54 +02001867 if (par->schema && (par->schema->nodetype == LYS_LIST) && (par->schema->flags & LYS_KEYLESS)) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001868 /* rehash key-less list */
1869 lyd_hash((struct lyd_node *)par);
1870 }
Michal Vasko0249f7c2020-03-05 16:36:40 +01001871 }
Michal Vasko90932a92020-02-12 14:33:03 +01001872}
1873
1874/**
Michal Vaskob104f112020-07-17 09:54:54 +02001875 * @brief Insert node as the first and only child of a parent.
Michal Vasko90932a92020-02-12 14:33:03 +01001876 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001877 * Handles inserting into NP containers and key-less lists.
1878 *
Michal Vasko90932a92020-02-12 14:33:03 +01001879 * @param[in] parent Parent to insert into.
1880 * @param[in] node Node to insert.
1881 */
1882static void
Michal Vaskob104f112020-07-17 09:54:54 +02001883lyd_insert_only_child(struct lyd_node *parent, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001884{
1885 struct lyd_node_inner *par;
1886
Radek Krejcia1c1e542020-09-29 16:06:52 +02001887 assert(parent && !lyd_child(parent) && !node->next && (node->prev == node));
Michal Vasko52927e22020-03-16 17:26:14 +01001888 assert(!parent->schema || (parent->schema->nodetype & LYD_NODE_INNER));
Michal Vasko90932a92020-02-12 14:33:03 +01001889
1890 par = (struct lyd_node_inner *)parent;
1891
Michal Vaskob104f112020-07-17 09:54:54 +02001892 par->child = node;
Michal Vasko90932a92020-02-12 14:33:03 +01001893 node->parent = par;
Michal Vasko0249f7c2020-03-05 16:36:40 +01001894
Michal Vaskod989ba02020-08-24 10:59:24 +02001895 for ( ; par; par = par->parent) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001896 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
1897 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01001898 par->flags &= ~LYD_DEFAULT;
1899 }
Michal Vasko52927e22020-03-16 17:26:14 +01001900 if (par->schema && (par->schema->nodetype == LYS_LIST) && (par->schema->flags & LYS_KEYLESS)) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001901 /* rehash key-less list */
1902 lyd_hash((struct lyd_node *)par);
1903 }
Michal Vasko0249f7c2020-03-05 16:36:40 +01001904 }
Michal Vasko751cb4d2020-07-14 12:25:28 +02001905}
Michal Vasko0249f7c2020-03-05 16:36:40 +01001906
Michal Vasko751cb4d2020-07-14 12:25:28 +02001907/**
1908 * @brief Learn whether a list instance has all the keys.
1909 *
1910 * @param[in] list List instance to check.
1911 * @return non-zero if all the keys were found,
1912 * @return 0 otherwise.
1913 */
1914static int
1915lyd_insert_has_keys(const struct lyd_node *list)
1916{
1917 const struct lyd_node *key;
1918 const struct lysc_node *skey = NULL;
1919
1920 assert(list->schema->nodetype == LYS_LIST);
Radek Krejcia1c1e542020-09-29 16:06:52 +02001921 key = lyd_child(list);
Michal Vasko751cb4d2020-07-14 12:25:28 +02001922 while ((skey = lys_getnext(skey, list->schema, NULL, 0)) && (skey->flags & LYS_KEY)) {
1923 if (!key || (key->schema != skey)) {
1924 /* key missing */
1925 return 0;
1926 }
1927
1928 key = key->next;
1929 }
1930
1931 /* all keys found */
1932 return 1;
Michal Vasko90932a92020-02-12 14:33:03 +01001933}
1934
1935void
Michal Vaskob104f112020-07-17 09:54:54 +02001936lyd_insert_node(struct lyd_node *parent, struct lyd_node **first_sibling_p, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001937{
Michal Vaskob104f112020-07-17 09:54:54 +02001938 struct lyd_node *anchor, *first_sibling;
Michal Vasko90932a92020-02-12 14:33:03 +01001939
Michal Vaskob104f112020-07-17 09:54:54 +02001940 /* inserting list without its keys is not supported */
1941 assert((parent || first_sibling_p) && node && (node->hash || !node->schema));
Michal Vaskof756c942020-11-06 17:21:37 +01001942 assert(!parent || !parent->schema ||
1943 (parent->schema->nodetype & (LYS_CONTAINER | LYS_LIST | LYS_RPC | LYS_ACTION | LYS_NOTIF)));
Michal Vasko9b368d32020-02-14 13:53:31 +01001944
Michal Vaskob104f112020-07-17 09:54:54 +02001945 if (!parent && first_sibling_p && (*first_sibling_p) && (*first_sibling_p)->parent) {
1946 parent = (struct lyd_node *)(*first_sibling_p)->parent;
Michal Vasko9b368d32020-02-14 13:53:31 +01001947 }
Michal Vasko90932a92020-02-12 14:33:03 +01001948
Michal Vaskob104f112020-07-17 09:54:54 +02001949 /* get first sibling */
1950 first_sibling = parent ? ((struct lyd_node_inner *)parent)->child : *first_sibling_p;
Michal Vasko9f96a052020-03-10 09:41:45 +01001951
Michal Vaskob104f112020-07-17 09:54:54 +02001952 /* find the anchor, our next node, so we can insert before it */
1953 anchor = lyd_insert_get_next_anchor(first_sibling, node);
1954 if (anchor) {
1955 lyd_insert_before_node(anchor, node);
Michal Vasko26123192020-11-09 21:02:34 +01001956 if (!parent && (*first_sibling_p == anchor)) {
1957 /* move first sibling */
1958 *first_sibling_p = node;
1959 }
Michal Vaskob104f112020-07-17 09:54:54 +02001960 } else if (first_sibling) {
1961 lyd_insert_after_node(first_sibling->prev, node);
1962 } else if (parent) {
1963 lyd_insert_only_child(parent, node);
Michal Vasko90932a92020-02-12 14:33:03 +01001964 } else {
Michal Vaskob104f112020-07-17 09:54:54 +02001965 *first_sibling_p = node;
1966 }
1967
1968 /* insert into parent HT */
1969 lyd_insert_hash(node);
1970
1971 /* finish hashes for our parent, if needed and possible */
Michal Vasko9e8de2d2020-09-01 08:17:10 +02001972 if (node->schema && (node->schema->flags & LYS_KEY) && parent && lyd_insert_has_keys(parent)) {
Michal Vaskob104f112020-07-17 09:54:54 +02001973 lyd_hash(parent);
1974
1975 /* now we can insert even the list into its parent HT */
1976 lyd_insert_hash(parent);
Michal Vasko90932a92020-02-12 14:33:03 +01001977 }
Michal Vasko90932a92020-02-12 14:33:03 +01001978}
1979
Michal Vasko717a4c32020-12-07 09:40:10 +01001980/**
1981 * @brief Check schema place of a node to be inserted.
1982 *
1983 * @param[in] parent Schema node of the parent data node.
1984 * @param[in] sibling Schema node of a sibling data node.
1985 * @param[in] schema Schema node if the data node to be inserted.
1986 * @return LY_SUCCESS on success.
1987 * @return LY_EINVAL if the place is invalid.
1988 */
Michal Vaskof03ed032020-03-04 13:31:44 +01001989static LY_ERR
Michal Vasko717a4c32020-12-07 09:40:10 +01001990lyd_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 +01001991{
1992 const struct lysc_node *par2;
1993
Michal Vasko62ed12d2020-05-21 10:08:25 +02001994 assert(!parent || !(parent->nodetype & (LYS_CASE | LYS_CHOICE)));
Michal Vasko717a4c32020-12-07 09:40:10 +01001995 assert(!sibling || !(sibling->nodetype & (LYS_CASE | LYS_CHOICE)));
1996 assert(!schema || !(schema->nodetype & (LYS_CASE | LYS_CHOICE)));
Michal Vaskof03ed032020-03-04 13:31:44 +01001997
Michal Vasko717a4c32020-12-07 09:40:10 +01001998 if (!schema || (!parent && !sibling)) {
Michal Vasko71e795e2020-12-04 16:27:37 +01001999 /* opaque nodes can be inserted wherever */
2000 return LY_SUCCESS;
2001 }
2002
Michal Vasko717a4c32020-12-07 09:40:10 +01002003 if (!parent) {
2004 parent = lysc_data_parent(sibling);
2005 }
2006
Michal Vaskof03ed032020-03-04 13:31:44 +01002007 /* find schema parent */
Michal Vasko62ed12d2020-05-21 10:08:25 +02002008 par2 = lysc_data_parent(schema);
Michal Vaskof03ed032020-03-04 13:31:44 +01002009
2010 if (parent) {
2011 /* inner node */
2012 if (par2 != parent) {
Michal Vaskob104f112020-07-17 09:54:54 +02002013 LOGERR(schema->module->ctx, LY_EINVAL, "Cannot insert, parent of \"%s\" is not \"%s\".", schema->name,
Michal Vasko69730152020-10-09 16:30:07 +02002014 parent->name);
Michal Vaskof03ed032020-03-04 13:31:44 +01002015 return LY_EINVAL;
2016 }
2017 } else {
2018 /* top-level node */
2019 if (par2) {
Radek Krejcif6d14cb2020-07-02 16:11:45 +02002020 LOGERR(schema->module->ctx, LY_EINVAL, "Cannot insert, node \"%s\" is not top-level.", schema->name);
Michal Vaskof03ed032020-03-04 13:31:44 +01002021 return LY_EINVAL;
2022 }
2023 }
2024
2025 return LY_SUCCESS;
2026}
2027
2028API LY_ERR
Michal Vaskob104f112020-07-17 09:54:54 +02002029lyd_insert_child(struct lyd_node *parent, struct lyd_node *node)
Michal Vaskof03ed032020-03-04 13:31:44 +01002030{
2031 struct lyd_node *iter;
2032
Michal Vasko654bc852020-06-23 13:28:06 +02002033 LY_CHECK_ARG_RET(NULL, parent, node, parent->schema->nodetype & LYD_NODE_INNER, LY_EINVAL);
Michal Vaskof03ed032020-03-04 13:31:44 +01002034
Michal Vasko717a4c32020-12-07 09:40:10 +01002035 LY_CHECK_RET(lyd_insert_check_schema(parent->schema, NULL, node->schema));
Michal Vaskof03ed032020-03-04 13:31:44 +01002036
2037 if (node->schema->flags & LYS_KEY) {
2038 LOGERR(parent->schema->module->ctx, LY_EINVAL, "Cannot insert key \"%s\".", node->schema->name);
2039 return LY_EINVAL;
2040 }
2041
2042 if (node->parent || node->prev->next) {
2043 lyd_unlink_tree(node);
2044 }
2045
2046 while (node) {
2047 iter = node->next;
2048 lyd_unlink_tree(node);
2049 lyd_insert_node(parent, NULL, node);
2050 node = iter;
2051 }
2052 return LY_SUCCESS;
2053}
2054
2055API LY_ERR
Michal Vaskob104f112020-07-17 09:54:54 +02002056lyd_insert_sibling(struct lyd_node *sibling, struct lyd_node *node, struct lyd_node **first)
Michal Vaskob1b5c262020-03-05 14:29:47 +01002057{
2058 struct lyd_node *iter;
2059
Michal Vaskob104f112020-07-17 09:54:54 +02002060 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Michal Vaskob1b5c262020-03-05 14:29:47 +01002061
Michal Vaskob104f112020-07-17 09:54:54 +02002062 if (sibling) {
Michal Vasko717a4c32020-12-07 09:40:10 +01002063 LY_CHECK_RET(lyd_insert_check_schema(NULL, sibling->schema, node->schema));
Michal Vaskob1b5c262020-03-05 14:29:47 +01002064 }
2065
Michal Vasko553d0b52020-12-04 16:27:52 +01002066 if (sibling == node) {
2067 /* we need to keep the connection to siblings so we can insert into them */
2068 sibling = sibling->prev;
2069 }
2070
Michal Vaskob1b5c262020-03-05 14:29:47 +01002071 if (node->parent || node->prev->next) {
2072 lyd_unlink_tree(node);
2073 }
2074
2075 while (node) {
Michal Vasko71e795e2020-12-04 16:27:37 +01002076 if (lysc_is_key(node->schema)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002077 LOGERR(LYD_CTX(node), LY_EINVAL, "Cannot insert key \"%s\".", node->schema->name);
Michal Vaskob104f112020-07-17 09:54:54 +02002078 return LY_EINVAL;
2079 }
2080
Michal Vaskob1b5c262020-03-05 14:29:47 +01002081 iter = node->next;
2082 lyd_unlink_tree(node);
2083 lyd_insert_node(NULL, &sibling, node);
2084 node = iter;
2085 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01002086
Michal Vaskob104f112020-07-17 09:54:54 +02002087 if (first) {
2088 /* find the first sibling */
2089 *first = sibling;
2090 while ((*first)->prev->next) {
2091 *first = (*first)->prev;
Michal Vasko0249f7c2020-03-05 16:36:40 +01002092 }
2093 }
2094
2095 return LY_SUCCESS;
2096}
2097
Michal Vaskob1b5c262020-03-05 14:29:47 +01002098API LY_ERR
Michal Vaskof03ed032020-03-04 13:31:44 +01002099lyd_insert_before(struct lyd_node *sibling, struct lyd_node *node)
2100{
Michal Vaskof03ed032020-03-04 13:31:44 +01002101 LY_CHECK_ARG_RET(NULL, sibling, node, LY_EINVAL);
2102
Michal Vasko717a4c32020-12-07 09:40:10 +01002103 LY_CHECK_RET(lyd_insert_check_schema(NULL, sibling->schema, node->schema));
Michal Vaskof03ed032020-03-04 13:31:44 +01002104
Michal Vaskob104f112020-07-17 09:54:54 +02002105 if (!(node->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !(node->schema->flags & LYS_ORDBY_USER)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002106 LOGERR(LYD_CTX(sibling), LY_EINVAL, "Can be used only for user-ordered nodes.");
Michal Vaskof03ed032020-03-04 13:31:44 +01002107 return LY_EINVAL;
2108 }
2109
Michal Vasko4bc2ce32020-12-08 10:06:16 +01002110 lyd_unlink_tree(node);
2111 lyd_insert_before_node(sibling, node);
2112 lyd_insert_hash(node);
Michal Vaskof03ed032020-03-04 13:31:44 +01002113
Michal Vaskof03ed032020-03-04 13:31:44 +01002114 return LY_SUCCESS;
2115}
2116
2117API LY_ERR
2118lyd_insert_after(struct lyd_node *sibling, struct lyd_node *node)
2119{
Michal Vaskof03ed032020-03-04 13:31:44 +01002120 LY_CHECK_ARG_RET(NULL, sibling, node, LY_EINVAL);
2121
Michal Vasko717a4c32020-12-07 09:40:10 +01002122 LY_CHECK_RET(lyd_insert_check_schema(NULL, sibling->schema, node->schema));
Michal Vaskof03ed032020-03-04 13:31:44 +01002123
Michal Vaskob104f112020-07-17 09:54:54 +02002124 if (!(node->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !(node->schema->flags & LYS_ORDBY_USER)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002125 LOGERR(LYD_CTX(sibling), LY_EINVAL, "Can be used only for user-ordered nodes.");
Michal Vaskof03ed032020-03-04 13:31:44 +01002126 return LY_EINVAL;
2127 }
2128
Michal Vasko4bc2ce32020-12-08 10:06:16 +01002129 lyd_unlink_tree(node);
2130 lyd_insert_after_node(sibling, node);
2131 lyd_insert_hash(node);
Michal Vaskof03ed032020-03-04 13:31:44 +01002132
Michal Vaskof03ed032020-03-04 13:31:44 +01002133 return LY_SUCCESS;
2134}
2135
2136API void
2137lyd_unlink_tree(struct lyd_node *node)
2138{
2139 struct lyd_node *iter;
2140
2141 if (!node) {
2142 return;
2143 }
2144
Michal Vaskob104f112020-07-17 09:54:54 +02002145 /* update hashes while still linked into the tree */
2146 lyd_unlink_hash(node);
2147
Michal Vaskof03ed032020-03-04 13:31:44 +01002148 /* unlink from siblings */
2149 if (node->prev->next) {
2150 node->prev->next = node->next;
2151 }
2152 if (node->next) {
2153 node->next->prev = node->prev;
2154 } else {
2155 /* unlinking the last node */
2156 if (node->parent) {
2157 iter = node->parent->child;
2158 } else {
2159 iter = node->prev;
2160 while (iter->prev != node) {
2161 iter = iter->prev;
2162 }
2163 }
2164 /* update the "last" pointer from the first node */
2165 iter->prev = node->prev;
2166 }
2167
2168 /* unlink from parent */
2169 if (node->parent) {
2170 if (node->parent->child == node) {
2171 /* the node is the first child */
2172 node->parent->child = node->next;
2173 }
2174
Michal Vaskoab49dbe2020-07-17 12:32:47 +02002175 /* check for NP container whether its last non-default node is not being unlinked */
Michal Vasko69730152020-10-09 16:30:07 +02002176 if (node->parent->schema && (node->parent->schema->nodetype == LYS_CONTAINER) &&
2177 !(node->parent->flags & LYD_DEFAULT) && !(node->parent->schema->flags & LYS_PRESENCE)) {
Michal Vaskoab49dbe2020-07-17 12:32:47 +02002178 LY_LIST_FOR(node->parent->child, iter) {
2179 if ((iter != node) && !(iter->flags & LYD_DEFAULT)) {
2180 break;
2181 }
2182 }
2183 if (!iter) {
2184 node->parent->flags |= LYD_DEFAULT;
2185 }
2186 }
2187
Michal Vaskof03ed032020-03-04 13:31:44 +01002188 /* check for keyless list and update its hash */
2189 for (iter = (struct lyd_node *)node->parent; iter; iter = (struct lyd_node *)iter->parent) {
Michal Vasko413c7f22020-05-05 12:34:06 +02002190 if (iter->schema && (iter->schema->flags & LYS_KEYLESS)) {
Michal Vaskof03ed032020-03-04 13:31:44 +01002191 lyd_hash(iter);
2192 }
2193 }
2194
2195 node->parent = NULL;
2196 }
2197
2198 node->next = NULL;
2199 node->prev = node;
2200}
2201
Michal Vaskoa5da3292020-08-12 13:10:50 +02002202void
Michal Vasko871a0252020-11-11 18:35:24 +01002203lyd_insert_meta(struct lyd_node *parent, struct lyd_meta *meta, ly_bool clear_dflt)
Radek Krejci1798aae2020-07-14 13:26:06 +02002204{
2205 struct lyd_meta *last, *iter;
2206
2207 assert(parent);
Michal Vaskoa5da3292020-08-12 13:10:50 +02002208
2209 if (!meta) {
2210 return;
2211 }
Radek Krejci1798aae2020-07-14 13:26:06 +02002212
2213 for (iter = meta; iter; iter = iter->next) {
2214 iter->parent = parent;
2215 }
2216
2217 /* insert as the last attribute */
2218 if (parent->meta) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002219 for (last = parent->meta; last->next; last = last->next) {}
Radek Krejci1798aae2020-07-14 13:26:06 +02002220 last->next = meta;
2221 } else {
2222 parent->meta = meta;
2223 }
2224
2225 /* remove default flags from NP containers */
Michal Vasko871a0252020-11-11 18:35:24 +01002226 while (clear_dflt && parent && (parent->schema->nodetype == LYS_CONTAINER) && (parent->flags & LYD_DEFAULT)) {
Radek Krejci1798aae2020-07-14 13:26:06 +02002227 parent->flags &= ~LYD_DEFAULT;
2228 parent = (struct lyd_node *)parent->parent;
2229 }
Radek Krejci1798aae2020-07-14 13:26:06 +02002230}
2231
2232LY_ERR
Michal Vasko9f96a052020-03-10 09:41:45 +01002233lyd_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 +02002234 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 +01002235 void *prefix_data, uint32_t hints, ly_bool clear_dflt, ly_bool *incomplete)
Michal Vasko90932a92020-02-12 14:33:03 +01002236{
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002237 LY_ERR rc;
Michal Vasko90932a92020-02-12 14:33:03 +01002238 struct lysc_ext_instance *ant = NULL;
Michal Vasko9f96a052020-03-10 09:41:45 +01002239 struct lyd_meta *mt, *last;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002240 LY_ARRAY_COUNT_TYPE u;
Michal Vasko90932a92020-02-12 14:33:03 +01002241
Michal Vasko9f96a052020-03-10 09:41:45 +01002242 assert((parent || meta) && mod);
Michal Vasko6f4cbb62020-02-28 11:15:47 +01002243
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002244 LY_ARRAY_FOR(mod->compiled->exts, u) {
Michal Vasko69730152020-10-09 16:30:07 +02002245 if ((mod->compiled->exts[u].def->plugin == lyext_plugins_internal[LYEXT_PLUGIN_INTERNAL_ANNOTATION].plugin) &&
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002246 !ly_strncmp(mod->compiled->exts[u].argument, name, name_len)) {
Michal Vasko90932a92020-02-12 14:33:03 +01002247 /* we have the annotation definition */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002248 ant = &mod->compiled->exts[u];
Michal Vasko90932a92020-02-12 14:33:03 +01002249 break;
2250 }
2251 }
2252 if (!ant) {
2253 /* attribute is not defined as a metadata annotation (RFC 7952) */
2254 LOGERR(mod->ctx, LY_EINVAL, "Annotation definition for attribute \"%s:%.*s\" not found.",
2255 mod->name, name_len, name);
2256 return LY_EINVAL;
2257 }
2258
Michal Vasko9f96a052020-03-10 09:41:45 +01002259 mt = calloc(1, sizeof *mt);
2260 LY_CHECK_ERR_RET(!mt, LOGMEM(mod->ctx), LY_EMEM);
2261 mt->parent = parent;
2262 mt->annotation = ant;
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002263 rc = lyd_value_store(mod->ctx, &mt->value, ((struct lyext_metadata *)ant->data)->type, value, value_len, dynamic,
2264 format, prefix_data, hints, parent ? parent->schema : NULL, incomplete, LY_VLOG_NONE, NULL);
2265 LY_CHECK_ERR_RET(rc, free(mt), rc);
Radek Krejci011e4aa2020-09-04 15:22:31 +02002266 rc = lydict_insert(mod->ctx, name, name_len, &mt->name);
2267 LY_CHECK_ERR_RET(rc, free(mt), rc);
Michal Vasko90932a92020-02-12 14:33:03 +01002268
Michal Vasko6f4cbb62020-02-28 11:15:47 +01002269 /* insert as the last attribute */
2270 if (parent) {
Michal Vasko871a0252020-11-11 18:35:24 +01002271 lyd_insert_meta(parent, mt, clear_dflt);
Michal Vasko9f96a052020-03-10 09:41:45 +01002272 } else if (*meta) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002273 for (last = *meta; last->next; last = last->next) {}
Michal Vasko9f96a052020-03-10 09:41:45 +01002274 last->next = mt;
Michal Vasko90932a92020-02-12 14:33:03 +01002275 }
2276
Michal Vasko9f96a052020-03-10 09:41:45 +01002277 if (meta) {
2278 *meta = mt;
Michal Vasko90932a92020-02-12 14:33:03 +01002279 }
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002280 return LY_SUCCESS;
Michal Vasko90932a92020-02-12 14:33:03 +01002281}
2282
Michal Vaskoa5da3292020-08-12 13:10:50 +02002283void
2284lyd_insert_attr(struct lyd_node *parent, struct lyd_attr *attr)
2285{
2286 struct lyd_attr *last, *iter;
2287 struct lyd_node_opaq *opaq;
2288
2289 assert(parent && !parent->schema);
2290
2291 if (!attr) {
2292 return;
2293 }
2294
2295 opaq = (struct lyd_node_opaq *)parent;
2296 for (iter = attr; iter; iter = iter->next) {
2297 iter->parent = opaq;
2298 }
2299
2300 /* insert as the last attribute */
2301 if (opaq->attr) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002302 for (last = opaq->attr; last->next; last = last->next) {}
Michal Vaskoa5da3292020-08-12 13:10:50 +02002303 last->next = attr;
2304 } else {
2305 opaq->attr = attr;
2306 }
2307}
2308
Michal Vasko52927e22020-03-16 17:26:14 +01002309LY_ERR
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002310lyd_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 +01002311 const char *prefix, size_t prefix_len, const char *module_key, size_t module_key_len, const char *value,
2312 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 +01002313{
Radek Krejci011e4aa2020-09-04 15:22:31 +02002314 LY_ERR ret = LY_SUCCESS;
Radek Krejci1798aae2020-07-14 13:26:06 +02002315 struct lyd_attr *at, *last;
Michal Vasko52927e22020-03-16 17:26:14 +01002316
2317 assert(ctx && (parent || attr) && (!parent || !parent->schema));
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002318 assert(name && name_len && format);
Michal Vasko52927e22020-03-16 17:26:14 +01002319
2320 if (!value_len) {
2321 value = "";
2322 }
2323
2324 at = calloc(1, sizeof *at);
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01002325 LY_CHECK_ERR_RET(!at, LOGMEM(ctx); ly_free_prefix_data(format, val_prefix_data), LY_EMEM);
Radek Krejcid46e46a2020-09-15 14:22:42 +02002326
Michal Vaskoad92b672020-11-12 13:11:31 +01002327 LY_CHECK_GOTO(ret = lydict_insert(ctx, name, name_len, &at->name.name), finish);
Michal Vasko501af032020-11-11 20:27:44 +01002328 if (prefix_len) {
Michal Vaskoad92b672020-11-12 13:11:31 +01002329 LY_CHECK_GOTO(ret = lydict_insert(ctx, prefix, prefix_len, &at->name.prefix), finish);
Michal Vasko501af032020-11-11 20:27:44 +01002330 }
2331 if (module_key_len) {
Michal Vaskoad92b672020-11-12 13:11:31 +01002332 LY_CHECK_GOTO(ret = lydict_insert(ctx, module_key, module_key_len, &at->name.module_ns), finish);
Michal Vasko501af032020-11-11 20:27:44 +01002333 }
2334
Michal Vasko52927e22020-03-16 17:26:14 +01002335 if (dynamic && *dynamic) {
Radek Krejci011e4aa2020-09-04 15:22:31 +02002336 ret = lydict_insert_zc(ctx, (char *)value, &at->value);
2337 LY_CHECK_GOTO(ret, finish);
Michal Vasko52927e22020-03-16 17:26:14 +01002338 *dynamic = 0;
2339 } else {
Radek Krejci011e4aa2020-09-04 15:22:31 +02002340 LY_CHECK_GOTO(ret = lydict_insert(ctx, value, value_len, &at->value), finish);
Michal Vasko52927e22020-03-16 17:26:14 +01002341 }
Michal Vasko501af032020-11-11 20:27:44 +01002342 at->format = format;
2343 at->val_prefix_data = val_prefix_data;
2344 at->hints = hints;
Michal Vasko52927e22020-03-16 17:26:14 +01002345
2346 /* insert as the last attribute */
2347 if (parent) {
Michal Vaskoa5da3292020-08-12 13:10:50 +02002348 lyd_insert_attr(parent, at);
Michal Vasko52927e22020-03-16 17:26:14 +01002349 } else if (*attr) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002350 for (last = *attr; last->next; last = last->next) {}
Michal Vasko52927e22020-03-16 17:26:14 +01002351 last->next = at;
2352 }
2353
Radek Krejci011e4aa2020-09-04 15:22:31 +02002354finish:
2355 if (ret) {
2356 lyd_free_attr_single(ctx, at);
2357 } else if (attr) {
Michal Vasko52927e22020-03-16 17:26:14 +01002358 *attr = at;
2359 }
2360 return LY_SUCCESS;
2361}
2362
Radek Krejci084289f2019-07-09 17:35:30 +02002363API const struct lyd_node_term *
Michal Vasko004d3152020-06-11 19:59:22 +02002364lyd_target(const struct ly_path *path, const struct lyd_node *tree)
Radek Krejci084289f2019-07-09 17:35:30 +02002365{
Michal Vasko004d3152020-06-11 19:59:22 +02002366 struct lyd_node *target;
Radek Krejci084289f2019-07-09 17:35:30 +02002367
Michal Vasko004d3152020-06-11 19:59:22 +02002368 if (ly_path_eval(path, tree, &target)) {
2369 return NULL;
Radek Krejci084289f2019-07-09 17:35:30 +02002370 }
2371
Michal Vasko004d3152020-06-11 19:59:22 +02002372 return (struct lyd_node_term *)target;
Radek Krejci084289f2019-07-09 17:35:30 +02002373}
2374
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002375API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002376lyd_compare_single(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options)
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002377{
2378 const struct lyd_node *iter1, *iter2;
2379 struct lyd_node_term *term1, *term2;
2380 struct lyd_node_any *any1, *any2;
Michal Vasko52927e22020-03-16 17:26:14 +01002381 struct lyd_node_opaq *opaq1, *opaq2;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002382 size_t len1, len2;
Radek Krejci084289f2019-07-09 17:35:30 +02002383
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002384 if (!node1 || !node2) {
2385 if (node1 == node2) {
2386 return LY_SUCCESS;
2387 } else {
2388 return LY_ENOT;
2389 }
2390 }
2391
Michal Vaskob7be7a82020-08-20 09:09:04 +02002392 if ((LYD_CTX(node1) != LYD_CTX(node2)) || (node1->schema != node2->schema)) {
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002393 return LY_ENOT;
2394 }
2395
2396 if (node1->hash != node2->hash) {
2397 return LY_ENOT;
2398 }
Michal Vasko52927e22020-03-16 17:26:14 +01002399 /* 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 +02002400
Michal Vasko52927e22020-03-16 17:26:14 +01002401 if (!node1->schema) {
2402 opaq1 = (struct lyd_node_opaq *)node1;
2403 opaq2 = (struct lyd_node_opaq *)node2;
Michal Vaskoad92b672020-11-12 13:11:31 +01002404 if ((opaq1->name.name != opaq2->name.name) || (opaq1->format != opaq2->format) ||
2405 (opaq1->name.module_ns != opaq2->name.module_ns)) {
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002406 return LY_ENOT;
2407 }
Michal Vasko52927e22020-03-16 17:26:14 +01002408 switch (opaq1->format) {
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01002409 case LY_PREF_XML:
2410 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 +01002411 return LY_ENOT;
2412 }
2413 break;
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01002414 case LY_PREF_JSON:
Radek Krejci1798aae2020-07-14 13:26:06 +02002415 /* prefixes in JSON are unique, so it is not necessary to canonize the values */
2416 if (strcmp(opaq1->value, opaq2->value)) {
2417 return LY_ENOT;
2418 }
2419 break;
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01002420 default:
Michal Vasko52927e22020-03-16 17:26:14 +01002421 /* not allowed */
Michal Vaskob7be7a82020-08-20 09:09:04 +02002422 LOGINT(LYD_CTX(node1));
Michal Vasko52927e22020-03-16 17:26:14 +01002423 return LY_EINT;
2424 }
2425 if (options & LYD_COMPARE_FULL_RECURSION) {
2426 iter1 = opaq1->child;
2427 iter2 = opaq2->child;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002428 goto all_children_compare;
Michal Vasko52927e22020-03-16 17:26:14 +01002429 }
2430 return LY_SUCCESS;
2431 } else {
2432 switch (node1->schema->nodetype) {
2433 case LYS_LEAF:
2434 case LYS_LEAFLIST:
2435 if (options & LYD_COMPARE_DEFAULTS) {
2436 if ((node1->flags & LYD_DEFAULT) != (node2->flags & LYD_DEFAULT)) {
2437 return LY_ENOT;
2438 }
2439 }
2440
Michal Vasko1a2bf2e2020-06-16 13:07:48 +02002441 term1 = (struct lyd_node_term *)node1;
2442 term2 = (struct lyd_node_term *)node2;
2443 if (term1->value.realtype != term2->value.realtype) {
2444 return LY_ENOT;
2445 }
Michal Vasko52927e22020-03-16 17:26:14 +01002446
Michal Vasko1a2bf2e2020-06-16 13:07:48 +02002447 return term1->value.realtype->plugin->compare(&term1->value, &term2->value);
Michal Vasko52927e22020-03-16 17:26:14 +01002448 case LYS_CONTAINER:
2449 if (options & LYD_COMPARE_DEFAULTS) {
2450 if ((node1->flags & LYD_DEFAULT) != (node2->flags & LYD_DEFAULT)) {
2451 return LY_ENOT;
2452 }
2453 }
2454 if (options & LYD_COMPARE_FULL_RECURSION) {
Michal Vasko22df3f02020-08-24 13:29:22 +02002455 iter1 = ((struct lyd_node_inner *)node1)->child;
2456 iter2 = ((struct lyd_node_inner *)node2)->child;
Michal Vasko52927e22020-03-16 17:26:14 +01002457 goto all_children_compare;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002458 }
2459 return LY_SUCCESS;
Michal Vasko1bf09392020-03-27 12:38:10 +01002460 case LYS_RPC:
Michal Vasko52927e22020-03-16 17:26:14 +01002461 case LYS_ACTION:
2462 if (options & LYD_COMPARE_FULL_RECURSION) {
2463 /* TODO action/RPC
2464 goto all_children_compare;
2465 */
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002466 }
2467 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01002468 case LYS_NOTIF:
2469 if (options & LYD_COMPARE_FULL_RECURSION) {
2470 /* TODO Notification
2471 goto all_children_compare;
2472 */
2473 }
2474 return LY_SUCCESS;
2475 case LYS_LIST:
Michal Vasko22df3f02020-08-24 13:29:22 +02002476 iter1 = ((struct lyd_node_inner *)node1)->child;
2477 iter2 = ((struct lyd_node_inner *)node2)->child;
Michal Vasko52927e22020-03-16 17:26:14 +01002478
2479 if (!(node1->schema->flags & LYS_KEYLESS) && !(options & LYD_COMPARE_FULL_RECURSION)) {
2480 /* lists with keys, their equivalence is based on their keys */
Michal Vasko22df3f02020-08-24 13:29:22 +02002481 for (struct lysc_node *key = ((struct lysc_node_list *)node1->schema)->child;
Michal Vaskoc57d9a92020-06-23 13:28:27 +02002482 key && (key->flags & LYS_KEY);
Michal Vasko52927e22020-03-16 17:26:14 +01002483 key = key->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02002484 if (lyd_compare_single(iter1, iter2, options)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002485 return LY_ENOT;
2486 }
2487 iter1 = iter1->next;
2488 iter2 = iter2->next;
2489 }
2490 } else {
2491 /* lists without keys, their equivalence is based on equivalence of all the children (both direct and indirect) */
2492
Radek Krejci0f969882020-08-21 16:56:47 +02002493all_children_compare:
Michal Vasko52927e22020-03-16 17:26:14 +01002494 if (!iter1 && !iter2) {
2495 /* no children, nothing to compare */
2496 return LY_SUCCESS;
2497 }
2498
Michal Vaskod989ba02020-08-24 10:59:24 +02002499 for ( ; iter1 && iter2; iter1 = iter1->next, iter2 = iter2->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02002500 if (lyd_compare_single(iter1, iter2, options | LYD_COMPARE_FULL_RECURSION)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002501 return LY_ENOT;
2502 }
2503 }
2504 if (iter1 || iter2) {
2505 return LY_ENOT;
2506 }
2507 }
2508 return LY_SUCCESS;
2509 case LYS_ANYXML:
2510 case LYS_ANYDATA:
Michal Vasko22df3f02020-08-24 13:29:22 +02002511 any1 = (struct lyd_node_any *)node1;
2512 any2 = (struct lyd_node_any *)node2;
Michal Vasko52927e22020-03-16 17:26:14 +01002513
2514 if (any1->value_type != any2->value_type) {
2515 return LY_ENOT;
2516 }
2517 switch (any1->value_type) {
2518 case LYD_ANYDATA_DATATREE:
2519 iter1 = any1->value.tree;
2520 iter2 = any2->value.tree;
2521 goto all_children_compare;
2522 case LYD_ANYDATA_STRING:
2523 case LYD_ANYDATA_XML:
2524 case LYD_ANYDATA_JSON:
2525 len1 = strlen(any1->value.str);
2526 len2 = strlen(any2->value.str);
Michal Vasko69730152020-10-09 16:30:07 +02002527 if ((len1 != len2) || strcmp(any1->value.str, any2->value.str)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002528 return LY_ENOT;
2529 }
2530 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01002531 case LYD_ANYDATA_LYB:
Michal Vasko60ea6352020-06-29 13:39:39 +02002532 len1 = lyd_lyb_data_length(any1->value.mem);
2533 len2 = lyd_lyb_data_length(any2->value.mem);
Michal Vasko69730152020-10-09 16:30:07 +02002534 if ((len1 != len2) || memcmp(any1->value.mem, any2->value.mem, len1)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002535 return LY_ENOT;
2536 }
2537 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01002538 }
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002539 }
2540 }
2541
Michal Vaskob7be7a82020-08-20 09:09:04 +02002542 LOGINT(LYD_CTX(node1));
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002543 return LY_EINT;
2544}
Radek Krejci22ebdba2019-07-25 13:59:43 +02002545
Michal Vasko21725742020-06-29 11:49:25 +02002546API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002547lyd_compare_siblings(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options)
Michal Vasko8f359bf2020-07-28 10:41:15 +02002548{
Michal Vaskod989ba02020-08-24 10:59:24 +02002549 for ( ; node1 && node2; node1 = node1->next, node2 = node2->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02002550 LY_CHECK_RET(lyd_compare_single(node1, node2, options));
2551 }
2552
Michal Vasko11a81432020-07-28 16:31:29 +02002553 if (node1 == node2) {
2554 return LY_SUCCESS;
Michal Vasko8f359bf2020-07-28 10:41:15 +02002555 }
Michal Vasko11a81432020-07-28 16:31:29 +02002556 return LY_ENOT;
Michal Vasko8f359bf2020-07-28 10:41:15 +02002557}
2558
2559API LY_ERR
Michal Vasko21725742020-06-29 11:49:25 +02002560lyd_compare_meta(const struct lyd_meta *meta1, const struct lyd_meta *meta2)
2561{
2562 if (!meta1 || !meta2) {
2563 if (meta1 == meta2) {
2564 return LY_SUCCESS;
2565 } else {
2566 return LY_ENOT;
2567 }
2568 }
2569
Michal Vaskoa8083062020-11-06 17:22:10 +01002570 if ((meta1->annotation->module->ctx != meta2->annotation->module->ctx) || (meta1->annotation != meta2->annotation)) {
Michal Vasko21725742020-06-29 11:49:25 +02002571 return LY_ENOT;
2572 }
2573
2574 if (meta1->value.realtype != meta2->value.realtype) {
2575 return LY_ENOT;
2576 }
2577
2578 return meta1->value.realtype->plugin->compare(&meta1->value, &meta2->value);
2579}
2580
Radek Krejci22ebdba2019-07-25 13:59:43 +02002581/**
Michal Vasko52927e22020-03-16 17:26:14 +01002582 * @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 +02002583 *
2584 * 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 +02002585 *
2586 * @param[in] node Original node to duplicate
2587 * @param[in] parent Parent to insert into, NULL for top-level sibling.
2588 * @param[in,out] first First sibling, NULL if no top-level sibling exist yet. Can be also NULL if @p parent is set.
2589 * @param[in] options Bitmask of options flags, see @ref dupoptions.
2590 * @param[out] dup_p Pointer where the created duplicated node is placed (besides connecting it int @p parent / @p first sibling).
2591 * @return LY_ERR value
Radek Krejci22ebdba2019-07-25 13:59:43 +02002592 */
Michal Vasko52927e22020-03-16 17:26:14 +01002593static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002594lyd_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 +02002595 struct lyd_node **dup_p)
Radek Krejci22ebdba2019-07-25 13:59:43 +02002596{
Michal Vasko52927e22020-03-16 17:26:14 +01002597 LY_ERR ret;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002598 struct lyd_node *dup = NULL;
Michal Vasko61551fa2020-07-09 15:45:45 +02002599 struct lyd_meta *meta;
2600 struct lyd_node_any *any;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002601
Michal Vasko52927e22020-03-16 17:26:14 +01002602 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002603
Michal Vasko52927e22020-03-16 17:26:14 +01002604 if (!node->schema) {
2605 dup = calloc(1, sizeof(struct lyd_node_opaq));
2606 } else {
2607 switch (node->schema->nodetype) {
Michal Vasko1bf09392020-03-27 12:38:10 +01002608 case LYS_RPC:
Michal Vasko52927e22020-03-16 17:26:14 +01002609 case LYS_ACTION:
2610 case LYS_NOTIF:
2611 case LYS_CONTAINER:
2612 case LYS_LIST:
2613 dup = calloc(1, sizeof(struct lyd_node_inner));
2614 break;
2615 case LYS_LEAF:
2616 case LYS_LEAFLIST:
2617 dup = calloc(1, sizeof(struct lyd_node_term));
2618 break;
2619 case LYS_ANYDATA:
2620 case LYS_ANYXML:
2621 dup = calloc(1, sizeof(struct lyd_node_any));
2622 break;
2623 default:
Michal Vaskob7be7a82020-08-20 09:09:04 +02002624 LOGINT(LYD_CTX(node));
Michal Vasko52927e22020-03-16 17:26:14 +01002625 ret = LY_EINT;
2626 goto error;
2627 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02002628 }
Michal Vaskob7be7a82020-08-20 09:09:04 +02002629 LY_CHECK_ERR_GOTO(!dup, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002630
Michal Vaskof6df0a02020-06-16 13:08:34 +02002631 if (options & LYD_DUP_WITH_FLAGS) {
2632 dup->flags = node->flags;
2633 } else {
2634 dup->flags = (node->flags & LYD_DEFAULT) | LYD_NEW;
2635 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02002636 dup->schema = node->schema;
Michal Vasko52927e22020-03-16 17:26:14 +01002637 dup->prev = dup;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002638
Michal Vasko25a32822020-07-09 15:48:22 +02002639 /* duplicate metadata */
2640 if (!(options & LYD_DUP_NO_META)) {
2641 LY_LIST_FOR(node->meta, meta) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002642 LY_CHECK_GOTO(ret = lyd_dup_meta_single(meta, dup, NULL), error);
Michal Vasko25a32822020-07-09 15:48:22 +02002643 }
2644 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02002645
2646 /* nodetype-specific work */
Michal Vasko52927e22020-03-16 17:26:14 +01002647 if (!dup->schema) {
2648 struct lyd_node_opaq *opaq = (struct lyd_node_opaq *)dup;
2649 struct lyd_node_opaq *orig = (struct lyd_node_opaq *)node;
2650 struct lyd_node *child;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002651
2652 if (options & LYD_DUP_RECURSIVE) {
2653 /* duplicate all the children */
2654 LY_LIST_FOR(orig->child, child) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002655 LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, NULL, options, NULL), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002656 }
2657 }
Michal Vaskoad92b672020-11-12 13:11:31 +01002658 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->name.name, 0, &opaq->name.name), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002659 opaq->format = orig->format;
Michal Vaskoad92b672020-11-12 13:11:31 +01002660 if (orig->name.prefix) {
2661 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->name.prefix, 0, &opaq->name.prefix), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002662 }
Michal Vaskoad92b672020-11-12 13:11:31 +01002663 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 +01002664 if (orig->val_prefix_data) {
2665 ret = ly_dup_prefix_data(LYD_CTX(node), opaq->format, orig->val_prefix_data, &opaq->val_prefix_data);
2666 LY_CHECK_GOTO(ret, error);
Michal Vasko52927e22020-03-16 17:26:14 +01002667 }
Radek Krejci011e4aa2020-09-04 15:22:31 +02002668 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->value, 0, &opaq->value), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002669 opaq->ctx = orig->ctx;
2670 } else if (dup->schema->nodetype & LYD_NODE_TERM) {
2671 struct lyd_node_term *term = (struct lyd_node_term *)dup;
2672 struct lyd_node_term *orig = (struct lyd_node_term *)node;
2673
2674 term->hash = orig->hash;
Michal Vaskob7be7a82020-08-20 09:09:04 +02002675 LY_CHECK_ERR_GOTO(orig->value.realtype->plugin->duplicate(LYD_CTX(node), &orig->value, &term->value),
Michal Vasko69730152020-10-09 16:30:07 +02002676 LOGERR(LYD_CTX(node), LY_EINT, "Value duplication failed."); ret = LY_EINT, error);
Michal Vasko52927e22020-03-16 17:26:14 +01002677 } else if (dup->schema->nodetype & LYD_NODE_INNER) {
2678 struct lyd_node_inner *orig = (struct lyd_node_inner *)node;
2679 struct lyd_node *child;
2680
2681 if (options & LYD_DUP_RECURSIVE) {
2682 /* duplicate all the children */
2683 LY_LIST_FOR(orig->child, child) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002684 LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, NULL, options, NULL), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002685 }
Michal Vasko69730152020-10-09 16:30:07 +02002686 } else if ((dup->schema->nodetype == LYS_LIST) && !(dup->schema->flags & LYS_KEYLESS)) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02002687 /* always duplicate keys of a list */
Radek Krejci22ebdba2019-07-25 13:59:43 +02002688 child = orig->child;
Michal Vasko52927e22020-03-16 17:26:14 +01002689 for (struct lysc_node *key = ((struct lysc_node_list *)dup->schema)->child;
Michal Vaskoc57d9a92020-06-23 13:28:27 +02002690 key && (key->flags & LYS_KEY);
Radek Krejci0fe9b512019-07-26 17:51:05 +02002691 key = key->next) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02002692 if (!child) {
2693 /* possibly not keys are present in filtered tree */
2694 break;
Radek Krejci0fe9b512019-07-26 17:51:05 +02002695 } else if (child->schema != key) {
2696 /* possibly not all keys are present in filtered tree,
2697 * but there can be also some non-key nodes */
2698 continue;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002699 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002700 LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, NULL, options, NULL), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002701 child = child->next;
2702 }
2703 }
2704 lyd_hash(dup);
2705 } else if (dup->schema->nodetype & LYD_NODE_ANY) {
Michal Vasko61551fa2020-07-09 15:45:45 +02002706 dup->hash = node->hash;
2707 any = (struct lyd_node_any *)node;
2708 LY_CHECK_GOTO(ret = lyd_any_copy_value(dup, &any->value, any->value_type), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002709 }
2710
Michal Vasko52927e22020-03-16 17:26:14 +01002711 /* insert */
2712 lyd_insert_node(parent, first, dup);
Michal Vasko52927e22020-03-16 17:26:14 +01002713
2714 if (dup_p) {
2715 *dup_p = dup;
2716 }
2717 return LY_SUCCESS;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002718
2719error:
Michal Vasko52927e22020-03-16 17:26:14 +01002720 lyd_free_tree(dup);
2721 return ret;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002722}
2723
Michal Vasko3a41dff2020-07-15 14:30:28 +02002724static LY_ERR
2725lyd_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 +02002726 struct lyd_node_inner **local_parent)
Radek Krejci22ebdba2019-07-25 13:59:43 +02002727{
Michal Vasko3a41dff2020-07-15 14:30:28 +02002728 const struct lyd_node_inner *orig_parent, *iter;
Radek Krejci857189e2020-09-01 13:26:36 +02002729 ly_bool repeat = 1;
Michal Vasko3a41dff2020-07-15 14:30:28 +02002730
2731 *dup_parent = NULL;
2732 *local_parent = NULL;
2733
2734 for (orig_parent = node->parent; repeat && orig_parent; orig_parent = orig_parent->parent) {
2735 if (parent && (parent->schema == orig_parent->schema)) {
2736 /* stop creating parents, connect what we have into the provided parent */
2737 iter = parent;
2738 repeat = 0;
2739 } else {
2740 iter = NULL;
2741 LY_CHECK_RET(lyd_dup_r((struct lyd_node *)orig_parent, NULL, (struct lyd_node **)&iter, 0,
Radek Krejci0f969882020-08-21 16:56:47 +02002742 (struct lyd_node **)&iter));
Michal Vasko3a41dff2020-07-15 14:30:28 +02002743 }
2744 if (!*local_parent) {
2745 *local_parent = (struct lyd_node_inner *)iter;
2746 }
2747 if (iter->child) {
2748 /* 1) list - add after keys
2749 * 2) provided parent with some children */
2750 iter->child->prev->next = *dup_parent;
2751 if (*dup_parent) {
2752 (*dup_parent)->prev = iter->child->prev;
2753 iter->child->prev = *dup_parent;
2754 }
2755 } else {
2756 ((struct lyd_node_inner *)iter)->child = *dup_parent;
2757 }
2758 if (*dup_parent) {
2759 (*dup_parent)->parent = (struct lyd_node_inner *)iter;
2760 }
2761 *dup_parent = (struct lyd_node *)iter;
2762 }
2763
2764 if (repeat && parent) {
2765 /* given parent and created parents chain actually do not interconnect */
Michal Vaskob7be7a82020-08-20 09:09:04 +02002766 LOGERR(LYD_CTX(node), LY_EINVAL,
Michal Vasko69730152020-10-09 16:30:07 +02002767 "Invalid argument parent (%s()) - does not interconnect with the created node's parents chain.", __func__);
Michal Vasko3a41dff2020-07-15 14:30:28 +02002768 return LY_EINVAL;
2769 }
2770
2771 return LY_SUCCESS;
2772}
2773
2774static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02002775lyd_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 +02002776{
2777 LY_ERR rc;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002778 const struct lyd_node *orig; /* original node to be duplicated */
2779 struct lyd_node *first = NULL; /* the first duplicated node, this is returned */
Radek Krejci22ebdba2019-07-25 13:59:43 +02002780 struct lyd_node *top = NULL; /* the most higher created node */
2781 struct lyd_node_inner *local_parent = NULL; /* the direct parent node for the duplicated node(s) */
Radek Krejci22ebdba2019-07-25 13:59:43 +02002782
Michal Vasko3a41dff2020-07-15 14:30:28 +02002783 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002784
2785 if (options & LYD_DUP_WITH_PARENTS) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002786 LY_CHECK_GOTO(rc = lyd_dup_get_local_parent(node, parent, &top, &local_parent), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002787 } else {
2788 local_parent = parent;
2789 }
2790
Radek Krejci22ebdba2019-07-25 13:59:43 +02002791 LY_LIST_FOR(node, orig) {
Michal Vasko52927e22020-03-16 17:26:14 +01002792 /* if there is no local parent, it will be inserted into first */
Michal Vasko3a41dff2020-07-15 14:30:28 +02002793 LY_CHECK_GOTO(rc = lyd_dup_r(orig, (struct lyd_node *)local_parent, &first, options, first ? NULL : &first), error);
2794 if (nosiblings) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02002795 break;
2796 }
2797 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002798
2799 /* rehash if needed */
Michal Vaskod989ba02020-08-24 10:59:24 +02002800 for ( ; local_parent; local_parent = local_parent->parent) {
Michal Vasko69730152020-10-09 16:30:07 +02002801 if ((local_parent->schema->nodetype == LYS_LIST) && (local_parent->schema->flags & LYS_KEYLESS)) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002802 lyd_hash((struct lyd_node *)local_parent);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002803 }
2804 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002805
2806 if (dup) {
2807 *dup = first;
2808 }
2809 return LY_SUCCESS;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002810
2811error:
2812 if (top) {
2813 lyd_free_tree(top);
2814 } else {
Michal Vaskof03ed032020-03-04 13:31:44 +01002815 lyd_free_siblings(first);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002816 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002817 return rc;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002818}
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002819
Michal Vasko3a41dff2020-07-15 14:30:28 +02002820API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002821lyd_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 +02002822{
2823 return lyd_dup(node, parent, options, 1, dup);
2824}
2825
2826API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002827lyd_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 +02002828{
2829 return lyd_dup(node, parent, options, 0, dup);
2830}
2831
2832API LY_ERR
2833lyd_dup_meta_single(const struct lyd_meta *meta, struct lyd_node *node, struct lyd_meta **dup)
Michal Vasko25a32822020-07-09 15:48:22 +02002834{
Radek Krejci011e4aa2020-09-04 15:22:31 +02002835 LY_ERR ret = LY_SUCCESS;
Michal Vasko25a32822020-07-09 15:48:22 +02002836 struct lyd_meta *mt, *last;
2837
Michal Vasko3a41dff2020-07-15 14:30:28 +02002838 LY_CHECK_ARG_RET(NULL, meta, node, LY_EINVAL);
Michal Vasko25a32822020-07-09 15:48:22 +02002839
2840 /* create a copy */
2841 mt = calloc(1, sizeof *mt);
Michal Vaskob7be7a82020-08-20 09:09:04 +02002842 LY_CHECK_ERR_RET(!mt, LOGMEM(LYD_CTX(node)), LY_EMEM);
Michal Vasko25a32822020-07-09 15:48:22 +02002843 mt->annotation = meta->annotation;
Michal Vaskob7be7a82020-08-20 09:09:04 +02002844 ret = meta->value.realtype->plugin->duplicate(LYD_CTX(node), &meta->value, &mt->value);
Radek Krejci011e4aa2020-09-04 15:22:31 +02002845 LY_CHECK_ERR_GOTO(ret, LOGERR(LYD_CTX(node), LY_EINT, "Value duplication failed."), finish);
2846 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), meta->name, 0, &mt->name), finish);
Michal Vasko25a32822020-07-09 15:48:22 +02002847
2848 /* insert as the last attribute */
Radek Krejci011e4aa2020-09-04 15:22:31 +02002849 mt->parent = node;
Michal Vasko25a32822020-07-09 15:48:22 +02002850 if (node->meta) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002851 for (last = node->meta; last->next; last = last->next) {}
Michal Vasko25a32822020-07-09 15:48:22 +02002852 last->next = mt;
2853 } else {
2854 node->meta = mt;
2855 }
2856
Radek Krejci011e4aa2020-09-04 15:22:31 +02002857finish:
2858 if (ret) {
2859 lyd_free_meta_single(mt);
2860 } else if (dup) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002861 *dup = mt;
2862 }
2863 return LY_SUCCESS;
Michal Vasko25a32822020-07-09 15:48:22 +02002864}
2865
Michal Vasko4490d312020-06-16 13:08:55 +02002866/**
2867 * @brief Merge a source sibling into target siblings.
2868 *
2869 * @param[in,out] first_trg First target sibling, is updated if top-level.
2870 * @param[in] parent_trg Target parent.
2871 * @param[in,out] sibling_src Source sibling to merge, set to NULL if spent.
2872 * @param[in] options Merge options.
2873 * @return LY_ERR value.
2874 */
2875static LY_ERR
2876lyd_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 +02002877 uint16_t options)
Michal Vasko4490d312020-06-16 13:08:55 +02002878{
2879 LY_ERR ret;
2880 const struct lyd_node *child_src, *tmp, *sibling_src;
Michal Vasko56daf732020-08-10 10:57:18 +02002881 struct lyd_node *match_trg, *dup_src, *elem;
Michal Vasko4490d312020-06-16 13:08:55 +02002882 struct lysc_type *type;
Michal Vasko4490d312020-06-16 13:08:55 +02002883
2884 sibling_src = *sibling_src_p;
2885 if (sibling_src->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) {
2886 /* try to find the exact instance */
2887 ret = lyd_find_sibling_first(*first_trg, sibling_src, &match_trg);
2888 } else {
2889 /* try to simply find the node, there cannot be more instances */
2890 ret = lyd_find_sibling_val(*first_trg, sibling_src->schema, NULL, 0, &match_trg);
2891 }
2892
2893 if (!ret) {
2894 /* node found, make sure even value matches for all node types */
Michal Vasko8f359bf2020-07-28 10:41:15 +02002895 if ((match_trg->schema->nodetype == LYS_LEAF) && lyd_compare_single(sibling_src, match_trg, LYD_COMPARE_DEFAULTS)) {
Michal Vasko4490d312020-06-16 13:08:55 +02002896 /* since they are different, they cannot both be default */
2897 assert(!(sibling_src->flags & LYD_DEFAULT) || !(match_trg->flags & LYD_DEFAULT));
2898
Michal Vasko3a41dff2020-07-15 14:30:28 +02002899 /* update value (or only LYD_DEFAULT flag) only if flag set or the source node is not default */
2900 if ((options & LYD_MERGE_DEFAULTS) || !(sibling_src->flags & LYD_DEFAULT)) {
Michal Vasko4490d312020-06-16 13:08:55 +02002901 type = ((struct lysc_node_leaf *)match_trg->schema)->type;
Michal Vaskob7be7a82020-08-20 09:09:04 +02002902 type->plugin->free(LYD_CTX(match_trg), &((struct lyd_node_term *)match_trg)->value);
2903 LY_CHECK_RET(type->plugin->duplicate(LYD_CTX(match_trg), &((struct lyd_node_term *)sibling_src)->value,
Michal Vasko69730152020-10-09 16:30:07 +02002904 &((struct lyd_node_term *)match_trg)->value));
Michal Vasko4490d312020-06-16 13:08:55 +02002905
2906 /* copy flags and add LYD_NEW */
2907 match_trg->flags = sibling_src->flags | LYD_NEW;
2908 }
Michal Vasko8f359bf2020-07-28 10:41:15 +02002909 } else if ((match_trg->schema->nodetype & LYS_ANYDATA) && lyd_compare_single(sibling_src, match_trg, 0)) {
Michal Vasko4c583e82020-07-17 12:16:14 +02002910 /* update value */
2911 LY_CHECK_RET(lyd_any_copy_value(match_trg, &((struct lyd_node_any *)sibling_src)->value,
Radek Krejci0f969882020-08-21 16:56:47 +02002912 ((struct lyd_node_any *)sibling_src)->value_type));
Michal Vasko4490d312020-06-16 13:08:55 +02002913
2914 /* copy flags and add LYD_NEW */
2915 match_trg->flags = sibling_src->flags | LYD_NEW;
Michal Vasko4490d312020-06-16 13:08:55 +02002916 } else {
2917 /* check descendants, recursively */
Radek Krejcia1c1e542020-09-29 16:06:52 +02002918 LY_LIST_FOR_SAFE(lyd_child_no_keys(sibling_src), tmp, child_src) {
Michal Vasko4490d312020-06-16 13:08:55 +02002919 LY_CHECK_RET(lyd_merge_sibling_r(lyd_node_children_p(match_trg), match_trg, &child_src, options));
2920 }
2921 }
2922 } else {
2923 /* node not found, merge it */
2924 if (options & LYD_MERGE_DESTRUCT) {
2925 dup_src = (struct lyd_node *)sibling_src;
2926 lyd_unlink_tree(dup_src);
2927 /* spend it */
2928 *sibling_src_p = NULL;
2929 } else {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002930 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 +02002931 }
2932
2933 /* set LYD_NEW for all the new nodes, required for validation */
Michal Vasko56daf732020-08-10 10:57:18 +02002934 LYD_TREE_DFS_BEGIN(dup_src, elem) {
Michal Vasko4490d312020-06-16 13:08:55 +02002935 elem->flags |= LYD_NEW;
Michal Vasko56daf732020-08-10 10:57:18 +02002936 LYD_TREE_DFS_END(dup_src, elem);
Michal Vasko4490d312020-06-16 13:08:55 +02002937 }
2938
2939 lyd_insert_node(parent_trg, first_trg, dup_src);
2940 }
2941
2942 return LY_SUCCESS;
2943}
2944
Michal Vasko3a41dff2020-07-15 14:30:28 +02002945static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02002946lyd_merge(struct lyd_node **target, const struct lyd_node *source, uint16_t options, ly_bool nosiblings)
Michal Vasko4490d312020-06-16 13:08:55 +02002947{
2948 const struct lyd_node *sibling_src, *tmp;
Radek Krejci857189e2020-09-01 13:26:36 +02002949 ly_bool first;
Michal Vasko4490d312020-06-16 13:08:55 +02002950
2951 LY_CHECK_ARG_RET(NULL, target, LY_EINVAL);
2952
2953 if (!source) {
2954 /* nothing to merge */
2955 return LY_SUCCESS;
2956 }
2957
Michal Vasko831422b2020-11-24 11:20:51 +01002958 if ((*target && lysc_data_parent((*target)->schema)) || lysc_data_parent(source->schema)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002959 LOGERR(LYD_CTX(source), LY_EINVAL, "Invalid arguments - can merge only 2 top-level subtrees (%s()).", __func__);
Michal Vasko4490d312020-06-16 13:08:55 +02002960 return LY_EINVAL;
2961 }
2962
2963 LY_LIST_FOR_SAFE(source, tmp, sibling_src) {
Radek Krejci857189e2020-09-01 13:26:36 +02002964 first = (sibling_src == source) ? 1 : 0;
Michal Vasko4490d312020-06-16 13:08:55 +02002965 LY_CHECK_RET(lyd_merge_sibling_r(target, NULL, &sibling_src, options));
2966 if (first && !sibling_src) {
2967 /* source was spent (unlinked), move to the next node */
2968 source = tmp;
2969 }
2970
Michal Vasko3a41dff2020-07-15 14:30:28 +02002971 if (nosiblings) {
Michal Vasko4490d312020-06-16 13:08:55 +02002972 break;
2973 }
2974 }
2975
2976 if (options & LYD_MERGE_DESTRUCT) {
2977 /* free any leftover source data that were not merged */
2978 lyd_free_siblings((struct lyd_node *)source);
2979 }
2980
2981 return LY_SUCCESS;
2982}
2983
Michal Vasko3a41dff2020-07-15 14:30:28 +02002984API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002985lyd_merge_tree(struct lyd_node **target, const struct lyd_node *source, uint16_t options)
Michal Vasko3a41dff2020-07-15 14:30:28 +02002986{
2987 return lyd_merge(target, source, options, 1);
2988}
2989
2990API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002991lyd_merge_siblings(struct lyd_node **target, const struct lyd_node *source, uint16_t options)
Michal Vasko3a41dff2020-07-15 14:30:28 +02002992{
2993 return lyd_merge(target, source, options, 0);
2994}
2995
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002996static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02002997lyd_path_str_enlarge(char **buffer, size_t *buflen, size_t reqlen, ly_bool is_static)
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002998{
Michal Vasko14654712020-02-06 08:35:21 +01002999 /* ending \0 */
3000 ++reqlen;
3001
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003002 if (reqlen > *buflen) {
3003 if (is_static) {
3004 return LY_EINCOMPLETE;
3005 }
3006
3007 *buffer = ly_realloc(*buffer, reqlen * sizeof **buffer);
3008 if (!*buffer) {
3009 return LY_EMEM;
3010 }
3011
3012 *buflen = reqlen;
3013 }
3014
3015 return LY_SUCCESS;
3016}
3017
Michal Vaskod59035b2020-07-08 12:00:06 +02003018LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003019lyd_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 +02003020{
3021 const struct lyd_node *key;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003022 size_t len;
3023 const char *val;
3024 char quot;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003025
Radek Krejcia1c1e542020-09-29 16:06:52 +02003026 for (key = lyd_child(node); key && (key->schema->flags & LYS_KEY); key = key->next) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02003027 val = LYD_CANON_VALUE(key);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003028 len = 1 + strlen(key->schema->name) + 2 + strlen(val) + 2;
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003029 LY_CHECK_RET(lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static));
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003030
3031 quot = '\'';
3032 if (strchr(val, '\'')) {
3033 quot = '"';
3034 }
3035 *bufused += sprintf(*buffer + *bufused, "[%s=%c%s%c]", key->schema->name, quot, val, quot);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003036 }
3037
3038 return LY_SUCCESS;
3039}
3040
3041/**
3042 * @brief Append leaf-list value predicate to path.
3043 *
3044 * @param[in] node Node to print.
3045 * @param[in,out] buffer Buffer to print to.
3046 * @param[in,out] buflen Current buffer length.
3047 * @param[in,out] bufused Current number of characters used in @p buffer.
3048 * @param[in] is_static Whether buffer is static or can be reallocated.
3049 * @return LY_ERR
3050 */
3051static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003052lyd_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 +02003053{
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003054 size_t len;
3055 const char *val;
3056 char quot;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003057
Michal Vaskob7be7a82020-08-20 09:09:04 +02003058 val = LYD_CANON_VALUE(node);
Radek Krejcif13b87b2020-12-01 22:02:17 +01003059 len = 4 + strlen(val) + 2; /* "[.='" + val + "']" */
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003060 LY_CHECK_RET(lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static));
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003061
3062 quot = '\'';
3063 if (strchr(val, '\'')) {
3064 quot = '"';
3065 }
3066 *bufused += sprintf(*buffer + *bufused, "[.=%c%s%c]", quot, val, quot);
3067
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003068 return LY_SUCCESS;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003069}
3070
3071/**
3072 * @brief Append node position (relative to its other instances) predicate to path.
3073 *
3074 * @param[in] node Node to print.
3075 * @param[in,out] buffer Buffer to print to.
3076 * @param[in,out] buflen Current buffer length.
3077 * @param[in,out] bufused Current number of characters used in @p buffer.
3078 * @param[in] is_static Whether buffer is static or can be reallocated.
3079 * @return LY_ERR
3080 */
3081static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003082lyd_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 +02003083{
3084 const struct lyd_node *first, *iter;
3085 size_t len;
Radek Krejci1deb5be2020-08-26 16:43:36 +02003086 uint64_t pos;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003087 char *val = NULL;
3088 LY_ERR rc;
3089
3090 if (node->parent) {
3091 first = node->parent->child;
3092 } else {
Michal Vaskoe070bfe2020-08-31 12:27:25 +02003093 for (first = node; first->prev->next; first = first->prev) {}
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003094 }
3095 pos = 1;
3096 for (iter = first; iter != node; iter = iter->next) {
3097 if (iter->schema == node->schema) {
3098 ++pos;
3099 }
3100 }
Radek Krejci1deb5be2020-08-26 16:43:36 +02003101 if (asprintf(&val, "%" PRIu64, pos) == -1) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003102 return LY_EMEM;
3103 }
3104
3105 len = 1 + strlen(val) + 1;
3106 rc = lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static);
3107 if (rc != LY_SUCCESS) {
3108 goto cleanup;
3109 }
3110
3111 *bufused += sprintf(*buffer + *bufused, "[%s]", val);
3112
3113cleanup:
3114 free(val);
3115 return rc;
3116}
3117
3118API char *
3119lyd_path(const struct lyd_node *node, LYD_PATH_TYPE pathtype, char *buffer, size_t buflen)
3120{
Radek Krejci857189e2020-09-01 13:26:36 +02003121 ly_bool is_static = 0;
Radek Krejci1deb5be2020-08-26 16:43:36 +02003122 uint32_t i, depth;
Michal Vasko14654712020-02-06 08:35:21 +01003123 size_t bufused = 0, len;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003124 const struct lyd_node *iter;
3125 const struct lys_module *mod;
Michal Vasko790b2bc2020-08-03 13:35:06 +02003126 LY_ERR rc = LY_SUCCESS;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003127
3128 LY_CHECK_ARG_RET(NULL, node, NULL);
3129 if (buffer) {
3130 LY_CHECK_ARG_RET(node->schema->module->ctx, buflen > 1, NULL);
3131 is_static = 1;
Michal Vasko14654712020-02-06 08:35:21 +01003132 } else {
3133 buflen = 0;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003134 }
3135
3136 switch (pathtype) {
Radek Krejci635d2b82021-01-04 11:26:51 +01003137 case LYD_PATH_STD:
3138 case LYD_PATH_STD_NO_LAST_PRED:
Michal Vasko14654712020-02-06 08:35:21 +01003139 depth = 1;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003140 for (iter = node; iter->parent; iter = (const struct lyd_node *)iter->parent) {
3141 ++depth;
3142 }
3143
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003144 goto iter_print;
Michal Vasko14654712020-02-06 08:35:21 +01003145 while (depth) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003146 /* find the right node */
Radek Krejci1e008d22020-08-17 11:37:37 +02003147 for (iter = node, i = 1; i < depth; iter = (const struct lyd_node *)iter->parent, ++i) {}
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003148iter_print:
3149 /* print prefix and name */
3150 mod = NULL;
Michal Vasko69730152020-10-09 16:30:07 +02003151 if (iter->schema && (!iter->parent || (iter->schema->module != iter->parent->schema->module))) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003152 mod = iter->schema->module;
3153 }
3154
3155 /* realloc string */
Michal Vaskoad92b672020-11-12 13:11:31 +01003156 len = 1 + (mod ? strlen(mod->name) + 1 : 0) + (iter->schema ? strlen(iter->schema->name) :
3157 strlen(((struct lyd_node_opaq *)iter)->name.name));
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003158 rc = lyd_path_str_enlarge(&buffer, &buflen, bufused + len, is_static);
3159 if (rc != LY_SUCCESS) {
3160 break;
3161 }
3162
3163 /* print next node */
Radek Krejci1798aae2020-07-14 13:26:06 +02003164 bufused += sprintf(buffer + bufused, "/%s%s%s", mod ? mod->name : "", mod ? ":" : "",
Michal Vaskoad92b672020-11-12 13:11:31 +01003165 iter->schema ? iter->schema->name : ((struct lyd_node_opaq *)iter)->name.name);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003166
Michal Vasko790b2bc2020-08-03 13:35:06 +02003167 /* do not always print the last (first) predicate */
Radek Krejci635d2b82021-01-04 11:26:51 +01003168 if (iter->schema && ((depth > 1) || (pathtype == LYD_PATH_STD))) {
Michal Vasko790b2bc2020-08-03 13:35:06 +02003169 switch (iter->schema->nodetype) {
3170 case LYS_LIST:
3171 if (iter->schema->flags & LYS_KEYLESS) {
3172 /* print its position */
3173 rc = lyd_path_position_predicate(iter, &buffer, &buflen, &bufused, is_static);
3174 } else {
3175 /* print all list keys in predicates */
3176 rc = lyd_path_list_predicate(iter, &buffer, &buflen, &bufused, is_static);
3177 }
3178 break;
3179 case LYS_LEAFLIST:
3180 if (iter->schema->flags & LYS_CONFIG_W) {
3181 /* print leaf-list value */
3182 rc = lyd_path_leaflist_predicate(iter, &buffer, &buflen, &bufused, is_static);
3183 } else {
3184 /* print its position */
3185 rc = lyd_path_position_predicate(iter, &buffer, &buflen, &bufused, is_static);
3186 }
3187 break;
3188 default:
3189 /* nothing to print more */
3190 break;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003191 }
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003192 }
3193 if (rc != LY_SUCCESS) {
3194 break;
3195 }
3196
Michal Vasko14654712020-02-06 08:35:21 +01003197 --depth;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003198 }
3199 break;
3200 }
3201
3202 return buffer;
3203}
Michal Vaskoe444f752020-02-10 12:20:06 +01003204
Michal Vasko25a32822020-07-09 15:48:22 +02003205API struct lyd_meta *
3206lyd_find_meta(const struct lyd_meta *first, const struct lys_module *module, const char *name)
3207{
3208 struct lyd_meta *ret = NULL;
3209 const struct ly_ctx *ctx;
3210 const char *prefix, *tmp;
3211 char *str;
3212 size_t pref_len, name_len;
3213
3214 LY_CHECK_ARG_RET(NULL, module || strchr(name, ':'), name, NULL);
3215
3216 if (!first) {
3217 return NULL;
3218 }
3219
3220 ctx = first->annotation->module->ctx;
3221
3222 /* parse the name */
3223 tmp = name;
3224 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
3225 LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name);
3226 return NULL;
3227 }
3228
3229 /* find the module */
3230 if (prefix) {
3231 str = strndup(prefix, pref_len);
3232 module = ly_ctx_get_module_latest(ctx, str);
3233 free(str);
3234 LY_CHECK_ERR_RET(!module, LOGERR(ctx, LY_EINVAL, "Module \"%.*s\" not found.", pref_len, prefix), NULL);
3235 }
3236
3237 /* find the metadata */
3238 LY_LIST_FOR(first, first) {
3239 if ((first->annotation->module == module) && !strcmp(first->name, name)) {
3240 ret = (struct lyd_meta *)first;
3241 break;
3242 }
3243 }
3244
3245 return ret;
3246}
3247
Michal Vasko9b368d32020-02-14 13:53:31 +01003248API LY_ERR
Michal Vaskoe444f752020-02-10 12:20:06 +01003249lyd_find_sibling_first(const struct lyd_node *siblings, const struct lyd_node *target, struct lyd_node **match)
3250{
3251 struct lyd_node **match_p;
3252 struct lyd_node_inner *parent;
3253
Michal Vaskof03ed032020-03-04 13:31:44 +01003254 LY_CHECK_ARG_RET(NULL, target, LY_EINVAL);
Michal Vaskoe444f752020-02-10 12:20:06 +01003255
Michal Vasko6da1e952020-12-09 18:14:38 +01003256 if (!siblings || (siblings->schema && target->schema &&
3257 (lysc_data_parent(siblings->schema) != lysc_data_parent(target->schema)))) {
Michal Vasko62ed12d2020-05-21 10:08:25 +02003258 /* no data or schema mismatch */
Michal Vasko9b368d32020-02-14 13:53:31 +01003259 if (match) {
3260 *match = NULL;
3261 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003262 return LY_ENOTFOUND;
3263 }
3264
3265 /* find first sibling */
3266 if (siblings->parent) {
3267 siblings = siblings->parent->child;
3268 } else {
3269 while (siblings->prev->next) {
3270 siblings = siblings->prev;
3271 }
3272 }
3273
3274 parent = (struct lyd_node_inner *)siblings->parent;
Michal Vasko6da1e952020-12-09 18:14:38 +01003275 if (parent && parent->schema && parent->children_ht) {
Michal Vaskoe444f752020-02-10 12:20:06 +01003276 assert(target->hash);
3277
3278 /* find by hash */
3279 if (!lyht_find(parent->children_ht, &target, target->hash, (void **)&match_p)) {
Michal Vaskoda859032020-07-14 12:20:14 +02003280 /* check even value when needed */
Michal Vasko8f359bf2020-07-28 10:41:15 +02003281 if (!(target->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !lyd_compare_single(target, *match_p, 0)) {
Michal Vaskoda859032020-07-14 12:20:14 +02003282 siblings = *match_p;
3283 } else {
3284 siblings = NULL;
3285 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003286 } else {
3287 /* not found */
3288 siblings = NULL;
3289 }
3290 } else {
3291 /* no children hash table */
Michal Vaskod989ba02020-08-24 10:59:24 +02003292 for ( ; siblings; siblings = siblings->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02003293 if (!lyd_compare_single(siblings, target, 0)) {
Michal Vaskoe444f752020-02-10 12:20:06 +01003294 break;
3295 }
3296 }
3297 }
3298
3299 if (!siblings) {
Michal Vasko9b368d32020-02-14 13:53:31 +01003300 if (match) {
3301 *match = NULL;
3302 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003303 return LY_ENOTFOUND;
3304 }
3305
Michal Vasko9b368d32020-02-14 13:53:31 +01003306 if (match) {
3307 *match = (struct lyd_node *)siblings;
3308 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003309 return LY_SUCCESS;
3310}
3311
Radek Krejci857189e2020-09-01 13:26:36 +02003312/**
3313 * @brief Comparison callback to match schema node with a schema of a data node.
3314 *
3315 * @param[in] val1_p Pointer to the schema node
3316 * @param[in] val2_p Pointer to the data node
3317 * Implementation of ::values_equal_cb.
3318 */
3319static ly_bool
3320lyd_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 +01003321{
3322 struct lysc_node *val1;
3323 struct lyd_node *val2;
3324
3325 val1 = *((struct lysc_node **)val1_p);
3326 val2 = *((struct lyd_node **)val2_p);
3327
Michal Vasko90932a92020-02-12 14:33:03 +01003328 if (val1 == val2->schema) {
3329 /* schema match is enough */
3330 return 1;
3331 } else {
3332 return 0;
3333 }
3334}
3335
Michal Vasko92239c72020-11-18 18:17:25 +01003336/**
3337 * @brief Search in the given siblings (NOT recursively) for the first schema node data instance.
3338 * Uses hashes - should be used whenever possible for best performance.
3339 *
3340 * @param[in] siblings Siblings to search in including preceding and succeeding nodes.
3341 * @param[in] schema Target data node schema to find.
3342 * @param[out] match Can be NULL, otherwise the found data node.
3343 * @return LY_SUCCESS on success, @p match set.
3344 * @return LY_ENOTFOUND if not found, @p match set to NULL.
3345 * @return LY_ERR value if another error occurred.
3346 */
Michal Vasko90932a92020-02-12 14:33:03 +01003347static LY_ERR
3348lyd_find_sibling_schema(const struct lyd_node *siblings, const struct lysc_node *schema, struct lyd_node **match)
3349{
3350 struct lyd_node **match_p;
3351 struct lyd_node_inner *parent;
3352 uint32_t hash;
3353 values_equal_cb ht_cb;
3354
Michal Vaskob104f112020-07-17 09:54:54 +02003355 assert(siblings && schema);
Michal Vasko90932a92020-02-12 14:33:03 +01003356
3357 parent = (struct lyd_node_inner *)siblings->parent;
Michal Vasko08fd6132020-11-18 18:17:45 +01003358 if (parent && parent->schema && parent->children_ht) {
Michal Vasko90932a92020-02-12 14:33:03 +01003359 /* calculate our hash */
3360 hash = dict_hash_multi(0, schema->module->name, strlen(schema->module->name));
3361 hash = dict_hash_multi(hash, schema->name, strlen(schema->name));
3362 hash = dict_hash_multi(hash, NULL, 0);
3363
3364 /* use special hash table function */
3365 ht_cb = lyht_set_cb(parent->children_ht, lyd_hash_table_schema_val_equal);
3366
3367 /* find by hash */
3368 if (!lyht_find(parent->children_ht, &schema, hash, (void **)&match_p)) {
3369 siblings = *match_p;
3370 } else {
3371 /* not found */
3372 siblings = NULL;
3373 }
3374
3375 /* set the original hash table compare function back */
3376 lyht_set_cb(parent->children_ht, ht_cb);
3377 } else {
Michal Vaskob104f112020-07-17 09:54:54 +02003378 /* find first sibling */
3379 if (siblings->parent) {
3380 siblings = siblings->parent->child;
3381 } else {
3382 while (siblings->prev->next) {
3383 siblings = siblings->prev;
3384 }
3385 }
3386
3387 /* search manually without hashes */
Michal Vaskod989ba02020-08-24 10:59:24 +02003388 for ( ; siblings; siblings = siblings->next) {
Michal Vasko90932a92020-02-12 14:33:03 +01003389 if (siblings->schema == schema) {
3390 /* schema match is enough */
3391 break;
3392 }
3393 }
3394 }
3395
3396 if (!siblings) {
Michal Vasko9b368d32020-02-14 13:53:31 +01003397 if (match) {
3398 *match = NULL;
3399 }
Michal Vasko90932a92020-02-12 14:33:03 +01003400 return LY_ENOTFOUND;
3401 }
3402
Michal Vasko9b368d32020-02-14 13:53:31 +01003403 if (match) {
3404 *match = (struct lyd_node *)siblings;
3405 }
Michal Vasko90932a92020-02-12 14:33:03 +01003406 return LY_SUCCESS;
3407}
3408
Michal Vaskoe444f752020-02-10 12:20:06 +01003409API LY_ERR
3410lyd_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 +02003411 size_t val_len, struct lyd_node **match)
Michal Vaskoe444f752020-02-10 12:20:06 +01003412{
3413 LY_ERR rc;
3414 struct lyd_node *target = NULL;
3415
Michal Vasko4c583e82020-07-17 12:16:14 +02003416 LY_CHECK_ARG_RET(NULL, schema, !(schema->nodetype & (LYS_CHOICE | LYS_CASE)), LY_EINVAL);
Michal Vaskoe444f752020-02-10 12:20:06 +01003417
Michal Vasko08fd6132020-11-18 18:17:45 +01003418 if (!siblings || (siblings->schema && (lysc_data_parent(siblings->schema) != lysc_data_parent(schema)))) {
Michal Vasko62ed12d2020-05-21 10:08:25 +02003419 /* no data or schema mismatch */
Michal Vasko9b368d32020-02-14 13:53:31 +01003420 if (match) {
3421 *match = NULL;
3422 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003423 return LY_ENOTFOUND;
3424 }
3425
Michal Vaskof03ed032020-03-04 13:31:44 +01003426 if (key_or_value && !val_len) {
3427 val_len = strlen(key_or_value);
3428 }
3429
Michal Vaskob104f112020-07-17 09:54:54 +02003430 if ((schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) && key_or_value) {
3431 /* create a data node and find the instance */
3432 if (schema->nodetype == LYS_LEAFLIST) {
3433 /* target used attributes: schema, hash, value */
Michal Vaskofeca4fb2020-10-05 08:58:40 +02003434 rc = lyd_create_term(schema, key_or_value, val_len, NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, NULL, &target);
3435 LY_CHECK_RET(rc);
Michal Vaskob104f112020-07-17 09:54:54 +02003436 } else {
Michal Vasko90932a92020-02-12 14:33:03 +01003437 /* target used attributes: schema, hash, child (all keys) */
Michal Vasko004d3152020-06-11 19:59:22 +02003438 LY_CHECK_RET(lyd_create_list2(schema, key_or_value, val_len, &target));
Michal Vasko90932a92020-02-12 14:33:03 +01003439 }
3440
3441 /* find it */
3442 rc = lyd_find_sibling_first(siblings, target, match);
Michal Vaskob104f112020-07-17 09:54:54 +02003443 } else {
3444 /* find the first schema node instance */
3445 rc = lyd_find_sibling_schema(siblings, schema, match);
Michal Vaskoe444f752020-02-10 12:20:06 +01003446 }
3447
Michal Vaskoe444f752020-02-10 12:20:06 +01003448 lyd_free_tree(target);
3449 return rc;
3450}
Michal Vaskoccc02342020-05-21 10:09:21 +02003451
3452API LY_ERR
3453lyd_find_xpath(const struct lyd_node *ctx_node, const char *xpath, struct ly_set **set)
3454{
3455 LY_ERR ret = LY_SUCCESS;
3456 struct lyxp_set xp_set;
Radek Krejcif03a9e22020-09-18 20:09:31 +02003457 struct lyxp_expr *exp = NULL;
Michal Vaskoccc02342020-05-21 10:09:21 +02003458 uint32_t i;
3459
3460 LY_CHECK_ARG_RET(NULL, ctx_node, xpath, set, LY_EINVAL);
3461
3462 memset(&xp_set, 0, sizeof xp_set);
3463
3464 /* compile expression */
Radek Krejcif03a9e22020-09-18 20:09:31 +02003465 ret = lyxp_expr_parse((struct ly_ctx *)LYD_CTX(ctx_node), xpath, 0, 1, &exp);
3466 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003467
3468 /* evaluate expression */
Michal Vaskocdad7122020-11-09 21:04:44 +01003469 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 +02003470 LY_CHECK_GOTO(ret, cleanup);
3471
3472 /* allocate return set */
Radek Krejciba03a5a2020-08-27 14:40:41 +02003473 ret = ly_set_new(set);
3474 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003475
3476 /* transform into ly_set */
3477 if (xp_set.type == LYXP_SET_NODE_SET) {
3478 /* allocate memory for all the elements once (even though not all items must be elements but most likely will be) */
3479 (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs);
Michal Vaskob7be7a82020-08-20 09:09:04 +02003480 LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(LYD_CTX(ctx_node)); ret = LY_EMEM, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003481 (*set)->size = xp_set.used;
3482
3483 for (i = 0; i < xp_set.used; ++i) {
3484 if (xp_set.val.nodes[i].type == LYXP_NODE_ELEM) {
Radek Krejci3d92e442020-10-12 12:48:13 +02003485 ret = ly_set_add(*set, xp_set.val.nodes[i].node, 1, NULL);
Radek Krejciba03a5a2020-08-27 14:40:41 +02003486 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003487 }
3488 }
3489 }
3490
3491cleanup:
Michal Vasko0691d522020-05-21 13:21:47 +02003492 lyxp_set_free_content(&xp_set);
Michal Vaskob7be7a82020-08-20 09:09:04 +02003493 lyxp_expr_free((struct ly_ctx *)LYD_CTX(ctx_node), exp);
Radek Krejci8f45abc2020-11-26 12:15:13 +01003494 if (ret) {
3495 ly_set_free(*set, NULL);
3496 *set = NULL;
3497 }
Michal Vaskoccc02342020-05-21 10:09:21 +02003498 return ret;
3499}
Radek Krejcica989142020-11-05 11:32:22 +01003500
3501API uint32_t
3502lyd_list_pos(const struct lyd_node *instance)
3503{
3504 const struct lyd_node *iter = NULL;
3505 uint32_t pos = 0;
3506
3507 if (!instance || !(instance->schema->nodetype & (LYS_LIST | LYS_LEAFLIST))) {
3508 return 0;
3509 }
3510
3511 /* data instances are ordered, so we can stop when we found instance of other schema node */
3512 for (iter = instance; iter->schema == instance->schema; iter = iter->prev) {
Radek Krejcibb27df32020-11-13 15:39:16 +01003513 if (pos && (iter->next == NULL)) {
Radek Krejcica989142020-11-05 11:32:22 +01003514 /* overrun to the end of the siblings list */
3515 break;
3516 }
3517 ++pos;
3518 }
3519
3520 return pos;
3521}
Radek Krejci4233f9b2020-11-05 12:38:35 +01003522
3523API struct lyd_node *
3524lyd_first_sibling(const struct lyd_node *node)
3525{
3526 struct lyd_node *start;
3527
3528 if (!node) {
3529 return NULL;
3530 }
3531
3532 /* get the first sibling */
3533 if (node->parent) {
3534 start = node->parent->child;
3535 } else {
Radek Krejcibb27df32020-11-13 15:39:16 +01003536 for (start = (struct lyd_node *)node; start->prev->next; start = start->prev) {}
Radek Krejci4233f9b2020-11-05 12:38:35 +01003537 }
3538
3539 return start;
3540}