blob: 16436fe89208f9e858389b704795aca5a25f614b [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 Vasko2b5344c2021-02-26 10:12:05 +01001023 LY_CHECK_ARG_RET(ctx, ctx || parent, name, module || strchr(name, ':'), parent || meta, LY_EINVAL);
1024 if (!ctx) {
1025 ctx = LYD_CTX(parent);
1026 }
Michal Vasko00cbf532020-06-15 13:58:47 +02001027
Michal Vasko871a0252020-11-11 18:35:24 +01001028 if (parent && !parent->schema) {
1029 LOGERR(ctx, LY_EINVAL, "Cannot add metadata to an opaque node \"%s\".", ((struct lyd_node_opaq *)parent)->name);
1030 return LY_EINVAL;
1031 }
Michal Vasko610553d2020-11-18 18:15:05 +01001032 if (meta) {
1033 *meta = NULL;
1034 }
Michal Vaskod86997b2020-05-26 15:19:54 +02001035
1036 /* parse the name */
1037 tmp = name;
1038 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
1039 LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name);
Michal Vasko871a0252020-11-11 18:35:24 +01001040 return LY_EINVAL;
Michal Vaskod86997b2020-05-26 15:19:54 +02001041 }
1042
1043 /* find the module */
1044 if (prefix) {
Radek Krejci0ad51f12020-07-16 12:08:12 +02001045 module = ly_ctx_get_module_implemented2(ctx, prefix, pref_len);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001046 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 +02001047 }
1048
1049 /* set value if none */
1050 if (!val_str) {
1051 val_str = "";
1052 }
1053
Michal Vasko871a0252020-11-11 18:35:24 +01001054 return lyd_create_meta(parent, meta, module, name, name_len, val_str, strlen(val_str), NULL, LY_PREF_JSON,
1055 NULL, LYD_HINT_DATA, clear_dflt, NULL);
1056}
Michal Vasko3a41dff2020-07-15 14:30:28 +02001057
Michal Vaskoba696702020-11-11 19:12:45 +01001058API LY_ERR
1059lyd_new_meta2(const struct ly_ctx *ctx, struct lyd_node *parent, ly_bool clear_dflt, const struct lyd_attr *attr,
1060 struct lyd_meta **meta)
1061{
1062 const struct lys_module *mod;
1063
1064 LY_CHECK_ARG_RET(NULL, ctx, attr, parent || meta, LY_EINVAL);
1065
1066 if (parent && !parent->schema) {
1067 LOGERR(ctx, LY_EINVAL, "Cannot add metadata to an opaque node \"%s\".", ((struct lyd_node_opaq *)parent)->name);
1068 return LY_EINVAL;
Michal Vasko3a41dff2020-07-15 14:30:28 +02001069 }
Michal Vasko610553d2020-11-18 18:15:05 +01001070 if (meta) {
1071 *meta = NULL;
1072 }
Michal Vaskoba696702020-11-11 19:12:45 +01001073
1074 switch (attr->format) {
1075 case LY_PREF_XML:
Michal Vaskoad92b672020-11-12 13:11:31 +01001076 mod = ly_ctx_get_module_implemented_ns(ctx, attr->name.module_ns);
Michal Vaskoba696702020-11-11 19:12:45 +01001077 if (!mod) {
Michal Vaskoad92b672020-11-12 13:11:31 +01001078 LOGERR(ctx, LY_EINVAL, "Module with namespace \"%s\" not found.", attr->name.module_ns);
Michal Vaskoba696702020-11-11 19:12:45 +01001079 return LY_ENOTFOUND;
1080 }
1081 break;
1082 case LY_PREF_JSON:
Michal Vaskoad92b672020-11-12 13:11:31 +01001083 mod = ly_ctx_get_module_implemented(ctx, attr->name.module_name);
Michal Vaskoba696702020-11-11 19:12:45 +01001084 if (!mod) {
Michal Vaskoad92b672020-11-12 13:11:31 +01001085 LOGERR(ctx, LY_EINVAL, "Module \"%s\" not found.", attr->name.module_name);
Michal Vaskoba696702020-11-11 19:12:45 +01001086 return LY_ENOTFOUND;
1087 }
1088 break;
1089 default:
1090 LOGINT_RET(ctx);
1091 }
1092
Michal Vaskoad92b672020-11-12 13:11:31 +01001093 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 +01001094 NULL, attr->format, attr->val_prefix_data, attr->hints, clear_dflt, NULL);
Michal Vaskod86997b2020-05-26 15:19:54 +02001095}
1096
Michal Vasko3a41dff2020-07-15 14:30:28 +02001097API LY_ERR
Michal Vasko00cbf532020-06-15 13:58:47 +02001098lyd_new_opaq(struct lyd_node *parent, const struct ly_ctx *ctx, const char *name, const char *value,
Michal Vasko0ab974d2021-02-24 13:18:26 +01001099 const char *prefix, const char *module_name, struct lyd_node **node)
Michal Vasko00cbf532020-06-15 13:58:47 +02001100{
1101 struct lyd_node *ret = NULL;
Michal Vasko0ab974d2021-02-24 13:18:26 +01001102 LY_CHECK_ARG_RET(ctx, parent || ctx, parent || node, name, module_name, !prefix || !strcmp(prefix, module_name), LY_EINVAL);
Michal Vasko00cbf532020-06-15 13:58:47 +02001103
1104 if (!ctx) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001105 ctx = LYD_CTX(parent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001106 }
1107 if (!value) {
1108 value = "";
1109 }
1110
Michal Vasko0ab974d2021-02-24 13:18:26 +01001111 LY_CHECK_RET(lyd_create_opaq(ctx, name, strlen(name), prefix, prefix ? strlen(prefix) : 0, module_name,
1112 strlen(module_name), value, strlen(value), NULL, LY_PREF_JSON, NULL, 0, &ret));
Michal Vasko3a41dff2020-07-15 14:30:28 +02001113 if (parent) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001114 lyd_insert_node(parent, NULL, ret);
1115 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02001116
1117 if (node) {
1118 *node = ret;
1119 }
1120 return LY_SUCCESS;
Michal Vasko00cbf532020-06-15 13:58:47 +02001121}
1122
Michal Vasko3a41dff2020-07-15 14:30:28 +02001123API LY_ERR
Michal Vasko8d65f852021-02-17 11:28:13 +01001124lyd_new_opaq2(struct lyd_node *parent, const struct ly_ctx *ctx, const char *name, const char *value,
Michal Vasko0ab974d2021-02-24 13:18:26 +01001125 const char *prefix, const char *module_ns, struct lyd_node **node)
Michal Vasko8d65f852021-02-17 11:28:13 +01001126{
1127 struct lyd_node *ret = NULL;
1128
1129 LY_CHECK_ARG_RET(ctx, parent || ctx, parent || node, name, module_ns, LY_EINVAL);
1130
1131 if (!ctx) {
1132 ctx = LYD_CTX(parent);
1133 }
1134 if (!value) {
1135 value = "";
1136 }
1137
Michal Vasko0ab974d2021-02-24 13:18:26 +01001138 LY_CHECK_RET(lyd_create_opaq(ctx, name, strlen(name), prefix, prefix ? strlen(prefix) : 0, module_ns,
1139 strlen(module_ns), value, strlen(value), NULL, LY_PREF_XML, NULL, 0, &ret));
Michal Vasko8d65f852021-02-17 11:28:13 +01001140 if (parent) {
1141 lyd_insert_node(parent, NULL, ret);
1142 }
1143
1144 if (node) {
1145 *node = ret;
1146 }
1147 return LY_SUCCESS;
1148}
1149
1150API LY_ERR
1151lyd_new_attr(struct lyd_node *parent, const char *module_name, const char *name, const char *value,
Radek Krejci0f969882020-08-21 16:56:47 +02001152 struct lyd_attr **attr)
Michal Vasko00cbf532020-06-15 13:58:47 +02001153{
Radek Krejci1798aae2020-07-14 13:26:06 +02001154 struct lyd_attr *ret = NULL;
Michal Vasko00cbf532020-06-15 13:58:47 +02001155 const struct ly_ctx *ctx;
1156 const char *prefix, *tmp;
Michal Vasko51d21b82020-11-13 18:03:54 +01001157 size_t pref_len, name_len, mod_len;
Michal Vasko00cbf532020-06-15 13:58:47 +02001158
Michal Vasko3a41dff2020-07-15 14:30:28 +02001159 LY_CHECK_ARG_RET(NULL, parent, !parent->schema, name, LY_EINVAL);
Michal Vasko00cbf532020-06-15 13:58:47 +02001160
Michal Vaskob7be7a82020-08-20 09:09:04 +02001161 ctx = LYD_CTX(parent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001162
1163 /* parse the name */
1164 tmp = name;
1165 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
Michal Vaskob69b68c2021-02-17 11:18:16 +01001166 LOGERR(ctx, LY_EINVAL, "Attribute name \"%s\" is not valid.", name);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001167 return LY_EVALID;
Michal Vasko00cbf532020-06-15 13:58:47 +02001168 }
1169
Michal Vasko51d21b82020-11-13 18:03:54 +01001170 /* get the module */
1171 if (module_name) {
1172 mod_len = strlen(module_name);
1173 } else {
1174 module_name = prefix;
1175 mod_len = pref_len;
1176 }
1177
Michal Vasko00cbf532020-06-15 13:58:47 +02001178 /* set value if none */
Michal Vasko8d65f852021-02-17 11:28:13 +01001179 if (!value) {
1180 value = "";
Michal Vasko00cbf532020-06-15 13:58:47 +02001181 }
1182
Michal Vasko8d65f852021-02-17 11:28:13 +01001183 LY_CHECK_RET(lyd_create_attr(parent, &ret, ctx, name, name_len, prefix, pref_len, module_name, mod_len, value,
1184 strlen(value), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA));
1185
1186 if (attr) {
1187 *attr = ret;
1188 }
1189 return LY_SUCCESS;
1190}
1191
1192API LY_ERR
1193lyd_new_attr2(struct lyd_node *parent, const char *module_ns, const char *name, const char *value,
1194 struct lyd_attr **attr)
1195{
1196 struct lyd_attr *ret = NULL;
1197 const struct ly_ctx *ctx;
1198 const char *prefix, *tmp;
1199 size_t pref_len, name_len;
1200
1201 LY_CHECK_ARG_RET(NULL, parent, !parent->schema, name, LY_EINVAL);
1202
1203 ctx = LYD_CTX(parent);
1204
1205 /* parse the name */
1206 tmp = name;
1207 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
1208 LOGERR(ctx, LY_EINVAL, "Attribute name \"%s\" is not valid.", name);
1209 return LY_EVALID;
1210 }
1211
1212 /* set value if none */
1213 if (!value) {
1214 value = "";
1215 }
1216
1217 LY_CHECK_RET(lyd_create_attr(parent, &ret, ctx, name, name_len, prefix, pref_len, module_ns,
1218 module_ns ? strlen(module_ns) : 0, value, strlen(value), NULL, LY_PREF_XML, NULL, LYD_HINT_DATA));
Michal Vasko3a41dff2020-07-15 14:30:28 +02001219
1220 if (attr) {
1221 *attr = ret;
1222 }
1223 return LY_SUCCESS;
Michal Vasko00cbf532020-06-15 13:58:47 +02001224}
1225
1226API LY_ERR
1227lyd_change_term(struct lyd_node *term, const char *val_str)
1228{
1229 LY_ERR ret = LY_SUCCESS;
1230 struct lysc_type *type;
1231 struct lyd_node_term *t;
1232 struct lyd_node *parent;
1233 struct lyd_value val = {0};
Radek Krejci857189e2020-09-01 13:26:36 +02001234 ly_bool dflt_change, val_change;
Michal Vasko00cbf532020-06-15 13:58:47 +02001235
1236 LY_CHECK_ARG_RET(NULL, term, term->schema, term->schema->nodetype & LYD_NODE_TERM, LY_EINVAL);
1237
1238 if (!val_str) {
1239 val_str = "";
1240 }
1241 t = (struct lyd_node_term *)term;
1242 type = ((struct lysc_node_leaf *)term->schema)->type;
1243
1244 /* parse the new value */
Radek Krejciddace2c2021-01-08 11:30:56 +01001245 LOG_LOCSET(term->schema, term, NULL, NULL);
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001246 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 +01001247 term->schema, NULL);
Radek Krejciddace2c2021-01-08 11:30:56 +01001248 LOG_LOCBACK(term->schema ? 1 : 0, 1, 0, 0);
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001249 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001250
1251 /* compare original and new value */
1252 if (type->plugin->compare(&t->value, &val)) {
1253 /* values differ, switch them */
Michal Vaskob7be7a82020-08-20 09:09:04 +02001254 type->plugin->free(LYD_CTX(term), &t->value);
Michal Vasko00cbf532020-06-15 13:58:47 +02001255 t->value = val;
1256 memset(&val, 0, sizeof val);
1257 val_change = 1;
1258 } else {
1259 val_change = 0;
1260 }
1261
1262 /* always clear the default flag */
1263 if (term->flags & LYD_DEFAULT) {
Michal Vasko9e685082021-01-29 14:49:09 +01001264 for (parent = term; parent; parent = lyd_parent(parent)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001265 parent->flags &= ~LYD_DEFAULT;
1266 }
1267 dflt_change = 1;
1268 } else {
1269 dflt_change = 0;
1270 }
1271
1272 if (val_change || dflt_change) {
1273 /* make the node non-validated */
1274 term->flags &= LYD_NEW;
1275 }
1276
1277 if (val_change) {
1278 if (term->schema->nodetype == LYS_LEAFLIST) {
1279 /* leaf-list needs to be hashed again and re-inserted into parent */
1280 lyd_unlink_hash(term);
1281 lyd_hash(term);
1282 LY_CHECK_GOTO(ret = lyd_insert_hash(term), cleanup);
1283 } else if ((term->schema->flags & LYS_KEY) && term->parent) {
1284 /* list needs to be updated if its key was changed */
1285 assert(term->parent->schema->nodetype == LYS_LIST);
Michal Vasko9e685082021-01-29 14:49:09 +01001286 lyd_unlink_hash(lyd_parent(term));
1287 lyd_hash(lyd_parent(term));
1288 LY_CHECK_GOTO(ret = lyd_insert_hash(lyd_parent(term)), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001289 } /* else leaf that is not a key, its value is not used for its hash so it does not change */
1290 }
1291
1292 /* retrun value */
1293 if (!val_change) {
1294 if (dflt_change) {
1295 /* only default flag change */
1296 ret = LY_EEXIST;
1297 } else {
1298 /* no change */
1299 ret = LY_ENOT;
1300 }
1301 } /* else value changed, LY_SUCCESS */
1302
1303cleanup:
Michal Vasko59512fc2020-12-09 18:13:29 +01001304 if (val.realtype) {
1305 type->plugin->free(LYD_CTX(term), &val);
1306 }
Michal Vasko00cbf532020-06-15 13:58:47 +02001307 return ret;
1308}
1309
Michal Vasko41586352020-07-13 13:54:25 +02001310API LY_ERR
1311lyd_change_meta(struct lyd_meta *meta, const char *val_str)
1312{
1313 LY_ERR ret = LY_SUCCESS;
Radek Krejci2b18bf12020-11-06 11:20:20 +01001314 struct lyd_meta *m2 = NULL;
Michal Vasko41586352020-07-13 13:54:25 +02001315 struct lyd_value val;
Radek Krejci857189e2020-09-01 13:26:36 +02001316 ly_bool val_change;
Michal Vasko41586352020-07-13 13:54:25 +02001317
1318 LY_CHECK_ARG_RET(NULL, meta, LY_EINVAL);
1319
1320 if (!val_str) {
1321 val_str = "";
1322 }
1323
1324 /* parse the new value into a new meta structure */
1325 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 +01001326 strlen(val_str), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, 0, NULL), cleanup);
Michal Vasko41586352020-07-13 13:54:25 +02001327
1328 /* compare original and new value */
1329 if (lyd_compare_meta(meta, m2)) {
1330 /* values differ, switch them */
1331 val = meta->value;
1332 meta->value = m2->value;
1333 m2->value = val;
1334 val_change = 1;
1335 } else {
1336 val_change = 0;
1337 }
1338
1339 /* retrun value */
1340 if (!val_change) {
1341 /* no change */
1342 ret = LY_ENOT;
1343 } /* else value changed, LY_SUCCESS */
1344
1345cleanup:
Michal Vasko1a66a5d2020-11-18 18:15:37 +01001346 lyd_free_meta_single(m2);
Michal Vasko41586352020-07-13 13:54:25 +02001347 return ret;
1348}
1349
Michal Vasko3a41dff2020-07-15 14:30:28 +02001350API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001351lyd_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 +02001352 struct lyd_node **node)
Michal Vasko00cbf532020-06-15 13:58:47 +02001353{
Michal Vasko3a41dff2020-07-15 14:30:28 +02001354 return lyd_new_path2(parent, ctx, path, value, 0, options, node, NULL);
Michal Vasko00cbf532020-06-15 13:58:47 +02001355}
1356
Michal Vasko6741dc62021-02-04 09:27:45 +01001357static LY_ERR
1358lyd_new_path_check_find_lypath(struct ly_path *path, const char *str_path, const char *value, uint32_t options)
1359{
1360 LY_ERR ret = LY_SUCCESS, r;
1361 const struct lysc_node *schema;
1362 struct ly_path_predicate *pred;
Michal Vasko6f9b4262021-02-04 12:09:56 +01001363 LY_ARRAY_COUNT_TYPE u, new_count;
Michal Vasko6741dc62021-02-04 09:27:45 +01001364
1365 assert(path);
1366
1367 /* go through all the compiled nodes */
1368 LY_ARRAY_FOR(path, u) {
1369 schema = path[u].node;
Michal Vasko6f9b4262021-02-04 12:09:56 +01001370 new_count = u + 1;
Michal Vasko6741dc62021-02-04 09:27:45 +01001371 if ((schema->nodetype == LYS_LIST) && (path[u].pred_type == LY_PATH_PREDTYPE_NONE)) {
1372 if (schema->flags & LYS_KEYLESS) {
1373 /* creating a new keyless list instance */
1374 break;
1375 } else if ((u < LY_ARRAY_COUNT(path) - 1) || !(options & LYD_NEW_PATH_OPAQ)) {
1376 LOG_LOCSET(schema, NULL, NULL, NULL);
1377 LOGVAL(schema->module->ctx, LYVE_XPATH, "Predicate missing for %s \"%s\" in path \"%s\".",
1378 lys_nodetype2str(schema->nodetype), schema->name, str_path);
1379 LOG_LOCBACK(1, 0, 0, 0);
1380 return LY_EINVAL;
1381 } /* else creating an opaque list without keys */
1382 }
1383 }
1384
Michal Vasko6f9b4262021-02-04 12:09:56 +01001385 if ((schema->nodetype == LYS_LEAFLIST) && (path[new_count - 1].pred_type == LY_PATH_PREDTYPE_NONE)) {
Michal Vasko6741dc62021-02-04 09:27:45 +01001386 /* parse leafref value into a predicate, if not defined in the path */
1387 if (!value) {
1388 value = "";
1389 }
1390
1391 r = LY_SUCCESS;
1392 if (options & LYD_NEW_PATH_OPAQ) {
1393 r = lys_value_validate(NULL, schema, value, strlen(value));
1394 }
1395 if (!r) {
1396 /* store the new predicate */
Michal Vasko6f9b4262021-02-04 12:09:56 +01001397 path[new_count - 1].pred_type = LY_PATH_PREDTYPE_LEAFLIST;
1398 LY_ARRAY_NEW_GOTO(schema->module->ctx, path[new_count - 1].predicates, pred, ret, cleanup);
Michal Vasko6741dc62021-02-04 09:27:45 +01001399
1400 ret = lyd_value_store(schema->module->ctx, &pred->value, ((struct lysc_node_leaflist *)schema)->type, value,
1401 strlen(value), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, schema, NULL);
1402 LY_CHECK_GOTO(ret, cleanup);
1403 ++((struct lysc_type *)pred->value.realtype)->refcount;
1404
1405 if (schema->flags & LYS_CONFIG_R) {
1406 /* creating a new state leaf-list instance */
Michal Vasko6f9b4262021-02-04 12:09:56 +01001407 --new_count;
Michal Vasko6741dc62021-02-04 09:27:45 +01001408 }
1409 } /* else we have opaq flag and the value is not valid, leave no predicate and then create an opaque node */
1410 }
1411
1412 /* hide the nodes that should always be created so they are not found */
Michal Vasko6f9b4262021-02-04 12:09:56 +01001413 while (new_count < LY_ARRAY_COUNT(path)) {
Michal Vasko6741dc62021-02-04 09:27:45 +01001414 LY_ARRAY_DECREMENT(path);
1415 }
1416
1417cleanup:
1418 return ret;
1419}
1420
Michal Vasko00cbf532020-06-15 13:58:47 +02001421API LY_ERR
1422lyd_new_path2(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const void *value,
Radek Krejci1deb5be2020-08-26 16:43:36 +02001423 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 +02001424{
1425 LY_ERR ret = LY_SUCCESS, r;
1426 struct lyxp_expr *exp = NULL;
1427 struct ly_path *p = NULL;
1428 struct lyd_node *nparent = NULL, *nnode = NULL, *node = NULL, *cur_parent;
1429 const struct lysc_node *schema;
Michal Vasko6741dc62021-02-04 09:27:45 +01001430 LY_ARRAY_COUNT_TYPE path_idx = 0, orig_count;
Michal Vasko00cbf532020-06-15 13:58:47 +02001431
1432 LY_CHECK_ARG_RET(ctx, parent || ctx, path, (path[0] == '/') || parent, LY_EINVAL);
1433
1434 if (!ctx) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001435 ctx = LYD_CTX(parent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001436 }
1437
1438 /* parse path */
Michal Vasko6b26e742020-07-17 15:02:10 +02001439 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 +02001440 LY_PATH_PREFIX_OPTIONAL, LY_PATH_PRED_SIMPLE, &exp), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001441
1442 /* compile path */
1443 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 +02001444 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 +01001445 NULL, NULL, &p), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001446
Michal Vasko6741dc62021-02-04 09:27:45 +01001447 /* check the compiled path before searching existing nodes, it may be shortened */
1448 orig_count = LY_ARRAY_COUNT(p);
1449 LY_CHECK_GOTO(ret = lyd_new_path_check_find_lypath(p, path, value, options), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001450
1451 /* try to find any existing nodes in the path */
1452 if (parent) {
1453 ret = ly_path_eval_partial(p, parent, &path_idx, &node);
1454 if (ret == LY_SUCCESS) {
Michal Vasko6741dc62021-02-04 09:27:45 +01001455 if (orig_count == LY_ARRAY_COUNT(p)) {
1456 /* the node exists, are we supposed to update it or is it just a default? */
1457 if (!(options & LYD_NEW_PATH_UPDATE) && !(node->flags & LYD_DEFAULT)) {
1458 LOG_LOCSET(NULL, node, NULL, NULL);
1459 LOGVAL(ctx, LYVE_REFERENCE, "Path \"%s\" already exists", path);
1460 LOG_LOCBACK(0, 1, 0, 0);
1461 ret = LY_EEXIST;
1462 goto cleanup;
1463 }
Michal Vasko00cbf532020-06-15 13:58:47 +02001464
Michal Vasko6741dc62021-02-04 09:27:45 +01001465 /* update the existing node */
1466 ret = lyd_new_path_update(node, value, value_type, &nparent, &nnode);
1467 goto cleanup;
1468 } /* else we were not searching for the whole path */
Michal Vasko00cbf532020-06-15 13:58:47 +02001469 } else if (ret == LY_EINCOMPLETE) {
1470 /* some nodes were found, adjust the iterator to the next segment */
1471 ++path_idx;
1472 } else if (ret == LY_ENOTFOUND) {
1473 /* 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 +01001474 if (lysc_data_parent(p[0].node)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001475 node = parent;
1476 }
1477 } else {
1478 /* error */
1479 goto cleanup;
1480 }
1481 }
1482
Michal Vasko6741dc62021-02-04 09:27:45 +01001483 /* restore the full path for creating new nodes */
1484 while (orig_count > LY_ARRAY_COUNT(p)) {
1485 LY_ARRAY_INCREMENT(p);
1486 }
1487
Michal Vasko00cbf532020-06-15 13:58:47 +02001488 /* create all the non-existing nodes in a loop */
Michal Vaskod989ba02020-08-24 10:59:24 +02001489 for ( ; path_idx < LY_ARRAY_COUNT(p); ++path_idx) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001490 cur_parent = node;
1491 schema = p[path_idx].node;
1492
1493 switch (schema->nodetype) {
1494 case LYS_LIST:
1495 if (!(schema->flags & LYS_KEYLESS)) {
Radek Krejci092e33c2020-10-12 15:33:10 +02001496 if ((options & LYD_NEW_PATH_OPAQ) && (p[path_idx].pred_type == LY_PATH_PREDTYPE_NONE)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001497 /* creating opaque list without keys */
Michal Vasko501af032020-11-11 20:27:44 +01001498 LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), NULL, 0,
1499 schema->module->name, strlen(schema->module->name), NULL, 0, NULL, LY_PREF_JSON, NULL,
1500 LYD_NODEHINT_LIST, &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001501 } else {
Michal Vasko8b776962021-01-12 12:21:49 +01001502 if (p[path_idx].pred_type != LY_PATH_PREDTYPE_LIST) {
1503 LOG_LOCSET(schema, NULL, NULL, NULL);
1504 LOGVAL(ctx, LYVE_XPATH, "Predicate missing for %s \"%s\" in path \"%s\".",
1505 lys_nodetype2str(schema->nodetype), schema->name, path);
1506 LOG_LOCBACK(1, 0, 0, 0);
1507 ret = LY_EINVAL;
1508 goto cleanup;
1509 }
1510
Michal Vasko00cbf532020-06-15 13:58:47 +02001511 LY_CHECK_GOTO(ret = lyd_create_list(schema, p[path_idx].predicates, &node), cleanup);
1512 }
1513 break;
1514 }
Radek Krejcif13b87b2020-12-01 22:02:17 +01001515 /* fall through */
Michal Vasko00cbf532020-06-15 13:58:47 +02001516 case LYS_CONTAINER:
1517 case LYS_NOTIF:
1518 case LYS_RPC:
1519 case LYS_ACTION:
1520 LY_CHECK_GOTO(ret = lyd_create_inner(schema, &node), cleanup);
1521 break;
1522 case LYS_LEAFLIST:
Radek Krejci092e33c2020-10-12 15:33:10 +02001523 if ((options & LYD_NEW_PATH_OPAQ) && (p[path_idx].pred_type == LY_PATH_PREDTYPE_NONE)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001524 /* creating opaque leaf-list without value */
Michal Vasko501af032020-11-11 20:27:44 +01001525 LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), NULL, 0,
1526 schema->module->name, strlen(schema->module->name), NULL, 0, NULL, LY_PREF_JSON, NULL,
1527 LYD_NODEHINT_LEAFLIST, &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001528 } else {
1529 assert(p[path_idx].pred_type == LY_PATH_PREDTYPE_LEAFLIST);
1530 LY_CHECK_GOTO(ret = lyd_create_term2(schema, &p[path_idx].predicates[0].value, &node), cleanup);
1531 }
1532 break;
1533 case LYS_LEAF:
Michal Vasko35880332020-12-08 13:08:12 +01001534 if (lysc_is_key(schema)) {
1535 /* it must have been already created or some error will occur later */
1536 assert(cur_parent);
1537 node = lyd_child(cur_parent);
1538 assert(node && (node->schema == schema));
1539 goto next_iter;
1540 }
1541
1542 /* make sure there is some value */
Michal Vasko00cbf532020-06-15 13:58:47 +02001543 if (!value) {
1544 value = "";
1545 }
1546
1547 r = LY_SUCCESS;
Radek Krejci092e33c2020-10-12 15:33:10 +02001548 if (options & LYD_NEW_PATH_OPAQ) {
Michal Vaskof937cfe2020-08-03 16:07:12 +02001549 r = lys_value_validate(NULL, schema, value, strlen(value));
Michal Vasko00cbf532020-06-15 13:58:47 +02001550 }
1551 if (!r) {
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001552 ret = lyd_create_term(schema, value, strlen(value), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, NULL, &node);
1553 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001554 } else {
1555 /* creating opaque leaf without value */
Michal Vasko501af032020-11-11 20:27:44 +01001556 LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), NULL, 0, schema->module->name,
1557 strlen(schema->module->name), NULL, 0, NULL, LY_PREF_JSON, NULL, 0, &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001558 }
1559 break;
1560 case LYS_ANYDATA:
1561 case LYS_ANYXML:
Michal Vasko366a4a12020-12-04 16:23:57 +01001562 LY_CHECK_GOTO(ret = lyd_create_any(schema, value, value_type, 0, &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001563 break;
1564 default:
1565 LOGINT(ctx);
1566 ret = LY_EINT;
1567 goto cleanup;
1568 }
1569
1570 if (cur_parent) {
1571 /* connect to the parent */
1572 lyd_insert_node(cur_parent, NULL, node);
1573 } else if (parent) {
1574 /* connect to top-level siblings */
1575 lyd_insert_node(NULL, &parent, node);
1576 }
1577
Michal Vasko35880332020-12-08 13:08:12 +01001578next_iter:
Michal Vasko00cbf532020-06-15 13:58:47 +02001579 /* update remembered nodes */
1580 if (!nparent) {
1581 nparent = node;
1582 }
1583 nnode = node;
1584 }
1585
1586cleanup:
1587 lyxp_expr_free(ctx, exp);
Michal Vasko6741dc62021-02-04 09:27:45 +01001588 if (p) {
1589 while (orig_count > LY_ARRAY_COUNT(p)) {
1590 LY_ARRAY_INCREMENT(p);
1591 }
1592 }
Michal Vasko00cbf532020-06-15 13:58:47 +02001593 ly_path_free(ctx, p);
1594 if (!ret) {
1595 /* set out params only on success */
1596 if (new_parent) {
1597 *new_parent = nparent;
1598 }
1599 if (new_node) {
1600 *new_node = nnode;
1601 }
Michal Vaskof4b95ba2020-12-11 08:42:33 +01001602 } else {
1603 lyd_free_tree(nparent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001604 }
1605 return ret;
1606}
1607
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001608LY_ERR
1609lyd_new_implicit_r(struct lyd_node *parent, struct lyd_node **first, const struct lysc_node *sparent,
Radek Krejci1deb5be2020-08-26 16:43:36 +02001610 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 +02001611 struct lyd_node **diff)
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001612{
1613 LY_ERR ret;
Michal Vaskod1e53b92021-01-28 13:11:06 +01001614 const struct lysc_node *iter = NULL;
Radek Krejci2b18bf12020-11-06 11:20:20 +01001615 struct lyd_node *node = NULL;
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001616 struct lyd_value **dflts;
1617 LY_ARRAY_COUNT_TYPE u;
Michal Vasko630d9892020-12-08 17:11:08 +01001618 uint32_t getnext_opts;
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001619
1620 assert(first && (parent || sparent || mod));
1621
1622 if (!sparent && parent) {
1623 sparent = parent->schema;
1624 }
1625
Michal Vasko630d9892020-12-08 17:11:08 +01001626 getnext_opts = LYS_GETNEXT_WITHCHOICE;
1627 if (impl_opts & LYD_IMPLICIT_OUTPUT) {
1628 getnext_opts |= LYS_GETNEXT_OUTPUT;
1629 }
1630
1631 while ((iter = lys_getnext(iter, sparent, mod ? mod->compiled : NULL, getnext_opts))) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001632 if ((impl_opts & LYD_IMPLICIT_NO_STATE) && (iter->flags & LYS_CONFIG_R)) {
1633 continue;
Michal Vasko44b19a12020-08-07 09:21:30 +02001634 } else if ((impl_opts & LYD_IMPLICIT_NO_CONFIG) && (iter->flags & LYS_CONFIG_W)) {
1635 continue;
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001636 }
1637
1638 switch (iter->nodetype) {
1639 case LYS_CHOICE:
Michal Vaskobcf4d7d2020-11-18 18:16:49 +01001640 node = lys_getnext_data(NULL, *first, NULL, iter, NULL);
1641 if (!node && ((struct lysc_node_choice *)iter)->dflt) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001642 /* create default case data */
Michal Vasko14ed9cd2021-01-28 14:16:25 +01001643 LY_CHECK_RET(lyd_new_implicit_r(parent, first, &((struct lysc_node_choice *)iter)->dflt->node,
Michal Vasko69730152020-10-09 16:30:07 +02001644 NULL, node_types, node_when, impl_opts, diff));
Michal Vaskobcf4d7d2020-11-18 18:16:49 +01001645 } else if (node) {
1646 /* create any default data in the existing case */
1647 assert(node->schema->parent->nodetype == LYS_CASE);
1648 LY_CHECK_RET(lyd_new_implicit_r(parent, first, node->schema->parent, NULL, node_types, node_when,
1649 impl_opts, diff));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001650 }
1651 break;
1652 case LYS_CONTAINER:
1653 if (!(iter->flags & LYS_PRESENCE) && lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
1654 /* create default NP container */
1655 LY_CHECK_RET(lyd_create_inner(iter, &node));
Radek Krejci9a3823e2021-01-27 20:26:46 +01001656 node->flags = LYD_DEFAULT | (lysc_node_when(node->schema) ? LYD_WHEN_TRUE : 0);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001657 lyd_insert_node(parent, first, node);
1658
Michal Vaskoe16c7b72021-02-26 10:39:06 +01001659 if (lysc_node_when(iter) && node_when) {
1660 /* remember to resolve when */
1661 LY_CHECK_RET(ly_set_add(node_when, node, 1, NULL));
1662 }
Michal Vaskoe49b6322020-11-05 17:38:36 +01001663 if (diff) {
1664 /* add into diff */
1665 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff));
1666 }
1667
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001668 /* create any default children */
Michal Vaskoe0665742021-02-11 11:08:44 +01001669 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 +02001670 impl_opts, diff));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001671 }
1672 break;
1673 case LYS_LEAF:
Michal Vasko69730152020-10-09 16:30:07 +02001674 if (!(impl_opts & LYD_IMPLICIT_NO_DEFAULTS) && ((struct lysc_node_leaf *)iter)->dflt &&
1675 lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001676 /* create default leaf */
1677 ret = lyd_create_term2(iter, ((struct lysc_node_leaf *)iter)->dflt, &node);
1678 if (ret == LY_EINCOMPLETE) {
1679 if (node_types) {
1680 /* remember to resolve type */
Radek Krejci3d92e442020-10-12 12:48:13 +02001681 LY_CHECK_RET(ly_set_add(node_types, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001682 }
1683 } else if (ret) {
1684 return ret;
1685 }
Radek Krejci9a3823e2021-01-27 20:26:46 +01001686 node->flags = LYD_DEFAULT | (lysc_node_when(node->schema) ? LYD_WHEN_TRUE : 0);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001687 lyd_insert_node(parent, first, node);
1688
Radek Krejci9a3823e2021-01-27 20:26:46 +01001689 if (lysc_node_when(iter) && node_when) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001690 /* remember to resolve when */
Radek Krejci3d92e442020-10-12 12:48:13 +02001691 LY_CHECK_RET(ly_set_add(node_when, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001692 }
1693 if (diff) {
1694 /* add into diff */
1695 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff));
1696 }
1697 }
1698 break;
1699 case LYS_LEAFLIST:
Michal Vasko69730152020-10-09 16:30:07 +02001700 if (!(impl_opts & LYD_IMPLICIT_NO_DEFAULTS) && ((struct lysc_node_leaflist *)iter)->dflts &&
1701 lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001702 /* create all default leaf-lists */
1703 dflts = ((struct lysc_node_leaflist *)iter)->dflts;
1704 LY_ARRAY_FOR(dflts, u) {
1705 ret = lyd_create_term2(iter, dflts[u], &node);
1706 if (ret == LY_EINCOMPLETE) {
1707 if (node_types) {
1708 /* remember to resolve type */
Radek Krejci3d92e442020-10-12 12:48:13 +02001709 LY_CHECK_RET(ly_set_add(node_types, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001710 }
1711 } else if (ret) {
1712 return ret;
1713 }
Radek Krejci9a3823e2021-01-27 20:26:46 +01001714 node->flags = LYD_DEFAULT | (lysc_node_when(node->schema) ? LYD_WHEN_TRUE : 0);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001715 lyd_insert_node(parent, first, node);
1716
Radek Krejci9a3823e2021-01-27 20:26:46 +01001717 if (lysc_node_when(iter) && node_when) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001718 /* remember to resolve when */
Radek Krejci3d92e442020-10-12 12:48:13 +02001719 LY_CHECK_RET(ly_set_add(node_when, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001720 }
1721 if (diff) {
1722 /* add into diff */
1723 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff));
1724 }
1725 }
1726 }
1727 break;
1728 default:
1729 /* without defaults */
1730 break;
1731 }
1732 }
1733
1734 return LY_SUCCESS;
1735}
1736
1737API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001738lyd_new_implicit_tree(struct lyd_node *tree, uint32_t implicit_options, struct lyd_node **diff)
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001739{
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001740 LY_ERR ret = LY_SUCCESS;
Michal Vasko3488ada2020-12-03 14:18:19 +01001741 struct lyd_node *node;
1742 struct ly_set node_when = {0};
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001743
1744 LY_CHECK_ARG_RET(NULL, tree, LY_EINVAL);
1745 if (diff) {
1746 *diff = NULL;
1747 }
1748
Michal Vasko56daf732020-08-10 10:57:18 +02001749 LYD_TREE_DFS_BEGIN(tree, node) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001750 /* skip added default nodes */
Michal Vasko69730152020-10-09 16:30:07 +02001751 if (((node->flags & (LYD_DEFAULT | LYD_NEW)) != (LYD_DEFAULT | LYD_NEW)) &&
1752 (node->schema->nodetype & LYD_NODE_INNER)) {
Michal Vaskoe0665742021-02-11 11:08:44 +01001753 LY_CHECK_GOTO(ret = lyd_new_implicit_r(node, lyd_node_child_p(node), NULL, NULL, NULL,
Michal Vasko3488ada2020-12-03 14:18:19 +01001754 &node_when, implicit_options, diff), cleanup);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001755 }
1756
Michal Vasko56daf732020-08-10 10:57:18 +02001757 LYD_TREE_DFS_END(tree, node);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001758 }
1759
Michal Vasko3488ada2020-12-03 14:18:19 +01001760 /* resolve when and remove any invalid defaults */
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001761 LY_CHECK_GOTO(ret = lyd_validate_unres(&tree, NULL, &node_when, NULL, NULL, diff), cleanup);
Michal Vasko3488ada2020-12-03 14:18:19 +01001762
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001763cleanup:
Michal Vasko3488ada2020-12-03 14:18:19 +01001764 ly_set_erase(&node_when, NULL);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001765 if (ret && diff) {
1766 lyd_free_all(*diff);
1767 *diff = NULL;
1768 }
1769 return ret;
1770}
1771
1772API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001773lyd_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 +02001774{
1775 const struct lys_module *mod;
1776 struct lyd_node *d = NULL;
1777 uint32_t i = 0;
1778 LY_ERR ret = LY_SUCCESS;
1779
1780 LY_CHECK_ARG_RET(ctx, tree, *tree || ctx, LY_EINVAL);
1781 if (diff) {
1782 *diff = NULL;
1783 }
1784 if (!ctx) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001785 ctx = LYD_CTX(*tree);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001786 }
1787
1788 /* add nodes for each module one-by-one */
1789 while ((mod = ly_ctx_get_module_iter(ctx, &i))) {
1790 if (!mod->implemented) {
1791 continue;
1792 }
1793
1794 LY_CHECK_GOTO(ret = lyd_new_implicit_module(tree, mod, implicit_options, diff ? &d : NULL), cleanup);
1795 if (d) {
1796 /* merge into one diff */
1797 lyd_insert_sibling(*diff, d, diff);
1798
1799 d = NULL;
1800 }
1801 }
1802
1803cleanup:
1804 if (ret && diff) {
1805 lyd_free_all(*diff);
1806 *diff = NULL;
1807 }
1808 return ret;
1809}
1810
1811API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001812lyd_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 +02001813{
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001814 LY_ERR ret = LY_SUCCESS;
Michal Vasko3488ada2020-12-03 14:18:19 +01001815 struct lyd_node *root, *d = NULL;
1816 struct ly_set node_when = {0};
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001817
1818 LY_CHECK_ARG_RET(NULL, tree, module, LY_EINVAL);
1819 if (diff) {
1820 *diff = NULL;
1821 }
1822
1823 /* add all top-level defaults for this module */
Michal Vasko3488ada2020-12-03 14:18:19 +01001824 LY_CHECK_GOTO(ret = lyd_new_implicit_r(NULL, tree, NULL, module, NULL, &node_when, implicit_options, diff), cleanup);
1825
1826 /* resolve when and remove any invalid defaults */
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001827 LY_CHECK_GOTO(ret = lyd_validate_unres(tree, module, &node_when, NULL, NULL, diff), cleanup);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001828
1829 /* process nested nodes */
1830 LY_LIST_FOR(*tree, root) {
1831 /* skip added default nodes */
1832 if ((root->flags & (LYD_DEFAULT | LYD_NEW)) != (LYD_DEFAULT | LYD_NEW)) {
1833 LY_CHECK_GOTO(ret = lyd_new_implicit_tree(root, implicit_options, diff ? &d : NULL), cleanup);
1834
1835 if (d) {
1836 /* merge into one diff */
1837 lyd_insert_sibling(*diff, d, diff);
1838
1839 d = NULL;
1840 }
1841 }
1842 }
1843
1844cleanup:
Michal Vasko3488ada2020-12-03 14:18:19 +01001845 ly_set_erase(&node_when, NULL);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001846 if (ret && diff) {
1847 lyd_free_all(*diff);
1848 *diff = NULL;
1849 }
1850 return ret;
1851}
1852
Michal Vasko90932a92020-02-12 14:33:03 +01001853struct lyd_node *
Michal Vaskob104f112020-07-17 09:54:54 +02001854lyd_insert_get_next_anchor(const struct lyd_node *first_sibling, const struct lyd_node *new_node)
Michal Vasko90932a92020-02-12 14:33:03 +01001855{
Michal Vaskob104f112020-07-17 09:54:54 +02001856 const struct lysc_node *schema, *sparent;
Michal Vasko90932a92020-02-12 14:33:03 +01001857 struct lyd_node *match = NULL;
Radek Krejci857189e2020-09-01 13:26:36 +02001858 ly_bool found;
Michal Vasko93b16062020-12-09 18:14:18 +01001859 uint32_t getnext_opts;
Michal Vasko90932a92020-02-12 14:33:03 +01001860
Michal Vaskob104f112020-07-17 09:54:54 +02001861 assert(new_node);
1862
1863 if (!first_sibling || !new_node->schema) {
1864 /* insert at the end, no next anchor */
Michal Vasko90932a92020-02-12 14:33:03 +01001865 return NULL;
1866 }
1867
Michal Vasko93b16062020-12-09 18:14:18 +01001868 getnext_opts = 0;
Michal Vaskod1e53b92021-01-28 13:11:06 +01001869 if (new_node->schema->flags & LYS_IS_OUTPUT) {
Michal Vasko93b16062020-12-09 18:14:18 +01001870 getnext_opts = LYS_GETNEXT_OUTPUT;
1871 }
1872
Michal Vaskob104f112020-07-17 09:54:54 +02001873 if (first_sibling->parent && first_sibling->parent->children_ht) {
1874 /* find the anchor using hashes */
1875 sparent = first_sibling->parent->schema;
Michal Vasko93b16062020-12-09 18:14:18 +01001876 schema = lys_getnext(new_node->schema, sparent, NULL, getnext_opts);
Michal Vaskob104f112020-07-17 09:54:54 +02001877 while (schema) {
1878 /* keep trying to find the first existing instance of the closest following schema sibling,
1879 * otherwise return NULL - inserting at the end */
1880 if (!lyd_find_sibling_schema(first_sibling, schema, &match)) {
1881 break;
1882 }
1883
Michal Vasko93b16062020-12-09 18:14:18 +01001884 schema = lys_getnext(schema, sparent, NULL, getnext_opts);
Michal Vaskob104f112020-07-17 09:54:54 +02001885 }
1886 } else {
1887 /* find the anchor without hashes */
1888 match = (struct lyd_node *)first_sibling;
1889 if (!lysc_data_parent(new_node->schema)) {
1890 /* we are in top-level, skip all the data from preceding modules */
1891 LY_LIST_FOR(match, match) {
1892 if (!match->schema || (strcmp(lyd_owner_module(match)->name, lyd_owner_module(new_node)->name) >= 0)) {
1893 break;
1894 }
1895 }
1896 }
1897
1898 /* get the first schema sibling */
1899 sparent = lysc_data_parent(new_node->schema);
Michal Vasko93b16062020-12-09 18:14:18 +01001900 schema = lys_getnext(NULL, sparent, new_node->schema->module->compiled, getnext_opts);
Michal Vaskob104f112020-07-17 09:54:54 +02001901
1902 found = 0;
1903 LY_LIST_FOR(match, match) {
1904 if (!match->schema || (lyd_owner_module(match) != lyd_owner_module(new_node))) {
1905 /* we have found an opaque node, which must be at the end, so use it OR
1906 * modules do not match, so we must have traversed all the data from new_node module (if any),
1907 * we have found the first node of the next module, that is what we want */
1908 break;
1909 }
1910
1911 /* skip schema nodes until we find the instantiated one */
1912 while (!found) {
1913 if (new_node->schema == schema) {
1914 /* we have found the schema of the new node, continue search to find the first
1915 * data node with a different schema (after our schema) */
1916 found = 1;
1917 break;
1918 }
1919 if (match->schema == schema) {
1920 /* current node (match) is a data node still before the new node, continue search in data */
1921 break;
1922 }
Michal Vasko93b16062020-12-09 18:14:18 +01001923 schema = lys_getnext(schema, sparent, new_node->schema->module->compiled, getnext_opts);
Michal Vaskob104f112020-07-17 09:54:54 +02001924 assert(schema);
1925 }
1926
1927 if (found && (match->schema != new_node->schema)) {
1928 /* find the next node after we have found our node schema data instance */
1929 break;
1930 }
1931 }
Michal Vasko90932a92020-02-12 14:33:03 +01001932 }
1933
1934 return match;
1935}
1936
1937/**
1938 * @brief Insert node after a sibling.
1939 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001940 * Handles inserting into NP containers and key-less lists.
1941 *
Michal Vasko90932a92020-02-12 14:33:03 +01001942 * @param[in] sibling Sibling to insert after.
1943 * @param[in] node Node to insert.
1944 */
1945static void
Michal Vaskof03ed032020-03-04 13:31:44 +01001946lyd_insert_after_node(struct lyd_node *sibling, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001947{
Michal Vasko0249f7c2020-03-05 16:36:40 +01001948 struct lyd_node_inner *par;
1949
Michal Vasko90932a92020-02-12 14:33:03 +01001950 assert(!node->next && (node->prev == node));
1951
1952 node->next = sibling->next;
1953 node->prev = sibling;
1954 sibling->next = node;
1955 if (node->next) {
1956 /* sibling had a succeeding node */
1957 node->next->prev = node;
1958 } else {
1959 /* sibling was last, find first sibling and change its prev */
1960 if (sibling->parent) {
1961 sibling = sibling->parent->child;
1962 } else {
Michal Vaskod989ba02020-08-24 10:59:24 +02001963 for ( ; sibling->prev->next != node; sibling = sibling->prev) {}
Michal Vasko90932a92020-02-12 14:33:03 +01001964 }
1965 sibling->prev = node;
1966 }
1967 node->parent = sibling->parent;
Michal Vasko0249f7c2020-03-05 16:36:40 +01001968
Michal Vasko9f96a052020-03-10 09:41:45 +01001969 for (par = node->parent; par; par = par->parent) {
1970 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
1971 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01001972 par->flags &= ~LYD_DEFAULT;
1973 }
Michal Vaskob104f112020-07-17 09:54:54 +02001974 if (par->schema && (par->schema->nodetype == LYS_LIST) && (par->schema->flags & LYS_KEYLESS)) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001975 /* rehash key-less list */
Michal Vasko9e685082021-01-29 14:49:09 +01001976 lyd_hash(&par->node);
Michal Vasko9f96a052020-03-10 09:41:45 +01001977 }
Michal Vasko0249f7c2020-03-05 16:36:40 +01001978 }
Michal Vasko90932a92020-02-12 14:33:03 +01001979}
1980
1981/**
1982 * @brief Insert node before a sibling.
1983 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001984 * Handles inserting into NP containers and key-less lists.
1985 *
Michal Vasko90932a92020-02-12 14:33:03 +01001986 * @param[in] sibling Sibling to insert before.
1987 * @param[in] node Node to insert.
1988 */
1989static void
Michal Vaskof03ed032020-03-04 13:31:44 +01001990lyd_insert_before_node(struct lyd_node *sibling, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001991{
Michal Vasko0249f7c2020-03-05 16:36:40 +01001992 struct lyd_node_inner *par;
1993
Michal Vasko90932a92020-02-12 14:33:03 +01001994 assert(!node->next && (node->prev == node));
1995
1996 node->next = sibling;
1997 /* covers situation of sibling being first */
1998 node->prev = sibling->prev;
1999 sibling->prev = node;
2000 if (node->prev->next) {
2001 /* sibling had a preceding node */
2002 node->prev->next = node;
2003 } else if (sibling->parent) {
2004 /* sibling was first and we must also change parent child pointer */
2005 sibling->parent->child = node;
2006 }
2007 node->parent = sibling->parent;
Michal Vasko0249f7c2020-03-05 16:36:40 +01002008
Michal Vasko9f96a052020-03-10 09:41:45 +01002009 for (par = node->parent; par; par = par->parent) {
2010 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
2011 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01002012 par->flags &= ~LYD_DEFAULT;
2013 }
Michal Vaskob104f112020-07-17 09:54:54 +02002014 if (par->schema && (par->schema->nodetype == LYS_LIST) && (par->schema->flags & LYS_KEYLESS)) {
Michal Vasko9f96a052020-03-10 09:41:45 +01002015 /* rehash key-less list */
Michal Vasko9e685082021-01-29 14:49:09 +01002016 lyd_hash(&par->node);
Michal Vasko9f96a052020-03-10 09:41:45 +01002017 }
Michal Vasko0249f7c2020-03-05 16:36:40 +01002018 }
Michal Vasko90932a92020-02-12 14:33:03 +01002019}
2020
2021/**
Michal Vaskob104f112020-07-17 09:54:54 +02002022 * @brief Insert node as the first and only child of a parent.
Michal Vasko90932a92020-02-12 14:33:03 +01002023 *
Michal Vasko9f96a052020-03-10 09:41:45 +01002024 * Handles inserting into NP containers and key-less lists.
2025 *
Michal Vasko90932a92020-02-12 14:33:03 +01002026 * @param[in] parent Parent to insert into.
2027 * @param[in] node Node to insert.
2028 */
2029static void
Michal Vaskob104f112020-07-17 09:54:54 +02002030lyd_insert_only_child(struct lyd_node *parent, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01002031{
2032 struct lyd_node_inner *par;
2033
Radek Krejcia1c1e542020-09-29 16:06:52 +02002034 assert(parent && !lyd_child(parent) && !node->next && (node->prev == node));
Michal Vasko52927e22020-03-16 17:26:14 +01002035 assert(!parent->schema || (parent->schema->nodetype & LYD_NODE_INNER));
Michal Vasko90932a92020-02-12 14:33:03 +01002036
2037 par = (struct lyd_node_inner *)parent;
2038
Michal Vaskob104f112020-07-17 09:54:54 +02002039 par->child = node;
Michal Vasko90932a92020-02-12 14:33:03 +01002040 node->parent = par;
Michal Vasko0249f7c2020-03-05 16:36:40 +01002041
Michal Vaskod989ba02020-08-24 10:59:24 +02002042 for ( ; par; par = par->parent) {
Michal Vasko9f96a052020-03-10 09:41:45 +01002043 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
2044 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01002045 par->flags &= ~LYD_DEFAULT;
2046 }
Michal Vasko52927e22020-03-16 17:26:14 +01002047 if (par->schema && (par->schema->nodetype == LYS_LIST) && (par->schema->flags & LYS_KEYLESS)) {
Michal Vasko9f96a052020-03-10 09:41:45 +01002048 /* rehash key-less list */
Michal Vasko9e685082021-01-29 14:49:09 +01002049 lyd_hash(&par->node);
Michal Vasko9f96a052020-03-10 09:41:45 +01002050 }
Michal Vasko0249f7c2020-03-05 16:36:40 +01002051 }
Michal Vasko751cb4d2020-07-14 12:25:28 +02002052}
Michal Vasko0249f7c2020-03-05 16:36:40 +01002053
Michal Vasko751cb4d2020-07-14 12:25:28 +02002054/**
2055 * @brief Learn whether a list instance has all the keys.
2056 *
2057 * @param[in] list List instance to check.
2058 * @return non-zero if all the keys were found,
2059 * @return 0 otherwise.
2060 */
2061static int
2062lyd_insert_has_keys(const struct lyd_node *list)
2063{
2064 const struct lyd_node *key;
2065 const struct lysc_node *skey = NULL;
2066
2067 assert(list->schema->nodetype == LYS_LIST);
Radek Krejcia1c1e542020-09-29 16:06:52 +02002068 key = lyd_child(list);
Michal Vasko751cb4d2020-07-14 12:25:28 +02002069 while ((skey = lys_getnext(skey, list->schema, NULL, 0)) && (skey->flags & LYS_KEY)) {
2070 if (!key || (key->schema != skey)) {
2071 /* key missing */
2072 return 0;
2073 }
2074
2075 key = key->next;
2076 }
2077
2078 /* all keys found */
2079 return 1;
Michal Vasko90932a92020-02-12 14:33:03 +01002080}
2081
2082void
Michal Vaskob104f112020-07-17 09:54:54 +02002083lyd_insert_node(struct lyd_node *parent, struct lyd_node **first_sibling_p, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01002084{
Michal Vaskob104f112020-07-17 09:54:54 +02002085 struct lyd_node *anchor, *first_sibling;
Michal Vasko90932a92020-02-12 14:33:03 +01002086
Michal Vaskob104f112020-07-17 09:54:54 +02002087 /* inserting list without its keys is not supported */
2088 assert((parent || first_sibling_p) && node && (node->hash || !node->schema));
Michal Vaskof756c942020-11-06 17:21:37 +01002089 assert(!parent || !parent->schema ||
2090 (parent->schema->nodetype & (LYS_CONTAINER | LYS_LIST | LYS_RPC | LYS_ACTION | LYS_NOTIF)));
Michal Vasko9b368d32020-02-14 13:53:31 +01002091
Michal Vaskob104f112020-07-17 09:54:54 +02002092 if (!parent && first_sibling_p && (*first_sibling_p) && (*first_sibling_p)->parent) {
Michal Vasko9e685082021-01-29 14:49:09 +01002093 parent = lyd_parent(*first_sibling_p);
Michal Vasko9b368d32020-02-14 13:53:31 +01002094 }
Michal Vasko90932a92020-02-12 14:33:03 +01002095
Michal Vaskob104f112020-07-17 09:54:54 +02002096 /* get first sibling */
Michal Vasko9e685082021-01-29 14:49:09 +01002097 first_sibling = parent ? lyd_child(parent) : *first_sibling_p;
Michal Vasko9f96a052020-03-10 09:41:45 +01002098
Michal Vaskob104f112020-07-17 09:54:54 +02002099 /* find the anchor, our next node, so we can insert before it */
2100 anchor = lyd_insert_get_next_anchor(first_sibling, node);
2101 if (anchor) {
2102 lyd_insert_before_node(anchor, node);
Michal Vasko26123192020-11-09 21:02:34 +01002103 if (!parent && (*first_sibling_p == anchor)) {
2104 /* move first sibling */
2105 *first_sibling_p = node;
2106 }
Michal Vaskob104f112020-07-17 09:54:54 +02002107 } else if (first_sibling) {
2108 lyd_insert_after_node(first_sibling->prev, node);
2109 } else if (parent) {
2110 lyd_insert_only_child(parent, node);
Michal Vasko90932a92020-02-12 14:33:03 +01002111 } else {
Michal Vaskob104f112020-07-17 09:54:54 +02002112 *first_sibling_p = node;
2113 }
2114
2115 /* insert into parent HT */
2116 lyd_insert_hash(node);
2117
2118 /* finish hashes for our parent, if needed and possible */
Michal Vasko9e8de2d2020-09-01 08:17:10 +02002119 if (node->schema && (node->schema->flags & LYS_KEY) && parent && lyd_insert_has_keys(parent)) {
Michal Vaskob104f112020-07-17 09:54:54 +02002120 lyd_hash(parent);
2121
2122 /* now we can insert even the list into its parent HT */
2123 lyd_insert_hash(parent);
Michal Vasko90932a92020-02-12 14:33:03 +01002124 }
Michal Vasko90932a92020-02-12 14:33:03 +01002125}
2126
Michal Vasko717a4c32020-12-07 09:40:10 +01002127/**
2128 * @brief Check schema place of a node to be inserted.
2129 *
2130 * @param[in] parent Schema node of the parent data node.
2131 * @param[in] sibling Schema node of a sibling data node.
2132 * @param[in] schema Schema node if the data node to be inserted.
2133 * @return LY_SUCCESS on success.
2134 * @return LY_EINVAL if the place is invalid.
2135 */
Michal Vaskof03ed032020-03-04 13:31:44 +01002136static LY_ERR
Michal Vasko717a4c32020-12-07 09:40:10 +01002137lyd_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 +01002138{
2139 const struct lysc_node *par2;
2140
Michal Vasko62ed12d2020-05-21 10:08:25 +02002141 assert(!parent || !(parent->nodetype & (LYS_CASE | LYS_CHOICE)));
Michal Vasko717a4c32020-12-07 09:40:10 +01002142 assert(!sibling || !(sibling->nodetype & (LYS_CASE | LYS_CHOICE)));
2143 assert(!schema || !(schema->nodetype & (LYS_CASE | LYS_CHOICE)));
Michal Vaskof03ed032020-03-04 13:31:44 +01002144
Michal Vasko717a4c32020-12-07 09:40:10 +01002145 if (!schema || (!parent && !sibling)) {
Michal Vasko71e795e2020-12-04 16:27:37 +01002146 /* opaque nodes can be inserted wherever */
2147 return LY_SUCCESS;
2148 }
2149
Michal Vasko717a4c32020-12-07 09:40:10 +01002150 if (!parent) {
2151 parent = lysc_data_parent(sibling);
2152 }
2153
Michal Vaskof03ed032020-03-04 13:31:44 +01002154 /* find schema parent */
Michal Vasko62ed12d2020-05-21 10:08:25 +02002155 par2 = lysc_data_parent(schema);
Michal Vaskof03ed032020-03-04 13:31:44 +01002156
2157 if (parent) {
2158 /* inner node */
2159 if (par2 != parent) {
Michal Vaskob104f112020-07-17 09:54:54 +02002160 LOGERR(schema->module->ctx, LY_EINVAL, "Cannot insert, parent of \"%s\" is not \"%s\".", schema->name,
Michal Vasko69730152020-10-09 16:30:07 +02002161 parent->name);
Michal Vaskof03ed032020-03-04 13:31:44 +01002162 return LY_EINVAL;
2163 }
2164 } else {
2165 /* top-level node */
2166 if (par2) {
Radek Krejcif6d14cb2020-07-02 16:11:45 +02002167 LOGERR(schema->module->ctx, LY_EINVAL, "Cannot insert, node \"%s\" is not top-level.", schema->name);
Michal Vaskof03ed032020-03-04 13:31:44 +01002168 return LY_EINVAL;
2169 }
2170 }
2171
2172 return LY_SUCCESS;
2173}
2174
2175API LY_ERR
Michal Vaskob104f112020-07-17 09:54:54 +02002176lyd_insert_child(struct lyd_node *parent, struct lyd_node *node)
Michal Vaskof03ed032020-03-04 13:31:44 +01002177{
2178 struct lyd_node *iter;
2179
Michal Vasko0ab974d2021-02-24 13:18:26 +01002180 LY_CHECK_ARG_RET(NULL, parent, node, !parent->schema || (parent->schema->nodetype & LYD_NODE_INNER), LY_EINVAL);
Michal Vaskof03ed032020-03-04 13:31:44 +01002181
Michal Vasko717a4c32020-12-07 09:40:10 +01002182 LY_CHECK_RET(lyd_insert_check_schema(parent->schema, NULL, node->schema));
Michal Vaskof03ed032020-03-04 13:31:44 +01002183
Michal Vasko0ab974d2021-02-24 13:18:26 +01002184 if (node->schema && (node->schema->flags & LYS_KEY)) {
Michal Vaskof03ed032020-03-04 13:31:44 +01002185 LOGERR(parent->schema->module->ctx, LY_EINVAL, "Cannot insert key \"%s\".", node->schema->name);
2186 return LY_EINVAL;
2187 }
2188
2189 if (node->parent || node->prev->next) {
2190 lyd_unlink_tree(node);
2191 }
2192
2193 while (node) {
2194 iter = node->next;
2195 lyd_unlink_tree(node);
2196 lyd_insert_node(parent, NULL, node);
2197 node = iter;
2198 }
2199 return LY_SUCCESS;
2200}
2201
2202API LY_ERR
Michal Vaskob104f112020-07-17 09:54:54 +02002203lyd_insert_sibling(struct lyd_node *sibling, struct lyd_node *node, struct lyd_node **first)
Michal Vaskob1b5c262020-03-05 14:29:47 +01002204{
2205 struct lyd_node *iter;
2206
Michal Vaskob104f112020-07-17 09:54:54 +02002207 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Michal Vaskob1b5c262020-03-05 14:29:47 +01002208
Michal Vaskob104f112020-07-17 09:54:54 +02002209 if (sibling) {
Michal Vasko717a4c32020-12-07 09:40:10 +01002210 LY_CHECK_RET(lyd_insert_check_schema(NULL, sibling->schema, node->schema));
Michal Vaskob1b5c262020-03-05 14:29:47 +01002211 }
2212
Michal Vasko553d0b52020-12-04 16:27:52 +01002213 if (sibling == node) {
2214 /* we need to keep the connection to siblings so we can insert into them */
2215 sibling = sibling->prev;
2216 }
2217
Michal Vaskob1b5c262020-03-05 14:29:47 +01002218 if (node->parent || node->prev->next) {
2219 lyd_unlink_tree(node);
2220 }
2221
2222 while (node) {
Michal Vasko71e795e2020-12-04 16:27:37 +01002223 if (lysc_is_key(node->schema)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002224 LOGERR(LYD_CTX(node), LY_EINVAL, "Cannot insert key \"%s\".", node->schema->name);
Michal Vaskob104f112020-07-17 09:54:54 +02002225 return LY_EINVAL;
2226 }
2227
Michal Vaskob1b5c262020-03-05 14:29:47 +01002228 iter = node->next;
2229 lyd_unlink_tree(node);
2230 lyd_insert_node(NULL, &sibling, node);
2231 node = iter;
2232 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01002233
Michal Vaskob104f112020-07-17 09:54:54 +02002234 if (first) {
2235 /* find the first sibling */
2236 *first = sibling;
2237 while ((*first)->prev->next) {
2238 *first = (*first)->prev;
Michal Vasko0249f7c2020-03-05 16:36:40 +01002239 }
2240 }
2241
2242 return LY_SUCCESS;
2243}
2244
Michal Vaskob1b5c262020-03-05 14:29:47 +01002245API LY_ERR
Michal Vaskof03ed032020-03-04 13:31:44 +01002246lyd_insert_before(struct lyd_node *sibling, struct lyd_node *node)
2247{
Michal Vaskof03ed032020-03-04 13:31:44 +01002248 LY_CHECK_ARG_RET(NULL, sibling, node, LY_EINVAL);
2249
Michal Vasko717a4c32020-12-07 09:40:10 +01002250 LY_CHECK_RET(lyd_insert_check_schema(NULL, sibling->schema, node->schema));
Michal Vaskof03ed032020-03-04 13:31:44 +01002251
Michal Vaskob104f112020-07-17 09:54:54 +02002252 if (!(node->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !(node->schema->flags & LYS_ORDBY_USER)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002253 LOGERR(LYD_CTX(sibling), LY_EINVAL, "Can be used only for user-ordered nodes.");
Michal Vaskof03ed032020-03-04 13:31:44 +01002254 return LY_EINVAL;
2255 }
2256
Michal Vasko4bc2ce32020-12-08 10:06:16 +01002257 lyd_unlink_tree(node);
2258 lyd_insert_before_node(sibling, node);
2259 lyd_insert_hash(node);
Michal Vaskof03ed032020-03-04 13:31:44 +01002260
Michal Vaskof03ed032020-03-04 13:31:44 +01002261 return LY_SUCCESS;
2262}
2263
2264API LY_ERR
2265lyd_insert_after(struct lyd_node *sibling, struct lyd_node *node)
2266{
Michal Vaskof03ed032020-03-04 13:31:44 +01002267 LY_CHECK_ARG_RET(NULL, sibling, node, LY_EINVAL);
2268
Michal Vasko717a4c32020-12-07 09:40:10 +01002269 LY_CHECK_RET(lyd_insert_check_schema(NULL, sibling->schema, node->schema));
Michal Vaskof03ed032020-03-04 13:31:44 +01002270
Michal Vaskob104f112020-07-17 09:54:54 +02002271 if (!(node->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !(node->schema->flags & LYS_ORDBY_USER)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002272 LOGERR(LYD_CTX(sibling), LY_EINVAL, "Can be used only for user-ordered nodes.");
Michal Vaskof03ed032020-03-04 13:31:44 +01002273 return LY_EINVAL;
2274 }
2275
Michal Vasko4bc2ce32020-12-08 10:06:16 +01002276 lyd_unlink_tree(node);
2277 lyd_insert_after_node(sibling, node);
2278 lyd_insert_hash(node);
Michal Vaskof03ed032020-03-04 13:31:44 +01002279
Michal Vaskof03ed032020-03-04 13:31:44 +01002280 return LY_SUCCESS;
2281}
2282
2283API void
2284lyd_unlink_tree(struct lyd_node *node)
2285{
2286 struct lyd_node *iter;
2287
2288 if (!node) {
2289 return;
2290 }
2291
Michal Vaskob104f112020-07-17 09:54:54 +02002292 /* update hashes while still linked into the tree */
2293 lyd_unlink_hash(node);
2294
Michal Vaskof03ed032020-03-04 13:31:44 +01002295 /* unlink from siblings */
2296 if (node->prev->next) {
2297 node->prev->next = node->next;
2298 }
2299 if (node->next) {
2300 node->next->prev = node->prev;
2301 } else {
2302 /* unlinking the last node */
2303 if (node->parent) {
2304 iter = node->parent->child;
2305 } else {
2306 iter = node->prev;
2307 while (iter->prev != node) {
2308 iter = iter->prev;
2309 }
2310 }
2311 /* update the "last" pointer from the first node */
2312 iter->prev = node->prev;
2313 }
2314
2315 /* unlink from parent */
2316 if (node->parent) {
2317 if (node->parent->child == node) {
2318 /* the node is the first child */
2319 node->parent->child = node->next;
2320 }
2321
Michal Vaskoab49dbe2020-07-17 12:32:47 +02002322 /* check for NP container whether its last non-default node is not being unlinked */
Michal Vasko69730152020-10-09 16:30:07 +02002323 if (node->parent->schema && (node->parent->schema->nodetype == LYS_CONTAINER) &&
2324 !(node->parent->flags & LYD_DEFAULT) && !(node->parent->schema->flags & LYS_PRESENCE)) {
Michal Vaskoab49dbe2020-07-17 12:32:47 +02002325 LY_LIST_FOR(node->parent->child, iter) {
2326 if ((iter != node) && !(iter->flags & LYD_DEFAULT)) {
2327 break;
2328 }
2329 }
2330 if (!iter) {
2331 node->parent->flags |= LYD_DEFAULT;
2332 }
2333 }
2334
Michal Vaskof03ed032020-03-04 13:31:44 +01002335 /* check for keyless list and update its hash */
Michal Vasko9e685082021-01-29 14:49:09 +01002336 for (iter = lyd_parent(node); iter; iter = lyd_parent(iter)) {
Michal Vasko413c7f22020-05-05 12:34:06 +02002337 if (iter->schema && (iter->schema->flags & LYS_KEYLESS)) {
Michal Vasko47718292021-02-26 10:12:44 +01002338 lyd_unlink_hash(iter);
Michal Vaskof03ed032020-03-04 13:31:44 +01002339 lyd_hash(iter);
Michal Vasko47718292021-02-26 10:12:44 +01002340 lyd_insert_hash(iter);
Michal Vaskof03ed032020-03-04 13:31:44 +01002341 }
2342 }
2343
2344 node->parent = NULL;
2345 }
2346
2347 node->next = NULL;
2348 node->prev = node;
2349}
2350
Michal Vaskoa5da3292020-08-12 13:10:50 +02002351void
Michal Vasko871a0252020-11-11 18:35:24 +01002352lyd_insert_meta(struct lyd_node *parent, struct lyd_meta *meta, ly_bool clear_dflt)
Radek Krejci1798aae2020-07-14 13:26:06 +02002353{
2354 struct lyd_meta *last, *iter;
2355
2356 assert(parent);
Michal Vaskoa5da3292020-08-12 13:10:50 +02002357
2358 if (!meta) {
2359 return;
2360 }
Radek Krejci1798aae2020-07-14 13:26:06 +02002361
2362 for (iter = meta; iter; iter = iter->next) {
2363 iter->parent = parent;
2364 }
2365
2366 /* insert as the last attribute */
2367 if (parent->meta) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002368 for (last = parent->meta; last->next; last = last->next) {}
Radek Krejci1798aae2020-07-14 13:26:06 +02002369 last->next = meta;
2370 } else {
2371 parent->meta = meta;
2372 }
2373
2374 /* remove default flags from NP containers */
Michal Vasko871a0252020-11-11 18:35:24 +01002375 while (clear_dflt && parent && (parent->schema->nodetype == LYS_CONTAINER) && (parent->flags & LYD_DEFAULT)) {
Radek Krejci1798aae2020-07-14 13:26:06 +02002376 parent->flags &= ~LYD_DEFAULT;
Michal Vasko9e685082021-01-29 14:49:09 +01002377 parent = lyd_parent(parent);
Radek Krejci1798aae2020-07-14 13:26:06 +02002378 }
Radek Krejci1798aae2020-07-14 13:26:06 +02002379}
2380
2381LY_ERR
Michal Vasko9f96a052020-03-10 09:41:45 +01002382lyd_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 +02002383 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 +01002384 void *prefix_data, uint32_t hints, ly_bool clear_dflt, ly_bool *incomplete)
Michal Vasko90932a92020-02-12 14:33:03 +01002385{
Radek Krejci2efc45b2020-12-22 16:25:44 +01002386 LY_ERR ret = LY_SUCCESS;
Michal Vasko90932a92020-02-12 14:33:03 +01002387 struct lysc_ext_instance *ant = NULL;
Michal Vasko9f96a052020-03-10 09:41:45 +01002388 struct lyd_meta *mt, *last;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002389 LY_ARRAY_COUNT_TYPE u;
Michal Vasko90932a92020-02-12 14:33:03 +01002390
Michal Vasko9f96a052020-03-10 09:41:45 +01002391 assert((parent || meta) && mod);
Michal Vasko6f4cbb62020-02-28 11:15:47 +01002392
Radek Krejciddace2c2021-01-08 11:30:56 +01002393 LOG_LOCSET(parent ? parent->schema : NULL, parent, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01002394
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002395 LY_ARRAY_FOR(mod->compiled->exts, u) {
Michal Vasko69730152020-10-09 16:30:07 +02002396 if ((mod->compiled->exts[u].def->plugin == lyext_plugins_internal[LYEXT_PLUGIN_INTERNAL_ANNOTATION].plugin) &&
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002397 !ly_strncmp(mod->compiled->exts[u].argument, name, name_len)) {
Michal Vasko90932a92020-02-12 14:33:03 +01002398 /* we have the annotation definition */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002399 ant = &mod->compiled->exts[u];
Michal Vasko90932a92020-02-12 14:33:03 +01002400 break;
2401 }
2402 }
2403 if (!ant) {
2404 /* attribute is not defined as a metadata annotation (RFC 7952) */
Radek Krejci2efc45b2020-12-22 16:25:44 +01002405 LOGVAL(mod->ctx, LYVE_REFERENCE, "Annotation definition for attribute \"%s:%.*s\" not found.",
Michal Vasko90932a92020-02-12 14:33:03 +01002406 mod->name, name_len, name);
Radek Krejci2efc45b2020-12-22 16:25:44 +01002407 ret = LY_EINVAL;
2408 goto cleanup;
Michal Vasko90932a92020-02-12 14:33:03 +01002409 }
2410
Michal Vasko9f96a052020-03-10 09:41:45 +01002411 mt = calloc(1, sizeof *mt);
Radek Krejci2efc45b2020-12-22 16:25:44 +01002412 LY_CHECK_ERR_GOTO(!mt, LOGMEM(mod->ctx); ret = LY_EMEM, cleanup);
Michal Vasko9f96a052020-03-10 09:41:45 +01002413 mt->parent = parent;
2414 mt->annotation = ant;
Radek Krejci2efc45b2020-12-22 16:25:44 +01002415 ret = lyd_value_store(mod->ctx, &mt->value, ((struct lyext_metadata *)ant->data)->type, value, value_len, dynamic,
2416 format, prefix_data, hints, parent ? parent->schema : NULL, incomplete);
2417 LY_CHECK_ERR_GOTO(ret, free(mt), cleanup);
2418 ret = lydict_insert(mod->ctx, name, name_len, &mt->name);
2419 LY_CHECK_ERR_GOTO(ret, free(mt), cleanup);
Michal Vasko90932a92020-02-12 14:33:03 +01002420
Michal Vasko6f4cbb62020-02-28 11:15:47 +01002421 /* insert as the last attribute */
2422 if (parent) {
Michal Vasko871a0252020-11-11 18:35:24 +01002423 lyd_insert_meta(parent, mt, clear_dflt);
Michal Vasko9f96a052020-03-10 09:41:45 +01002424 } else if (*meta) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002425 for (last = *meta; last->next; last = last->next) {}
Michal Vasko9f96a052020-03-10 09:41:45 +01002426 last->next = mt;
Michal Vasko90932a92020-02-12 14:33:03 +01002427 }
2428
Michal Vasko9f96a052020-03-10 09:41:45 +01002429 if (meta) {
2430 *meta = mt;
Michal Vasko90932a92020-02-12 14:33:03 +01002431 }
Radek Krejci2efc45b2020-12-22 16:25:44 +01002432
2433cleanup:
Radek Krejciddace2c2021-01-08 11:30:56 +01002434 LOG_LOCBACK((parent && parent->schema) ? 1 : 0, parent ? 1 : 0, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +01002435 return ret;
Michal Vasko90932a92020-02-12 14:33:03 +01002436}
2437
Michal Vaskoa5da3292020-08-12 13:10:50 +02002438void
2439lyd_insert_attr(struct lyd_node *parent, struct lyd_attr *attr)
2440{
2441 struct lyd_attr *last, *iter;
2442 struct lyd_node_opaq *opaq;
2443
2444 assert(parent && !parent->schema);
2445
2446 if (!attr) {
2447 return;
2448 }
2449
2450 opaq = (struct lyd_node_opaq *)parent;
2451 for (iter = attr; iter; iter = iter->next) {
2452 iter->parent = opaq;
2453 }
2454
2455 /* insert as the last attribute */
2456 if (opaq->attr) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002457 for (last = opaq->attr; last->next; last = last->next) {}
Michal Vaskoa5da3292020-08-12 13:10:50 +02002458 last->next = attr;
2459 } else {
2460 opaq->attr = attr;
2461 }
2462}
2463
Michal Vasko52927e22020-03-16 17:26:14 +01002464LY_ERR
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002465lyd_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 +01002466 const char *prefix, size_t prefix_len, const char *module_key, size_t module_key_len, const char *value,
2467 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 +01002468{
Radek Krejci011e4aa2020-09-04 15:22:31 +02002469 LY_ERR ret = LY_SUCCESS;
Radek Krejci1798aae2020-07-14 13:26:06 +02002470 struct lyd_attr *at, *last;
Michal Vasko52927e22020-03-16 17:26:14 +01002471
2472 assert(ctx && (parent || attr) && (!parent || !parent->schema));
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002473 assert(name && name_len && format);
Michal Vasko52927e22020-03-16 17:26:14 +01002474
2475 if (!value_len) {
2476 value = "";
2477 }
2478
2479 at = calloc(1, sizeof *at);
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01002480 LY_CHECK_ERR_RET(!at, LOGMEM(ctx); ly_free_prefix_data(format, val_prefix_data), LY_EMEM);
Radek Krejcid46e46a2020-09-15 14:22:42 +02002481
Michal Vaskoad92b672020-11-12 13:11:31 +01002482 LY_CHECK_GOTO(ret = lydict_insert(ctx, name, name_len, &at->name.name), finish);
Michal Vasko501af032020-11-11 20:27:44 +01002483 if (prefix_len) {
Michal Vaskoad92b672020-11-12 13:11:31 +01002484 LY_CHECK_GOTO(ret = lydict_insert(ctx, prefix, prefix_len, &at->name.prefix), finish);
Michal Vasko501af032020-11-11 20:27:44 +01002485 }
2486 if (module_key_len) {
Michal Vaskoad92b672020-11-12 13:11:31 +01002487 LY_CHECK_GOTO(ret = lydict_insert(ctx, module_key, module_key_len, &at->name.module_ns), finish);
Michal Vasko501af032020-11-11 20:27:44 +01002488 }
2489
Michal Vasko52927e22020-03-16 17:26:14 +01002490 if (dynamic && *dynamic) {
Radek Krejci011e4aa2020-09-04 15:22:31 +02002491 ret = lydict_insert_zc(ctx, (char *)value, &at->value);
2492 LY_CHECK_GOTO(ret, finish);
Michal Vasko52927e22020-03-16 17:26:14 +01002493 *dynamic = 0;
2494 } else {
Radek Krejci011e4aa2020-09-04 15:22:31 +02002495 LY_CHECK_GOTO(ret = lydict_insert(ctx, value, value_len, &at->value), finish);
Michal Vasko52927e22020-03-16 17:26:14 +01002496 }
Michal Vasko501af032020-11-11 20:27:44 +01002497 at->format = format;
2498 at->val_prefix_data = val_prefix_data;
2499 at->hints = hints;
Michal Vasko52927e22020-03-16 17:26:14 +01002500
2501 /* insert as the last attribute */
2502 if (parent) {
Michal Vaskoa5da3292020-08-12 13:10:50 +02002503 lyd_insert_attr(parent, at);
Michal Vasko52927e22020-03-16 17:26:14 +01002504 } else if (*attr) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002505 for (last = *attr; last->next; last = last->next) {}
Michal Vasko52927e22020-03-16 17:26:14 +01002506 last->next = at;
2507 }
2508
Radek Krejci011e4aa2020-09-04 15:22:31 +02002509finish:
2510 if (ret) {
2511 lyd_free_attr_single(ctx, at);
2512 } else if (attr) {
Michal Vasko52927e22020-03-16 17:26:14 +01002513 *attr = at;
2514 }
2515 return LY_SUCCESS;
2516}
2517
Radek Krejci084289f2019-07-09 17:35:30 +02002518API const struct lyd_node_term *
Michal Vasko004d3152020-06-11 19:59:22 +02002519lyd_target(const struct ly_path *path, const struct lyd_node *tree)
Radek Krejci084289f2019-07-09 17:35:30 +02002520{
Michal Vasko004d3152020-06-11 19:59:22 +02002521 struct lyd_node *target;
Radek Krejci084289f2019-07-09 17:35:30 +02002522
Michal Vasko004d3152020-06-11 19:59:22 +02002523 if (ly_path_eval(path, tree, &target)) {
2524 return NULL;
Radek Krejci084289f2019-07-09 17:35:30 +02002525 }
2526
Michal Vasko004d3152020-06-11 19:59:22 +02002527 return (struct lyd_node_term *)target;
Radek Krejci084289f2019-07-09 17:35:30 +02002528}
2529
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002530API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002531lyd_compare_single(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options)
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002532{
2533 const struct lyd_node *iter1, *iter2;
2534 struct lyd_node_term *term1, *term2;
2535 struct lyd_node_any *any1, *any2;
Michal Vasko52927e22020-03-16 17:26:14 +01002536 struct lyd_node_opaq *opaq1, *opaq2;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002537 size_t len1, len2;
Radek Krejci084289f2019-07-09 17:35:30 +02002538
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002539 if (!node1 || !node2) {
2540 if (node1 == node2) {
2541 return LY_SUCCESS;
2542 } else {
2543 return LY_ENOT;
2544 }
2545 }
2546
Michal Vaskob7be7a82020-08-20 09:09:04 +02002547 if ((LYD_CTX(node1) != LYD_CTX(node2)) || (node1->schema != node2->schema)) {
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002548 return LY_ENOT;
2549 }
2550
2551 if (node1->hash != node2->hash) {
2552 return LY_ENOT;
2553 }
Michal Vasko52927e22020-03-16 17:26:14 +01002554 /* 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 +02002555
Michal Vasko52927e22020-03-16 17:26:14 +01002556 if (!node1->schema) {
2557 opaq1 = (struct lyd_node_opaq *)node1;
2558 opaq2 = (struct lyd_node_opaq *)node2;
Michal Vaskoad92b672020-11-12 13:11:31 +01002559 if ((opaq1->name.name != opaq2->name.name) || (opaq1->format != opaq2->format) ||
2560 (opaq1->name.module_ns != opaq2->name.module_ns)) {
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002561 return LY_ENOT;
2562 }
Michal Vasko52927e22020-03-16 17:26:14 +01002563 switch (opaq1->format) {
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01002564 case LY_PREF_XML:
2565 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 +01002566 return LY_ENOT;
2567 }
2568 break;
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01002569 case LY_PREF_JSON:
Radek Krejci1798aae2020-07-14 13:26:06 +02002570 /* prefixes in JSON are unique, so it is not necessary to canonize the values */
2571 if (strcmp(opaq1->value, opaq2->value)) {
2572 return LY_ENOT;
2573 }
2574 break;
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01002575 default:
Michal Vasko52927e22020-03-16 17:26:14 +01002576 /* not allowed */
Michal Vaskob7be7a82020-08-20 09:09:04 +02002577 LOGINT(LYD_CTX(node1));
Michal Vasko52927e22020-03-16 17:26:14 +01002578 return LY_EINT;
2579 }
2580 if (options & LYD_COMPARE_FULL_RECURSION) {
2581 iter1 = opaq1->child;
2582 iter2 = opaq2->child;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002583 goto all_children_compare;
Michal Vasko52927e22020-03-16 17:26:14 +01002584 }
2585 return LY_SUCCESS;
2586 } else {
2587 switch (node1->schema->nodetype) {
2588 case LYS_LEAF:
2589 case LYS_LEAFLIST:
2590 if (options & LYD_COMPARE_DEFAULTS) {
2591 if ((node1->flags & LYD_DEFAULT) != (node2->flags & LYD_DEFAULT)) {
2592 return LY_ENOT;
2593 }
2594 }
2595
Michal Vasko1a2bf2e2020-06-16 13:07:48 +02002596 term1 = (struct lyd_node_term *)node1;
2597 term2 = (struct lyd_node_term *)node2;
Michal Vasko1a2bf2e2020-06-16 13:07:48 +02002598 return term1->value.realtype->plugin->compare(&term1->value, &term2->value);
Michal Vasko52927e22020-03-16 17:26:14 +01002599 case LYS_CONTAINER:
2600 if (options & LYD_COMPARE_DEFAULTS) {
2601 if ((node1->flags & LYD_DEFAULT) != (node2->flags & LYD_DEFAULT)) {
2602 return LY_ENOT;
2603 }
2604 }
2605 if (options & LYD_COMPARE_FULL_RECURSION) {
Michal Vasko9e685082021-01-29 14:49:09 +01002606 iter1 = lyd_child(node1);
2607 iter2 = lyd_child(node2);
Michal Vasko52927e22020-03-16 17:26:14 +01002608 goto all_children_compare;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002609 }
2610 return LY_SUCCESS;
Michal Vasko1bf09392020-03-27 12:38:10 +01002611 case LYS_RPC:
Michal Vasko52927e22020-03-16 17:26:14 +01002612 case LYS_ACTION:
2613 if (options & LYD_COMPARE_FULL_RECURSION) {
2614 /* TODO action/RPC
2615 goto all_children_compare;
2616 */
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002617 }
2618 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01002619 case LYS_NOTIF:
2620 if (options & LYD_COMPARE_FULL_RECURSION) {
2621 /* TODO Notification
2622 goto all_children_compare;
2623 */
2624 }
2625 return LY_SUCCESS;
2626 case LYS_LIST:
Michal Vasko9e685082021-01-29 14:49:09 +01002627 iter1 = lyd_child(node1);
2628 iter2 = lyd_child(node2);
Michal Vasko52927e22020-03-16 17:26:14 +01002629
2630 if (!(node1->schema->flags & LYS_KEYLESS) && !(options & LYD_COMPARE_FULL_RECURSION)) {
2631 /* lists with keys, their equivalence is based on their keys */
Michal Vasko544e58a2021-01-28 14:33:41 +01002632 for (const struct lysc_node *key = lysc_node_child(node1->schema);
Michal Vaskoc57d9a92020-06-23 13:28:27 +02002633 key && (key->flags & LYS_KEY);
Michal Vasko52927e22020-03-16 17:26:14 +01002634 key = key->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02002635 if (lyd_compare_single(iter1, iter2, options)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002636 return LY_ENOT;
2637 }
2638 iter1 = iter1->next;
2639 iter2 = iter2->next;
2640 }
2641 } else {
2642 /* lists without keys, their equivalence is based on equivalence of all the children (both direct and indirect) */
2643
Radek Krejci0f969882020-08-21 16:56:47 +02002644all_children_compare:
Michal Vasko52927e22020-03-16 17:26:14 +01002645 if (!iter1 && !iter2) {
2646 /* no children, nothing to compare */
2647 return LY_SUCCESS;
2648 }
2649
Michal Vaskod989ba02020-08-24 10:59:24 +02002650 for ( ; iter1 && iter2; iter1 = iter1->next, iter2 = iter2->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02002651 if (lyd_compare_single(iter1, iter2, options | LYD_COMPARE_FULL_RECURSION)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002652 return LY_ENOT;
2653 }
2654 }
2655 if (iter1 || iter2) {
2656 return LY_ENOT;
2657 }
2658 }
2659 return LY_SUCCESS;
2660 case LYS_ANYXML:
2661 case LYS_ANYDATA:
Michal Vasko22df3f02020-08-24 13:29:22 +02002662 any1 = (struct lyd_node_any *)node1;
2663 any2 = (struct lyd_node_any *)node2;
Michal Vasko52927e22020-03-16 17:26:14 +01002664
2665 if (any1->value_type != any2->value_type) {
2666 return LY_ENOT;
2667 }
2668 switch (any1->value_type) {
2669 case LYD_ANYDATA_DATATREE:
2670 iter1 = any1->value.tree;
2671 iter2 = any2->value.tree;
2672 goto all_children_compare;
2673 case LYD_ANYDATA_STRING:
2674 case LYD_ANYDATA_XML:
2675 case LYD_ANYDATA_JSON:
2676 len1 = strlen(any1->value.str);
2677 len2 = strlen(any2->value.str);
Michal Vasko69730152020-10-09 16:30:07 +02002678 if ((len1 != len2) || strcmp(any1->value.str, any2->value.str)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002679 return LY_ENOT;
2680 }
2681 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01002682 case LYD_ANYDATA_LYB:
Michal Vasko60ea6352020-06-29 13:39:39 +02002683 len1 = lyd_lyb_data_length(any1->value.mem);
2684 len2 = lyd_lyb_data_length(any2->value.mem);
Michal Vasko69730152020-10-09 16:30:07 +02002685 if ((len1 != len2) || memcmp(any1->value.mem, any2->value.mem, len1)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002686 return LY_ENOT;
2687 }
2688 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01002689 }
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002690 }
2691 }
2692
Michal Vaskob7be7a82020-08-20 09:09:04 +02002693 LOGINT(LYD_CTX(node1));
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002694 return LY_EINT;
2695}
Radek Krejci22ebdba2019-07-25 13:59:43 +02002696
Michal Vasko21725742020-06-29 11:49:25 +02002697API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002698lyd_compare_siblings(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options)
Michal Vasko8f359bf2020-07-28 10:41:15 +02002699{
Michal Vaskod989ba02020-08-24 10:59:24 +02002700 for ( ; node1 && node2; node1 = node1->next, node2 = node2->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02002701 LY_CHECK_RET(lyd_compare_single(node1, node2, options));
2702 }
2703
Michal Vasko11a81432020-07-28 16:31:29 +02002704 if (node1 == node2) {
2705 return LY_SUCCESS;
Michal Vasko8f359bf2020-07-28 10:41:15 +02002706 }
Michal Vasko11a81432020-07-28 16:31:29 +02002707 return LY_ENOT;
Michal Vasko8f359bf2020-07-28 10:41:15 +02002708}
2709
2710API LY_ERR
Michal Vasko21725742020-06-29 11:49:25 +02002711lyd_compare_meta(const struct lyd_meta *meta1, const struct lyd_meta *meta2)
2712{
2713 if (!meta1 || !meta2) {
2714 if (meta1 == meta2) {
2715 return LY_SUCCESS;
2716 } else {
2717 return LY_ENOT;
2718 }
2719 }
2720
Michal Vaskoa8083062020-11-06 17:22:10 +01002721 if ((meta1->annotation->module->ctx != meta2->annotation->module->ctx) || (meta1->annotation != meta2->annotation)) {
Michal Vasko21725742020-06-29 11:49:25 +02002722 return LY_ENOT;
2723 }
2724
Michal Vasko21725742020-06-29 11:49:25 +02002725 return meta1->value.realtype->plugin->compare(&meta1->value, &meta2->value);
2726}
2727
Radek Krejci22ebdba2019-07-25 13:59:43 +02002728/**
Michal Vasko52927e22020-03-16 17:26:14 +01002729 * @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 +02002730 *
2731 * 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 +02002732 *
2733 * @param[in] node Original node to duplicate
2734 * @param[in] parent Parent to insert into, NULL for top-level sibling.
2735 * @param[in,out] first First sibling, NULL if no top-level sibling exist yet. Can be also NULL if @p parent is set.
2736 * @param[in] options Bitmask of options flags, see @ref dupoptions.
2737 * @param[out] dup_p Pointer where the created duplicated node is placed (besides connecting it int @p parent / @p first sibling).
2738 * @return LY_ERR value
Radek Krejci22ebdba2019-07-25 13:59:43 +02002739 */
Michal Vasko52927e22020-03-16 17:26:14 +01002740static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002741lyd_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 +02002742 struct lyd_node **dup_p)
Radek Krejci22ebdba2019-07-25 13:59:43 +02002743{
Michal Vasko52927e22020-03-16 17:26:14 +01002744 LY_ERR ret;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002745 struct lyd_node *dup = NULL;
Michal Vasko61551fa2020-07-09 15:45:45 +02002746 struct lyd_meta *meta;
2747 struct lyd_node_any *any;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002748
Michal Vasko52927e22020-03-16 17:26:14 +01002749 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002750
Michal Vasko52927e22020-03-16 17:26:14 +01002751 if (!node->schema) {
2752 dup = calloc(1, sizeof(struct lyd_node_opaq));
2753 } else {
2754 switch (node->schema->nodetype) {
Michal Vasko1bf09392020-03-27 12:38:10 +01002755 case LYS_RPC:
Michal Vasko52927e22020-03-16 17:26:14 +01002756 case LYS_ACTION:
2757 case LYS_NOTIF:
2758 case LYS_CONTAINER:
2759 case LYS_LIST:
2760 dup = calloc(1, sizeof(struct lyd_node_inner));
2761 break;
2762 case LYS_LEAF:
2763 case LYS_LEAFLIST:
2764 dup = calloc(1, sizeof(struct lyd_node_term));
2765 break;
2766 case LYS_ANYDATA:
2767 case LYS_ANYXML:
2768 dup = calloc(1, sizeof(struct lyd_node_any));
2769 break;
2770 default:
Michal Vaskob7be7a82020-08-20 09:09:04 +02002771 LOGINT(LYD_CTX(node));
Michal Vasko52927e22020-03-16 17:26:14 +01002772 ret = LY_EINT;
2773 goto error;
2774 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02002775 }
Michal Vaskob7be7a82020-08-20 09:09:04 +02002776 LY_CHECK_ERR_GOTO(!dup, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002777
Michal Vaskof6df0a02020-06-16 13:08:34 +02002778 if (options & LYD_DUP_WITH_FLAGS) {
2779 dup->flags = node->flags;
2780 } else {
2781 dup->flags = (node->flags & LYD_DEFAULT) | LYD_NEW;
2782 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02002783 dup->schema = node->schema;
Michal Vasko52927e22020-03-16 17:26:14 +01002784 dup->prev = dup;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002785
Michal Vasko25a32822020-07-09 15:48:22 +02002786 /* duplicate metadata */
2787 if (!(options & LYD_DUP_NO_META)) {
2788 LY_LIST_FOR(node->meta, meta) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002789 LY_CHECK_GOTO(ret = lyd_dup_meta_single(meta, dup, NULL), error);
Michal Vasko25a32822020-07-09 15:48:22 +02002790 }
2791 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02002792
2793 /* nodetype-specific work */
Michal Vasko52927e22020-03-16 17:26:14 +01002794 if (!dup->schema) {
2795 struct lyd_node_opaq *opaq = (struct lyd_node_opaq *)dup;
2796 struct lyd_node_opaq *orig = (struct lyd_node_opaq *)node;
2797 struct lyd_node *child;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002798
2799 if (options & LYD_DUP_RECURSIVE) {
2800 /* duplicate all the children */
2801 LY_LIST_FOR(orig->child, child) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002802 LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, NULL, options, NULL), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002803 }
2804 }
Michal Vaskoad92b672020-11-12 13:11:31 +01002805 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->name.name, 0, &opaq->name.name), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002806 opaq->format = orig->format;
Michal Vaskoad92b672020-11-12 13:11:31 +01002807 if (orig->name.prefix) {
2808 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->name.prefix, 0, &opaq->name.prefix), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002809 }
Michal Vaskoad92b672020-11-12 13:11:31 +01002810 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 +01002811 if (orig->val_prefix_data) {
2812 ret = ly_dup_prefix_data(LYD_CTX(node), opaq->format, orig->val_prefix_data, &opaq->val_prefix_data);
2813 LY_CHECK_GOTO(ret, error);
Michal Vasko52927e22020-03-16 17:26:14 +01002814 }
Radek Krejci011e4aa2020-09-04 15:22:31 +02002815 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->value, 0, &opaq->value), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002816 opaq->ctx = orig->ctx;
2817 } else if (dup->schema->nodetype & LYD_NODE_TERM) {
2818 struct lyd_node_term *term = (struct lyd_node_term *)dup;
2819 struct lyd_node_term *orig = (struct lyd_node_term *)node;
2820
2821 term->hash = orig->hash;
Michal Vaskob7be7a82020-08-20 09:09:04 +02002822 LY_CHECK_ERR_GOTO(orig->value.realtype->plugin->duplicate(LYD_CTX(node), &orig->value, &term->value),
Michal Vasko69730152020-10-09 16:30:07 +02002823 LOGERR(LYD_CTX(node), LY_EINT, "Value duplication failed."); ret = LY_EINT, error);
Michal Vasko52927e22020-03-16 17:26:14 +01002824 } else if (dup->schema->nodetype & LYD_NODE_INNER) {
2825 struct lyd_node_inner *orig = (struct lyd_node_inner *)node;
2826 struct lyd_node *child;
2827
2828 if (options & LYD_DUP_RECURSIVE) {
2829 /* duplicate all the children */
2830 LY_LIST_FOR(orig->child, child) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002831 LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, NULL, options, NULL), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002832 }
Michal Vasko69730152020-10-09 16:30:07 +02002833 } else if ((dup->schema->nodetype == LYS_LIST) && !(dup->schema->flags & LYS_KEYLESS)) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02002834 /* always duplicate keys of a list */
Radek Krejci22ebdba2019-07-25 13:59:43 +02002835 child = orig->child;
Michal Vasko544e58a2021-01-28 14:33:41 +01002836 for (const struct lysc_node *key = lysc_node_child(dup->schema);
Michal Vaskoc57d9a92020-06-23 13:28:27 +02002837 key && (key->flags & LYS_KEY);
Radek Krejci0fe9b512019-07-26 17:51:05 +02002838 key = key->next) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02002839 if (!child) {
2840 /* possibly not keys are present in filtered tree */
2841 break;
Radek Krejci0fe9b512019-07-26 17:51:05 +02002842 } else if (child->schema != key) {
2843 /* possibly not all keys are present in filtered tree,
2844 * but there can be also some non-key nodes */
2845 continue;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002846 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002847 LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, NULL, options, NULL), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002848 child = child->next;
2849 }
2850 }
2851 lyd_hash(dup);
2852 } else if (dup->schema->nodetype & LYD_NODE_ANY) {
Michal Vasko61551fa2020-07-09 15:45:45 +02002853 dup->hash = node->hash;
2854 any = (struct lyd_node_any *)node;
2855 LY_CHECK_GOTO(ret = lyd_any_copy_value(dup, &any->value, any->value_type), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002856 }
2857
Michal Vasko52927e22020-03-16 17:26:14 +01002858 /* insert */
2859 lyd_insert_node(parent, first, dup);
Michal Vasko52927e22020-03-16 17:26:14 +01002860
2861 if (dup_p) {
2862 *dup_p = dup;
2863 }
2864 return LY_SUCCESS;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002865
2866error:
Michal Vasko52927e22020-03-16 17:26:14 +01002867 lyd_free_tree(dup);
2868 return ret;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002869}
2870
Michal Vasko3a41dff2020-07-15 14:30:28 +02002871static LY_ERR
2872lyd_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 +02002873 struct lyd_node_inner **local_parent)
Radek Krejci22ebdba2019-07-25 13:59:43 +02002874{
Michal Vasko3a41dff2020-07-15 14:30:28 +02002875 const struct lyd_node_inner *orig_parent, *iter;
Radek Krejci857189e2020-09-01 13:26:36 +02002876 ly_bool repeat = 1;
Michal Vasko3a41dff2020-07-15 14:30:28 +02002877
2878 *dup_parent = NULL;
2879 *local_parent = NULL;
2880
2881 for (orig_parent = node->parent; repeat && orig_parent; orig_parent = orig_parent->parent) {
2882 if (parent && (parent->schema == orig_parent->schema)) {
2883 /* stop creating parents, connect what we have into the provided parent */
2884 iter = parent;
2885 repeat = 0;
2886 } else {
2887 iter = NULL;
2888 LY_CHECK_RET(lyd_dup_r((struct lyd_node *)orig_parent, NULL, (struct lyd_node **)&iter, 0,
Radek Krejci0f969882020-08-21 16:56:47 +02002889 (struct lyd_node **)&iter));
Michal Vasko3a41dff2020-07-15 14:30:28 +02002890 }
2891 if (!*local_parent) {
2892 *local_parent = (struct lyd_node_inner *)iter;
2893 }
2894 if (iter->child) {
2895 /* 1) list - add after keys
2896 * 2) provided parent with some children */
2897 iter->child->prev->next = *dup_parent;
2898 if (*dup_parent) {
2899 (*dup_parent)->prev = iter->child->prev;
2900 iter->child->prev = *dup_parent;
2901 }
2902 } else {
2903 ((struct lyd_node_inner *)iter)->child = *dup_parent;
2904 }
2905 if (*dup_parent) {
2906 (*dup_parent)->parent = (struct lyd_node_inner *)iter;
2907 }
2908 *dup_parent = (struct lyd_node *)iter;
2909 }
2910
2911 if (repeat && parent) {
2912 /* given parent and created parents chain actually do not interconnect */
Michal Vaskob7be7a82020-08-20 09:09:04 +02002913 LOGERR(LYD_CTX(node), LY_EINVAL,
Michal Vasko69730152020-10-09 16:30:07 +02002914 "Invalid argument parent (%s()) - does not interconnect with the created node's parents chain.", __func__);
Michal Vasko3a41dff2020-07-15 14:30:28 +02002915 return LY_EINVAL;
2916 }
2917
2918 return LY_SUCCESS;
2919}
2920
2921static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02002922lyd_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 +02002923{
2924 LY_ERR rc;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002925 const struct lyd_node *orig; /* original node to be duplicated */
2926 struct lyd_node *first = NULL; /* the first duplicated node, this is returned */
Radek Krejci22ebdba2019-07-25 13:59:43 +02002927 struct lyd_node *top = NULL; /* the most higher created node */
2928 struct lyd_node_inner *local_parent = NULL; /* the direct parent node for the duplicated node(s) */
Radek Krejci22ebdba2019-07-25 13:59:43 +02002929
Michal Vasko3a41dff2020-07-15 14:30:28 +02002930 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002931
2932 if (options & LYD_DUP_WITH_PARENTS) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002933 LY_CHECK_GOTO(rc = lyd_dup_get_local_parent(node, parent, &top, &local_parent), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002934 } else {
2935 local_parent = parent;
2936 }
2937
Radek Krejci22ebdba2019-07-25 13:59:43 +02002938 LY_LIST_FOR(node, orig) {
Michal Vasko35f4d772021-01-12 12:08:57 +01002939 if (lysc_is_key(orig->schema)) {
2940 if (local_parent) {
2941 /* the key must already exist in the parent */
2942 rc = lyd_find_sibling_schema(local_parent->child, orig->schema, first ? NULL : &first);
2943 LY_CHECK_ERR_GOTO(rc, LOGINT(LYD_CTX(node)), error);
2944 } else {
2945 assert(!(options & LYD_DUP_WITH_PARENTS));
2946 /* duplicating a single key, okay, I suppose... */
2947 rc = lyd_dup_r(orig, NULL, &first, options, first ? NULL : &first);
2948 LY_CHECK_GOTO(rc, error);
2949 }
2950 } else {
2951 /* if there is no local parent, it will be inserted into first */
Michal Vasko9e685082021-01-29 14:49:09 +01002952 rc = lyd_dup_r(orig, &local_parent->node, &first, options, first ? NULL : &first);
Michal Vasko35f4d772021-01-12 12:08:57 +01002953 LY_CHECK_GOTO(rc, error);
2954 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002955 if (nosiblings) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02002956 break;
2957 }
2958 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002959
2960 /* rehash if needed */
Michal Vaskod989ba02020-08-24 10:59:24 +02002961 for ( ; local_parent; local_parent = local_parent->parent) {
Michal Vasko69730152020-10-09 16:30:07 +02002962 if ((local_parent->schema->nodetype == LYS_LIST) && (local_parent->schema->flags & LYS_KEYLESS)) {
Michal Vasko9e685082021-01-29 14:49:09 +01002963 lyd_hash(&local_parent->node);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002964 }
2965 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002966
2967 if (dup) {
2968 *dup = first;
2969 }
2970 return LY_SUCCESS;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002971
2972error:
2973 if (top) {
2974 lyd_free_tree(top);
2975 } else {
Michal Vaskof03ed032020-03-04 13:31:44 +01002976 lyd_free_siblings(first);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002977 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002978 return rc;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002979}
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002980
Michal Vasko3a41dff2020-07-15 14:30:28 +02002981API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002982lyd_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 +02002983{
2984 return lyd_dup(node, parent, options, 1, dup);
2985}
2986
2987API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002988lyd_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 +02002989{
2990 return lyd_dup(node, parent, options, 0, dup);
2991}
2992
2993API LY_ERR
2994lyd_dup_meta_single(const struct lyd_meta *meta, struct lyd_node *node, struct lyd_meta **dup)
Michal Vasko25a32822020-07-09 15:48:22 +02002995{
Radek Krejci011e4aa2020-09-04 15:22:31 +02002996 LY_ERR ret = LY_SUCCESS;
Michal Vasko25a32822020-07-09 15:48:22 +02002997 struct lyd_meta *mt, *last;
2998
Michal Vasko3a41dff2020-07-15 14:30:28 +02002999 LY_CHECK_ARG_RET(NULL, meta, node, LY_EINVAL);
Michal Vasko25a32822020-07-09 15:48:22 +02003000
3001 /* create a copy */
3002 mt = calloc(1, sizeof *mt);
Michal Vaskob7be7a82020-08-20 09:09:04 +02003003 LY_CHECK_ERR_RET(!mt, LOGMEM(LYD_CTX(node)), LY_EMEM);
Michal Vasko25a32822020-07-09 15:48:22 +02003004 mt->annotation = meta->annotation;
Michal Vaskob7be7a82020-08-20 09:09:04 +02003005 ret = meta->value.realtype->plugin->duplicate(LYD_CTX(node), &meta->value, &mt->value);
Radek Krejci011e4aa2020-09-04 15:22:31 +02003006 LY_CHECK_ERR_GOTO(ret, LOGERR(LYD_CTX(node), LY_EINT, "Value duplication failed."), finish);
3007 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), meta->name, 0, &mt->name), finish);
Michal Vasko25a32822020-07-09 15:48:22 +02003008
3009 /* insert as the last attribute */
Radek Krejci011e4aa2020-09-04 15:22:31 +02003010 mt->parent = node;
Michal Vasko25a32822020-07-09 15:48:22 +02003011 if (node->meta) {
Radek Krejci1e008d22020-08-17 11:37:37 +02003012 for (last = node->meta; last->next; last = last->next) {}
Michal Vasko25a32822020-07-09 15:48:22 +02003013 last->next = mt;
3014 } else {
3015 node->meta = mt;
3016 }
3017
Radek Krejci011e4aa2020-09-04 15:22:31 +02003018finish:
3019 if (ret) {
3020 lyd_free_meta_single(mt);
3021 } else if (dup) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02003022 *dup = mt;
3023 }
3024 return LY_SUCCESS;
Michal Vasko25a32822020-07-09 15:48:22 +02003025}
3026
Michal Vasko4490d312020-06-16 13:08:55 +02003027/**
3028 * @brief Merge a source sibling into target siblings.
3029 *
3030 * @param[in,out] first_trg First target sibling, is updated if top-level.
3031 * @param[in] parent_trg Target parent.
3032 * @param[in,out] sibling_src Source sibling to merge, set to NULL if spent.
3033 * @param[in] options Merge options.
3034 * @return LY_ERR value.
3035 */
3036static LY_ERR
3037lyd_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 +02003038 uint16_t options)
Michal Vasko4490d312020-06-16 13:08:55 +02003039{
3040 LY_ERR ret;
3041 const struct lyd_node *child_src, *tmp, *sibling_src;
Michal Vasko56daf732020-08-10 10:57:18 +02003042 struct lyd_node *match_trg, *dup_src, *elem;
Michal Vasko4490d312020-06-16 13:08:55 +02003043 struct lysc_type *type;
Michal Vasko4490d312020-06-16 13:08:55 +02003044
3045 sibling_src = *sibling_src_p;
3046 if (sibling_src->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) {
3047 /* try to find the exact instance */
3048 ret = lyd_find_sibling_first(*first_trg, sibling_src, &match_trg);
3049 } else {
3050 /* try to simply find the node, there cannot be more instances */
3051 ret = lyd_find_sibling_val(*first_trg, sibling_src->schema, NULL, 0, &match_trg);
3052 }
3053
3054 if (!ret) {
3055 /* node found, make sure even value matches for all node types */
Michal Vasko8f359bf2020-07-28 10:41:15 +02003056 if ((match_trg->schema->nodetype == LYS_LEAF) && lyd_compare_single(sibling_src, match_trg, LYD_COMPARE_DEFAULTS)) {
Michal Vasko4490d312020-06-16 13:08:55 +02003057 /* since they are different, they cannot both be default */
3058 assert(!(sibling_src->flags & LYD_DEFAULT) || !(match_trg->flags & LYD_DEFAULT));
3059
Michal Vasko3a41dff2020-07-15 14:30:28 +02003060 /* update value (or only LYD_DEFAULT flag) only if flag set or the source node is not default */
3061 if ((options & LYD_MERGE_DEFAULTS) || !(sibling_src->flags & LYD_DEFAULT)) {
Michal Vasko4490d312020-06-16 13:08:55 +02003062 type = ((struct lysc_node_leaf *)match_trg->schema)->type;
Michal Vaskob7be7a82020-08-20 09:09:04 +02003063 type->plugin->free(LYD_CTX(match_trg), &((struct lyd_node_term *)match_trg)->value);
3064 LY_CHECK_RET(type->plugin->duplicate(LYD_CTX(match_trg), &((struct lyd_node_term *)sibling_src)->value,
Michal Vasko69730152020-10-09 16:30:07 +02003065 &((struct lyd_node_term *)match_trg)->value));
Michal Vasko4490d312020-06-16 13:08:55 +02003066
3067 /* copy flags and add LYD_NEW */
3068 match_trg->flags = sibling_src->flags | LYD_NEW;
3069 }
Michal Vasko8f359bf2020-07-28 10:41:15 +02003070 } else if ((match_trg->schema->nodetype & LYS_ANYDATA) && lyd_compare_single(sibling_src, match_trg, 0)) {
Michal Vasko4c583e82020-07-17 12:16:14 +02003071 /* update value */
3072 LY_CHECK_RET(lyd_any_copy_value(match_trg, &((struct lyd_node_any *)sibling_src)->value,
Radek Krejci0f969882020-08-21 16:56:47 +02003073 ((struct lyd_node_any *)sibling_src)->value_type));
Michal Vasko4490d312020-06-16 13:08:55 +02003074
3075 /* copy flags and add LYD_NEW */
3076 match_trg->flags = sibling_src->flags | LYD_NEW;
Michal Vasko4490d312020-06-16 13:08:55 +02003077 } else {
3078 /* check descendants, recursively */
Radek Krejcia1c1e542020-09-29 16:06:52 +02003079 LY_LIST_FOR_SAFE(lyd_child_no_keys(sibling_src), tmp, child_src) {
Michal Vaskoe0665742021-02-11 11:08:44 +01003080 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 +02003081 }
3082 }
3083 } else {
3084 /* node not found, merge it */
3085 if (options & LYD_MERGE_DESTRUCT) {
3086 dup_src = (struct lyd_node *)sibling_src;
3087 lyd_unlink_tree(dup_src);
3088 /* spend it */
3089 *sibling_src_p = NULL;
3090 } else {
Michal Vasko3a41dff2020-07-15 14:30:28 +02003091 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 +02003092 }
3093
3094 /* set LYD_NEW for all the new nodes, required for validation */
Michal Vasko56daf732020-08-10 10:57:18 +02003095 LYD_TREE_DFS_BEGIN(dup_src, elem) {
Michal Vasko4490d312020-06-16 13:08:55 +02003096 elem->flags |= LYD_NEW;
Michal Vasko56daf732020-08-10 10:57:18 +02003097 LYD_TREE_DFS_END(dup_src, elem);
Michal Vasko4490d312020-06-16 13:08:55 +02003098 }
3099
3100 lyd_insert_node(parent_trg, first_trg, dup_src);
3101 }
3102
3103 return LY_SUCCESS;
3104}
3105
Michal Vasko3a41dff2020-07-15 14:30:28 +02003106static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003107lyd_merge(struct lyd_node **target, const struct lyd_node *source, uint16_t options, ly_bool nosiblings)
Michal Vasko4490d312020-06-16 13:08:55 +02003108{
3109 const struct lyd_node *sibling_src, *tmp;
Radek Krejci857189e2020-09-01 13:26:36 +02003110 ly_bool first;
Michal Vasko4490d312020-06-16 13:08:55 +02003111
3112 LY_CHECK_ARG_RET(NULL, target, LY_EINVAL);
3113
3114 if (!source) {
3115 /* nothing to merge */
3116 return LY_SUCCESS;
3117 }
3118
Michal Vasko831422b2020-11-24 11:20:51 +01003119 if ((*target && lysc_data_parent((*target)->schema)) || lysc_data_parent(source->schema)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02003120 LOGERR(LYD_CTX(source), LY_EINVAL, "Invalid arguments - can merge only 2 top-level subtrees (%s()).", __func__);
Michal Vasko4490d312020-06-16 13:08:55 +02003121 return LY_EINVAL;
3122 }
3123
3124 LY_LIST_FOR_SAFE(source, tmp, sibling_src) {
Radek Krejci857189e2020-09-01 13:26:36 +02003125 first = (sibling_src == source) ? 1 : 0;
Michal Vasko4490d312020-06-16 13:08:55 +02003126 LY_CHECK_RET(lyd_merge_sibling_r(target, NULL, &sibling_src, options));
3127 if (first && !sibling_src) {
3128 /* source was spent (unlinked), move to the next node */
3129 source = tmp;
3130 }
3131
Michal Vasko3a41dff2020-07-15 14:30:28 +02003132 if (nosiblings) {
Michal Vasko4490d312020-06-16 13:08:55 +02003133 break;
3134 }
3135 }
3136
3137 if (options & LYD_MERGE_DESTRUCT) {
3138 /* free any leftover source data that were not merged */
3139 lyd_free_siblings((struct lyd_node *)source);
3140 }
3141
3142 return LY_SUCCESS;
3143}
3144
Michal Vasko3a41dff2020-07-15 14:30:28 +02003145API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003146lyd_merge_tree(struct lyd_node **target, const struct lyd_node *source, uint16_t options)
Michal Vasko3a41dff2020-07-15 14:30:28 +02003147{
3148 return lyd_merge(target, source, options, 1);
3149}
3150
3151API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003152lyd_merge_siblings(struct lyd_node **target, const struct lyd_node *source, uint16_t options)
Michal Vasko3a41dff2020-07-15 14:30:28 +02003153{
3154 return lyd_merge(target, source, options, 0);
3155}
3156
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003157static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003158lyd_path_str_enlarge(char **buffer, size_t *buflen, size_t reqlen, ly_bool is_static)
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003159{
Michal Vasko14654712020-02-06 08:35:21 +01003160 /* ending \0 */
3161 ++reqlen;
3162
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003163 if (reqlen > *buflen) {
3164 if (is_static) {
3165 return LY_EINCOMPLETE;
3166 }
3167
3168 *buffer = ly_realloc(*buffer, reqlen * sizeof **buffer);
3169 if (!*buffer) {
3170 return LY_EMEM;
3171 }
3172
3173 *buflen = reqlen;
3174 }
3175
3176 return LY_SUCCESS;
3177}
3178
Michal Vaskod59035b2020-07-08 12:00:06 +02003179LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003180lyd_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 +02003181{
3182 const struct lyd_node *key;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003183 size_t len;
3184 const char *val;
3185 char quot;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003186
Radek Krejcia1c1e542020-09-29 16:06:52 +02003187 for (key = lyd_child(node); key && (key->schema->flags & LYS_KEY); key = key->next) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02003188 val = LYD_CANON_VALUE(key);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003189 len = 1 + strlen(key->schema->name) + 2 + strlen(val) + 2;
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003190 LY_CHECK_RET(lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static));
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003191
3192 quot = '\'';
3193 if (strchr(val, '\'')) {
3194 quot = '"';
3195 }
3196 *bufused += sprintf(*buffer + *bufused, "[%s=%c%s%c]", key->schema->name, quot, val, quot);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003197 }
3198
3199 return LY_SUCCESS;
3200}
3201
3202/**
3203 * @brief Append leaf-list value predicate to path.
3204 *
3205 * @param[in] node Node to print.
3206 * @param[in,out] buffer Buffer to print to.
3207 * @param[in,out] buflen Current buffer length.
3208 * @param[in,out] bufused Current number of characters used in @p buffer.
3209 * @param[in] is_static Whether buffer is static or can be reallocated.
3210 * @return LY_ERR
3211 */
3212static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003213lyd_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 +02003214{
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003215 size_t len;
3216 const char *val;
3217 char quot;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003218
Michal Vaskob7be7a82020-08-20 09:09:04 +02003219 val = LYD_CANON_VALUE(node);
Radek Krejcif13b87b2020-12-01 22:02:17 +01003220 len = 4 + strlen(val) + 2; /* "[.='" + val + "']" */
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003221 LY_CHECK_RET(lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static));
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003222
3223 quot = '\'';
3224 if (strchr(val, '\'')) {
3225 quot = '"';
3226 }
3227 *bufused += sprintf(*buffer + *bufused, "[.=%c%s%c]", quot, val, quot);
3228
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003229 return LY_SUCCESS;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003230}
3231
3232/**
3233 * @brief Append node position (relative to its other instances) predicate to path.
3234 *
3235 * @param[in] node Node to print.
3236 * @param[in,out] buffer Buffer to print to.
3237 * @param[in,out] buflen Current buffer length.
3238 * @param[in,out] bufused Current number of characters used in @p buffer.
3239 * @param[in] is_static Whether buffer is static or can be reallocated.
3240 * @return LY_ERR
3241 */
3242static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003243lyd_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 +02003244{
3245 const struct lyd_node *first, *iter;
3246 size_t len;
Radek Krejci1deb5be2020-08-26 16:43:36 +02003247 uint64_t pos;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003248 char *val = NULL;
3249 LY_ERR rc;
3250
3251 if (node->parent) {
3252 first = node->parent->child;
3253 } else {
Michal Vaskoe070bfe2020-08-31 12:27:25 +02003254 for (first = node; first->prev->next; first = first->prev) {}
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003255 }
3256 pos = 1;
3257 for (iter = first; iter != node; iter = iter->next) {
3258 if (iter->schema == node->schema) {
3259 ++pos;
3260 }
3261 }
Radek Krejci1deb5be2020-08-26 16:43:36 +02003262 if (asprintf(&val, "%" PRIu64, pos) == -1) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003263 return LY_EMEM;
3264 }
3265
3266 len = 1 + strlen(val) + 1;
3267 rc = lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static);
3268 if (rc != LY_SUCCESS) {
3269 goto cleanup;
3270 }
3271
3272 *bufused += sprintf(*buffer + *bufused, "[%s]", val);
3273
3274cleanup:
3275 free(val);
3276 return rc;
3277}
3278
3279API char *
3280lyd_path(const struct lyd_node *node, LYD_PATH_TYPE pathtype, char *buffer, size_t buflen)
3281{
Radek Krejci857189e2020-09-01 13:26:36 +02003282 ly_bool is_static = 0;
Radek Krejci1deb5be2020-08-26 16:43:36 +02003283 uint32_t i, depth;
Michal Vasko14654712020-02-06 08:35:21 +01003284 size_t bufused = 0, len;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003285 const struct lyd_node *iter;
3286 const struct lys_module *mod;
Michal Vasko790b2bc2020-08-03 13:35:06 +02003287 LY_ERR rc = LY_SUCCESS;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003288
3289 LY_CHECK_ARG_RET(NULL, node, NULL);
3290 if (buffer) {
3291 LY_CHECK_ARG_RET(node->schema->module->ctx, buflen > 1, NULL);
3292 is_static = 1;
Michal Vasko14654712020-02-06 08:35:21 +01003293 } else {
3294 buflen = 0;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003295 }
3296
3297 switch (pathtype) {
Radek Krejci635d2b82021-01-04 11:26:51 +01003298 case LYD_PATH_STD:
3299 case LYD_PATH_STD_NO_LAST_PRED:
Michal Vasko14654712020-02-06 08:35:21 +01003300 depth = 1;
Michal Vasko9e685082021-01-29 14:49:09 +01003301 for (iter = node; iter->parent; iter = lyd_parent(iter)) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003302 ++depth;
3303 }
3304
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003305 goto iter_print;
Michal Vasko14654712020-02-06 08:35:21 +01003306 while (depth) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003307 /* find the right node */
Michal Vasko9e685082021-01-29 14:49:09 +01003308 for (iter = node, i = 1; i < depth; iter = lyd_parent(iter), ++i) {}
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003309iter_print:
3310 /* print prefix and name */
3311 mod = NULL;
Michal Vasko69730152020-10-09 16:30:07 +02003312 if (iter->schema && (!iter->parent || (iter->schema->module != iter->parent->schema->module))) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003313 mod = iter->schema->module;
3314 }
3315
3316 /* realloc string */
Michal Vaskoad92b672020-11-12 13:11:31 +01003317 len = 1 + (mod ? strlen(mod->name) + 1 : 0) + (iter->schema ? strlen(iter->schema->name) :
3318 strlen(((struct lyd_node_opaq *)iter)->name.name));
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003319 rc = lyd_path_str_enlarge(&buffer, &buflen, bufused + len, is_static);
3320 if (rc != LY_SUCCESS) {
3321 break;
3322 }
3323
3324 /* print next node */
Radek Krejci1798aae2020-07-14 13:26:06 +02003325 bufused += sprintf(buffer + bufused, "/%s%s%s", mod ? mod->name : "", mod ? ":" : "",
Michal Vaskoad92b672020-11-12 13:11:31 +01003326 iter->schema ? iter->schema->name : ((struct lyd_node_opaq *)iter)->name.name);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003327
Michal Vasko790b2bc2020-08-03 13:35:06 +02003328 /* do not always print the last (first) predicate */
Radek Krejci635d2b82021-01-04 11:26:51 +01003329 if (iter->schema && ((depth > 1) || (pathtype == LYD_PATH_STD))) {
Michal Vasko790b2bc2020-08-03 13:35:06 +02003330 switch (iter->schema->nodetype) {
3331 case LYS_LIST:
3332 if (iter->schema->flags & LYS_KEYLESS) {
3333 /* print its position */
3334 rc = lyd_path_position_predicate(iter, &buffer, &buflen, &bufused, is_static);
3335 } else {
3336 /* print all list keys in predicates */
3337 rc = lyd_path_list_predicate(iter, &buffer, &buflen, &bufused, is_static);
3338 }
3339 break;
3340 case LYS_LEAFLIST:
3341 if (iter->schema->flags & LYS_CONFIG_W) {
3342 /* print leaf-list value */
3343 rc = lyd_path_leaflist_predicate(iter, &buffer, &buflen, &bufused, is_static);
3344 } else {
3345 /* print its position */
3346 rc = lyd_path_position_predicate(iter, &buffer, &buflen, &bufused, is_static);
3347 }
3348 break;
3349 default:
3350 /* nothing to print more */
3351 break;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003352 }
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003353 }
3354 if (rc != LY_SUCCESS) {
3355 break;
3356 }
3357
Michal Vasko14654712020-02-06 08:35:21 +01003358 --depth;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003359 }
3360 break;
3361 }
3362
3363 return buffer;
3364}
Michal Vaskoe444f752020-02-10 12:20:06 +01003365
Michal Vasko25a32822020-07-09 15:48:22 +02003366API struct lyd_meta *
3367lyd_find_meta(const struct lyd_meta *first, const struct lys_module *module, const char *name)
3368{
3369 struct lyd_meta *ret = NULL;
3370 const struct ly_ctx *ctx;
3371 const char *prefix, *tmp;
3372 char *str;
3373 size_t pref_len, name_len;
3374
3375 LY_CHECK_ARG_RET(NULL, module || strchr(name, ':'), name, NULL);
3376
3377 if (!first) {
3378 return NULL;
3379 }
3380
3381 ctx = first->annotation->module->ctx;
3382
3383 /* parse the name */
3384 tmp = name;
3385 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
3386 LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name);
3387 return NULL;
3388 }
3389
3390 /* find the module */
3391 if (prefix) {
3392 str = strndup(prefix, pref_len);
3393 module = ly_ctx_get_module_latest(ctx, str);
3394 free(str);
3395 LY_CHECK_ERR_RET(!module, LOGERR(ctx, LY_EINVAL, "Module \"%.*s\" not found.", pref_len, prefix), NULL);
3396 }
3397
3398 /* find the metadata */
3399 LY_LIST_FOR(first, first) {
3400 if ((first->annotation->module == module) && !strcmp(first->name, name)) {
3401 ret = (struct lyd_meta *)first;
3402 break;
3403 }
3404 }
3405
3406 return ret;
3407}
3408
Michal Vasko9b368d32020-02-14 13:53:31 +01003409API LY_ERR
Michal Vaskoe444f752020-02-10 12:20:06 +01003410lyd_find_sibling_first(const struct lyd_node *siblings, const struct lyd_node *target, struct lyd_node **match)
3411{
3412 struct lyd_node **match_p;
3413 struct lyd_node_inner *parent;
3414
Michal Vaskof03ed032020-03-04 13:31:44 +01003415 LY_CHECK_ARG_RET(NULL, target, LY_EINVAL);
Michal Vaskoe444f752020-02-10 12:20:06 +01003416
Michal Vasko6da1e952020-12-09 18:14:38 +01003417 if (!siblings || (siblings->schema && target->schema &&
3418 (lysc_data_parent(siblings->schema) != lysc_data_parent(target->schema)))) {
Michal Vasko62ed12d2020-05-21 10:08:25 +02003419 /* no data or schema mismatch */
Michal Vasko9b368d32020-02-14 13:53:31 +01003420 if (match) {
3421 *match = NULL;
3422 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003423 return LY_ENOTFOUND;
3424 }
3425
3426 /* find first sibling */
3427 if (siblings->parent) {
3428 siblings = siblings->parent->child;
3429 } else {
3430 while (siblings->prev->next) {
3431 siblings = siblings->prev;
3432 }
3433 }
3434
Michal Vasko9e685082021-01-29 14:49:09 +01003435 parent = siblings->parent;
Michal Vasko6da1e952020-12-09 18:14:38 +01003436 if (parent && parent->schema && parent->children_ht) {
Michal Vaskoe444f752020-02-10 12:20:06 +01003437 assert(target->hash);
3438
3439 /* find by hash */
3440 if (!lyht_find(parent->children_ht, &target, target->hash, (void **)&match_p)) {
Michal Vaskoda859032020-07-14 12:20:14 +02003441 /* check even value when needed */
Michal Vasko8f359bf2020-07-28 10:41:15 +02003442 if (!(target->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !lyd_compare_single(target, *match_p, 0)) {
Michal Vaskoda859032020-07-14 12:20:14 +02003443 siblings = *match_p;
3444 } else {
3445 siblings = NULL;
3446 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003447 } else {
3448 /* not found */
3449 siblings = NULL;
3450 }
3451 } else {
3452 /* no children hash table */
Michal Vaskod989ba02020-08-24 10:59:24 +02003453 for ( ; siblings; siblings = siblings->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02003454 if (!lyd_compare_single(siblings, target, 0)) {
Michal Vaskoe444f752020-02-10 12:20:06 +01003455 break;
3456 }
3457 }
3458 }
3459
3460 if (!siblings) {
Michal Vasko9b368d32020-02-14 13:53:31 +01003461 if (match) {
3462 *match = NULL;
3463 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003464 return LY_ENOTFOUND;
3465 }
3466
Michal Vasko9b368d32020-02-14 13:53:31 +01003467 if (match) {
3468 *match = (struct lyd_node *)siblings;
3469 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003470 return LY_SUCCESS;
3471}
3472
Radek Krejci857189e2020-09-01 13:26:36 +02003473/**
3474 * @brief Comparison callback to match schema node with a schema of a data node.
3475 *
3476 * @param[in] val1_p Pointer to the schema node
3477 * @param[in] val2_p Pointer to the data node
Michal Vasko62524a92021-02-26 10:08:50 +01003478 * Implementation of ::lyht_value_equal_cb.
Radek Krejci857189e2020-09-01 13:26:36 +02003479 */
3480static ly_bool
3481lyd_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 +01003482{
3483 struct lysc_node *val1;
3484 struct lyd_node *val2;
3485
3486 val1 = *((struct lysc_node **)val1_p);
3487 val2 = *((struct lyd_node **)val2_p);
3488
Michal Vasko90932a92020-02-12 14:33:03 +01003489 if (val1 == val2->schema) {
3490 /* schema match is enough */
3491 return 1;
3492 } else {
3493 return 0;
3494 }
3495}
3496
Michal Vasko92239c72020-11-18 18:17:25 +01003497/**
3498 * @brief Search in the given siblings (NOT recursively) for the first schema node data instance.
3499 * Uses hashes - should be used whenever possible for best performance.
3500 *
3501 * @param[in] siblings Siblings to search in including preceding and succeeding nodes.
3502 * @param[in] schema Target data node schema to find.
3503 * @param[out] match Can be NULL, otherwise the found data node.
3504 * @return LY_SUCCESS on success, @p match set.
3505 * @return LY_ENOTFOUND if not found, @p match set to NULL.
3506 * @return LY_ERR value if another error occurred.
3507 */
Michal Vasko90932a92020-02-12 14:33:03 +01003508static LY_ERR
3509lyd_find_sibling_schema(const struct lyd_node *siblings, const struct lysc_node *schema, struct lyd_node **match)
3510{
3511 struct lyd_node **match_p;
3512 struct lyd_node_inner *parent;
3513 uint32_t hash;
Michal Vasko62524a92021-02-26 10:08:50 +01003514 lyht_value_equal_cb ht_cb;
Michal Vasko90932a92020-02-12 14:33:03 +01003515
Michal Vaskob104f112020-07-17 09:54:54 +02003516 assert(siblings && schema);
Michal Vasko90932a92020-02-12 14:33:03 +01003517
Michal Vasko9e685082021-01-29 14:49:09 +01003518 parent = siblings->parent;
Michal Vasko08fd6132020-11-18 18:17:45 +01003519 if (parent && parent->schema && parent->children_ht) {
Michal Vasko90932a92020-02-12 14:33:03 +01003520 /* calculate our hash */
3521 hash = dict_hash_multi(0, schema->module->name, strlen(schema->module->name));
3522 hash = dict_hash_multi(hash, schema->name, strlen(schema->name));
3523 hash = dict_hash_multi(hash, NULL, 0);
3524
3525 /* use special hash table function */
3526 ht_cb = lyht_set_cb(parent->children_ht, lyd_hash_table_schema_val_equal);
3527
3528 /* find by hash */
3529 if (!lyht_find(parent->children_ht, &schema, hash, (void **)&match_p)) {
3530 siblings = *match_p;
3531 } else {
3532 /* not found */
3533 siblings = NULL;
3534 }
3535
3536 /* set the original hash table compare function back */
3537 lyht_set_cb(parent->children_ht, ht_cb);
3538 } else {
Michal Vaskob104f112020-07-17 09:54:54 +02003539 /* find first sibling */
3540 if (siblings->parent) {
3541 siblings = siblings->parent->child;
3542 } else {
3543 while (siblings->prev->next) {
3544 siblings = siblings->prev;
3545 }
3546 }
3547
3548 /* search manually without hashes */
Michal Vaskod989ba02020-08-24 10:59:24 +02003549 for ( ; siblings; siblings = siblings->next) {
Michal Vasko90932a92020-02-12 14:33:03 +01003550 if (siblings->schema == schema) {
3551 /* schema match is enough */
3552 break;
3553 }
3554 }
3555 }
3556
3557 if (!siblings) {
Michal Vasko9b368d32020-02-14 13:53:31 +01003558 if (match) {
3559 *match = NULL;
3560 }
Michal Vasko90932a92020-02-12 14:33:03 +01003561 return LY_ENOTFOUND;
3562 }
3563
Michal Vasko9b368d32020-02-14 13:53:31 +01003564 if (match) {
3565 *match = (struct lyd_node *)siblings;
3566 }
Michal Vasko90932a92020-02-12 14:33:03 +01003567 return LY_SUCCESS;
3568}
3569
Michal Vaskoe444f752020-02-10 12:20:06 +01003570API LY_ERR
3571lyd_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 +02003572 size_t val_len, struct lyd_node **match)
Michal Vaskoe444f752020-02-10 12:20:06 +01003573{
3574 LY_ERR rc;
3575 struct lyd_node *target = NULL;
3576
Michal Vasko4c583e82020-07-17 12:16:14 +02003577 LY_CHECK_ARG_RET(NULL, schema, !(schema->nodetype & (LYS_CHOICE | LYS_CASE)), LY_EINVAL);
Michal Vaskoe444f752020-02-10 12:20:06 +01003578
Michal Vasko08fd6132020-11-18 18:17:45 +01003579 if (!siblings || (siblings->schema && (lysc_data_parent(siblings->schema) != lysc_data_parent(schema)))) {
Michal Vasko62ed12d2020-05-21 10:08:25 +02003580 /* no data or schema mismatch */
Michal Vasko9b368d32020-02-14 13:53:31 +01003581 if (match) {
3582 *match = NULL;
3583 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003584 return LY_ENOTFOUND;
3585 }
3586
Michal Vaskof03ed032020-03-04 13:31:44 +01003587 if (key_or_value && !val_len) {
3588 val_len = strlen(key_or_value);
3589 }
3590
Michal Vaskob104f112020-07-17 09:54:54 +02003591 if ((schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) && key_or_value) {
3592 /* create a data node and find the instance */
3593 if (schema->nodetype == LYS_LEAFLIST) {
3594 /* target used attributes: schema, hash, value */
Michal Vaskofeca4fb2020-10-05 08:58:40 +02003595 rc = lyd_create_term(schema, key_or_value, val_len, NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, NULL, &target);
3596 LY_CHECK_RET(rc);
Michal Vaskob104f112020-07-17 09:54:54 +02003597 } else {
Michal Vasko90932a92020-02-12 14:33:03 +01003598 /* target used attributes: schema, hash, child (all keys) */
Michal Vasko004d3152020-06-11 19:59:22 +02003599 LY_CHECK_RET(lyd_create_list2(schema, key_or_value, val_len, &target));
Michal Vasko90932a92020-02-12 14:33:03 +01003600 }
3601
3602 /* find it */
3603 rc = lyd_find_sibling_first(siblings, target, match);
Michal Vaskob104f112020-07-17 09:54:54 +02003604 } else {
3605 /* find the first schema node instance */
3606 rc = lyd_find_sibling_schema(siblings, schema, match);
Michal Vaskoe444f752020-02-10 12:20:06 +01003607 }
3608
Michal Vaskoe444f752020-02-10 12:20:06 +01003609 lyd_free_tree(target);
3610 return rc;
3611}
Michal Vaskoccc02342020-05-21 10:09:21 +02003612
3613API LY_ERR
Michal Vasko1d4af6c2021-02-22 13:31:26 +01003614lyd_find_sibling_opaq_next(const struct lyd_node *first, const char *name, struct lyd_node **match)
3615{
3616 LY_CHECK_ARG_RET(NULL, name, LY_EINVAL);
3617
3618 for ( ; first; first = first->next) {
3619 if (!first->schema && !strcmp(LYD_NAME(first), name)) {
3620 break;
3621 }
3622 }
3623
3624 if (match) {
3625 *match = (struct lyd_node *)first;
3626 }
3627 return first ? LY_SUCCESS : LY_ENOTFOUND;
3628}
3629
3630API LY_ERR
Michal Vaskoccc02342020-05-21 10:09:21 +02003631lyd_find_xpath(const struct lyd_node *ctx_node, const char *xpath, struct ly_set **set)
3632{
3633 LY_ERR ret = LY_SUCCESS;
3634 struct lyxp_set xp_set;
Radek Krejcif03a9e22020-09-18 20:09:31 +02003635 struct lyxp_expr *exp = NULL;
Michal Vaskoccc02342020-05-21 10:09:21 +02003636 uint32_t i;
3637
3638 LY_CHECK_ARG_RET(NULL, ctx_node, xpath, set, LY_EINVAL);
3639
3640 memset(&xp_set, 0, sizeof xp_set);
3641
3642 /* compile expression */
Radek Krejcif03a9e22020-09-18 20:09:31 +02003643 ret = lyxp_expr_parse((struct ly_ctx *)LYD_CTX(ctx_node), xpath, 0, 1, &exp);
3644 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003645
3646 /* evaluate expression */
Michal Vasko400e9672021-01-11 13:39:17 +01003647 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 +02003648 LY_CHECK_GOTO(ret, cleanup);
3649
3650 /* allocate return set */
Radek Krejciba03a5a2020-08-27 14:40:41 +02003651 ret = ly_set_new(set);
3652 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003653
3654 /* transform into ly_set */
3655 if (xp_set.type == LYXP_SET_NODE_SET) {
3656 /* allocate memory for all the elements once (even though not all items must be elements but most likely will be) */
3657 (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs);
Michal Vaskob7be7a82020-08-20 09:09:04 +02003658 LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(LYD_CTX(ctx_node)); ret = LY_EMEM, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003659 (*set)->size = xp_set.used;
3660
3661 for (i = 0; i < xp_set.used; ++i) {
3662 if (xp_set.val.nodes[i].type == LYXP_NODE_ELEM) {
Radek Krejci3d92e442020-10-12 12:48:13 +02003663 ret = ly_set_add(*set, xp_set.val.nodes[i].node, 1, NULL);
Radek Krejciba03a5a2020-08-27 14:40:41 +02003664 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003665 }
3666 }
3667 }
3668
3669cleanup:
Michal Vasko0691d522020-05-21 13:21:47 +02003670 lyxp_set_free_content(&xp_set);
Michal Vaskob7be7a82020-08-20 09:09:04 +02003671 lyxp_expr_free((struct ly_ctx *)LYD_CTX(ctx_node), exp);
Radek Krejci8f45abc2020-11-26 12:15:13 +01003672 if (ret) {
3673 ly_set_free(*set, NULL);
3674 *set = NULL;
3675 }
Michal Vaskoccc02342020-05-21 10:09:21 +02003676 return ret;
3677}
Radek Krejcica989142020-11-05 11:32:22 +01003678
Michal Vasko3e1f6552021-01-14 09:27:55 +01003679API LY_ERR
3680lyd_find_path(const struct lyd_node *ctx_node, const char *path, ly_bool output, struct lyd_node **match)
3681{
3682 LY_ERR ret = LY_SUCCESS;
3683 struct lyxp_expr *expr = NULL;
3684 struct ly_path *lypath = NULL;
3685
3686 LY_CHECK_ARG_RET(NULL, ctx_node, ctx_node->schema, path, LY_EINVAL);
3687
3688 /* parse the path */
3689 ret = ly_path_parse(LYD_CTX(ctx_node), ctx_node->schema, path, strlen(path), LY_PATH_BEGIN_EITHER, LY_PATH_LREF_FALSE,
3690 LY_PATH_PREFIX_OPTIONAL, LY_PATH_PRED_SIMPLE, &expr);
3691 LY_CHECK_GOTO(ret, cleanup);
3692
3693 /* compile the path */
3694 ret = ly_path_compile(LYD_CTX(ctx_node), NULL, ctx_node->schema, expr, LY_PATH_LREF_FALSE,
3695 output ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT, LY_PATH_TARGET_SINGLE, LY_PREF_JSON,
3696 (void *)LYD_CTX(ctx_node), NULL, &lypath);
3697 LY_CHECK_GOTO(ret, cleanup);
3698
3699 /* evaluate the path */
3700 ret = ly_path_eval_partial(lypath, ctx_node, NULL, match);
3701
3702cleanup:
3703 lyxp_expr_free(LYD_CTX(ctx_node), expr);
3704 ly_path_free(LYD_CTX(ctx_node), lypath);
3705 return ret;
3706}
3707
Radek Krejcica989142020-11-05 11:32:22 +01003708API uint32_t
3709lyd_list_pos(const struct lyd_node *instance)
3710{
3711 const struct lyd_node *iter = NULL;
3712 uint32_t pos = 0;
3713
3714 if (!instance || !(instance->schema->nodetype & (LYS_LIST | LYS_LEAFLIST))) {
3715 return 0;
3716 }
3717
3718 /* data instances are ordered, so we can stop when we found instance of other schema node */
3719 for (iter = instance; iter->schema == instance->schema; iter = iter->prev) {
Radek Krejcibb27df32020-11-13 15:39:16 +01003720 if (pos && (iter->next == NULL)) {
Radek Krejcica989142020-11-05 11:32:22 +01003721 /* overrun to the end of the siblings list */
3722 break;
3723 }
3724 ++pos;
3725 }
3726
3727 return pos;
3728}
Radek Krejci4233f9b2020-11-05 12:38:35 +01003729
3730API struct lyd_node *
3731lyd_first_sibling(const struct lyd_node *node)
3732{
3733 struct lyd_node *start;
3734
3735 if (!node) {
3736 return NULL;
3737 }
3738
3739 /* get the first sibling */
3740 if (node->parent) {
3741 start = node->parent->child;
3742 } else {
Radek Krejcibb27df32020-11-13 15:39:16 +01003743 for (start = (struct lyd_node *)node; start->prev->next; start = start->prev) {}
Radek Krejci4233f9b2020-11-05 12:38:35 +01003744 }
3745
3746 return start;
3747}