blob: ffd337796f9f1430c65a5eef472f31e616a85658 [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 Vasko1e4c68e2021-02-18 15:03:01 +0100334 rc = lyd_parse_xml(ctx, parent, first_p, in, parse_opts, val_opts, LYD_TYPE_DATA_YANG, NULL, &parsed, &lydctx);
Radek Krejci1798aae2020-07-14 13:26:06 +0200335 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200336 case LYD_JSON:
Michal Vasko1e4c68e2021-02-18 15:03:01 +0100337 rc = lyd_parse_json(ctx, parent, first_p, in, parse_opts, val_opts, LYD_TYPE_DATA_YANG, &parsed, &lydctx);
Radek Krejci1798aae2020-07-14 13:26:06 +0200338 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200339 case LYD_LYB:
Michal Vasko1e4c68e2021-02-18 15:03:01 +0100340 rc = lyd_parse_lyb(ctx, parent, first_p, in, parse_opts, val_opts, LYD_TYPE_DATA_YANG, &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);
Michal Vasko27fb0262021-02-23 09:42:01 +0100452 if (!ctx) {
453 ctx = LYD_CTX(parent);
454 }
Radek Krejci1798aae2020-07-14 13:26:06 +0200455 if (tree) {
456 *tree = NULL;
457 }
458 if (op) {
459 *op = NULL;
460 }
461
Radek Krejci7931b192020-06-25 17:05:03 +0200462 format = lyd_parse_get_format(in, format);
Radek Krejci7931b192020-06-25 17:05:03 +0200463
Michal Vasko63f3d842020-07-08 10:10:14 +0200464 /* remember input position */
465 in->func_start = in->current;
466
Michal Vaskoe0665742021-02-11 11:08:44 +0100467 /* check params based on the data type */
Michal Vasko1e4c68e2021-02-18 15:03:01 +0100468 if ((data_type == LYD_TYPE_RPC_NETCONF) || (data_type == LYD_TYPE_NOTIF_NETCONF)) {
Michal Vaskoe0665742021-02-11 11:08:44 +0100469 LY_CHECK_ARG_RET(ctx, format == LYD_XML, !parent, tree, op, LY_EINVAL);
Michal Vasko1e4c68e2021-02-18 15:03:01 +0100470 } else if (data_type == LYD_TYPE_REPLY_NETCONF) {
471 LY_CHECK_ARG_RET(ctx, format == LYD_XML, parent, parent->schema->nodetype & (LYS_RPC | LYS_ACTION), tree, !op,
472 LY_EINVAL);
Michal Vaskoe0665742021-02-11 11:08:44 +0100473 }
474 parse_opts = LYD_PARSE_ONLY | LYD_PARSE_STRICT;
475 val_opts = 0;
476
477 /* parse the data */
Radek Krejci7931b192020-06-25 17:05:03 +0200478 switch (format) {
479 case LYD_XML:
Michal Vaskoe0665742021-02-11 11:08:44 +0100480 rc = lyd_parse_xml(ctx, parent, &first, in, parse_opts, val_opts, data_type, &envp, &parsed, &lydctx);
Michal Vasko299d5d12021-02-16 16:36:37 +0100481 if (rc && envp) {
482 /* special situation when the envelopes were parsed successfully */
483 if (tree) {
484 *tree = envp;
485 }
486 ly_set_erase(&parsed, NULL);
487 return rc;
488 }
Michal Vaskoe0665742021-02-11 11:08:44 +0100489 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200490 case LYD_JSON:
Michal Vaskoe0665742021-02-11 11:08:44 +0100491 rc = lyd_parse_json(ctx, parent, &first, in, parse_opts, val_opts, data_type, &parsed, &lydctx);
492 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200493 case LYD_LYB:
Michal Vaskoe0665742021-02-11 11:08:44 +0100494 rc = lyd_parse_lyb(ctx, parent, &first, in, parse_opts, val_opts, data_type, &parsed, &lydctx);
495 break;
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200496 case LYD_UNKNOWN:
Michal Vaskod74978f2021-02-12 11:59:36 +0100497 LOGARG(ctx, format);
498 rc = LY_EINVAL;
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200499 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200500 }
Michal Vaskoe0665742021-02-11 11:08:44 +0100501 LY_CHECK_GOTO(rc, cleanup);
Radek Krejci7931b192020-06-25 17:05:03 +0200502
Michal Vaskoe0665742021-02-11 11:08:44 +0100503 /* set out params correctly */
504 if (tree) {
505 if (envp) {
506 /* special out param meaning */
507 *tree = envp;
508 } else {
509 *tree = parent ? NULL : first;
510 }
511 }
512 if (op) {
513 *op = lydctx->op_node;
514 }
515
516cleanup:
517 if (lydctx) {
518 lydctx->free(lydctx);
519 }
520 if (rc) {
521 if (parent) {
522 /* free all the parsed subtrees */
523 for (i = 0; i < parsed.count; ++i) {
524 lyd_free_tree(parsed.dnodes[i]);
525 }
526 } else {
527 /* free everything (cannot occur in the current code, a safety) */
528 lyd_free_all(first);
529 if (tree) {
530 *tree = NULL;
531 }
532 if (op) {
533 *op = NULL;
534 }
535 }
536 }
537 ly_set_erase(&parsed, NULL);
538 return rc;
Radek Krejcie7b95092019-05-15 11:03:07 +0200539}
Radek Krejci084289f2019-07-09 17:35:30 +0200540
Michal Vasko90932a92020-02-12 14:33:03 +0100541LY_ERR
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200542lyd_create_term(const struct lysc_node *schema, const char *value, size_t value_len, ly_bool *dynamic,
543 LY_PREFIX_FORMAT format, void *prefix_data, uint32_t hints, ly_bool *incomplete, struct lyd_node **node)
Michal Vasko90932a92020-02-12 14:33:03 +0100544{
545 LY_ERR ret;
546 struct lyd_node_term *term;
547
Michal Vasko9b368d32020-02-14 13:53:31 +0100548 assert(schema->nodetype & LYD_NODE_TERM);
549
Michal Vasko90932a92020-02-12 14:33:03 +0100550 term = calloc(1, sizeof *term);
551 LY_CHECK_ERR_RET(!term, LOGMEM(schema->module->ctx), LY_EMEM);
552
553 term->schema = schema;
Michal Vasko9e685082021-01-29 14:49:09 +0100554 term->prev = &term->node;
Michal Vasko9b368d32020-02-14 13:53:31 +0100555 term->flags = LYD_NEW;
Michal Vasko90932a92020-02-12 14:33:03 +0100556
Radek Krejciddace2c2021-01-08 11:30:56 +0100557 LOG_LOCSET(schema, NULL, NULL, NULL);
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200558 ret = lyd_value_store(schema->module->ctx, &term->value, ((struct lysc_node_leaf *)term->schema)->type, value,
Radek Krejci2efc45b2020-12-22 16:25:44 +0100559 value_len, dynamic, format, prefix_data, hints, schema, incomplete);
Radek Krejciddace2c2021-01-08 11:30:56 +0100560 LOG_LOCBACK(1, 0, 0, 0);
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200561 LY_CHECK_ERR_RET(ret, free(term), ret);
Michal Vasko9e685082021-01-29 14:49:09 +0100562 lyd_hash(&term->node);
Michal Vasko9b368d32020-02-14 13:53:31 +0100563
Michal Vasko9e685082021-01-29 14:49:09 +0100564 *node = &term->node;
Michal Vasko9b368d32020-02-14 13:53:31 +0100565 return ret;
566}
567
568LY_ERR
569lyd_create_term2(const struct lysc_node *schema, const struct lyd_value *val, struct lyd_node **node)
570{
571 LY_ERR ret;
572 struct lyd_node_term *term;
573 struct lysc_type *type;
574
575 assert(schema->nodetype & LYD_NODE_TERM);
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200576 assert(val && val->canonical && val->realtype);
Michal Vasko9b368d32020-02-14 13:53:31 +0100577
578 term = calloc(1, sizeof *term);
579 LY_CHECK_ERR_RET(!term, LOGMEM(schema->module->ctx), LY_EMEM);
580
581 term->schema = schema;
Michal Vasko9e685082021-01-29 14:49:09 +0100582 term->prev = &term->node;
Michal Vasko9b368d32020-02-14 13:53:31 +0100583 term->flags = LYD_NEW;
584
585 type = ((struct lysc_node_leaf *)schema)->type;
586 ret = type->plugin->duplicate(schema->module->ctx, val, &term->value);
587 if (ret) {
588 LOGERR(schema->module->ctx, ret, "Value duplication failed.");
589 free(term);
590 return ret;
591 }
Michal Vasko9e685082021-01-29 14:49:09 +0100592 lyd_hash(&term->node);
Michal Vasko90932a92020-02-12 14:33:03 +0100593
Michal Vasko9e685082021-01-29 14:49:09 +0100594 *node = &term->node;
Michal Vasko90932a92020-02-12 14:33:03 +0100595 return ret;
596}
597
598LY_ERR
599lyd_create_inner(const struct lysc_node *schema, struct lyd_node **node)
600{
601 struct lyd_node_inner *in;
602
Michal Vasko9b368d32020-02-14 13:53:31 +0100603 assert(schema->nodetype & LYD_NODE_INNER);
604
Michal Vasko90932a92020-02-12 14:33:03 +0100605 in = calloc(1, sizeof *in);
606 LY_CHECK_ERR_RET(!in, LOGMEM(schema->module->ctx), LY_EMEM);
607
608 in->schema = schema;
Michal Vasko9e685082021-01-29 14:49:09 +0100609 in->prev = &in->node;
Michal Vasko9b368d32020-02-14 13:53:31 +0100610 in->flags = LYD_NEW;
Michal Vasko3383be72020-11-03 17:15:31 +0100611 if ((schema->nodetype == LYS_CONTAINER) && !(schema->flags & LYS_PRESENCE)) {
612 in->flags |= LYD_DEFAULT;
613 }
Michal Vasko90932a92020-02-12 14:33:03 +0100614
Michal Vasko9b368d32020-02-14 13:53:31 +0100615 /* do not hash list with keys, we need them for the hash */
616 if ((schema->nodetype != LYS_LIST) || (schema->flags & LYS_KEYLESS)) {
Michal Vasko9e685082021-01-29 14:49:09 +0100617 lyd_hash(&in->node);
Michal Vasko9b368d32020-02-14 13:53:31 +0100618 }
Michal Vasko90932a92020-02-12 14:33:03 +0100619
Michal Vasko9e685082021-01-29 14:49:09 +0100620 *node = &in->node;
Michal Vasko90932a92020-02-12 14:33:03 +0100621 return LY_SUCCESS;
622}
623
Michal Vasko90932a92020-02-12 14:33:03 +0100624LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +0200625lyd_create_list(const struct lysc_node *schema, const struct ly_path_predicate *predicates, struct lyd_node **node)
Michal Vasko90932a92020-02-12 14:33:03 +0100626{
627 LY_ERR ret = LY_SUCCESS;
Michal Vasko90932a92020-02-12 14:33:03 +0100628 struct lyd_node *list = NULL, *key;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200629 LY_ARRAY_COUNT_TYPE u;
Michal Vasko90932a92020-02-12 14:33:03 +0100630
Michal Vasko004d3152020-06-11 19:59:22 +0200631 assert((schema->nodetype == LYS_LIST) && !(schema->flags & LYS_KEYLESS));
Michal Vasko90932a92020-02-12 14:33:03 +0100632
633 /* create list */
634 LY_CHECK_GOTO(ret = lyd_create_inner(schema, &list), cleanup);
635
Radek Krejciddace2c2021-01-08 11:30:56 +0100636 LOG_LOCSET(NULL, list, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100637
Michal Vasko90932a92020-02-12 14:33:03 +0100638 /* create and insert all the keys */
Michal Vasko004d3152020-06-11 19:59:22 +0200639 LY_ARRAY_FOR(predicates, u) {
640 LY_CHECK_GOTO(ret = lyd_create_term2(predicates[u].key, &predicates[u].value, &key), cleanup);
Michal Vasko90932a92020-02-12 14:33:03 +0100641 lyd_insert_node(list, NULL, key);
642 }
643
Michal Vasko9b368d32020-02-14 13:53:31 +0100644 /* hash having all the keys */
645 lyd_hash(list);
646
Michal Vasko90932a92020-02-12 14:33:03 +0100647 /* success */
648 *node = list;
649 list = NULL;
650
651cleanup:
Radek Krejciddace2c2021-01-08 11:30:56 +0100652 LOG_LOCBACK(0, 1, 0, 0);
Michal Vasko90932a92020-02-12 14:33:03 +0100653 lyd_free_tree(list);
Michal Vasko004d3152020-06-11 19:59:22 +0200654 return ret;
655}
656
657static LY_ERR
658lyd_create_list2(const struct lysc_node *schema, const char *keys, size_t keys_len, struct lyd_node **node)
659{
660 LY_ERR ret = LY_SUCCESS;
661 struct lyxp_expr *expr = NULL;
662 uint16_t exp_idx = 0;
663 enum ly_path_pred_type pred_type = 0;
664 struct ly_path_predicate *predicates = NULL;
665
Radek Krejciddace2c2021-01-08 11:30:56 +0100666 LOG_LOCSET(schema, NULL, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100667
Michal Vasko004d3152020-06-11 19:59:22 +0200668 /* parse keys */
Michal Vasko6b26e742020-07-17 15:02:10 +0200669 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 +0200670 LY_PATH_PRED_KEYS, &expr), cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +0200671
672 /* compile them */
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200673 LY_CHECK_GOTO(ret = ly_path_compile_predicate(schema->module->ctx, NULL, NULL, schema, expr, &exp_idx, LY_PREF_JSON,
674 NULL, &predicates, &pred_type), cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +0200675
676 /* create the list node */
677 LY_CHECK_GOTO(ret = lyd_create_list(schema, predicates, node), cleanup);
678
679cleanup:
Radek Krejciddace2c2021-01-08 11:30:56 +0100680 LOG_LOCBACK(1, 0, 0, 0);
Michal Vasko004d3152020-06-11 19:59:22 +0200681 lyxp_expr_free(schema->module->ctx, expr);
Michal Vaskof7e16e22020-10-21 09:24:39 +0200682 ly_path_predicates_free(schema->module->ctx, pred_type, predicates);
Michal Vasko90932a92020-02-12 14:33:03 +0100683 return ret;
684}
685
686LY_ERR
Michal Vasko366a4a12020-12-04 16:23:57 +0100687lyd_create_any(const struct lysc_node *schema, const void *value, LYD_ANYDATA_VALUETYPE value_type, ly_bool use_value,
688 struct lyd_node **node)
Michal Vasko90932a92020-02-12 14:33:03 +0100689{
Michal Vasko366a4a12020-12-04 16:23:57 +0100690 LY_ERR ret;
Michal Vasko90932a92020-02-12 14:33:03 +0100691 struct lyd_node_any *any;
Michal Vasko366a4a12020-12-04 16:23:57 +0100692 union lyd_any_value any_val;
Michal Vasko90932a92020-02-12 14:33:03 +0100693
Michal Vasko9b368d32020-02-14 13:53:31 +0100694 assert(schema->nodetype & LYD_NODE_ANY);
695
Michal Vasko90932a92020-02-12 14:33:03 +0100696 any = calloc(1, sizeof *any);
697 LY_CHECK_ERR_RET(!any, LOGMEM(schema->module->ctx), LY_EMEM);
698
699 any->schema = schema;
Michal Vasko9e685082021-01-29 14:49:09 +0100700 any->prev = &any->node;
Michal Vasko9b368d32020-02-14 13:53:31 +0100701 any->flags = LYD_NEW;
Michal Vasko90932a92020-02-12 14:33:03 +0100702
Radek Krejci1798aae2020-07-14 13:26:06 +0200703 /* TODO: convert XML/JSON strings into a opaq data tree */
Michal Vasko366a4a12020-12-04 16:23:57 +0100704
705 if (use_value) {
706 any->value.str = value;
707 any->value_type = value_type;
708 } else {
709 any_val.str = value;
Michal Vasko9e685082021-01-29 14:49:09 +0100710 ret = lyd_any_copy_value(&any->node, &any_val, value_type);
Michal Vasko366a4a12020-12-04 16:23:57 +0100711 LY_CHECK_ERR_RET(ret, free(any), ret);
712 }
Michal Vasko9e685082021-01-29 14:49:09 +0100713 lyd_hash(&any->node);
Michal Vasko90932a92020-02-12 14:33:03 +0100714
Michal Vasko9e685082021-01-29 14:49:09 +0100715 *node = &any->node;
Michal Vasko90932a92020-02-12 14:33:03 +0100716 return LY_SUCCESS;
717}
718
Michal Vasko52927e22020-03-16 17:26:14 +0100719LY_ERR
Michal Vasko501af032020-11-11 20:27:44 +0100720lyd_create_opaq(const struct ly_ctx *ctx, const char *name, size_t name_len, const char *prefix, size_t pref_len,
721 const char *module_key, size_t module_key_len, const char *value, size_t value_len, ly_bool *dynamic,
722 LY_PREFIX_FORMAT format, void *val_prefix_data, uint32_t hints, struct lyd_node **node)
Michal Vasko52927e22020-03-16 17:26:14 +0100723{
Radek Krejci011e4aa2020-09-04 15:22:31 +0200724 LY_ERR ret = LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +0100725 struct lyd_node_opaq *opaq;
726
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200727 assert(ctx && name && name_len && format);
Michal Vasko52927e22020-03-16 17:26:14 +0100728
729 if (!value_len) {
730 value = "";
731 }
732
733 opaq = calloc(1, sizeof *opaq);
Michal Vasko501af032020-11-11 20:27:44 +0100734 LY_CHECK_ERR_GOTO(!opaq, LOGMEM(ctx); ret = LY_EMEM, finish);
Michal Vasko52927e22020-03-16 17:26:14 +0100735
Michal Vasko9e685082021-01-29 14:49:09 +0100736 opaq->prev = &opaq->node;
Michal Vaskoad92b672020-11-12 13:11:31 +0100737 LY_CHECK_GOTO(ret = lydict_insert(ctx, name, name_len, &opaq->name.name), finish);
Radek Krejci011e4aa2020-09-04 15:22:31 +0200738
Michal Vasko52927e22020-03-16 17:26:14 +0100739 if (pref_len) {
Michal Vaskoad92b672020-11-12 13:11:31 +0100740 LY_CHECK_GOTO(ret = lydict_insert(ctx, prefix, pref_len, &opaq->name.prefix), finish);
Michal Vasko52927e22020-03-16 17:26:14 +0100741 }
Radek Krejci1798aae2020-07-14 13:26:06 +0200742 if (module_key_len) {
Michal Vaskoad92b672020-11-12 13:11:31 +0100743 LY_CHECK_GOTO(ret = lydict_insert(ctx, module_key, module_key_len, &opaq->name.module_ns), finish);
Radek Krejci1798aae2020-07-14 13:26:06 +0200744 }
Michal Vasko52927e22020-03-16 17:26:14 +0100745 if (dynamic && *dynamic) {
Radek Krejci011e4aa2020-09-04 15:22:31 +0200746 LY_CHECK_GOTO(ret = lydict_insert_zc(ctx, (char *)value, &opaq->value), finish);
Michal Vasko52927e22020-03-16 17:26:14 +0100747 *dynamic = 0;
748 } else {
Radek Krejci011e4aa2020-09-04 15:22:31 +0200749 LY_CHECK_GOTO(ret = lydict_insert(ctx, value, value_len, &opaq->value), finish);
Michal Vasko52927e22020-03-16 17:26:14 +0100750 }
Michal Vasko501af032020-11-11 20:27:44 +0100751
752 opaq->format = format;
753 opaq->val_prefix_data = val_prefix_data;
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200754 opaq->hints = hints;
Michal Vasko52927e22020-03-16 17:26:14 +0100755 opaq->ctx = ctx;
756
Radek Krejci011e4aa2020-09-04 15:22:31 +0200757finish:
758 if (ret) {
Michal Vasko9e685082021-01-29 14:49:09 +0100759 lyd_free_tree(&opaq->node);
Michal Vasko501af032020-11-11 20:27:44 +0100760 ly_free_prefix_data(format, val_prefix_data);
Radek Krejci011e4aa2020-09-04 15:22:31 +0200761 } else {
Michal Vasko9e685082021-01-29 14:49:09 +0100762 *node = &opaq->node;
Radek Krejci011e4aa2020-09-04 15:22:31 +0200763 }
764 return ret;
Michal Vasko52927e22020-03-16 17:26:14 +0100765}
766
Michal Vasko3a41dff2020-07-15 14:30:28 +0200767API LY_ERR
Michal Vasko65243892020-12-04 16:26:21 +0100768lyd_new_inner(struct lyd_node *parent, const struct lys_module *module, const char *name, ly_bool output,
769 struct lyd_node **node)
Michal Vasko013a8182020-03-03 10:46:53 +0100770{
771 struct lyd_node *ret = NULL;
772 const struct lysc_node *schema;
773 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
774
Michal Vasko6027eb92020-07-15 16:37:30 +0200775 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100776
Michal Vaskof03ed032020-03-04 13:31:44 +0100777 if (!module) {
778 module = parent->schema->module;
779 }
780
Michal Vasko3a41dff2020-07-15 14:30:28 +0200781 schema = lys_find_child(parent ? parent->schema : NULL, module, name, 0,
Radek Krejci41ac9942020-11-02 14:47:56 +0100782 LYS_CONTAINER | LYS_NOTIF | LYS_RPC | LYS_ACTION, output ? LYS_GETNEXT_OUTPUT : 0);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200783 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 +0100784
Michal Vasko3a41dff2020-07-15 14:30:28 +0200785 LY_CHECK_RET(lyd_create_inner(schema, &ret));
786 if (parent) {
Michal Vasko013a8182020-03-03 10:46:53 +0100787 lyd_insert_node(parent, NULL, ret);
788 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200789
790 if (node) {
791 *node = ret;
792 }
793 return LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +0100794}
795
Michal Vasko3a41dff2020-07-15 14:30:28 +0200796API LY_ERR
Michal Vasko65243892020-12-04 16:26:21 +0100797lyd_new_list(struct lyd_node *parent, const struct lys_module *module, const char *name, ly_bool output,
798 struct lyd_node **node, ...)
Michal Vasko013a8182020-03-03 10:46:53 +0100799{
800 struct lyd_node *ret = NULL, *key;
801 const struct lysc_node *schema, *key_s;
802 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
803 va_list ap;
804 const char *key_val;
805 LY_ERR rc = LY_SUCCESS;
806
Michal Vasko6027eb92020-07-15 16:37:30 +0200807 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100808
Michal Vaskof03ed032020-03-04 13:31:44 +0100809 if (!module) {
810 module = parent->schema->module;
811 }
812
Radek Krejci41ac9942020-11-02 14:47:56 +0100813 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 +0200814 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "List node \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +0100815
816 /* create list inner node */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200817 LY_CHECK_RET(lyd_create_inner(schema, &ret));
Michal Vasko013a8182020-03-03 10:46:53 +0100818
Michal Vasko3a41dff2020-07-15 14:30:28 +0200819 va_start(ap, node);
Michal Vasko013a8182020-03-03 10:46:53 +0100820
821 /* create and insert all the keys */
Michal Vasko544e58a2021-01-28 14:33:41 +0100822 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 +0100823 key_val = va_arg(ap, const char *);
824
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200825 rc = lyd_create_term(key_s, key_val, key_val ? strlen(key_val) : 0, NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA,
826 NULL, &key);
827 LY_CHECK_GOTO(rc, cleanup);
Michal Vasko013a8182020-03-03 10:46:53 +0100828 lyd_insert_node(ret, NULL, key);
829 }
830
Michal Vasko013a8182020-03-03 10:46:53 +0100831 if (parent) {
832 lyd_insert_node(parent, NULL, ret);
833 }
834
835cleanup:
Michal Vasko3a41dff2020-07-15 14:30:28 +0200836 va_end(ap);
Michal Vasko013a8182020-03-03 10:46:53 +0100837 if (rc) {
838 lyd_free_tree(ret);
839 ret = NULL;
Michal Vasko3a41dff2020-07-15 14:30:28 +0200840 } else if (node) {
841 *node = ret;
Michal Vasko013a8182020-03-03 10:46:53 +0100842 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200843 return rc;
Michal Vasko013a8182020-03-03 10:46:53 +0100844}
845
Michal Vasko3a41dff2020-07-15 14:30:28 +0200846API LY_ERR
847lyd_new_list2(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *keys,
Radek Krejci41ac9942020-11-02 14:47:56 +0100848 ly_bool output, struct lyd_node **node)
Michal Vasko013a8182020-03-03 10:46:53 +0100849{
850 struct lyd_node *ret = NULL;
851 const struct lysc_node *schema;
852 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
853
Michal Vasko6027eb92020-07-15 16:37:30 +0200854 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100855
Michal Vaskof03ed032020-03-04 13:31:44 +0100856 if (!module) {
857 module = parent->schema->module;
858 }
Michal Vasko004d3152020-06-11 19:59:22 +0200859 if (!keys) {
860 keys = "";
861 }
Michal Vaskof03ed032020-03-04 13:31:44 +0100862
Michal Vasko004d3152020-06-11 19:59:22 +0200863 /* find schema node */
Radek Krejci41ac9942020-11-02 14:47:56 +0100864 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 +0200865 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "List node \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +0100866
Michal Vasko004d3152020-06-11 19:59:22 +0200867 if ((schema->flags & LYS_KEYLESS) && !keys[0]) {
868 /* key-less list */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200869 LY_CHECK_RET(lyd_create_inner(schema, &ret));
Michal Vasko004d3152020-06-11 19:59:22 +0200870 } else {
871 /* create the list node */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200872 LY_CHECK_RET(lyd_create_list2(schema, keys, strlen(keys), &ret));
Michal Vasko004d3152020-06-11 19:59:22 +0200873 }
Michal Vasko004d3152020-06-11 19:59:22 +0200874 if (parent) {
Michal Vasko013a8182020-03-03 10:46:53 +0100875 lyd_insert_node(parent, NULL, ret);
876 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200877
878 if (node) {
879 *node = ret;
880 }
881 return LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +0100882}
883
Michal Vasko3a41dff2020-07-15 14:30:28 +0200884API LY_ERR
885lyd_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 +0100886 ly_bool output, struct lyd_node **node)
Michal Vasko013a8182020-03-03 10:46:53 +0100887{
Michal Vaskocbff3e92020-05-27 12:56:41 +0200888 LY_ERR rc;
Michal Vasko013a8182020-03-03 10:46:53 +0100889 struct lyd_node *ret = NULL;
890 const struct lysc_node *schema;
891 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
892
Michal Vasko6027eb92020-07-15 16:37:30 +0200893 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100894
Michal Vaskof03ed032020-03-04 13:31:44 +0100895 if (!module) {
896 module = parent->schema->module;
897 }
898
Radek Krejci41ac9942020-11-02 14:47:56 +0100899 schema = lys_find_child(parent ? parent->schema : NULL, module, name, 0, LYD_NODE_TERM, output ? LYS_GETNEXT_OUTPUT : 0);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200900 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "Term node \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +0100901
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200902 rc = lyd_create_term(schema, val_str, val_str ? strlen(val_str) : 0, NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, NULL,
903 &ret);
904 LY_CHECK_RET(rc);
Michal Vaskocbff3e92020-05-27 12:56:41 +0200905 if (parent) {
Michal Vasko013a8182020-03-03 10:46:53 +0100906 lyd_insert_node(parent, NULL, ret);
907 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200908
909 if (node) {
910 *node = ret;
911 }
912 return LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +0100913}
914
Michal Vasko3a41dff2020-07-15 14:30:28 +0200915API LY_ERR
Michal Vasko219006c2020-12-04 16:26:52 +0100916lyd_new_any(struct lyd_node *parent, const struct lys_module *module, const char *name, void *value,
Radek Krejci41ac9942020-11-02 14:47:56 +0100917 LYD_ANYDATA_VALUETYPE value_type, ly_bool output, struct lyd_node **node)
Michal Vasko013a8182020-03-03 10:46:53 +0100918{
919 struct lyd_node *ret = NULL;
920 const struct lysc_node *schema;
921 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
922
Michal Vasko6027eb92020-07-15 16:37:30 +0200923 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100924
Michal Vaskof03ed032020-03-04 13:31:44 +0100925 if (!module) {
926 module = parent->schema->module;
927 }
928
Radek Krejci41ac9942020-11-02 14:47:56 +0100929 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 +0200930 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "Any node \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +0100931
Michal Vasko366a4a12020-12-04 16:23:57 +0100932 LY_CHECK_RET(lyd_create_any(schema, value, value_type, 1, &ret));
Michal Vasko3a41dff2020-07-15 14:30:28 +0200933 if (parent) {
Michal Vasko013a8182020-03-03 10:46:53 +0100934 lyd_insert_node(parent, NULL, ret);
935 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200936
937 if (node) {
938 *node = ret;
939 }
940 return LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +0100941}
942
Michal Vasko4490d312020-06-16 13:08:55 +0200943/**
944 * @brief Update node value.
945 *
946 * @param[in] node Node to update.
947 * @param[in] value New value to set.
948 * @param[in] value_type Type of @p value for any node.
949 * @param[out] new_parent Set to @p node if the value was updated, otherwise set to NULL.
950 * @param[out] new_node Set to @p node if the value was updated, otherwise set to NULL.
951 * @return LY_ERR value.
952 */
Michal Vasko00cbf532020-06-15 13:58:47 +0200953static LY_ERR
954lyd_new_path_update(struct lyd_node *node, const void *value, LYD_ANYDATA_VALUETYPE value_type,
Radek Krejci0f969882020-08-21 16:56:47 +0200955 struct lyd_node **new_parent, struct lyd_node **new_node)
Michal Vasko00cbf532020-06-15 13:58:47 +0200956{
957 LY_ERR ret = LY_SUCCESS;
958 struct lyd_node *new_any;
959
960 switch (node->schema->nodetype) {
961 case LYS_CONTAINER:
962 case LYS_NOTIF:
963 case LYS_RPC:
964 case LYS_ACTION:
965 case LYS_LIST:
966 case LYS_LEAFLIST:
967 /* if it exists, there is nothing to update */
968 *new_parent = NULL;
969 *new_node = NULL;
970 break;
971 case LYS_LEAF:
972 ret = lyd_change_term(node, value);
973 if ((ret == LY_SUCCESS) || (ret == LY_EEXIST)) {
974 /* there was an actual change (at least of the default flag) */
975 *new_parent = node;
976 *new_node = node;
977 ret = LY_SUCCESS;
978 } else if (ret == LY_ENOT) {
979 /* no change */
980 *new_parent = NULL;
981 *new_node = NULL;
982 ret = LY_SUCCESS;
983 } /* else error */
984 break;
985 case LYS_ANYDATA:
986 case LYS_ANYXML:
987 /* create a new any node */
Michal Vasko366a4a12020-12-04 16:23:57 +0100988 LY_CHECK_RET(lyd_create_any(node->schema, value, value_type, 0, &new_any));
Michal Vasko00cbf532020-06-15 13:58:47 +0200989
990 /* compare with the existing one */
Michal Vasko8f359bf2020-07-28 10:41:15 +0200991 if (lyd_compare_single(node, new_any, 0)) {
Michal Vasko00cbf532020-06-15 13:58:47 +0200992 /* not equal, switch values (so that we can use generic node free) */
993 ((struct lyd_node_any *)new_any)->value = ((struct lyd_node_any *)node)->value;
994 ((struct lyd_node_any *)new_any)->value_type = ((struct lyd_node_any *)node)->value_type;
995 ((struct lyd_node_any *)node)->value.str = value;
996 ((struct lyd_node_any *)node)->value_type = value_type;
997
998 *new_parent = node;
999 *new_node = node;
1000 } else {
1001 /* they are equal */
1002 *new_parent = NULL;
1003 *new_node = NULL;
1004 }
1005 lyd_free_tree(new_any);
1006 break;
1007 default:
Michal Vaskob7be7a82020-08-20 09:09:04 +02001008 LOGINT(LYD_CTX(node));
Michal Vasko00cbf532020-06-15 13:58:47 +02001009 ret = LY_EINT;
1010 break;
1011 }
1012
1013 return ret;
1014}
1015
Michal Vasko3a41dff2020-07-15 14:30:28 +02001016API LY_ERR
Michal Vasko871a0252020-11-11 18:35:24 +01001017lyd_new_meta(const struct ly_ctx *ctx, struct lyd_node *parent, const struct lys_module *module, const char *name,
1018 const char *val_str, ly_bool clear_dflt, struct lyd_meta **meta)
Michal Vaskod86997b2020-05-26 15:19:54 +02001019{
Michal Vaskod86997b2020-05-26 15:19:54 +02001020 const char *prefix, *tmp;
Michal Vaskod86997b2020-05-26 15:19:54 +02001021 size_t pref_len, name_len;
1022
Michal Vasko871a0252020-11-11 18:35:24 +01001023 LY_CHECK_ARG_RET(NULL, ctx, name, module || strchr(name, ':'), parent || meta, LY_EINVAL);
Michal Vasko00cbf532020-06-15 13:58:47 +02001024
Michal Vasko871a0252020-11-11 18:35:24 +01001025 if (parent && !parent->schema) {
1026 LOGERR(ctx, LY_EINVAL, "Cannot add metadata to an opaque node \"%s\".", ((struct lyd_node_opaq *)parent)->name);
1027 return LY_EINVAL;
1028 }
Michal Vasko610553d2020-11-18 18:15:05 +01001029 if (meta) {
1030 *meta = NULL;
1031 }
Michal Vaskod86997b2020-05-26 15:19:54 +02001032
1033 /* parse the name */
1034 tmp = name;
1035 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
1036 LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name);
Michal Vasko871a0252020-11-11 18:35:24 +01001037 return LY_EINVAL;
Michal Vaskod86997b2020-05-26 15:19:54 +02001038 }
1039
1040 /* find the module */
1041 if (prefix) {
Radek Krejci0ad51f12020-07-16 12:08:12 +02001042 module = ly_ctx_get_module_implemented2(ctx, prefix, pref_len);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001043 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 +02001044 }
1045
1046 /* set value if none */
1047 if (!val_str) {
1048 val_str = "";
1049 }
1050
Michal Vasko871a0252020-11-11 18:35:24 +01001051 return lyd_create_meta(parent, meta, module, name, name_len, val_str, strlen(val_str), NULL, LY_PREF_JSON,
1052 NULL, LYD_HINT_DATA, clear_dflt, NULL);
1053}
Michal Vasko3a41dff2020-07-15 14:30:28 +02001054
Michal Vaskoba696702020-11-11 19:12:45 +01001055API LY_ERR
1056lyd_new_meta2(const struct ly_ctx *ctx, struct lyd_node *parent, ly_bool clear_dflt, const struct lyd_attr *attr,
1057 struct lyd_meta **meta)
1058{
1059 const struct lys_module *mod;
1060
1061 LY_CHECK_ARG_RET(NULL, ctx, attr, parent || meta, LY_EINVAL);
1062
1063 if (parent && !parent->schema) {
1064 LOGERR(ctx, LY_EINVAL, "Cannot add metadata to an opaque node \"%s\".", ((struct lyd_node_opaq *)parent)->name);
1065 return LY_EINVAL;
Michal Vasko3a41dff2020-07-15 14:30:28 +02001066 }
Michal Vasko610553d2020-11-18 18:15:05 +01001067 if (meta) {
1068 *meta = NULL;
1069 }
Michal Vaskoba696702020-11-11 19:12:45 +01001070
1071 switch (attr->format) {
1072 case LY_PREF_XML:
Michal Vaskoad92b672020-11-12 13:11:31 +01001073 mod = ly_ctx_get_module_implemented_ns(ctx, attr->name.module_ns);
Michal Vaskoba696702020-11-11 19:12:45 +01001074 if (!mod) {
Michal Vaskoad92b672020-11-12 13:11:31 +01001075 LOGERR(ctx, LY_EINVAL, "Module with namespace \"%s\" not found.", attr->name.module_ns);
Michal Vaskoba696702020-11-11 19:12:45 +01001076 return LY_ENOTFOUND;
1077 }
1078 break;
1079 case LY_PREF_JSON:
Michal Vaskoad92b672020-11-12 13:11:31 +01001080 mod = ly_ctx_get_module_implemented(ctx, attr->name.module_name);
Michal Vaskoba696702020-11-11 19:12:45 +01001081 if (!mod) {
Michal Vaskoad92b672020-11-12 13:11:31 +01001082 LOGERR(ctx, LY_EINVAL, "Module \"%s\" not found.", attr->name.module_name);
Michal Vaskoba696702020-11-11 19:12:45 +01001083 return LY_ENOTFOUND;
1084 }
1085 break;
1086 default:
1087 LOGINT_RET(ctx);
1088 }
1089
Michal Vaskoad92b672020-11-12 13:11:31 +01001090 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 +01001091 NULL, attr->format, attr->val_prefix_data, attr->hints, clear_dflt, NULL);
Michal Vaskod86997b2020-05-26 15:19:54 +02001092}
1093
Michal Vasko3a41dff2020-07-15 14:30:28 +02001094API LY_ERR
Michal Vasko00cbf532020-06-15 13:58:47 +02001095lyd_new_opaq(struct lyd_node *parent, const struct ly_ctx *ctx, const char *name, const char *value,
Radek Krejci0f969882020-08-21 16:56:47 +02001096 const char *module_name, struct lyd_node **node)
Michal Vasko00cbf532020-06-15 13:58:47 +02001097{
1098 struct lyd_node *ret = NULL;
1099
Michal Vasko6027eb92020-07-15 16:37:30 +02001100 LY_CHECK_ARG_RET(ctx, parent || ctx, parent || node, name, module_name, LY_EINVAL);
Michal Vasko00cbf532020-06-15 13:58:47 +02001101
1102 if (!ctx) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001103 ctx = LYD_CTX(parent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001104 }
1105 if (!value) {
1106 value = "";
1107 }
1108
Michal Vasko501af032020-11-11 20:27:44 +01001109 LY_CHECK_RET(lyd_create_opaq(ctx, name, strlen(name), NULL, 0, module_name, strlen(module_name), value,
1110 strlen(value), NULL, LY_PREF_JSON, NULL, 0, &ret));
Michal Vasko3a41dff2020-07-15 14:30:28 +02001111 if (parent) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001112 lyd_insert_node(parent, NULL, ret);
1113 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02001114
1115 if (node) {
1116 *node = ret;
1117 }
1118 return LY_SUCCESS;
Michal Vasko00cbf532020-06-15 13:58:47 +02001119}
1120
Michal Vasko3a41dff2020-07-15 14:30:28 +02001121API LY_ERR
Michal Vasko8d65f852021-02-17 11:28:13 +01001122lyd_new_opaq2(struct lyd_node *parent, const struct ly_ctx *ctx, const char *name, const char *value,
1123 const char *module_ns, struct lyd_node **node)
1124{
1125 struct lyd_node *ret = NULL;
1126
1127 LY_CHECK_ARG_RET(ctx, parent || ctx, parent || node, name, module_ns, LY_EINVAL);
1128
1129 if (!ctx) {
1130 ctx = LYD_CTX(parent);
1131 }
1132 if (!value) {
1133 value = "";
1134 }
1135
1136 LY_CHECK_RET(lyd_create_opaq(ctx, name, strlen(name), NULL, 0, module_ns, strlen(module_ns), value,
1137 strlen(value), NULL, LY_PREF_XML, NULL, 0, &ret));
1138 if (parent) {
1139 lyd_insert_node(parent, NULL, ret);
1140 }
1141
1142 if (node) {
1143 *node = ret;
1144 }
1145 return LY_SUCCESS;
1146}
1147
1148API LY_ERR
1149lyd_new_attr(struct lyd_node *parent, const char *module_name, const char *name, const char *value,
Radek Krejci0f969882020-08-21 16:56:47 +02001150 struct lyd_attr **attr)
Michal Vasko00cbf532020-06-15 13:58:47 +02001151{
Radek Krejci1798aae2020-07-14 13:26:06 +02001152 struct lyd_attr *ret = NULL;
Michal Vasko00cbf532020-06-15 13:58:47 +02001153 const struct ly_ctx *ctx;
1154 const char *prefix, *tmp;
Michal Vasko51d21b82020-11-13 18:03:54 +01001155 size_t pref_len, name_len, mod_len;
Michal Vasko00cbf532020-06-15 13:58:47 +02001156
Michal Vasko3a41dff2020-07-15 14:30:28 +02001157 LY_CHECK_ARG_RET(NULL, parent, !parent->schema, name, LY_EINVAL);
Michal Vasko00cbf532020-06-15 13:58:47 +02001158
Michal Vaskob7be7a82020-08-20 09:09:04 +02001159 ctx = LYD_CTX(parent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001160
1161 /* parse the name */
1162 tmp = name;
1163 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
Michal Vaskob69b68c2021-02-17 11:18:16 +01001164 LOGERR(ctx, LY_EINVAL, "Attribute name \"%s\" is not valid.", name);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001165 return LY_EVALID;
Michal Vasko00cbf532020-06-15 13:58:47 +02001166 }
1167
Michal Vasko51d21b82020-11-13 18:03:54 +01001168 /* get the module */
1169 if (module_name) {
1170 mod_len = strlen(module_name);
1171 } else {
1172 module_name = prefix;
1173 mod_len = pref_len;
1174 }
1175
Michal Vasko00cbf532020-06-15 13:58:47 +02001176 /* set value if none */
Michal Vasko8d65f852021-02-17 11:28:13 +01001177 if (!value) {
1178 value = "";
Michal Vasko00cbf532020-06-15 13:58:47 +02001179 }
1180
Michal Vasko8d65f852021-02-17 11:28:13 +01001181 LY_CHECK_RET(lyd_create_attr(parent, &ret, ctx, name, name_len, prefix, pref_len, module_name, mod_len, value,
1182 strlen(value), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA));
1183
1184 if (attr) {
1185 *attr = ret;
1186 }
1187 return LY_SUCCESS;
1188}
1189
1190API LY_ERR
1191lyd_new_attr2(struct lyd_node *parent, const char *module_ns, const char *name, const char *value,
1192 struct lyd_attr **attr)
1193{
1194 struct lyd_attr *ret = NULL;
1195 const struct ly_ctx *ctx;
1196 const char *prefix, *tmp;
1197 size_t pref_len, name_len;
1198
1199 LY_CHECK_ARG_RET(NULL, parent, !parent->schema, name, LY_EINVAL);
1200
1201 ctx = LYD_CTX(parent);
1202
1203 /* parse the name */
1204 tmp = name;
1205 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
1206 LOGERR(ctx, LY_EINVAL, "Attribute name \"%s\" is not valid.", name);
1207 return LY_EVALID;
1208 }
1209
1210 /* set value if none */
1211 if (!value) {
1212 value = "";
1213 }
1214
1215 LY_CHECK_RET(lyd_create_attr(parent, &ret, ctx, name, name_len, prefix, pref_len, module_ns,
1216 module_ns ? strlen(module_ns) : 0, value, strlen(value), NULL, LY_PREF_XML, NULL, LYD_HINT_DATA));
Michal Vasko3a41dff2020-07-15 14:30:28 +02001217
1218 if (attr) {
1219 *attr = ret;
1220 }
1221 return LY_SUCCESS;
Michal Vasko00cbf532020-06-15 13:58:47 +02001222}
1223
1224API LY_ERR
1225lyd_change_term(struct lyd_node *term, const char *val_str)
1226{
1227 LY_ERR ret = LY_SUCCESS;
1228 struct lysc_type *type;
1229 struct lyd_node_term *t;
1230 struct lyd_node *parent;
1231 struct lyd_value val = {0};
Radek Krejci857189e2020-09-01 13:26:36 +02001232 ly_bool dflt_change, val_change;
Michal Vasko00cbf532020-06-15 13:58:47 +02001233
1234 LY_CHECK_ARG_RET(NULL, term, term->schema, term->schema->nodetype & LYD_NODE_TERM, LY_EINVAL);
1235
1236 if (!val_str) {
1237 val_str = "";
1238 }
1239 t = (struct lyd_node_term *)term;
1240 type = ((struct lysc_node_leaf *)term->schema)->type;
1241
1242 /* parse the new value */
Radek Krejciddace2c2021-01-08 11:30:56 +01001243 LOG_LOCSET(term->schema, term, NULL, NULL);
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001244 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 +01001245 term->schema, NULL);
Radek Krejciddace2c2021-01-08 11:30:56 +01001246 LOG_LOCBACK(term->schema ? 1 : 0, 1, 0, 0);
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001247 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001248
1249 /* compare original and new value */
1250 if (type->plugin->compare(&t->value, &val)) {
1251 /* values differ, switch them */
Michal Vaskob7be7a82020-08-20 09:09:04 +02001252 type->plugin->free(LYD_CTX(term), &t->value);
Michal Vasko00cbf532020-06-15 13:58:47 +02001253 t->value = val;
1254 memset(&val, 0, sizeof val);
1255 val_change = 1;
1256 } else {
1257 val_change = 0;
1258 }
1259
1260 /* always clear the default flag */
1261 if (term->flags & LYD_DEFAULT) {
Michal Vasko9e685082021-01-29 14:49:09 +01001262 for (parent = term; parent; parent = lyd_parent(parent)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001263 parent->flags &= ~LYD_DEFAULT;
1264 }
1265 dflt_change = 1;
1266 } else {
1267 dflt_change = 0;
1268 }
1269
1270 if (val_change || dflt_change) {
1271 /* make the node non-validated */
1272 term->flags &= LYD_NEW;
1273 }
1274
1275 if (val_change) {
1276 if (term->schema->nodetype == LYS_LEAFLIST) {
1277 /* leaf-list needs to be hashed again and re-inserted into parent */
1278 lyd_unlink_hash(term);
1279 lyd_hash(term);
1280 LY_CHECK_GOTO(ret = lyd_insert_hash(term), cleanup);
1281 } else if ((term->schema->flags & LYS_KEY) && term->parent) {
1282 /* list needs to be updated if its key was changed */
1283 assert(term->parent->schema->nodetype == LYS_LIST);
Michal Vasko9e685082021-01-29 14:49:09 +01001284 lyd_unlink_hash(lyd_parent(term));
1285 lyd_hash(lyd_parent(term));
1286 LY_CHECK_GOTO(ret = lyd_insert_hash(lyd_parent(term)), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001287 } /* else leaf that is not a key, its value is not used for its hash so it does not change */
1288 }
1289
1290 /* retrun value */
1291 if (!val_change) {
1292 if (dflt_change) {
1293 /* only default flag change */
1294 ret = LY_EEXIST;
1295 } else {
1296 /* no change */
1297 ret = LY_ENOT;
1298 }
1299 } /* else value changed, LY_SUCCESS */
1300
1301cleanup:
Michal Vasko59512fc2020-12-09 18:13:29 +01001302 if (val.realtype) {
1303 type->plugin->free(LYD_CTX(term), &val);
1304 }
Michal Vasko00cbf532020-06-15 13:58:47 +02001305 return ret;
1306}
1307
Michal Vasko41586352020-07-13 13:54:25 +02001308API LY_ERR
1309lyd_change_meta(struct lyd_meta *meta, const char *val_str)
1310{
1311 LY_ERR ret = LY_SUCCESS;
Radek Krejci2b18bf12020-11-06 11:20:20 +01001312 struct lyd_meta *m2 = NULL;
Michal Vasko41586352020-07-13 13:54:25 +02001313 struct lyd_value val;
Radek Krejci857189e2020-09-01 13:26:36 +02001314 ly_bool val_change;
Michal Vasko41586352020-07-13 13:54:25 +02001315
1316 LY_CHECK_ARG_RET(NULL, meta, LY_EINVAL);
1317
1318 if (!val_str) {
1319 val_str = "";
1320 }
1321
1322 /* parse the new value into a new meta structure */
1323 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 +01001324 strlen(val_str), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, 0, NULL), cleanup);
Michal Vasko41586352020-07-13 13:54:25 +02001325
1326 /* compare original and new value */
1327 if (lyd_compare_meta(meta, m2)) {
1328 /* values differ, switch them */
1329 val = meta->value;
1330 meta->value = m2->value;
1331 m2->value = val;
1332 val_change = 1;
1333 } else {
1334 val_change = 0;
1335 }
1336
1337 /* retrun value */
1338 if (!val_change) {
1339 /* no change */
1340 ret = LY_ENOT;
1341 } /* else value changed, LY_SUCCESS */
1342
1343cleanup:
Michal Vasko1a66a5d2020-11-18 18:15:37 +01001344 lyd_free_meta_single(m2);
Michal Vasko41586352020-07-13 13:54:25 +02001345 return ret;
1346}
1347
Michal Vasko3a41dff2020-07-15 14:30:28 +02001348API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001349lyd_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 +02001350 struct lyd_node **node)
Michal Vasko00cbf532020-06-15 13:58:47 +02001351{
Michal Vasko3a41dff2020-07-15 14:30:28 +02001352 return lyd_new_path2(parent, ctx, path, value, 0, options, node, NULL);
Michal Vasko00cbf532020-06-15 13:58:47 +02001353}
1354
Michal Vasko6741dc62021-02-04 09:27:45 +01001355static LY_ERR
1356lyd_new_path_check_find_lypath(struct ly_path *path, const char *str_path, const char *value, uint32_t options)
1357{
1358 LY_ERR ret = LY_SUCCESS, r;
1359 const struct lysc_node *schema;
1360 struct ly_path_predicate *pred;
Michal Vasko6f9b4262021-02-04 12:09:56 +01001361 LY_ARRAY_COUNT_TYPE u, new_count;
Michal Vasko6741dc62021-02-04 09:27:45 +01001362
1363 assert(path);
1364
1365 /* go through all the compiled nodes */
1366 LY_ARRAY_FOR(path, u) {
1367 schema = path[u].node;
Michal Vasko6f9b4262021-02-04 12:09:56 +01001368 new_count = u + 1;
Michal Vasko6741dc62021-02-04 09:27:45 +01001369 if ((schema->nodetype == LYS_LIST) && (path[u].pred_type == LY_PATH_PREDTYPE_NONE)) {
1370 if (schema->flags & LYS_KEYLESS) {
1371 /* creating a new keyless list instance */
1372 break;
1373 } else if ((u < LY_ARRAY_COUNT(path) - 1) || !(options & LYD_NEW_PATH_OPAQ)) {
1374 LOG_LOCSET(schema, NULL, NULL, NULL);
1375 LOGVAL(schema->module->ctx, LYVE_XPATH, "Predicate missing for %s \"%s\" in path \"%s\".",
1376 lys_nodetype2str(schema->nodetype), schema->name, str_path);
1377 LOG_LOCBACK(1, 0, 0, 0);
1378 return LY_EINVAL;
1379 } /* else creating an opaque list without keys */
1380 }
1381 }
1382
Michal Vasko6f9b4262021-02-04 12:09:56 +01001383 if ((schema->nodetype == LYS_LEAFLIST) && (path[new_count - 1].pred_type == LY_PATH_PREDTYPE_NONE)) {
Michal Vasko6741dc62021-02-04 09:27:45 +01001384 /* parse leafref value into a predicate, if not defined in the path */
1385 if (!value) {
1386 value = "";
1387 }
1388
1389 r = LY_SUCCESS;
1390 if (options & LYD_NEW_PATH_OPAQ) {
1391 r = lys_value_validate(NULL, schema, value, strlen(value));
1392 }
1393 if (!r) {
1394 /* store the new predicate */
Michal Vasko6f9b4262021-02-04 12:09:56 +01001395 path[new_count - 1].pred_type = LY_PATH_PREDTYPE_LEAFLIST;
1396 LY_ARRAY_NEW_GOTO(schema->module->ctx, path[new_count - 1].predicates, pred, ret, cleanup);
Michal Vasko6741dc62021-02-04 09:27:45 +01001397
1398 ret = lyd_value_store(schema->module->ctx, &pred->value, ((struct lysc_node_leaflist *)schema)->type, value,
1399 strlen(value), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, schema, NULL);
1400 LY_CHECK_GOTO(ret, cleanup);
1401 ++((struct lysc_type *)pred->value.realtype)->refcount;
1402
1403 if (schema->flags & LYS_CONFIG_R) {
1404 /* creating a new state leaf-list instance */
Michal Vasko6f9b4262021-02-04 12:09:56 +01001405 --new_count;
Michal Vasko6741dc62021-02-04 09:27:45 +01001406 }
1407 } /* else we have opaq flag and the value is not valid, leave no predicate and then create an opaque node */
1408 }
1409
1410 /* hide the nodes that should always be created so they are not found */
Michal Vasko6f9b4262021-02-04 12:09:56 +01001411 while (new_count < LY_ARRAY_COUNT(path)) {
Michal Vasko6741dc62021-02-04 09:27:45 +01001412 LY_ARRAY_DECREMENT(path);
1413 }
1414
1415cleanup:
1416 return ret;
1417}
1418
Michal Vasko00cbf532020-06-15 13:58:47 +02001419API LY_ERR
1420lyd_new_path2(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const void *value,
Radek Krejci1deb5be2020-08-26 16:43:36 +02001421 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 +02001422{
1423 LY_ERR ret = LY_SUCCESS, r;
1424 struct lyxp_expr *exp = NULL;
1425 struct ly_path *p = NULL;
1426 struct lyd_node *nparent = NULL, *nnode = NULL, *node = NULL, *cur_parent;
1427 const struct lysc_node *schema;
Michal Vasko6741dc62021-02-04 09:27:45 +01001428 LY_ARRAY_COUNT_TYPE path_idx = 0, orig_count;
Michal Vasko00cbf532020-06-15 13:58:47 +02001429
1430 LY_CHECK_ARG_RET(ctx, parent || ctx, path, (path[0] == '/') || parent, LY_EINVAL);
1431
1432 if (!ctx) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001433 ctx = LYD_CTX(parent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001434 }
1435
1436 /* parse path */
Michal Vasko6b26e742020-07-17 15:02:10 +02001437 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 +02001438 LY_PATH_PREFIX_OPTIONAL, LY_PATH_PRED_SIMPLE, &exp), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001439
1440 /* compile path */
1441 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 +02001442 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 +01001443 NULL, NULL, &p), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001444
Michal Vasko6741dc62021-02-04 09:27:45 +01001445 /* check the compiled path before searching existing nodes, it may be shortened */
1446 orig_count = LY_ARRAY_COUNT(p);
1447 LY_CHECK_GOTO(ret = lyd_new_path_check_find_lypath(p, path, value, options), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001448
1449 /* try to find any existing nodes in the path */
1450 if (parent) {
1451 ret = ly_path_eval_partial(p, parent, &path_idx, &node);
1452 if (ret == LY_SUCCESS) {
Michal Vasko6741dc62021-02-04 09:27:45 +01001453 if (orig_count == LY_ARRAY_COUNT(p)) {
1454 /* the node exists, are we supposed to update it or is it just a default? */
1455 if (!(options & LYD_NEW_PATH_UPDATE) && !(node->flags & LYD_DEFAULT)) {
1456 LOG_LOCSET(NULL, node, NULL, NULL);
1457 LOGVAL(ctx, LYVE_REFERENCE, "Path \"%s\" already exists", path);
1458 LOG_LOCBACK(0, 1, 0, 0);
1459 ret = LY_EEXIST;
1460 goto cleanup;
1461 }
Michal Vasko00cbf532020-06-15 13:58:47 +02001462
Michal Vasko6741dc62021-02-04 09:27:45 +01001463 /* update the existing node */
1464 ret = lyd_new_path_update(node, value, value_type, &nparent, &nnode);
1465 goto cleanup;
1466 } /* else we were not searching for the whole path */
Michal Vasko00cbf532020-06-15 13:58:47 +02001467 } else if (ret == LY_EINCOMPLETE) {
1468 /* some nodes were found, adjust the iterator to the next segment */
1469 ++path_idx;
1470 } else if (ret == LY_ENOTFOUND) {
1471 /* 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 +01001472 if (lysc_data_parent(p[0].node)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001473 node = parent;
1474 }
1475 } else {
1476 /* error */
1477 goto cleanup;
1478 }
1479 }
1480
Michal Vasko6741dc62021-02-04 09:27:45 +01001481 /* restore the full path for creating new nodes */
1482 while (orig_count > LY_ARRAY_COUNT(p)) {
1483 LY_ARRAY_INCREMENT(p);
1484 }
1485
Michal Vasko00cbf532020-06-15 13:58:47 +02001486 /* create all the non-existing nodes in a loop */
Michal Vaskod989ba02020-08-24 10:59:24 +02001487 for ( ; path_idx < LY_ARRAY_COUNT(p); ++path_idx) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001488 cur_parent = node;
1489 schema = p[path_idx].node;
1490
1491 switch (schema->nodetype) {
1492 case LYS_LIST:
1493 if (!(schema->flags & LYS_KEYLESS)) {
Radek Krejci092e33c2020-10-12 15:33:10 +02001494 if ((options & LYD_NEW_PATH_OPAQ) && (p[path_idx].pred_type == LY_PATH_PREDTYPE_NONE)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001495 /* creating opaque list without keys */
Michal Vasko501af032020-11-11 20:27:44 +01001496 LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), NULL, 0,
1497 schema->module->name, strlen(schema->module->name), NULL, 0, NULL, LY_PREF_JSON, NULL,
1498 LYD_NODEHINT_LIST, &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001499 } else {
Michal Vasko8b776962021-01-12 12:21:49 +01001500 if (p[path_idx].pred_type != LY_PATH_PREDTYPE_LIST) {
1501 LOG_LOCSET(schema, NULL, NULL, NULL);
1502 LOGVAL(ctx, LYVE_XPATH, "Predicate missing for %s \"%s\" in path \"%s\".",
1503 lys_nodetype2str(schema->nodetype), schema->name, path);
1504 LOG_LOCBACK(1, 0, 0, 0);
1505 ret = LY_EINVAL;
1506 goto cleanup;
1507 }
1508
Michal Vasko00cbf532020-06-15 13:58:47 +02001509 LY_CHECK_GOTO(ret = lyd_create_list(schema, p[path_idx].predicates, &node), cleanup);
1510 }
1511 break;
1512 }
Radek Krejcif13b87b2020-12-01 22:02:17 +01001513 /* fall through */
Michal Vasko00cbf532020-06-15 13:58:47 +02001514 case LYS_CONTAINER:
1515 case LYS_NOTIF:
1516 case LYS_RPC:
1517 case LYS_ACTION:
1518 LY_CHECK_GOTO(ret = lyd_create_inner(schema, &node), cleanup);
1519 break;
1520 case LYS_LEAFLIST:
Radek Krejci092e33c2020-10-12 15:33:10 +02001521 if ((options & LYD_NEW_PATH_OPAQ) && (p[path_idx].pred_type == LY_PATH_PREDTYPE_NONE)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001522 /* creating opaque leaf-list without value */
Michal Vasko501af032020-11-11 20:27:44 +01001523 LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), NULL, 0,
1524 schema->module->name, strlen(schema->module->name), NULL, 0, NULL, LY_PREF_JSON, NULL,
1525 LYD_NODEHINT_LEAFLIST, &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001526 } else {
1527 assert(p[path_idx].pred_type == LY_PATH_PREDTYPE_LEAFLIST);
1528 LY_CHECK_GOTO(ret = lyd_create_term2(schema, &p[path_idx].predicates[0].value, &node), cleanup);
1529 }
1530 break;
1531 case LYS_LEAF:
Michal Vasko35880332020-12-08 13:08:12 +01001532 if (lysc_is_key(schema)) {
1533 /* it must have been already created or some error will occur later */
1534 assert(cur_parent);
1535 node = lyd_child(cur_parent);
1536 assert(node && (node->schema == schema));
1537 goto next_iter;
1538 }
1539
1540 /* make sure there is some value */
Michal Vasko00cbf532020-06-15 13:58:47 +02001541 if (!value) {
1542 value = "";
1543 }
1544
1545 r = LY_SUCCESS;
Radek Krejci092e33c2020-10-12 15:33:10 +02001546 if (options & LYD_NEW_PATH_OPAQ) {
Michal Vaskof937cfe2020-08-03 16:07:12 +02001547 r = lys_value_validate(NULL, schema, value, strlen(value));
Michal Vasko00cbf532020-06-15 13:58:47 +02001548 }
1549 if (!r) {
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001550 ret = lyd_create_term(schema, value, strlen(value), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, NULL, &node);
1551 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001552 } else {
1553 /* creating opaque leaf without value */
Michal Vasko501af032020-11-11 20:27:44 +01001554 LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), NULL, 0, schema->module->name,
1555 strlen(schema->module->name), NULL, 0, NULL, LY_PREF_JSON, NULL, 0, &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001556 }
1557 break;
1558 case LYS_ANYDATA:
1559 case LYS_ANYXML:
Michal Vasko366a4a12020-12-04 16:23:57 +01001560 LY_CHECK_GOTO(ret = lyd_create_any(schema, value, value_type, 0, &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001561 break;
1562 default:
1563 LOGINT(ctx);
1564 ret = LY_EINT;
1565 goto cleanup;
1566 }
1567
1568 if (cur_parent) {
1569 /* connect to the parent */
1570 lyd_insert_node(cur_parent, NULL, node);
1571 } else if (parent) {
1572 /* connect to top-level siblings */
1573 lyd_insert_node(NULL, &parent, node);
1574 }
1575
Michal Vasko35880332020-12-08 13:08:12 +01001576next_iter:
Michal Vasko00cbf532020-06-15 13:58:47 +02001577 /* update remembered nodes */
1578 if (!nparent) {
1579 nparent = node;
1580 }
1581 nnode = node;
1582 }
1583
1584cleanup:
1585 lyxp_expr_free(ctx, exp);
Michal Vasko6741dc62021-02-04 09:27:45 +01001586 if (p) {
1587 while (orig_count > LY_ARRAY_COUNT(p)) {
1588 LY_ARRAY_INCREMENT(p);
1589 }
1590 }
Michal Vasko00cbf532020-06-15 13:58:47 +02001591 ly_path_free(ctx, p);
1592 if (!ret) {
1593 /* set out params only on success */
1594 if (new_parent) {
1595 *new_parent = nparent;
1596 }
1597 if (new_node) {
1598 *new_node = nnode;
1599 }
Michal Vaskof4b95ba2020-12-11 08:42:33 +01001600 } else {
1601 lyd_free_tree(nparent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001602 }
1603 return ret;
1604}
1605
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001606LY_ERR
1607lyd_new_implicit_r(struct lyd_node *parent, struct lyd_node **first, const struct lysc_node *sparent,
Radek Krejci1deb5be2020-08-26 16:43:36 +02001608 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 +02001609 struct lyd_node **diff)
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001610{
1611 LY_ERR ret;
Michal Vaskod1e53b92021-01-28 13:11:06 +01001612 const struct lysc_node *iter = NULL;
Radek Krejci2b18bf12020-11-06 11:20:20 +01001613 struct lyd_node *node = NULL;
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001614 struct lyd_value **dflts;
1615 LY_ARRAY_COUNT_TYPE u;
Michal Vasko630d9892020-12-08 17:11:08 +01001616 uint32_t getnext_opts;
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001617
1618 assert(first && (parent || sparent || mod));
1619
1620 if (!sparent && parent) {
1621 sparent = parent->schema;
1622 }
1623
Michal Vasko630d9892020-12-08 17:11:08 +01001624 getnext_opts = LYS_GETNEXT_WITHCHOICE;
1625 if (impl_opts & LYD_IMPLICIT_OUTPUT) {
1626 getnext_opts |= LYS_GETNEXT_OUTPUT;
1627 }
1628
1629 while ((iter = lys_getnext(iter, sparent, mod ? mod->compiled : NULL, getnext_opts))) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001630 if ((impl_opts & LYD_IMPLICIT_NO_STATE) && (iter->flags & LYS_CONFIG_R)) {
1631 continue;
Michal Vasko44b19a12020-08-07 09:21:30 +02001632 } else if ((impl_opts & LYD_IMPLICIT_NO_CONFIG) && (iter->flags & LYS_CONFIG_W)) {
1633 continue;
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001634 }
1635
1636 switch (iter->nodetype) {
1637 case LYS_CHOICE:
Michal Vaskobcf4d7d2020-11-18 18:16:49 +01001638 node = lys_getnext_data(NULL, *first, NULL, iter, NULL);
1639 if (!node && ((struct lysc_node_choice *)iter)->dflt) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001640 /* create default case data */
Michal Vasko14ed9cd2021-01-28 14:16:25 +01001641 LY_CHECK_RET(lyd_new_implicit_r(parent, first, &((struct lysc_node_choice *)iter)->dflt->node,
Michal Vasko69730152020-10-09 16:30:07 +02001642 NULL, node_types, node_when, impl_opts, diff));
Michal Vaskobcf4d7d2020-11-18 18:16:49 +01001643 } else if (node) {
1644 /* create any default data in the existing case */
1645 assert(node->schema->parent->nodetype == LYS_CASE);
1646 LY_CHECK_RET(lyd_new_implicit_r(parent, first, node->schema->parent, NULL, node_types, node_when,
1647 impl_opts, diff));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001648 }
1649 break;
1650 case LYS_CONTAINER:
1651 if (!(iter->flags & LYS_PRESENCE) && lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
1652 /* create default NP container */
1653 LY_CHECK_RET(lyd_create_inner(iter, &node));
Radek Krejci9a3823e2021-01-27 20:26:46 +01001654 node->flags = LYD_DEFAULT | (lysc_node_when(node->schema) ? LYD_WHEN_TRUE : 0);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001655 lyd_insert_node(parent, first, node);
1656
1657 /* cannot be a NP container with when */
Radek Krejci9a3823e2021-01-27 20:26:46 +01001658 assert(!lysc_node_when(iter));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001659
Michal Vaskoe49b6322020-11-05 17:38:36 +01001660 if (diff) {
1661 /* add into diff */
1662 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff));
1663 }
1664
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001665 /* create any default children */
Michal Vaskoe0665742021-02-11 11:08:44 +01001666 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 +02001667 impl_opts, diff));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001668 }
1669 break;
1670 case LYS_LEAF:
Michal Vasko69730152020-10-09 16:30:07 +02001671 if (!(impl_opts & LYD_IMPLICIT_NO_DEFAULTS) && ((struct lysc_node_leaf *)iter)->dflt &&
1672 lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001673 /* create default leaf */
1674 ret = lyd_create_term2(iter, ((struct lysc_node_leaf *)iter)->dflt, &node);
1675 if (ret == LY_EINCOMPLETE) {
1676 if (node_types) {
1677 /* remember to resolve type */
Radek Krejci3d92e442020-10-12 12:48:13 +02001678 LY_CHECK_RET(ly_set_add(node_types, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001679 }
1680 } else if (ret) {
1681 return ret;
1682 }
Radek Krejci9a3823e2021-01-27 20:26:46 +01001683 node->flags = LYD_DEFAULT | (lysc_node_when(node->schema) ? LYD_WHEN_TRUE : 0);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001684 lyd_insert_node(parent, first, node);
1685
Radek Krejci9a3823e2021-01-27 20:26:46 +01001686 if (lysc_node_when(iter) && node_when) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001687 /* remember to resolve when */
Radek Krejci3d92e442020-10-12 12:48:13 +02001688 LY_CHECK_RET(ly_set_add(node_when, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001689 }
1690 if (diff) {
1691 /* add into diff */
1692 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff));
1693 }
1694 }
1695 break;
1696 case LYS_LEAFLIST:
Michal Vasko69730152020-10-09 16:30:07 +02001697 if (!(impl_opts & LYD_IMPLICIT_NO_DEFAULTS) && ((struct lysc_node_leaflist *)iter)->dflts &&
1698 lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001699 /* create all default leaf-lists */
1700 dflts = ((struct lysc_node_leaflist *)iter)->dflts;
1701 LY_ARRAY_FOR(dflts, u) {
1702 ret = lyd_create_term2(iter, dflts[u], &node);
1703 if (ret == LY_EINCOMPLETE) {
1704 if (node_types) {
1705 /* remember to resolve type */
Radek Krejci3d92e442020-10-12 12:48:13 +02001706 LY_CHECK_RET(ly_set_add(node_types, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001707 }
1708 } else if (ret) {
1709 return ret;
1710 }
Radek Krejci9a3823e2021-01-27 20:26:46 +01001711 node->flags = LYD_DEFAULT | (lysc_node_when(node->schema) ? LYD_WHEN_TRUE : 0);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001712 lyd_insert_node(parent, first, node);
1713
Radek Krejci9a3823e2021-01-27 20:26:46 +01001714 if (lysc_node_when(iter) && node_when) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001715 /* remember to resolve when */
Radek Krejci3d92e442020-10-12 12:48:13 +02001716 LY_CHECK_RET(ly_set_add(node_when, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001717 }
1718 if (diff) {
1719 /* add into diff */
1720 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff));
1721 }
1722 }
1723 }
1724 break;
1725 default:
1726 /* without defaults */
1727 break;
1728 }
1729 }
1730
1731 return LY_SUCCESS;
1732}
1733
1734API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001735lyd_new_implicit_tree(struct lyd_node *tree, uint32_t implicit_options, struct lyd_node **diff)
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001736{
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001737 LY_ERR ret = LY_SUCCESS;
Michal Vasko3488ada2020-12-03 14:18:19 +01001738 struct lyd_node *node;
1739 struct ly_set node_when = {0};
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001740
1741 LY_CHECK_ARG_RET(NULL, tree, LY_EINVAL);
1742 if (diff) {
1743 *diff = NULL;
1744 }
1745
Michal Vasko56daf732020-08-10 10:57:18 +02001746 LYD_TREE_DFS_BEGIN(tree, node) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001747 /* skip added default nodes */
Michal Vasko69730152020-10-09 16:30:07 +02001748 if (((node->flags & (LYD_DEFAULT | LYD_NEW)) != (LYD_DEFAULT | LYD_NEW)) &&
1749 (node->schema->nodetype & LYD_NODE_INNER)) {
Michal Vaskoe0665742021-02-11 11:08:44 +01001750 LY_CHECK_GOTO(ret = lyd_new_implicit_r(node, lyd_node_child_p(node), NULL, NULL, NULL,
Michal Vasko3488ada2020-12-03 14:18:19 +01001751 &node_when, implicit_options, diff), cleanup);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001752 }
1753
Michal Vasko56daf732020-08-10 10:57:18 +02001754 LYD_TREE_DFS_END(tree, node);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001755 }
1756
Michal Vasko3488ada2020-12-03 14:18:19 +01001757 /* resolve when and remove any invalid defaults */
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001758 LY_CHECK_GOTO(ret = lyd_validate_unres(&tree, NULL, &node_when, NULL, NULL, diff), cleanup);
Michal Vasko3488ada2020-12-03 14:18:19 +01001759
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001760cleanup:
Michal Vasko3488ada2020-12-03 14:18:19 +01001761 ly_set_erase(&node_when, NULL);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001762 if (ret && diff) {
1763 lyd_free_all(*diff);
1764 *diff = NULL;
1765 }
1766 return ret;
1767}
1768
1769API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001770lyd_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 +02001771{
1772 const struct lys_module *mod;
1773 struct lyd_node *d = NULL;
1774 uint32_t i = 0;
1775 LY_ERR ret = LY_SUCCESS;
1776
1777 LY_CHECK_ARG_RET(ctx, tree, *tree || ctx, LY_EINVAL);
1778 if (diff) {
1779 *diff = NULL;
1780 }
1781 if (!ctx) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001782 ctx = LYD_CTX(*tree);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001783 }
1784
1785 /* add nodes for each module one-by-one */
1786 while ((mod = ly_ctx_get_module_iter(ctx, &i))) {
1787 if (!mod->implemented) {
1788 continue;
1789 }
1790
1791 LY_CHECK_GOTO(ret = lyd_new_implicit_module(tree, mod, implicit_options, diff ? &d : NULL), cleanup);
1792 if (d) {
1793 /* merge into one diff */
1794 lyd_insert_sibling(*diff, d, diff);
1795
1796 d = NULL;
1797 }
1798 }
1799
1800cleanup:
1801 if (ret && diff) {
1802 lyd_free_all(*diff);
1803 *diff = NULL;
1804 }
1805 return ret;
1806}
1807
1808API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001809lyd_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 +02001810{
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001811 LY_ERR ret = LY_SUCCESS;
Michal Vasko3488ada2020-12-03 14:18:19 +01001812 struct lyd_node *root, *d = NULL;
1813 struct ly_set node_when = {0};
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001814
1815 LY_CHECK_ARG_RET(NULL, tree, module, LY_EINVAL);
1816 if (diff) {
1817 *diff = NULL;
1818 }
1819
1820 /* add all top-level defaults for this module */
Michal Vasko3488ada2020-12-03 14:18:19 +01001821 LY_CHECK_GOTO(ret = lyd_new_implicit_r(NULL, tree, NULL, module, NULL, &node_when, implicit_options, diff), cleanup);
1822
1823 /* resolve when and remove any invalid defaults */
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001824 LY_CHECK_GOTO(ret = lyd_validate_unres(tree, module, &node_when, NULL, NULL, diff), cleanup);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001825
1826 /* process nested nodes */
1827 LY_LIST_FOR(*tree, root) {
1828 /* skip added default nodes */
1829 if ((root->flags & (LYD_DEFAULT | LYD_NEW)) != (LYD_DEFAULT | LYD_NEW)) {
1830 LY_CHECK_GOTO(ret = lyd_new_implicit_tree(root, implicit_options, diff ? &d : NULL), cleanup);
1831
1832 if (d) {
1833 /* merge into one diff */
1834 lyd_insert_sibling(*diff, d, diff);
1835
1836 d = NULL;
1837 }
1838 }
1839 }
1840
1841cleanup:
Michal Vasko3488ada2020-12-03 14:18:19 +01001842 ly_set_erase(&node_when, NULL);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001843 if (ret && diff) {
1844 lyd_free_all(*diff);
1845 *diff = NULL;
1846 }
1847 return ret;
1848}
1849
Michal Vasko90932a92020-02-12 14:33:03 +01001850struct lyd_node *
Michal Vaskob104f112020-07-17 09:54:54 +02001851lyd_insert_get_next_anchor(const struct lyd_node *first_sibling, const struct lyd_node *new_node)
Michal Vasko90932a92020-02-12 14:33:03 +01001852{
Michal Vaskob104f112020-07-17 09:54:54 +02001853 const struct lysc_node *schema, *sparent;
Michal Vasko90932a92020-02-12 14:33:03 +01001854 struct lyd_node *match = NULL;
Radek Krejci857189e2020-09-01 13:26:36 +02001855 ly_bool found;
Michal Vasko93b16062020-12-09 18:14:18 +01001856 uint32_t getnext_opts;
Michal Vasko90932a92020-02-12 14:33:03 +01001857
Michal Vaskob104f112020-07-17 09:54:54 +02001858 assert(new_node);
1859
1860 if (!first_sibling || !new_node->schema) {
1861 /* insert at the end, no next anchor */
Michal Vasko90932a92020-02-12 14:33:03 +01001862 return NULL;
1863 }
1864
Michal Vasko93b16062020-12-09 18:14:18 +01001865 getnext_opts = 0;
Michal Vaskod1e53b92021-01-28 13:11:06 +01001866 if (new_node->schema->flags & LYS_IS_OUTPUT) {
Michal Vasko93b16062020-12-09 18:14:18 +01001867 getnext_opts = LYS_GETNEXT_OUTPUT;
1868 }
1869
Michal Vaskob104f112020-07-17 09:54:54 +02001870 if (first_sibling->parent && first_sibling->parent->children_ht) {
1871 /* find the anchor using hashes */
1872 sparent = first_sibling->parent->schema;
Michal Vasko93b16062020-12-09 18:14:18 +01001873 schema = lys_getnext(new_node->schema, sparent, NULL, getnext_opts);
Michal Vaskob104f112020-07-17 09:54:54 +02001874 while (schema) {
1875 /* keep trying to find the first existing instance of the closest following schema sibling,
1876 * otherwise return NULL - inserting at the end */
1877 if (!lyd_find_sibling_schema(first_sibling, schema, &match)) {
1878 break;
1879 }
1880
Michal Vasko93b16062020-12-09 18:14:18 +01001881 schema = lys_getnext(schema, sparent, NULL, getnext_opts);
Michal Vaskob104f112020-07-17 09:54:54 +02001882 }
1883 } else {
1884 /* find the anchor without hashes */
1885 match = (struct lyd_node *)first_sibling;
1886 if (!lysc_data_parent(new_node->schema)) {
1887 /* we are in top-level, skip all the data from preceding modules */
1888 LY_LIST_FOR(match, match) {
1889 if (!match->schema || (strcmp(lyd_owner_module(match)->name, lyd_owner_module(new_node)->name) >= 0)) {
1890 break;
1891 }
1892 }
1893 }
1894
1895 /* get the first schema sibling */
1896 sparent = lysc_data_parent(new_node->schema);
Michal Vasko93b16062020-12-09 18:14:18 +01001897 schema = lys_getnext(NULL, sparent, new_node->schema->module->compiled, getnext_opts);
Michal Vaskob104f112020-07-17 09:54:54 +02001898
1899 found = 0;
1900 LY_LIST_FOR(match, match) {
1901 if (!match->schema || (lyd_owner_module(match) != lyd_owner_module(new_node))) {
1902 /* we have found an opaque node, which must be at the end, so use it OR
1903 * modules do not match, so we must have traversed all the data from new_node module (if any),
1904 * we have found the first node of the next module, that is what we want */
1905 break;
1906 }
1907
1908 /* skip schema nodes until we find the instantiated one */
1909 while (!found) {
1910 if (new_node->schema == schema) {
1911 /* we have found the schema of the new node, continue search to find the first
1912 * data node with a different schema (after our schema) */
1913 found = 1;
1914 break;
1915 }
1916 if (match->schema == schema) {
1917 /* current node (match) is a data node still before the new node, continue search in data */
1918 break;
1919 }
Michal Vasko93b16062020-12-09 18:14:18 +01001920 schema = lys_getnext(schema, sparent, new_node->schema->module->compiled, getnext_opts);
Michal Vaskob104f112020-07-17 09:54:54 +02001921 assert(schema);
1922 }
1923
1924 if (found && (match->schema != new_node->schema)) {
1925 /* find the next node after we have found our node schema data instance */
1926 break;
1927 }
1928 }
Michal Vasko90932a92020-02-12 14:33:03 +01001929 }
1930
1931 return match;
1932}
1933
1934/**
1935 * @brief Insert node after a sibling.
1936 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001937 * Handles inserting into NP containers and key-less lists.
1938 *
Michal Vasko90932a92020-02-12 14:33:03 +01001939 * @param[in] sibling Sibling to insert after.
1940 * @param[in] node Node to insert.
1941 */
1942static void
Michal Vaskof03ed032020-03-04 13:31:44 +01001943lyd_insert_after_node(struct lyd_node *sibling, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001944{
Michal Vasko0249f7c2020-03-05 16:36:40 +01001945 struct lyd_node_inner *par;
1946
Michal Vasko90932a92020-02-12 14:33:03 +01001947 assert(!node->next && (node->prev == node));
1948
1949 node->next = sibling->next;
1950 node->prev = sibling;
1951 sibling->next = node;
1952 if (node->next) {
1953 /* sibling had a succeeding node */
1954 node->next->prev = node;
1955 } else {
1956 /* sibling was last, find first sibling and change its prev */
1957 if (sibling->parent) {
1958 sibling = sibling->parent->child;
1959 } else {
Michal Vaskod989ba02020-08-24 10:59:24 +02001960 for ( ; sibling->prev->next != node; sibling = sibling->prev) {}
Michal Vasko90932a92020-02-12 14:33:03 +01001961 }
1962 sibling->prev = node;
1963 }
1964 node->parent = sibling->parent;
Michal Vasko0249f7c2020-03-05 16:36:40 +01001965
Michal Vasko9f96a052020-03-10 09:41:45 +01001966 for (par = node->parent; par; par = par->parent) {
1967 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 Vaskob104f112020-07-17 09:54:54 +02001971 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 Vasko90932a92020-02-12 14:33:03 +01001976}
1977
1978/**
1979 * @brief Insert node before a sibling.
1980 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001981 * Handles inserting into NP containers and key-less lists.
1982 *
Michal Vasko90932a92020-02-12 14:33:03 +01001983 * @param[in] sibling Sibling to insert before.
1984 * @param[in] node Node to insert.
1985 */
1986static void
Michal Vaskof03ed032020-03-04 13:31:44 +01001987lyd_insert_before_node(struct lyd_node *sibling, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001988{
Michal Vasko0249f7c2020-03-05 16:36:40 +01001989 struct lyd_node_inner *par;
1990
Michal Vasko90932a92020-02-12 14:33:03 +01001991 assert(!node->next && (node->prev == node));
1992
1993 node->next = sibling;
1994 /* covers situation of sibling being first */
1995 node->prev = sibling->prev;
1996 sibling->prev = node;
1997 if (node->prev->next) {
1998 /* sibling had a preceding node */
1999 node->prev->next = node;
2000 } else if (sibling->parent) {
2001 /* sibling was first and we must also change parent child pointer */
2002 sibling->parent->child = node;
2003 }
2004 node->parent = sibling->parent;
Michal Vasko0249f7c2020-03-05 16:36:40 +01002005
Michal Vasko9f96a052020-03-10 09:41:45 +01002006 for (par = node->parent; par; par = par->parent) {
2007 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
2008 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01002009 par->flags &= ~LYD_DEFAULT;
2010 }
Michal Vaskob104f112020-07-17 09:54:54 +02002011 if (par->schema && (par->schema->nodetype == LYS_LIST) && (par->schema->flags & LYS_KEYLESS)) {
Michal Vasko9f96a052020-03-10 09:41:45 +01002012 /* rehash key-less list */
Michal Vasko9e685082021-01-29 14:49:09 +01002013 lyd_hash(&par->node);
Michal Vasko9f96a052020-03-10 09:41:45 +01002014 }
Michal Vasko0249f7c2020-03-05 16:36:40 +01002015 }
Michal Vasko90932a92020-02-12 14:33:03 +01002016}
2017
2018/**
Michal Vaskob104f112020-07-17 09:54:54 +02002019 * @brief Insert node as the first and only child of a parent.
Michal Vasko90932a92020-02-12 14:33:03 +01002020 *
Michal Vasko9f96a052020-03-10 09:41:45 +01002021 * Handles inserting into NP containers and key-less lists.
2022 *
Michal Vasko90932a92020-02-12 14:33:03 +01002023 * @param[in] parent Parent to insert into.
2024 * @param[in] node Node to insert.
2025 */
2026static void
Michal Vaskob104f112020-07-17 09:54:54 +02002027lyd_insert_only_child(struct lyd_node *parent, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01002028{
2029 struct lyd_node_inner *par;
2030
Radek Krejcia1c1e542020-09-29 16:06:52 +02002031 assert(parent && !lyd_child(parent) && !node->next && (node->prev == node));
Michal Vasko52927e22020-03-16 17:26:14 +01002032 assert(!parent->schema || (parent->schema->nodetype & LYD_NODE_INNER));
Michal Vasko90932a92020-02-12 14:33:03 +01002033
2034 par = (struct lyd_node_inner *)parent;
2035
Michal Vaskob104f112020-07-17 09:54:54 +02002036 par->child = node;
Michal Vasko90932a92020-02-12 14:33:03 +01002037 node->parent = par;
Michal Vasko0249f7c2020-03-05 16:36:40 +01002038
Michal Vaskod989ba02020-08-24 10:59:24 +02002039 for ( ; par; par = par->parent) {
Michal Vasko9f96a052020-03-10 09:41:45 +01002040 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
2041 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01002042 par->flags &= ~LYD_DEFAULT;
2043 }
Michal Vasko52927e22020-03-16 17:26:14 +01002044 if (par->schema && (par->schema->nodetype == LYS_LIST) && (par->schema->flags & LYS_KEYLESS)) {
Michal Vasko9f96a052020-03-10 09:41:45 +01002045 /* rehash key-less list */
Michal Vasko9e685082021-01-29 14:49:09 +01002046 lyd_hash(&par->node);
Michal Vasko9f96a052020-03-10 09:41:45 +01002047 }
Michal Vasko0249f7c2020-03-05 16:36:40 +01002048 }
Michal Vasko751cb4d2020-07-14 12:25:28 +02002049}
Michal Vasko0249f7c2020-03-05 16:36:40 +01002050
Michal Vasko751cb4d2020-07-14 12:25:28 +02002051/**
2052 * @brief Learn whether a list instance has all the keys.
2053 *
2054 * @param[in] list List instance to check.
2055 * @return non-zero if all the keys were found,
2056 * @return 0 otherwise.
2057 */
2058static int
2059lyd_insert_has_keys(const struct lyd_node *list)
2060{
2061 const struct lyd_node *key;
2062 const struct lysc_node *skey = NULL;
2063
2064 assert(list->schema->nodetype == LYS_LIST);
Radek Krejcia1c1e542020-09-29 16:06:52 +02002065 key = lyd_child(list);
Michal Vasko751cb4d2020-07-14 12:25:28 +02002066 while ((skey = lys_getnext(skey, list->schema, NULL, 0)) && (skey->flags & LYS_KEY)) {
2067 if (!key || (key->schema != skey)) {
2068 /* key missing */
2069 return 0;
2070 }
2071
2072 key = key->next;
2073 }
2074
2075 /* all keys found */
2076 return 1;
Michal Vasko90932a92020-02-12 14:33:03 +01002077}
2078
2079void
Michal Vaskob104f112020-07-17 09:54:54 +02002080lyd_insert_node(struct lyd_node *parent, struct lyd_node **first_sibling_p, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01002081{
Michal Vaskob104f112020-07-17 09:54:54 +02002082 struct lyd_node *anchor, *first_sibling;
Michal Vasko90932a92020-02-12 14:33:03 +01002083
Michal Vaskob104f112020-07-17 09:54:54 +02002084 /* inserting list without its keys is not supported */
2085 assert((parent || first_sibling_p) && node && (node->hash || !node->schema));
Michal Vaskof756c942020-11-06 17:21:37 +01002086 assert(!parent || !parent->schema ||
2087 (parent->schema->nodetype & (LYS_CONTAINER | LYS_LIST | LYS_RPC | LYS_ACTION | LYS_NOTIF)));
Michal Vasko9b368d32020-02-14 13:53:31 +01002088
Michal Vaskob104f112020-07-17 09:54:54 +02002089 if (!parent && first_sibling_p && (*first_sibling_p) && (*first_sibling_p)->parent) {
Michal Vasko9e685082021-01-29 14:49:09 +01002090 parent = lyd_parent(*first_sibling_p);
Michal Vasko9b368d32020-02-14 13:53:31 +01002091 }
Michal Vasko90932a92020-02-12 14:33:03 +01002092
Michal Vaskob104f112020-07-17 09:54:54 +02002093 /* get first sibling */
Michal Vasko9e685082021-01-29 14:49:09 +01002094 first_sibling = parent ? lyd_child(parent) : *first_sibling_p;
Michal Vasko9f96a052020-03-10 09:41:45 +01002095
Michal Vaskob104f112020-07-17 09:54:54 +02002096 /* find the anchor, our next node, so we can insert before it */
2097 anchor = lyd_insert_get_next_anchor(first_sibling, node);
2098 if (anchor) {
2099 lyd_insert_before_node(anchor, node);
Michal Vasko26123192020-11-09 21:02:34 +01002100 if (!parent && (*first_sibling_p == anchor)) {
2101 /* move first sibling */
2102 *first_sibling_p = node;
2103 }
Michal Vaskob104f112020-07-17 09:54:54 +02002104 } else if (first_sibling) {
2105 lyd_insert_after_node(first_sibling->prev, node);
2106 } else if (parent) {
2107 lyd_insert_only_child(parent, node);
Michal Vasko90932a92020-02-12 14:33:03 +01002108 } else {
Michal Vaskob104f112020-07-17 09:54:54 +02002109 *first_sibling_p = node;
2110 }
2111
2112 /* insert into parent HT */
2113 lyd_insert_hash(node);
2114
2115 /* finish hashes for our parent, if needed and possible */
Michal Vasko9e8de2d2020-09-01 08:17:10 +02002116 if (node->schema && (node->schema->flags & LYS_KEY) && parent && lyd_insert_has_keys(parent)) {
Michal Vaskob104f112020-07-17 09:54:54 +02002117 lyd_hash(parent);
2118
2119 /* now we can insert even the list into its parent HT */
2120 lyd_insert_hash(parent);
Michal Vasko90932a92020-02-12 14:33:03 +01002121 }
Michal Vasko90932a92020-02-12 14:33:03 +01002122}
2123
Michal Vasko717a4c32020-12-07 09:40:10 +01002124/**
2125 * @brief Check schema place of a node to be inserted.
2126 *
2127 * @param[in] parent Schema node of the parent data node.
2128 * @param[in] sibling Schema node of a sibling data node.
2129 * @param[in] schema Schema node if the data node to be inserted.
2130 * @return LY_SUCCESS on success.
2131 * @return LY_EINVAL if the place is invalid.
2132 */
Michal Vaskof03ed032020-03-04 13:31:44 +01002133static LY_ERR
Michal Vasko717a4c32020-12-07 09:40:10 +01002134lyd_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 +01002135{
2136 const struct lysc_node *par2;
2137
Michal Vasko62ed12d2020-05-21 10:08:25 +02002138 assert(!parent || !(parent->nodetype & (LYS_CASE | LYS_CHOICE)));
Michal Vasko717a4c32020-12-07 09:40:10 +01002139 assert(!sibling || !(sibling->nodetype & (LYS_CASE | LYS_CHOICE)));
2140 assert(!schema || !(schema->nodetype & (LYS_CASE | LYS_CHOICE)));
Michal Vaskof03ed032020-03-04 13:31:44 +01002141
Michal Vasko717a4c32020-12-07 09:40:10 +01002142 if (!schema || (!parent && !sibling)) {
Michal Vasko71e795e2020-12-04 16:27:37 +01002143 /* opaque nodes can be inserted wherever */
2144 return LY_SUCCESS;
2145 }
2146
Michal Vasko717a4c32020-12-07 09:40:10 +01002147 if (!parent) {
2148 parent = lysc_data_parent(sibling);
2149 }
2150
Michal Vaskof03ed032020-03-04 13:31:44 +01002151 /* find schema parent */
Michal Vasko62ed12d2020-05-21 10:08:25 +02002152 par2 = lysc_data_parent(schema);
Michal Vaskof03ed032020-03-04 13:31:44 +01002153
2154 if (parent) {
2155 /* inner node */
2156 if (par2 != parent) {
Michal Vaskob104f112020-07-17 09:54:54 +02002157 LOGERR(schema->module->ctx, LY_EINVAL, "Cannot insert, parent of \"%s\" is not \"%s\".", schema->name,
Michal Vasko69730152020-10-09 16:30:07 +02002158 parent->name);
Michal Vaskof03ed032020-03-04 13:31:44 +01002159 return LY_EINVAL;
2160 }
2161 } else {
2162 /* top-level node */
2163 if (par2) {
Radek Krejcif6d14cb2020-07-02 16:11:45 +02002164 LOGERR(schema->module->ctx, LY_EINVAL, "Cannot insert, node \"%s\" is not top-level.", schema->name);
Michal Vaskof03ed032020-03-04 13:31:44 +01002165 return LY_EINVAL;
2166 }
2167 }
2168
2169 return LY_SUCCESS;
2170}
2171
2172API LY_ERR
Michal Vaskob104f112020-07-17 09:54:54 +02002173lyd_insert_child(struct lyd_node *parent, struct lyd_node *node)
Michal Vaskof03ed032020-03-04 13:31:44 +01002174{
2175 struct lyd_node *iter;
2176
Michal Vasko654bc852020-06-23 13:28:06 +02002177 LY_CHECK_ARG_RET(NULL, parent, node, parent->schema->nodetype & LYD_NODE_INNER, LY_EINVAL);
Michal Vaskof03ed032020-03-04 13:31:44 +01002178
Michal Vasko717a4c32020-12-07 09:40:10 +01002179 LY_CHECK_RET(lyd_insert_check_schema(parent->schema, NULL, node->schema));
Michal Vaskof03ed032020-03-04 13:31:44 +01002180
2181 if (node->schema->flags & LYS_KEY) {
2182 LOGERR(parent->schema->module->ctx, LY_EINVAL, "Cannot insert key \"%s\".", node->schema->name);
2183 return LY_EINVAL;
2184 }
2185
2186 if (node->parent || node->prev->next) {
2187 lyd_unlink_tree(node);
2188 }
2189
2190 while (node) {
2191 iter = node->next;
2192 lyd_unlink_tree(node);
2193 lyd_insert_node(parent, NULL, node);
2194 node = iter;
2195 }
2196 return LY_SUCCESS;
2197}
2198
2199API LY_ERR
Michal Vaskob104f112020-07-17 09:54:54 +02002200lyd_insert_sibling(struct lyd_node *sibling, struct lyd_node *node, struct lyd_node **first)
Michal Vaskob1b5c262020-03-05 14:29:47 +01002201{
2202 struct lyd_node *iter;
2203
Michal Vaskob104f112020-07-17 09:54:54 +02002204 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Michal Vaskob1b5c262020-03-05 14:29:47 +01002205
Michal Vaskob104f112020-07-17 09:54:54 +02002206 if (sibling) {
Michal Vasko717a4c32020-12-07 09:40:10 +01002207 LY_CHECK_RET(lyd_insert_check_schema(NULL, sibling->schema, node->schema));
Michal Vaskob1b5c262020-03-05 14:29:47 +01002208 }
2209
Michal Vasko553d0b52020-12-04 16:27:52 +01002210 if (sibling == node) {
2211 /* we need to keep the connection to siblings so we can insert into them */
2212 sibling = sibling->prev;
2213 }
2214
Michal Vaskob1b5c262020-03-05 14:29:47 +01002215 if (node->parent || node->prev->next) {
2216 lyd_unlink_tree(node);
2217 }
2218
2219 while (node) {
Michal Vasko71e795e2020-12-04 16:27:37 +01002220 if (lysc_is_key(node->schema)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002221 LOGERR(LYD_CTX(node), LY_EINVAL, "Cannot insert key \"%s\".", node->schema->name);
Michal Vaskob104f112020-07-17 09:54:54 +02002222 return LY_EINVAL;
2223 }
2224
Michal Vaskob1b5c262020-03-05 14:29:47 +01002225 iter = node->next;
2226 lyd_unlink_tree(node);
2227 lyd_insert_node(NULL, &sibling, node);
2228 node = iter;
2229 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01002230
Michal Vaskob104f112020-07-17 09:54:54 +02002231 if (first) {
2232 /* find the first sibling */
2233 *first = sibling;
2234 while ((*first)->prev->next) {
2235 *first = (*first)->prev;
Michal Vasko0249f7c2020-03-05 16:36:40 +01002236 }
2237 }
2238
2239 return LY_SUCCESS;
2240}
2241
Michal Vaskob1b5c262020-03-05 14:29:47 +01002242API LY_ERR
Michal Vaskof03ed032020-03-04 13:31:44 +01002243lyd_insert_before(struct lyd_node *sibling, struct lyd_node *node)
2244{
Michal Vaskof03ed032020-03-04 13:31:44 +01002245 LY_CHECK_ARG_RET(NULL, sibling, node, LY_EINVAL);
2246
Michal Vasko717a4c32020-12-07 09:40:10 +01002247 LY_CHECK_RET(lyd_insert_check_schema(NULL, sibling->schema, node->schema));
Michal Vaskof03ed032020-03-04 13:31:44 +01002248
Michal Vaskob104f112020-07-17 09:54:54 +02002249 if (!(node->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !(node->schema->flags & LYS_ORDBY_USER)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002250 LOGERR(LYD_CTX(sibling), LY_EINVAL, "Can be used only for user-ordered nodes.");
Michal Vaskof03ed032020-03-04 13:31:44 +01002251 return LY_EINVAL;
2252 }
2253
Michal Vasko4bc2ce32020-12-08 10:06:16 +01002254 lyd_unlink_tree(node);
2255 lyd_insert_before_node(sibling, node);
2256 lyd_insert_hash(node);
Michal Vaskof03ed032020-03-04 13:31:44 +01002257
Michal Vaskof03ed032020-03-04 13:31:44 +01002258 return LY_SUCCESS;
2259}
2260
2261API LY_ERR
2262lyd_insert_after(struct lyd_node *sibling, struct lyd_node *node)
2263{
Michal Vaskof03ed032020-03-04 13:31:44 +01002264 LY_CHECK_ARG_RET(NULL, sibling, node, LY_EINVAL);
2265
Michal Vasko717a4c32020-12-07 09:40:10 +01002266 LY_CHECK_RET(lyd_insert_check_schema(NULL, sibling->schema, node->schema));
Michal Vaskof03ed032020-03-04 13:31:44 +01002267
Michal Vaskob104f112020-07-17 09:54:54 +02002268 if (!(node->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !(node->schema->flags & LYS_ORDBY_USER)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002269 LOGERR(LYD_CTX(sibling), LY_EINVAL, "Can be used only for user-ordered nodes.");
Michal Vaskof03ed032020-03-04 13:31:44 +01002270 return LY_EINVAL;
2271 }
2272
Michal Vasko4bc2ce32020-12-08 10:06:16 +01002273 lyd_unlink_tree(node);
2274 lyd_insert_after_node(sibling, node);
2275 lyd_insert_hash(node);
Michal Vaskof03ed032020-03-04 13:31:44 +01002276
Michal Vaskof03ed032020-03-04 13:31:44 +01002277 return LY_SUCCESS;
2278}
2279
2280API void
2281lyd_unlink_tree(struct lyd_node *node)
2282{
2283 struct lyd_node *iter;
2284
2285 if (!node) {
2286 return;
2287 }
2288
Michal Vaskob104f112020-07-17 09:54:54 +02002289 /* update hashes while still linked into the tree */
2290 lyd_unlink_hash(node);
2291
Michal Vaskof03ed032020-03-04 13:31:44 +01002292 /* unlink from siblings */
2293 if (node->prev->next) {
2294 node->prev->next = node->next;
2295 }
2296 if (node->next) {
2297 node->next->prev = node->prev;
2298 } else {
2299 /* unlinking the last node */
2300 if (node->parent) {
2301 iter = node->parent->child;
2302 } else {
2303 iter = node->prev;
2304 while (iter->prev != node) {
2305 iter = iter->prev;
2306 }
2307 }
2308 /* update the "last" pointer from the first node */
2309 iter->prev = node->prev;
2310 }
2311
2312 /* unlink from parent */
2313 if (node->parent) {
2314 if (node->parent->child == node) {
2315 /* the node is the first child */
2316 node->parent->child = node->next;
2317 }
2318
Michal Vaskoab49dbe2020-07-17 12:32:47 +02002319 /* check for NP container whether its last non-default node is not being unlinked */
Michal Vasko69730152020-10-09 16:30:07 +02002320 if (node->parent->schema && (node->parent->schema->nodetype == LYS_CONTAINER) &&
2321 !(node->parent->flags & LYD_DEFAULT) && !(node->parent->schema->flags & LYS_PRESENCE)) {
Michal Vaskoab49dbe2020-07-17 12:32:47 +02002322 LY_LIST_FOR(node->parent->child, iter) {
2323 if ((iter != node) && !(iter->flags & LYD_DEFAULT)) {
2324 break;
2325 }
2326 }
2327 if (!iter) {
2328 node->parent->flags |= LYD_DEFAULT;
2329 }
2330 }
2331
Michal Vaskof03ed032020-03-04 13:31:44 +01002332 /* check for keyless list and update its hash */
Michal Vasko9e685082021-01-29 14:49:09 +01002333 for (iter = lyd_parent(node); iter; iter = lyd_parent(iter)) {
Michal Vasko413c7f22020-05-05 12:34:06 +02002334 if (iter->schema && (iter->schema->flags & LYS_KEYLESS)) {
Michal Vaskof03ed032020-03-04 13:31:44 +01002335 lyd_hash(iter);
2336 }
2337 }
2338
2339 node->parent = NULL;
2340 }
2341
2342 node->next = NULL;
2343 node->prev = node;
2344}
2345
Michal Vaskoa5da3292020-08-12 13:10:50 +02002346void
Michal Vasko871a0252020-11-11 18:35:24 +01002347lyd_insert_meta(struct lyd_node *parent, struct lyd_meta *meta, ly_bool clear_dflt)
Radek Krejci1798aae2020-07-14 13:26:06 +02002348{
2349 struct lyd_meta *last, *iter;
2350
2351 assert(parent);
Michal Vaskoa5da3292020-08-12 13:10:50 +02002352
2353 if (!meta) {
2354 return;
2355 }
Radek Krejci1798aae2020-07-14 13:26:06 +02002356
2357 for (iter = meta; iter; iter = iter->next) {
2358 iter->parent = parent;
2359 }
2360
2361 /* insert as the last attribute */
2362 if (parent->meta) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002363 for (last = parent->meta; last->next; last = last->next) {}
Radek Krejci1798aae2020-07-14 13:26:06 +02002364 last->next = meta;
2365 } else {
2366 parent->meta = meta;
2367 }
2368
2369 /* remove default flags from NP containers */
Michal Vasko871a0252020-11-11 18:35:24 +01002370 while (clear_dflt && parent && (parent->schema->nodetype == LYS_CONTAINER) && (parent->flags & LYD_DEFAULT)) {
Radek Krejci1798aae2020-07-14 13:26:06 +02002371 parent->flags &= ~LYD_DEFAULT;
Michal Vasko9e685082021-01-29 14:49:09 +01002372 parent = lyd_parent(parent);
Radek Krejci1798aae2020-07-14 13:26:06 +02002373 }
Radek Krejci1798aae2020-07-14 13:26:06 +02002374}
2375
2376LY_ERR
Michal Vasko9f96a052020-03-10 09:41:45 +01002377lyd_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 +02002378 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 +01002379 void *prefix_data, uint32_t hints, ly_bool clear_dflt, ly_bool *incomplete)
Michal Vasko90932a92020-02-12 14:33:03 +01002380{
Radek Krejci2efc45b2020-12-22 16:25:44 +01002381 LY_ERR ret = LY_SUCCESS;
Michal Vasko90932a92020-02-12 14:33:03 +01002382 struct lysc_ext_instance *ant = NULL;
Michal Vasko9f96a052020-03-10 09:41:45 +01002383 struct lyd_meta *mt, *last;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002384 LY_ARRAY_COUNT_TYPE u;
Michal Vasko90932a92020-02-12 14:33:03 +01002385
Michal Vasko9f96a052020-03-10 09:41:45 +01002386 assert((parent || meta) && mod);
Michal Vasko6f4cbb62020-02-28 11:15:47 +01002387
Radek Krejciddace2c2021-01-08 11:30:56 +01002388 LOG_LOCSET(parent ? parent->schema : NULL, parent, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01002389
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002390 LY_ARRAY_FOR(mod->compiled->exts, u) {
Michal Vasko69730152020-10-09 16:30:07 +02002391 if ((mod->compiled->exts[u].def->plugin == lyext_plugins_internal[LYEXT_PLUGIN_INTERNAL_ANNOTATION].plugin) &&
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002392 !ly_strncmp(mod->compiled->exts[u].argument, name, name_len)) {
Michal Vasko90932a92020-02-12 14:33:03 +01002393 /* we have the annotation definition */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002394 ant = &mod->compiled->exts[u];
Michal Vasko90932a92020-02-12 14:33:03 +01002395 break;
2396 }
2397 }
2398 if (!ant) {
2399 /* attribute is not defined as a metadata annotation (RFC 7952) */
Radek Krejci2efc45b2020-12-22 16:25:44 +01002400 LOGVAL(mod->ctx, LYVE_REFERENCE, "Annotation definition for attribute \"%s:%.*s\" not found.",
Michal Vasko90932a92020-02-12 14:33:03 +01002401 mod->name, name_len, name);
Radek Krejci2efc45b2020-12-22 16:25:44 +01002402 ret = LY_EINVAL;
2403 goto cleanup;
Michal Vasko90932a92020-02-12 14:33:03 +01002404 }
2405
Michal Vasko9f96a052020-03-10 09:41:45 +01002406 mt = calloc(1, sizeof *mt);
Radek Krejci2efc45b2020-12-22 16:25:44 +01002407 LY_CHECK_ERR_GOTO(!mt, LOGMEM(mod->ctx); ret = LY_EMEM, cleanup);
Michal Vasko9f96a052020-03-10 09:41:45 +01002408 mt->parent = parent;
2409 mt->annotation = ant;
Radek Krejci2efc45b2020-12-22 16:25:44 +01002410 ret = lyd_value_store(mod->ctx, &mt->value, ((struct lyext_metadata *)ant->data)->type, value, value_len, dynamic,
2411 format, prefix_data, hints, parent ? parent->schema : NULL, incomplete);
2412 LY_CHECK_ERR_GOTO(ret, free(mt), cleanup);
2413 ret = lydict_insert(mod->ctx, name, name_len, &mt->name);
2414 LY_CHECK_ERR_GOTO(ret, free(mt), cleanup);
Michal Vasko90932a92020-02-12 14:33:03 +01002415
Michal Vasko6f4cbb62020-02-28 11:15:47 +01002416 /* insert as the last attribute */
2417 if (parent) {
Michal Vasko871a0252020-11-11 18:35:24 +01002418 lyd_insert_meta(parent, mt, clear_dflt);
Michal Vasko9f96a052020-03-10 09:41:45 +01002419 } else if (*meta) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002420 for (last = *meta; last->next; last = last->next) {}
Michal Vasko9f96a052020-03-10 09:41:45 +01002421 last->next = mt;
Michal Vasko90932a92020-02-12 14:33:03 +01002422 }
2423
Michal Vasko9f96a052020-03-10 09:41:45 +01002424 if (meta) {
2425 *meta = mt;
Michal Vasko90932a92020-02-12 14:33:03 +01002426 }
Radek Krejci2efc45b2020-12-22 16:25:44 +01002427
2428cleanup:
Radek Krejciddace2c2021-01-08 11:30:56 +01002429 LOG_LOCBACK((parent && parent->schema) ? 1 : 0, parent ? 1 : 0, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +01002430 return ret;
Michal Vasko90932a92020-02-12 14:33:03 +01002431}
2432
Michal Vaskoa5da3292020-08-12 13:10:50 +02002433void
2434lyd_insert_attr(struct lyd_node *parent, struct lyd_attr *attr)
2435{
2436 struct lyd_attr *last, *iter;
2437 struct lyd_node_opaq *opaq;
2438
2439 assert(parent && !parent->schema);
2440
2441 if (!attr) {
2442 return;
2443 }
2444
2445 opaq = (struct lyd_node_opaq *)parent;
2446 for (iter = attr; iter; iter = iter->next) {
2447 iter->parent = opaq;
2448 }
2449
2450 /* insert as the last attribute */
2451 if (opaq->attr) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002452 for (last = opaq->attr; last->next; last = last->next) {}
Michal Vaskoa5da3292020-08-12 13:10:50 +02002453 last->next = attr;
2454 } else {
2455 opaq->attr = attr;
2456 }
2457}
2458
Michal Vasko52927e22020-03-16 17:26:14 +01002459LY_ERR
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002460lyd_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 +01002461 const char *prefix, size_t prefix_len, const char *module_key, size_t module_key_len, const char *value,
2462 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 +01002463{
Radek Krejci011e4aa2020-09-04 15:22:31 +02002464 LY_ERR ret = LY_SUCCESS;
Radek Krejci1798aae2020-07-14 13:26:06 +02002465 struct lyd_attr *at, *last;
Michal Vasko52927e22020-03-16 17:26:14 +01002466
2467 assert(ctx && (parent || attr) && (!parent || !parent->schema));
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002468 assert(name && name_len && format);
Michal Vasko52927e22020-03-16 17:26:14 +01002469
2470 if (!value_len) {
2471 value = "";
2472 }
2473
2474 at = calloc(1, sizeof *at);
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01002475 LY_CHECK_ERR_RET(!at, LOGMEM(ctx); ly_free_prefix_data(format, val_prefix_data), LY_EMEM);
Radek Krejcid46e46a2020-09-15 14:22:42 +02002476
Michal Vaskoad92b672020-11-12 13:11:31 +01002477 LY_CHECK_GOTO(ret = lydict_insert(ctx, name, name_len, &at->name.name), finish);
Michal Vasko501af032020-11-11 20:27:44 +01002478 if (prefix_len) {
Michal Vaskoad92b672020-11-12 13:11:31 +01002479 LY_CHECK_GOTO(ret = lydict_insert(ctx, prefix, prefix_len, &at->name.prefix), finish);
Michal Vasko501af032020-11-11 20:27:44 +01002480 }
2481 if (module_key_len) {
Michal Vaskoad92b672020-11-12 13:11:31 +01002482 LY_CHECK_GOTO(ret = lydict_insert(ctx, module_key, module_key_len, &at->name.module_ns), finish);
Michal Vasko501af032020-11-11 20:27:44 +01002483 }
2484
Michal Vasko52927e22020-03-16 17:26:14 +01002485 if (dynamic && *dynamic) {
Radek Krejci011e4aa2020-09-04 15:22:31 +02002486 ret = lydict_insert_zc(ctx, (char *)value, &at->value);
2487 LY_CHECK_GOTO(ret, finish);
Michal Vasko52927e22020-03-16 17:26:14 +01002488 *dynamic = 0;
2489 } else {
Radek Krejci011e4aa2020-09-04 15:22:31 +02002490 LY_CHECK_GOTO(ret = lydict_insert(ctx, value, value_len, &at->value), finish);
Michal Vasko52927e22020-03-16 17:26:14 +01002491 }
Michal Vasko501af032020-11-11 20:27:44 +01002492 at->format = format;
2493 at->val_prefix_data = val_prefix_data;
2494 at->hints = hints;
Michal Vasko52927e22020-03-16 17:26:14 +01002495
2496 /* insert as the last attribute */
2497 if (parent) {
Michal Vaskoa5da3292020-08-12 13:10:50 +02002498 lyd_insert_attr(parent, at);
Michal Vasko52927e22020-03-16 17:26:14 +01002499 } else if (*attr) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002500 for (last = *attr; last->next; last = last->next) {}
Michal Vasko52927e22020-03-16 17:26:14 +01002501 last->next = at;
2502 }
2503
Radek Krejci011e4aa2020-09-04 15:22:31 +02002504finish:
2505 if (ret) {
2506 lyd_free_attr_single(ctx, at);
2507 } else if (attr) {
Michal Vasko52927e22020-03-16 17:26:14 +01002508 *attr = at;
2509 }
2510 return LY_SUCCESS;
2511}
2512
Radek Krejci084289f2019-07-09 17:35:30 +02002513API const struct lyd_node_term *
Michal Vasko004d3152020-06-11 19:59:22 +02002514lyd_target(const struct ly_path *path, const struct lyd_node *tree)
Radek Krejci084289f2019-07-09 17:35:30 +02002515{
Michal Vasko004d3152020-06-11 19:59:22 +02002516 struct lyd_node *target;
Radek Krejci084289f2019-07-09 17:35:30 +02002517
Michal Vasko004d3152020-06-11 19:59:22 +02002518 if (ly_path_eval(path, tree, &target)) {
2519 return NULL;
Radek Krejci084289f2019-07-09 17:35:30 +02002520 }
2521
Michal Vasko004d3152020-06-11 19:59:22 +02002522 return (struct lyd_node_term *)target;
Radek Krejci084289f2019-07-09 17:35:30 +02002523}
2524
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002525API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002526lyd_compare_single(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options)
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002527{
2528 const struct lyd_node *iter1, *iter2;
2529 struct lyd_node_term *term1, *term2;
2530 struct lyd_node_any *any1, *any2;
Michal Vasko52927e22020-03-16 17:26:14 +01002531 struct lyd_node_opaq *opaq1, *opaq2;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002532 size_t len1, len2;
Radek Krejci084289f2019-07-09 17:35:30 +02002533
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002534 if (!node1 || !node2) {
2535 if (node1 == node2) {
2536 return LY_SUCCESS;
2537 } else {
2538 return LY_ENOT;
2539 }
2540 }
2541
Michal Vaskob7be7a82020-08-20 09:09:04 +02002542 if ((LYD_CTX(node1) != LYD_CTX(node2)) || (node1->schema != node2->schema)) {
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002543 return LY_ENOT;
2544 }
2545
2546 if (node1->hash != node2->hash) {
2547 return LY_ENOT;
2548 }
Michal Vasko52927e22020-03-16 17:26:14 +01002549 /* 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 +02002550
Michal Vasko52927e22020-03-16 17:26:14 +01002551 if (!node1->schema) {
2552 opaq1 = (struct lyd_node_opaq *)node1;
2553 opaq2 = (struct lyd_node_opaq *)node2;
Michal Vaskoad92b672020-11-12 13:11:31 +01002554 if ((opaq1->name.name != opaq2->name.name) || (opaq1->format != opaq2->format) ||
2555 (opaq1->name.module_ns != opaq2->name.module_ns)) {
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002556 return LY_ENOT;
2557 }
Michal Vasko52927e22020-03-16 17:26:14 +01002558 switch (opaq1->format) {
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01002559 case LY_PREF_XML:
2560 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 +01002561 return LY_ENOT;
2562 }
2563 break;
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01002564 case LY_PREF_JSON:
Radek Krejci1798aae2020-07-14 13:26:06 +02002565 /* prefixes in JSON are unique, so it is not necessary to canonize the values */
2566 if (strcmp(opaq1->value, opaq2->value)) {
2567 return LY_ENOT;
2568 }
2569 break;
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01002570 default:
Michal Vasko52927e22020-03-16 17:26:14 +01002571 /* not allowed */
Michal Vaskob7be7a82020-08-20 09:09:04 +02002572 LOGINT(LYD_CTX(node1));
Michal Vasko52927e22020-03-16 17:26:14 +01002573 return LY_EINT;
2574 }
2575 if (options & LYD_COMPARE_FULL_RECURSION) {
2576 iter1 = opaq1->child;
2577 iter2 = opaq2->child;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002578 goto all_children_compare;
Michal Vasko52927e22020-03-16 17:26:14 +01002579 }
2580 return LY_SUCCESS;
2581 } else {
2582 switch (node1->schema->nodetype) {
2583 case LYS_LEAF:
2584 case LYS_LEAFLIST:
2585 if (options & LYD_COMPARE_DEFAULTS) {
2586 if ((node1->flags & LYD_DEFAULT) != (node2->flags & LYD_DEFAULT)) {
2587 return LY_ENOT;
2588 }
2589 }
2590
Michal Vasko1a2bf2e2020-06-16 13:07:48 +02002591 term1 = (struct lyd_node_term *)node1;
2592 term2 = (struct lyd_node_term *)node2;
Michal Vasko1a2bf2e2020-06-16 13:07:48 +02002593 return term1->value.realtype->plugin->compare(&term1->value, &term2->value);
Michal Vasko52927e22020-03-16 17:26:14 +01002594 case LYS_CONTAINER:
2595 if (options & LYD_COMPARE_DEFAULTS) {
2596 if ((node1->flags & LYD_DEFAULT) != (node2->flags & LYD_DEFAULT)) {
2597 return LY_ENOT;
2598 }
2599 }
2600 if (options & LYD_COMPARE_FULL_RECURSION) {
Michal Vasko9e685082021-01-29 14:49:09 +01002601 iter1 = lyd_child(node1);
2602 iter2 = lyd_child(node2);
Michal Vasko52927e22020-03-16 17:26:14 +01002603 goto all_children_compare;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002604 }
2605 return LY_SUCCESS;
Michal Vasko1bf09392020-03-27 12:38:10 +01002606 case LYS_RPC:
Michal Vasko52927e22020-03-16 17:26:14 +01002607 case LYS_ACTION:
2608 if (options & LYD_COMPARE_FULL_RECURSION) {
2609 /* TODO action/RPC
2610 goto all_children_compare;
2611 */
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002612 }
2613 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01002614 case LYS_NOTIF:
2615 if (options & LYD_COMPARE_FULL_RECURSION) {
2616 /* TODO Notification
2617 goto all_children_compare;
2618 */
2619 }
2620 return LY_SUCCESS;
2621 case LYS_LIST:
Michal Vasko9e685082021-01-29 14:49:09 +01002622 iter1 = lyd_child(node1);
2623 iter2 = lyd_child(node2);
Michal Vasko52927e22020-03-16 17:26:14 +01002624
2625 if (!(node1->schema->flags & LYS_KEYLESS) && !(options & LYD_COMPARE_FULL_RECURSION)) {
2626 /* lists with keys, their equivalence is based on their keys */
Michal Vasko544e58a2021-01-28 14:33:41 +01002627 for (const struct lysc_node *key = lysc_node_child(node1->schema);
Michal Vaskoc57d9a92020-06-23 13:28:27 +02002628 key && (key->flags & LYS_KEY);
Michal Vasko52927e22020-03-16 17:26:14 +01002629 key = key->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02002630 if (lyd_compare_single(iter1, iter2, options)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002631 return LY_ENOT;
2632 }
2633 iter1 = iter1->next;
2634 iter2 = iter2->next;
2635 }
2636 } else {
2637 /* lists without keys, their equivalence is based on equivalence of all the children (both direct and indirect) */
2638
Radek Krejci0f969882020-08-21 16:56:47 +02002639all_children_compare:
Michal Vasko52927e22020-03-16 17:26:14 +01002640 if (!iter1 && !iter2) {
2641 /* no children, nothing to compare */
2642 return LY_SUCCESS;
2643 }
2644
Michal Vaskod989ba02020-08-24 10:59:24 +02002645 for ( ; iter1 && iter2; iter1 = iter1->next, iter2 = iter2->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02002646 if (lyd_compare_single(iter1, iter2, options | LYD_COMPARE_FULL_RECURSION)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002647 return LY_ENOT;
2648 }
2649 }
2650 if (iter1 || iter2) {
2651 return LY_ENOT;
2652 }
2653 }
2654 return LY_SUCCESS;
2655 case LYS_ANYXML:
2656 case LYS_ANYDATA:
Michal Vasko22df3f02020-08-24 13:29:22 +02002657 any1 = (struct lyd_node_any *)node1;
2658 any2 = (struct lyd_node_any *)node2;
Michal Vasko52927e22020-03-16 17:26:14 +01002659
2660 if (any1->value_type != any2->value_type) {
2661 return LY_ENOT;
2662 }
2663 switch (any1->value_type) {
2664 case LYD_ANYDATA_DATATREE:
2665 iter1 = any1->value.tree;
2666 iter2 = any2->value.tree;
2667 goto all_children_compare;
2668 case LYD_ANYDATA_STRING:
2669 case LYD_ANYDATA_XML:
2670 case LYD_ANYDATA_JSON:
2671 len1 = strlen(any1->value.str);
2672 len2 = strlen(any2->value.str);
Michal Vasko69730152020-10-09 16:30:07 +02002673 if ((len1 != len2) || strcmp(any1->value.str, any2->value.str)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002674 return LY_ENOT;
2675 }
2676 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01002677 case LYD_ANYDATA_LYB:
Michal Vasko60ea6352020-06-29 13:39:39 +02002678 len1 = lyd_lyb_data_length(any1->value.mem);
2679 len2 = lyd_lyb_data_length(any2->value.mem);
Michal Vasko69730152020-10-09 16:30:07 +02002680 if ((len1 != len2) || memcmp(any1->value.mem, any2->value.mem, len1)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002681 return LY_ENOT;
2682 }
2683 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01002684 }
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002685 }
2686 }
2687
Michal Vaskob7be7a82020-08-20 09:09:04 +02002688 LOGINT(LYD_CTX(node1));
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002689 return LY_EINT;
2690}
Radek Krejci22ebdba2019-07-25 13:59:43 +02002691
Michal Vasko21725742020-06-29 11:49:25 +02002692API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002693lyd_compare_siblings(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options)
Michal Vasko8f359bf2020-07-28 10:41:15 +02002694{
Michal Vaskod989ba02020-08-24 10:59:24 +02002695 for ( ; node1 && node2; node1 = node1->next, node2 = node2->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02002696 LY_CHECK_RET(lyd_compare_single(node1, node2, options));
2697 }
2698
Michal Vasko11a81432020-07-28 16:31:29 +02002699 if (node1 == node2) {
2700 return LY_SUCCESS;
Michal Vasko8f359bf2020-07-28 10:41:15 +02002701 }
Michal Vasko11a81432020-07-28 16:31:29 +02002702 return LY_ENOT;
Michal Vasko8f359bf2020-07-28 10:41:15 +02002703}
2704
2705API LY_ERR
Michal Vasko21725742020-06-29 11:49:25 +02002706lyd_compare_meta(const struct lyd_meta *meta1, const struct lyd_meta *meta2)
2707{
2708 if (!meta1 || !meta2) {
2709 if (meta1 == meta2) {
2710 return LY_SUCCESS;
2711 } else {
2712 return LY_ENOT;
2713 }
2714 }
2715
Michal Vaskoa8083062020-11-06 17:22:10 +01002716 if ((meta1->annotation->module->ctx != meta2->annotation->module->ctx) || (meta1->annotation != meta2->annotation)) {
Michal Vasko21725742020-06-29 11:49:25 +02002717 return LY_ENOT;
2718 }
2719
Michal Vasko21725742020-06-29 11:49:25 +02002720 return meta1->value.realtype->plugin->compare(&meta1->value, &meta2->value);
2721}
2722
Radek Krejci22ebdba2019-07-25 13:59:43 +02002723/**
Michal Vasko52927e22020-03-16 17:26:14 +01002724 * @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 +02002725 *
2726 * 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 +02002727 *
2728 * @param[in] node Original node to duplicate
2729 * @param[in] parent Parent to insert into, NULL for top-level sibling.
2730 * @param[in,out] first First sibling, NULL if no top-level sibling exist yet. Can be also NULL if @p parent is set.
2731 * @param[in] options Bitmask of options flags, see @ref dupoptions.
2732 * @param[out] dup_p Pointer where the created duplicated node is placed (besides connecting it int @p parent / @p first sibling).
2733 * @return LY_ERR value
Radek Krejci22ebdba2019-07-25 13:59:43 +02002734 */
Michal Vasko52927e22020-03-16 17:26:14 +01002735static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002736lyd_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 +02002737 struct lyd_node **dup_p)
Radek Krejci22ebdba2019-07-25 13:59:43 +02002738{
Michal Vasko52927e22020-03-16 17:26:14 +01002739 LY_ERR ret;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002740 struct lyd_node *dup = NULL;
Michal Vasko61551fa2020-07-09 15:45:45 +02002741 struct lyd_meta *meta;
2742 struct lyd_node_any *any;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002743
Michal Vasko52927e22020-03-16 17:26:14 +01002744 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002745
Michal Vasko52927e22020-03-16 17:26:14 +01002746 if (!node->schema) {
2747 dup = calloc(1, sizeof(struct lyd_node_opaq));
2748 } else {
2749 switch (node->schema->nodetype) {
Michal Vasko1bf09392020-03-27 12:38:10 +01002750 case LYS_RPC:
Michal Vasko52927e22020-03-16 17:26:14 +01002751 case LYS_ACTION:
2752 case LYS_NOTIF:
2753 case LYS_CONTAINER:
2754 case LYS_LIST:
2755 dup = calloc(1, sizeof(struct lyd_node_inner));
2756 break;
2757 case LYS_LEAF:
2758 case LYS_LEAFLIST:
2759 dup = calloc(1, sizeof(struct lyd_node_term));
2760 break;
2761 case LYS_ANYDATA:
2762 case LYS_ANYXML:
2763 dup = calloc(1, sizeof(struct lyd_node_any));
2764 break;
2765 default:
Michal Vaskob7be7a82020-08-20 09:09:04 +02002766 LOGINT(LYD_CTX(node));
Michal Vasko52927e22020-03-16 17:26:14 +01002767 ret = LY_EINT;
2768 goto error;
2769 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02002770 }
Michal Vaskob7be7a82020-08-20 09:09:04 +02002771 LY_CHECK_ERR_GOTO(!dup, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002772
Michal Vaskof6df0a02020-06-16 13:08:34 +02002773 if (options & LYD_DUP_WITH_FLAGS) {
2774 dup->flags = node->flags;
2775 } else {
2776 dup->flags = (node->flags & LYD_DEFAULT) | LYD_NEW;
2777 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02002778 dup->schema = node->schema;
Michal Vasko52927e22020-03-16 17:26:14 +01002779 dup->prev = dup;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002780
Michal Vasko25a32822020-07-09 15:48:22 +02002781 /* duplicate metadata */
2782 if (!(options & LYD_DUP_NO_META)) {
2783 LY_LIST_FOR(node->meta, meta) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002784 LY_CHECK_GOTO(ret = lyd_dup_meta_single(meta, dup, NULL), error);
Michal Vasko25a32822020-07-09 15:48:22 +02002785 }
2786 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02002787
2788 /* nodetype-specific work */
Michal Vasko52927e22020-03-16 17:26:14 +01002789 if (!dup->schema) {
2790 struct lyd_node_opaq *opaq = (struct lyd_node_opaq *)dup;
2791 struct lyd_node_opaq *orig = (struct lyd_node_opaq *)node;
2792 struct lyd_node *child;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002793
2794 if (options & LYD_DUP_RECURSIVE) {
2795 /* duplicate all the children */
2796 LY_LIST_FOR(orig->child, child) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002797 LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, NULL, options, NULL), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002798 }
2799 }
Michal Vaskoad92b672020-11-12 13:11:31 +01002800 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->name.name, 0, &opaq->name.name), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002801 opaq->format = orig->format;
Michal Vaskoad92b672020-11-12 13:11:31 +01002802 if (orig->name.prefix) {
2803 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->name.prefix, 0, &opaq->name.prefix), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002804 }
Michal Vaskoad92b672020-11-12 13:11:31 +01002805 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 +01002806 if (orig->val_prefix_data) {
2807 ret = ly_dup_prefix_data(LYD_CTX(node), opaq->format, orig->val_prefix_data, &opaq->val_prefix_data);
2808 LY_CHECK_GOTO(ret, error);
Michal Vasko52927e22020-03-16 17:26:14 +01002809 }
Radek Krejci011e4aa2020-09-04 15:22:31 +02002810 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->value, 0, &opaq->value), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002811 opaq->ctx = orig->ctx;
2812 } else if (dup->schema->nodetype & LYD_NODE_TERM) {
2813 struct lyd_node_term *term = (struct lyd_node_term *)dup;
2814 struct lyd_node_term *orig = (struct lyd_node_term *)node;
2815
2816 term->hash = orig->hash;
Michal Vaskob7be7a82020-08-20 09:09:04 +02002817 LY_CHECK_ERR_GOTO(orig->value.realtype->plugin->duplicate(LYD_CTX(node), &orig->value, &term->value),
Michal Vasko69730152020-10-09 16:30:07 +02002818 LOGERR(LYD_CTX(node), LY_EINT, "Value duplication failed."); ret = LY_EINT, error);
Michal Vasko52927e22020-03-16 17:26:14 +01002819 } else if (dup->schema->nodetype & LYD_NODE_INNER) {
2820 struct lyd_node_inner *orig = (struct lyd_node_inner *)node;
2821 struct lyd_node *child;
2822
2823 if (options & LYD_DUP_RECURSIVE) {
2824 /* duplicate all the children */
2825 LY_LIST_FOR(orig->child, child) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002826 LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, NULL, options, NULL), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002827 }
Michal Vasko69730152020-10-09 16:30:07 +02002828 } else if ((dup->schema->nodetype == LYS_LIST) && !(dup->schema->flags & LYS_KEYLESS)) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02002829 /* always duplicate keys of a list */
Radek Krejci22ebdba2019-07-25 13:59:43 +02002830 child = orig->child;
Michal Vasko544e58a2021-01-28 14:33:41 +01002831 for (const struct lysc_node *key = lysc_node_child(dup->schema);
Michal Vaskoc57d9a92020-06-23 13:28:27 +02002832 key && (key->flags & LYS_KEY);
Radek Krejci0fe9b512019-07-26 17:51:05 +02002833 key = key->next) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02002834 if (!child) {
2835 /* possibly not keys are present in filtered tree */
2836 break;
Radek Krejci0fe9b512019-07-26 17:51:05 +02002837 } else if (child->schema != key) {
2838 /* possibly not all keys are present in filtered tree,
2839 * but there can be also some non-key nodes */
2840 continue;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002841 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002842 LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, NULL, options, NULL), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002843 child = child->next;
2844 }
2845 }
2846 lyd_hash(dup);
2847 } else if (dup->schema->nodetype & LYD_NODE_ANY) {
Michal Vasko61551fa2020-07-09 15:45:45 +02002848 dup->hash = node->hash;
2849 any = (struct lyd_node_any *)node;
2850 LY_CHECK_GOTO(ret = lyd_any_copy_value(dup, &any->value, any->value_type), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002851 }
2852
Michal Vasko52927e22020-03-16 17:26:14 +01002853 /* insert */
2854 lyd_insert_node(parent, first, dup);
Michal Vasko52927e22020-03-16 17:26:14 +01002855
2856 if (dup_p) {
2857 *dup_p = dup;
2858 }
2859 return LY_SUCCESS;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002860
2861error:
Michal Vasko52927e22020-03-16 17:26:14 +01002862 lyd_free_tree(dup);
2863 return ret;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002864}
2865
Michal Vasko3a41dff2020-07-15 14:30:28 +02002866static LY_ERR
2867lyd_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 +02002868 struct lyd_node_inner **local_parent)
Radek Krejci22ebdba2019-07-25 13:59:43 +02002869{
Michal Vasko3a41dff2020-07-15 14:30:28 +02002870 const struct lyd_node_inner *orig_parent, *iter;
Radek Krejci857189e2020-09-01 13:26:36 +02002871 ly_bool repeat = 1;
Michal Vasko3a41dff2020-07-15 14:30:28 +02002872
2873 *dup_parent = NULL;
2874 *local_parent = NULL;
2875
2876 for (orig_parent = node->parent; repeat && orig_parent; orig_parent = orig_parent->parent) {
2877 if (parent && (parent->schema == orig_parent->schema)) {
2878 /* stop creating parents, connect what we have into the provided parent */
2879 iter = parent;
2880 repeat = 0;
2881 } else {
2882 iter = NULL;
2883 LY_CHECK_RET(lyd_dup_r((struct lyd_node *)orig_parent, NULL, (struct lyd_node **)&iter, 0,
Radek Krejci0f969882020-08-21 16:56:47 +02002884 (struct lyd_node **)&iter));
Michal Vasko3a41dff2020-07-15 14:30:28 +02002885 }
2886 if (!*local_parent) {
2887 *local_parent = (struct lyd_node_inner *)iter;
2888 }
2889 if (iter->child) {
2890 /* 1) list - add after keys
2891 * 2) provided parent with some children */
2892 iter->child->prev->next = *dup_parent;
2893 if (*dup_parent) {
2894 (*dup_parent)->prev = iter->child->prev;
2895 iter->child->prev = *dup_parent;
2896 }
2897 } else {
2898 ((struct lyd_node_inner *)iter)->child = *dup_parent;
2899 }
2900 if (*dup_parent) {
2901 (*dup_parent)->parent = (struct lyd_node_inner *)iter;
2902 }
2903 *dup_parent = (struct lyd_node *)iter;
2904 }
2905
2906 if (repeat && parent) {
2907 /* given parent and created parents chain actually do not interconnect */
Michal Vaskob7be7a82020-08-20 09:09:04 +02002908 LOGERR(LYD_CTX(node), LY_EINVAL,
Michal Vasko69730152020-10-09 16:30:07 +02002909 "Invalid argument parent (%s()) - does not interconnect with the created node's parents chain.", __func__);
Michal Vasko3a41dff2020-07-15 14:30:28 +02002910 return LY_EINVAL;
2911 }
2912
2913 return LY_SUCCESS;
2914}
2915
2916static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02002917lyd_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 +02002918{
2919 LY_ERR rc;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002920 const struct lyd_node *orig; /* original node to be duplicated */
2921 struct lyd_node *first = NULL; /* the first duplicated node, this is returned */
Radek Krejci22ebdba2019-07-25 13:59:43 +02002922 struct lyd_node *top = NULL; /* the most higher created node */
2923 struct lyd_node_inner *local_parent = NULL; /* the direct parent node for the duplicated node(s) */
Radek Krejci22ebdba2019-07-25 13:59:43 +02002924
Michal Vasko3a41dff2020-07-15 14:30:28 +02002925 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002926
2927 if (options & LYD_DUP_WITH_PARENTS) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002928 LY_CHECK_GOTO(rc = lyd_dup_get_local_parent(node, parent, &top, &local_parent), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002929 } else {
2930 local_parent = parent;
2931 }
2932
Radek Krejci22ebdba2019-07-25 13:59:43 +02002933 LY_LIST_FOR(node, orig) {
Michal Vasko35f4d772021-01-12 12:08:57 +01002934 if (lysc_is_key(orig->schema)) {
2935 if (local_parent) {
2936 /* the key must already exist in the parent */
2937 rc = lyd_find_sibling_schema(local_parent->child, orig->schema, first ? NULL : &first);
2938 LY_CHECK_ERR_GOTO(rc, LOGINT(LYD_CTX(node)), error);
2939 } else {
2940 assert(!(options & LYD_DUP_WITH_PARENTS));
2941 /* duplicating a single key, okay, I suppose... */
2942 rc = lyd_dup_r(orig, NULL, &first, options, first ? NULL : &first);
2943 LY_CHECK_GOTO(rc, error);
2944 }
2945 } else {
2946 /* if there is no local parent, it will be inserted into first */
Michal Vasko9e685082021-01-29 14:49:09 +01002947 rc = lyd_dup_r(orig, &local_parent->node, &first, options, first ? NULL : &first);
Michal Vasko35f4d772021-01-12 12:08:57 +01002948 LY_CHECK_GOTO(rc, error);
2949 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002950 if (nosiblings) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02002951 break;
2952 }
2953 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002954
2955 /* rehash if needed */
Michal Vaskod989ba02020-08-24 10:59:24 +02002956 for ( ; local_parent; local_parent = local_parent->parent) {
Michal Vasko69730152020-10-09 16:30:07 +02002957 if ((local_parent->schema->nodetype == LYS_LIST) && (local_parent->schema->flags & LYS_KEYLESS)) {
Michal Vasko9e685082021-01-29 14:49:09 +01002958 lyd_hash(&local_parent->node);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002959 }
2960 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002961
2962 if (dup) {
2963 *dup = first;
2964 }
2965 return LY_SUCCESS;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002966
2967error:
2968 if (top) {
2969 lyd_free_tree(top);
2970 } else {
Michal Vaskof03ed032020-03-04 13:31:44 +01002971 lyd_free_siblings(first);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002972 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002973 return rc;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002974}
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002975
Michal Vasko3a41dff2020-07-15 14:30:28 +02002976API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002977lyd_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 +02002978{
2979 return lyd_dup(node, parent, options, 1, dup);
2980}
2981
2982API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002983lyd_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 +02002984{
2985 return lyd_dup(node, parent, options, 0, dup);
2986}
2987
2988API LY_ERR
2989lyd_dup_meta_single(const struct lyd_meta *meta, struct lyd_node *node, struct lyd_meta **dup)
Michal Vasko25a32822020-07-09 15:48:22 +02002990{
Radek Krejci011e4aa2020-09-04 15:22:31 +02002991 LY_ERR ret = LY_SUCCESS;
Michal Vasko25a32822020-07-09 15:48:22 +02002992 struct lyd_meta *mt, *last;
2993
Michal Vasko3a41dff2020-07-15 14:30:28 +02002994 LY_CHECK_ARG_RET(NULL, meta, node, LY_EINVAL);
Michal Vasko25a32822020-07-09 15:48:22 +02002995
2996 /* create a copy */
2997 mt = calloc(1, sizeof *mt);
Michal Vaskob7be7a82020-08-20 09:09:04 +02002998 LY_CHECK_ERR_RET(!mt, LOGMEM(LYD_CTX(node)), LY_EMEM);
Michal Vasko25a32822020-07-09 15:48:22 +02002999 mt->annotation = meta->annotation;
Michal Vaskob7be7a82020-08-20 09:09:04 +02003000 ret = meta->value.realtype->plugin->duplicate(LYD_CTX(node), &meta->value, &mt->value);
Radek Krejci011e4aa2020-09-04 15:22:31 +02003001 LY_CHECK_ERR_GOTO(ret, LOGERR(LYD_CTX(node), LY_EINT, "Value duplication failed."), finish);
3002 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), meta->name, 0, &mt->name), finish);
Michal Vasko25a32822020-07-09 15:48:22 +02003003
3004 /* insert as the last attribute */
Radek Krejci011e4aa2020-09-04 15:22:31 +02003005 mt->parent = node;
Michal Vasko25a32822020-07-09 15:48:22 +02003006 if (node->meta) {
Radek Krejci1e008d22020-08-17 11:37:37 +02003007 for (last = node->meta; last->next; last = last->next) {}
Michal Vasko25a32822020-07-09 15:48:22 +02003008 last->next = mt;
3009 } else {
3010 node->meta = mt;
3011 }
3012
Radek Krejci011e4aa2020-09-04 15:22:31 +02003013finish:
3014 if (ret) {
3015 lyd_free_meta_single(mt);
3016 } else if (dup) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02003017 *dup = mt;
3018 }
3019 return LY_SUCCESS;
Michal Vasko25a32822020-07-09 15:48:22 +02003020}
3021
Michal Vasko4490d312020-06-16 13:08:55 +02003022/**
3023 * @brief Merge a source sibling into target siblings.
3024 *
3025 * @param[in,out] first_trg First target sibling, is updated if top-level.
3026 * @param[in] parent_trg Target parent.
3027 * @param[in,out] sibling_src Source sibling to merge, set to NULL if spent.
3028 * @param[in] options Merge options.
3029 * @return LY_ERR value.
3030 */
3031static LY_ERR
3032lyd_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 +02003033 uint16_t options)
Michal Vasko4490d312020-06-16 13:08:55 +02003034{
3035 LY_ERR ret;
3036 const struct lyd_node *child_src, *tmp, *sibling_src;
Michal Vasko56daf732020-08-10 10:57:18 +02003037 struct lyd_node *match_trg, *dup_src, *elem;
Michal Vasko4490d312020-06-16 13:08:55 +02003038 struct lysc_type *type;
Michal Vasko4490d312020-06-16 13:08:55 +02003039
3040 sibling_src = *sibling_src_p;
3041 if (sibling_src->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) {
3042 /* try to find the exact instance */
3043 ret = lyd_find_sibling_first(*first_trg, sibling_src, &match_trg);
3044 } else {
3045 /* try to simply find the node, there cannot be more instances */
3046 ret = lyd_find_sibling_val(*first_trg, sibling_src->schema, NULL, 0, &match_trg);
3047 }
3048
3049 if (!ret) {
3050 /* node found, make sure even value matches for all node types */
Michal Vasko8f359bf2020-07-28 10:41:15 +02003051 if ((match_trg->schema->nodetype == LYS_LEAF) && lyd_compare_single(sibling_src, match_trg, LYD_COMPARE_DEFAULTS)) {
Michal Vasko4490d312020-06-16 13:08:55 +02003052 /* since they are different, they cannot both be default */
3053 assert(!(sibling_src->flags & LYD_DEFAULT) || !(match_trg->flags & LYD_DEFAULT));
3054
Michal Vasko3a41dff2020-07-15 14:30:28 +02003055 /* update value (or only LYD_DEFAULT flag) only if flag set or the source node is not default */
3056 if ((options & LYD_MERGE_DEFAULTS) || !(sibling_src->flags & LYD_DEFAULT)) {
Michal Vasko4490d312020-06-16 13:08:55 +02003057 type = ((struct lysc_node_leaf *)match_trg->schema)->type;
Michal Vaskob7be7a82020-08-20 09:09:04 +02003058 type->plugin->free(LYD_CTX(match_trg), &((struct lyd_node_term *)match_trg)->value);
3059 LY_CHECK_RET(type->plugin->duplicate(LYD_CTX(match_trg), &((struct lyd_node_term *)sibling_src)->value,
Michal Vasko69730152020-10-09 16:30:07 +02003060 &((struct lyd_node_term *)match_trg)->value));
Michal Vasko4490d312020-06-16 13:08:55 +02003061
3062 /* copy flags and add LYD_NEW */
3063 match_trg->flags = sibling_src->flags | LYD_NEW;
3064 }
Michal Vasko8f359bf2020-07-28 10:41:15 +02003065 } else if ((match_trg->schema->nodetype & LYS_ANYDATA) && lyd_compare_single(sibling_src, match_trg, 0)) {
Michal Vasko4c583e82020-07-17 12:16:14 +02003066 /* update value */
3067 LY_CHECK_RET(lyd_any_copy_value(match_trg, &((struct lyd_node_any *)sibling_src)->value,
Radek Krejci0f969882020-08-21 16:56:47 +02003068 ((struct lyd_node_any *)sibling_src)->value_type));
Michal Vasko4490d312020-06-16 13:08:55 +02003069
3070 /* copy flags and add LYD_NEW */
3071 match_trg->flags = sibling_src->flags | LYD_NEW;
Michal Vasko4490d312020-06-16 13:08:55 +02003072 } else {
3073 /* check descendants, recursively */
Radek Krejcia1c1e542020-09-29 16:06:52 +02003074 LY_LIST_FOR_SAFE(lyd_child_no_keys(sibling_src), tmp, child_src) {
Michal Vaskoe0665742021-02-11 11:08:44 +01003075 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 +02003076 }
3077 }
3078 } else {
3079 /* node not found, merge it */
3080 if (options & LYD_MERGE_DESTRUCT) {
3081 dup_src = (struct lyd_node *)sibling_src;
3082 lyd_unlink_tree(dup_src);
3083 /* spend it */
3084 *sibling_src_p = NULL;
3085 } else {
Michal Vasko3a41dff2020-07-15 14:30:28 +02003086 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 +02003087 }
3088
3089 /* set LYD_NEW for all the new nodes, required for validation */
Michal Vasko56daf732020-08-10 10:57:18 +02003090 LYD_TREE_DFS_BEGIN(dup_src, elem) {
Michal Vasko4490d312020-06-16 13:08:55 +02003091 elem->flags |= LYD_NEW;
Michal Vasko56daf732020-08-10 10:57:18 +02003092 LYD_TREE_DFS_END(dup_src, elem);
Michal Vasko4490d312020-06-16 13:08:55 +02003093 }
3094
3095 lyd_insert_node(parent_trg, first_trg, dup_src);
3096 }
3097
3098 return LY_SUCCESS;
3099}
3100
Michal Vasko3a41dff2020-07-15 14:30:28 +02003101static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003102lyd_merge(struct lyd_node **target, const struct lyd_node *source, uint16_t options, ly_bool nosiblings)
Michal Vasko4490d312020-06-16 13:08:55 +02003103{
3104 const struct lyd_node *sibling_src, *tmp;
Radek Krejci857189e2020-09-01 13:26:36 +02003105 ly_bool first;
Michal Vasko4490d312020-06-16 13:08:55 +02003106
3107 LY_CHECK_ARG_RET(NULL, target, LY_EINVAL);
3108
3109 if (!source) {
3110 /* nothing to merge */
3111 return LY_SUCCESS;
3112 }
3113
Michal Vasko831422b2020-11-24 11:20:51 +01003114 if ((*target && lysc_data_parent((*target)->schema)) || lysc_data_parent(source->schema)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02003115 LOGERR(LYD_CTX(source), LY_EINVAL, "Invalid arguments - can merge only 2 top-level subtrees (%s()).", __func__);
Michal Vasko4490d312020-06-16 13:08:55 +02003116 return LY_EINVAL;
3117 }
3118
3119 LY_LIST_FOR_SAFE(source, tmp, sibling_src) {
Radek Krejci857189e2020-09-01 13:26:36 +02003120 first = (sibling_src == source) ? 1 : 0;
Michal Vasko4490d312020-06-16 13:08:55 +02003121 LY_CHECK_RET(lyd_merge_sibling_r(target, NULL, &sibling_src, options));
3122 if (first && !sibling_src) {
3123 /* source was spent (unlinked), move to the next node */
3124 source = tmp;
3125 }
3126
Michal Vasko3a41dff2020-07-15 14:30:28 +02003127 if (nosiblings) {
Michal Vasko4490d312020-06-16 13:08:55 +02003128 break;
3129 }
3130 }
3131
3132 if (options & LYD_MERGE_DESTRUCT) {
3133 /* free any leftover source data that were not merged */
3134 lyd_free_siblings((struct lyd_node *)source);
3135 }
3136
3137 return LY_SUCCESS;
3138}
3139
Michal Vasko3a41dff2020-07-15 14:30:28 +02003140API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003141lyd_merge_tree(struct lyd_node **target, const struct lyd_node *source, uint16_t options)
Michal Vasko3a41dff2020-07-15 14:30:28 +02003142{
3143 return lyd_merge(target, source, options, 1);
3144}
3145
3146API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003147lyd_merge_siblings(struct lyd_node **target, const struct lyd_node *source, uint16_t options)
Michal Vasko3a41dff2020-07-15 14:30:28 +02003148{
3149 return lyd_merge(target, source, options, 0);
3150}
3151
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003152static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003153lyd_path_str_enlarge(char **buffer, size_t *buflen, size_t reqlen, ly_bool is_static)
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003154{
Michal Vasko14654712020-02-06 08:35:21 +01003155 /* ending \0 */
3156 ++reqlen;
3157
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003158 if (reqlen > *buflen) {
3159 if (is_static) {
3160 return LY_EINCOMPLETE;
3161 }
3162
3163 *buffer = ly_realloc(*buffer, reqlen * sizeof **buffer);
3164 if (!*buffer) {
3165 return LY_EMEM;
3166 }
3167
3168 *buflen = reqlen;
3169 }
3170
3171 return LY_SUCCESS;
3172}
3173
Michal Vaskod59035b2020-07-08 12:00:06 +02003174LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003175lyd_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 +02003176{
3177 const struct lyd_node *key;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003178 size_t len;
3179 const char *val;
3180 char quot;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003181
Radek Krejcia1c1e542020-09-29 16:06:52 +02003182 for (key = lyd_child(node); key && (key->schema->flags & LYS_KEY); key = key->next) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02003183 val = LYD_CANON_VALUE(key);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003184 len = 1 + strlen(key->schema->name) + 2 + strlen(val) + 2;
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003185 LY_CHECK_RET(lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static));
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003186
3187 quot = '\'';
3188 if (strchr(val, '\'')) {
3189 quot = '"';
3190 }
3191 *bufused += sprintf(*buffer + *bufused, "[%s=%c%s%c]", key->schema->name, quot, val, quot);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003192 }
3193
3194 return LY_SUCCESS;
3195}
3196
3197/**
3198 * @brief Append leaf-list value predicate to path.
3199 *
3200 * @param[in] node Node to print.
3201 * @param[in,out] buffer Buffer to print to.
3202 * @param[in,out] buflen Current buffer length.
3203 * @param[in,out] bufused Current number of characters used in @p buffer.
3204 * @param[in] is_static Whether buffer is static or can be reallocated.
3205 * @return LY_ERR
3206 */
3207static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003208lyd_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 +02003209{
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003210 size_t len;
3211 const char *val;
3212 char quot;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003213
Michal Vaskob7be7a82020-08-20 09:09:04 +02003214 val = LYD_CANON_VALUE(node);
Radek Krejcif13b87b2020-12-01 22:02:17 +01003215 len = 4 + strlen(val) + 2; /* "[.='" + val + "']" */
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003216 LY_CHECK_RET(lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static));
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003217
3218 quot = '\'';
3219 if (strchr(val, '\'')) {
3220 quot = '"';
3221 }
3222 *bufused += sprintf(*buffer + *bufused, "[.=%c%s%c]", quot, val, quot);
3223
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003224 return LY_SUCCESS;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003225}
3226
3227/**
3228 * @brief Append node position (relative to its other instances) predicate to path.
3229 *
3230 * @param[in] node Node to print.
3231 * @param[in,out] buffer Buffer to print to.
3232 * @param[in,out] buflen Current buffer length.
3233 * @param[in,out] bufused Current number of characters used in @p buffer.
3234 * @param[in] is_static Whether buffer is static or can be reallocated.
3235 * @return LY_ERR
3236 */
3237static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003238lyd_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 +02003239{
3240 const struct lyd_node *first, *iter;
3241 size_t len;
Radek Krejci1deb5be2020-08-26 16:43:36 +02003242 uint64_t pos;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003243 char *val = NULL;
3244 LY_ERR rc;
3245
3246 if (node->parent) {
3247 first = node->parent->child;
3248 } else {
Michal Vaskoe070bfe2020-08-31 12:27:25 +02003249 for (first = node; first->prev->next; first = first->prev) {}
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003250 }
3251 pos = 1;
3252 for (iter = first; iter != node; iter = iter->next) {
3253 if (iter->schema == node->schema) {
3254 ++pos;
3255 }
3256 }
Radek Krejci1deb5be2020-08-26 16:43:36 +02003257 if (asprintf(&val, "%" PRIu64, pos) == -1) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003258 return LY_EMEM;
3259 }
3260
3261 len = 1 + strlen(val) + 1;
3262 rc = lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static);
3263 if (rc != LY_SUCCESS) {
3264 goto cleanup;
3265 }
3266
3267 *bufused += sprintf(*buffer + *bufused, "[%s]", val);
3268
3269cleanup:
3270 free(val);
3271 return rc;
3272}
3273
3274API char *
3275lyd_path(const struct lyd_node *node, LYD_PATH_TYPE pathtype, char *buffer, size_t buflen)
3276{
Radek Krejci857189e2020-09-01 13:26:36 +02003277 ly_bool is_static = 0;
Radek Krejci1deb5be2020-08-26 16:43:36 +02003278 uint32_t i, depth;
Michal Vasko14654712020-02-06 08:35:21 +01003279 size_t bufused = 0, len;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003280 const struct lyd_node *iter;
3281 const struct lys_module *mod;
Michal Vasko790b2bc2020-08-03 13:35:06 +02003282 LY_ERR rc = LY_SUCCESS;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003283
3284 LY_CHECK_ARG_RET(NULL, node, NULL);
3285 if (buffer) {
3286 LY_CHECK_ARG_RET(node->schema->module->ctx, buflen > 1, NULL);
3287 is_static = 1;
Michal Vasko14654712020-02-06 08:35:21 +01003288 } else {
3289 buflen = 0;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003290 }
3291
3292 switch (pathtype) {
Radek Krejci635d2b82021-01-04 11:26:51 +01003293 case LYD_PATH_STD:
3294 case LYD_PATH_STD_NO_LAST_PRED:
Michal Vasko14654712020-02-06 08:35:21 +01003295 depth = 1;
Michal Vasko9e685082021-01-29 14:49:09 +01003296 for (iter = node; iter->parent; iter = lyd_parent(iter)) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003297 ++depth;
3298 }
3299
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003300 goto iter_print;
Michal Vasko14654712020-02-06 08:35:21 +01003301 while (depth) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003302 /* find the right node */
Michal Vasko9e685082021-01-29 14:49:09 +01003303 for (iter = node, i = 1; i < depth; iter = lyd_parent(iter), ++i) {}
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003304iter_print:
3305 /* print prefix and name */
3306 mod = NULL;
Michal Vasko69730152020-10-09 16:30:07 +02003307 if (iter->schema && (!iter->parent || (iter->schema->module != iter->parent->schema->module))) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003308 mod = iter->schema->module;
3309 }
3310
3311 /* realloc string */
Michal Vaskoad92b672020-11-12 13:11:31 +01003312 len = 1 + (mod ? strlen(mod->name) + 1 : 0) + (iter->schema ? strlen(iter->schema->name) :
3313 strlen(((struct lyd_node_opaq *)iter)->name.name));
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003314 rc = lyd_path_str_enlarge(&buffer, &buflen, bufused + len, is_static);
3315 if (rc != LY_SUCCESS) {
3316 break;
3317 }
3318
3319 /* print next node */
Radek Krejci1798aae2020-07-14 13:26:06 +02003320 bufused += sprintf(buffer + bufused, "/%s%s%s", mod ? mod->name : "", mod ? ":" : "",
Michal Vaskoad92b672020-11-12 13:11:31 +01003321 iter->schema ? iter->schema->name : ((struct lyd_node_opaq *)iter)->name.name);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003322
Michal Vasko790b2bc2020-08-03 13:35:06 +02003323 /* do not always print the last (first) predicate */
Radek Krejci635d2b82021-01-04 11:26:51 +01003324 if (iter->schema && ((depth > 1) || (pathtype == LYD_PATH_STD))) {
Michal Vasko790b2bc2020-08-03 13:35:06 +02003325 switch (iter->schema->nodetype) {
3326 case LYS_LIST:
3327 if (iter->schema->flags & LYS_KEYLESS) {
3328 /* print its position */
3329 rc = lyd_path_position_predicate(iter, &buffer, &buflen, &bufused, is_static);
3330 } else {
3331 /* print all list keys in predicates */
3332 rc = lyd_path_list_predicate(iter, &buffer, &buflen, &bufused, is_static);
3333 }
3334 break;
3335 case LYS_LEAFLIST:
3336 if (iter->schema->flags & LYS_CONFIG_W) {
3337 /* print leaf-list value */
3338 rc = lyd_path_leaflist_predicate(iter, &buffer, &buflen, &bufused, is_static);
3339 } else {
3340 /* print its position */
3341 rc = lyd_path_position_predicate(iter, &buffer, &buflen, &bufused, is_static);
3342 }
3343 break;
3344 default:
3345 /* nothing to print more */
3346 break;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003347 }
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003348 }
3349 if (rc != LY_SUCCESS) {
3350 break;
3351 }
3352
Michal Vasko14654712020-02-06 08:35:21 +01003353 --depth;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003354 }
3355 break;
3356 }
3357
3358 return buffer;
3359}
Michal Vaskoe444f752020-02-10 12:20:06 +01003360
Michal Vasko25a32822020-07-09 15:48:22 +02003361API struct lyd_meta *
3362lyd_find_meta(const struct lyd_meta *first, const struct lys_module *module, const char *name)
3363{
3364 struct lyd_meta *ret = NULL;
3365 const struct ly_ctx *ctx;
3366 const char *prefix, *tmp;
3367 char *str;
3368 size_t pref_len, name_len;
3369
3370 LY_CHECK_ARG_RET(NULL, module || strchr(name, ':'), name, NULL);
3371
3372 if (!first) {
3373 return NULL;
3374 }
3375
3376 ctx = first->annotation->module->ctx;
3377
3378 /* parse the name */
3379 tmp = name;
3380 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
3381 LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name);
3382 return NULL;
3383 }
3384
3385 /* find the module */
3386 if (prefix) {
3387 str = strndup(prefix, pref_len);
3388 module = ly_ctx_get_module_latest(ctx, str);
3389 free(str);
3390 LY_CHECK_ERR_RET(!module, LOGERR(ctx, LY_EINVAL, "Module \"%.*s\" not found.", pref_len, prefix), NULL);
3391 }
3392
3393 /* find the metadata */
3394 LY_LIST_FOR(first, first) {
3395 if ((first->annotation->module == module) && !strcmp(first->name, name)) {
3396 ret = (struct lyd_meta *)first;
3397 break;
3398 }
3399 }
3400
3401 return ret;
3402}
3403
Michal Vasko9b368d32020-02-14 13:53:31 +01003404API LY_ERR
Michal Vaskoe444f752020-02-10 12:20:06 +01003405lyd_find_sibling_first(const struct lyd_node *siblings, const struct lyd_node *target, struct lyd_node **match)
3406{
3407 struct lyd_node **match_p;
3408 struct lyd_node_inner *parent;
3409
Michal Vaskof03ed032020-03-04 13:31:44 +01003410 LY_CHECK_ARG_RET(NULL, target, LY_EINVAL);
Michal Vaskoe444f752020-02-10 12:20:06 +01003411
Michal Vasko6da1e952020-12-09 18:14:38 +01003412 if (!siblings || (siblings->schema && target->schema &&
3413 (lysc_data_parent(siblings->schema) != lysc_data_parent(target->schema)))) {
Michal Vasko62ed12d2020-05-21 10:08:25 +02003414 /* no data or schema mismatch */
Michal Vasko9b368d32020-02-14 13:53:31 +01003415 if (match) {
3416 *match = NULL;
3417 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003418 return LY_ENOTFOUND;
3419 }
3420
3421 /* find first sibling */
3422 if (siblings->parent) {
3423 siblings = siblings->parent->child;
3424 } else {
3425 while (siblings->prev->next) {
3426 siblings = siblings->prev;
3427 }
3428 }
3429
Michal Vasko9e685082021-01-29 14:49:09 +01003430 parent = siblings->parent;
Michal Vasko6da1e952020-12-09 18:14:38 +01003431 if (parent && parent->schema && parent->children_ht) {
Michal Vaskoe444f752020-02-10 12:20:06 +01003432 assert(target->hash);
3433
3434 /* find by hash */
3435 if (!lyht_find(parent->children_ht, &target, target->hash, (void **)&match_p)) {
Michal Vaskoda859032020-07-14 12:20:14 +02003436 /* check even value when needed */
Michal Vasko8f359bf2020-07-28 10:41:15 +02003437 if (!(target->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !lyd_compare_single(target, *match_p, 0)) {
Michal Vaskoda859032020-07-14 12:20:14 +02003438 siblings = *match_p;
3439 } else {
3440 siblings = NULL;
3441 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003442 } else {
3443 /* not found */
3444 siblings = NULL;
3445 }
3446 } else {
3447 /* no children hash table */
Michal Vaskod989ba02020-08-24 10:59:24 +02003448 for ( ; siblings; siblings = siblings->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02003449 if (!lyd_compare_single(siblings, target, 0)) {
Michal Vaskoe444f752020-02-10 12:20:06 +01003450 break;
3451 }
3452 }
3453 }
3454
3455 if (!siblings) {
Michal Vasko9b368d32020-02-14 13:53:31 +01003456 if (match) {
3457 *match = NULL;
3458 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003459 return LY_ENOTFOUND;
3460 }
3461
Michal Vasko9b368d32020-02-14 13:53:31 +01003462 if (match) {
3463 *match = (struct lyd_node *)siblings;
3464 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003465 return LY_SUCCESS;
3466}
3467
Radek Krejci857189e2020-09-01 13:26:36 +02003468/**
3469 * @brief Comparison callback to match schema node with a schema of a data node.
3470 *
3471 * @param[in] val1_p Pointer to the schema node
3472 * @param[in] val2_p Pointer to the data node
3473 * Implementation of ::values_equal_cb.
3474 */
3475static ly_bool
3476lyd_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 +01003477{
3478 struct lysc_node *val1;
3479 struct lyd_node *val2;
3480
3481 val1 = *((struct lysc_node **)val1_p);
3482 val2 = *((struct lyd_node **)val2_p);
3483
Michal Vasko90932a92020-02-12 14:33:03 +01003484 if (val1 == val2->schema) {
3485 /* schema match is enough */
3486 return 1;
3487 } else {
3488 return 0;
3489 }
3490}
3491
Michal Vasko92239c72020-11-18 18:17:25 +01003492/**
3493 * @brief Search in the given siblings (NOT recursively) for the first schema node data instance.
3494 * Uses hashes - should be used whenever possible for best performance.
3495 *
3496 * @param[in] siblings Siblings to search in including preceding and succeeding nodes.
3497 * @param[in] schema Target data node schema to find.
3498 * @param[out] match Can be NULL, otherwise the found data node.
3499 * @return LY_SUCCESS on success, @p match set.
3500 * @return LY_ENOTFOUND if not found, @p match set to NULL.
3501 * @return LY_ERR value if another error occurred.
3502 */
Michal Vasko90932a92020-02-12 14:33:03 +01003503static LY_ERR
3504lyd_find_sibling_schema(const struct lyd_node *siblings, const struct lysc_node *schema, struct lyd_node **match)
3505{
3506 struct lyd_node **match_p;
3507 struct lyd_node_inner *parent;
3508 uint32_t hash;
3509 values_equal_cb ht_cb;
3510
Michal Vaskob104f112020-07-17 09:54:54 +02003511 assert(siblings && schema);
Michal Vasko90932a92020-02-12 14:33:03 +01003512
Michal Vasko9e685082021-01-29 14:49:09 +01003513 parent = siblings->parent;
Michal Vasko08fd6132020-11-18 18:17:45 +01003514 if (parent && parent->schema && parent->children_ht) {
Michal Vasko90932a92020-02-12 14:33:03 +01003515 /* calculate our hash */
3516 hash = dict_hash_multi(0, schema->module->name, strlen(schema->module->name));
3517 hash = dict_hash_multi(hash, schema->name, strlen(schema->name));
3518 hash = dict_hash_multi(hash, NULL, 0);
3519
3520 /* use special hash table function */
3521 ht_cb = lyht_set_cb(parent->children_ht, lyd_hash_table_schema_val_equal);
3522
3523 /* find by hash */
3524 if (!lyht_find(parent->children_ht, &schema, hash, (void **)&match_p)) {
3525 siblings = *match_p;
3526 } else {
3527 /* not found */
3528 siblings = NULL;
3529 }
3530
3531 /* set the original hash table compare function back */
3532 lyht_set_cb(parent->children_ht, ht_cb);
3533 } else {
Michal Vaskob104f112020-07-17 09:54:54 +02003534 /* find first sibling */
3535 if (siblings->parent) {
3536 siblings = siblings->parent->child;
3537 } else {
3538 while (siblings->prev->next) {
3539 siblings = siblings->prev;
3540 }
3541 }
3542
3543 /* search manually without hashes */
Michal Vaskod989ba02020-08-24 10:59:24 +02003544 for ( ; siblings; siblings = siblings->next) {
Michal Vasko90932a92020-02-12 14:33:03 +01003545 if (siblings->schema == schema) {
3546 /* schema match is enough */
3547 break;
3548 }
3549 }
3550 }
3551
3552 if (!siblings) {
Michal Vasko9b368d32020-02-14 13:53:31 +01003553 if (match) {
3554 *match = NULL;
3555 }
Michal Vasko90932a92020-02-12 14:33:03 +01003556 return LY_ENOTFOUND;
3557 }
3558
Michal Vasko9b368d32020-02-14 13:53:31 +01003559 if (match) {
3560 *match = (struct lyd_node *)siblings;
3561 }
Michal Vasko90932a92020-02-12 14:33:03 +01003562 return LY_SUCCESS;
3563}
3564
Michal Vaskoe444f752020-02-10 12:20:06 +01003565API LY_ERR
3566lyd_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 +02003567 size_t val_len, struct lyd_node **match)
Michal Vaskoe444f752020-02-10 12:20:06 +01003568{
3569 LY_ERR rc;
3570 struct lyd_node *target = NULL;
3571
Michal Vasko4c583e82020-07-17 12:16:14 +02003572 LY_CHECK_ARG_RET(NULL, schema, !(schema->nodetype & (LYS_CHOICE | LYS_CASE)), LY_EINVAL);
Michal Vaskoe444f752020-02-10 12:20:06 +01003573
Michal Vasko08fd6132020-11-18 18:17:45 +01003574 if (!siblings || (siblings->schema && (lysc_data_parent(siblings->schema) != lysc_data_parent(schema)))) {
Michal Vasko62ed12d2020-05-21 10:08:25 +02003575 /* no data or schema mismatch */
Michal Vasko9b368d32020-02-14 13:53:31 +01003576 if (match) {
3577 *match = NULL;
3578 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003579 return LY_ENOTFOUND;
3580 }
3581
Michal Vaskof03ed032020-03-04 13:31:44 +01003582 if (key_or_value && !val_len) {
3583 val_len = strlen(key_or_value);
3584 }
3585
Michal Vaskob104f112020-07-17 09:54:54 +02003586 if ((schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) && key_or_value) {
3587 /* create a data node and find the instance */
3588 if (schema->nodetype == LYS_LEAFLIST) {
3589 /* target used attributes: schema, hash, value */
Michal Vaskofeca4fb2020-10-05 08:58:40 +02003590 rc = lyd_create_term(schema, key_or_value, val_len, NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, NULL, &target);
3591 LY_CHECK_RET(rc);
Michal Vaskob104f112020-07-17 09:54:54 +02003592 } else {
Michal Vasko90932a92020-02-12 14:33:03 +01003593 /* target used attributes: schema, hash, child (all keys) */
Michal Vasko004d3152020-06-11 19:59:22 +02003594 LY_CHECK_RET(lyd_create_list2(schema, key_or_value, val_len, &target));
Michal Vasko90932a92020-02-12 14:33:03 +01003595 }
3596
3597 /* find it */
3598 rc = lyd_find_sibling_first(siblings, target, match);
Michal Vaskob104f112020-07-17 09:54:54 +02003599 } else {
3600 /* find the first schema node instance */
3601 rc = lyd_find_sibling_schema(siblings, schema, match);
Michal Vaskoe444f752020-02-10 12:20:06 +01003602 }
3603
Michal Vaskoe444f752020-02-10 12:20:06 +01003604 lyd_free_tree(target);
3605 return rc;
3606}
Michal Vaskoccc02342020-05-21 10:09:21 +02003607
3608API LY_ERR
Michal Vasko1d4af6c2021-02-22 13:31:26 +01003609lyd_find_sibling_opaq_next(const struct lyd_node *first, const char *name, struct lyd_node **match)
3610{
3611 LY_CHECK_ARG_RET(NULL, name, LY_EINVAL);
3612
3613 for ( ; first; first = first->next) {
3614 if (!first->schema && !strcmp(LYD_NAME(first), name)) {
3615 break;
3616 }
3617 }
3618
3619 if (match) {
3620 *match = (struct lyd_node *)first;
3621 }
3622 return first ? LY_SUCCESS : LY_ENOTFOUND;
3623}
3624
3625API LY_ERR
Michal Vaskoccc02342020-05-21 10:09:21 +02003626lyd_find_xpath(const struct lyd_node *ctx_node, const char *xpath, struct ly_set **set)
3627{
3628 LY_ERR ret = LY_SUCCESS;
3629 struct lyxp_set xp_set;
Radek Krejcif03a9e22020-09-18 20:09:31 +02003630 struct lyxp_expr *exp = NULL;
Michal Vaskoccc02342020-05-21 10:09:21 +02003631 uint32_t i;
3632
3633 LY_CHECK_ARG_RET(NULL, ctx_node, xpath, set, LY_EINVAL);
3634
3635 memset(&xp_set, 0, sizeof xp_set);
3636
3637 /* compile expression */
Radek Krejcif03a9e22020-09-18 20:09:31 +02003638 ret = lyxp_expr_parse((struct ly_ctx *)LYD_CTX(ctx_node), xpath, 0, 1, &exp);
3639 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003640
3641 /* evaluate expression */
Michal Vasko400e9672021-01-11 13:39:17 +01003642 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 +02003643 LY_CHECK_GOTO(ret, cleanup);
3644
3645 /* allocate return set */
Radek Krejciba03a5a2020-08-27 14:40:41 +02003646 ret = ly_set_new(set);
3647 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003648
3649 /* transform into ly_set */
3650 if (xp_set.type == LYXP_SET_NODE_SET) {
3651 /* allocate memory for all the elements once (even though not all items must be elements but most likely will be) */
3652 (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs);
Michal Vaskob7be7a82020-08-20 09:09:04 +02003653 LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(LYD_CTX(ctx_node)); ret = LY_EMEM, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003654 (*set)->size = xp_set.used;
3655
3656 for (i = 0; i < xp_set.used; ++i) {
3657 if (xp_set.val.nodes[i].type == LYXP_NODE_ELEM) {
Radek Krejci3d92e442020-10-12 12:48:13 +02003658 ret = ly_set_add(*set, xp_set.val.nodes[i].node, 1, NULL);
Radek Krejciba03a5a2020-08-27 14:40:41 +02003659 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003660 }
3661 }
3662 }
3663
3664cleanup:
Michal Vasko0691d522020-05-21 13:21:47 +02003665 lyxp_set_free_content(&xp_set);
Michal Vaskob7be7a82020-08-20 09:09:04 +02003666 lyxp_expr_free((struct ly_ctx *)LYD_CTX(ctx_node), exp);
Radek Krejci8f45abc2020-11-26 12:15:13 +01003667 if (ret) {
3668 ly_set_free(*set, NULL);
3669 *set = NULL;
3670 }
Michal Vaskoccc02342020-05-21 10:09:21 +02003671 return ret;
3672}
Radek Krejcica989142020-11-05 11:32:22 +01003673
Michal Vasko3e1f6552021-01-14 09:27:55 +01003674API LY_ERR
3675lyd_find_path(const struct lyd_node *ctx_node, const char *path, ly_bool output, struct lyd_node **match)
3676{
3677 LY_ERR ret = LY_SUCCESS;
3678 struct lyxp_expr *expr = NULL;
3679 struct ly_path *lypath = NULL;
3680
3681 LY_CHECK_ARG_RET(NULL, ctx_node, ctx_node->schema, path, LY_EINVAL);
3682
3683 /* parse the path */
3684 ret = ly_path_parse(LYD_CTX(ctx_node), ctx_node->schema, path, strlen(path), LY_PATH_BEGIN_EITHER, LY_PATH_LREF_FALSE,
3685 LY_PATH_PREFIX_OPTIONAL, LY_PATH_PRED_SIMPLE, &expr);
3686 LY_CHECK_GOTO(ret, cleanup);
3687
3688 /* compile the path */
3689 ret = ly_path_compile(LYD_CTX(ctx_node), NULL, ctx_node->schema, expr, LY_PATH_LREF_FALSE,
3690 output ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT, LY_PATH_TARGET_SINGLE, LY_PREF_JSON,
3691 (void *)LYD_CTX(ctx_node), NULL, &lypath);
3692 LY_CHECK_GOTO(ret, cleanup);
3693
3694 /* evaluate the path */
3695 ret = ly_path_eval_partial(lypath, ctx_node, NULL, match);
3696
3697cleanup:
3698 lyxp_expr_free(LYD_CTX(ctx_node), expr);
3699 ly_path_free(LYD_CTX(ctx_node), lypath);
3700 return ret;
3701}
3702
Radek Krejcica989142020-11-05 11:32:22 +01003703API uint32_t
3704lyd_list_pos(const struct lyd_node *instance)
3705{
3706 const struct lyd_node *iter = NULL;
3707 uint32_t pos = 0;
3708
3709 if (!instance || !(instance->schema->nodetype & (LYS_LIST | LYS_LEAFLIST))) {
3710 return 0;
3711 }
3712
3713 /* data instances are ordered, so we can stop when we found instance of other schema node */
3714 for (iter = instance; iter->schema == instance->schema; iter = iter->prev) {
Radek Krejcibb27df32020-11-13 15:39:16 +01003715 if (pos && (iter->next == NULL)) {
Radek Krejcica989142020-11-05 11:32:22 +01003716 /* overrun to the end of the siblings list */
3717 break;
3718 }
3719 ++pos;
3720 }
3721
3722 return pos;
3723}
Radek Krejci4233f9b2020-11-05 12:38:35 +01003724
3725API struct lyd_node *
3726lyd_first_sibling(const struct lyd_node *node)
3727{
3728 struct lyd_node *start;
3729
3730 if (!node) {
3731 return NULL;
3732 }
3733
3734 /* get the first sibling */
3735 if (node->parent) {
3736 start = node->parent->child;
3737 } else {
Radek Krejcibb27df32020-11-13 15:39:16 +01003738 for (start = (struct lyd_node *)node; start->prev->next; start = start->prev) {}
Radek Krejci4233f9b2020-11-05 12:38:35 +01003739 }
3740
3741 return start;
3742}