blob: 7f6ae8f1b72dd19361e29244e2054b72aceecd34 [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,
Radek Krejci2efc45b2020-12-22 16:25:44 +010059 const struct lysc_node *ctx_node, ly_bool *incomplete)
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) {
Radek Krejci2efc45b2020-12-22 16:25:44 +010076 LOGVAL(ctx, err->vecode, err->msg);
Michal Vaskofeca4fb2020-10-05 08:58:40 +020077 ly_err_free(err);
78 } else {
Radek Krejci2efc45b2020-12-22 16:25:44 +010079 LOGVAL(ctx, LYVE_OTHER, "Storing value \"%.*s\" failed.", (int)value_len, value);
Michal Vaskofeca4fb2020-10-05 08:58:40 +020080 }
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,
Radek Krejci2efc45b2020-12-22 16:25:44 +010092 const struct lyd_node *ctx_node, const struct lyd_node *tree)
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) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100102 LOGVAL(ctx, 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 {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100105 LOGVAL(ctx, 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 Krejciddace2c2021-01-08 11:30:56 +0100139 LOG_LOCSET(NULL, NULL, err->path, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100140 LOGVAL(ctx, err->vecode, err->msg);
Radek Krejciddace2c2021-01-08 11:30:56 +0100141 LOG_LOCBACK(0, 0, 1, 0);
Radek Krejci084289f2019-07-09 17:35:30 +0200142 }
Radek Krejci73dead22019-07-11 16:46:16 +0200143 ly_err_free(err);
Radek Krejci084289f2019-07-09 17:35:30 +0200144 }
145
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200146 if (!rc) {
147 type->plugin->free(ctx ? ctx : node->module->ctx, &storage);
148 }
Radek Krejci084289f2019-07-09 17:35:30 +0200149 return rc;
150}
151
152API LY_ERR
Michal Vaskof937cfe2020-08-03 16:07:12 +0200153lys_value_validate(const struct ly_ctx *ctx, const struct lysc_node *node, const char *value, size_t value_len)
154{
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200155 return _lys_value_validate(ctx, node, value, value_len, LY_PREF_JSON, NULL);
Michal Vaskof937cfe2020-08-03 16:07:12 +0200156}
157
158API LY_ERR
Michal Vasko44685da2020-03-17 15:38:06 +0100159lyd_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 +0200160 const struct lyd_node *tree, const struct lysc_type **realtype)
Radek Krejci084289f2019-07-09 17:35:30 +0200161{
162 LY_ERR rc;
163 struct ly_err_item *err = NULL;
164 struct lysc_type *type;
Michal Vasko3701af52020-08-03 14:29:38 +0200165 struct lyd_value val = {0};
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200166 ly_bool stored = 0;
Radek Krejci084289f2019-07-09 17:35:30 +0200167
168 LY_CHECK_ARG_RET(ctx, node, value, LY_EINVAL);
169
Michal Vasko22df3f02020-08-24 13:29:22 +0200170 type = ((struct lysc_node_leaf *)node->schema)->type;
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200171 /* store */
172 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 +0100173 LYD_HINT_DATA, node->schema, &val, NULL, &err);
Radek Krejci73dead22019-07-11 16:46:16 +0200174 if (rc == LY_EINCOMPLETE) {
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200175 stored = 1;
176
177 /* resolve */
Michal Vasko9e685082021-01-29 14:49:09 +0100178 rc = type->plugin->validate(ctx ? ctx : LYD_CTX(node), type, &node->node, tree, &val, &err);
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200179 }
180
181 if (rc) {
Radek Krejci73dead22019-07-11 16:46:16 +0200182 if (err) {
183 if (ctx) {
Michal Vasko9e685082021-01-29 14:49:09 +0100184 LOG_LOCSET(NULL, &node->node, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100185 LOGVAL(ctx, err->vecode, err->msg);
Radek Krejciddace2c2021-01-08 11:30:56 +0100186 LOG_LOCBACK(0, 1, 0, 0);
Radek Krejci084289f2019-07-09 17:35:30 +0200187 }
Radek Krejci73dead22019-07-11 16:46:16 +0200188 ly_err_free(err);
Radek Krejci084289f2019-07-09 17:35:30 +0200189 }
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200190 if (stored) {
191 type->plugin->free(ctx ? ctx : LYD_CTX(node), &val);
192 }
Radek Krejci73dead22019-07-11 16:46:16 +0200193 return rc;
Radek Krejci084289f2019-07-09 17:35:30 +0200194 }
195
Michal Vasko3701af52020-08-03 14:29:38 +0200196 if (realtype) {
Michal Vasko29134f82020-11-13 18:03:20 +0100197 if (val.realtype->basetype == LY_TYPE_UNION) {
198 *realtype = val.subvalue->value.realtype;
199 } else {
200 *realtype = val.realtype;
201 }
Michal Vasko3701af52020-08-03 14:29:38 +0200202 }
203
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200204 type->plugin->free(ctx ? ctx : LYD_CTX(node), &val);
Radek Krejci084289f2019-07-09 17:35:30 +0200205 return LY_SUCCESS;
206}
207
208API LY_ERR
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200209lyd_value_compare(const struct lyd_node_term *node, const char *value, size_t value_len)
Radek Krejci084289f2019-07-09 17:35:30 +0200210{
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200211 LY_ERR ret = LY_SUCCESS;
Radek Krejci084289f2019-07-09 17:35:30 +0200212 struct ly_ctx *ctx;
213 struct lysc_type *type;
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200214 struct lyd_value val = {0};
Radek Krejci084289f2019-07-09 17:35:30 +0200215
216 LY_CHECK_ARG_RET(node ? node->schema->module->ctx : NULL, node, value, LY_EINVAL);
217
218 ctx = node->schema->module->ctx;
Michal Vasko22df3f02020-08-24 13:29:22 +0200219 type = ((struct lysc_node_leaf *)node->schema)->type;
Radek Krejci084289f2019-07-09 17:35:30 +0200220
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200221 /* store the value */
Michal Vasko9e685082021-01-29 14:49:09 +0100222 LOG_LOCSET(node->schema, &node->node, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100223 ret = lyd_value_store(ctx, &val, type, value, value_len, NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, node->schema, NULL);
Radek Krejciddace2c2021-01-08 11:30:56 +0100224 LOG_LOCBACK(1, 1, 0, 0);
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200225 LY_CHECK_RET(ret);
Radek Krejci084289f2019-07-09 17:35:30 +0200226
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200227 /* compare values */
228 ret = type->plugin->compare(&node->value, &val);
Radek Krejci084289f2019-07-09 17:35:30 +0200229
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200230 type->plugin->free(ctx, &val);
Radek Krejci084289f2019-07-09 17:35:30 +0200231 return ret;
232}
233
Radek Krejci19611252020-10-04 13:54:53 +0200234API ly_bool
235lyd_is_default(const struct lyd_node *node)
236{
237 const struct lysc_node_leaf *leaf;
238 const struct lysc_node_leaflist *llist;
239 const struct lyd_node_term *term;
240 LY_ARRAY_COUNT_TYPE u;
241
242 assert(node->schema->nodetype & LYD_NODE_TERM);
243 term = (const struct lyd_node_term *)node;
244
245 if (node->schema->nodetype == LYS_LEAF) {
246 leaf = (const struct lysc_node_leaf *)node->schema;
247 if (!leaf->dflt) {
248 return 0;
249 }
250
251 /* compare with the default value */
252 if (leaf->type->plugin->compare(&term->value, leaf->dflt)) {
253 return 0;
254 }
255 } else {
256 llist = (const struct lysc_node_leaflist *)node->schema;
257 if (!llist->dflts) {
258 return 0;
259 }
260
261 LY_ARRAY_FOR(llist->dflts, u) {
262 /* compare with each possible default value */
263 if (llist->type->plugin->compare(&term->value, llist->dflts[u])) {
264 return 0;
265 }
266 }
267 }
268
269 return 1;
270}
271
Radek Krejci7931b192020-06-25 17:05:03 +0200272static LYD_FORMAT
Michal Vasko63f3d842020-07-08 10:10:14 +0200273lyd_parse_get_format(const struct ly_in *in, LYD_FORMAT format)
Radek Krejcie7b95092019-05-15 11:03:07 +0200274{
Michal Vasko69730152020-10-09 16:30:07 +0200275 if (!format && (in->type == LY_IN_FILEPATH)) {
Radek Krejcie7b95092019-05-15 11:03:07 +0200276 /* unknown format - try to detect it from filename's suffix */
Radek Krejci7931b192020-06-25 17:05:03 +0200277 const char *path = in->method.fpath.filepath;
278 size_t len = strlen(path);
Radek Krejcie7b95092019-05-15 11:03:07 +0200279
280 /* ignore trailing whitespaces */
Michal Vaskod989ba02020-08-24 10:59:24 +0200281 for ( ; len > 0 && isspace(path[len - 1]); len--) {}
Radek Krejcie7b95092019-05-15 11:03:07 +0200282
Radek Krejcif13b87b2020-12-01 22:02:17 +0100283 if ((len >= LY_XML_SUFFIX_LEN + 1) &&
284 !strncmp(&path[len - LY_XML_SUFFIX_LEN], LY_XML_SUFFIX, LY_XML_SUFFIX_LEN)) {
Radek Krejcie7b95092019-05-15 11:03:07 +0200285 format = LYD_XML;
Radek Krejcif13b87b2020-12-01 22:02:17 +0100286 } else if ((len >= LY_JSON_SUFFIX_LEN + 1) &&
287 !strncmp(&path[len - LY_JSON_SUFFIX_LEN], LY_JSON_SUFFIX, LY_JSON_SUFFIX_LEN)) {
Radek Krejcie7b95092019-05-15 11:03:07 +0200288 format = LYD_JSON;
Radek Krejcif13b87b2020-12-01 22:02:17 +0100289 } else if ((len >= LY_LYB_SUFFIX_LEN + 1) &&
290 !strncmp(&path[len - LY_LYB_SUFFIX_LEN], LY_LYB_SUFFIX, LY_LYB_SUFFIX_LEN)) {
Radek Krejcie7b95092019-05-15 11:03:07 +0200291 format = LYD_LYB;
Radek Krejci7931b192020-06-25 17:05:03 +0200292 } /* else still unknown */
Radek Krejcie7b95092019-05-15 11:03:07 +0200293 }
294
Radek Krejci7931b192020-06-25 17:05:03 +0200295 return format;
296}
Radek Krejcie7b95092019-05-15 11:03:07 +0200297
Michal Vaskoe0665742021-02-11 11:08:44 +0100298/**
299 * @brief Parse YANG data into a data tree.
300 *
301 * @param[in] ctx libyang context.
302 * @param[in] parent Parent to connect the parsed nodes to, if any.
303 * @param[in,out] first_p Pointer to the first top-level parsed node, used only if @p parent is NULL.
304 * @param[in] in Input handle to read the input from.
305 * @param[in] format Expected format of the data in @p in.
306 * @param[in] parse_opts Options for parser.
307 * @param[in] val_opts Options for validation.
308 * @param[out] op Optional pointer to the parsed operation, if any.
309 * @return LY_ERR value.
310 */
311static LY_ERR
312lyd_parse(const struct ly_ctx *ctx, struct lyd_node *parent, struct lyd_node **first_p, struct ly_in *in,
313 LYD_FORMAT format, uint32_t parse_opts, uint32_t val_opts, struct lyd_node **op)
Radek Krejci7931b192020-06-25 17:05:03 +0200314{
Michal Vaskoe0665742021-02-11 11:08:44 +0100315 LY_ERR rc = LY_SUCCESS;
Radek Krejci1798aae2020-07-14 13:26:06 +0200316 struct lyd_ctx *lydctx = NULL;
Michal Vaskoe0665742021-02-11 11:08:44 +0100317 struct ly_set parsed = {0};
318 struct lyd_node *first;
319 uint32_t i;
Radek Krejci1798aae2020-07-14 13:26:06 +0200320
Michal Vaskoe0665742021-02-11 11:08:44 +0100321 assert(ctx && (parent || first_p));
Radek Krejci7931b192020-06-25 17:05:03 +0200322
323 format = lyd_parse_get_format(in, format);
Michal Vaskoe0665742021-02-11 11:08:44 +0100324 if (first_p) {
325 *first_p = NULL;
326 }
Radek Krejci1798aae2020-07-14 13:26:06 +0200327
Michal Vasko63f3d842020-07-08 10:10:14 +0200328 /* remember input position */
329 in->func_start = in->current;
Radek Krejci7931b192020-06-25 17:05:03 +0200330
Michal Vaskoe0665742021-02-11 11:08:44 +0100331 /* parse the data */
Radek Krejci7931b192020-06-25 17:05:03 +0200332 switch (format) {
333 case LYD_XML:
Michal Vaskoe0665742021-02-11 11:08:44 +0100334 rc = lyd_parse_xml(ctx, parent, first_p, in, parse_opts, val_opts, LYD_TYPE_YANG_DATA, NULL, &parsed, &lydctx);
Radek Krejci1798aae2020-07-14 13:26:06 +0200335 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200336 case LYD_JSON:
Michal Vaskoe0665742021-02-11 11:08:44 +0100337 rc = lyd_parse_json(ctx, parent, first_p, in, parse_opts, val_opts, LYD_TYPE_YANG_DATA, &parsed, &lydctx);
Radek Krejci1798aae2020-07-14 13:26:06 +0200338 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200339 case LYD_LYB:
Michal Vaskoe0665742021-02-11 11:08:44 +0100340 rc = lyd_parse_lyb(ctx, parent, first_p, in, parse_opts, val_opts, LYD_TYPE_YANG_DATA, &parsed, &lydctx);
Radek Krejci1798aae2020-07-14 13:26:06 +0200341 break;
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200342 case LYD_UNKNOWN:
Michal Vaskod74978f2021-02-12 11:59:36 +0100343 LOGARG(ctx, format);
344 rc = LY_EINVAL;
Michal Vaskoe0665742021-02-11 11:08:44 +0100345 break;
346 }
347 LY_CHECK_GOTO(rc, cleanup);
348
349 if (parent) {
350 /* get first top-level sibling */
351 for (first = parent; first->parent; first = lyd_parent(first)) {}
352 first = lyd_first_sibling(first);
353 first_p = &first;
Radek Krejci7931b192020-06-25 17:05:03 +0200354 }
355
Michal Vaskoe0665742021-02-11 11:08:44 +0100356 if (!(parse_opts & LYD_PARSE_ONLY)) {
357 /* validate data */
358 rc = lyd_validate(first_p, NULL, ctx, val_opts, 0, &lydctx->node_when, &lydctx->node_types,
359 &lydctx->meta_types, NULL);
360 LY_CHECK_GOTO(rc, cleanup);
361 }
Radek Krejci7931b192020-06-25 17:05:03 +0200362
Michal Vaskoe0665742021-02-11 11:08:44 +0100363 /* set the operation node */
364 if (op) {
365 *op = lydctx->op_node;
Radek Krejci1798aae2020-07-14 13:26:06 +0200366 }
367
368cleanup:
Michal Vaskoe0665742021-02-11 11:08:44 +0100369 if (lydctx) {
370 lydctx->free(lydctx);
Radek Krejci1798aae2020-07-14 13:26:06 +0200371 }
Michal Vaskoe0665742021-02-11 11:08:44 +0100372 if (rc) {
373 if (parent) {
374 /* free all the parsed subtrees */
375 for (i = 0; i < parsed.count; ++i) {
376 lyd_free_tree(parsed.dnodes[i]);
377 }
378 } else {
379 /* free everything */
380 lyd_free_all(*first_p);
381 *first_p = NULL;
382 }
383 }
384 ly_set_erase(&parsed, NULL);
385 return rc;
Radek Krejci7931b192020-06-25 17:05:03 +0200386}
387
388API LY_ERR
Michal Vaskoe0665742021-02-11 11:08:44 +0100389lyd_parse_data(const struct ly_ctx *ctx, struct lyd_node *parent, struct ly_in *in, LYD_FORMAT format,
390 uint32_t parse_options, uint32_t validate_options, struct lyd_node **tree)
391{
392 LY_CHECK_ARG_RET(ctx, ctx, in, parent || tree, LY_EINVAL);
393 LY_CHECK_ARG_RET(ctx, !(parse_options & ~LYD_PARSE_OPTS_MASK), LY_EINVAL);
394 LY_CHECK_ARG_RET(ctx, !(validate_options & ~LYD_VALIDATE_OPTS_MASK), LY_EINVAL);
395
396 return lyd_parse(ctx, parent, tree, in, format, parse_options, validate_options, NULL);
397}
398
399API LY_ERR
400lyd_parse_data_mem(const struct ly_ctx *ctx, const char *data, LYD_FORMAT format, uint32_t parse_options,
401 uint32_t validate_options, struct lyd_node **tree)
Radek Krejci7931b192020-06-25 17:05:03 +0200402{
403 LY_ERR ret;
404 struct ly_in *in;
405
406 LY_CHECK_RET(ly_in_new_memory(data, &in));
Michal Vaskoe0665742021-02-11 11:08:44 +0100407 ret = lyd_parse_data(ctx, NULL, in, format, parse_options, validate_options, tree);
Radek Krejci7931b192020-06-25 17:05:03 +0200408
409 ly_in_free(in, 0);
410 return ret;
411}
412
413API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200414lyd_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 +0200415 struct lyd_node **tree)
Radek Krejci7931b192020-06-25 17:05:03 +0200416{
417 LY_ERR ret;
418 struct ly_in *in;
419
420 LY_CHECK_RET(ly_in_new_fd(fd, &in));
Michal Vaskoe0665742021-02-11 11:08:44 +0100421 ret = lyd_parse_data(ctx, NULL, in, format, parse_options, validate_options, tree);
Radek Krejci7931b192020-06-25 17:05:03 +0200422
423 ly_in_free(in, 0);
424 return ret;
425}
426
427API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200428lyd_parse_data_path(const struct ly_ctx *ctx, const char *path, LYD_FORMAT format, uint32_t parse_options,
429 uint32_t validate_options, struct lyd_node **tree)
Radek Krejci7931b192020-06-25 17:05:03 +0200430{
431 LY_ERR ret;
432 struct ly_in *in;
433
434 LY_CHECK_RET(ly_in_new_filepath(path, 0, &in));
Michal Vaskoe0665742021-02-11 11:08:44 +0100435 ret = lyd_parse_data(ctx, NULL, in, format, parse_options, validate_options, tree);
Radek Krejci7931b192020-06-25 17:05:03 +0200436
437 ly_in_free(in, 0);
438 return ret;
439}
440
Radek Krejci7931b192020-06-25 17:05:03 +0200441API LY_ERR
Michal Vaskoe0665742021-02-11 11:08:44 +0100442lyd_parse_op(const struct ly_ctx *ctx, struct lyd_node *parent, struct ly_in *in, LYD_FORMAT format,
443 enum lyd_type data_type, struct lyd_node **tree, struct lyd_node **op)
Radek Krejci7931b192020-06-25 17:05:03 +0200444{
Michal Vaskoe0665742021-02-11 11:08:44 +0100445 LY_ERR rc = LY_SUCCESS;
446 struct lyd_ctx *lydctx = NULL;
447 struct ly_set parsed = {0};
448 struct lyd_node *first = NULL, *envp = NULL;
449 uint32_t i, parse_opts, val_opts;
Radek Krejci7931b192020-06-25 17:05:03 +0200450
Michal Vaskoe0665742021-02-11 11:08:44 +0100451 LY_CHECK_ARG_RET(ctx, ctx || parent, in, data_type, parent || tree || op, LY_EINVAL);
Radek Krejci1798aae2020-07-14 13:26:06 +0200452 if (tree) {
453 *tree = NULL;
454 }
455 if (op) {
456 *op = NULL;
457 }
458
Radek Krejci7931b192020-06-25 17:05:03 +0200459 format = lyd_parse_get_format(in, format);
Radek Krejci7931b192020-06-25 17:05:03 +0200460
Michal Vasko63f3d842020-07-08 10:10:14 +0200461 /* remember input position */
462 in->func_start = in->current;
463
Michal Vaskoe0665742021-02-11 11:08:44 +0100464 /* check params based on the data type */
465 if (data_type == LYD_TYPE_NETCONF_RPC) {
466 LY_CHECK_ARG_RET(ctx, format == LYD_XML, !parent, tree, op, LY_EINVAL);
467 } else if (data_type == LYD_TYPE_NETCONF_REPLY_OR_NOTIF) {
468 LY_CHECK_ARG_RET(ctx, format == LYD_XML, parent, parent->schema->nodetype & (LYS_RPC | LYS_ACTION), tree, op, LY_EINVAL);
469 }
470 parse_opts = LYD_PARSE_ONLY | LYD_PARSE_STRICT;
471 val_opts = 0;
472
473 /* parse the data */
Radek Krejci7931b192020-06-25 17:05:03 +0200474 switch (format) {
475 case LYD_XML:
Michal Vaskoe0665742021-02-11 11:08:44 +0100476 rc = lyd_parse_xml(ctx, parent, &first, in, parse_opts, val_opts, data_type, &envp, &parsed, &lydctx);
477 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200478 case LYD_JSON:
Michal Vaskoe0665742021-02-11 11:08:44 +0100479 rc = lyd_parse_json(ctx, parent, &first, in, parse_opts, val_opts, data_type, &parsed, &lydctx);
480 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200481 case LYD_LYB:
Michal Vaskoe0665742021-02-11 11:08:44 +0100482 rc = lyd_parse_lyb(ctx, parent, &first, in, parse_opts, val_opts, data_type, &parsed, &lydctx);
483 break;
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200484 case LYD_UNKNOWN:
Michal Vaskod74978f2021-02-12 11:59:36 +0100485 LOGARG(ctx, format);
486 rc = LY_EINVAL;
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200487 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200488 }
Michal Vaskoe0665742021-02-11 11:08:44 +0100489 LY_CHECK_GOTO(rc, cleanup);
Radek Krejci7931b192020-06-25 17:05:03 +0200490
Michal Vaskoe0665742021-02-11 11:08:44 +0100491 /* set out params correctly */
492 if (tree) {
493 if (envp) {
494 /* special out param meaning */
495 *tree = envp;
496 } else {
497 *tree = parent ? NULL : first;
498 }
499 }
500 if (op) {
501 *op = lydctx->op_node;
502 }
503
504cleanup:
505 if (lydctx) {
506 lydctx->free(lydctx);
507 }
508 if (rc) {
509 if (parent) {
510 /* free all the parsed subtrees */
511 for (i = 0; i < parsed.count; ++i) {
512 lyd_free_tree(parsed.dnodes[i]);
513 }
514 } else {
515 /* free everything (cannot occur in the current code, a safety) */
516 lyd_free_all(first);
517 if (tree) {
518 *tree = NULL;
519 }
520 if (op) {
521 *op = NULL;
522 }
523 }
524 }
525 ly_set_erase(&parsed, NULL);
526 return rc;
Radek Krejcie7b95092019-05-15 11:03:07 +0200527}
Radek Krejci084289f2019-07-09 17:35:30 +0200528
Michal Vasko90932a92020-02-12 14:33:03 +0100529LY_ERR
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200530lyd_create_term(const struct lysc_node *schema, const char *value, size_t value_len, ly_bool *dynamic,
531 LY_PREFIX_FORMAT format, void *prefix_data, uint32_t hints, ly_bool *incomplete, struct lyd_node **node)
Michal Vasko90932a92020-02-12 14:33:03 +0100532{
533 LY_ERR ret;
534 struct lyd_node_term *term;
535
Michal Vasko9b368d32020-02-14 13:53:31 +0100536 assert(schema->nodetype & LYD_NODE_TERM);
537
Michal Vasko90932a92020-02-12 14:33:03 +0100538 term = calloc(1, sizeof *term);
539 LY_CHECK_ERR_RET(!term, LOGMEM(schema->module->ctx), LY_EMEM);
540
541 term->schema = schema;
Michal Vasko9e685082021-01-29 14:49:09 +0100542 term->prev = &term->node;
Michal Vasko9b368d32020-02-14 13:53:31 +0100543 term->flags = LYD_NEW;
Michal Vasko90932a92020-02-12 14:33:03 +0100544
Radek Krejciddace2c2021-01-08 11:30:56 +0100545 LOG_LOCSET(schema, NULL, NULL, NULL);
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200546 ret = lyd_value_store(schema->module->ctx, &term->value, ((struct lysc_node_leaf *)term->schema)->type, value,
Radek Krejci2efc45b2020-12-22 16:25:44 +0100547 value_len, dynamic, format, prefix_data, hints, schema, incomplete);
Radek Krejciddace2c2021-01-08 11:30:56 +0100548 LOG_LOCBACK(1, 0, 0, 0);
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200549 LY_CHECK_ERR_RET(ret, free(term), ret);
Michal Vasko9e685082021-01-29 14:49:09 +0100550 lyd_hash(&term->node);
Michal Vasko9b368d32020-02-14 13:53:31 +0100551
Michal Vasko9e685082021-01-29 14:49:09 +0100552 *node = &term->node;
Michal Vasko9b368d32020-02-14 13:53:31 +0100553 return ret;
554}
555
556LY_ERR
557lyd_create_term2(const struct lysc_node *schema, const struct lyd_value *val, struct lyd_node **node)
558{
559 LY_ERR ret;
560 struct lyd_node_term *term;
561 struct lysc_type *type;
562
563 assert(schema->nodetype & LYD_NODE_TERM);
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200564 assert(val && val->canonical && val->realtype);
Michal Vasko9b368d32020-02-14 13:53:31 +0100565
566 term = calloc(1, sizeof *term);
567 LY_CHECK_ERR_RET(!term, LOGMEM(schema->module->ctx), LY_EMEM);
568
569 term->schema = schema;
Michal Vasko9e685082021-01-29 14:49:09 +0100570 term->prev = &term->node;
Michal Vasko9b368d32020-02-14 13:53:31 +0100571 term->flags = LYD_NEW;
572
573 type = ((struct lysc_node_leaf *)schema)->type;
574 ret = type->plugin->duplicate(schema->module->ctx, val, &term->value);
575 if (ret) {
576 LOGERR(schema->module->ctx, ret, "Value duplication failed.");
577 free(term);
578 return ret;
579 }
Michal Vasko9e685082021-01-29 14:49:09 +0100580 lyd_hash(&term->node);
Michal Vasko90932a92020-02-12 14:33:03 +0100581
Michal Vasko9e685082021-01-29 14:49:09 +0100582 *node = &term->node;
Michal Vasko90932a92020-02-12 14:33:03 +0100583 return ret;
584}
585
586LY_ERR
587lyd_create_inner(const struct lysc_node *schema, struct lyd_node **node)
588{
589 struct lyd_node_inner *in;
590
Michal Vasko9b368d32020-02-14 13:53:31 +0100591 assert(schema->nodetype & LYD_NODE_INNER);
592
Michal Vasko90932a92020-02-12 14:33:03 +0100593 in = calloc(1, sizeof *in);
594 LY_CHECK_ERR_RET(!in, LOGMEM(schema->module->ctx), LY_EMEM);
595
596 in->schema = schema;
Michal Vasko9e685082021-01-29 14:49:09 +0100597 in->prev = &in->node;
Michal Vasko9b368d32020-02-14 13:53:31 +0100598 in->flags = LYD_NEW;
Michal Vasko3383be72020-11-03 17:15:31 +0100599 if ((schema->nodetype == LYS_CONTAINER) && !(schema->flags & LYS_PRESENCE)) {
600 in->flags |= LYD_DEFAULT;
601 }
Michal Vasko90932a92020-02-12 14:33:03 +0100602
Michal Vasko9b368d32020-02-14 13:53:31 +0100603 /* do not hash list with keys, we need them for the hash */
604 if ((schema->nodetype != LYS_LIST) || (schema->flags & LYS_KEYLESS)) {
Michal Vasko9e685082021-01-29 14:49:09 +0100605 lyd_hash(&in->node);
Michal Vasko9b368d32020-02-14 13:53:31 +0100606 }
Michal Vasko90932a92020-02-12 14:33:03 +0100607
Michal Vasko9e685082021-01-29 14:49:09 +0100608 *node = &in->node;
Michal Vasko90932a92020-02-12 14:33:03 +0100609 return LY_SUCCESS;
610}
611
Michal Vasko90932a92020-02-12 14:33:03 +0100612LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +0200613lyd_create_list(const struct lysc_node *schema, const struct ly_path_predicate *predicates, struct lyd_node **node)
Michal Vasko90932a92020-02-12 14:33:03 +0100614{
615 LY_ERR ret = LY_SUCCESS;
Michal Vasko90932a92020-02-12 14:33:03 +0100616 struct lyd_node *list = NULL, *key;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200617 LY_ARRAY_COUNT_TYPE u;
Michal Vasko90932a92020-02-12 14:33:03 +0100618
Michal Vasko004d3152020-06-11 19:59:22 +0200619 assert((schema->nodetype == LYS_LIST) && !(schema->flags & LYS_KEYLESS));
Michal Vasko90932a92020-02-12 14:33:03 +0100620
621 /* create list */
622 LY_CHECK_GOTO(ret = lyd_create_inner(schema, &list), cleanup);
623
Radek Krejciddace2c2021-01-08 11:30:56 +0100624 LOG_LOCSET(NULL, list, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100625
Michal Vasko90932a92020-02-12 14:33:03 +0100626 /* create and insert all the keys */
Michal Vasko004d3152020-06-11 19:59:22 +0200627 LY_ARRAY_FOR(predicates, u) {
628 LY_CHECK_GOTO(ret = lyd_create_term2(predicates[u].key, &predicates[u].value, &key), cleanup);
Michal Vasko90932a92020-02-12 14:33:03 +0100629 lyd_insert_node(list, NULL, key);
630 }
631
Michal Vasko9b368d32020-02-14 13:53:31 +0100632 /* hash having all the keys */
633 lyd_hash(list);
634
Michal Vasko90932a92020-02-12 14:33:03 +0100635 /* success */
636 *node = list;
637 list = NULL;
638
639cleanup:
Radek Krejciddace2c2021-01-08 11:30:56 +0100640 LOG_LOCBACK(0, 1, 0, 0);
Michal Vasko90932a92020-02-12 14:33:03 +0100641 lyd_free_tree(list);
Michal Vasko004d3152020-06-11 19:59:22 +0200642 return ret;
643}
644
645static LY_ERR
646lyd_create_list2(const struct lysc_node *schema, const char *keys, size_t keys_len, struct lyd_node **node)
647{
648 LY_ERR ret = LY_SUCCESS;
649 struct lyxp_expr *expr = NULL;
650 uint16_t exp_idx = 0;
651 enum ly_path_pred_type pred_type = 0;
652 struct ly_path_predicate *predicates = NULL;
653
Radek Krejciddace2c2021-01-08 11:30:56 +0100654 LOG_LOCSET(schema, NULL, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100655
Michal Vasko004d3152020-06-11 19:59:22 +0200656 /* parse keys */
Michal Vasko6b26e742020-07-17 15:02:10 +0200657 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 +0200658 LY_PATH_PRED_KEYS, &expr), cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +0200659
660 /* compile them */
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200661 LY_CHECK_GOTO(ret = ly_path_compile_predicate(schema->module->ctx, NULL, NULL, schema, expr, &exp_idx, LY_PREF_JSON,
662 NULL, &predicates, &pred_type), cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +0200663
664 /* create the list node */
665 LY_CHECK_GOTO(ret = lyd_create_list(schema, predicates, node), cleanup);
666
667cleanup:
Radek Krejciddace2c2021-01-08 11:30:56 +0100668 LOG_LOCBACK(1, 0, 0, 0);
Michal Vasko004d3152020-06-11 19:59:22 +0200669 lyxp_expr_free(schema->module->ctx, expr);
Michal Vaskof7e16e22020-10-21 09:24:39 +0200670 ly_path_predicates_free(schema->module->ctx, pred_type, predicates);
Michal Vasko90932a92020-02-12 14:33:03 +0100671 return ret;
672}
673
674LY_ERR
Michal Vasko366a4a12020-12-04 16:23:57 +0100675lyd_create_any(const struct lysc_node *schema, const void *value, LYD_ANYDATA_VALUETYPE value_type, ly_bool use_value,
676 struct lyd_node **node)
Michal Vasko90932a92020-02-12 14:33:03 +0100677{
Michal Vasko366a4a12020-12-04 16:23:57 +0100678 LY_ERR ret;
Michal Vasko90932a92020-02-12 14:33:03 +0100679 struct lyd_node_any *any;
Michal Vasko366a4a12020-12-04 16:23:57 +0100680 union lyd_any_value any_val;
Michal Vasko90932a92020-02-12 14:33:03 +0100681
Michal Vasko9b368d32020-02-14 13:53:31 +0100682 assert(schema->nodetype & LYD_NODE_ANY);
683
Michal Vasko90932a92020-02-12 14:33:03 +0100684 any = calloc(1, sizeof *any);
685 LY_CHECK_ERR_RET(!any, LOGMEM(schema->module->ctx), LY_EMEM);
686
687 any->schema = schema;
Michal Vasko9e685082021-01-29 14:49:09 +0100688 any->prev = &any->node;
Michal Vasko9b368d32020-02-14 13:53:31 +0100689 any->flags = LYD_NEW;
Michal Vasko90932a92020-02-12 14:33:03 +0100690
Radek Krejci1798aae2020-07-14 13:26:06 +0200691 /* TODO: convert XML/JSON strings into a opaq data tree */
Michal Vasko366a4a12020-12-04 16:23:57 +0100692
693 if (use_value) {
694 any->value.str = value;
695 any->value_type = value_type;
696 } else {
697 any_val.str = value;
Michal Vasko9e685082021-01-29 14:49:09 +0100698 ret = lyd_any_copy_value(&any->node, &any_val, value_type);
Michal Vasko366a4a12020-12-04 16:23:57 +0100699 LY_CHECK_ERR_RET(ret, free(any), ret);
700 }
Michal Vasko9e685082021-01-29 14:49:09 +0100701 lyd_hash(&any->node);
Michal Vasko90932a92020-02-12 14:33:03 +0100702
Michal Vasko9e685082021-01-29 14:49:09 +0100703 *node = &any->node;
Michal Vasko90932a92020-02-12 14:33:03 +0100704 return LY_SUCCESS;
705}
706
Michal Vasko52927e22020-03-16 17:26:14 +0100707LY_ERR
Michal Vasko501af032020-11-11 20:27:44 +0100708lyd_create_opaq(const struct ly_ctx *ctx, const char *name, size_t name_len, const char *prefix, size_t pref_len,
709 const char *module_key, size_t module_key_len, const char *value, size_t value_len, ly_bool *dynamic,
710 LY_PREFIX_FORMAT format, void *val_prefix_data, uint32_t hints, struct lyd_node **node)
Michal Vasko52927e22020-03-16 17:26:14 +0100711{
Radek Krejci011e4aa2020-09-04 15:22:31 +0200712 LY_ERR ret = LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +0100713 struct lyd_node_opaq *opaq;
714
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200715 assert(ctx && name && name_len && format);
Michal Vasko52927e22020-03-16 17:26:14 +0100716
717 if (!value_len) {
718 value = "";
719 }
720
721 opaq = calloc(1, sizeof *opaq);
Michal Vasko501af032020-11-11 20:27:44 +0100722 LY_CHECK_ERR_GOTO(!opaq, LOGMEM(ctx); ret = LY_EMEM, finish);
Michal Vasko52927e22020-03-16 17:26:14 +0100723
Michal Vasko9e685082021-01-29 14:49:09 +0100724 opaq->prev = &opaq->node;
Michal Vaskoad92b672020-11-12 13:11:31 +0100725 LY_CHECK_GOTO(ret = lydict_insert(ctx, name, name_len, &opaq->name.name), finish);
Radek Krejci011e4aa2020-09-04 15:22:31 +0200726
Michal Vasko52927e22020-03-16 17:26:14 +0100727 if (pref_len) {
Michal Vaskoad92b672020-11-12 13:11:31 +0100728 LY_CHECK_GOTO(ret = lydict_insert(ctx, prefix, pref_len, &opaq->name.prefix), finish);
Michal Vasko52927e22020-03-16 17:26:14 +0100729 }
Radek Krejci1798aae2020-07-14 13:26:06 +0200730 if (module_key_len) {
Michal Vaskoad92b672020-11-12 13:11:31 +0100731 LY_CHECK_GOTO(ret = lydict_insert(ctx, module_key, module_key_len, &opaq->name.module_ns), finish);
Radek Krejci1798aae2020-07-14 13:26:06 +0200732 }
Michal Vasko52927e22020-03-16 17:26:14 +0100733 if (dynamic && *dynamic) {
Radek Krejci011e4aa2020-09-04 15:22:31 +0200734 LY_CHECK_GOTO(ret = lydict_insert_zc(ctx, (char *)value, &opaq->value), finish);
Michal Vasko52927e22020-03-16 17:26:14 +0100735 *dynamic = 0;
736 } else {
Radek Krejci011e4aa2020-09-04 15:22:31 +0200737 LY_CHECK_GOTO(ret = lydict_insert(ctx, value, value_len, &opaq->value), finish);
Michal Vasko52927e22020-03-16 17:26:14 +0100738 }
Michal Vasko501af032020-11-11 20:27:44 +0100739
740 opaq->format = format;
741 opaq->val_prefix_data = val_prefix_data;
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200742 opaq->hints = hints;
Michal Vasko52927e22020-03-16 17:26:14 +0100743 opaq->ctx = ctx;
744
Radek Krejci011e4aa2020-09-04 15:22:31 +0200745finish:
746 if (ret) {
Michal Vasko9e685082021-01-29 14:49:09 +0100747 lyd_free_tree(&opaq->node);
Michal Vasko501af032020-11-11 20:27:44 +0100748 ly_free_prefix_data(format, val_prefix_data);
Radek Krejci011e4aa2020-09-04 15:22:31 +0200749 } else {
Michal Vasko9e685082021-01-29 14:49:09 +0100750 *node = &opaq->node;
Radek Krejci011e4aa2020-09-04 15:22:31 +0200751 }
752 return ret;
Michal Vasko52927e22020-03-16 17:26:14 +0100753}
754
Michal Vasko3a41dff2020-07-15 14:30:28 +0200755API LY_ERR
Michal Vasko65243892020-12-04 16:26:21 +0100756lyd_new_inner(struct lyd_node *parent, const struct lys_module *module, const char *name, ly_bool output,
757 struct lyd_node **node)
Michal Vasko013a8182020-03-03 10:46:53 +0100758{
759 struct lyd_node *ret = NULL;
760 const struct lysc_node *schema;
761 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
762
Michal Vasko6027eb92020-07-15 16:37:30 +0200763 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100764
Michal Vaskof03ed032020-03-04 13:31:44 +0100765 if (!module) {
766 module = parent->schema->module;
767 }
768
Michal Vasko3a41dff2020-07-15 14:30:28 +0200769 schema = lys_find_child(parent ? parent->schema : NULL, module, name, 0,
Radek Krejci41ac9942020-11-02 14:47:56 +0100770 LYS_CONTAINER | LYS_NOTIF | LYS_RPC | LYS_ACTION, output ? LYS_GETNEXT_OUTPUT : 0);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200771 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 +0100772
Michal Vasko3a41dff2020-07-15 14:30:28 +0200773 LY_CHECK_RET(lyd_create_inner(schema, &ret));
774 if (parent) {
Michal Vasko013a8182020-03-03 10:46:53 +0100775 lyd_insert_node(parent, NULL, ret);
776 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200777
778 if (node) {
779 *node = ret;
780 }
781 return LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +0100782}
783
Michal Vasko3a41dff2020-07-15 14:30:28 +0200784API LY_ERR
Michal Vasko65243892020-12-04 16:26:21 +0100785lyd_new_list(struct lyd_node *parent, const struct lys_module *module, const char *name, ly_bool output,
786 struct lyd_node **node, ...)
Michal Vasko013a8182020-03-03 10:46:53 +0100787{
788 struct lyd_node *ret = NULL, *key;
789 const struct lysc_node *schema, *key_s;
790 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
791 va_list ap;
792 const char *key_val;
793 LY_ERR rc = LY_SUCCESS;
794
Michal Vasko6027eb92020-07-15 16:37:30 +0200795 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100796
Michal Vaskof03ed032020-03-04 13:31:44 +0100797 if (!module) {
798 module = parent->schema->module;
799 }
800
Radek Krejci41ac9942020-11-02 14:47:56 +0100801 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 +0200802 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "List node \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +0100803
804 /* create list inner node */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200805 LY_CHECK_RET(lyd_create_inner(schema, &ret));
Michal Vasko013a8182020-03-03 10:46:53 +0100806
Michal Vasko3a41dff2020-07-15 14:30:28 +0200807 va_start(ap, node);
Michal Vasko013a8182020-03-03 10:46:53 +0100808
809 /* create and insert all the keys */
Michal Vasko544e58a2021-01-28 14:33:41 +0100810 for (key_s = lysc_node_child(schema); key_s && (key_s->flags & LYS_KEY); key_s = key_s->next) {
Michal Vasko013a8182020-03-03 10:46:53 +0100811 key_val = va_arg(ap, const char *);
812
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200813 rc = lyd_create_term(key_s, key_val, key_val ? strlen(key_val) : 0, NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA,
814 NULL, &key);
815 LY_CHECK_GOTO(rc, cleanup);
Michal Vasko013a8182020-03-03 10:46:53 +0100816 lyd_insert_node(ret, NULL, key);
817 }
818
Michal Vasko013a8182020-03-03 10:46:53 +0100819 if (parent) {
820 lyd_insert_node(parent, NULL, ret);
821 }
822
823cleanup:
Michal Vasko3a41dff2020-07-15 14:30:28 +0200824 va_end(ap);
Michal Vasko013a8182020-03-03 10:46:53 +0100825 if (rc) {
826 lyd_free_tree(ret);
827 ret = NULL;
Michal Vasko3a41dff2020-07-15 14:30:28 +0200828 } else if (node) {
829 *node = ret;
Michal Vasko013a8182020-03-03 10:46:53 +0100830 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200831 return rc;
Michal Vasko013a8182020-03-03 10:46:53 +0100832}
833
Michal Vasko3a41dff2020-07-15 14:30:28 +0200834API LY_ERR
835lyd_new_list2(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *keys,
Radek Krejci41ac9942020-11-02 14:47:56 +0100836 ly_bool output, struct lyd_node **node)
Michal Vasko013a8182020-03-03 10:46:53 +0100837{
838 struct lyd_node *ret = NULL;
839 const struct lysc_node *schema;
840 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
841
Michal Vasko6027eb92020-07-15 16:37:30 +0200842 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100843
Michal Vaskof03ed032020-03-04 13:31:44 +0100844 if (!module) {
845 module = parent->schema->module;
846 }
Michal Vasko004d3152020-06-11 19:59:22 +0200847 if (!keys) {
848 keys = "";
849 }
Michal Vaskof03ed032020-03-04 13:31:44 +0100850
Michal Vasko004d3152020-06-11 19:59:22 +0200851 /* find schema node */
Radek Krejci41ac9942020-11-02 14:47:56 +0100852 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 +0200853 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "List node \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +0100854
Michal Vasko004d3152020-06-11 19:59:22 +0200855 if ((schema->flags & LYS_KEYLESS) && !keys[0]) {
856 /* key-less list */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200857 LY_CHECK_RET(lyd_create_inner(schema, &ret));
Michal Vasko004d3152020-06-11 19:59:22 +0200858 } else {
859 /* create the list node */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200860 LY_CHECK_RET(lyd_create_list2(schema, keys, strlen(keys), &ret));
Michal Vasko004d3152020-06-11 19:59:22 +0200861 }
Michal Vasko004d3152020-06-11 19:59:22 +0200862 if (parent) {
Michal Vasko013a8182020-03-03 10:46:53 +0100863 lyd_insert_node(parent, NULL, ret);
864 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200865
866 if (node) {
867 *node = ret;
868 }
869 return LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +0100870}
871
Michal Vasko3a41dff2020-07-15 14:30:28 +0200872API LY_ERR
873lyd_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 +0100874 ly_bool output, struct lyd_node **node)
Michal Vasko013a8182020-03-03 10:46:53 +0100875{
Michal Vaskocbff3e92020-05-27 12:56:41 +0200876 LY_ERR rc;
Michal Vasko013a8182020-03-03 10:46:53 +0100877 struct lyd_node *ret = NULL;
878 const struct lysc_node *schema;
879 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
880
Michal Vasko6027eb92020-07-15 16:37:30 +0200881 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100882
Michal Vaskof03ed032020-03-04 13:31:44 +0100883 if (!module) {
884 module = parent->schema->module;
885 }
886
Radek Krejci41ac9942020-11-02 14:47:56 +0100887 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 +0200888 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "Term node \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +0100889
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200890 rc = lyd_create_term(schema, val_str, val_str ? strlen(val_str) : 0, NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, NULL,
891 &ret);
892 LY_CHECK_RET(rc);
Michal Vaskocbff3e92020-05-27 12:56:41 +0200893 if (parent) {
Michal Vasko013a8182020-03-03 10:46:53 +0100894 lyd_insert_node(parent, NULL, ret);
895 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200896
897 if (node) {
898 *node = ret;
899 }
900 return LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +0100901}
902
Michal Vasko3a41dff2020-07-15 14:30:28 +0200903API LY_ERR
Michal Vasko219006c2020-12-04 16:26:52 +0100904lyd_new_any(struct lyd_node *parent, const struct lys_module *module, const char *name, void *value,
Radek Krejci41ac9942020-11-02 14:47:56 +0100905 LYD_ANYDATA_VALUETYPE value_type, ly_bool output, struct lyd_node **node)
Michal Vasko013a8182020-03-03 10:46:53 +0100906{
907 struct lyd_node *ret = NULL;
908 const struct lysc_node *schema;
909 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
910
Michal Vasko6027eb92020-07-15 16:37:30 +0200911 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100912
Michal Vaskof03ed032020-03-04 13:31:44 +0100913 if (!module) {
914 module = parent->schema->module;
915 }
916
Radek Krejci41ac9942020-11-02 14:47:56 +0100917 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 +0200918 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "Any node \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +0100919
Michal Vasko366a4a12020-12-04 16:23:57 +0100920 LY_CHECK_RET(lyd_create_any(schema, value, value_type, 1, &ret));
Michal Vasko3a41dff2020-07-15 14:30:28 +0200921 if (parent) {
Michal Vasko013a8182020-03-03 10:46:53 +0100922 lyd_insert_node(parent, NULL, ret);
923 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200924
925 if (node) {
926 *node = ret;
927 }
928 return LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +0100929}
930
Michal Vasko4490d312020-06-16 13:08:55 +0200931/**
932 * @brief Update node value.
933 *
934 * @param[in] node Node to update.
935 * @param[in] value New value to set.
936 * @param[in] value_type Type of @p value for any node.
937 * @param[out] new_parent Set to @p node if the value was updated, otherwise set to NULL.
938 * @param[out] new_node Set to @p node if the value was updated, otherwise set to NULL.
939 * @return LY_ERR value.
940 */
Michal Vasko00cbf532020-06-15 13:58:47 +0200941static LY_ERR
942lyd_new_path_update(struct lyd_node *node, const void *value, LYD_ANYDATA_VALUETYPE value_type,
Radek Krejci0f969882020-08-21 16:56:47 +0200943 struct lyd_node **new_parent, struct lyd_node **new_node)
Michal Vasko00cbf532020-06-15 13:58:47 +0200944{
945 LY_ERR ret = LY_SUCCESS;
946 struct lyd_node *new_any;
947
948 switch (node->schema->nodetype) {
949 case LYS_CONTAINER:
950 case LYS_NOTIF:
951 case LYS_RPC:
952 case LYS_ACTION:
953 case LYS_LIST:
954 case LYS_LEAFLIST:
955 /* if it exists, there is nothing to update */
956 *new_parent = NULL;
957 *new_node = NULL;
958 break;
959 case LYS_LEAF:
960 ret = lyd_change_term(node, value);
961 if ((ret == LY_SUCCESS) || (ret == LY_EEXIST)) {
962 /* there was an actual change (at least of the default flag) */
963 *new_parent = node;
964 *new_node = node;
965 ret = LY_SUCCESS;
966 } else if (ret == LY_ENOT) {
967 /* no change */
968 *new_parent = NULL;
969 *new_node = NULL;
970 ret = LY_SUCCESS;
971 } /* else error */
972 break;
973 case LYS_ANYDATA:
974 case LYS_ANYXML:
975 /* create a new any node */
Michal Vasko366a4a12020-12-04 16:23:57 +0100976 LY_CHECK_RET(lyd_create_any(node->schema, value, value_type, 0, &new_any));
Michal Vasko00cbf532020-06-15 13:58:47 +0200977
978 /* compare with the existing one */
Michal Vasko8f359bf2020-07-28 10:41:15 +0200979 if (lyd_compare_single(node, new_any, 0)) {
Michal Vasko00cbf532020-06-15 13:58:47 +0200980 /* not equal, switch values (so that we can use generic node free) */
981 ((struct lyd_node_any *)new_any)->value = ((struct lyd_node_any *)node)->value;
982 ((struct lyd_node_any *)new_any)->value_type = ((struct lyd_node_any *)node)->value_type;
983 ((struct lyd_node_any *)node)->value.str = value;
984 ((struct lyd_node_any *)node)->value_type = value_type;
985
986 *new_parent = node;
987 *new_node = node;
988 } else {
989 /* they are equal */
990 *new_parent = NULL;
991 *new_node = NULL;
992 }
993 lyd_free_tree(new_any);
994 break;
995 default:
Michal Vaskob7be7a82020-08-20 09:09:04 +0200996 LOGINT(LYD_CTX(node));
Michal Vasko00cbf532020-06-15 13:58:47 +0200997 ret = LY_EINT;
998 break;
999 }
1000
1001 return ret;
1002}
1003
Michal Vasko3a41dff2020-07-15 14:30:28 +02001004API LY_ERR
Michal Vasko871a0252020-11-11 18:35:24 +01001005lyd_new_meta(const struct ly_ctx *ctx, struct lyd_node *parent, const struct lys_module *module, const char *name,
1006 const char *val_str, ly_bool clear_dflt, struct lyd_meta **meta)
Michal Vaskod86997b2020-05-26 15:19:54 +02001007{
Michal Vaskod86997b2020-05-26 15:19:54 +02001008 const char *prefix, *tmp;
Michal Vaskod86997b2020-05-26 15:19:54 +02001009 size_t pref_len, name_len;
1010
Michal Vasko871a0252020-11-11 18:35:24 +01001011 LY_CHECK_ARG_RET(NULL, ctx, name, module || strchr(name, ':'), parent || meta, LY_EINVAL);
Michal Vasko00cbf532020-06-15 13:58:47 +02001012
Michal Vasko871a0252020-11-11 18:35:24 +01001013 if (parent && !parent->schema) {
1014 LOGERR(ctx, LY_EINVAL, "Cannot add metadata to an opaque node \"%s\".", ((struct lyd_node_opaq *)parent)->name);
1015 return LY_EINVAL;
1016 }
Michal Vasko610553d2020-11-18 18:15:05 +01001017 if (meta) {
1018 *meta = NULL;
1019 }
Michal Vaskod86997b2020-05-26 15:19:54 +02001020
1021 /* parse the name */
1022 tmp = name;
1023 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
1024 LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name);
Michal Vasko871a0252020-11-11 18:35:24 +01001025 return LY_EINVAL;
Michal Vaskod86997b2020-05-26 15:19:54 +02001026 }
1027
1028 /* find the module */
1029 if (prefix) {
Radek Krejci0ad51f12020-07-16 12:08:12 +02001030 module = ly_ctx_get_module_implemented2(ctx, prefix, pref_len);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001031 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 +02001032 }
1033
1034 /* set value if none */
1035 if (!val_str) {
1036 val_str = "";
1037 }
1038
Michal Vasko871a0252020-11-11 18:35:24 +01001039 return lyd_create_meta(parent, meta, module, name, name_len, val_str, strlen(val_str), NULL, LY_PREF_JSON,
1040 NULL, LYD_HINT_DATA, clear_dflt, NULL);
1041}
Michal Vasko3a41dff2020-07-15 14:30:28 +02001042
Michal Vaskoba696702020-11-11 19:12:45 +01001043API LY_ERR
1044lyd_new_meta2(const struct ly_ctx *ctx, struct lyd_node *parent, ly_bool clear_dflt, const struct lyd_attr *attr,
1045 struct lyd_meta **meta)
1046{
1047 const struct lys_module *mod;
1048
1049 LY_CHECK_ARG_RET(NULL, ctx, attr, parent || meta, LY_EINVAL);
1050
1051 if (parent && !parent->schema) {
1052 LOGERR(ctx, LY_EINVAL, "Cannot add metadata to an opaque node \"%s\".", ((struct lyd_node_opaq *)parent)->name);
1053 return LY_EINVAL;
Michal Vasko3a41dff2020-07-15 14:30:28 +02001054 }
Michal Vasko610553d2020-11-18 18:15:05 +01001055 if (meta) {
1056 *meta = NULL;
1057 }
Michal Vaskoba696702020-11-11 19:12:45 +01001058
1059 switch (attr->format) {
1060 case LY_PREF_XML:
Michal Vaskoad92b672020-11-12 13:11:31 +01001061 mod = ly_ctx_get_module_implemented_ns(ctx, attr->name.module_ns);
Michal Vaskoba696702020-11-11 19:12:45 +01001062 if (!mod) {
Michal Vaskoad92b672020-11-12 13:11:31 +01001063 LOGERR(ctx, LY_EINVAL, "Module with namespace \"%s\" not found.", attr->name.module_ns);
Michal Vaskoba696702020-11-11 19:12:45 +01001064 return LY_ENOTFOUND;
1065 }
1066 break;
1067 case LY_PREF_JSON:
Michal Vaskoad92b672020-11-12 13:11:31 +01001068 mod = ly_ctx_get_module_implemented(ctx, attr->name.module_name);
Michal Vaskoba696702020-11-11 19:12:45 +01001069 if (!mod) {
Michal Vaskoad92b672020-11-12 13:11:31 +01001070 LOGERR(ctx, LY_EINVAL, "Module \"%s\" not found.", attr->name.module_name);
Michal Vaskoba696702020-11-11 19:12:45 +01001071 return LY_ENOTFOUND;
1072 }
1073 break;
1074 default:
1075 LOGINT_RET(ctx);
1076 }
1077
Michal Vaskoad92b672020-11-12 13:11:31 +01001078 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 +01001079 NULL, attr->format, attr->val_prefix_data, attr->hints, clear_dflt, NULL);
Michal Vaskod86997b2020-05-26 15:19:54 +02001080}
1081
Michal Vasko3a41dff2020-07-15 14:30:28 +02001082API LY_ERR
Michal Vasko00cbf532020-06-15 13:58:47 +02001083lyd_new_opaq(struct lyd_node *parent, const struct ly_ctx *ctx, const char *name, const char *value,
Radek Krejci0f969882020-08-21 16:56:47 +02001084 const char *module_name, struct lyd_node **node)
Michal Vasko00cbf532020-06-15 13:58:47 +02001085{
1086 struct lyd_node *ret = NULL;
1087
Michal Vasko6027eb92020-07-15 16:37:30 +02001088 LY_CHECK_ARG_RET(ctx, parent || ctx, parent || node, name, module_name, LY_EINVAL);
Michal Vasko00cbf532020-06-15 13:58:47 +02001089
1090 if (!ctx) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001091 ctx = LYD_CTX(parent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001092 }
1093 if (!value) {
1094 value = "";
1095 }
1096
Michal Vasko501af032020-11-11 20:27:44 +01001097 LY_CHECK_RET(lyd_create_opaq(ctx, name, strlen(name), NULL, 0, module_name, strlen(module_name), value,
1098 strlen(value), NULL, LY_PREF_JSON, NULL, 0, &ret));
Michal Vasko3a41dff2020-07-15 14:30:28 +02001099 if (parent) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001100 lyd_insert_node(parent, NULL, ret);
1101 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02001102
1103 if (node) {
1104 *node = ret;
1105 }
1106 return LY_SUCCESS;
Michal Vasko00cbf532020-06-15 13:58:47 +02001107}
1108
Michal Vasko3a41dff2020-07-15 14:30:28 +02001109API LY_ERR
1110lyd_new_attr(struct lyd_node *parent, const char *module_name, const char *name, const char *val_str,
Radek Krejci0f969882020-08-21 16:56:47 +02001111 struct lyd_attr **attr)
Michal Vasko00cbf532020-06-15 13:58:47 +02001112{
Radek Krejci1798aae2020-07-14 13:26:06 +02001113 struct lyd_attr *ret = NULL;
Michal Vasko00cbf532020-06-15 13:58:47 +02001114 const struct ly_ctx *ctx;
1115 const char *prefix, *tmp;
Michal Vasko51d21b82020-11-13 18:03:54 +01001116 size_t pref_len, name_len, mod_len;
Michal Vasko00cbf532020-06-15 13:58:47 +02001117
Michal Vasko3a41dff2020-07-15 14:30:28 +02001118 LY_CHECK_ARG_RET(NULL, parent, !parent->schema, name, LY_EINVAL);
Michal Vasko00cbf532020-06-15 13:58:47 +02001119
Michal Vaskob7be7a82020-08-20 09:09:04 +02001120 ctx = LYD_CTX(parent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001121
1122 /* parse the name */
1123 tmp = name;
1124 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
1125 LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001126 return LY_EVALID;
Michal Vasko00cbf532020-06-15 13:58:47 +02001127 }
1128
Michal Vasko51d21b82020-11-13 18:03:54 +01001129 /* get the module */
1130 if (module_name) {
1131 mod_len = strlen(module_name);
1132 } else {
1133 module_name = prefix;
1134 mod_len = pref_len;
1135 }
1136
Michal Vasko00cbf532020-06-15 13:58:47 +02001137 /* set value if none */
1138 if (!val_str) {
1139 val_str = "";
1140 }
1141
Michal Vasko51d21b82020-11-13 18:03:54 +01001142 LY_CHECK_RET(lyd_create_attr(parent, &ret, ctx, name, name_len, prefix, pref_len, module_name, mod_len, val_str,
1143 strlen(val_str), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA));
Michal Vasko3a41dff2020-07-15 14:30:28 +02001144
1145 if (attr) {
1146 *attr = ret;
1147 }
1148 return LY_SUCCESS;
Michal Vasko00cbf532020-06-15 13:58:47 +02001149}
1150
1151API LY_ERR
1152lyd_change_term(struct lyd_node *term, const char *val_str)
1153{
1154 LY_ERR ret = LY_SUCCESS;
1155 struct lysc_type *type;
1156 struct lyd_node_term *t;
1157 struct lyd_node *parent;
1158 struct lyd_value val = {0};
Radek Krejci857189e2020-09-01 13:26:36 +02001159 ly_bool dflt_change, val_change;
Michal Vasko00cbf532020-06-15 13:58:47 +02001160
1161 LY_CHECK_ARG_RET(NULL, term, term->schema, term->schema->nodetype & LYD_NODE_TERM, LY_EINVAL);
1162
1163 if (!val_str) {
1164 val_str = "";
1165 }
1166 t = (struct lyd_node_term *)term;
1167 type = ((struct lysc_node_leaf *)term->schema)->type;
1168
1169 /* parse the new value */
Radek Krejciddace2c2021-01-08 11:30:56 +01001170 LOG_LOCSET(term->schema, term, NULL, NULL);
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001171 ret = lyd_value_store(LYD_CTX(term), &val, type, val_str, strlen(val_str), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA,
Radek Krejci2efc45b2020-12-22 16:25:44 +01001172 term->schema, NULL);
Radek Krejciddace2c2021-01-08 11:30:56 +01001173 LOG_LOCBACK(term->schema ? 1 : 0, 1, 0, 0);
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001174 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001175
1176 /* compare original and new value */
1177 if (type->plugin->compare(&t->value, &val)) {
1178 /* values differ, switch them */
Michal Vaskob7be7a82020-08-20 09:09:04 +02001179 type->plugin->free(LYD_CTX(term), &t->value);
Michal Vasko00cbf532020-06-15 13:58:47 +02001180 t->value = val;
1181 memset(&val, 0, sizeof val);
1182 val_change = 1;
1183 } else {
1184 val_change = 0;
1185 }
1186
1187 /* always clear the default flag */
1188 if (term->flags & LYD_DEFAULT) {
Michal Vasko9e685082021-01-29 14:49:09 +01001189 for (parent = term; parent; parent = lyd_parent(parent)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001190 parent->flags &= ~LYD_DEFAULT;
1191 }
1192 dflt_change = 1;
1193 } else {
1194 dflt_change = 0;
1195 }
1196
1197 if (val_change || dflt_change) {
1198 /* make the node non-validated */
1199 term->flags &= LYD_NEW;
1200 }
1201
1202 if (val_change) {
1203 if (term->schema->nodetype == LYS_LEAFLIST) {
1204 /* leaf-list needs to be hashed again and re-inserted into parent */
1205 lyd_unlink_hash(term);
1206 lyd_hash(term);
1207 LY_CHECK_GOTO(ret = lyd_insert_hash(term), cleanup);
1208 } else if ((term->schema->flags & LYS_KEY) && term->parent) {
1209 /* list needs to be updated if its key was changed */
1210 assert(term->parent->schema->nodetype == LYS_LIST);
Michal Vasko9e685082021-01-29 14:49:09 +01001211 lyd_unlink_hash(lyd_parent(term));
1212 lyd_hash(lyd_parent(term));
1213 LY_CHECK_GOTO(ret = lyd_insert_hash(lyd_parent(term)), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001214 } /* else leaf that is not a key, its value is not used for its hash so it does not change */
1215 }
1216
1217 /* retrun value */
1218 if (!val_change) {
1219 if (dflt_change) {
1220 /* only default flag change */
1221 ret = LY_EEXIST;
1222 } else {
1223 /* no change */
1224 ret = LY_ENOT;
1225 }
1226 } /* else value changed, LY_SUCCESS */
1227
1228cleanup:
Michal Vasko59512fc2020-12-09 18:13:29 +01001229 if (val.realtype) {
1230 type->plugin->free(LYD_CTX(term), &val);
1231 }
Michal Vasko00cbf532020-06-15 13:58:47 +02001232 return ret;
1233}
1234
Michal Vasko41586352020-07-13 13:54:25 +02001235API LY_ERR
1236lyd_change_meta(struct lyd_meta *meta, const char *val_str)
1237{
1238 LY_ERR ret = LY_SUCCESS;
Radek Krejci2b18bf12020-11-06 11:20:20 +01001239 struct lyd_meta *m2 = NULL;
Michal Vasko41586352020-07-13 13:54:25 +02001240 struct lyd_value val;
Radek Krejci857189e2020-09-01 13:26:36 +02001241 ly_bool val_change;
Michal Vasko41586352020-07-13 13:54:25 +02001242
1243 LY_CHECK_ARG_RET(NULL, meta, LY_EINVAL);
1244
1245 if (!val_str) {
1246 val_str = "";
1247 }
1248
1249 /* parse the new value into a new meta structure */
1250 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 +01001251 strlen(val_str), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, 0, NULL), cleanup);
Michal Vasko41586352020-07-13 13:54:25 +02001252
1253 /* compare original and new value */
1254 if (lyd_compare_meta(meta, m2)) {
1255 /* values differ, switch them */
1256 val = meta->value;
1257 meta->value = m2->value;
1258 m2->value = val;
1259 val_change = 1;
1260 } else {
1261 val_change = 0;
1262 }
1263
1264 /* retrun value */
1265 if (!val_change) {
1266 /* no change */
1267 ret = LY_ENOT;
1268 } /* else value changed, LY_SUCCESS */
1269
1270cleanup:
Michal Vasko1a66a5d2020-11-18 18:15:37 +01001271 lyd_free_meta_single(m2);
Michal Vasko41586352020-07-13 13:54:25 +02001272 return ret;
1273}
1274
Michal Vasko3a41dff2020-07-15 14:30:28 +02001275API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001276lyd_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 +02001277 struct lyd_node **node)
Michal Vasko00cbf532020-06-15 13:58:47 +02001278{
Michal Vasko3a41dff2020-07-15 14:30:28 +02001279 return lyd_new_path2(parent, ctx, path, value, 0, options, node, NULL);
Michal Vasko00cbf532020-06-15 13:58:47 +02001280}
1281
Michal Vasko6741dc62021-02-04 09:27:45 +01001282static LY_ERR
1283lyd_new_path_check_find_lypath(struct ly_path *path, const char *str_path, const char *value, uint32_t options)
1284{
1285 LY_ERR ret = LY_SUCCESS, r;
1286 const struct lysc_node *schema;
1287 struct ly_path_predicate *pred;
Michal Vasko6f9b4262021-02-04 12:09:56 +01001288 LY_ARRAY_COUNT_TYPE u, new_count;
Michal Vasko6741dc62021-02-04 09:27:45 +01001289
1290 assert(path);
1291
1292 /* go through all the compiled nodes */
1293 LY_ARRAY_FOR(path, u) {
1294 schema = path[u].node;
Michal Vasko6f9b4262021-02-04 12:09:56 +01001295 new_count = u + 1;
Michal Vasko6741dc62021-02-04 09:27:45 +01001296 if ((schema->nodetype == LYS_LIST) && (path[u].pred_type == LY_PATH_PREDTYPE_NONE)) {
1297 if (schema->flags & LYS_KEYLESS) {
1298 /* creating a new keyless list instance */
1299 break;
1300 } else if ((u < LY_ARRAY_COUNT(path) - 1) || !(options & LYD_NEW_PATH_OPAQ)) {
1301 LOG_LOCSET(schema, NULL, NULL, NULL);
1302 LOGVAL(schema->module->ctx, LYVE_XPATH, "Predicate missing for %s \"%s\" in path \"%s\".",
1303 lys_nodetype2str(schema->nodetype), schema->name, str_path);
1304 LOG_LOCBACK(1, 0, 0, 0);
1305 return LY_EINVAL;
1306 } /* else creating an opaque list without keys */
1307 }
1308 }
1309
Michal Vasko6f9b4262021-02-04 12:09:56 +01001310 if ((schema->nodetype == LYS_LEAFLIST) && (path[new_count - 1].pred_type == LY_PATH_PREDTYPE_NONE)) {
Michal Vasko6741dc62021-02-04 09:27:45 +01001311 /* parse leafref value into a predicate, if not defined in the path */
1312 if (!value) {
1313 value = "";
1314 }
1315
1316 r = LY_SUCCESS;
1317 if (options & LYD_NEW_PATH_OPAQ) {
1318 r = lys_value_validate(NULL, schema, value, strlen(value));
1319 }
1320 if (!r) {
1321 /* store the new predicate */
Michal Vasko6f9b4262021-02-04 12:09:56 +01001322 path[new_count - 1].pred_type = LY_PATH_PREDTYPE_LEAFLIST;
1323 LY_ARRAY_NEW_GOTO(schema->module->ctx, path[new_count - 1].predicates, pred, ret, cleanup);
Michal Vasko6741dc62021-02-04 09:27:45 +01001324
1325 ret = lyd_value_store(schema->module->ctx, &pred->value, ((struct lysc_node_leaflist *)schema)->type, value,
1326 strlen(value), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, schema, NULL);
1327 LY_CHECK_GOTO(ret, cleanup);
1328 ++((struct lysc_type *)pred->value.realtype)->refcount;
1329
1330 if (schema->flags & LYS_CONFIG_R) {
1331 /* creating a new state leaf-list instance */
Michal Vasko6f9b4262021-02-04 12:09:56 +01001332 --new_count;
Michal Vasko6741dc62021-02-04 09:27:45 +01001333 }
1334 } /* else we have opaq flag and the value is not valid, leave no predicate and then create an opaque node */
1335 }
1336
1337 /* hide the nodes that should always be created so they are not found */
Michal Vasko6f9b4262021-02-04 12:09:56 +01001338 while (new_count < LY_ARRAY_COUNT(path)) {
Michal Vasko6741dc62021-02-04 09:27:45 +01001339 LY_ARRAY_DECREMENT(path);
1340 }
1341
1342cleanup:
1343 return ret;
1344}
1345
Michal Vasko00cbf532020-06-15 13:58:47 +02001346API LY_ERR
1347lyd_new_path2(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const void *value,
Radek Krejci1deb5be2020-08-26 16:43:36 +02001348 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 +02001349{
1350 LY_ERR ret = LY_SUCCESS, r;
1351 struct lyxp_expr *exp = NULL;
1352 struct ly_path *p = NULL;
1353 struct lyd_node *nparent = NULL, *nnode = NULL, *node = NULL, *cur_parent;
1354 const struct lysc_node *schema;
Michal Vasko6741dc62021-02-04 09:27:45 +01001355 LY_ARRAY_COUNT_TYPE path_idx = 0, orig_count;
Michal Vasko00cbf532020-06-15 13:58:47 +02001356
1357 LY_CHECK_ARG_RET(ctx, parent || ctx, path, (path[0] == '/') || parent, LY_EINVAL);
1358
1359 if (!ctx) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001360 ctx = LYD_CTX(parent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001361 }
1362
1363 /* parse path */
Michal Vasko6b26e742020-07-17 15:02:10 +02001364 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 +02001365 LY_PATH_PREFIX_OPTIONAL, LY_PATH_PRED_SIMPLE, &exp), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001366
1367 /* compile path */
1368 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 +02001369 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 +01001370 NULL, NULL, &p), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001371
Michal Vasko6741dc62021-02-04 09:27:45 +01001372 /* check the compiled path before searching existing nodes, it may be shortened */
1373 orig_count = LY_ARRAY_COUNT(p);
1374 LY_CHECK_GOTO(ret = lyd_new_path_check_find_lypath(p, path, value, options), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001375
1376 /* try to find any existing nodes in the path */
1377 if (parent) {
1378 ret = ly_path_eval_partial(p, parent, &path_idx, &node);
1379 if (ret == LY_SUCCESS) {
Michal Vasko6741dc62021-02-04 09:27:45 +01001380 if (orig_count == LY_ARRAY_COUNT(p)) {
1381 /* the node exists, are we supposed to update it or is it just a default? */
1382 if (!(options & LYD_NEW_PATH_UPDATE) && !(node->flags & LYD_DEFAULT)) {
1383 LOG_LOCSET(NULL, node, NULL, NULL);
1384 LOGVAL(ctx, LYVE_REFERENCE, "Path \"%s\" already exists", path);
1385 LOG_LOCBACK(0, 1, 0, 0);
1386 ret = LY_EEXIST;
1387 goto cleanup;
1388 }
Michal Vasko00cbf532020-06-15 13:58:47 +02001389
Michal Vasko6741dc62021-02-04 09:27:45 +01001390 /* update the existing node */
1391 ret = lyd_new_path_update(node, value, value_type, &nparent, &nnode);
1392 goto cleanup;
1393 } /* else we were not searching for the whole path */
Michal Vasko00cbf532020-06-15 13:58:47 +02001394 } else if (ret == LY_EINCOMPLETE) {
1395 /* some nodes were found, adjust the iterator to the next segment */
1396 ++path_idx;
1397 } else if (ret == LY_ENOTFOUND) {
1398 /* 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 +01001399 if (lysc_data_parent(p[0].node)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001400 node = parent;
1401 }
1402 } else {
1403 /* error */
1404 goto cleanup;
1405 }
1406 }
1407
Michal Vasko6741dc62021-02-04 09:27:45 +01001408 /* restore the full path for creating new nodes */
1409 while (orig_count > LY_ARRAY_COUNT(p)) {
1410 LY_ARRAY_INCREMENT(p);
1411 }
1412
Michal Vasko00cbf532020-06-15 13:58:47 +02001413 /* create all the non-existing nodes in a loop */
Michal Vaskod989ba02020-08-24 10:59:24 +02001414 for ( ; path_idx < LY_ARRAY_COUNT(p); ++path_idx) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001415 cur_parent = node;
1416 schema = p[path_idx].node;
1417
1418 switch (schema->nodetype) {
1419 case LYS_LIST:
1420 if (!(schema->flags & LYS_KEYLESS)) {
Radek Krejci092e33c2020-10-12 15:33:10 +02001421 if ((options & LYD_NEW_PATH_OPAQ) && (p[path_idx].pred_type == LY_PATH_PREDTYPE_NONE)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001422 /* creating opaque list without keys */
Michal Vasko501af032020-11-11 20:27:44 +01001423 LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), NULL, 0,
1424 schema->module->name, strlen(schema->module->name), NULL, 0, NULL, LY_PREF_JSON, NULL,
1425 LYD_NODEHINT_LIST, &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001426 } else {
Michal Vasko8b776962021-01-12 12:21:49 +01001427 if (p[path_idx].pred_type != LY_PATH_PREDTYPE_LIST) {
1428 LOG_LOCSET(schema, NULL, NULL, NULL);
1429 LOGVAL(ctx, LYVE_XPATH, "Predicate missing for %s \"%s\" in path \"%s\".",
1430 lys_nodetype2str(schema->nodetype), schema->name, path);
1431 LOG_LOCBACK(1, 0, 0, 0);
1432 ret = LY_EINVAL;
1433 goto cleanup;
1434 }
1435
Michal Vasko00cbf532020-06-15 13:58:47 +02001436 LY_CHECK_GOTO(ret = lyd_create_list(schema, p[path_idx].predicates, &node), cleanup);
1437 }
1438 break;
1439 }
Radek Krejcif13b87b2020-12-01 22:02:17 +01001440 /* fall through */
Michal Vasko00cbf532020-06-15 13:58:47 +02001441 case LYS_CONTAINER:
1442 case LYS_NOTIF:
1443 case LYS_RPC:
1444 case LYS_ACTION:
1445 LY_CHECK_GOTO(ret = lyd_create_inner(schema, &node), cleanup);
1446 break;
1447 case LYS_LEAFLIST:
Radek Krejci092e33c2020-10-12 15:33:10 +02001448 if ((options & LYD_NEW_PATH_OPAQ) && (p[path_idx].pred_type == LY_PATH_PREDTYPE_NONE)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001449 /* creating opaque leaf-list without value */
Michal Vasko501af032020-11-11 20:27:44 +01001450 LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), NULL, 0,
1451 schema->module->name, strlen(schema->module->name), NULL, 0, NULL, LY_PREF_JSON, NULL,
1452 LYD_NODEHINT_LEAFLIST, &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001453 } else {
1454 assert(p[path_idx].pred_type == LY_PATH_PREDTYPE_LEAFLIST);
1455 LY_CHECK_GOTO(ret = lyd_create_term2(schema, &p[path_idx].predicates[0].value, &node), cleanup);
1456 }
1457 break;
1458 case LYS_LEAF:
Michal Vasko35880332020-12-08 13:08:12 +01001459 if (lysc_is_key(schema)) {
1460 /* it must have been already created or some error will occur later */
1461 assert(cur_parent);
1462 node = lyd_child(cur_parent);
1463 assert(node && (node->schema == schema));
1464 goto next_iter;
1465 }
1466
1467 /* make sure there is some value */
Michal Vasko00cbf532020-06-15 13:58:47 +02001468 if (!value) {
1469 value = "";
1470 }
1471
1472 r = LY_SUCCESS;
Radek Krejci092e33c2020-10-12 15:33:10 +02001473 if (options & LYD_NEW_PATH_OPAQ) {
Michal Vaskof937cfe2020-08-03 16:07:12 +02001474 r = lys_value_validate(NULL, schema, value, strlen(value));
Michal Vasko00cbf532020-06-15 13:58:47 +02001475 }
1476 if (!r) {
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001477 ret = lyd_create_term(schema, value, strlen(value), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, NULL, &node);
1478 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001479 } else {
1480 /* creating opaque leaf without value */
Michal Vasko501af032020-11-11 20:27:44 +01001481 LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), NULL, 0, schema->module->name,
1482 strlen(schema->module->name), NULL, 0, NULL, LY_PREF_JSON, NULL, 0, &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001483 }
1484 break;
1485 case LYS_ANYDATA:
1486 case LYS_ANYXML:
Michal Vasko366a4a12020-12-04 16:23:57 +01001487 LY_CHECK_GOTO(ret = lyd_create_any(schema, value, value_type, 0, &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001488 break;
1489 default:
1490 LOGINT(ctx);
1491 ret = LY_EINT;
1492 goto cleanup;
1493 }
1494
1495 if (cur_parent) {
1496 /* connect to the parent */
1497 lyd_insert_node(cur_parent, NULL, node);
1498 } else if (parent) {
1499 /* connect to top-level siblings */
1500 lyd_insert_node(NULL, &parent, node);
1501 }
1502
Michal Vasko35880332020-12-08 13:08:12 +01001503next_iter:
Michal Vasko00cbf532020-06-15 13:58:47 +02001504 /* update remembered nodes */
1505 if (!nparent) {
1506 nparent = node;
1507 }
1508 nnode = node;
1509 }
1510
1511cleanup:
1512 lyxp_expr_free(ctx, exp);
Michal Vasko6741dc62021-02-04 09:27:45 +01001513 if (p) {
1514 while (orig_count > LY_ARRAY_COUNT(p)) {
1515 LY_ARRAY_INCREMENT(p);
1516 }
1517 }
Michal Vasko00cbf532020-06-15 13:58:47 +02001518 ly_path_free(ctx, p);
1519 if (!ret) {
1520 /* set out params only on success */
1521 if (new_parent) {
1522 *new_parent = nparent;
1523 }
1524 if (new_node) {
1525 *new_node = nnode;
1526 }
Michal Vaskof4b95ba2020-12-11 08:42:33 +01001527 } else {
1528 lyd_free_tree(nparent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001529 }
1530 return ret;
1531}
1532
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001533LY_ERR
1534lyd_new_implicit_r(struct lyd_node *parent, struct lyd_node **first, const struct lysc_node *sparent,
Radek Krejci1deb5be2020-08-26 16:43:36 +02001535 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 +02001536 struct lyd_node **diff)
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001537{
1538 LY_ERR ret;
Michal Vaskod1e53b92021-01-28 13:11:06 +01001539 const struct lysc_node *iter = NULL;
Radek Krejci2b18bf12020-11-06 11:20:20 +01001540 struct lyd_node *node = NULL;
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001541 struct lyd_value **dflts;
1542 LY_ARRAY_COUNT_TYPE u;
Michal Vasko630d9892020-12-08 17:11:08 +01001543 uint32_t getnext_opts;
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001544
1545 assert(first && (parent || sparent || mod));
1546
1547 if (!sparent && parent) {
1548 sparent = parent->schema;
1549 }
1550
Michal Vasko630d9892020-12-08 17:11:08 +01001551 getnext_opts = LYS_GETNEXT_WITHCHOICE;
1552 if (impl_opts & LYD_IMPLICIT_OUTPUT) {
1553 getnext_opts |= LYS_GETNEXT_OUTPUT;
1554 }
1555
1556 while ((iter = lys_getnext(iter, sparent, mod ? mod->compiled : NULL, getnext_opts))) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001557 if ((impl_opts & LYD_IMPLICIT_NO_STATE) && (iter->flags & LYS_CONFIG_R)) {
1558 continue;
Michal Vasko44b19a12020-08-07 09:21:30 +02001559 } else if ((impl_opts & LYD_IMPLICIT_NO_CONFIG) && (iter->flags & LYS_CONFIG_W)) {
1560 continue;
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001561 }
1562
1563 switch (iter->nodetype) {
1564 case LYS_CHOICE:
Michal Vaskobcf4d7d2020-11-18 18:16:49 +01001565 node = lys_getnext_data(NULL, *first, NULL, iter, NULL);
1566 if (!node && ((struct lysc_node_choice *)iter)->dflt) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001567 /* create default case data */
Michal Vasko14ed9cd2021-01-28 14:16:25 +01001568 LY_CHECK_RET(lyd_new_implicit_r(parent, first, &((struct lysc_node_choice *)iter)->dflt->node,
Michal Vasko69730152020-10-09 16:30:07 +02001569 NULL, node_types, node_when, impl_opts, diff));
Michal Vaskobcf4d7d2020-11-18 18:16:49 +01001570 } else if (node) {
1571 /* create any default data in the existing case */
1572 assert(node->schema->parent->nodetype == LYS_CASE);
1573 LY_CHECK_RET(lyd_new_implicit_r(parent, first, node->schema->parent, NULL, node_types, node_when,
1574 impl_opts, diff));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001575 }
1576 break;
1577 case LYS_CONTAINER:
1578 if (!(iter->flags & LYS_PRESENCE) && lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
1579 /* create default NP container */
1580 LY_CHECK_RET(lyd_create_inner(iter, &node));
Radek Krejci9a3823e2021-01-27 20:26:46 +01001581 node->flags = LYD_DEFAULT | (lysc_node_when(node->schema) ? LYD_WHEN_TRUE : 0);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001582 lyd_insert_node(parent, first, node);
1583
1584 /* cannot be a NP container with when */
Radek Krejci9a3823e2021-01-27 20:26:46 +01001585 assert(!lysc_node_when(iter));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001586
Michal Vaskoe49b6322020-11-05 17:38:36 +01001587 if (diff) {
1588 /* add into diff */
1589 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff));
1590 }
1591
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001592 /* create any default children */
Michal Vaskoe0665742021-02-11 11:08:44 +01001593 LY_CHECK_RET(lyd_new_implicit_r(node, lyd_node_child_p(node), NULL, NULL, node_types, node_when,
Michal Vasko69730152020-10-09 16:30:07 +02001594 impl_opts, diff));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001595 }
1596 break;
1597 case LYS_LEAF:
Michal Vasko69730152020-10-09 16:30:07 +02001598 if (!(impl_opts & LYD_IMPLICIT_NO_DEFAULTS) && ((struct lysc_node_leaf *)iter)->dflt &&
1599 lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001600 /* create default leaf */
1601 ret = lyd_create_term2(iter, ((struct lysc_node_leaf *)iter)->dflt, &node);
1602 if (ret == LY_EINCOMPLETE) {
1603 if (node_types) {
1604 /* remember to resolve type */
Radek Krejci3d92e442020-10-12 12:48:13 +02001605 LY_CHECK_RET(ly_set_add(node_types, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001606 }
1607 } else if (ret) {
1608 return ret;
1609 }
Radek Krejci9a3823e2021-01-27 20:26:46 +01001610 node->flags = LYD_DEFAULT | (lysc_node_when(node->schema) ? LYD_WHEN_TRUE : 0);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001611 lyd_insert_node(parent, first, node);
1612
Radek Krejci9a3823e2021-01-27 20:26:46 +01001613 if (lysc_node_when(iter) && node_when) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001614 /* remember to resolve when */
Radek Krejci3d92e442020-10-12 12:48:13 +02001615 LY_CHECK_RET(ly_set_add(node_when, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001616 }
1617 if (diff) {
1618 /* add into diff */
1619 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff));
1620 }
1621 }
1622 break;
1623 case LYS_LEAFLIST:
Michal Vasko69730152020-10-09 16:30:07 +02001624 if (!(impl_opts & LYD_IMPLICIT_NO_DEFAULTS) && ((struct lysc_node_leaflist *)iter)->dflts &&
1625 lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001626 /* create all default leaf-lists */
1627 dflts = ((struct lysc_node_leaflist *)iter)->dflts;
1628 LY_ARRAY_FOR(dflts, u) {
1629 ret = lyd_create_term2(iter, dflts[u], &node);
1630 if (ret == LY_EINCOMPLETE) {
1631 if (node_types) {
1632 /* remember to resolve type */
Radek Krejci3d92e442020-10-12 12:48:13 +02001633 LY_CHECK_RET(ly_set_add(node_types, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001634 }
1635 } else if (ret) {
1636 return ret;
1637 }
Radek Krejci9a3823e2021-01-27 20:26:46 +01001638 node->flags = LYD_DEFAULT | (lysc_node_when(node->schema) ? LYD_WHEN_TRUE : 0);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001639 lyd_insert_node(parent, first, node);
1640
Radek Krejci9a3823e2021-01-27 20:26:46 +01001641 if (lysc_node_when(iter) && node_when) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001642 /* remember to resolve when */
Radek Krejci3d92e442020-10-12 12:48:13 +02001643 LY_CHECK_RET(ly_set_add(node_when, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001644 }
1645 if (diff) {
1646 /* add into diff */
1647 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff));
1648 }
1649 }
1650 }
1651 break;
1652 default:
1653 /* without defaults */
1654 break;
1655 }
1656 }
1657
1658 return LY_SUCCESS;
1659}
1660
1661API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001662lyd_new_implicit_tree(struct lyd_node *tree, uint32_t implicit_options, struct lyd_node **diff)
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001663{
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001664 LY_ERR ret = LY_SUCCESS;
Michal Vasko3488ada2020-12-03 14:18:19 +01001665 struct lyd_node *node;
1666 struct ly_set node_when = {0};
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001667
1668 LY_CHECK_ARG_RET(NULL, tree, LY_EINVAL);
1669 if (diff) {
1670 *diff = NULL;
1671 }
1672
Michal Vasko56daf732020-08-10 10:57:18 +02001673 LYD_TREE_DFS_BEGIN(tree, node) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001674 /* skip added default nodes */
Michal Vasko69730152020-10-09 16:30:07 +02001675 if (((node->flags & (LYD_DEFAULT | LYD_NEW)) != (LYD_DEFAULT | LYD_NEW)) &&
1676 (node->schema->nodetype & LYD_NODE_INNER)) {
Michal Vaskoe0665742021-02-11 11:08:44 +01001677 LY_CHECK_GOTO(ret = lyd_new_implicit_r(node, lyd_node_child_p(node), NULL, NULL, NULL,
Michal Vasko3488ada2020-12-03 14:18:19 +01001678 &node_when, implicit_options, diff), cleanup);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001679 }
1680
Michal Vasko56daf732020-08-10 10:57:18 +02001681 LYD_TREE_DFS_END(tree, node);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001682 }
1683
Michal Vasko3488ada2020-12-03 14:18:19 +01001684 /* resolve when and remove any invalid defaults */
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001685 LY_CHECK_GOTO(ret = lyd_validate_unres(&tree, NULL, &node_when, NULL, NULL, diff), cleanup);
Michal Vasko3488ada2020-12-03 14:18:19 +01001686
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001687cleanup:
Michal Vasko3488ada2020-12-03 14:18:19 +01001688 ly_set_erase(&node_when, NULL);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001689 if (ret && diff) {
1690 lyd_free_all(*diff);
1691 *diff = NULL;
1692 }
1693 return ret;
1694}
1695
1696API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001697lyd_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 +02001698{
1699 const struct lys_module *mod;
1700 struct lyd_node *d = NULL;
1701 uint32_t i = 0;
1702 LY_ERR ret = LY_SUCCESS;
1703
1704 LY_CHECK_ARG_RET(ctx, tree, *tree || ctx, LY_EINVAL);
1705 if (diff) {
1706 *diff = NULL;
1707 }
1708 if (!ctx) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001709 ctx = LYD_CTX(*tree);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001710 }
1711
1712 /* add nodes for each module one-by-one */
1713 while ((mod = ly_ctx_get_module_iter(ctx, &i))) {
1714 if (!mod->implemented) {
1715 continue;
1716 }
1717
1718 LY_CHECK_GOTO(ret = lyd_new_implicit_module(tree, mod, implicit_options, diff ? &d : NULL), cleanup);
1719 if (d) {
1720 /* merge into one diff */
1721 lyd_insert_sibling(*diff, d, diff);
1722
1723 d = NULL;
1724 }
1725 }
1726
1727cleanup:
1728 if (ret && diff) {
1729 lyd_free_all(*diff);
1730 *diff = NULL;
1731 }
1732 return ret;
1733}
1734
1735API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001736lyd_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 +02001737{
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001738 LY_ERR ret = LY_SUCCESS;
Michal Vasko3488ada2020-12-03 14:18:19 +01001739 struct lyd_node *root, *d = NULL;
1740 struct ly_set node_when = {0};
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001741
1742 LY_CHECK_ARG_RET(NULL, tree, module, LY_EINVAL);
1743 if (diff) {
1744 *diff = NULL;
1745 }
1746
1747 /* add all top-level defaults for this module */
Michal Vasko3488ada2020-12-03 14:18:19 +01001748 LY_CHECK_GOTO(ret = lyd_new_implicit_r(NULL, tree, NULL, module, NULL, &node_when, implicit_options, diff), cleanup);
1749
1750 /* resolve when and remove any invalid defaults */
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001751 LY_CHECK_GOTO(ret = lyd_validate_unres(tree, module, &node_when, NULL, NULL, diff), cleanup);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001752
1753 /* process nested nodes */
1754 LY_LIST_FOR(*tree, root) {
1755 /* skip added default nodes */
1756 if ((root->flags & (LYD_DEFAULT | LYD_NEW)) != (LYD_DEFAULT | LYD_NEW)) {
1757 LY_CHECK_GOTO(ret = lyd_new_implicit_tree(root, implicit_options, diff ? &d : NULL), cleanup);
1758
1759 if (d) {
1760 /* merge into one diff */
1761 lyd_insert_sibling(*diff, d, diff);
1762
1763 d = NULL;
1764 }
1765 }
1766 }
1767
1768cleanup:
Michal Vasko3488ada2020-12-03 14:18:19 +01001769 ly_set_erase(&node_when, NULL);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001770 if (ret && diff) {
1771 lyd_free_all(*diff);
1772 *diff = NULL;
1773 }
1774 return ret;
1775}
1776
Michal Vasko90932a92020-02-12 14:33:03 +01001777struct lyd_node *
Michal Vaskob104f112020-07-17 09:54:54 +02001778lyd_insert_get_next_anchor(const struct lyd_node *first_sibling, const struct lyd_node *new_node)
Michal Vasko90932a92020-02-12 14:33:03 +01001779{
Michal Vaskob104f112020-07-17 09:54:54 +02001780 const struct lysc_node *schema, *sparent;
Michal Vasko90932a92020-02-12 14:33:03 +01001781 struct lyd_node *match = NULL;
Radek Krejci857189e2020-09-01 13:26:36 +02001782 ly_bool found;
Michal Vasko93b16062020-12-09 18:14:18 +01001783 uint32_t getnext_opts;
Michal Vasko90932a92020-02-12 14:33:03 +01001784
Michal Vaskob104f112020-07-17 09:54:54 +02001785 assert(new_node);
1786
1787 if (!first_sibling || !new_node->schema) {
1788 /* insert at the end, no next anchor */
Michal Vasko90932a92020-02-12 14:33:03 +01001789 return NULL;
1790 }
1791
Michal Vasko93b16062020-12-09 18:14:18 +01001792 getnext_opts = 0;
Michal Vaskod1e53b92021-01-28 13:11:06 +01001793 if (new_node->schema->flags & LYS_IS_OUTPUT) {
Michal Vasko93b16062020-12-09 18:14:18 +01001794 getnext_opts = LYS_GETNEXT_OUTPUT;
1795 }
1796
Michal Vaskob104f112020-07-17 09:54:54 +02001797 if (first_sibling->parent && first_sibling->parent->children_ht) {
1798 /* find the anchor using hashes */
1799 sparent = first_sibling->parent->schema;
Michal Vasko93b16062020-12-09 18:14:18 +01001800 schema = lys_getnext(new_node->schema, sparent, NULL, getnext_opts);
Michal Vaskob104f112020-07-17 09:54:54 +02001801 while (schema) {
1802 /* keep trying to find the first existing instance of the closest following schema sibling,
1803 * otherwise return NULL - inserting at the end */
1804 if (!lyd_find_sibling_schema(first_sibling, schema, &match)) {
1805 break;
1806 }
1807
Michal Vasko93b16062020-12-09 18:14:18 +01001808 schema = lys_getnext(schema, sparent, NULL, getnext_opts);
Michal Vaskob104f112020-07-17 09:54:54 +02001809 }
1810 } else {
1811 /* find the anchor without hashes */
1812 match = (struct lyd_node *)first_sibling;
1813 if (!lysc_data_parent(new_node->schema)) {
1814 /* we are in top-level, skip all the data from preceding modules */
1815 LY_LIST_FOR(match, match) {
1816 if (!match->schema || (strcmp(lyd_owner_module(match)->name, lyd_owner_module(new_node)->name) >= 0)) {
1817 break;
1818 }
1819 }
1820 }
1821
1822 /* get the first schema sibling */
1823 sparent = lysc_data_parent(new_node->schema);
Michal Vasko93b16062020-12-09 18:14:18 +01001824 schema = lys_getnext(NULL, sparent, new_node->schema->module->compiled, getnext_opts);
Michal Vaskob104f112020-07-17 09:54:54 +02001825
1826 found = 0;
1827 LY_LIST_FOR(match, match) {
1828 if (!match->schema || (lyd_owner_module(match) != lyd_owner_module(new_node))) {
1829 /* we have found an opaque node, which must be at the end, so use it OR
1830 * modules do not match, so we must have traversed all the data from new_node module (if any),
1831 * we have found the first node of the next module, that is what we want */
1832 break;
1833 }
1834
1835 /* skip schema nodes until we find the instantiated one */
1836 while (!found) {
1837 if (new_node->schema == schema) {
1838 /* we have found the schema of the new node, continue search to find the first
1839 * data node with a different schema (after our schema) */
1840 found = 1;
1841 break;
1842 }
1843 if (match->schema == schema) {
1844 /* current node (match) is a data node still before the new node, continue search in data */
1845 break;
1846 }
Michal Vasko93b16062020-12-09 18:14:18 +01001847 schema = lys_getnext(schema, sparent, new_node->schema->module->compiled, getnext_opts);
Michal Vaskob104f112020-07-17 09:54:54 +02001848 assert(schema);
1849 }
1850
1851 if (found && (match->schema != new_node->schema)) {
1852 /* find the next node after we have found our node schema data instance */
1853 break;
1854 }
1855 }
Michal Vasko90932a92020-02-12 14:33:03 +01001856 }
1857
1858 return match;
1859}
1860
1861/**
1862 * @brief Insert node after a sibling.
1863 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001864 * Handles inserting into NP containers and key-less lists.
1865 *
Michal Vasko90932a92020-02-12 14:33:03 +01001866 * @param[in] sibling Sibling to insert after.
1867 * @param[in] node Node to insert.
1868 */
1869static void
Michal Vaskof03ed032020-03-04 13:31:44 +01001870lyd_insert_after_node(struct lyd_node *sibling, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001871{
Michal Vasko0249f7c2020-03-05 16:36:40 +01001872 struct lyd_node_inner *par;
1873
Michal Vasko90932a92020-02-12 14:33:03 +01001874 assert(!node->next && (node->prev == node));
1875
1876 node->next = sibling->next;
1877 node->prev = sibling;
1878 sibling->next = node;
1879 if (node->next) {
1880 /* sibling had a succeeding node */
1881 node->next->prev = node;
1882 } else {
1883 /* sibling was last, find first sibling and change its prev */
1884 if (sibling->parent) {
1885 sibling = sibling->parent->child;
1886 } else {
Michal Vaskod989ba02020-08-24 10:59:24 +02001887 for ( ; sibling->prev->next != node; sibling = sibling->prev) {}
Michal Vasko90932a92020-02-12 14:33:03 +01001888 }
1889 sibling->prev = node;
1890 }
1891 node->parent = sibling->parent;
Michal Vasko0249f7c2020-03-05 16:36:40 +01001892
Michal Vasko9f96a052020-03-10 09:41:45 +01001893 for (par = node->parent; par; par = par->parent) {
1894 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
1895 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01001896 par->flags &= ~LYD_DEFAULT;
1897 }
Michal Vaskob104f112020-07-17 09:54:54 +02001898 if (par->schema && (par->schema->nodetype == LYS_LIST) && (par->schema->flags & LYS_KEYLESS)) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001899 /* rehash key-less list */
Michal Vasko9e685082021-01-29 14:49:09 +01001900 lyd_hash(&par->node);
Michal Vasko9f96a052020-03-10 09:41:45 +01001901 }
Michal Vasko0249f7c2020-03-05 16:36:40 +01001902 }
Michal Vasko90932a92020-02-12 14:33:03 +01001903}
1904
1905/**
1906 * @brief Insert node before a sibling.
1907 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001908 * Handles inserting into NP containers and key-less lists.
1909 *
Michal Vasko90932a92020-02-12 14:33:03 +01001910 * @param[in] sibling Sibling to insert before.
1911 * @param[in] node Node to insert.
1912 */
1913static void
Michal Vaskof03ed032020-03-04 13:31:44 +01001914lyd_insert_before_node(struct lyd_node *sibling, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001915{
Michal Vasko0249f7c2020-03-05 16:36:40 +01001916 struct lyd_node_inner *par;
1917
Michal Vasko90932a92020-02-12 14:33:03 +01001918 assert(!node->next && (node->prev == node));
1919
1920 node->next = sibling;
1921 /* covers situation of sibling being first */
1922 node->prev = sibling->prev;
1923 sibling->prev = node;
1924 if (node->prev->next) {
1925 /* sibling had a preceding node */
1926 node->prev->next = node;
1927 } else if (sibling->parent) {
1928 /* sibling was first and we must also change parent child pointer */
1929 sibling->parent->child = node;
1930 }
1931 node->parent = sibling->parent;
Michal Vasko0249f7c2020-03-05 16:36:40 +01001932
Michal Vasko9f96a052020-03-10 09:41:45 +01001933 for (par = node->parent; par; par = par->parent) {
1934 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
1935 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01001936 par->flags &= ~LYD_DEFAULT;
1937 }
Michal Vaskob104f112020-07-17 09:54:54 +02001938 if (par->schema && (par->schema->nodetype == LYS_LIST) && (par->schema->flags & LYS_KEYLESS)) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001939 /* rehash key-less list */
Michal Vasko9e685082021-01-29 14:49:09 +01001940 lyd_hash(&par->node);
Michal Vasko9f96a052020-03-10 09:41:45 +01001941 }
Michal Vasko0249f7c2020-03-05 16:36:40 +01001942 }
Michal Vasko90932a92020-02-12 14:33:03 +01001943}
1944
1945/**
Michal Vaskob104f112020-07-17 09:54:54 +02001946 * @brief Insert node as the first and only child of a parent.
Michal Vasko90932a92020-02-12 14:33:03 +01001947 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001948 * Handles inserting into NP containers and key-less lists.
1949 *
Michal Vasko90932a92020-02-12 14:33:03 +01001950 * @param[in] parent Parent to insert into.
1951 * @param[in] node Node to insert.
1952 */
1953static void
Michal Vaskob104f112020-07-17 09:54:54 +02001954lyd_insert_only_child(struct lyd_node *parent, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001955{
1956 struct lyd_node_inner *par;
1957
Radek Krejcia1c1e542020-09-29 16:06:52 +02001958 assert(parent && !lyd_child(parent) && !node->next && (node->prev == node));
Michal Vasko52927e22020-03-16 17:26:14 +01001959 assert(!parent->schema || (parent->schema->nodetype & LYD_NODE_INNER));
Michal Vasko90932a92020-02-12 14:33:03 +01001960
1961 par = (struct lyd_node_inner *)parent;
1962
Michal Vaskob104f112020-07-17 09:54:54 +02001963 par->child = node;
Michal Vasko90932a92020-02-12 14:33:03 +01001964 node->parent = par;
Michal Vasko0249f7c2020-03-05 16:36:40 +01001965
Michal Vaskod989ba02020-08-24 10:59:24 +02001966 for ( ; par; par = par->parent) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001967 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
1968 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01001969 par->flags &= ~LYD_DEFAULT;
1970 }
Michal Vasko52927e22020-03-16 17:26:14 +01001971 if (par->schema && (par->schema->nodetype == LYS_LIST) && (par->schema->flags & LYS_KEYLESS)) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001972 /* rehash key-less list */
Michal Vasko9e685082021-01-29 14:49:09 +01001973 lyd_hash(&par->node);
Michal Vasko9f96a052020-03-10 09:41:45 +01001974 }
Michal Vasko0249f7c2020-03-05 16:36:40 +01001975 }
Michal Vasko751cb4d2020-07-14 12:25:28 +02001976}
Michal Vasko0249f7c2020-03-05 16:36:40 +01001977
Michal Vasko751cb4d2020-07-14 12:25:28 +02001978/**
1979 * @brief Learn whether a list instance has all the keys.
1980 *
1981 * @param[in] list List instance to check.
1982 * @return non-zero if all the keys were found,
1983 * @return 0 otherwise.
1984 */
1985static int
1986lyd_insert_has_keys(const struct lyd_node *list)
1987{
1988 const struct lyd_node *key;
1989 const struct lysc_node *skey = NULL;
1990
1991 assert(list->schema->nodetype == LYS_LIST);
Radek Krejcia1c1e542020-09-29 16:06:52 +02001992 key = lyd_child(list);
Michal Vasko751cb4d2020-07-14 12:25:28 +02001993 while ((skey = lys_getnext(skey, list->schema, NULL, 0)) && (skey->flags & LYS_KEY)) {
1994 if (!key || (key->schema != skey)) {
1995 /* key missing */
1996 return 0;
1997 }
1998
1999 key = key->next;
2000 }
2001
2002 /* all keys found */
2003 return 1;
Michal Vasko90932a92020-02-12 14:33:03 +01002004}
2005
2006void
Michal Vaskob104f112020-07-17 09:54:54 +02002007lyd_insert_node(struct lyd_node *parent, struct lyd_node **first_sibling_p, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01002008{
Michal Vaskob104f112020-07-17 09:54:54 +02002009 struct lyd_node *anchor, *first_sibling;
Michal Vasko90932a92020-02-12 14:33:03 +01002010
Michal Vaskob104f112020-07-17 09:54:54 +02002011 /* inserting list without its keys is not supported */
2012 assert((parent || first_sibling_p) && node && (node->hash || !node->schema));
Michal Vaskof756c942020-11-06 17:21:37 +01002013 assert(!parent || !parent->schema ||
2014 (parent->schema->nodetype & (LYS_CONTAINER | LYS_LIST | LYS_RPC | LYS_ACTION | LYS_NOTIF)));
Michal Vasko9b368d32020-02-14 13:53:31 +01002015
Michal Vaskob104f112020-07-17 09:54:54 +02002016 if (!parent && first_sibling_p && (*first_sibling_p) && (*first_sibling_p)->parent) {
Michal Vasko9e685082021-01-29 14:49:09 +01002017 parent = lyd_parent(*first_sibling_p);
Michal Vasko9b368d32020-02-14 13:53:31 +01002018 }
Michal Vasko90932a92020-02-12 14:33:03 +01002019
Michal Vaskob104f112020-07-17 09:54:54 +02002020 /* get first sibling */
Michal Vasko9e685082021-01-29 14:49:09 +01002021 first_sibling = parent ? lyd_child(parent) : *first_sibling_p;
Michal Vasko9f96a052020-03-10 09:41:45 +01002022
Michal Vaskob104f112020-07-17 09:54:54 +02002023 /* find the anchor, our next node, so we can insert before it */
2024 anchor = lyd_insert_get_next_anchor(first_sibling, node);
2025 if (anchor) {
2026 lyd_insert_before_node(anchor, node);
Michal Vasko26123192020-11-09 21:02:34 +01002027 if (!parent && (*first_sibling_p == anchor)) {
2028 /* move first sibling */
2029 *first_sibling_p = node;
2030 }
Michal Vaskob104f112020-07-17 09:54:54 +02002031 } else if (first_sibling) {
2032 lyd_insert_after_node(first_sibling->prev, node);
2033 } else if (parent) {
2034 lyd_insert_only_child(parent, node);
Michal Vasko90932a92020-02-12 14:33:03 +01002035 } else {
Michal Vaskob104f112020-07-17 09:54:54 +02002036 *first_sibling_p = node;
2037 }
2038
2039 /* insert into parent HT */
2040 lyd_insert_hash(node);
2041
2042 /* finish hashes for our parent, if needed and possible */
Michal Vasko9e8de2d2020-09-01 08:17:10 +02002043 if (node->schema && (node->schema->flags & LYS_KEY) && parent && lyd_insert_has_keys(parent)) {
Michal Vaskob104f112020-07-17 09:54:54 +02002044 lyd_hash(parent);
2045
2046 /* now we can insert even the list into its parent HT */
2047 lyd_insert_hash(parent);
Michal Vasko90932a92020-02-12 14:33:03 +01002048 }
Michal Vasko90932a92020-02-12 14:33:03 +01002049}
2050
Michal Vasko717a4c32020-12-07 09:40:10 +01002051/**
2052 * @brief Check schema place of a node to be inserted.
2053 *
2054 * @param[in] parent Schema node of the parent data node.
2055 * @param[in] sibling Schema node of a sibling data node.
2056 * @param[in] schema Schema node if the data node to be inserted.
2057 * @return LY_SUCCESS on success.
2058 * @return LY_EINVAL if the place is invalid.
2059 */
Michal Vaskof03ed032020-03-04 13:31:44 +01002060static LY_ERR
Michal Vasko717a4c32020-12-07 09:40:10 +01002061lyd_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 +01002062{
2063 const struct lysc_node *par2;
2064
Michal Vasko62ed12d2020-05-21 10:08:25 +02002065 assert(!parent || !(parent->nodetype & (LYS_CASE | LYS_CHOICE)));
Michal Vasko717a4c32020-12-07 09:40:10 +01002066 assert(!sibling || !(sibling->nodetype & (LYS_CASE | LYS_CHOICE)));
2067 assert(!schema || !(schema->nodetype & (LYS_CASE | LYS_CHOICE)));
Michal Vaskof03ed032020-03-04 13:31:44 +01002068
Michal Vasko717a4c32020-12-07 09:40:10 +01002069 if (!schema || (!parent && !sibling)) {
Michal Vasko71e795e2020-12-04 16:27:37 +01002070 /* opaque nodes can be inserted wherever */
2071 return LY_SUCCESS;
2072 }
2073
Michal Vasko717a4c32020-12-07 09:40:10 +01002074 if (!parent) {
2075 parent = lysc_data_parent(sibling);
2076 }
2077
Michal Vaskof03ed032020-03-04 13:31:44 +01002078 /* find schema parent */
Michal Vasko62ed12d2020-05-21 10:08:25 +02002079 par2 = lysc_data_parent(schema);
Michal Vaskof03ed032020-03-04 13:31:44 +01002080
2081 if (parent) {
2082 /* inner node */
2083 if (par2 != parent) {
Michal Vaskob104f112020-07-17 09:54:54 +02002084 LOGERR(schema->module->ctx, LY_EINVAL, "Cannot insert, parent of \"%s\" is not \"%s\".", schema->name,
Michal Vasko69730152020-10-09 16:30:07 +02002085 parent->name);
Michal Vaskof03ed032020-03-04 13:31:44 +01002086 return LY_EINVAL;
2087 }
2088 } else {
2089 /* top-level node */
2090 if (par2) {
Radek Krejcif6d14cb2020-07-02 16:11:45 +02002091 LOGERR(schema->module->ctx, LY_EINVAL, "Cannot insert, node \"%s\" is not top-level.", schema->name);
Michal Vaskof03ed032020-03-04 13:31:44 +01002092 return LY_EINVAL;
2093 }
2094 }
2095
2096 return LY_SUCCESS;
2097}
2098
2099API LY_ERR
Michal Vaskob104f112020-07-17 09:54:54 +02002100lyd_insert_child(struct lyd_node *parent, struct lyd_node *node)
Michal Vaskof03ed032020-03-04 13:31:44 +01002101{
2102 struct lyd_node *iter;
2103
Michal Vasko654bc852020-06-23 13:28:06 +02002104 LY_CHECK_ARG_RET(NULL, parent, node, parent->schema->nodetype & LYD_NODE_INNER, LY_EINVAL);
Michal Vaskof03ed032020-03-04 13:31:44 +01002105
Michal Vasko717a4c32020-12-07 09:40:10 +01002106 LY_CHECK_RET(lyd_insert_check_schema(parent->schema, NULL, node->schema));
Michal Vaskof03ed032020-03-04 13:31:44 +01002107
2108 if (node->schema->flags & LYS_KEY) {
2109 LOGERR(parent->schema->module->ctx, LY_EINVAL, "Cannot insert key \"%s\".", node->schema->name);
2110 return LY_EINVAL;
2111 }
2112
2113 if (node->parent || node->prev->next) {
2114 lyd_unlink_tree(node);
2115 }
2116
2117 while (node) {
2118 iter = node->next;
2119 lyd_unlink_tree(node);
2120 lyd_insert_node(parent, NULL, node);
2121 node = iter;
2122 }
2123 return LY_SUCCESS;
2124}
2125
2126API LY_ERR
Michal Vaskob104f112020-07-17 09:54:54 +02002127lyd_insert_sibling(struct lyd_node *sibling, struct lyd_node *node, struct lyd_node **first)
Michal Vaskob1b5c262020-03-05 14:29:47 +01002128{
2129 struct lyd_node *iter;
2130
Michal Vaskob104f112020-07-17 09:54:54 +02002131 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Michal Vaskob1b5c262020-03-05 14:29:47 +01002132
Michal Vaskob104f112020-07-17 09:54:54 +02002133 if (sibling) {
Michal Vasko717a4c32020-12-07 09:40:10 +01002134 LY_CHECK_RET(lyd_insert_check_schema(NULL, sibling->schema, node->schema));
Michal Vaskob1b5c262020-03-05 14:29:47 +01002135 }
2136
Michal Vasko553d0b52020-12-04 16:27:52 +01002137 if (sibling == node) {
2138 /* we need to keep the connection to siblings so we can insert into them */
2139 sibling = sibling->prev;
2140 }
2141
Michal Vaskob1b5c262020-03-05 14:29:47 +01002142 if (node->parent || node->prev->next) {
2143 lyd_unlink_tree(node);
2144 }
2145
2146 while (node) {
Michal Vasko71e795e2020-12-04 16:27:37 +01002147 if (lysc_is_key(node->schema)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002148 LOGERR(LYD_CTX(node), LY_EINVAL, "Cannot insert key \"%s\".", node->schema->name);
Michal Vaskob104f112020-07-17 09:54:54 +02002149 return LY_EINVAL;
2150 }
2151
Michal Vaskob1b5c262020-03-05 14:29:47 +01002152 iter = node->next;
2153 lyd_unlink_tree(node);
2154 lyd_insert_node(NULL, &sibling, node);
2155 node = iter;
2156 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01002157
Michal Vaskob104f112020-07-17 09:54:54 +02002158 if (first) {
2159 /* find the first sibling */
2160 *first = sibling;
2161 while ((*first)->prev->next) {
2162 *first = (*first)->prev;
Michal Vasko0249f7c2020-03-05 16:36:40 +01002163 }
2164 }
2165
2166 return LY_SUCCESS;
2167}
2168
Michal Vaskob1b5c262020-03-05 14:29:47 +01002169API LY_ERR
Michal Vaskof03ed032020-03-04 13:31:44 +01002170lyd_insert_before(struct lyd_node *sibling, struct lyd_node *node)
2171{
Michal Vaskof03ed032020-03-04 13:31:44 +01002172 LY_CHECK_ARG_RET(NULL, sibling, node, LY_EINVAL);
2173
Michal Vasko717a4c32020-12-07 09:40:10 +01002174 LY_CHECK_RET(lyd_insert_check_schema(NULL, sibling->schema, node->schema));
Michal Vaskof03ed032020-03-04 13:31:44 +01002175
Michal Vaskob104f112020-07-17 09:54:54 +02002176 if (!(node->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !(node->schema->flags & LYS_ORDBY_USER)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002177 LOGERR(LYD_CTX(sibling), LY_EINVAL, "Can be used only for user-ordered nodes.");
Michal Vaskof03ed032020-03-04 13:31:44 +01002178 return LY_EINVAL;
2179 }
2180
Michal Vasko4bc2ce32020-12-08 10:06:16 +01002181 lyd_unlink_tree(node);
2182 lyd_insert_before_node(sibling, node);
2183 lyd_insert_hash(node);
Michal Vaskof03ed032020-03-04 13:31:44 +01002184
Michal Vaskof03ed032020-03-04 13:31:44 +01002185 return LY_SUCCESS;
2186}
2187
2188API LY_ERR
2189lyd_insert_after(struct lyd_node *sibling, struct lyd_node *node)
2190{
Michal Vaskof03ed032020-03-04 13:31:44 +01002191 LY_CHECK_ARG_RET(NULL, sibling, node, LY_EINVAL);
2192
Michal Vasko717a4c32020-12-07 09:40:10 +01002193 LY_CHECK_RET(lyd_insert_check_schema(NULL, sibling->schema, node->schema));
Michal Vaskof03ed032020-03-04 13:31:44 +01002194
Michal Vaskob104f112020-07-17 09:54:54 +02002195 if (!(node->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !(node->schema->flags & LYS_ORDBY_USER)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002196 LOGERR(LYD_CTX(sibling), LY_EINVAL, "Can be used only for user-ordered nodes.");
Michal Vaskof03ed032020-03-04 13:31:44 +01002197 return LY_EINVAL;
2198 }
2199
Michal Vasko4bc2ce32020-12-08 10:06:16 +01002200 lyd_unlink_tree(node);
2201 lyd_insert_after_node(sibling, node);
2202 lyd_insert_hash(node);
Michal Vaskof03ed032020-03-04 13:31:44 +01002203
Michal Vaskof03ed032020-03-04 13:31:44 +01002204 return LY_SUCCESS;
2205}
2206
2207API void
2208lyd_unlink_tree(struct lyd_node *node)
2209{
2210 struct lyd_node *iter;
2211
2212 if (!node) {
2213 return;
2214 }
2215
Michal Vaskob104f112020-07-17 09:54:54 +02002216 /* update hashes while still linked into the tree */
2217 lyd_unlink_hash(node);
2218
Michal Vaskof03ed032020-03-04 13:31:44 +01002219 /* unlink from siblings */
2220 if (node->prev->next) {
2221 node->prev->next = node->next;
2222 }
2223 if (node->next) {
2224 node->next->prev = node->prev;
2225 } else {
2226 /* unlinking the last node */
2227 if (node->parent) {
2228 iter = node->parent->child;
2229 } else {
2230 iter = node->prev;
2231 while (iter->prev != node) {
2232 iter = iter->prev;
2233 }
2234 }
2235 /* update the "last" pointer from the first node */
2236 iter->prev = node->prev;
2237 }
2238
2239 /* unlink from parent */
2240 if (node->parent) {
2241 if (node->parent->child == node) {
2242 /* the node is the first child */
2243 node->parent->child = node->next;
2244 }
2245
Michal Vaskoab49dbe2020-07-17 12:32:47 +02002246 /* check for NP container whether its last non-default node is not being unlinked */
Michal Vasko69730152020-10-09 16:30:07 +02002247 if (node->parent->schema && (node->parent->schema->nodetype == LYS_CONTAINER) &&
2248 !(node->parent->flags & LYD_DEFAULT) && !(node->parent->schema->flags & LYS_PRESENCE)) {
Michal Vaskoab49dbe2020-07-17 12:32:47 +02002249 LY_LIST_FOR(node->parent->child, iter) {
2250 if ((iter != node) && !(iter->flags & LYD_DEFAULT)) {
2251 break;
2252 }
2253 }
2254 if (!iter) {
2255 node->parent->flags |= LYD_DEFAULT;
2256 }
2257 }
2258
Michal Vaskof03ed032020-03-04 13:31:44 +01002259 /* check for keyless list and update its hash */
Michal Vasko9e685082021-01-29 14:49:09 +01002260 for (iter = lyd_parent(node); iter; iter = lyd_parent(iter)) {
Michal Vasko413c7f22020-05-05 12:34:06 +02002261 if (iter->schema && (iter->schema->flags & LYS_KEYLESS)) {
Michal Vaskof03ed032020-03-04 13:31:44 +01002262 lyd_hash(iter);
2263 }
2264 }
2265
2266 node->parent = NULL;
2267 }
2268
2269 node->next = NULL;
2270 node->prev = node;
2271}
2272
Michal Vaskoa5da3292020-08-12 13:10:50 +02002273void
Michal Vasko871a0252020-11-11 18:35:24 +01002274lyd_insert_meta(struct lyd_node *parent, struct lyd_meta *meta, ly_bool clear_dflt)
Radek Krejci1798aae2020-07-14 13:26:06 +02002275{
2276 struct lyd_meta *last, *iter;
2277
2278 assert(parent);
Michal Vaskoa5da3292020-08-12 13:10:50 +02002279
2280 if (!meta) {
2281 return;
2282 }
Radek Krejci1798aae2020-07-14 13:26:06 +02002283
2284 for (iter = meta; iter; iter = iter->next) {
2285 iter->parent = parent;
2286 }
2287
2288 /* insert as the last attribute */
2289 if (parent->meta) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002290 for (last = parent->meta; last->next; last = last->next) {}
Radek Krejci1798aae2020-07-14 13:26:06 +02002291 last->next = meta;
2292 } else {
2293 parent->meta = meta;
2294 }
2295
2296 /* remove default flags from NP containers */
Michal Vasko871a0252020-11-11 18:35:24 +01002297 while (clear_dflt && parent && (parent->schema->nodetype == LYS_CONTAINER) && (parent->flags & LYD_DEFAULT)) {
Radek Krejci1798aae2020-07-14 13:26:06 +02002298 parent->flags &= ~LYD_DEFAULT;
Michal Vasko9e685082021-01-29 14:49:09 +01002299 parent = lyd_parent(parent);
Radek Krejci1798aae2020-07-14 13:26:06 +02002300 }
Radek Krejci1798aae2020-07-14 13:26:06 +02002301}
2302
2303LY_ERR
Michal Vasko9f96a052020-03-10 09:41:45 +01002304lyd_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 +02002305 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 +01002306 void *prefix_data, uint32_t hints, ly_bool clear_dflt, ly_bool *incomplete)
Michal Vasko90932a92020-02-12 14:33:03 +01002307{
Radek Krejci2efc45b2020-12-22 16:25:44 +01002308 LY_ERR ret = LY_SUCCESS;
Michal Vasko90932a92020-02-12 14:33:03 +01002309 struct lysc_ext_instance *ant = NULL;
Michal Vasko9f96a052020-03-10 09:41:45 +01002310 struct lyd_meta *mt, *last;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002311 LY_ARRAY_COUNT_TYPE u;
Michal Vasko90932a92020-02-12 14:33:03 +01002312
Michal Vasko9f96a052020-03-10 09:41:45 +01002313 assert((parent || meta) && mod);
Michal Vasko6f4cbb62020-02-28 11:15:47 +01002314
Radek Krejciddace2c2021-01-08 11:30:56 +01002315 LOG_LOCSET(parent ? parent->schema : NULL, parent, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01002316
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002317 LY_ARRAY_FOR(mod->compiled->exts, u) {
Michal Vasko69730152020-10-09 16:30:07 +02002318 if ((mod->compiled->exts[u].def->plugin == lyext_plugins_internal[LYEXT_PLUGIN_INTERNAL_ANNOTATION].plugin) &&
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002319 !ly_strncmp(mod->compiled->exts[u].argument, name, name_len)) {
Michal Vasko90932a92020-02-12 14:33:03 +01002320 /* we have the annotation definition */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002321 ant = &mod->compiled->exts[u];
Michal Vasko90932a92020-02-12 14:33:03 +01002322 break;
2323 }
2324 }
2325 if (!ant) {
2326 /* attribute is not defined as a metadata annotation (RFC 7952) */
Radek Krejci2efc45b2020-12-22 16:25:44 +01002327 LOGVAL(mod->ctx, LYVE_REFERENCE, "Annotation definition for attribute \"%s:%.*s\" not found.",
Michal Vasko90932a92020-02-12 14:33:03 +01002328 mod->name, name_len, name);
Radek Krejci2efc45b2020-12-22 16:25:44 +01002329 ret = LY_EINVAL;
2330 goto cleanup;
Michal Vasko90932a92020-02-12 14:33:03 +01002331 }
2332
Michal Vasko9f96a052020-03-10 09:41:45 +01002333 mt = calloc(1, sizeof *mt);
Radek Krejci2efc45b2020-12-22 16:25:44 +01002334 LY_CHECK_ERR_GOTO(!mt, LOGMEM(mod->ctx); ret = LY_EMEM, cleanup);
Michal Vasko9f96a052020-03-10 09:41:45 +01002335 mt->parent = parent;
2336 mt->annotation = ant;
Radek Krejci2efc45b2020-12-22 16:25:44 +01002337 ret = lyd_value_store(mod->ctx, &mt->value, ((struct lyext_metadata *)ant->data)->type, value, value_len, dynamic,
2338 format, prefix_data, hints, parent ? parent->schema : NULL, incomplete);
2339 LY_CHECK_ERR_GOTO(ret, free(mt), cleanup);
2340 ret = lydict_insert(mod->ctx, name, name_len, &mt->name);
2341 LY_CHECK_ERR_GOTO(ret, free(mt), cleanup);
Michal Vasko90932a92020-02-12 14:33:03 +01002342
Michal Vasko6f4cbb62020-02-28 11:15:47 +01002343 /* insert as the last attribute */
2344 if (parent) {
Michal Vasko871a0252020-11-11 18:35:24 +01002345 lyd_insert_meta(parent, mt, clear_dflt);
Michal Vasko9f96a052020-03-10 09:41:45 +01002346 } else if (*meta) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002347 for (last = *meta; last->next; last = last->next) {}
Michal Vasko9f96a052020-03-10 09:41:45 +01002348 last->next = mt;
Michal Vasko90932a92020-02-12 14:33:03 +01002349 }
2350
Michal Vasko9f96a052020-03-10 09:41:45 +01002351 if (meta) {
2352 *meta = mt;
Michal Vasko90932a92020-02-12 14:33:03 +01002353 }
Radek Krejci2efc45b2020-12-22 16:25:44 +01002354
2355cleanup:
Radek Krejciddace2c2021-01-08 11:30:56 +01002356 LOG_LOCBACK((parent && parent->schema) ? 1 : 0, parent ? 1 : 0, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +01002357 return ret;
Michal Vasko90932a92020-02-12 14:33:03 +01002358}
2359
Michal Vaskoa5da3292020-08-12 13:10:50 +02002360void
2361lyd_insert_attr(struct lyd_node *parent, struct lyd_attr *attr)
2362{
2363 struct lyd_attr *last, *iter;
2364 struct lyd_node_opaq *opaq;
2365
2366 assert(parent && !parent->schema);
2367
2368 if (!attr) {
2369 return;
2370 }
2371
2372 opaq = (struct lyd_node_opaq *)parent;
2373 for (iter = attr; iter; iter = iter->next) {
2374 iter->parent = opaq;
2375 }
2376
2377 /* insert as the last attribute */
2378 if (opaq->attr) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002379 for (last = opaq->attr; last->next; last = last->next) {}
Michal Vaskoa5da3292020-08-12 13:10:50 +02002380 last->next = attr;
2381 } else {
2382 opaq->attr = attr;
2383 }
2384}
2385
Michal Vasko52927e22020-03-16 17:26:14 +01002386LY_ERR
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002387lyd_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 +01002388 const char *prefix, size_t prefix_len, const char *module_key, size_t module_key_len, const char *value,
2389 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 +01002390{
Radek Krejci011e4aa2020-09-04 15:22:31 +02002391 LY_ERR ret = LY_SUCCESS;
Radek Krejci1798aae2020-07-14 13:26:06 +02002392 struct lyd_attr *at, *last;
Michal Vasko52927e22020-03-16 17:26:14 +01002393
2394 assert(ctx && (parent || attr) && (!parent || !parent->schema));
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002395 assert(name && name_len && format);
Michal Vasko52927e22020-03-16 17:26:14 +01002396
2397 if (!value_len) {
2398 value = "";
2399 }
2400
2401 at = calloc(1, sizeof *at);
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01002402 LY_CHECK_ERR_RET(!at, LOGMEM(ctx); ly_free_prefix_data(format, val_prefix_data), LY_EMEM);
Radek Krejcid46e46a2020-09-15 14:22:42 +02002403
Michal Vaskoad92b672020-11-12 13:11:31 +01002404 LY_CHECK_GOTO(ret = lydict_insert(ctx, name, name_len, &at->name.name), finish);
Michal Vasko501af032020-11-11 20:27:44 +01002405 if (prefix_len) {
Michal Vaskoad92b672020-11-12 13:11:31 +01002406 LY_CHECK_GOTO(ret = lydict_insert(ctx, prefix, prefix_len, &at->name.prefix), finish);
Michal Vasko501af032020-11-11 20:27:44 +01002407 }
2408 if (module_key_len) {
Michal Vaskoad92b672020-11-12 13:11:31 +01002409 LY_CHECK_GOTO(ret = lydict_insert(ctx, module_key, module_key_len, &at->name.module_ns), finish);
Michal Vasko501af032020-11-11 20:27:44 +01002410 }
2411
Michal Vasko52927e22020-03-16 17:26:14 +01002412 if (dynamic && *dynamic) {
Radek Krejci011e4aa2020-09-04 15:22:31 +02002413 ret = lydict_insert_zc(ctx, (char *)value, &at->value);
2414 LY_CHECK_GOTO(ret, finish);
Michal Vasko52927e22020-03-16 17:26:14 +01002415 *dynamic = 0;
2416 } else {
Radek Krejci011e4aa2020-09-04 15:22:31 +02002417 LY_CHECK_GOTO(ret = lydict_insert(ctx, value, value_len, &at->value), finish);
Michal Vasko52927e22020-03-16 17:26:14 +01002418 }
Michal Vasko501af032020-11-11 20:27:44 +01002419 at->format = format;
2420 at->val_prefix_data = val_prefix_data;
2421 at->hints = hints;
Michal Vasko52927e22020-03-16 17:26:14 +01002422
2423 /* insert as the last attribute */
2424 if (parent) {
Michal Vaskoa5da3292020-08-12 13:10:50 +02002425 lyd_insert_attr(parent, at);
Michal Vasko52927e22020-03-16 17:26:14 +01002426 } else if (*attr) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002427 for (last = *attr; last->next; last = last->next) {}
Michal Vasko52927e22020-03-16 17:26:14 +01002428 last->next = at;
2429 }
2430
Radek Krejci011e4aa2020-09-04 15:22:31 +02002431finish:
2432 if (ret) {
2433 lyd_free_attr_single(ctx, at);
2434 } else if (attr) {
Michal Vasko52927e22020-03-16 17:26:14 +01002435 *attr = at;
2436 }
2437 return LY_SUCCESS;
2438}
2439
Radek Krejci084289f2019-07-09 17:35:30 +02002440API const struct lyd_node_term *
Michal Vasko004d3152020-06-11 19:59:22 +02002441lyd_target(const struct ly_path *path, const struct lyd_node *tree)
Radek Krejci084289f2019-07-09 17:35:30 +02002442{
Michal Vasko004d3152020-06-11 19:59:22 +02002443 struct lyd_node *target;
Radek Krejci084289f2019-07-09 17:35:30 +02002444
Michal Vasko004d3152020-06-11 19:59:22 +02002445 if (ly_path_eval(path, tree, &target)) {
2446 return NULL;
Radek Krejci084289f2019-07-09 17:35:30 +02002447 }
2448
Michal Vasko004d3152020-06-11 19:59:22 +02002449 return (struct lyd_node_term *)target;
Radek Krejci084289f2019-07-09 17:35:30 +02002450}
2451
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002452API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002453lyd_compare_single(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options)
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002454{
2455 const struct lyd_node *iter1, *iter2;
2456 struct lyd_node_term *term1, *term2;
2457 struct lyd_node_any *any1, *any2;
Michal Vasko52927e22020-03-16 17:26:14 +01002458 struct lyd_node_opaq *opaq1, *opaq2;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002459 size_t len1, len2;
Radek Krejci084289f2019-07-09 17:35:30 +02002460
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002461 if (!node1 || !node2) {
2462 if (node1 == node2) {
2463 return LY_SUCCESS;
2464 } else {
2465 return LY_ENOT;
2466 }
2467 }
2468
Michal Vaskob7be7a82020-08-20 09:09:04 +02002469 if ((LYD_CTX(node1) != LYD_CTX(node2)) || (node1->schema != node2->schema)) {
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002470 return LY_ENOT;
2471 }
2472
2473 if (node1->hash != node2->hash) {
2474 return LY_ENOT;
2475 }
Michal Vasko52927e22020-03-16 17:26:14 +01002476 /* 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 +02002477
Michal Vasko52927e22020-03-16 17:26:14 +01002478 if (!node1->schema) {
2479 opaq1 = (struct lyd_node_opaq *)node1;
2480 opaq2 = (struct lyd_node_opaq *)node2;
Michal Vaskoad92b672020-11-12 13:11:31 +01002481 if ((opaq1->name.name != opaq2->name.name) || (opaq1->format != opaq2->format) ||
2482 (opaq1->name.module_ns != opaq2->name.module_ns)) {
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002483 return LY_ENOT;
2484 }
Michal Vasko52927e22020-03-16 17:26:14 +01002485 switch (opaq1->format) {
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01002486 case LY_PREF_XML:
2487 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 +01002488 return LY_ENOT;
2489 }
2490 break;
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01002491 case LY_PREF_JSON:
Radek Krejci1798aae2020-07-14 13:26:06 +02002492 /* prefixes in JSON are unique, so it is not necessary to canonize the values */
2493 if (strcmp(opaq1->value, opaq2->value)) {
2494 return LY_ENOT;
2495 }
2496 break;
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01002497 default:
Michal Vasko52927e22020-03-16 17:26:14 +01002498 /* not allowed */
Michal Vaskob7be7a82020-08-20 09:09:04 +02002499 LOGINT(LYD_CTX(node1));
Michal Vasko52927e22020-03-16 17:26:14 +01002500 return LY_EINT;
2501 }
2502 if (options & LYD_COMPARE_FULL_RECURSION) {
2503 iter1 = opaq1->child;
2504 iter2 = opaq2->child;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002505 goto all_children_compare;
Michal Vasko52927e22020-03-16 17:26:14 +01002506 }
2507 return LY_SUCCESS;
2508 } else {
2509 switch (node1->schema->nodetype) {
2510 case LYS_LEAF:
2511 case LYS_LEAFLIST:
2512 if (options & LYD_COMPARE_DEFAULTS) {
2513 if ((node1->flags & LYD_DEFAULT) != (node2->flags & LYD_DEFAULT)) {
2514 return LY_ENOT;
2515 }
2516 }
2517
Michal Vasko1a2bf2e2020-06-16 13:07:48 +02002518 term1 = (struct lyd_node_term *)node1;
2519 term2 = (struct lyd_node_term *)node2;
Michal Vasko1a2bf2e2020-06-16 13:07:48 +02002520 return term1->value.realtype->plugin->compare(&term1->value, &term2->value);
Michal Vasko52927e22020-03-16 17:26:14 +01002521 case LYS_CONTAINER:
2522 if (options & LYD_COMPARE_DEFAULTS) {
2523 if ((node1->flags & LYD_DEFAULT) != (node2->flags & LYD_DEFAULT)) {
2524 return LY_ENOT;
2525 }
2526 }
2527 if (options & LYD_COMPARE_FULL_RECURSION) {
Michal Vasko9e685082021-01-29 14:49:09 +01002528 iter1 = lyd_child(node1);
2529 iter2 = lyd_child(node2);
Michal Vasko52927e22020-03-16 17:26:14 +01002530 goto all_children_compare;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002531 }
2532 return LY_SUCCESS;
Michal Vasko1bf09392020-03-27 12:38:10 +01002533 case LYS_RPC:
Michal Vasko52927e22020-03-16 17:26:14 +01002534 case LYS_ACTION:
2535 if (options & LYD_COMPARE_FULL_RECURSION) {
2536 /* TODO action/RPC
2537 goto all_children_compare;
2538 */
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002539 }
2540 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01002541 case LYS_NOTIF:
2542 if (options & LYD_COMPARE_FULL_RECURSION) {
2543 /* TODO Notification
2544 goto all_children_compare;
2545 */
2546 }
2547 return LY_SUCCESS;
2548 case LYS_LIST:
Michal Vasko9e685082021-01-29 14:49:09 +01002549 iter1 = lyd_child(node1);
2550 iter2 = lyd_child(node2);
Michal Vasko52927e22020-03-16 17:26:14 +01002551
2552 if (!(node1->schema->flags & LYS_KEYLESS) && !(options & LYD_COMPARE_FULL_RECURSION)) {
2553 /* lists with keys, their equivalence is based on their keys */
Michal Vasko544e58a2021-01-28 14:33:41 +01002554 for (const struct lysc_node *key = lysc_node_child(node1->schema);
Michal Vaskoc57d9a92020-06-23 13:28:27 +02002555 key && (key->flags & LYS_KEY);
Michal Vasko52927e22020-03-16 17:26:14 +01002556 key = key->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02002557 if (lyd_compare_single(iter1, iter2, options)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002558 return LY_ENOT;
2559 }
2560 iter1 = iter1->next;
2561 iter2 = iter2->next;
2562 }
2563 } else {
2564 /* lists without keys, their equivalence is based on equivalence of all the children (both direct and indirect) */
2565
Radek Krejci0f969882020-08-21 16:56:47 +02002566all_children_compare:
Michal Vasko52927e22020-03-16 17:26:14 +01002567 if (!iter1 && !iter2) {
2568 /* no children, nothing to compare */
2569 return LY_SUCCESS;
2570 }
2571
Michal Vaskod989ba02020-08-24 10:59:24 +02002572 for ( ; iter1 && iter2; iter1 = iter1->next, iter2 = iter2->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02002573 if (lyd_compare_single(iter1, iter2, options | LYD_COMPARE_FULL_RECURSION)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002574 return LY_ENOT;
2575 }
2576 }
2577 if (iter1 || iter2) {
2578 return LY_ENOT;
2579 }
2580 }
2581 return LY_SUCCESS;
2582 case LYS_ANYXML:
2583 case LYS_ANYDATA:
Michal Vasko22df3f02020-08-24 13:29:22 +02002584 any1 = (struct lyd_node_any *)node1;
2585 any2 = (struct lyd_node_any *)node2;
Michal Vasko52927e22020-03-16 17:26:14 +01002586
2587 if (any1->value_type != any2->value_type) {
2588 return LY_ENOT;
2589 }
2590 switch (any1->value_type) {
2591 case LYD_ANYDATA_DATATREE:
2592 iter1 = any1->value.tree;
2593 iter2 = any2->value.tree;
2594 goto all_children_compare;
2595 case LYD_ANYDATA_STRING:
2596 case LYD_ANYDATA_XML:
2597 case LYD_ANYDATA_JSON:
2598 len1 = strlen(any1->value.str);
2599 len2 = strlen(any2->value.str);
Michal Vasko69730152020-10-09 16:30:07 +02002600 if ((len1 != len2) || strcmp(any1->value.str, any2->value.str)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002601 return LY_ENOT;
2602 }
2603 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01002604 case LYD_ANYDATA_LYB:
Michal Vasko60ea6352020-06-29 13:39:39 +02002605 len1 = lyd_lyb_data_length(any1->value.mem);
2606 len2 = lyd_lyb_data_length(any2->value.mem);
Michal Vasko69730152020-10-09 16:30:07 +02002607 if ((len1 != len2) || memcmp(any1->value.mem, any2->value.mem, len1)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002608 return LY_ENOT;
2609 }
2610 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01002611 }
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002612 }
2613 }
2614
Michal Vaskob7be7a82020-08-20 09:09:04 +02002615 LOGINT(LYD_CTX(node1));
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002616 return LY_EINT;
2617}
Radek Krejci22ebdba2019-07-25 13:59:43 +02002618
Michal Vasko21725742020-06-29 11:49:25 +02002619API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002620lyd_compare_siblings(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options)
Michal Vasko8f359bf2020-07-28 10:41:15 +02002621{
Michal Vaskod989ba02020-08-24 10:59:24 +02002622 for ( ; node1 && node2; node1 = node1->next, node2 = node2->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02002623 LY_CHECK_RET(lyd_compare_single(node1, node2, options));
2624 }
2625
Michal Vasko11a81432020-07-28 16:31:29 +02002626 if (node1 == node2) {
2627 return LY_SUCCESS;
Michal Vasko8f359bf2020-07-28 10:41:15 +02002628 }
Michal Vasko11a81432020-07-28 16:31:29 +02002629 return LY_ENOT;
Michal Vasko8f359bf2020-07-28 10:41:15 +02002630}
2631
2632API LY_ERR
Michal Vasko21725742020-06-29 11:49:25 +02002633lyd_compare_meta(const struct lyd_meta *meta1, const struct lyd_meta *meta2)
2634{
2635 if (!meta1 || !meta2) {
2636 if (meta1 == meta2) {
2637 return LY_SUCCESS;
2638 } else {
2639 return LY_ENOT;
2640 }
2641 }
2642
Michal Vaskoa8083062020-11-06 17:22:10 +01002643 if ((meta1->annotation->module->ctx != meta2->annotation->module->ctx) || (meta1->annotation != meta2->annotation)) {
Michal Vasko21725742020-06-29 11:49:25 +02002644 return LY_ENOT;
2645 }
2646
Michal Vasko21725742020-06-29 11:49:25 +02002647 return meta1->value.realtype->plugin->compare(&meta1->value, &meta2->value);
2648}
2649
Radek Krejci22ebdba2019-07-25 13:59:43 +02002650/**
Michal Vasko52927e22020-03-16 17:26:14 +01002651 * @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 +02002652 *
2653 * 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 +02002654 *
2655 * @param[in] node Original node to duplicate
2656 * @param[in] parent Parent to insert into, NULL for top-level sibling.
2657 * @param[in,out] first First sibling, NULL if no top-level sibling exist yet. Can be also NULL if @p parent is set.
2658 * @param[in] options Bitmask of options flags, see @ref dupoptions.
2659 * @param[out] dup_p Pointer where the created duplicated node is placed (besides connecting it int @p parent / @p first sibling).
2660 * @return LY_ERR value
Radek Krejci22ebdba2019-07-25 13:59:43 +02002661 */
Michal Vasko52927e22020-03-16 17:26:14 +01002662static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002663lyd_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 +02002664 struct lyd_node **dup_p)
Radek Krejci22ebdba2019-07-25 13:59:43 +02002665{
Michal Vasko52927e22020-03-16 17:26:14 +01002666 LY_ERR ret;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002667 struct lyd_node *dup = NULL;
Michal Vasko61551fa2020-07-09 15:45:45 +02002668 struct lyd_meta *meta;
2669 struct lyd_node_any *any;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002670
Michal Vasko52927e22020-03-16 17:26:14 +01002671 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002672
Michal Vasko52927e22020-03-16 17:26:14 +01002673 if (!node->schema) {
2674 dup = calloc(1, sizeof(struct lyd_node_opaq));
2675 } else {
2676 switch (node->schema->nodetype) {
Michal Vasko1bf09392020-03-27 12:38:10 +01002677 case LYS_RPC:
Michal Vasko52927e22020-03-16 17:26:14 +01002678 case LYS_ACTION:
2679 case LYS_NOTIF:
2680 case LYS_CONTAINER:
2681 case LYS_LIST:
2682 dup = calloc(1, sizeof(struct lyd_node_inner));
2683 break;
2684 case LYS_LEAF:
2685 case LYS_LEAFLIST:
2686 dup = calloc(1, sizeof(struct lyd_node_term));
2687 break;
2688 case LYS_ANYDATA:
2689 case LYS_ANYXML:
2690 dup = calloc(1, sizeof(struct lyd_node_any));
2691 break;
2692 default:
Michal Vaskob7be7a82020-08-20 09:09:04 +02002693 LOGINT(LYD_CTX(node));
Michal Vasko52927e22020-03-16 17:26:14 +01002694 ret = LY_EINT;
2695 goto error;
2696 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02002697 }
Michal Vaskob7be7a82020-08-20 09:09:04 +02002698 LY_CHECK_ERR_GOTO(!dup, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002699
Michal Vaskof6df0a02020-06-16 13:08:34 +02002700 if (options & LYD_DUP_WITH_FLAGS) {
2701 dup->flags = node->flags;
2702 } else {
2703 dup->flags = (node->flags & LYD_DEFAULT) | LYD_NEW;
2704 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02002705 dup->schema = node->schema;
Michal Vasko52927e22020-03-16 17:26:14 +01002706 dup->prev = dup;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002707
Michal Vasko25a32822020-07-09 15:48:22 +02002708 /* duplicate metadata */
2709 if (!(options & LYD_DUP_NO_META)) {
2710 LY_LIST_FOR(node->meta, meta) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002711 LY_CHECK_GOTO(ret = lyd_dup_meta_single(meta, dup, NULL), error);
Michal Vasko25a32822020-07-09 15:48:22 +02002712 }
2713 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02002714
2715 /* nodetype-specific work */
Michal Vasko52927e22020-03-16 17:26:14 +01002716 if (!dup->schema) {
2717 struct lyd_node_opaq *opaq = (struct lyd_node_opaq *)dup;
2718 struct lyd_node_opaq *orig = (struct lyd_node_opaq *)node;
2719 struct lyd_node *child;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002720
2721 if (options & LYD_DUP_RECURSIVE) {
2722 /* duplicate all the children */
2723 LY_LIST_FOR(orig->child, child) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002724 LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, NULL, options, NULL), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002725 }
2726 }
Michal Vaskoad92b672020-11-12 13:11:31 +01002727 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->name.name, 0, &opaq->name.name), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002728 opaq->format = orig->format;
Michal Vaskoad92b672020-11-12 13:11:31 +01002729 if (orig->name.prefix) {
2730 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->name.prefix, 0, &opaq->name.prefix), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002731 }
Michal Vaskoad92b672020-11-12 13:11:31 +01002732 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 +01002733 if (orig->val_prefix_data) {
2734 ret = ly_dup_prefix_data(LYD_CTX(node), opaq->format, orig->val_prefix_data, &opaq->val_prefix_data);
2735 LY_CHECK_GOTO(ret, error);
Michal Vasko52927e22020-03-16 17:26:14 +01002736 }
Radek Krejci011e4aa2020-09-04 15:22:31 +02002737 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->value, 0, &opaq->value), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002738 opaq->ctx = orig->ctx;
2739 } else if (dup->schema->nodetype & LYD_NODE_TERM) {
2740 struct lyd_node_term *term = (struct lyd_node_term *)dup;
2741 struct lyd_node_term *orig = (struct lyd_node_term *)node;
2742
2743 term->hash = orig->hash;
Michal Vaskob7be7a82020-08-20 09:09:04 +02002744 LY_CHECK_ERR_GOTO(orig->value.realtype->plugin->duplicate(LYD_CTX(node), &orig->value, &term->value),
Michal Vasko69730152020-10-09 16:30:07 +02002745 LOGERR(LYD_CTX(node), LY_EINT, "Value duplication failed."); ret = LY_EINT, error);
Michal Vasko52927e22020-03-16 17:26:14 +01002746 } else if (dup->schema->nodetype & LYD_NODE_INNER) {
2747 struct lyd_node_inner *orig = (struct lyd_node_inner *)node;
2748 struct lyd_node *child;
2749
2750 if (options & LYD_DUP_RECURSIVE) {
2751 /* duplicate all the children */
2752 LY_LIST_FOR(orig->child, child) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002753 LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, NULL, options, NULL), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002754 }
Michal Vasko69730152020-10-09 16:30:07 +02002755 } else if ((dup->schema->nodetype == LYS_LIST) && !(dup->schema->flags & LYS_KEYLESS)) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02002756 /* always duplicate keys of a list */
Radek Krejci22ebdba2019-07-25 13:59:43 +02002757 child = orig->child;
Michal Vasko544e58a2021-01-28 14:33:41 +01002758 for (const struct lysc_node *key = lysc_node_child(dup->schema);
Michal Vaskoc57d9a92020-06-23 13:28:27 +02002759 key && (key->flags & LYS_KEY);
Radek Krejci0fe9b512019-07-26 17:51:05 +02002760 key = key->next) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02002761 if (!child) {
2762 /* possibly not keys are present in filtered tree */
2763 break;
Radek Krejci0fe9b512019-07-26 17:51:05 +02002764 } else if (child->schema != key) {
2765 /* possibly not all keys are present in filtered tree,
2766 * but there can be also some non-key nodes */
2767 continue;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002768 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002769 LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, NULL, options, NULL), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002770 child = child->next;
2771 }
2772 }
2773 lyd_hash(dup);
2774 } else if (dup->schema->nodetype & LYD_NODE_ANY) {
Michal Vasko61551fa2020-07-09 15:45:45 +02002775 dup->hash = node->hash;
2776 any = (struct lyd_node_any *)node;
2777 LY_CHECK_GOTO(ret = lyd_any_copy_value(dup, &any->value, any->value_type), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002778 }
2779
Michal Vasko52927e22020-03-16 17:26:14 +01002780 /* insert */
2781 lyd_insert_node(parent, first, dup);
Michal Vasko52927e22020-03-16 17:26:14 +01002782
2783 if (dup_p) {
2784 *dup_p = dup;
2785 }
2786 return LY_SUCCESS;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002787
2788error:
Michal Vasko52927e22020-03-16 17:26:14 +01002789 lyd_free_tree(dup);
2790 return ret;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002791}
2792
Michal Vasko3a41dff2020-07-15 14:30:28 +02002793static LY_ERR
2794lyd_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 +02002795 struct lyd_node_inner **local_parent)
Radek Krejci22ebdba2019-07-25 13:59:43 +02002796{
Michal Vasko3a41dff2020-07-15 14:30:28 +02002797 const struct lyd_node_inner *orig_parent, *iter;
Radek Krejci857189e2020-09-01 13:26:36 +02002798 ly_bool repeat = 1;
Michal Vasko3a41dff2020-07-15 14:30:28 +02002799
2800 *dup_parent = NULL;
2801 *local_parent = NULL;
2802
2803 for (orig_parent = node->parent; repeat && orig_parent; orig_parent = orig_parent->parent) {
2804 if (parent && (parent->schema == orig_parent->schema)) {
2805 /* stop creating parents, connect what we have into the provided parent */
2806 iter = parent;
2807 repeat = 0;
2808 } else {
2809 iter = NULL;
2810 LY_CHECK_RET(lyd_dup_r((struct lyd_node *)orig_parent, NULL, (struct lyd_node **)&iter, 0,
Radek Krejci0f969882020-08-21 16:56:47 +02002811 (struct lyd_node **)&iter));
Michal Vasko3a41dff2020-07-15 14:30:28 +02002812 }
2813 if (!*local_parent) {
2814 *local_parent = (struct lyd_node_inner *)iter;
2815 }
2816 if (iter->child) {
2817 /* 1) list - add after keys
2818 * 2) provided parent with some children */
2819 iter->child->prev->next = *dup_parent;
2820 if (*dup_parent) {
2821 (*dup_parent)->prev = iter->child->prev;
2822 iter->child->prev = *dup_parent;
2823 }
2824 } else {
2825 ((struct lyd_node_inner *)iter)->child = *dup_parent;
2826 }
2827 if (*dup_parent) {
2828 (*dup_parent)->parent = (struct lyd_node_inner *)iter;
2829 }
2830 *dup_parent = (struct lyd_node *)iter;
2831 }
2832
2833 if (repeat && parent) {
2834 /* given parent and created parents chain actually do not interconnect */
Michal Vaskob7be7a82020-08-20 09:09:04 +02002835 LOGERR(LYD_CTX(node), LY_EINVAL,
Michal Vasko69730152020-10-09 16:30:07 +02002836 "Invalid argument parent (%s()) - does not interconnect with the created node's parents chain.", __func__);
Michal Vasko3a41dff2020-07-15 14:30:28 +02002837 return LY_EINVAL;
2838 }
2839
2840 return LY_SUCCESS;
2841}
2842
2843static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02002844lyd_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 +02002845{
2846 LY_ERR rc;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002847 const struct lyd_node *orig; /* original node to be duplicated */
2848 struct lyd_node *first = NULL; /* the first duplicated node, this is returned */
Radek Krejci22ebdba2019-07-25 13:59:43 +02002849 struct lyd_node *top = NULL; /* the most higher created node */
2850 struct lyd_node_inner *local_parent = NULL; /* the direct parent node for the duplicated node(s) */
Radek Krejci22ebdba2019-07-25 13:59:43 +02002851
Michal Vasko3a41dff2020-07-15 14:30:28 +02002852 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002853
2854 if (options & LYD_DUP_WITH_PARENTS) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002855 LY_CHECK_GOTO(rc = lyd_dup_get_local_parent(node, parent, &top, &local_parent), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002856 } else {
2857 local_parent = parent;
2858 }
2859
Radek Krejci22ebdba2019-07-25 13:59:43 +02002860 LY_LIST_FOR(node, orig) {
Michal Vasko35f4d772021-01-12 12:08:57 +01002861 if (lysc_is_key(orig->schema)) {
2862 if (local_parent) {
2863 /* the key must already exist in the parent */
2864 rc = lyd_find_sibling_schema(local_parent->child, orig->schema, first ? NULL : &first);
2865 LY_CHECK_ERR_GOTO(rc, LOGINT(LYD_CTX(node)), error);
2866 } else {
2867 assert(!(options & LYD_DUP_WITH_PARENTS));
2868 /* duplicating a single key, okay, I suppose... */
2869 rc = lyd_dup_r(orig, NULL, &first, options, first ? NULL : &first);
2870 LY_CHECK_GOTO(rc, error);
2871 }
2872 } else {
2873 /* if there is no local parent, it will be inserted into first */
Michal Vasko9e685082021-01-29 14:49:09 +01002874 rc = lyd_dup_r(orig, &local_parent->node, &first, options, first ? NULL : &first);
Michal Vasko35f4d772021-01-12 12:08:57 +01002875 LY_CHECK_GOTO(rc, error);
2876 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002877 if (nosiblings) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02002878 break;
2879 }
2880 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002881
2882 /* rehash if needed */
Michal Vaskod989ba02020-08-24 10:59:24 +02002883 for ( ; local_parent; local_parent = local_parent->parent) {
Michal Vasko69730152020-10-09 16:30:07 +02002884 if ((local_parent->schema->nodetype == LYS_LIST) && (local_parent->schema->flags & LYS_KEYLESS)) {
Michal Vasko9e685082021-01-29 14:49:09 +01002885 lyd_hash(&local_parent->node);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002886 }
2887 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002888
2889 if (dup) {
2890 *dup = first;
2891 }
2892 return LY_SUCCESS;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002893
2894error:
2895 if (top) {
2896 lyd_free_tree(top);
2897 } else {
Michal Vaskof03ed032020-03-04 13:31:44 +01002898 lyd_free_siblings(first);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002899 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002900 return rc;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002901}
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002902
Michal Vasko3a41dff2020-07-15 14:30:28 +02002903API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002904lyd_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 +02002905{
2906 return lyd_dup(node, parent, options, 1, dup);
2907}
2908
2909API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002910lyd_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 +02002911{
2912 return lyd_dup(node, parent, options, 0, dup);
2913}
2914
2915API LY_ERR
2916lyd_dup_meta_single(const struct lyd_meta *meta, struct lyd_node *node, struct lyd_meta **dup)
Michal Vasko25a32822020-07-09 15:48:22 +02002917{
Radek Krejci011e4aa2020-09-04 15:22:31 +02002918 LY_ERR ret = LY_SUCCESS;
Michal Vasko25a32822020-07-09 15:48:22 +02002919 struct lyd_meta *mt, *last;
2920
Michal Vasko3a41dff2020-07-15 14:30:28 +02002921 LY_CHECK_ARG_RET(NULL, meta, node, LY_EINVAL);
Michal Vasko25a32822020-07-09 15:48:22 +02002922
2923 /* create a copy */
2924 mt = calloc(1, sizeof *mt);
Michal Vaskob7be7a82020-08-20 09:09:04 +02002925 LY_CHECK_ERR_RET(!mt, LOGMEM(LYD_CTX(node)), LY_EMEM);
Michal Vasko25a32822020-07-09 15:48:22 +02002926 mt->annotation = meta->annotation;
Michal Vaskob7be7a82020-08-20 09:09:04 +02002927 ret = meta->value.realtype->plugin->duplicate(LYD_CTX(node), &meta->value, &mt->value);
Radek Krejci011e4aa2020-09-04 15:22:31 +02002928 LY_CHECK_ERR_GOTO(ret, LOGERR(LYD_CTX(node), LY_EINT, "Value duplication failed."), finish);
2929 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), meta->name, 0, &mt->name), finish);
Michal Vasko25a32822020-07-09 15:48:22 +02002930
2931 /* insert as the last attribute */
Radek Krejci011e4aa2020-09-04 15:22:31 +02002932 mt->parent = node;
Michal Vasko25a32822020-07-09 15:48:22 +02002933 if (node->meta) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002934 for (last = node->meta; last->next; last = last->next) {}
Michal Vasko25a32822020-07-09 15:48:22 +02002935 last->next = mt;
2936 } else {
2937 node->meta = mt;
2938 }
2939
Radek Krejci011e4aa2020-09-04 15:22:31 +02002940finish:
2941 if (ret) {
2942 lyd_free_meta_single(mt);
2943 } else if (dup) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002944 *dup = mt;
2945 }
2946 return LY_SUCCESS;
Michal Vasko25a32822020-07-09 15:48:22 +02002947}
2948
Michal Vasko4490d312020-06-16 13:08:55 +02002949/**
2950 * @brief Merge a source sibling into target siblings.
2951 *
2952 * @param[in,out] first_trg First target sibling, is updated if top-level.
2953 * @param[in] parent_trg Target parent.
2954 * @param[in,out] sibling_src Source sibling to merge, set to NULL if spent.
2955 * @param[in] options Merge options.
2956 * @return LY_ERR value.
2957 */
2958static LY_ERR
2959lyd_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 +02002960 uint16_t options)
Michal Vasko4490d312020-06-16 13:08:55 +02002961{
2962 LY_ERR ret;
2963 const struct lyd_node *child_src, *tmp, *sibling_src;
Michal Vasko56daf732020-08-10 10:57:18 +02002964 struct lyd_node *match_trg, *dup_src, *elem;
Michal Vasko4490d312020-06-16 13:08:55 +02002965 struct lysc_type *type;
Michal Vasko4490d312020-06-16 13:08:55 +02002966
2967 sibling_src = *sibling_src_p;
2968 if (sibling_src->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) {
2969 /* try to find the exact instance */
2970 ret = lyd_find_sibling_first(*first_trg, sibling_src, &match_trg);
2971 } else {
2972 /* try to simply find the node, there cannot be more instances */
2973 ret = lyd_find_sibling_val(*first_trg, sibling_src->schema, NULL, 0, &match_trg);
2974 }
2975
2976 if (!ret) {
2977 /* node found, make sure even value matches for all node types */
Michal Vasko8f359bf2020-07-28 10:41:15 +02002978 if ((match_trg->schema->nodetype == LYS_LEAF) && lyd_compare_single(sibling_src, match_trg, LYD_COMPARE_DEFAULTS)) {
Michal Vasko4490d312020-06-16 13:08:55 +02002979 /* since they are different, they cannot both be default */
2980 assert(!(sibling_src->flags & LYD_DEFAULT) || !(match_trg->flags & LYD_DEFAULT));
2981
Michal Vasko3a41dff2020-07-15 14:30:28 +02002982 /* update value (or only LYD_DEFAULT flag) only if flag set or the source node is not default */
2983 if ((options & LYD_MERGE_DEFAULTS) || !(sibling_src->flags & LYD_DEFAULT)) {
Michal Vasko4490d312020-06-16 13:08:55 +02002984 type = ((struct lysc_node_leaf *)match_trg->schema)->type;
Michal Vaskob7be7a82020-08-20 09:09:04 +02002985 type->plugin->free(LYD_CTX(match_trg), &((struct lyd_node_term *)match_trg)->value);
2986 LY_CHECK_RET(type->plugin->duplicate(LYD_CTX(match_trg), &((struct lyd_node_term *)sibling_src)->value,
Michal Vasko69730152020-10-09 16:30:07 +02002987 &((struct lyd_node_term *)match_trg)->value));
Michal Vasko4490d312020-06-16 13:08:55 +02002988
2989 /* copy flags and add LYD_NEW */
2990 match_trg->flags = sibling_src->flags | LYD_NEW;
2991 }
Michal Vasko8f359bf2020-07-28 10:41:15 +02002992 } else if ((match_trg->schema->nodetype & LYS_ANYDATA) && lyd_compare_single(sibling_src, match_trg, 0)) {
Michal Vasko4c583e82020-07-17 12:16:14 +02002993 /* update value */
2994 LY_CHECK_RET(lyd_any_copy_value(match_trg, &((struct lyd_node_any *)sibling_src)->value,
Radek Krejci0f969882020-08-21 16:56:47 +02002995 ((struct lyd_node_any *)sibling_src)->value_type));
Michal Vasko4490d312020-06-16 13:08:55 +02002996
2997 /* copy flags and add LYD_NEW */
2998 match_trg->flags = sibling_src->flags | LYD_NEW;
Michal Vasko4490d312020-06-16 13:08:55 +02002999 } else {
3000 /* check descendants, recursively */
Radek Krejcia1c1e542020-09-29 16:06:52 +02003001 LY_LIST_FOR_SAFE(lyd_child_no_keys(sibling_src), tmp, child_src) {
Michal Vaskoe0665742021-02-11 11:08:44 +01003002 LY_CHECK_RET(lyd_merge_sibling_r(lyd_node_child_p(match_trg), match_trg, &child_src, options));
Michal Vasko4490d312020-06-16 13:08:55 +02003003 }
3004 }
3005 } else {
3006 /* node not found, merge it */
3007 if (options & LYD_MERGE_DESTRUCT) {
3008 dup_src = (struct lyd_node *)sibling_src;
3009 lyd_unlink_tree(dup_src);
3010 /* spend it */
3011 *sibling_src_p = NULL;
3012 } else {
Michal Vasko3a41dff2020-07-15 14:30:28 +02003013 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 +02003014 }
3015
3016 /* set LYD_NEW for all the new nodes, required for validation */
Michal Vasko56daf732020-08-10 10:57:18 +02003017 LYD_TREE_DFS_BEGIN(dup_src, elem) {
Michal Vasko4490d312020-06-16 13:08:55 +02003018 elem->flags |= LYD_NEW;
Michal Vasko56daf732020-08-10 10:57:18 +02003019 LYD_TREE_DFS_END(dup_src, elem);
Michal Vasko4490d312020-06-16 13:08:55 +02003020 }
3021
3022 lyd_insert_node(parent_trg, first_trg, dup_src);
3023 }
3024
3025 return LY_SUCCESS;
3026}
3027
Michal Vasko3a41dff2020-07-15 14:30:28 +02003028static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003029lyd_merge(struct lyd_node **target, const struct lyd_node *source, uint16_t options, ly_bool nosiblings)
Michal Vasko4490d312020-06-16 13:08:55 +02003030{
3031 const struct lyd_node *sibling_src, *tmp;
Radek Krejci857189e2020-09-01 13:26:36 +02003032 ly_bool first;
Michal Vasko4490d312020-06-16 13:08:55 +02003033
3034 LY_CHECK_ARG_RET(NULL, target, LY_EINVAL);
3035
3036 if (!source) {
3037 /* nothing to merge */
3038 return LY_SUCCESS;
3039 }
3040
Michal Vasko831422b2020-11-24 11:20:51 +01003041 if ((*target && lysc_data_parent((*target)->schema)) || lysc_data_parent(source->schema)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02003042 LOGERR(LYD_CTX(source), LY_EINVAL, "Invalid arguments - can merge only 2 top-level subtrees (%s()).", __func__);
Michal Vasko4490d312020-06-16 13:08:55 +02003043 return LY_EINVAL;
3044 }
3045
3046 LY_LIST_FOR_SAFE(source, tmp, sibling_src) {
Radek Krejci857189e2020-09-01 13:26:36 +02003047 first = (sibling_src == source) ? 1 : 0;
Michal Vasko4490d312020-06-16 13:08:55 +02003048 LY_CHECK_RET(lyd_merge_sibling_r(target, NULL, &sibling_src, options));
3049 if (first && !sibling_src) {
3050 /* source was spent (unlinked), move to the next node */
3051 source = tmp;
3052 }
3053
Michal Vasko3a41dff2020-07-15 14:30:28 +02003054 if (nosiblings) {
Michal Vasko4490d312020-06-16 13:08:55 +02003055 break;
3056 }
3057 }
3058
3059 if (options & LYD_MERGE_DESTRUCT) {
3060 /* free any leftover source data that were not merged */
3061 lyd_free_siblings((struct lyd_node *)source);
3062 }
3063
3064 return LY_SUCCESS;
3065}
3066
Michal Vasko3a41dff2020-07-15 14:30:28 +02003067API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003068lyd_merge_tree(struct lyd_node **target, const struct lyd_node *source, uint16_t options)
Michal Vasko3a41dff2020-07-15 14:30:28 +02003069{
3070 return lyd_merge(target, source, options, 1);
3071}
3072
3073API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003074lyd_merge_siblings(struct lyd_node **target, const struct lyd_node *source, uint16_t options)
Michal Vasko3a41dff2020-07-15 14:30:28 +02003075{
3076 return lyd_merge(target, source, options, 0);
3077}
3078
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003079static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003080lyd_path_str_enlarge(char **buffer, size_t *buflen, size_t reqlen, ly_bool is_static)
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003081{
Michal Vasko14654712020-02-06 08:35:21 +01003082 /* ending \0 */
3083 ++reqlen;
3084
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003085 if (reqlen > *buflen) {
3086 if (is_static) {
3087 return LY_EINCOMPLETE;
3088 }
3089
3090 *buffer = ly_realloc(*buffer, reqlen * sizeof **buffer);
3091 if (!*buffer) {
3092 return LY_EMEM;
3093 }
3094
3095 *buflen = reqlen;
3096 }
3097
3098 return LY_SUCCESS;
3099}
3100
Michal Vaskod59035b2020-07-08 12:00:06 +02003101LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003102lyd_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 +02003103{
3104 const struct lyd_node *key;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003105 size_t len;
3106 const char *val;
3107 char quot;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003108
Radek Krejcia1c1e542020-09-29 16:06:52 +02003109 for (key = lyd_child(node); key && (key->schema->flags & LYS_KEY); key = key->next) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02003110 val = LYD_CANON_VALUE(key);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003111 len = 1 + strlen(key->schema->name) + 2 + strlen(val) + 2;
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003112 LY_CHECK_RET(lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static));
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003113
3114 quot = '\'';
3115 if (strchr(val, '\'')) {
3116 quot = '"';
3117 }
3118 *bufused += sprintf(*buffer + *bufused, "[%s=%c%s%c]", key->schema->name, quot, val, quot);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003119 }
3120
3121 return LY_SUCCESS;
3122}
3123
3124/**
3125 * @brief Append leaf-list value predicate to path.
3126 *
3127 * @param[in] node Node to print.
3128 * @param[in,out] buffer Buffer to print to.
3129 * @param[in,out] buflen Current buffer length.
3130 * @param[in,out] bufused Current number of characters used in @p buffer.
3131 * @param[in] is_static Whether buffer is static or can be reallocated.
3132 * @return LY_ERR
3133 */
3134static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003135lyd_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 +02003136{
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003137 size_t len;
3138 const char *val;
3139 char quot;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003140
Michal Vaskob7be7a82020-08-20 09:09:04 +02003141 val = LYD_CANON_VALUE(node);
Radek Krejcif13b87b2020-12-01 22:02:17 +01003142 len = 4 + strlen(val) + 2; /* "[.='" + val + "']" */
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003143 LY_CHECK_RET(lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static));
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003144
3145 quot = '\'';
3146 if (strchr(val, '\'')) {
3147 quot = '"';
3148 }
3149 *bufused += sprintf(*buffer + *bufused, "[.=%c%s%c]", quot, val, quot);
3150
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003151 return LY_SUCCESS;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003152}
3153
3154/**
3155 * @brief Append node position (relative to its other instances) predicate to path.
3156 *
3157 * @param[in] node Node to print.
3158 * @param[in,out] buffer Buffer to print to.
3159 * @param[in,out] buflen Current buffer length.
3160 * @param[in,out] bufused Current number of characters used in @p buffer.
3161 * @param[in] is_static Whether buffer is static or can be reallocated.
3162 * @return LY_ERR
3163 */
3164static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003165lyd_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 +02003166{
3167 const struct lyd_node *first, *iter;
3168 size_t len;
Radek Krejci1deb5be2020-08-26 16:43:36 +02003169 uint64_t pos;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003170 char *val = NULL;
3171 LY_ERR rc;
3172
3173 if (node->parent) {
3174 first = node->parent->child;
3175 } else {
Michal Vaskoe070bfe2020-08-31 12:27:25 +02003176 for (first = node; first->prev->next; first = first->prev) {}
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003177 }
3178 pos = 1;
3179 for (iter = first; iter != node; iter = iter->next) {
3180 if (iter->schema == node->schema) {
3181 ++pos;
3182 }
3183 }
Radek Krejci1deb5be2020-08-26 16:43:36 +02003184 if (asprintf(&val, "%" PRIu64, pos) == -1) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003185 return LY_EMEM;
3186 }
3187
3188 len = 1 + strlen(val) + 1;
3189 rc = lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static);
3190 if (rc != LY_SUCCESS) {
3191 goto cleanup;
3192 }
3193
3194 *bufused += sprintf(*buffer + *bufused, "[%s]", val);
3195
3196cleanup:
3197 free(val);
3198 return rc;
3199}
3200
3201API char *
3202lyd_path(const struct lyd_node *node, LYD_PATH_TYPE pathtype, char *buffer, size_t buflen)
3203{
Radek Krejci857189e2020-09-01 13:26:36 +02003204 ly_bool is_static = 0;
Radek Krejci1deb5be2020-08-26 16:43:36 +02003205 uint32_t i, depth;
Michal Vasko14654712020-02-06 08:35:21 +01003206 size_t bufused = 0, len;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003207 const struct lyd_node *iter;
3208 const struct lys_module *mod;
Michal Vasko790b2bc2020-08-03 13:35:06 +02003209 LY_ERR rc = LY_SUCCESS;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003210
3211 LY_CHECK_ARG_RET(NULL, node, NULL);
3212 if (buffer) {
3213 LY_CHECK_ARG_RET(node->schema->module->ctx, buflen > 1, NULL);
3214 is_static = 1;
Michal Vasko14654712020-02-06 08:35:21 +01003215 } else {
3216 buflen = 0;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003217 }
3218
3219 switch (pathtype) {
Radek Krejci635d2b82021-01-04 11:26:51 +01003220 case LYD_PATH_STD:
3221 case LYD_PATH_STD_NO_LAST_PRED:
Michal Vasko14654712020-02-06 08:35:21 +01003222 depth = 1;
Michal Vasko9e685082021-01-29 14:49:09 +01003223 for (iter = node; iter->parent; iter = lyd_parent(iter)) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003224 ++depth;
3225 }
3226
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003227 goto iter_print;
Michal Vasko14654712020-02-06 08:35:21 +01003228 while (depth) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003229 /* find the right node */
Michal Vasko9e685082021-01-29 14:49:09 +01003230 for (iter = node, i = 1; i < depth; iter = lyd_parent(iter), ++i) {}
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003231iter_print:
3232 /* print prefix and name */
3233 mod = NULL;
Michal Vasko69730152020-10-09 16:30:07 +02003234 if (iter->schema && (!iter->parent || (iter->schema->module != iter->parent->schema->module))) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003235 mod = iter->schema->module;
3236 }
3237
3238 /* realloc string */
Michal Vaskoad92b672020-11-12 13:11:31 +01003239 len = 1 + (mod ? strlen(mod->name) + 1 : 0) + (iter->schema ? strlen(iter->schema->name) :
3240 strlen(((struct lyd_node_opaq *)iter)->name.name));
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003241 rc = lyd_path_str_enlarge(&buffer, &buflen, bufused + len, is_static);
3242 if (rc != LY_SUCCESS) {
3243 break;
3244 }
3245
3246 /* print next node */
Radek Krejci1798aae2020-07-14 13:26:06 +02003247 bufused += sprintf(buffer + bufused, "/%s%s%s", mod ? mod->name : "", mod ? ":" : "",
Michal Vaskoad92b672020-11-12 13:11:31 +01003248 iter->schema ? iter->schema->name : ((struct lyd_node_opaq *)iter)->name.name);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003249
Michal Vasko790b2bc2020-08-03 13:35:06 +02003250 /* do not always print the last (first) predicate */
Radek Krejci635d2b82021-01-04 11:26:51 +01003251 if (iter->schema && ((depth > 1) || (pathtype == LYD_PATH_STD))) {
Michal Vasko790b2bc2020-08-03 13:35:06 +02003252 switch (iter->schema->nodetype) {
3253 case LYS_LIST:
3254 if (iter->schema->flags & LYS_KEYLESS) {
3255 /* print its position */
3256 rc = lyd_path_position_predicate(iter, &buffer, &buflen, &bufused, is_static);
3257 } else {
3258 /* print all list keys in predicates */
3259 rc = lyd_path_list_predicate(iter, &buffer, &buflen, &bufused, is_static);
3260 }
3261 break;
3262 case LYS_LEAFLIST:
3263 if (iter->schema->flags & LYS_CONFIG_W) {
3264 /* print leaf-list value */
3265 rc = lyd_path_leaflist_predicate(iter, &buffer, &buflen, &bufused, is_static);
3266 } else {
3267 /* print its position */
3268 rc = lyd_path_position_predicate(iter, &buffer, &buflen, &bufused, is_static);
3269 }
3270 break;
3271 default:
3272 /* nothing to print more */
3273 break;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003274 }
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003275 }
3276 if (rc != LY_SUCCESS) {
3277 break;
3278 }
3279
Michal Vasko14654712020-02-06 08:35:21 +01003280 --depth;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003281 }
3282 break;
3283 }
3284
3285 return buffer;
3286}
Michal Vaskoe444f752020-02-10 12:20:06 +01003287
Michal Vasko25a32822020-07-09 15:48:22 +02003288API struct lyd_meta *
3289lyd_find_meta(const struct lyd_meta *first, const struct lys_module *module, const char *name)
3290{
3291 struct lyd_meta *ret = NULL;
3292 const struct ly_ctx *ctx;
3293 const char *prefix, *tmp;
3294 char *str;
3295 size_t pref_len, name_len;
3296
3297 LY_CHECK_ARG_RET(NULL, module || strchr(name, ':'), name, NULL);
3298
3299 if (!first) {
3300 return NULL;
3301 }
3302
3303 ctx = first->annotation->module->ctx;
3304
3305 /* parse the name */
3306 tmp = name;
3307 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
3308 LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name);
3309 return NULL;
3310 }
3311
3312 /* find the module */
3313 if (prefix) {
3314 str = strndup(prefix, pref_len);
3315 module = ly_ctx_get_module_latest(ctx, str);
3316 free(str);
3317 LY_CHECK_ERR_RET(!module, LOGERR(ctx, LY_EINVAL, "Module \"%.*s\" not found.", pref_len, prefix), NULL);
3318 }
3319
3320 /* find the metadata */
3321 LY_LIST_FOR(first, first) {
3322 if ((first->annotation->module == module) && !strcmp(first->name, name)) {
3323 ret = (struct lyd_meta *)first;
3324 break;
3325 }
3326 }
3327
3328 return ret;
3329}
3330
Michal Vasko9b368d32020-02-14 13:53:31 +01003331API LY_ERR
Michal Vaskoe444f752020-02-10 12:20:06 +01003332lyd_find_sibling_first(const struct lyd_node *siblings, const struct lyd_node *target, struct lyd_node **match)
3333{
3334 struct lyd_node **match_p;
3335 struct lyd_node_inner *parent;
3336
Michal Vaskof03ed032020-03-04 13:31:44 +01003337 LY_CHECK_ARG_RET(NULL, target, LY_EINVAL);
Michal Vaskoe444f752020-02-10 12:20:06 +01003338
Michal Vasko6da1e952020-12-09 18:14:38 +01003339 if (!siblings || (siblings->schema && target->schema &&
3340 (lysc_data_parent(siblings->schema) != lysc_data_parent(target->schema)))) {
Michal Vasko62ed12d2020-05-21 10:08:25 +02003341 /* no data or schema mismatch */
Michal Vasko9b368d32020-02-14 13:53:31 +01003342 if (match) {
3343 *match = NULL;
3344 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003345 return LY_ENOTFOUND;
3346 }
3347
3348 /* find first sibling */
3349 if (siblings->parent) {
3350 siblings = siblings->parent->child;
3351 } else {
3352 while (siblings->prev->next) {
3353 siblings = siblings->prev;
3354 }
3355 }
3356
Michal Vasko9e685082021-01-29 14:49:09 +01003357 parent = siblings->parent;
Michal Vasko6da1e952020-12-09 18:14:38 +01003358 if (parent && parent->schema && parent->children_ht) {
Michal Vaskoe444f752020-02-10 12:20:06 +01003359 assert(target->hash);
3360
3361 /* find by hash */
3362 if (!lyht_find(parent->children_ht, &target, target->hash, (void **)&match_p)) {
Michal Vaskoda859032020-07-14 12:20:14 +02003363 /* check even value when needed */
Michal Vasko8f359bf2020-07-28 10:41:15 +02003364 if (!(target->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !lyd_compare_single(target, *match_p, 0)) {
Michal Vaskoda859032020-07-14 12:20:14 +02003365 siblings = *match_p;
3366 } else {
3367 siblings = NULL;
3368 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003369 } else {
3370 /* not found */
3371 siblings = NULL;
3372 }
3373 } else {
3374 /* no children hash table */
Michal Vaskod989ba02020-08-24 10:59:24 +02003375 for ( ; siblings; siblings = siblings->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02003376 if (!lyd_compare_single(siblings, target, 0)) {
Michal Vaskoe444f752020-02-10 12:20:06 +01003377 break;
3378 }
3379 }
3380 }
3381
3382 if (!siblings) {
Michal Vasko9b368d32020-02-14 13:53:31 +01003383 if (match) {
3384 *match = NULL;
3385 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003386 return LY_ENOTFOUND;
3387 }
3388
Michal Vasko9b368d32020-02-14 13:53:31 +01003389 if (match) {
3390 *match = (struct lyd_node *)siblings;
3391 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003392 return LY_SUCCESS;
3393}
3394
Radek Krejci857189e2020-09-01 13:26:36 +02003395/**
3396 * @brief Comparison callback to match schema node with a schema of a data node.
3397 *
3398 * @param[in] val1_p Pointer to the schema node
3399 * @param[in] val2_p Pointer to the data node
3400 * Implementation of ::values_equal_cb.
3401 */
3402static ly_bool
3403lyd_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 +01003404{
3405 struct lysc_node *val1;
3406 struct lyd_node *val2;
3407
3408 val1 = *((struct lysc_node **)val1_p);
3409 val2 = *((struct lyd_node **)val2_p);
3410
Michal Vasko90932a92020-02-12 14:33:03 +01003411 if (val1 == val2->schema) {
3412 /* schema match is enough */
3413 return 1;
3414 } else {
3415 return 0;
3416 }
3417}
3418
Michal Vasko92239c72020-11-18 18:17:25 +01003419/**
3420 * @brief Search in the given siblings (NOT recursively) for the first schema node data instance.
3421 * Uses hashes - should be used whenever possible for best performance.
3422 *
3423 * @param[in] siblings Siblings to search in including preceding and succeeding nodes.
3424 * @param[in] schema Target data node schema to find.
3425 * @param[out] match Can be NULL, otherwise the found data node.
3426 * @return LY_SUCCESS on success, @p match set.
3427 * @return LY_ENOTFOUND if not found, @p match set to NULL.
3428 * @return LY_ERR value if another error occurred.
3429 */
Michal Vasko90932a92020-02-12 14:33:03 +01003430static LY_ERR
3431lyd_find_sibling_schema(const struct lyd_node *siblings, const struct lysc_node *schema, struct lyd_node **match)
3432{
3433 struct lyd_node **match_p;
3434 struct lyd_node_inner *parent;
3435 uint32_t hash;
3436 values_equal_cb ht_cb;
3437
Michal Vaskob104f112020-07-17 09:54:54 +02003438 assert(siblings && schema);
Michal Vasko90932a92020-02-12 14:33:03 +01003439
Michal Vasko9e685082021-01-29 14:49:09 +01003440 parent = siblings->parent;
Michal Vasko08fd6132020-11-18 18:17:45 +01003441 if (parent && parent->schema && parent->children_ht) {
Michal Vasko90932a92020-02-12 14:33:03 +01003442 /* calculate our hash */
3443 hash = dict_hash_multi(0, schema->module->name, strlen(schema->module->name));
3444 hash = dict_hash_multi(hash, schema->name, strlen(schema->name));
3445 hash = dict_hash_multi(hash, NULL, 0);
3446
3447 /* use special hash table function */
3448 ht_cb = lyht_set_cb(parent->children_ht, lyd_hash_table_schema_val_equal);
3449
3450 /* find by hash */
3451 if (!lyht_find(parent->children_ht, &schema, hash, (void **)&match_p)) {
3452 siblings = *match_p;
3453 } else {
3454 /* not found */
3455 siblings = NULL;
3456 }
3457
3458 /* set the original hash table compare function back */
3459 lyht_set_cb(parent->children_ht, ht_cb);
3460 } else {
Michal Vaskob104f112020-07-17 09:54:54 +02003461 /* find first sibling */
3462 if (siblings->parent) {
3463 siblings = siblings->parent->child;
3464 } else {
3465 while (siblings->prev->next) {
3466 siblings = siblings->prev;
3467 }
3468 }
3469
3470 /* search manually without hashes */
Michal Vaskod989ba02020-08-24 10:59:24 +02003471 for ( ; siblings; siblings = siblings->next) {
Michal Vasko90932a92020-02-12 14:33:03 +01003472 if (siblings->schema == schema) {
3473 /* schema match is enough */
3474 break;
3475 }
3476 }
3477 }
3478
3479 if (!siblings) {
Michal Vasko9b368d32020-02-14 13:53:31 +01003480 if (match) {
3481 *match = NULL;
3482 }
Michal Vasko90932a92020-02-12 14:33:03 +01003483 return LY_ENOTFOUND;
3484 }
3485
Michal Vasko9b368d32020-02-14 13:53:31 +01003486 if (match) {
3487 *match = (struct lyd_node *)siblings;
3488 }
Michal Vasko90932a92020-02-12 14:33:03 +01003489 return LY_SUCCESS;
3490}
3491
Michal Vaskoe444f752020-02-10 12:20:06 +01003492API LY_ERR
3493lyd_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 +02003494 size_t val_len, struct lyd_node **match)
Michal Vaskoe444f752020-02-10 12:20:06 +01003495{
3496 LY_ERR rc;
3497 struct lyd_node *target = NULL;
3498
Michal Vasko4c583e82020-07-17 12:16:14 +02003499 LY_CHECK_ARG_RET(NULL, schema, !(schema->nodetype & (LYS_CHOICE | LYS_CASE)), LY_EINVAL);
Michal Vaskoe444f752020-02-10 12:20:06 +01003500
Michal Vasko08fd6132020-11-18 18:17:45 +01003501 if (!siblings || (siblings->schema && (lysc_data_parent(siblings->schema) != lysc_data_parent(schema)))) {
Michal Vasko62ed12d2020-05-21 10:08:25 +02003502 /* no data or schema mismatch */
Michal Vasko9b368d32020-02-14 13:53:31 +01003503 if (match) {
3504 *match = NULL;
3505 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003506 return LY_ENOTFOUND;
3507 }
3508
Michal Vaskof03ed032020-03-04 13:31:44 +01003509 if (key_or_value && !val_len) {
3510 val_len = strlen(key_or_value);
3511 }
3512
Michal Vaskob104f112020-07-17 09:54:54 +02003513 if ((schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) && key_or_value) {
3514 /* create a data node and find the instance */
3515 if (schema->nodetype == LYS_LEAFLIST) {
3516 /* target used attributes: schema, hash, value */
Michal Vaskofeca4fb2020-10-05 08:58:40 +02003517 rc = lyd_create_term(schema, key_or_value, val_len, NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, NULL, &target);
3518 LY_CHECK_RET(rc);
Michal Vaskob104f112020-07-17 09:54:54 +02003519 } else {
Michal Vasko90932a92020-02-12 14:33:03 +01003520 /* target used attributes: schema, hash, child (all keys) */
Michal Vasko004d3152020-06-11 19:59:22 +02003521 LY_CHECK_RET(lyd_create_list2(schema, key_or_value, val_len, &target));
Michal Vasko90932a92020-02-12 14:33:03 +01003522 }
3523
3524 /* find it */
3525 rc = lyd_find_sibling_first(siblings, target, match);
Michal Vaskob104f112020-07-17 09:54:54 +02003526 } else {
3527 /* find the first schema node instance */
3528 rc = lyd_find_sibling_schema(siblings, schema, match);
Michal Vaskoe444f752020-02-10 12:20:06 +01003529 }
3530
Michal Vaskoe444f752020-02-10 12:20:06 +01003531 lyd_free_tree(target);
3532 return rc;
3533}
Michal Vaskoccc02342020-05-21 10:09:21 +02003534
3535API LY_ERR
3536lyd_find_xpath(const struct lyd_node *ctx_node, const char *xpath, struct ly_set **set)
3537{
3538 LY_ERR ret = LY_SUCCESS;
3539 struct lyxp_set xp_set;
Radek Krejcif03a9e22020-09-18 20:09:31 +02003540 struct lyxp_expr *exp = NULL;
Michal Vaskoccc02342020-05-21 10:09:21 +02003541 uint32_t i;
3542
3543 LY_CHECK_ARG_RET(NULL, ctx_node, xpath, set, LY_EINVAL);
3544
3545 memset(&xp_set, 0, sizeof xp_set);
3546
3547 /* compile expression */
Radek Krejcif03a9e22020-09-18 20:09:31 +02003548 ret = lyxp_expr_parse((struct ly_ctx *)LYD_CTX(ctx_node), xpath, 0, 1, &exp);
3549 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003550
3551 /* evaluate expression */
Michal Vasko400e9672021-01-11 13:39:17 +01003552 ret = lyxp_eval(LYD_CTX(ctx_node), exp, NULL, LY_PREF_JSON, NULL, ctx_node, ctx_node, &xp_set, LYXP_IGNORE_WHEN);
Michal Vaskoccc02342020-05-21 10:09:21 +02003553 LY_CHECK_GOTO(ret, cleanup);
3554
3555 /* allocate return set */
Radek Krejciba03a5a2020-08-27 14:40:41 +02003556 ret = ly_set_new(set);
3557 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003558
3559 /* transform into ly_set */
3560 if (xp_set.type == LYXP_SET_NODE_SET) {
3561 /* allocate memory for all the elements once (even though not all items must be elements but most likely will be) */
3562 (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs);
Michal Vaskob7be7a82020-08-20 09:09:04 +02003563 LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(LYD_CTX(ctx_node)); ret = LY_EMEM, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003564 (*set)->size = xp_set.used;
3565
3566 for (i = 0; i < xp_set.used; ++i) {
3567 if (xp_set.val.nodes[i].type == LYXP_NODE_ELEM) {
Radek Krejci3d92e442020-10-12 12:48:13 +02003568 ret = ly_set_add(*set, xp_set.val.nodes[i].node, 1, NULL);
Radek Krejciba03a5a2020-08-27 14:40:41 +02003569 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003570 }
3571 }
3572 }
3573
3574cleanup:
Michal Vasko0691d522020-05-21 13:21:47 +02003575 lyxp_set_free_content(&xp_set);
Michal Vaskob7be7a82020-08-20 09:09:04 +02003576 lyxp_expr_free((struct ly_ctx *)LYD_CTX(ctx_node), exp);
Radek Krejci8f45abc2020-11-26 12:15:13 +01003577 if (ret) {
3578 ly_set_free(*set, NULL);
3579 *set = NULL;
3580 }
Michal Vaskoccc02342020-05-21 10:09:21 +02003581 return ret;
3582}
Radek Krejcica989142020-11-05 11:32:22 +01003583
Michal Vasko3e1f6552021-01-14 09:27:55 +01003584API LY_ERR
3585lyd_find_path(const struct lyd_node *ctx_node, const char *path, ly_bool output, struct lyd_node **match)
3586{
3587 LY_ERR ret = LY_SUCCESS;
3588 struct lyxp_expr *expr = NULL;
3589 struct ly_path *lypath = NULL;
3590
3591 LY_CHECK_ARG_RET(NULL, ctx_node, ctx_node->schema, path, LY_EINVAL);
3592
3593 /* parse the path */
3594 ret = ly_path_parse(LYD_CTX(ctx_node), ctx_node->schema, path, strlen(path), LY_PATH_BEGIN_EITHER, LY_PATH_LREF_FALSE,
3595 LY_PATH_PREFIX_OPTIONAL, LY_PATH_PRED_SIMPLE, &expr);
3596 LY_CHECK_GOTO(ret, cleanup);
3597
3598 /* compile the path */
3599 ret = ly_path_compile(LYD_CTX(ctx_node), NULL, ctx_node->schema, expr, LY_PATH_LREF_FALSE,
3600 output ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT, LY_PATH_TARGET_SINGLE, LY_PREF_JSON,
3601 (void *)LYD_CTX(ctx_node), NULL, &lypath);
3602 LY_CHECK_GOTO(ret, cleanup);
3603
3604 /* evaluate the path */
3605 ret = ly_path_eval_partial(lypath, ctx_node, NULL, match);
3606
3607cleanup:
3608 lyxp_expr_free(LYD_CTX(ctx_node), expr);
3609 ly_path_free(LYD_CTX(ctx_node), lypath);
3610 return ret;
3611}
3612
Radek Krejcica989142020-11-05 11:32:22 +01003613API uint32_t
3614lyd_list_pos(const struct lyd_node *instance)
3615{
3616 const struct lyd_node *iter = NULL;
3617 uint32_t pos = 0;
3618
3619 if (!instance || !(instance->schema->nodetype & (LYS_LIST | LYS_LEAFLIST))) {
3620 return 0;
3621 }
3622
3623 /* data instances are ordered, so we can stop when we found instance of other schema node */
3624 for (iter = instance; iter->schema == instance->schema; iter = iter->prev) {
Radek Krejcibb27df32020-11-13 15:39:16 +01003625 if (pos && (iter->next == NULL)) {
Radek Krejcica989142020-11-05 11:32:22 +01003626 /* overrun to the end of the siblings list */
3627 break;
3628 }
3629 ++pos;
3630 }
3631
3632 return pos;
3633}
Radek Krejci4233f9b2020-11-05 12:38:35 +01003634
3635API struct lyd_node *
3636lyd_first_sibling(const struct lyd_node *node)
3637{
3638 struct lyd_node *start;
3639
3640 if (!node) {
3641 return NULL;
3642 }
3643
3644 /* get the first sibling */
3645 if (node->parent) {
3646 start = node->parent->child;
3647 } else {
Radek Krejcibb27df32020-11-13 15:39:16 +01003648 for (start = (struct lyd_node *)node; start->prev->next; start = start->prev) {}
Radek Krejci4233f9b2020-11-05 12:38:35 +01003649 }
3650
3651 return start;
3652}