blob: c9043707d9a78ad228209b06ba0ed90bbad81bad [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 */
178 rc = type->plugin->validate(ctx ? ctx : LYD_CTX(node), type, (struct lyd_node *)node, tree, &val, &err);
179 }
180
181 if (rc) {
Radek Krejci73dead22019-07-11 16:46:16 +0200182 if (err) {
183 if (ctx) {
Radek Krejciddace2c2021-01-08 11:30:56 +0100184 LOG_LOCSET(NULL, (const struct lyd_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 */
Radek Krejciddace2c2021-01-08 11:30:56 +0100222 LOG_LOCSET(node->schema, (const struct lyd_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
Radek Krejci7931b192020-06-25 17:05:03 +0200298API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200299lyd_parse_data(const struct ly_ctx *ctx, struct ly_in *in, LYD_FORMAT format, uint32_t parse_options, uint32_t validate_options,
Radek Krejci0f969882020-08-21 16:56:47 +0200300 struct lyd_node **tree)
Radek Krejci7931b192020-06-25 17:05:03 +0200301{
Radek Krejci1798aae2020-07-14 13:26:06 +0200302 LY_ERR ret = LY_SUCCESS;
303 struct lyd_ctx *lydctx = NULL;
304
Radek Krejci7931b192020-06-25 17:05:03 +0200305 LY_CHECK_ARG_RET(ctx, ctx, in, tree, LY_EINVAL);
306 LY_CHECK_ARG_RET(ctx, !(parse_options & ~LYD_PARSE_OPTS_MASK), LY_EINVAL);
307 LY_CHECK_ARG_RET(ctx, !(validate_options & ~LYD_VALIDATE_OPTS_MASK), LY_EINVAL);
308
309 format = lyd_parse_get_format(in, format);
310 LY_CHECK_ARG_RET(ctx, format, LY_EINVAL);
311
Radek Krejci1798aae2020-07-14 13:26:06 +0200312 /* init */
313 *tree = NULL;
314
Michal Vasko63f3d842020-07-08 10:10:14 +0200315 /* remember input position */
316 in->func_start = in->current;
Radek Krejci7931b192020-06-25 17:05:03 +0200317
318 switch (format) {
319 case LYD_XML:
Radek Krejci1798aae2020-07-14 13:26:06 +0200320 LY_CHECK_RET(lyd_parse_xml_data(ctx, in, parse_options, validate_options, tree, &lydctx));
321 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200322 case LYD_JSON:
Radek Krejci1798aae2020-07-14 13:26:06 +0200323 LY_CHECK_RET(lyd_parse_json_data(ctx, in, parse_options, validate_options, tree, &lydctx));
324 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200325 case LYD_LYB:
Radek Krejci1798aae2020-07-14 13:26:06 +0200326 LY_CHECK_RET(lyd_parse_lyb_data(ctx, in, parse_options, validate_options, tree, &lydctx));
327 break;
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200328 case LYD_UNKNOWN:
Radek Krejci7931b192020-06-25 17:05:03 +0200329 LOGINT_RET(ctx);
330 }
331
Radek Krejci1798aae2020-07-14 13:26:06 +0200332 if (!(parse_options & LYD_PARSE_ONLY)) {
333 uint32_t i = 0;
334 const struct lys_module *mod;
335 struct lyd_node *first, *next, **first2;
Radek Krejci7931b192020-06-25 17:05:03 +0200336
Radek Krejci1798aae2020-07-14 13:26:06 +0200337 next = *tree;
338 while (1) {
339 if (validate_options & LYD_VALIDATE_PRESENT) {
340 mod = lyd_data_next_module(&next, &first);
341 } else {
342 mod = lyd_mod_next_module(next, NULL, ctx, &i, &first);
343 }
344 if (!mod) {
345 break;
346 }
Radek Krejcicc551802020-12-05 11:57:20 +0100347 if (!first || (first == *tree)) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200348 /* make sure first2 changes are carried to tree */
349 first2 = tree;
350 } else {
351 first2 = &first;
352 }
353
354 /* validate new top-level nodes, autodelete CANNOT occur, all nodes are new */
355 LY_CHECK_GOTO(ret = lyd_validate_new(first2, NULL, mod, NULL), cleanup);
356
357 /* add all top-level defaults for this module */
Michal Vasko32711382020-12-03 14:14:31 +0100358 ret = lyd_new_implicit_r(NULL, first2, NULL, mod, &lydctx->node_types, &lydctx->node_when,
Michal Vasko69730152020-10-09 16:30:07 +0200359 (validate_options & LYD_VALIDATE_NO_STATE) ? LYD_IMPLICIT_NO_STATE : 0, NULL);
Radek Krejci1798aae2020-07-14 13:26:06 +0200360 LY_CHECK_GOTO(ret, cleanup);
361
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100362 /* our first module node pointer may no longer be the first */
363 while (*first2 && (*first2)->prev->next && (lyd_owner_module(*first2) == lyd_owner_module((*first2)->prev))) {
364 *first2 = (*first2)->prev;
365 }
366
Radek Krejci1798aae2020-07-14 13:26:06 +0200367 /* finish incompletely validated terminal values/attributes and when conditions */
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100368 ret = lyd_validate_unres(first2, mod, &lydctx->node_when, &lydctx->node_types, &lydctx->meta_types, NULL);
Radek Krejci1798aae2020-07-14 13:26:06 +0200369 LY_CHECK_GOTO(ret, cleanup);
370
371 /* perform final validation that assumes the data tree is final */
Michal Vaskobd4db892020-11-23 16:58:20 +0100372 LY_CHECK_GOTO(ret = lyd_validate_final_r(*first2, NULL, NULL, mod, validate_options, 0), cleanup);
Radek Krejci1798aae2020-07-14 13:26:06 +0200373 }
374 }
375
376cleanup:
Michal Vaskoafac7822020-10-20 14:22:26 +0200377 lydctx->free(lydctx);
Radek Krejci1798aae2020-07-14 13:26:06 +0200378 if (ret) {
379 lyd_free_all(*tree);
380 *tree = NULL;
381 }
382 return ret;
Radek Krejci7931b192020-06-25 17:05:03 +0200383}
384
385API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200386lyd_parse_data_mem(const struct ly_ctx *ctx, const char *data, LYD_FORMAT format, uint32_t parse_options, uint32_t validate_options,
Radek Krejci0f969882020-08-21 16:56:47 +0200387 struct lyd_node **tree)
Radek Krejci7931b192020-06-25 17:05:03 +0200388{
389 LY_ERR ret;
390 struct ly_in *in;
391
392 LY_CHECK_RET(ly_in_new_memory(data, &in));
393 ret = lyd_parse_data(ctx, in, format, parse_options, validate_options, tree);
394
395 ly_in_free(in, 0);
396 return ret;
397}
398
399API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200400lyd_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 +0200401 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_fd(fd, &in));
407 ret = lyd_parse_data(ctx, in, format, parse_options, validate_options, tree);
408
409 ly_in_free(in, 0);
410 return ret;
411}
412
413API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200414lyd_parse_data_path(const struct ly_ctx *ctx, const char *path, LYD_FORMAT format, uint32_t parse_options,
415 uint32_t validate_options, 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_filepath(path, 0, &in));
421 ret = lyd_parse_data(ctx, in, format, parse_options, validate_options, tree);
422
423 ly_in_free(in, 0);
424 return ret;
425}
426
Radek Krejci7931b192020-06-25 17:05:03 +0200427API LY_ERR
428lyd_parse_rpc(const struct ly_ctx *ctx, struct ly_in *in, LYD_FORMAT format, struct lyd_node **tree, struct lyd_node **op)
429{
430 LY_CHECK_ARG_RET(ctx, ctx, in, tree, LY_EINVAL);
431
432 format = lyd_parse_get_format(in, format);
433 LY_CHECK_ARG_RET(ctx, format, LY_EINVAL);
434
Radek Krejci1798aae2020-07-14 13:26:06 +0200435 /* init */
436 *tree = NULL;
437 if (op) {
438 *op = NULL;
439 }
440
Michal Vasko63f3d842020-07-08 10:10:14 +0200441 /* remember input position */
442 in->func_start = in->current;
443
Radek Krejci7931b192020-06-25 17:05:03 +0200444 switch (format) {
445 case LYD_XML:
Michal Vasko63f3d842020-07-08 10:10:14 +0200446 return lyd_parse_xml_rpc(ctx, in, tree, op);
Radek Krejci7931b192020-06-25 17:05:03 +0200447 case LYD_JSON:
Michal Vasko63f3d842020-07-08 10:10:14 +0200448 return lyd_parse_json_rpc(ctx, in, tree, op);
Radek Krejci7931b192020-06-25 17:05:03 +0200449 case LYD_LYB:
Michal Vasko63f3d842020-07-08 10:10:14 +0200450 return lyd_parse_lyb_rpc(ctx, in, tree, op);
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200451 case LYD_UNKNOWN:
452 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200453 }
454
455 LOGINT_RET(ctx);
456}
457
458API LY_ERR
Michal Vasko2552ea32020-12-08 15:32:34 +0100459lyd_parse_reply(const struct ly_ctx *ctx, struct ly_in *in, LYD_FORMAT format, struct lyd_node **tree,
Radek Krejci0f969882020-08-21 16:56:47 +0200460 struct lyd_node **op)
Radek Krejci7931b192020-06-25 17:05:03 +0200461{
Michal Vasko2552ea32020-12-08 15:32:34 +0100462 LY_CHECK_ARG_RET(ctx, ctx, in, tree || op, LY_EINVAL);
Radek Krejci7931b192020-06-25 17:05:03 +0200463
464 format = lyd_parse_get_format(in, format);
Michal Vasko2552ea32020-12-08 15:32:34 +0100465 LY_CHECK_ARG_RET(ctx, format, LY_EINVAL);
Radek Krejci7931b192020-06-25 17:05:03 +0200466
Radek Krejci1798aae2020-07-14 13:26:06 +0200467 /* init */
468 if (tree) {
469 *tree = NULL;
470 }
471 if (op) {
472 *op = NULL;
473 }
474
Michal Vasko63f3d842020-07-08 10:10:14 +0200475 /* remember input position */
476 in->func_start = in->current;
477
Radek Krejci7931b192020-06-25 17:05:03 +0200478 switch (format) {
479 case LYD_XML:
Michal Vasko2552ea32020-12-08 15:32:34 +0100480 return lyd_parse_xml_reply(ctx, in, tree, op);
Radek Krejci7931b192020-06-25 17:05:03 +0200481 case LYD_JSON:
Michal Vasko2552ea32020-12-08 15:32:34 +0100482 return lyd_parse_json_reply(ctx, in, tree, op);
Radek Krejci7931b192020-06-25 17:05:03 +0200483 case LYD_LYB:
Michal Vasko2552ea32020-12-08 15:32:34 +0100484 return lyd_parse_lyb_reply(ctx, in, tree, op);
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200485 case LYD_UNKNOWN:
486 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200487 }
488
Michal Vasko2552ea32020-12-08 15:32:34 +0100489 LOGINT_RET(ctx);
Radek Krejci7931b192020-06-25 17:05:03 +0200490}
491
492API LY_ERR
493lyd_parse_notif(const struct ly_ctx *ctx, struct ly_in *in, LYD_FORMAT format, struct lyd_node **tree, struct lyd_node **ntf)
494{
Radek Krejci1798aae2020-07-14 13:26:06 +0200495 LY_CHECK_ARG_RET(ctx, ctx, in, tree || ntf, LY_EINVAL);
Radek Krejci7931b192020-06-25 17:05:03 +0200496
497 format = lyd_parse_get_format(in, format);
498 LY_CHECK_ARG_RET(ctx, format, LY_EINVAL);
499
Radek Krejci1798aae2020-07-14 13:26:06 +0200500 /* init */
501 if (tree) {
502 *tree = NULL;
503 }
504 if (ntf) {
505 *ntf = NULL;
506 }
507
Michal Vasko63f3d842020-07-08 10:10:14 +0200508 /* remember input position */
509 in->func_start = in->current;
510
Radek Krejci7931b192020-06-25 17:05:03 +0200511 switch (format) {
512 case LYD_XML:
Michal Vasko63f3d842020-07-08 10:10:14 +0200513 return lyd_parse_xml_notif(ctx, in, tree, ntf);
Radek Krejci7931b192020-06-25 17:05:03 +0200514 case LYD_JSON:
Michal Vasko63f3d842020-07-08 10:10:14 +0200515 return lyd_parse_json_notif(ctx, in, tree, ntf);
Radek Krejci7931b192020-06-25 17:05:03 +0200516 case LYD_LYB:
Michal Vasko63f3d842020-07-08 10:10:14 +0200517 return lyd_parse_lyb_notif(ctx, in, tree, ntf);
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200518 case LYD_UNKNOWN:
519 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200520 }
521
522 LOGINT_RET(ctx);
Radek Krejcie7b95092019-05-15 11:03:07 +0200523}
Radek Krejci084289f2019-07-09 17:35:30 +0200524
Michal Vasko90932a92020-02-12 14:33:03 +0100525LY_ERR
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200526lyd_create_term(const struct lysc_node *schema, const char *value, size_t value_len, ly_bool *dynamic,
527 LY_PREFIX_FORMAT format, void *prefix_data, uint32_t hints, ly_bool *incomplete, struct lyd_node **node)
Michal Vasko90932a92020-02-12 14:33:03 +0100528{
529 LY_ERR ret;
530 struct lyd_node_term *term;
531
Michal Vasko9b368d32020-02-14 13:53:31 +0100532 assert(schema->nodetype & LYD_NODE_TERM);
533
Michal Vasko90932a92020-02-12 14:33:03 +0100534 term = calloc(1, sizeof *term);
535 LY_CHECK_ERR_RET(!term, LOGMEM(schema->module->ctx), LY_EMEM);
536
537 term->schema = schema;
538 term->prev = (struct lyd_node *)term;
Michal Vasko9b368d32020-02-14 13:53:31 +0100539 term->flags = LYD_NEW;
Michal Vasko90932a92020-02-12 14:33:03 +0100540
Radek Krejciddace2c2021-01-08 11:30:56 +0100541 LOG_LOCSET(schema, NULL, NULL, NULL);
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200542 ret = lyd_value_store(schema->module->ctx, &term->value, ((struct lysc_node_leaf *)term->schema)->type, value,
Radek Krejci2efc45b2020-12-22 16:25:44 +0100543 value_len, dynamic, format, prefix_data, hints, schema, incomplete);
Radek Krejciddace2c2021-01-08 11:30:56 +0100544 LOG_LOCBACK(1, 0, 0, 0);
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200545 LY_CHECK_ERR_RET(ret, free(term), ret);
Michal Vasko9b368d32020-02-14 13:53:31 +0100546 lyd_hash((struct lyd_node *)term);
547
548 *node = (struct lyd_node *)term;
549 return ret;
550}
551
552LY_ERR
553lyd_create_term2(const struct lysc_node *schema, const struct lyd_value *val, struct lyd_node **node)
554{
555 LY_ERR ret;
556 struct lyd_node_term *term;
557 struct lysc_type *type;
558
559 assert(schema->nodetype & LYD_NODE_TERM);
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200560 assert(val && val->canonical && val->realtype);
Michal Vasko9b368d32020-02-14 13:53:31 +0100561
562 term = calloc(1, sizeof *term);
563 LY_CHECK_ERR_RET(!term, LOGMEM(schema->module->ctx), LY_EMEM);
564
565 term->schema = schema;
566 term->prev = (struct lyd_node *)term;
567 term->flags = LYD_NEW;
568
569 type = ((struct lysc_node_leaf *)schema)->type;
570 ret = type->plugin->duplicate(schema->module->ctx, val, &term->value);
571 if (ret) {
572 LOGERR(schema->module->ctx, ret, "Value duplication failed.");
573 free(term);
574 return ret;
575 }
576 lyd_hash((struct lyd_node *)term);
Michal Vasko90932a92020-02-12 14:33:03 +0100577
578 *node = (struct lyd_node *)term;
579 return ret;
580}
581
582LY_ERR
583lyd_create_inner(const struct lysc_node *schema, struct lyd_node **node)
584{
585 struct lyd_node_inner *in;
586
Michal Vasko9b368d32020-02-14 13:53:31 +0100587 assert(schema->nodetype & LYD_NODE_INNER);
588
Michal Vasko90932a92020-02-12 14:33:03 +0100589 in = calloc(1, sizeof *in);
590 LY_CHECK_ERR_RET(!in, LOGMEM(schema->module->ctx), LY_EMEM);
591
592 in->schema = schema;
593 in->prev = (struct lyd_node *)in;
Michal Vasko9b368d32020-02-14 13:53:31 +0100594 in->flags = LYD_NEW;
Michal Vasko3383be72020-11-03 17:15:31 +0100595 if ((schema->nodetype == LYS_CONTAINER) && !(schema->flags & LYS_PRESENCE)) {
596 in->flags |= LYD_DEFAULT;
597 }
Michal Vasko90932a92020-02-12 14:33:03 +0100598
Michal Vasko9b368d32020-02-14 13:53:31 +0100599 /* do not hash list with keys, we need them for the hash */
600 if ((schema->nodetype != LYS_LIST) || (schema->flags & LYS_KEYLESS)) {
601 lyd_hash((struct lyd_node *)in);
602 }
Michal Vasko90932a92020-02-12 14:33:03 +0100603
604 *node = (struct lyd_node *)in;
605 return LY_SUCCESS;
606}
607
Michal Vasko90932a92020-02-12 14:33:03 +0100608LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +0200609lyd_create_list(const struct lysc_node *schema, const struct ly_path_predicate *predicates, struct lyd_node **node)
Michal Vasko90932a92020-02-12 14:33:03 +0100610{
611 LY_ERR ret = LY_SUCCESS;
Michal Vasko90932a92020-02-12 14:33:03 +0100612 struct lyd_node *list = NULL, *key;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200613 LY_ARRAY_COUNT_TYPE u;
Michal Vasko90932a92020-02-12 14:33:03 +0100614
Michal Vasko004d3152020-06-11 19:59:22 +0200615 assert((schema->nodetype == LYS_LIST) && !(schema->flags & LYS_KEYLESS));
Michal Vasko90932a92020-02-12 14:33:03 +0100616
617 /* create list */
618 LY_CHECK_GOTO(ret = lyd_create_inner(schema, &list), cleanup);
619
Radek Krejciddace2c2021-01-08 11:30:56 +0100620 LOG_LOCSET(NULL, list, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100621
Michal Vasko90932a92020-02-12 14:33:03 +0100622 /* create and insert all the keys */
Michal Vasko004d3152020-06-11 19:59:22 +0200623 LY_ARRAY_FOR(predicates, u) {
624 LY_CHECK_GOTO(ret = lyd_create_term2(predicates[u].key, &predicates[u].value, &key), cleanup);
Michal Vasko90932a92020-02-12 14:33:03 +0100625 lyd_insert_node(list, NULL, key);
626 }
627
Michal Vasko9b368d32020-02-14 13:53:31 +0100628 /* hash having all the keys */
629 lyd_hash(list);
630
Michal Vasko90932a92020-02-12 14:33:03 +0100631 /* success */
632 *node = list;
633 list = NULL;
634
635cleanup:
Radek Krejciddace2c2021-01-08 11:30:56 +0100636 LOG_LOCBACK(0, 1, 0, 0);
Michal Vasko90932a92020-02-12 14:33:03 +0100637 lyd_free_tree(list);
Michal Vasko004d3152020-06-11 19:59:22 +0200638 return ret;
639}
640
641static LY_ERR
642lyd_create_list2(const struct lysc_node *schema, const char *keys, size_t keys_len, struct lyd_node **node)
643{
644 LY_ERR ret = LY_SUCCESS;
645 struct lyxp_expr *expr = NULL;
646 uint16_t exp_idx = 0;
647 enum ly_path_pred_type pred_type = 0;
648 struct ly_path_predicate *predicates = NULL;
649
Radek Krejciddace2c2021-01-08 11:30:56 +0100650 LOG_LOCSET(schema, NULL, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100651
Michal Vasko004d3152020-06-11 19:59:22 +0200652 /* parse keys */
Michal Vasko6b26e742020-07-17 15:02:10 +0200653 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 +0200654 LY_PATH_PRED_KEYS, &expr), cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +0200655
656 /* compile them */
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200657 LY_CHECK_GOTO(ret = ly_path_compile_predicate(schema->module->ctx, NULL, NULL, schema, expr, &exp_idx, LY_PREF_JSON,
658 NULL, &predicates, &pred_type), cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +0200659
660 /* create the list node */
661 LY_CHECK_GOTO(ret = lyd_create_list(schema, predicates, node), cleanup);
662
663cleanup:
Radek Krejciddace2c2021-01-08 11:30:56 +0100664 LOG_LOCBACK(1, 0, 0, 0);
Michal Vasko004d3152020-06-11 19:59:22 +0200665 lyxp_expr_free(schema->module->ctx, expr);
Michal Vaskof7e16e22020-10-21 09:24:39 +0200666 ly_path_predicates_free(schema->module->ctx, pred_type, predicates);
Michal Vasko90932a92020-02-12 14:33:03 +0100667 return ret;
668}
669
670LY_ERR
Michal Vasko366a4a12020-12-04 16:23:57 +0100671lyd_create_any(const struct lysc_node *schema, const void *value, LYD_ANYDATA_VALUETYPE value_type, ly_bool use_value,
672 struct lyd_node **node)
Michal Vasko90932a92020-02-12 14:33:03 +0100673{
Michal Vasko366a4a12020-12-04 16:23:57 +0100674 LY_ERR ret;
Michal Vasko90932a92020-02-12 14:33:03 +0100675 struct lyd_node_any *any;
Michal Vasko366a4a12020-12-04 16:23:57 +0100676 union lyd_any_value any_val;
Michal Vasko90932a92020-02-12 14:33:03 +0100677
Michal Vasko9b368d32020-02-14 13:53:31 +0100678 assert(schema->nodetype & LYD_NODE_ANY);
679
Michal Vasko90932a92020-02-12 14:33:03 +0100680 any = calloc(1, sizeof *any);
681 LY_CHECK_ERR_RET(!any, LOGMEM(schema->module->ctx), LY_EMEM);
682
683 any->schema = schema;
684 any->prev = (struct lyd_node *)any;
Michal Vasko9b368d32020-02-14 13:53:31 +0100685 any->flags = LYD_NEW;
Michal Vasko90932a92020-02-12 14:33:03 +0100686
Radek Krejci1798aae2020-07-14 13:26:06 +0200687 /* TODO: convert XML/JSON strings into a opaq data tree */
Michal Vasko366a4a12020-12-04 16:23:57 +0100688
689 if (use_value) {
690 any->value.str = value;
691 any->value_type = value_type;
692 } else {
693 any_val.str = value;
694 ret = lyd_any_copy_value((struct lyd_node *)any, &any_val, value_type);
695 LY_CHECK_ERR_RET(ret, free(any), ret);
696 }
Michal Vasko9b368d32020-02-14 13:53:31 +0100697 lyd_hash((struct lyd_node *)any);
Michal Vasko90932a92020-02-12 14:33:03 +0100698
699 *node = (struct lyd_node *)any;
700 return LY_SUCCESS;
701}
702
Michal Vasko52927e22020-03-16 17:26:14 +0100703LY_ERR
Michal Vasko501af032020-11-11 20:27:44 +0100704lyd_create_opaq(const struct ly_ctx *ctx, const char *name, size_t name_len, const char *prefix, size_t pref_len,
705 const char *module_key, size_t module_key_len, const char *value, size_t value_len, ly_bool *dynamic,
706 LY_PREFIX_FORMAT format, void *val_prefix_data, uint32_t hints, struct lyd_node **node)
Michal Vasko52927e22020-03-16 17:26:14 +0100707{
Radek Krejci011e4aa2020-09-04 15:22:31 +0200708 LY_ERR ret = LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +0100709 struct lyd_node_opaq *opaq;
710
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200711 assert(ctx && name && name_len && format);
Michal Vasko52927e22020-03-16 17:26:14 +0100712
713 if (!value_len) {
714 value = "";
715 }
716
717 opaq = calloc(1, sizeof *opaq);
Michal Vasko501af032020-11-11 20:27:44 +0100718 LY_CHECK_ERR_GOTO(!opaq, LOGMEM(ctx); ret = LY_EMEM, finish);
Michal Vasko52927e22020-03-16 17:26:14 +0100719
720 opaq->prev = (struct lyd_node *)opaq;
Michal Vaskoad92b672020-11-12 13:11:31 +0100721 LY_CHECK_GOTO(ret = lydict_insert(ctx, name, name_len, &opaq->name.name), finish);
Radek Krejci011e4aa2020-09-04 15:22:31 +0200722
Michal Vasko52927e22020-03-16 17:26:14 +0100723 if (pref_len) {
Michal Vaskoad92b672020-11-12 13:11:31 +0100724 LY_CHECK_GOTO(ret = lydict_insert(ctx, prefix, pref_len, &opaq->name.prefix), finish);
Michal Vasko52927e22020-03-16 17:26:14 +0100725 }
Radek Krejci1798aae2020-07-14 13:26:06 +0200726 if (module_key_len) {
Michal Vaskoad92b672020-11-12 13:11:31 +0100727 LY_CHECK_GOTO(ret = lydict_insert(ctx, module_key, module_key_len, &opaq->name.module_ns), finish);
Radek Krejci1798aae2020-07-14 13:26:06 +0200728 }
Michal Vasko52927e22020-03-16 17:26:14 +0100729 if (dynamic && *dynamic) {
Radek Krejci011e4aa2020-09-04 15:22:31 +0200730 LY_CHECK_GOTO(ret = lydict_insert_zc(ctx, (char *)value, &opaq->value), finish);
Michal Vasko52927e22020-03-16 17:26:14 +0100731 *dynamic = 0;
732 } else {
Radek Krejci011e4aa2020-09-04 15:22:31 +0200733 LY_CHECK_GOTO(ret = lydict_insert(ctx, value, value_len, &opaq->value), finish);
Michal Vasko52927e22020-03-16 17:26:14 +0100734 }
Michal Vasko501af032020-11-11 20:27:44 +0100735
736 opaq->format = format;
737 opaq->val_prefix_data = val_prefix_data;
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200738 opaq->hints = hints;
Michal Vasko52927e22020-03-16 17:26:14 +0100739 opaq->ctx = ctx;
740
Radek Krejci011e4aa2020-09-04 15:22:31 +0200741finish:
742 if (ret) {
743 lyd_free_tree((struct lyd_node *)opaq);
Michal Vasko501af032020-11-11 20:27:44 +0100744 ly_free_prefix_data(format, val_prefix_data);
Radek Krejci011e4aa2020-09-04 15:22:31 +0200745 } else {
746 *node = (struct lyd_node *)opaq;
747 }
748 return ret;
Michal Vasko52927e22020-03-16 17:26:14 +0100749}
750
Michal Vasko3a41dff2020-07-15 14:30:28 +0200751API LY_ERR
Michal Vasko65243892020-12-04 16:26:21 +0100752lyd_new_inner(struct lyd_node *parent, const struct lys_module *module, const char *name, ly_bool output,
753 struct lyd_node **node)
Michal Vasko013a8182020-03-03 10:46:53 +0100754{
755 struct lyd_node *ret = NULL;
756 const struct lysc_node *schema;
757 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
758
Michal Vasko6027eb92020-07-15 16:37:30 +0200759 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100760
Michal Vaskof03ed032020-03-04 13:31:44 +0100761 if (!module) {
762 module = parent->schema->module;
763 }
764
Michal Vasko3a41dff2020-07-15 14:30:28 +0200765 schema = lys_find_child(parent ? parent->schema : NULL, module, name, 0,
Radek Krejci41ac9942020-11-02 14:47:56 +0100766 LYS_CONTAINER | LYS_NOTIF | LYS_RPC | LYS_ACTION, output ? LYS_GETNEXT_OUTPUT : 0);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200767 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 +0100768
Michal Vasko3a41dff2020-07-15 14:30:28 +0200769 LY_CHECK_RET(lyd_create_inner(schema, &ret));
770 if (parent) {
Michal Vasko013a8182020-03-03 10:46:53 +0100771 lyd_insert_node(parent, NULL, ret);
772 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200773
774 if (node) {
775 *node = ret;
776 }
777 return LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +0100778}
779
Michal Vasko3a41dff2020-07-15 14:30:28 +0200780API LY_ERR
Michal Vasko65243892020-12-04 16:26:21 +0100781lyd_new_list(struct lyd_node *parent, const struct lys_module *module, const char *name, ly_bool output,
782 struct lyd_node **node, ...)
Michal Vasko013a8182020-03-03 10:46:53 +0100783{
784 struct lyd_node *ret = NULL, *key;
785 const struct lysc_node *schema, *key_s;
786 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
787 va_list ap;
788 const char *key_val;
789 LY_ERR rc = LY_SUCCESS;
790
Michal Vasko6027eb92020-07-15 16:37:30 +0200791 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100792
Michal Vaskof03ed032020-03-04 13:31:44 +0100793 if (!module) {
794 module = parent->schema->module;
795 }
796
Radek Krejci41ac9942020-11-02 14:47:56 +0100797 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 +0200798 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "List node \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +0100799
800 /* create list inner node */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200801 LY_CHECK_RET(lyd_create_inner(schema, &ret));
Michal Vasko013a8182020-03-03 10:46:53 +0100802
Michal Vasko3a41dff2020-07-15 14:30:28 +0200803 va_start(ap, node);
Michal Vasko013a8182020-03-03 10:46:53 +0100804
805 /* create and insert all the keys */
806 for (key_s = lysc_node_children(schema, 0); key_s && (key_s->flags & LYS_KEY); key_s = key_s->next) {
807 key_val = va_arg(ap, const char *);
808
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200809 rc = lyd_create_term(key_s, key_val, key_val ? strlen(key_val) : 0, NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA,
810 NULL, &key);
811 LY_CHECK_GOTO(rc, cleanup);
Michal Vasko013a8182020-03-03 10:46:53 +0100812 lyd_insert_node(ret, NULL, key);
813 }
814
Michal Vasko013a8182020-03-03 10:46:53 +0100815 if (parent) {
816 lyd_insert_node(parent, NULL, ret);
817 }
818
819cleanup:
Michal Vasko3a41dff2020-07-15 14:30:28 +0200820 va_end(ap);
Michal Vasko013a8182020-03-03 10:46:53 +0100821 if (rc) {
822 lyd_free_tree(ret);
823 ret = NULL;
Michal Vasko3a41dff2020-07-15 14:30:28 +0200824 } else if (node) {
825 *node = ret;
Michal Vasko013a8182020-03-03 10:46:53 +0100826 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200827 return rc;
Michal Vasko013a8182020-03-03 10:46:53 +0100828}
829
Michal Vasko3a41dff2020-07-15 14:30:28 +0200830API LY_ERR
831lyd_new_list2(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *keys,
Radek Krejci41ac9942020-11-02 14:47:56 +0100832 ly_bool output, struct lyd_node **node)
Michal Vasko013a8182020-03-03 10:46:53 +0100833{
834 struct lyd_node *ret = NULL;
835 const struct lysc_node *schema;
836 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
837
Michal Vasko6027eb92020-07-15 16:37:30 +0200838 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100839
Michal Vaskof03ed032020-03-04 13:31:44 +0100840 if (!module) {
841 module = parent->schema->module;
842 }
Michal Vasko004d3152020-06-11 19:59:22 +0200843 if (!keys) {
844 keys = "";
845 }
Michal Vaskof03ed032020-03-04 13:31:44 +0100846
Michal Vasko004d3152020-06-11 19:59:22 +0200847 /* find schema node */
Radek Krejci41ac9942020-11-02 14:47:56 +0100848 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 +0200849 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "List node \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +0100850
Michal Vasko004d3152020-06-11 19:59:22 +0200851 if ((schema->flags & LYS_KEYLESS) && !keys[0]) {
852 /* key-less list */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200853 LY_CHECK_RET(lyd_create_inner(schema, &ret));
Michal Vasko004d3152020-06-11 19:59:22 +0200854 } else {
855 /* create the list node */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200856 LY_CHECK_RET(lyd_create_list2(schema, keys, strlen(keys), &ret));
Michal Vasko004d3152020-06-11 19:59:22 +0200857 }
Michal Vasko004d3152020-06-11 19:59:22 +0200858 if (parent) {
Michal Vasko013a8182020-03-03 10:46:53 +0100859 lyd_insert_node(parent, NULL, ret);
860 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200861
862 if (node) {
863 *node = ret;
864 }
865 return LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +0100866}
867
Michal Vasko3a41dff2020-07-15 14:30:28 +0200868API LY_ERR
869lyd_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 +0100870 ly_bool output, struct lyd_node **node)
Michal Vasko013a8182020-03-03 10:46:53 +0100871{
Michal Vaskocbff3e92020-05-27 12:56:41 +0200872 LY_ERR rc;
Michal Vasko013a8182020-03-03 10:46:53 +0100873 struct lyd_node *ret = NULL;
874 const struct lysc_node *schema;
875 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
876
Michal Vasko6027eb92020-07-15 16:37:30 +0200877 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100878
Michal Vaskof03ed032020-03-04 13:31:44 +0100879 if (!module) {
880 module = parent->schema->module;
881 }
882
Radek Krejci41ac9942020-11-02 14:47:56 +0100883 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 +0200884 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "Term node \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +0100885
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200886 rc = lyd_create_term(schema, val_str, val_str ? strlen(val_str) : 0, NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, NULL,
887 &ret);
888 LY_CHECK_RET(rc);
Michal Vaskocbff3e92020-05-27 12:56:41 +0200889 if (parent) {
Michal Vasko013a8182020-03-03 10:46:53 +0100890 lyd_insert_node(parent, NULL, ret);
891 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200892
893 if (node) {
894 *node = ret;
895 }
896 return LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +0100897}
898
Michal Vasko3a41dff2020-07-15 14:30:28 +0200899API LY_ERR
Michal Vasko219006c2020-12-04 16:26:52 +0100900lyd_new_any(struct lyd_node *parent, const struct lys_module *module, const char *name, void *value,
Radek Krejci41ac9942020-11-02 14:47:56 +0100901 LYD_ANYDATA_VALUETYPE value_type, ly_bool output, struct lyd_node **node)
Michal Vasko013a8182020-03-03 10:46:53 +0100902{
903 struct lyd_node *ret = NULL;
904 const struct lysc_node *schema;
905 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
906
Michal Vasko6027eb92020-07-15 16:37:30 +0200907 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100908
Michal Vaskof03ed032020-03-04 13:31:44 +0100909 if (!module) {
910 module = parent->schema->module;
911 }
912
Radek Krejci41ac9942020-11-02 14:47:56 +0100913 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 +0200914 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "Any node \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +0100915
Michal Vasko366a4a12020-12-04 16:23:57 +0100916 LY_CHECK_RET(lyd_create_any(schema, value, value_type, 1, &ret));
Michal Vasko3a41dff2020-07-15 14:30:28 +0200917 if (parent) {
Michal Vasko013a8182020-03-03 10:46:53 +0100918 lyd_insert_node(parent, NULL, ret);
919 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200920
921 if (node) {
922 *node = ret;
923 }
924 return LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +0100925}
926
Michal Vasko4490d312020-06-16 13:08:55 +0200927/**
928 * @brief Update node value.
929 *
930 * @param[in] node Node to update.
931 * @param[in] value New value to set.
932 * @param[in] value_type Type of @p value for any node.
933 * @param[out] new_parent Set to @p node if the value was updated, otherwise set to NULL.
934 * @param[out] new_node Set to @p node if the value was updated, otherwise set to NULL.
935 * @return LY_ERR value.
936 */
Michal Vasko00cbf532020-06-15 13:58:47 +0200937static LY_ERR
938lyd_new_path_update(struct lyd_node *node, const void *value, LYD_ANYDATA_VALUETYPE value_type,
Radek Krejci0f969882020-08-21 16:56:47 +0200939 struct lyd_node **new_parent, struct lyd_node **new_node)
Michal Vasko00cbf532020-06-15 13:58:47 +0200940{
941 LY_ERR ret = LY_SUCCESS;
942 struct lyd_node *new_any;
943
944 switch (node->schema->nodetype) {
945 case LYS_CONTAINER:
946 case LYS_NOTIF:
947 case LYS_RPC:
948 case LYS_ACTION:
949 case LYS_LIST:
950 case LYS_LEAFLIST:
951 /* if it exists, there is nothing to update */
952 *new_parent = NULL;
953 *new_node = NULL;
954 break;
955 case LYS_LEAF:
956 ret = lyd_change_term(node, value);
957 if ((ret == LY_SUCCESS) || (ret == LY_EEXIST)) {
958 /* there was an actual change (at least of the default flag) */
959 *new_parent = node;
960 *new_node = node;
961 ret = LY_SUCCESS;
962 } else if (ret == LY_ENOT) {
963 /* no change */
964 *new_parent = NULL;
965 *new_node = NULL;
966 ret = LY_SUCCESS;
967 } /* else error */
968 break;
969 case LYS_ANYDATA:
970 case LYS_ANYXML:
971 /* create a new any node */
Michal Vasko366a4a12020-12-04 16:23:57 +0100972 LY_CHECK_RET(lyd_create_any(node->schema, value, value_type, 0, &new_any));
Michal Vasko00cbf532020-06-15 13:58:47 +0200973
974 /* compare with the existing one */
Michal Vasko8f359bf2020-07-28 10:41:15 +0200975 if (lyd_compare_single(node, new_any, 0)) {
Michal Vasko00cbf532020-06-15 13:58:47 +0200976 /* not equal, switch values (so that we can use generic node free) */
977 ((struct lyd_node_any *)new_any)->value = ((struct lyd_node_any *)node)->value;
978 ((struct lyd_node_any *)new_any)->value_type = ((struct lyd_node_any *)node)->value_type;
979 ((struct lyd_node_any *)node)->value.str = value;
980 ((struct lyd_node_any *)node)->value_type = value_type;
981
982 *new_parent = node;
983 *new_node = node;
984 } else {
985 /* they are equal */
986 *new_parent = NULL;
987 *new_node = NULL;
988 }
989 lyd_free_tree(new_any);
990 break;
991 default:
Michal Vaskob7be7a82020-08-20 09:09:04 +0200992 LOGINT(LYD_CTX(node));
Michal Vasko00cbf532020-06-15 13:58:47 +0200993 ret = LY_EINT;
994 break;
995 }
996
997 return ret;
998}
999
Michal Vasko3a41dff2020-07-15 14:30:28 +02001000API LY_ERR
Michal Vasko871a0252020-11-11 18:35:24 +01001001lyd_new_meta(const struct ly_ctx *ctx, struct lyd_node *parent, const struct lys_module *module, const char *name,
1002 const char *val_str, ly_bool clear_dflt, struct lyd_meta **meta)
Michal Vaskod86997b2020-05-26 15:19:54 +02001003{
Michal Vaskod86997b2020-05-26 15:19:54 +02001004 const char *prefix, *tmp;
Michal Vaskod86997b2020-05-26 15:19:54 +02001005 size_t pref_len, name_len;
1006
Michal Vasko871a0252020-11-11 18:35:24 +01001007 LY_CHECK_ARG_RET(NULL, ctx, name, module || strchr(name, ':'), parent || meta, LY_EINVAL);
Michal Vasko00cbf532020-06-15 13:58:47 +02001008
Michal Vasko871a0252020-11-11 18:35:24 +01001009 if (parent && !parent->schema) {
1010 LOGERR(ctx, LY_EINVAL, "Cannot add metadata to an opaque node \"%s\".", ((struct lyd_node_opaq *)parent)->name);
1011 return LY_EINVAL;
1012 }
Michal Vasko610553d2020-11-18 18:15:05 +01001013 if (meta) {
1014 *meta = NULL;
1015 }
Michal Vaskod86997b2020-05-26 15:19:54 +02001016
1017 /* parse the name */
1018 tmp = name;
1019 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
1020 LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name);
Michal Vasko871a0252020-11-11 18:35:24 +01001021 return LY_EINVAL;
Michal Vaskod86997b2020-05-26 15:19:54 +02001022 }
1023
1024 /* find the module */
1025 if (prefix) {
Radek Krejci0ad51f12020-07-16 12:08:12 +02001026 module = ly_ctx_get_module_implemented2(ctx, prefix, pref_len);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001027 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 +02001028 }
1029
1030 /* set value if none */
1031 if (!val_str) {
1032 val_str = "";
1033 }
1034
Michal Vasko871a0252020-11-11 18:35:24 +01001035 return lyd_create_meta(parent, meta, module, name, name_len, val_str, strlen(val_str), NULL, LY_PREF_JSON,
1036 NULL, LYD_HINT_DATA, clear_dflt, NULL);
1037}
Michal Vasko3a41dff2020-07-15 14:30:28 +02001038
Michal Vaskoba696702020-11-11 19:12:45 +01001039API LY_ERR
1040lyd_new_meta2(const struct ly_ctx *ctx, struct lyd_node *parent, ly_bool clear_dflt, const struct lyd_attr *attr,
1041 struct lyd_meta **meta)
1042{
1043 const struct lys_module *mod;
1044
1045 LY_CHECK_ARG_RET(NULL, ctx, attr, parent || meta, LY_EINVAL);
1046
1047 if (parent && !parent->schema) {
1048 LOGERR(ctx, LY_EINVAL, "Cannot add metadata to an opaque node \"%s\".", ((struct lyd_node_opaq *)parent)->name);
1049 return LY_EINVAL;
Michal Vasko3a41dff2020-07-15 14:30:28 +02001050 }
Michal Vasko610553d2020-11-18 18:15:05 +01001051 if (meta) {
1052 *meta = NULL;
1053 }
Michal Vaskoba696702020-11-11 19:12:45 +01001054
1055 switch (attr->format) {
1056 case LY_PREF_XML:
Michal Vaskoad92b672020-11-12 13:11:31 +01001057 mod = ly_ctx_get_module_implemented_ns(ctx, attr->name.module_ns);
Michal Vaskoba696702020-11-11 19:12:45 +01001058 if (!mod) {
Michal Vaskoad92b672020-11-12 13:11:31 +01001059 LOGERR(ctx, LY_EINVAL, "Module with namespace \"%s\" not found.", attr->name.module_ns);
Michal Vaskoba696702020-11-11 19:12:45 +01001060 return LY_ENOTFOUND;
1061 }
1062 break;
1063 case LY_PREF_JSON:
Michal Vaskoad92b672020-11-12 13:11:31 +01001064 mod = ly_ctx_get_module_implemented(ctx, attr->name.module_name);
Michal Vaskoba696702020-11-11 19:12:45 +01001065 if (!mod) {
Michal Vaskoad92b672020-11-12 13:11:31 +01001066 LOGERR(ctx, LY_EINVAL, "Module \"%s\" not found.", attr->name.module_name);
Michal Vaskoba696702020-11-11 19:12:45 +01001067 return LY_ENOTFOUND;
1068 }
1069 break;
1070 default:
1071 LOGINT_RET(ctx);
1072 }
1073
Michal Vaskoad92b672020-11-12 13:11:31 +01001074 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 +01001075 NULL, attr->format, attr->val_prefix_data, attr->hints, clear_dflt, NULL);
Michal Vaskod86997b2020-05-26 15:19:54 +02001076}
1077
Michal Vasko3a41dff2020-07-15 14:30:28 +02001078API LY_ERR
Michal Vasko00cbf532020-06-15 13:58:47 +02001079lyd_new_opaq(struct lyd_node *parent, const struct ly_ctx *ctx, const char *name, const char *value,
Radek Krejci0f969882020-08-21 16:56:47 +02001080 const char *module_name, struct lyd_node **node)
Michal Vasko00cbf532020-06-15 13:58:47 +02001081{
1082 struct lyd_node *ret = NULL;
1083
Michal Vasko6027eb92020-07-15 16:37:30 +02001084 LY_CHECK_ARG_RET(ctx, parent || ctx, parent || node, name, module_name, LY_EINVAL);
Michal Vasko00cbf532020-06-15 13:58:47 +02001085
1086 if (!ctx) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001087 ctx = LYD_CTX(parent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001088 }
1089 if (!value) {
1090 value = "";
1091 }
1092
Michal Vasko501af032020-11-11 20:27:44 +01001093 LY_CHECK_RET(lyd_create_opaq(ctx, name, strlen(name), NULL, 0, module_name, strlen(module_name), value,
1094 strlen(value), NULL, LY_PREF_JSON, NULL, 0, &ret));
Michal Vasko3a41dff2020-07-15 14:30:28 +02001095 if (parent) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001096 lyd_insert_node(parent, NULL, ret);
1097 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02001098
1099 if (node) {
1100 *node = ret;
1101 }
1102 return LY_SUCCESS;
Michal Vasko00cbf532020-06-15 13:58:47 +02001103}
1104
Michal Vasko3a41dff2020-07-15 14:30:28 +02001105API LY_ERR
1106lyd_new_attr(struct lyd_node *parent, const char *module_name, const char *name, const char *val_str,
Radek Krejci0f969882020-08-21 16:56:47 +02001107 struct lyd_attr **attr)
Michal Vasko00cbf532020-06-15 13:58:47 +02001108{
Radek Krejci1798aae2020-07-14 13:26:06 +02001109 struct lyd_attr *ret = NULL;
Michal Vasko00cbf532020-06-15 13:58:47 +02001110 const struct ly_ctx *ctx;
1111 const char *prefix, *tmp;
Michal Vasko51d21b82020-11-13 18:03:54 +01001112 size_t pref_len, name_len, mod_len;
Michal Vasko00cbf532020-06-15 13:58:47 +02001113
Michal Vasko3a41dff2020-07-15 14:30:28 +02001114 LY_CHECK_ARG_RET(NULL, parent, !parent->schema, name, LY_EINVAL);
Michal Vasko00cbf532020-06-15 13:58:47 +02001115
Michal Vaskob7be7a82020-08-20 09:09:04 +02001116 ctx = LYD_CTX(parent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001117
1118 /* parse the name */
1119 tmp = name;
1120 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
1121 LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001122 return LY_EVALID;
Michal Vasko00cbf532020-06-15 13:58:47 +02001123 }
1124
Michal Vasko51d21b82020-11-13 18:03:54 +01001125 /* get the module */
1126 if (module_name) {
1127 mod_len = strlen(module_name);
1128 } else {
1129 module_name = prefix;
1130 mod_len = pref_len;
1131 }
1132
Michal Vasko00cbf532020-06-15 13:58:47 +02001133 /* set value if none */
1134 if (!val_str) {
1135 val_str = "";
1136 }
1137
Michal Vasko51d21b82020-11-13 18:03:54 +01001138 LY_CHECK_RET(lyd_create_attr(parent, &ret, ctx, name, name_len, prefix, pref_len, module_name, mod_len, val_str,
1139 strlen(val_str), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA));
Michal Vasko3a41dff2020-07-15 14:30:28 +02001140
1141 if (attr) {
1142 *attr = ret;
1143 }
1144 return LY_SUCCESS;
Michal Vasko00cbf532020-06-15 13:58:47 +02001145}
1146
1147API LY_ERR
1148lyd_change_term(struct lyd_node *term, const char *val_str)
1149{
1150 LY_ERR ret = LY_SUCCESS;
1151 struct lysc_type *type;
1152 struct lyd_node_term *t;
1153 struct lyd_node *parent;
1154 struct lyd_value val = {0};
Radek Krejci857189e2020-09-01 13:26:36 +02001155 ly_bool dflt_change, val_change;
Michal Vasko00cbf532020-06-15 13:58:47 +02001156
1157 LY_CHECK_ARG_RET(NULL, term, term->schema, term->schema->nodetype & LYD_NODE_TERM, LY_EINVAL);
1158
1159 if (!val_str) {
1160 val_str = "";
1161 }
1162 t = (struct lyd_node_term *)term;
1163 type = ((struct lysc_node_leaf *)term->schema)->type;
1164
1165 /* parse the new value */
Radek Krejciddace2c2021-01-08 11:30:56 +01001166 LOG_LOCSET(term->schema, term, NULL, NULL);
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001167 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 +01001168 term->schema, NULL);
Radek Krejciddace2c2021-01-08 11:30:56 +01001169 LOG_LOCBACK(term->schema ? 1 : 0, 1, 0, 0);
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001170 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001171
1172 /* compare original and new value */
1173 if (type->plugin->compare(&t->value, &val)) {
1174 /* values differ, switch them */
Michal Vaskob7be7a82020-08-20 09:09:04 +02001175 type->plugin->free(LYD_CTX(term), &t->value);
Michal Vasko00cbf532020-06-15 13:58:47 +02001176 t->value = val;
1177 memset(&val, 0, sizeof val);
1178 val_change = 1;
1179 } else {
1180 val_change = 0;
1181 }
1182
1183 /* always clear the default flag */
1184 if (term->flags & LYD_DEFAULT) {
1185 for (parent = term; parent; parent = (struct lyd_node *)parent->parent) {
1186 parent->flags &= ~LYD_DEFAULT;
1187 }
1188 dflt_change = 1;
1189 } else {
1190 dflt_change = 0;
1191 }
1192
1193 if (val_change || dflt_change) {
1194 /* make the node non-validated */
1195 term->flags &= LYD_NEW;
1196 }
1197
1198 if (val_change) {
1199 if (term->schema->nodetype == LYS_LEAFLIST) {
1200 /* leaf-list needs to be hashed again and re-inserted into parent */
1201 lyd_unlink_hash(term);
1202 lyd_hash(term);
1203 LY_CHECK_GOTO(ret = lyd_insert_hash(term), cleanup);
1204 } else if ((term->schema->flags & LYS_KEY) && term->parent) {
1205 /* list needs to be updated if its key was changed */
1206 assert(term->parent->schema->nodetype == LYS_LIST);
1207 lyd_unlink_hash((struct lyd_node *)term->parent);
1208 lyd_hash((struct lyd_node *)term->parent);
1209 LY_CHECK_GOTO(ret = lyd_insert_hash((struct lyd_node *)term->parent), cleanup);
1210 } /* else leaf that is not a key, its value is not used for its hash so it does not change */
1211 }
1212
1213 /* retrun value */
1214 if (!val_change) {
1215 if (dflt_change) {
1216 /* only default flag change */
1217 ret = LY_EEXIST;
1218 } else {
1219 /* no change */
1220 ret = LY_ENOT;
1221 }
1222 } /* else value changed, LY_SUCCESS */
1223
1224cleanup:
Michal Vasko59512fc2020-12-09 18:13:29 +01001225 if (val.realtype) {
1226 type->plugin->free(LYD_CTX(term), &val);
1227 }
Michal Vasko00cbf532020-06-15 13:58:47 +02001228 return ret;
1229}
1230
Michal Vasko41586352020-07-13 13:54:25 +02001231API LY_ERR
1232lyd_change_meta(struct lyd_meta *meta, const char *val_str)
1233{
1234 LY_ERR ret = LY_SUCCESS;
Radek Krejci2b18bf12020-11-06 11:20:20 +01001235 struct lyd_meta *m2 = NULL;
Michal Vasko41586352020-07-13 13:54:25 +02001236 struct lyd_value val;
Radek Krejci857189e2020-09-01 13:26:36 +02001237 ly_bool val_change;
Michal Vasko41586352020-07-13 13:54:25 +02001238
1239 LY_CHECK_ARG_RET(NULL, meta, LY_EINVAL);
1240
1241 if (!val_str) {
1242 val_str = "";
1243 }
1244
1245 /* parse the new value into a new meta structure */
1246 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 +01001247 strlen(val_str), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, 0, NULL), cleanup);
Michal Vasko41586352020-07-13 13:54:25 +02001248
1249 /* compare original and new value */
1250 if (lyd_compare_meta(meta, m2)) {
1251 /* values differ, switch them */
1252 val = meta->value;
1253 meta->value = m2->value;
1254 m2->value = val;
1255 val_change = 1;
1256 } else {
1257 val_change = 0;
1258 }
1259
1260 /* retrun value */
1261 if (!val_change) {
1262 /* no change */
1263 ret = LY_ENOT;
1264 } /* else value changed, LY_SUCCESS */
1265
1266cleanup:
Michal Vasko1a66a5d2020-11-18 18:15:37 +01001267 lyd_free_meta_single(m2);
Michal Vasko41586352020-07-13 13:54:25 +02001268 return ret;
1269}
1270
Michal Vasko3a41dff2020-07-15 14:30:28 +02001271API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001272lyd_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 +02001273 struct lyd_node **node)
Michal Vasko00cbf532020-06-15 13:58:47 +02001274{
Michal Vasko3a41dff2020-07-15 14:30:28 +02001275 return lyd_new_path2(parent, ctx, path, value, 0, options, node, NULL);
Michal Vasko00cbf532020-06-15 13:58:47 +02001276}
1277
1278API LY_ERR
1279lyd_new_path2(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const void *value,
Radek Krejci1deb5be2020-08-26 16:43:36 +02001280 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 +02001281{
1282 LY_ERR ret = LY_SUCCESS, r;
1283 struct lyxp_expr *exp = NULL;
1284 struct ly_path *p = NULL;
1285 struct lyd_node *nparent = NULL, *nnode = NULL, *node = NULL, *cur_parent;
1286 const struct lysc_node *schema;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001287 LY_ARRAY_COUNT_TYPE path_idx = 0;
Michal Vasko00cbf532020-06-15 13:58:47 +02001288 struct ly_path_predicate *pred;
1289
1290 LY_CHECK_ARG_RET(ctx, parent || ctx, path, (path[0] == '/') || parent, LY_EINVAL);
1291
1292 if (!ctx) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001293 ctx = LYD_CTX(parent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001294 }
1295
1296 /* parse path */
Michal Vasko6b26e742020-07-17 15:02:10 +02001297 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 +02001298 LY_PATH_PREFIX_OPTIONAL, LY_PATH_PRED_SIMPLE, &exp), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001299
1300 /* compile path */
1301 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 +02001302 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 +01001303 NULL, NULL, &p), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001304
Radek Krejcic7d13e32020-12-09 12:32:24 +01001305 assert(p);
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001306 schema = p[LY_ARRAY_COUNT(p) - 1].node;
Michal Vasko69730152020-10-09 16:30:07 +02001307 if ((schema->nodetype == LYS_LIST) && (p[LY_ARRAY_COUNT(p) - 1].pred_type == LY_PATH_PREDTYPE_NONE) &&
Radek Krejci092e33c2020-10-12 15:33:10 +02001308 !(options & LYD_NEW_PATH_OPAQ)) {
Radek Krejciddace2c2021-01-08 11:30:56 +01001309 LOG_LOCSET(schema, NULL, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001310 LOGVAL(ctx, LYVE_XPATH, "Predicate missing for %s \"%s\" in path \"%s\".",
1311 lys_nodetype2str(schema->nodetype), schema->name, path);
Radek Krejciddace2c2021-01-08 11:30:56 +01001312 LOG_LOCBACK(1, 0, 0, 0);
Michal Vasko00cbf532020-06-15 13:58:47 +02001313 ret = LY_EINVAL;
1314 goto cleanup;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001315 } else if ((schema->nodetype == LYS_LEAFLIST) && (p[LY_ARRAY_COUNT(p) - 1].pred_type == LY_PATH_PREDTYPE_NONE)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001316 /* parse leafref value into a predicate, if not defined in the path */
Michal Vasko00cbf532020-06-15 13:58:47 +02001317 if (!value) {
1318 value = "";
1319 }
1320
1321 r = LY_SUCCESS;
Radek Krejci092e33c2020-10-12 15:33:10 +02001322 if (options & LYD_NEW_PATH_OPAQ) {
Michal Vaskof937cfe2020-08-03 16:07:12 +02001323 r = lys_value_validate(NULL, schema, value, strlen(value));
Michal Vasko00cbf532020-06-15 13:58:47 +02001324 }
1325 if (!r) {
Michal Vasko3af81bc2020-11-18 18:16:13 +01001326 /* store the new predicate */
1327 p[LY_ARRAY_COUNT(p) - 1].pred_type = LY_PATH_PREDTYPE_LEAFLIST;
1328 LY_ARRAY_NEW_GOTO(ctx, p[LY_ARRAY_COUNT(p) - 1].predicates, pred, ret, cleanup);
1329
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001330 ret = lyd_value_store(ctx, &pred->value, ((struct lysc_node_leaflist *)schema)->type, value, strlen(value),
Radek Krejci2efc45b2020-12-22 16:25:44 +01001331 NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, schema, NULL);
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001332 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoae875662020-10-21 10:33:17 +02001333 ++((struct lysc_type *)pred->value.realtype)->refcount;
Michal Vasko00cbf532020-06-15 13:58:47 +02001334 } /* else we have opaq flag and the value is not valid, leavne no predicate and then create an opaque node */
1335 }
1336
1337 /* try to find any existing nodes in the path */
1338 if (parent) {
1339 ret = ly_path_eval_partial(p, parent, &path_idx, &node);
1340 if (ret == LY_SUCCESS) {
1341 /* the node exists, are we supposed to update it or is it just a default? */
Radek Krejci092e33c2020-10-12 15:33:10 +02001342 if (!(options & LYD_NEW_PATH_UPDATE) && !(node->flags & LYD_DEFAULT)) {
Radek Krejciddace2c2021-01-08 11:30:56 +01001343 LOG_LOCSET(NULL, node, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001344 LOGVAL(ctx, LYVE_REFERENCE, "Path \"%s\" already exists", path);
Radek Krejciddace2c2021-01-08 11:30:56 +01001345 LOG_LOCBACK(0, 1, 0, 0);
Michal Vasko00cbf532020-06-15 13:58:47 +02001346 ret = LY_EEXIST;
1347 goto cleanup;
1348 }
1349
1350 /* update the existing node */
1351 ret = lyd_new_path_update(node, value, value_type, &nparent, &nnode);
1352 goto cleanup;
1353 } else if (ret == LY_EINCOMPLETE) {
1354 /* some nodes were found, adjust the iterator to the next segment */
1355 ++path_idx;
1356 } else if (ret == LY_ENOTFOUND) {
1357 /* 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 +01001358 if (lysc_data_parent(p[0].node)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001359 node = parent;
1360 }
1361 } else {
1362 /* error */
1363 goto cleanup;
1364 }
1365 }
1366
1367 /* create all the non-existing nodes in a loop */
Michal Vaskod989ba02020-08-24 10:59:24 +02001368 for ( ; path_idx < LY_ARRAY_COUNT(p); ++path_idx) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001369 cur_parent = node;
1370 schema = p[path_idx].node;
1371
1372 switch (schema->nodetype) {
1373 case LYS_LIST:
1374 if (!(schema->flags & LYS_KEYLESS)) {
Radek Krejci092e33c2020-10-12 15:33:10 +02001375 if ((options & LYD_NEW_PATH_OPAQ) && (p[path_idx].pred_type == LY_PATH_PREDTYPE_NONE)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001376 /* creating opaque list without keys */
Michal Vasko501af032020-11-11 20:27:44 +01001377 LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), NULL, 0,
1378 schema->module->name, strlen(schema->module->name), NULL, 0, NULL, LY_PREF_JSON, NULL,
1379 LYD_NODEHINT_LIST, &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001380 } else {
Michal Vasko8b776962021-01-12 12:21:49 +01001381 if (p[path_idx].pred_type != LY_PATH_PREDTYPE_LIST) {
1382 LOG_LOCSET(schema, NULL, NULL, NULL);
1383 LOGVAL(ctx, LYVE_XPATH, "Predicate missing for %s \"%s\" in path \"%s\".",
1384 lys_nodetype2str(schema->nodetype), schema->name, path);
1385 LOG_LOCBACK(1, 0, 0, 0);
1386 ret = LY_EINVAL;
1387 goto cleanup;
1388 }
1389
Michal Vasko00cbf532020-06-15 13:58:47 +02001390 LY_CHECK_GOTO(ret = lyd_create_list(schema, p[path_idx].predicates, &node), cleanup);
1391 }
1392 break;
1393 }
Radek Krejcif13b87b2020-12-01 22:02:17 +01001394 /* fall through */
Michal Vasko00cbf532020-06-15 13:58:47 +02001395 case LYS_CONTAINER:
1396 case LYS_NOTIF:
1397 case LYS_RPC:
1398 case LYS_ACTION:
1399 LY_CHECK_GOTO(ret = lyd_create_inner(schema, &node), cleanup);
1400 break;
1401 case LYS_LEAFLIST:
Radek Krejci092e33c2020-10-12 15:33:10 +02001402 if ((options & LYD_NEW_PATH_OPAQ) && (p[path_idx].pred_type == LY_PATH_PREDTYPE_NONE)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001403 /* creating opaque leaf-list without value */
Michal Vasko501af032020-11-11 20:27:44 +01001404 LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), NULL, 0,
1405 schema->module->name, strlen(schema->module->name), NULL, 0, NULL, LY_PREF_JSON, NULL,
1406 LYD_NODEHINT_LEAFLIST, &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001407 } else {
1408 assert(p[path_idx].pred_type == LY_PATH_PREDTYPE_LEAFLIST);
1409 LY_CHECK_GOTO(ret = lyd_create_term2(schema, &p[path_idx].predicates[0].value, &node), cleanup);
1410 }
1411 break;
1412 case LYS_LEAF:
Michal Vasko35880332020-12-08 13:08:12 +01001413 if (lysc_is_key(schema)) {
1414 /* it must have been already created or some error will occur later */
1415 assert(cur_parent);
1416 node = lyd_child(cur_parent);
1417 assert(node && (node->schema == schema));
1418 goto next_iter;
1419 }
1420
1421 /* make sure there is some value */
Michal Vasko00cbf532020-06-15 13:58:47 +02001422 if (!value) {
1423 value = "";
1424 }
1425
1426 r = LY_SUCCESS;
Radek Krejci092e33c2020-10-12 15:33:10 +02001427 if (options & LYD_NEW_PATH_OPAQ) {
Michal Vaskof937cfe2020-08-03 16:07:12 +02001428 r = lys_value_validate(NULL, schema, value, strlen(value));
Michal Vasko00cbf532020-06-15 13:58:47 +02001429 }
1430 if (!r) {
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001431 ret = lyd_create_term(schema, value, strlen(value), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, NULL, &node);
1432 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001433 } else {
1434 /* creating opaque leaf without value */
Michal Vasko501af032020-11-11 20:27:44 +01001435 LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), NULL, 0, schema->module->name,
1436 strlen(schema->module->name), NULL, 0, NULL, LY_PREF_JSON, NULL, 0, &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001437 }
1438 break;
1439 case LYS_ANYDATA:
1440 case LYS_ANYXML:
Michal Vasko366a4a12020-12-04 16:23:57 +01001441 LY_CHECK_GOTO(ret = lyd_create_any(schema, value, value_type, 0, &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001442 break;
1443 default:
1444 LOGINT(ctx);
1445 ret = LY_EINT;
1446 goto cleanup;
1447 }
1448
1449 if (cur_parent) {
1450 /* connect to the parent */
1451 lyd_insert_node(cur_parent, NULL, node);
1452 } else if (parent) {
1453 /* connect to top-level siblings */
1454 lyd_insert_node(NULL, &parent, node);
1455 }
1456
Michal Vasko35880332020-12-08 13:08:12 +01001457next_iter:
Michal Vasko00cbf532020-06-15 13:58:47 +02001458 /* update remembered nodes */
1459 if (!nparent) {
1460 nparent = node;
1461 }
1462 nnode = node;
1463 }
1464
1465cleanup:
1466 lyxp_expr_free(ctx, exp);
1467 ly_path_free(ctx, p);
1468 if (!ret) {
1469 /* set out params only on success */
1470 if (new_parent) {
1471 *new_parent = nparent;
1472 }
1473 if (new_node) {
1474 *new_node = nnode;
1475 }
Michal Vaskof4b95ba2020-12-11 08:42:33 +01001476 } else {
1477 lyd_free_tree(nparent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001478 }
1479 return ret;
1480}
1481
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001482LY_ERR
1483lyd_new_implicit_r(struct lyd_node *parent, struct lyd_node **first, const struct lysc_node *sparent,
Radek Krejci1deb5be2020-08-26 16:43:36 +02001484 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 +02001485 struct lyd_node **diff)
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001486{
1487 LY_ERR ret;
Michal Vasko630d9892020-12-08 17:11:08 +01001488 const struct lysc_node *iter = NULL, *sp;
Radek Krejci2b18bf12020-11-06 11:20:20 +01001489 struct lyd_node *node = NULL;
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001490 struct lyd_value **dflts;
1491 LY_ARRAY_COUNT_TYPE u;
Michal Vasko630d9892020-12-08 17:11:08 +01001492 uint32_t getnext_opts;
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001493
1494 assert(first && (parent || sparent || mod));
1495
1496 if (!sparent && parent) {
1497 sparent = parent->schema;
1498 }
1499
Michal Vasko630d9892020-12-08 17:11:08 +01001500 for (sp = sparent; sp && !(sp->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)); sp = sp->parent) {}
1501 if (sp) {
1502 /* these options lose meaning in operations and could cause skipping some nodes
1503 * (because LYS_CONFIG* flags are set in the schema nodes with a different meaning) */
1504 impl_opts &= ~(LYD_IMPLICIT_NO_STATE | LYD_IMPLICIT_NO_CONFIG);
1505 }
1506
1507 getnext_opts = LYS_GETNEXT_WITHCHOICE;
1508 if (impl_opts & LYD_IMPLICIT_OUTPUT) {
1509 getnext_opts |= LYS_GETNEXT_OUTPUT;
1510 }
1511
1512 while ((iter = lys_getnext(iter, sparent, mod ? mod->compiled : NULL, getnext_opts))) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001513 if ((impl_opts & LYD_IMPLICIT_NO_STATE) && (iter->flags & LYS_CONFIG_R)) {
1514 continue;
Michal Vasko44b19a12020-08-07 09:21:30 +02001515 } else if ((impl_opts & LYD_IMPLICIT_NO_CONFIG) && (iter->flags & LYS_CONFIG_W)) {
1516 continue;
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001517 }
1518
1519 switch (iter->nodetype) {
1520 case LYS_CHOICE:
Michal Vaskobcf4d7d2020-11-18 18:16:49 +01001521 node = lys_getnext_data(NULL, *first, NULL, iter, NULL);
1522 if (!node && ((struct lysc_node_choice *)iter)->dflt) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001523 /* create default case data */
1524 LY_CHECK_RET(lyd_new_implicit_r(parent, first, (struct lysc_node *)((struct lysc_node_choice *)iter)->dflt,
Michal Vasko69730152020-10-09 16:30:07 +02001525 NULL, node_types, node_when, impl_opts, diff));
Michal Vaskobcf4d7d2020-11-18 18:16:49 +01001526 } else if (node) {
1527 /* create any default data in the existing case */
1528 assert(node->schema->parent->nodetype == LYS_CASE);
1529 LY_CHECK_RET(lyd_new_implicit_r(parent, first, node->schema->parent, NULL, node_types, node_when,
1530 impl_opts, diff));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001531 }
1532 break;
1533 case LYS_CONTAINER:
1534 if (!(iter->flags & LYS_PRESENCE) && lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
1535 /* create default NP container */
1536 LY_CHECK_RET(lyd_create_inner(iter, &node));
Michal Vasko0cadfcb2020-11-04 17:17:05 +01001537 node->flags = LYD_DEFAULT | (node->schema->when ? LYD_WHEN_TRUE : 0);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001538 lyd_insert_node(parent, first, node);
1539
1540 /* cannot be a NP container with when */
1541 assert(!iter->when);
1542
Michal Vaskoe49b6322020-11-05 17:38:36 +01001543 if (diff) {
1544 /* add into diff */
1545 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff));
1546 }
1547
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001548 /* create any default children */
1549 LY_CHECK_RET(lyd_new_implicit_r(node, lyd_node_children_p(node), NULL, NULL, node_types, node_when,
Michal Vasko69730152020-10-09 16:30:07 +02001550 impl_opts, diff));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001551 }
1552 break;
1553 case LYS_LEAF:
Michal Vasko69730152020-10-09 16:30:07 +02001554 if (!(impl_opts & LYD_IMPLICIT_NO_DEFAULTS) && ((struct lysc_node_leaf *)iter)->dflt &&
1555 lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001556 /* create default leaf */
1557 ret = lyd_create_term2(iter, ((struct lysc_node_leaf *)iter)->dflt, &node);
1558 if (ret == LY_EINCOMPLETE) {
1559 if (node_types) {
1560 /* remember to resolve type */
Radek Krejci3d92e442020-10-12 12:48:13 +02001561 LY_CHECK_RET(ly_set_add(node_types, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001562 }
1563 } else if (ret) {
1564 return ret;
1565 }
Michal Vasko0cadfcb2020-11-04 17:17:05 +01001566 node->flags = LYD_DEFAULT | (node->schema->when ? LYD_WHEN_TRUE : 0);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001567 lyd_insert_node(parent, first, node);
1568
1569 if (iter->when && node_when) {
1570 /* remember to resolve when */
Radek Krejci3d92e442020-10-12 12:48:13 +02001571 LY_CHECK_RET(ly_set_add(node_when, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001572 }
1573 if (diff) {
1574 /* add into diff */
1575 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff));
1576 }
1577 }
1578 break;
1579 case LYS_LEAFLIST:
Michal Vasko69730152020-10-09 16:30:07 +02001580 if (!(impl_opts & LYD_IMPLICIT_NO_DEFAULTS) && ((struct lysc_node_leaflist *)iter)->dflts &&
1581 lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001582 /* create all default leaf-lists */
1583 dflts = ((struct lysc_node_leaflist *)iter)->dflts;
1584 LY_ARRAY_FOR(dflts, u) {
1585 ret = lyd_create_term2(iter, dflts[u], &node);
1586 if (ret == LY_EINCOMPLETE) {
1587 if (node_types) {
1588 /* remember to resolve type */
Radek Krejci3d92e442020-10-12 12:48:13 +02001589 LY_CHECK_RET(ly_set_add(node_types, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001590 }
1591 } else if (ret) {
1592 return ret;
1593 }
Radek Krejcic5b54a02020-11-05 17:13:18 +01001594 node->flags = LYD_DEFAULT | (node->schema->when ? LYD_WHEN_TRUE : 0);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001595 lyd_insert_node(parent, first, node);
1596
1597 if (iter->when && node_when) {
1598 /* remember to resolve when */
Radek Krejci3d92e442020-10-12 12:48:13 +02001599 LY_CHECK_RET(ly_set_add(node_when, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001600 }
1601 if (diff) {
1602 /* add into diff */
1603 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff));
1604 }
1605 }
1606 }
1607 break;
1608 default:
1609 /* without defaults */
1610 break;
1611 }
1612 }
1613
1614 return LY_SUCCESS;
1615}
1616
1617API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001618lyd_new_implicit_tree(struct lyd_node *tree, uint32_t implicit_options, struct lyd_node **diff)
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001619{
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001620 LY_ERR ret = LY_SUCCESS;
Michal Vasko3488ada2020-12-03 14:18:19 +01001621 struct lyd_node *node;
1622 struct ly_set node_when = {0};
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001623
1624 LY_CHECK_ARG_RET(NULL, tree, LY_EINVAL);
1625 if (diff) {
1626 *diff = NULL;
1627 }
1628
Michal Vasko56daf732020-08-10 10:57:18 +02001629 LYD_TREE_DFS_BEGIN(tree, node) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001630 /* skip added default nodes */
Michal Vasko69730152020-10-09 16:30:07 +02001631 if (((node->flags & (LYD_DEFAULT | LYD_NEW)) != (LYD_DEFAULT | LYD_NEW)) &&
1632 (node->schema->nodetype & LYD_NODE_INNER)) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001633 LY_CHECK_GOTO(ret = lyd_new_implicit_r(node, lyd_node_children_p((struct lyd_node *)node), NULL, NULL, NULL,
Michal Vasko3488ada2020-12-03 14:18:19 +01001634 &node_when, implicit_options, diff), cleanup);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001635 }
1636
Michal Vasko56daf732020-08-10 10:57:18 +02001637 LYD_TREE_DFS_END(tree, node);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001638 }
1639
Michal Vasko3488ada2020-12-03 14:18:19 +01001640 /* resolve when and remove any invalid defaults */
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001641 LY_CHECK_GOTO(ret = lyd_validate_unres(&tree, NULL, &node_when, NULL, NULL, diff), cleanup);
Michal Vasko3488ada2020-12-03 14:18:19 +01001642
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001643cleanup:
Michal Vasko3488ada2020-12-03 14:18:19 +01001644 ly_set_erase(&node_when, NULL);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001645 if (ret && diff) {
1646 lyd_free_all(*diff);
1647 *diff = NULL;
1648 }
1649 return ret;
1650}
1651
1652API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001653lyd_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 +02001654{
1655 const struct lys_module *mod;
1656 struct lyd_node *d = NULL;
1657 uint32_t i = 0;
1658 LY_ERR ret = LY_SUCCESS;
1659
1660 LY_CHECK_ARG_RET(ctx, tree, *tree || ctx, LY_EINVAL);
1661 if (diff) {
1662 *diff = NULL;
1663 }
1664 if (!ctx) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001665 ctx = LYD_CTX(*tree);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001666 }
1667
1668 /* add nodes for each module one-by-one */
1669 while ((mod = ly_ctx_get_module_iter(ctx, &i))) {
1670 if (!mod->implemented) {
1671 continue;
1672 }
1673
1674 LY_CHECK_GOTO(ret = lyd_new_implicit_module(tree, mod, implicit_options, diff ? &d : NULL), cleanup);
1675 if (d) {
1676 /* merge into one diff */
1677 lyd_insert_sibling(*diff, d, diff);
1678
1679 d = NULL;
1680 }
1681 }
1682
1683cleanup:
1684 if (ret && diff) {
1685 lyd_free_all(*diff);
1686 *diff = NULL;
1687 }
1688 return ret;
1689}
1690
1691API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001692lyd_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 +02001693{
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001694 LY_ERR ret = LY_SUCCESS;
Michal Vasko3488ada2020-12-03 14:18:19 +01001695 struct lyd_node *root, *d = NULL;
1696 struct ly_set node_when = {0};
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001697
1698 LY_CHECK_ARG_RET(NULL, tree, module, LY_EINVAL);
1699 if (diff) {
1700 *diff = NULL;
1701 }
1702
1703 /* add all top-level defaults for this module */
Michal Vasko3488ada2020-12-03 14:18:19 +01001704 LY_CHECK_GOTO(ret = lyd_new_implicit_r(NULL, tree, NULL, module, NULL, &node_when, implicit_options, diff), cleanup);
1705
1706 /* resolve when and remove any invalid defaults */
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001707 LY_CHECK_GOTO(ret = lyd_validate_unres(tree, module, &node_when, NULL, NULL, diff), cleanup);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001708
1709 /* process nested nodes */
1710 LY_LIST_FOR(*tree, root) {
1711 /* skip added default nodes */
1712 if ((root->flags & (LYD_DEFAULT | LYD_NEW)) != (LYD_DEFAULT | LYD_NEW)) {
1713 LY_CHECK_GOTO(ret = lyd_new_implicit_tree(root, implicit_options, diff ? &d : NULL), cleanup);
1714
1715 if (d) {
1716 /* merge into one diff */
1717 lyd_insert_sibling(*diff, d, diff);
1718
1719 d = NULL;
1720 }
1721 }
1722 }
1723
1724cleanup:
Michal Vasko3488ada2020-12-03 14:18:19 +01001725 ly_set_erase(&node_when, NULL);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001726 if (ret && diff) {
1727 lyd_free_all(*diff);
1728 *diff = NULL;
1729 }
1730 return ret;
1731}
1732
Michal Vasko90932a92020-02-12 14:33:03 +01001733struct lyd_node *
Michal Vaskob104f112020-07-17 09:54:54 +02001734lyd_insert_get_next_anchor(const struct lyd_node *first_sibling, const struct lyd_node *new_node)
Michal Vasko90932a92020-02-12 14:33:03 +01001735{
Michal Vaskob104f112020-07-17 09:54:54 +02001736 const struct lysc_node *schema, *sparent;
Michal Vasko90932a92020-02-12 14:33:03 +01001737 struct lyd_node *match = NULL;
Radek Krejci857189e2020-09-01 13:26:36 +02001738 ly_bool found;
Michal Vasko93b16062020-12-09 18:14:18 +01001739 uint32_t getnext_opts;
Michal Vasko90932a92020-02-12 14:33:03 +01001740
Michal Vaskob104f112020-07-17 09:54:54 +02001741 assert(new_node);
1742
1743 if (!first_sibling || !new_node->schema) {
1744 /* insert at the end, no next anchor */
Michal Vasko90932a92020-02-12 14:33:03 +01001745 return NULL;
1746 }
1747
Michal Vasko93b16062020-12-09 18:14:18 +01001748 getnext_opts = 0;
1749 if (new_node->schema->flags & LYS_CONFIG_R) {
1750 getnext_opts = LYS_GETNEXT_OUTPUT;
1751 }
1752
Michal Vaskob104f112020-07-17 09:54:54 +02001753 if (first_sibling->parent && first_sibling->parent->children_ht) {
1754 /* find the anchor using hashes */
1755 sparent = first_sibling->parent->schema;
Michal Vasko93b16062020-12-09 18:14:18 +01001756 schema = lys_getnext(new_node->schema, sparent, NULL, getnext_opts);
Michal Vaskob104f112020-07-17 09:54:54 +02001757 while (schema) {
1758 /* keep trying to find the first existing instance of the closest following schema sibling,
1759 * otherwise return NULL - inserting at the end */
1760 if (!lyd_find_sibling_schema(first_sibling, schema, &match)) {
1761 break;
1762 }
1763
Michal Vasko93b16062020-12-09 18:14:18 +01001764 schema = lys_getnext(schema, sparent, NULL, getnext_opts);
Michal Vaskob104f112020-07-17 09:54:54 +02001765 }
1766 } else {
1767 /* find the anchor without hashes */
1768 match = (struct lyd_node *)first_sibling;
1769 if (!lysc_data_parent(new_node->schema)) {
1770 /* we are in top-level, skip all the data from preceding modules */
1771 LY_LIST_FOR(match, match) {
1772 if (!match->schema || (strcmp(lyd_owner_module(match)->name, lyd_owner_module(new_node)->name) >= 0)) {
1773 break;
1774 }
1775 }
1776 }
1777
1778 /* get the first schema sibling */
1779 sparent = lysc_data_parent(new_node->schema);
Michal Vasko93b16062020-12-09 18:14:18 +01001780 schema = lys_getnext(NULL, sparent, new_node->schema->module->compiled, getnext_opts);
Michal Vaskob104f112020-07-17 09:54:54 +02001781
1782 found = 0;
1783 LY_LIST_FOR(match, match) {
1784 if (!match->schema || (lyd_owner_module(match) != lyd_owner_module(new_node))) {
1785 /* we have found an opaque node, which must be at the end, so use it OR
1786 * modules do not match, so we must have traversed all the data from new_node module (if any),
1787 * we have found the first node of the next module, that is what we want */
1788 break;
1789 }
1790
1791 /* skip schema nodes until we find the instantiated one */
1792 while (!found) {
1793 if (new_node->schema == schema) {
1794 /* we have found the schema of the new node, continue search to find the first
1795 * data node with a different schema (after our schema) */
1796 found = 1;
1797 break;
1798 }
1799 if (match->schema == schema) {
1800 /* current node (match) is a data node still before the new node, continue search in data */
1801 break;
1802 }
Michal Vasko93b16062020-12-09 18:14:18 +01001803 schema = lys_getnext(schema, sparent, new_node->schema->module->compiled, getnext_opts);
Michal Vaskob104f112020-07-17 09:54:54 +02001804 assert(schema);
1805 }
1806
1807 if (found && (match->schema != new_node->schema)) {
1808 /* find the next node after we have found our node schema data instance */
1809 break;
1810 }
1811 }
Michal Vasko90932a92020-02-12 14:33:03 +01001812 }
1813
1814 return match;
1815}
1816
1817/**
1818 * @brief Insert node after a sibling.
1819 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001820 * Handles inserting into NP containers and key-less lists.
1821 *
Michal Vasko90932a92020-02-12 14:33:03 +01001822 * @param[in] sibling Sibling to insert after.
1823 * @param[in] node Node to insert.
1824 */
1825static void
Michal Vaskof03ed032020-03-04 13:31:44 +01001826lyd_insert_after_node(struct lyd_node *sibling, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001827{
Michal Vasko0249f7c2020-03-05 16:36:40 +01001828 struct lyd_node_inner *par;
1829
Michal Vasko90932a92020-02-12 14:33:03 +01001830 assert(!node->next && (node->prev == node));
1831
1832 node->next = sibling->next;
1833 node->prev = sibling;
1834 sibling->next = node;
1835 if (node->next) {
1836 /* sibling had a succeeding node */
1837 node->next->prev = node;
1838 } else {
1839 /* sibling was last, find first sibling and change its prev */
1840 if (sibling->parent) {
1841 sibling = sibling->parent->child;
1842 } else {
Michal Vaskod989ba02020-08-24 10:59:24 +02001843 for ( ; sibling->prev->next != node; sibling = sibling->prev) {}
Michal Vasko90932a92020-02-12 14:33:03 +01001844 }
1845 sibling->prev = node;
1846 }
1847 node->parent = sibling->parent;
Michal Vasko0249f7c2020-03-05 16:36:40 +01001848
Michal Vasko9f96a052020-03-10 09:41:45 +01001849 for (par = node->parent; par; par = par->parent) {
1850 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
1851 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01001852 par->flags &= ~LYD_DEFAULT;
1853 }
Michal Vaskob104f112020-07-17 09:54:54 +02001854 if (par->schema && (par->schema->nodetype == LYS_LIST) && (par->schema->flags & LYS_KEYLESS)) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001855 /* rehash key-less list */
1856 lyd_hash((struct lyd_node *)par);
1857 }
Michal Vasko0249f7c2020-03-05 16:36:40 +01001858 }
Michal Vasko90932a92020-02-12 14:33:03 +01001859}
1860
1861/**
1862 * @brief Insert node before a sibling.
1863 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001864 * Handles inserting into NP containers and key-less lists.
1865 *
Michal Vasko90932a92020-02-12 14:33:03 +01001866 * @param[in] sibling Sibling to insert before.
1867 * @param[in] node Node to insert.
1868 */
1869static void
Michal Vaskof03ed032020-03-04 13:31:44 +01001870lyd_insert_before_node(struct lyd_node *sibling, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001871{
Michal Vasko0249f7c2020-03-05 16:36:40 +01001872 struct lyd_node_inner *par;
1873
Michal Vasko90932a92020-02-12 14:33:03 +01001874 assert(!node->next && (node->prev == node));
1875
1876 node->next = sibling;
1877 /* covers situation of sibling being first */
1878 node->prev = sibling->prev;
1879 sibling->prev = node;
1880 if (node->prev->next) {
1881 /* sibling had a preceding node */
1882 node->prev->next = node;
1883 } else if (sibling->parent) {
1884 /* sibling was first and we must also change parent child pointer */
1885 sibling->parent->child = node;
1886 }
1887 node->parent = sibling->parent;
Michal Vasko0249f7c2020-03-05 16:36:40 +01001888
Michal Vasko9f96a052020-03-10 09:41:45 +01001889 for (par = node->parent; par; par = par->parent) {
1890 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
1891 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01001892 par->flags &= ~LYD_DEFAULT;
1893 }
Michal Vaskob104f112020-07-17 09:54:54 +02001894 if (par->schema && (par->schema->nodetype == LYS_LIST) && (par->schema->flags & LYS_KEYLESS)) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001895 /* rehash key-less list */
1896 lyd_hash((struct lyd_node *)par);
1897 }
Michal Vasko0249f7c2020-03-05 16:36:40 +01001898 }
Michal Vasko90932a92020-02-12 14:33:03 +01001899}
1900
1901/**
Michal Vaskob104f112020-07-17 09:54:54 +02001902 * @brief Insert node as the first and only child of a parent.
Michal Vasko90932a92020-02-12 14:33:03 +01001903 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001904 * Handles inserting into NP containers and key-less lists.
1905 *
Michal Vasko90932a92020-02-12 14:33:03 +01001906 * @param[in] parent Parent to insert into.
1907 * @param[in] node Node to insert.
1908 */
1909static void
Michal Vaskob104f112020-07-17 09:54:54 +02001910lyd_insert_only_child(struct lyd_node *parent, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001911{
1912 struct lyd_node_inner *par;
1913
Radek Krejcia1c1e542020-09-29 16:06:52 +02001914 assert(parent && !lyd_child(parent) && !node->next && (node->prev == node));
Michal Vasko52927e22020-03-16 17:26:14 +01001915 assert(!parent->schema || (parent->schema->nodetype & LYD_NODE_INNER));
Michal Vasko90932a92020-02-12 14:33:03 +01001916
1917 par = (struct lyd_node_inner *)parent;
1918
Michal Vaskob104f112020-07-17 09:54:54 +02001919 par->child = node;
Michal Vasko90932a92020-02-12 14:33:03 +01001920 node->parent = par;
Michal Vasko0249f7c2020-03-05 16:36:40 +01001921
Michal Vaskod989ba02020-08-24 10:59:24 +02001922 for ( ; par; par = par->parent) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001923 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
1924 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01001925 par->flags &= ~LYD_DEFAULT;
1926 }
Michal Vasko52927e22020-03-16 17:26:14 +01001927 if (par->schema && (par->schema->nodetype == LYS_LIST) && (par->schema->flags & LYS_KEYLESS)) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001928 /* rehash key-less list */
1929 lyd_hash((struct lyd_node *)par);
1930 }
Michal Vasko0249f7c2020-03-05 16:36:40 +01001931 }
Michal Vasko751cb4d2020-07-14 12:25:28 +02001932}
Michal Vasko0249f7c2020-03-05 16:36:40 +01001933
Michal Vasko751cb4d2020-07-14 12:25:28 +02001934/**
1935 * @brief Learn whether a list instance has all the keys.
1936 *
1937 * @param[in] list List instance to check.
1938 * @return non-zero if all the keys were found,
1939 * @return 0 otherwise.
1940 */
1941static int
1942lyd_insert_has_keys(const struct lyd_node *list)
1943{
1944 const struct lyd_node *key;
1945 const struct lysc_node *skey = NULL;
1946
1947 assert(list->schema->nodetype == LYS_LIST);
Radek Krejcia1c1e542020-09-29 16:06:52 +02001948 key = lyd_child(list);
Michal Vasko751cb4d2020-07-14 12:25:28 +02001949 while ((skey = lys_getnext(skey, list->schema, NULL, 0)) && (skey->flags & LYS_KEY)) {
1950 if (!key || (key->schema != skey)) {
1951 /* key missing */
1952 return 0;
1953 }
1954
1955 key = key->next;
1956 }
1957
1958 /* all keys found */
1959 return 1;
Michal Vasko90932a92020-02-12 14:33:03 +01001960}
1961
1962void
Michal Vaskob104f112020-07-17 09:54:54 +02001963lyd_insert_node(struct lyd_node *parent, struct lyd_node **first_sibling_p, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001964{
Michal Vaskob104f112020-07-17 09:54:54 +02001965 struct lyd_node *anchor, *first_sibling;
Michal Vasko90932a92020-02-12 14:33:03 +01001966
Michal Vaskob104f112020-07-17 09:54:54 +02001967 /* inserting list without its keys is not supported */
1968 assert((parent || first_sibling_p) && node && (node->hash || !node->schema));
Michal Vaskof756c942020-11-06 17:21:37 +01001969 assert(!parent || !parent->schema ||
1970 (parent->schema->nodetype & (LYS_CONTAINER | LYS_LIST | LYS_RPC | LYS_ACTION | LYS_NOTIF)));
Michal Vasko9b368d32020-02-14 13:53:31 +01001971
Michal Vaskob104f112020-07-17 09:54:54 +02001972 if (!parent && first_sibling_p && (*first_sibling_p) && (*first_sibling_p)->parent) {
1973 parent = (struct lyd_node *)(*first_sibling_p)->parent;
Michal Vasko9b368d32020-02-14 13:53:31 +01001974 }
Michal Vasko90932a92020-02-12 14:33:03 +01001975
Michal Vaskob104f112020-07-17 09:54:54 +02001976 /* get first sibling */
1977 first_sibling = parent ? ((struct lyd_node_inner *)parent)->child : *first_sibling_p;
Michal Vasko9f96a052020-03-10 09:41:45 +01001978
Michal Vaskob104f112020-07-17 09:54:54 +02001979 /* find the anchor, our next node, so we can insert before it */
1980 anchor = lyd_insert_get_next_anchor(first_sibling, node);
1981 if (anchor) {
1982 lyd_insert_before_node(anchor, node);
Michal Vasko26123192020-11-09 21:02:34 +01001983 if (!parent && (*first_sibling_p == anchor)) {
1984 /* move first sibling */
1985 *first_sibling_p = node;
1986 }
Michal Vaskob104f112020-07-17 09:54:54 +02001987 } else if (first_sibling) {
1988 lyd_insert_after_node(first_sibling->prev, node);
1989 } else if (parent) {
1990 lyd_insert_only_child(parent, node);
Michal Vasko90932a92020-02-12 14:33:03 +01001991 } else {
Michal Vaskob104f112020-07-17 09:54:54 +02001992 *first_sibling_p = node;
1993 }
1994
1995 /* insert into parent HT */
1996 lyd_insert_hash(node);
1997
1998 /* finish hashes for our parent, if needed and possible */
Michal Vasko9e8de2d2020-09-01 08:17:10 +02001999 if (node->schema && (node->schema->flags & LYS_KEY) && parent && lyd_insert_has_keys(parent)) {
Michal Vaskob104f112020-07-17 09:54:54 +02002000 lyd_hash(parent);
2001
2002 /* now we can insert even the list into its parent HT */
2003 lyd_insert_hash(parent);
Michal Vasko90932a92020-02-12 14:33:03 +01002004 }
Michal Vasko90932a92020-02-12 14:33:03 +01002005}
2006
Michal Vasko717a4c32020-12-07 09:40:10 +01002007/**
2008 * @brief Check schema place of a node to be inserted.
2009 *
2010 * @param[in] parent Schema node of the parent data node.
2011 * @param[in] sibling Schema node of a sibling data node.
2012 * @param[in] schema Schema node if the data node to be inserted.
2013 * @return LY_SUCCESS on success.
2014 * @return LY_EINVAL if the place is invalid.
2015 */
Michal Vaskof03ed032020-03-04 13:31:44 +01002016static LY_ERR
Michal Vasko717a4c32020-12-07 09:40:10 +01002017lyd_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 +01002018{
2019 const struct lysc_node *par2;
2020
Michal Vasko62ed12d2020-05-21 10:08:25 +02002021 assert(!parent || !(parent->nodetype & (LYS_CASE | LYS_CHOICE)));
Michal Vasko717a4c32020-12-07 09:40:10 +01002022 assert(!sibling || !(sibling->nodetype & (LYS_CASE | LYS_CHOICE)));
2023 assert(!schema || !(schema->nodetype & (LYS_CASE | LYS_CHOICE)));
Michal Vaskof03ed032020-03-04 13:31:44 +01002024
Michal Vasko717a4c32020-12-07 09:40:10 +01002025 if (!schema || (!parent && !sibling)) {
Michal Vasko71e795e2020-12-04 16:27:37 +01002026 /* opaque nodes can be inserted wherever */
2027 return LY_SUCCESS;
2028 }
2029
Michal Vasko717a4c32020-12-07 09:40:10 +01002030 if (!parent) {
2031 parent = lysc_data_parent(sibling);
2032 }
2033
Michal Vaskof03ed032020-03-04 13:31:44 +01002034 /* find schema parent */
Michal Vasko62ed12d2020-05-21 10:08:25 +02002035 par2 = lysc_data_parent(schema);
Michal Vaskof03ed032020-03-04 13:31:44 +01002036
2037 if (parent) {
2038 /* inner node */
2039 if (par2 != parent) {
Michal Vaskob104f112020-07-17 09:54:54 +02002040 LOGERR(schema->module->ctx, LY_EINVAL, "Cannot insert, parent of \"%s\" is not \"%s\".", schema->name,
Michal Vasko69730152020-10-09 16:30:07 +02002041 parent->name);
Michal Vaskof03ed032020-03-04 13:31:44 +01002042 return LY_EINVAL;
2043 }
2044 } else {
2045 /* top-level node */
2046 if (par2) {
Radek Krejcif6d14cb2020-07-02 16:11:45 +02002047 LOGERR(schema->module->ctx, LY_EINVAL, "Cannot insert, node \"%s\" is not top-level.", schema->name);
Michal Vaskof03ed032020-03-04 13:31:44 +01002048 return LY_EINVAL;
2049 }
2050 }
2051
2052 return LY_SUCCESS;
2053}
2054
2055API LY_ERR
Michal Vaskob104f112020-07-17 09:54:54 +02002056lyd_insert_child(struct lyd_node *parent, struct lyd_node *node)
Michal Vaskof03ed032020-03-04 13:31:44 +01002057{
2058 struct lyd_node *iter;
2059
Michal Vasko654bc852020-06-23 13:28:06 +02002060 LY_CHECK_ARG_RET(NULL, parent, node, parent->schema->nodetype & LYD_NODE_INNER, LY_EINVAL);
Michal Vaskof03ed032020-03-04 13:31:44 +01002061
Michal Vasko717a4c32020-12-07 09:40:10 +01002062 LY_CHECK_RET(lyd_insert_check_schema(parent->schema, NULL, node->schema));
Michal Vaskof03ed032020-03-04 13:31:44 +01002063
2064 if (node->schema->flags & LYS_KEY) {
2065 LOGERR(parent->schema->module->ctx, LY_EINVAL, "Cannot insert key \"%s\".", node->schema->name);
2066 return LY_EINVAL;
2067 }
2068
2069 if (node->parent || node->prev->next) {
2070 lyd_unlink_tree(node);
2071 }
2072
2073 while (node) {
2074 iter = node->next;
2075 lyd_unlink_tree(node);
2076 lyd_insert_node(parent, NULL, node);
2077 node = iter;
2078 }
2079 return LY_SUCCESS;
2080}
2081
2082API LY_ERR
Michal Vaskob104f112020-07-17 09:54:54 +02002083lyd_insert_sibling(struct lyd_node *sibling, struct lyd_node *node, struct lyd_node **first)
Michal Vaskob1b5c262020-03-05 14:29:47 +01002084{
2085 struct lyd_node *iter;
2086
Michal Vaskob104f112020-07-17 09:54:54 +02002087 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Michal Vaskob1b5c262020-03-05 14:29:47 +01002088
Michal Vaskob104f112020-07-17 09:54:54 +02002089 if (sibling) {
Michal Vasko717a4c32020-12-07 09:40:10 +01002090 LY_CHECK_RET(lyd_insert_check_schema(NULL, sibling->schema, node->schema));
Michal Vaskob1b5c262020-03-05 14:29:47 +01002091 }
2092
Michal Vasko553d0b52020-12-04 16:27:52 +01002093 if (sibling == node) {
2094 /* we need to keep the connection to siblings so we can insert into them */
2095 sibling = sibling->prev;
2096 }
2097
Michal Vaskob1b5c262020-03-05 14:29:47 +01002098 if (node->parent || node->prev->next) {
2099 lyd_unlink_tree(node);
2100 }
2101
2102 while (node) {
Michal Vasko71e795e2020-12-04 16:27:37 +01002103 if (lysc_is_key(node->schema)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002104 LOGERR(LYD_CTX(node), LY_EINVAL, "Cannot insert key \"%s\".", node->schema->name);
Michal Vaskob104f112020-07-17 09:54:54 +02002105 return LY_EINVAL;
2106 }
2107
Michal Vaskob1b5c262020-03-05 14:29:47 +01002108 iter = node->next;
2109 lyd_unlink_tree(node);
2110 lyd_insert_node(NULL, &sibling, node);
2111 node = iter;
2112 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01002113
Michal Vaskob104f112020-07-17 09:54:54 +02002114 if (first) {
2115 /* find the first sibling */
2116 *first = sibling;
2117 while ((*first)->prev->next) {
2118 *first = (*first)->prev;
Michal Vasko0249f7c2020-03-05 16:36:40 +01002119 }
2120 }
2121
2122 return LY_SUCCESS;
2123}
2124
Michal Vaskob1b5c262020-03-05 14:29:47 +01002125API LY_ERR
Michal Vaskof03ed032020-03-04 13:31:44 +01002126lyd_insert_before(struct lyd_node *sibling, struct lyd_node *node)
2127{
Michal Vaskof03ed032020-03-04 13:31:44 +01002128 LY_CHECK_ARG_RET(NULL, sibling, node, LY_EINVAL);
2129
Michal Vasko717a4c32020-12-07 09:40:10 +01002130 LY_CHECK_RET(lyd_insert_check_schema(NULL, sibling->schema, node->schema));
Michal Vaskof03ed032020-03-04 13:31:44 +01002131
Michal Vaskob104f112020-07-17 09:54:54 +02002132 if (!(node->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !(node->schema->flags & LYS_ORDBY_USER)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002133 LOGERR(LYD_CTX(sibling), LY_EINVAL, "Can be used only for user-ordered nodes.");
Michal Vaskof03ed032020-03-04 13:31:44 +01002134 return LY_EINVAL;
2135 }
2136
Michal Vasko4bc2ce32020-12-08 10:06:16 +01002137 lyd_unlink_tree(node);
2138 lyd_insert_before_node(sibling, node);
2139 lyd_insert_hash(node);
Michal Vaskof03ed032020-03-04 13:31:44 +01002140
Michal Vaskof03ed032020-03-04 13:31:44 +01002141 return LY_SUCCESS;
2142}
2143
2144API LY_ERR
2145lyd_insert_after(struct lyd_node *sibling, struct lyd_node *node)
2146{
Michal Vaskof03ed032020-03-04 13:31:44 +01002147 LY_CHECK_ARG_RET(NULL, sibling, node, LY_EINVAL);
2148
Michal Vasko717a4c32020-12-07 09:40:10 +01002149 LY_CHECK_RET(lyd_insert_check_schema(NULL, sibling->schema, node->schema));
Michal Vaskof03ed032020-03-04 13:31:44 +01002150
Michal Vaskob104f112020-07-17 09:54:54 +02002151 if (!(node->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !(node->schema->flags & LYS_ORDBY_USER)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002152 LOGERR(LYD_CTX(sibling), LY_EINVAL, "Can be used only for user-ordered nodes.");
Michal Vaskof03ed032020-03-04 13:31:44 +01002153 return LY_EINVAL;
2154 }
2155
Michal Vasko4bc2ce32020-12-08 10:06:16 +01002156 lyd_unlink_tree(node);
2157 lyd_insert_after_node(sibling, node);
2158 lyd_insert_hash(node);
Michal Vaskof03ed032020-03-04 13:31:44 +01002159
Michal Vaskof03ed032020-03-04 13:31:44 +01002160 return LY_SUCCESS;
2161}
2162
2163API void
2164lyd_unlink_tree(struct lyd_node *node)
2165{
2166 struct lyd_node *iter;
2167
2168 if (!node) {
2169 return;
2170 }
2171
Michal Vaskob104f112020-07-17 09:54:54 +02002172 /* update hashes while still linked into the tree */
2173 lyd_unlink_hash(node);
2174
Michal Vaskof03ed032020-03-04 13:31:44 +01002175 /* unlink from siblings */
2176 if (node->prev->next) {
2177 node->prev->next = node->next;
2178 }
2179 if (node->next) {
2180 node->next->prev = node->prev;
2181 } else {
2182 /* unlinking the last node */
2183 if (node->parent) {
2184 iter = node->parent->child;
2185 } else {
2186 iter = node->prev;
2187 while (iter->prev != node) {
2188 iter = iter->prev;
2189 }
2190 }
2191 /* update the "last" pointer from the first node */
2192 iter->prev = node->prev;
2193 }
2194
2195 /* unlink from parent */
2196 if (node->parent) {
2197 if (node->parent->child == node) {
2198 /* the node is the first child */
2199 node->parent->child = node->next;
2200 }
2201
Michal Vaskoab49dbe2020-07-17 12:32:47 +02002202 /* check for NP container whether its last non-default node is not being unlinked */
Michal Vasko69730152020-10-09 16:30:07 +02002203 if (node->parent->schema && (node->parent->schema->nodetype == LYS_CONTAINER) &&
2204 !(node->parent->flags & LYD_DEFAULT) && !(node->parent->schema->flags & LYS_PRESENCE)) {
Michal Vaskoab49dbe2020-07-17 12:32:47 +02002205 LY_LIST_FOR(node->parent->child, iter) {
2206 if ((iter != node) && !(iter->flags & LYD_DEFAULT)) {
2207 break;
2208 }
2209 }
2210 if (!iter) {
2211 node->parent->flags |= LYD_DEFAULT;
2212 }
2213 }
2214
Michal Vaskof03ed032020-03-04 13:31:44 +01002215 /* check for keyless list and update its hash */
2216 for (iter = (struct lyd_node *)node->parent; iter; iter = (struct lyd_node *)iter->parent) {
Michal Vasko413c7f22020-05-05 12:34:06 +02002217 if (iter->schema && (iter->schema->flags & LYS_KEYLESS)) {
Michal Vaskof03ed032020-03-04 13:31:44 +01002218 lyd_hash(iter);
2219 }
2220 }
2221
2222 node->parent = NULL;
2223 }
2224
2225 node->next = NULL;
2226 node->prev = node;
2227}
2228
Michal Vaskoa5da3292020-08-12 13:10:50 +02002229void
Michal Vasko871a0252020-11-11 18:35:24 +01002230lyd_insert_meta(struct lyd_node *parent, struct lyd_meta *meta, ly_bool clear_dflt)
Radek Krejci1798aae2020-07-14 13:26:06 +02002231{
2232 struct lyd_meta *last, *iter;
2233
2234 assert(parent);
Michal Vaskoa5da3292020-08-12 13:10:50 +02002235
2236 if (!meta) {
2237 return;
2238 }
Radek Krejci1798aae2020-07-14 13:26:06 +02002239
2240 for (iter = meta; iter; iter = iter->next) {
2241 iter->parent = parent;
2242 }
2243
2244 /* insert as the last attribute */
2245 if (parent->meta) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002246 for (last = parent->meta; last->next; last = last->next) {}
Radek Krejci1798aae2020-07-14 13:26:06 +02002247 last->next = meta;
2248 } else {
2249 parent->meta = meta;
2250 }
2251
2252 /* remove default flags from NP containers */
Michal Vasko871a0252020-11-11 18:35:24 +01002253 while (clear_dflt && parent && (parent->schema->nodetype == LYS_CONTAINER) && (parent->flags & LYD_DEFAULT)) {
Radek Krejci1798aae2020-07-14 13:26:06 +02002254 parent->flags &= ~LYD_DEFAULT;
2255 parent = (struct lyd_node *)parent->parent;
2256 }
Radek Krejci1798aae2020-07-14 13:26:06 +02002257}
2258
2259LY_ERR
Michal Vasko9f96a052020-03-10 09:41:45 +01002260lyd_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 +02002261 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 +01002262 void *prefix_data, uint32_t hints, ly_bool clear_dflt, ly_bool *incomplete)
Michal Vasko90932a92020-02-12 14:33:03 +01002263{
Radek Krejci2efc45b2020-12-22 16:25:44 +01002264 LY_ERR ret = LY_SUCCESS;
Michal Vasko90932a92020-02-12 14:33:03 +01002265 struct lysc_ext_instance *ant = NULL;
Michal Vasko9f96a052020-03-10 09:41:45 +01002266 struct lyd_meta *mt, *last;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002267 LY_ARRAY_COUNT_TYPE u;
Michal Vasko90932a92020-02-12 14:33:03 +01002268
Michal Vasko9f96a052020-03-10 09:41:45 +01002269 assert((parent || meta) && mod);
Michal Vasko6f4cbb62020-02-28 11:15:47 +01002270
Radek Krejciddace2c2021-01-08 11:30:56 +01002271 LOG_LOCSET(parent ? parent->schema : NULL, parent, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01002272
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002273 LY_ARRAY_FOR(mod->compiled->exts, u) {
Michal Vasko69730152020-10-09 16:30:07 +02002274 if ((mod->compiled->exts[u].def->plugin == lyext_plugins_internal[LYEXT_PLUGIN_INTERNAL_ANNOTATION].plugin) &&
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002275 !ly_strncmp(mod->compiled->exts[u].argument, name, name_len)) {
Michal Vasko90932a92020-02-12 14:33:03 +01002276 /* we have the annotation definition */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002277 ant = &mod->compiled->exts[u];
Michal Vasko90932a92020-02-12 14:33:03 +01002278 break;
2279 }
2280 }
2281 if (!ant) {
2282 /* attribute is not defined as a metadata annotation (RFC 7952) */
Radek Krejci2efc45b2020-12-22 16:25:44 +01002283 LOGVAL(mod->ctx, LYVE_REFERENCE, "Annotation definition for attribute \"%s:%.*s\" not found.",
Michal Vasko90932a92020-02-12 14:33:03 +01002284 mod->name, name_len, name);
Radek Krejci2efc45b2020-12-22 16:25:44 +01002285 ret = LY_EINVAL;
2286 goto cleanup;
Michal Vasko90932a92020-02-12 14:33:03 +01002287 }
2288
Michal Vasko9f96a052020-03-10 09:41:45 +01002289 mt = calloc(1, sizeof *mt);
Radek Krejci2efc45b2020-12-22 16:25:44 +01002290 LY_CHECK_ERR_GOTO(!mt, LOGMEM(mod->ctx); ret = LY_EMEM, cleanup);
Michal Vasko9f96a052020-03-10 09:41:45 +01002291 mt->parent = parent;
2292 mt->annotation = ant;
Radek Krejci2efc45b2020-12-22 16:25:44 +01002293 ret = lyd_value_store(mod->ctx, &mt->value, ((struct lyext_metadata *)ant->data)->type, value, value_len, dynamic,
2294 format, prefix_data, hints, parent ? parent->schema : NULL, incomplete);
2295 LY_CHECK_ERR_GOTO(ret, free(mt), cleanup);
2296 ret = lydict_insert(mod->ctx, name, name_len, &mt->name);
2297 LY_CHECK_ERR_GOTO(ret, free(mt), cleanup);
Michal Vasko90932a92020-02-12 14:33:03 +01002298
Michal Vasko6f4cbb62020-02-28 11:15:47 +01002299 /* insert as the last attribute */
2300 if (parent) {
Michal Vasko871a0252020-11-11 18:35:24 +01002301 lyd_insert_meta(parent, mt, clear_dflt);
Michal Vasko9f96a052020-03-10 09:41:45 +01002302 } else if (*meta) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002303 for (last = *meta; last->next; last = last->next) {}
Michal Vasko9f96a052020-03-10 09:41:45 +01002304 last->next = mt;
Michal Vasko90932a92020-02-12 14:33:03 +01002305 }
2306
Michal Vasko9f96a052020-03-10 09:41:45 +01002307 if (meta) {
2308 *meta = mt;
Michal Vasko90932a92020-02-12 14:33:03 +01002309 }
Radek Krejci2efc45b2020-12-22 16:25:44 +01002310
2311cleanup:
Radek Krejciddace2c2021-01-08 11:30:56 +01002312 LOG_LOCBACK((parent && parent->schema) ? 1 : 0, parent ? 1 : 0, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +01002313 return ret;
Michal Vasko90932a92020-02-12 14:33:03 +01002314}
2315
Michal Vaskoa5da3292020-08-12 13:10:50 +02002316void
2317lyd_insert_attr(struct lyd_node *parent, struct lyd_attr *attr)
2318{
2319 struct lyd_attr *last, *iter;
2320 struct lyd_node_opaq *opaq;
2321
2322 assert(parent && !parent->schema);
2323
2324 if (!attr) {
2325 return;
2326 }
2327
2328 opaq = (struct lyd_node_opaq *)parent;
2329 for (iter = attr; iter; iter = iter->next) {
2330 iter->parent = opaq;
2331 }
2332
2333 /* insert as the last attribute */
2334 if (opaq->attr) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002335 for (last = opaq->attr; last->next; last = last->next) {}
Michal Vaskoa5da3292020-08-12 13:10:50 +02002336 last->next = attr;
2337 } else {
2338 opaq->attr = attr;
2339 }
2340}
2341
Michal Vasko52927e22020-03-16 17:26:14 +01002342LY_ERR
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002343lyd_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 +01002344 const char *prefix, size_t prefix_len, const char *module_key, size_t module_key_len, const char *value,
2345 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 +01002346{
Radek Krejci011e4aa2020-09-04 15:22:31 +02002347 LY_ERR ret = LY_SUCCESS;
Radek Krejci1798aae2020-07-14 13:26:06 +02002348 struct lyd_attr *at, *last;
Michal Vasko52927e22020-03-16 17:26:14 +01002349
2350 assert(ctx && (parent || attr) && (!parent || !parent->schema));
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002351 assert(name && name_len && format);
Michal Vasko52927e22020-03-16 17:26:14 +01002352
2353 if (!value_len) {
2354 value = "";
2355 }
2356
2357 at = calloc(1, sizeof *at);
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01002358 LY_CHECK_ERR_RET(!at, LOGMEM(ctx); ly_free_prefix_data(format, val_prefix_data), LY_EMEM);
Radek Krejcid46e46a2020-09-15 14:22:42 +02002359
Michal Vaskoad92b672020-11-12 13:11:31 +01002360 LY_CHECK_GOTO(ret = lydict_insert(ctx, name, name_len, &at->name.name), finish);
Michal Vasko501af032020-11-11 20:27:44 +01002361 if (prefix_len) {
Michal Vaskoad92b672020-11-12 13:11:31 +01002362 LY_CHECK_GOTO(ret = lydict_insert(ctx, prefix, prefix_len, &at->name.prefix), finish);
Michal Vasko501af032020-11-11 20:27:44 +01002363 }
2364 if (module_key_len) {
Michal Vaskoad92b672020-11-12 13:11:31 +01002365 LY_CHECK_GOTO(ret = lydict_insert(ctx, module_key, module_key_len, &at->name.module_ns), finish);
Michal Vasko501af032020-11-11 20:27:44 +01002366 }
2367
Michal Vasko52927e22020-03-16 17:26:14 +01002368 if (dynamic && *dynamic) {
Radek Krejci011e4aa2020-09-04 15:22:31 +02002369 ret = lydict_insert_zc(ctx, (char *)value, &at->value);
2370 LY_CHECK_GOTO(ret, finish);
Michal Vasko52927e22020-03-16 17:26:14 +01002371 *dynamic = 0;
2372 } else {
Radek Krejci011e4aa2020-09-04 15:22:31 +02002373 LY_CHECK_GOTO(ret = lydict_insert(ctx, value, value_len, &at->value), finish);
Michal Vasko52927e22020-03-16 17:26:14 +01002374 }
Michal Vasko501af032020-11-11 20:27:44 +01002375 at->format = format;
2376 at->val_prefix_data = val_prefix_data;
2377 at->hints = hints;
Michal Vasko52927e22020-03-16 17:26:14 +01002378
2379 /* insert as the last attribute */
2380 if (parent) {
Michal Vaskoa5da3292020-08-12 13:10:50 +02002381 lyd_insert_attr(parent, at);
Michal Vasko52927e22020-03-16 17:26:14 +01002382 } else if (*attr) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002383 for (last = *attr; last->next; last = last->next) {}
Michal Vasko52927e22020-03-16 17:26:14 +01002384 last->next = at;
2385 }
2386
Radek Krejci011e4aa2020-09-04 15:22:31 +02002387finish:
2388 if (ret) {
2389 lyd_free_attr_single(ctx, at);
2390 } else if (attr) {
Michal Vasko52927e22020-03-16 17:26:14 +01002391 *attr = at;
2392 }
2393 return LY_SUCCESS;
2394}
2395
Radek Krejci084289f2019-07-09 17:35:30 +02002396API const struct lyd_node_term *
Michal Vasko004d3152020-06-11 19:59:22 +02002397lyd_target(const struct ly_path *path, const struct lyd_node *tree)
Radek Krejci084289f2019-07-09 17:35:30 +02002398{
Michal Vasko004d3152020-06-11 19:59:22 +02002399 struct lyd_node *target;
Radek Krejci084289f2019-07-09 17:35:30 +02002400
Michal Vasko004d3152020-06-11 19:59:22 +02002401 if (ly_path_eval(path, tree, &target)) {
2402 return NULL;
Radek Krejci084289f2019-07-09 17:35:30 +02002403 }
2404
Michal Vasko004d3152020-06-11 19:59:22 +02002405 return (struct lyd_node_term *)target;
Radek Krejci084289f2019-07-09 17:35:30 +02002406}
2407
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002408API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002409lyd_compare_single(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options)
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002410{
2411 const struct lyd_node *iter1, *iter2;
2412 struct lyd_node_term *term1, *term2;
2413 struct lyd_node_any *any1, *any2;
Michal Vasko52927e22020-03-16 17:26:14 +01002414 struct lyd_node_opaq *opaq1, *opaq2;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002415 size_t len1, len2;
Radek Krejci084289f2019-07-09 17:35:30 +02002416
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002417 if (!node1 || !node2) {
2418 if (node1 == node2) {
2419 return LY_SUCCESS;
2420 } else {
2421 return LY_ENOT;
2422 }
2423 }
2424
Michal Vaskob7be7a82020-08-20 09:09:04 +02002425 if ((LYD_CTX(node1) != LYD_CTX(node2)) || (node1->schema != node2->schema)) {
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002426 return LY_ENOT;
2427 }
2428
2429 if (node1->hash != node2->hash) {
2430 return LY_ENOT;
2431 }
Michal Vasko52927e22020-03-16 17:26:14 +01002432 /* 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 +02002433
Michal Vasko52927e22020-03-16 17:26:14 +01002434 if (!node1->schema) {
2435 opaq1 = (struct lyd_node_opaq *)node1;
2436 opaq2 = (struct lyd_node_opaq *)node2;
Michal Vaskoad92b672020-11-12 13:11:31 +01002437 if ((opaq1->name.name != opaq2->name.name) || (opaq1->format != opaq2->format) ||
2438 (opaq1->name.module_ns != opaq2->name.module_ns)) {
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002439 return LY_ENOT;
2440 }
Michal Vasko52927e22020-03-16 17:26:14 +01002441 switch (opaq1->format) {
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01002442 case LY_PREF_XML:
2443 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 +01002444 return LY_ENOT;
2445 }
2446 break;
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01002447 case LY_PREF_JSON:
Radek Krejci1798aae2020-07-14 13:26:06 +02002448 /* prefixes in JSON are unique, so it is not necessary to canonize the values */
2449 if (strcmp(opaq1->value, opaq2->value)) {
2450 return LY_ENOT;
2451 }
2452 break;
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01002453 default:
Michal Vasko52927e22020-03-16 17:26:14 +01002454 /* not allowed */
Michal Vaskob7be7a82020-08-20 09:09:04 +02002455 LOGINT(LYD_CTX(node1));
Michal Vasko52927e22020-03-16 17:26:14 +01002456 return LY_EINT;
2457 }
2458 if (options & LYD_COMPARE_FULL_RECURSION) {
2459 iter1 = opaq1->child;
2460 iter2 = opaq2->child;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002461 goto all_children_compare;
Michal Vasko52927e22020-03-16 17:26:14 +01002462 }
2463 return LY_SUCCESS;
2464 } else {
2465 switch (node1->schema->nodetype) {
2466 case LYS_LEAF:
2467 case LYS_LEAFLIST:
2468 if (options & LYD_COMPARE_DEFAULTS) {
2469 if ((node1->flags & LYD_DEFAULT) != (node2->flags & LYD_DEFAULT)) {
2470 return LY_ENOT;
2471 }
2472 }
2473
Michal Vasko1a2bf2e2020-06-16 13:07:48 +02002474 term1 = (struct lyd_node_term *)node1;
2475 term2 = (struct lyd_node_term *)node2;
2476 if (term1->value.realtype != term2->value.realtype) {
2477 return LY_ENOT;
2478 }
Michal Vasko52927e22020-03-16 17:26:14 +01002479
Michal Vasko1a2bf2e2020-06-16 13:07:48 +02002480 return term1->value.realtype->plugin->compare(&term1->value, &term2->value);
Michal Vasko52927e22020-03-16 17:26:14 +01002481 case LYS_CONTAINER:
2482 if (options & LYD_COMPARE_DEFAULTS) {
2483 if ((node1->flags & LYD_DEFAULT) != (node2->flags & LYD_DEFAULT)) {
2484 return LY_ENOT;
2485 }
2486 }
2487 if (options & LYD_COMPARE_FULL_RECURSION) {
Michal Vasko22df3f02020-08-24 13:29:22 +02002488 iter1 = ((struct lyd_node_inner *)node1)->child;
2489 iter2 = ((struct lyd_node_inner *)node2)->child;
Michal Vasko52927e22020-03-16 17:26:14 +01002490 goto all_children_compare;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002491 }
2492 return LY_SUCCESS;
Michal Vasko1bf09392020-03-27 12:38:10 +01002493 case LYS_RPC:
Michal Vasko52927e22020-03-16 17:26:14 +01002494 case LYS_ACTION:
2495 if (options & LYD_COMPARE_FULL_RECURSION) {
2496 /* TODO action/RPC
2497 goto all_children_compare;
2498 */
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002499 }
2500 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01002501 case LYS_NOTIF:
2502 if (options & LYD_COMPARE_FULL_RECURSION) {
2503 /* TODO Notification
2504 goto all_children_compare;
2505 */
2506 }
2507 return LY_SUCCESS;
2508 case LYS_LIST:
Michal Vasko22df3f02020-08-24 13:29:22 +02002509 iter1 = ((struct lyd_node_inner *)node1)->child;
2510 iter2 = ((struct lyd_node_inner *)node2)->child;
Michal Vasko52927e22020-03-16 17:26:14 +01002511
2512 if (!(node1->schema->flags & LYS_KEYLESS) && !(options & LYD_COMPARE_FULL_RECURSION)) {
2513 /* lists with keys, their equivalence is based on their keys */
Michal Vasko22df3f02020-08-24 13:29:22 +02002514 for (struct lysc_node *key = ((struct lysc_node_list *)node1->schema)->child;
Michal Vaskoc57d9a92020-06-23 13:28:27 +02002515 key && (key->flags & LYS_KEY);
Michal Vasko52927e22020-03-16 17:26:14 +01002516 key = key->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02002517 if (lyd_compare_single(iter1, iter2, options)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002518 return LY_ENOT;
2519 }
2520 iter1 = iter1->next;
2521 iter2 = iter2->next;
2522 }
2523 } else {
2524 /* lists without keys, their equivalence is based on equivalence of all the children (both direct and indirect) */
2525
Radek Krejci0f969882020-08-21 16:56:47 +02002526all_children_compare:
Michal Vasko52927e22020-03-16 17:26:14 +01002527 if (!iter1 && !iter2) {
2528 /* no children, nothing to compare */
2529 return LY_SUCCESS;
2530 }
2531
Michal Vaskod989ba02020-08-24 10:59:24 +02002532 for ( ; iter1 && iter2; iter1 = iter1->next, iter2 = iter2->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02002533 if (lyd_compare_single(iter1, iter2, options | LYD_COMPARE_FULL_RECURSION)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002534 return LY_ENOT;
2535 }
2536 }
2537 if (iter1 || iter2) {
2538 return LY_ENOT;
2539 }
2540 }
2541 return LY_SUCCESS;
2542 case LYS_ANYXML:
2543 case LYS_ANYDATA:
Michal Vasko22df3f02020-08-24 13:29:22 +02002544 any1 = (struct lyd_node_any *)node1;
2545 any2 = (struct lyd_node_any *)node2;
Michal Vasko52927e22020-03-16 17:26:14 +01002546
2547 if (any1->value_type != any2->value_type) {
2548 return LY_ENOT;
2549 }
2550 switch (any1->value_type) {
2551 case LYD_ANYDATA_DATATREE:
2552 iter1 = any1->value.tree;
2553 iter2 = any2->value.tree;
2554 goto all_children_compare;
2555 case LYD_ANYDATA_STRING:
2556 case LYD_ANYDATA_XML:
2557 case LYD_ANYDATA_JSON:
2558 len1 = strlen(any1->value.str);
2559 len2 = strlen(any2->value.str);
Michal Vasko69730152020-10-09 16:30:07 +02002560 if ((len1 != len2) || strcmp(any1->value.str, any2->value.str)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002561 return LY_ENOT;
2562 }
2563 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01002564 case LYD_ANYDATA_LYB:
Michal Vasko60ea6352020-06-29 13:39:39 +02002565 len1 = lyd_lyb_data_length(any1->value.mem);
2566 len2 = lyd_lyb_data_length(any2->value.mem);
Michal Vasko69730152020-10-09 16:30:07 +02002567 if ((len1 != len2) || memcmp(any1->value.mem, any2->value.mem, len1)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002568 return LY_ENOT;
2569 }
2570 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01002571 }
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002572 }
2573 }
2574
Michal Vaskob7be7a82020-08-20 09:09:04 +02002575 LOGINT(LYD_CTX(node1));
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002576 return LY_EINT;
2577}
Radek Krejci22ebdba2019-07-25 13:59:43 +02002578
Michal Vasko21725742020-06-29 11:49:25 +02002579API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002580lyd_compare_siblings(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options)
Michal Vasko8f359bf2020-07-28 10:41:15 +02002581{
Michal Vaskod989ba02020-08-24 10:59:24 +02002582 for ( ; node1 && node2; node1 = node1->next, node2 = node2->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02002583 LY_CHECK_RET(lyd_compare_single(node1, node2, options));
2584 }
2585
Michal Vasko11a81432020-07-28 16:31:29 +02002586 if (node1 == node2) {
2587 return LY_SUCCESS;
Michal Vasko8f359bf2020-07-28 10:41:15 +02002588 }
Michal Vasko11a81432020-07-28 16:31:29 +02002589 return LY_ENOT;
Michal Vasko8f359bf2020-07-28 10:41:15 +02002590}
2591
2592API LY_ERR
Michal Vasko21725742020-06-29 11:49:25 +02002593lyd_compare_meta(const struct lyd_meta *meta1, const struct lyd_meta *meta2)
2594{
2595 if (!meta1 || !meta2) {
2596 if (meta1 == meta2) {
2597 return LY_SUCCESS;
2598 } else {
2599 return LY_ENOT;
2600 }
2601 }
2602
Michal Vaskoa8083062020-11-06 17:22:10 +01002603 if ((meta1->annotation->module->ctx != meta2->annotation->module->ctx) || (meta1->annotation != meta2->annotation)) {
Michal Vasko21725742020-06-29 11:49:25 +02002604 return LY_ENOT;
2605 }
2606
2607 if (meta1->value.realtype != meta2->value.realtype) {
2608 return LY_ENOT;
2609 }
2610
2611 return meta1->value.realtype->plugin->compare(&meta1->value, &meta2->value);
2612}
2613
Radek Krejci22ebdba2019-07-25 13:59:43 +02002614/**
Michal Vasko52927e22020-03-16 17:26:14 +01002615 * @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 +02002616 *
2617 * 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 +02002618 *
2619 * @param[in] node Original node to duplicate
2620 * @param[in] parent Parent to insert into, NULL for top-level sibling.
2621 * @param[in,out] first First sibling, NULL if no top-level sibling exist yet. Can be also NULL if @p parent is set.
2622 * @param[in] options Bitmask of options flags, see @ref dupoptions.
2623 * @param[out] dup_p Pointer where the created duplicated node is placed (besides connecting it int @p parent / @p first sibling).
2624 * @return LY_ERR value
Radek Krejci22ebdba2019-07-25 13:59:43 +02002625 */
Michal Vasko52927e22020-03-16 17:26:14 +01002626static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002627lyd_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 +02002628 struct lyd_node **dup_p)
Radek Krejci22ebdba2019-07-25 13:59:43 +02002629{
Michal Vasko52927e22020-03-16 17:26:14 +01002630 LY_ERR ret;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002631 struct lyd_node *dup = NULL;
Michal Vasko61551fa2020-07-09 15:45:45 +02002632 struct lyd_meta *meta;
2633 struct lyd_node_any *any;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002634
Michal Vasko52927e22020-03-16 17:26:14 +01002635 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002636
Michal Vasko52927e22020-03-16 17:26:14 +01002637 if (!node->schema) {
2638 dup = calloc(1, sizeof(struct lyd_node_opaq));
2639 } else {
2640 switch (node->schema->nodetype) {
Michal Vasko1bf09392020-03-27 12:38:10 +01002641 case LYS_RPC:
Michal Vasko52927e22020-03-16 17:26:14 +01002642 case LYS_ACTION:
2643 case LYS_NOTIF:
2644 case LYS_CONTAINER:
2645 case LYS_LIST:
2646 dup = calloc(1, sizeof(struct lyd_node_inner));
2647 break;
2648 case LYS_LEAF:
2649 case LYS_LEAFLIST:
2650 dup = calloc(1, sizeof(struct lyd_node_term));
2651 break;
2652 case LYS_ANYDATA:
2653 case LYS_ANYXML:
2654 dup = calloc(1, sizeof(struct lyd_node_any));
2655 break;
2656 default:
Michal Vaskob7be7a82020-08-20 09:09:04 +02002657 LOGINT(LYD_CTX(node));
Michal Vasko52927e22020-03-16 17:26:14 +01002658 ret = LY_EINT;
2659 goto error;
2660 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02002661 }
Michal Vaskob7be7a82020-08-20 09:09:04 +02002662 LY_CHECK_ERR_GOTO(!dup, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002663
Michal Vaskof6df0a02020-06-16 13:08:34 +02002664 if (options & LYD_DUP_WITH_FLAGS) {
2665 dup->flags = node->flags;
2666 } else {
2667 dup->flags = (node->flags & LYD_DEFAULT) | LYD_NEW;
2668 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02002669 dup->schema = node->schema;
Michal Vasko52927e22020-03-16 17:26:14 +01002670 dup->prev = dup;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002671
Michal Vasko25a32822020-07-09 15:48:22 +02002672 /* duplicate metadata */
2673 if (!(options & LYD_DUP_NO_META)) {
2674 LY_LIST_FOR(node->meta, meta) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002675 LY_CHECK_GOTO(ret = lyd_dup_meta_single(meta, dup, NULL), error);
Michal Vasko25a32822020-07-09 15:48:22 +02002676 }
2677 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02002678
2679 /* nodetype-specific work */
Michal Vasko52927e22020-03-16 17:26:14 +01002680 if (!dup->schema) {
2681 struct lyd_node_opaq *opaq = (struct lyd_node_opaq *)dup;
2682 struct lyd_node_opaq *orig = (struct lyd_node_opaq *)node;
2683 struct lyd_node *child;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002684
2685 if (options & LYD_DUP_RECURSIVE) {
2686 /* duplicate all the children */
2687 LY_LIST_FOR(orig->child, child) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002688 LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, NULL, options, NULL), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002689 }
2690 }
Michal Vaskoad92b672020-11-12 13:11:31 +01002691 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->name.name, 0, &opaq->name.name), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002692 opaq->format = orig->format;
Michal Vaskoad92b672020-11-12 13:11:31 +01002693 if (orig->name.prefix) {
2694 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->name.prefix, 0, &opaq->name.prefix), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002695 }
Michal Vaskoad92b672020-11-12 13:11:31 +01002696 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 +01002697 if (orig->val_prefix_data) {
2698 ret = ly_dup_prefix_data(LYD_CTX(node), opaq->format, orig->val_prefix_data, &opaq->val_prefix_data);
2699 LY_CHECK_GOTO(ret, error);
Michal Vasko52927e22020-03-16 17:26:14 +01002700 }
Radek Krejci011e4aa2020-09-04 15:22:31 +02002701 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->value, 0, &opaq->value), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002702 opaq->ctx = orig->ctx;
2703 } else if (dup->schema->nodetype & LYD_NODE_TERM) {
2704 struct lyd_node_term *term = (struct lyd_node_term *)dup;
2705 struct lyd_node_term *orig = (struct lyd_node_term *)node;
2706
2707 term->hash = orig->hash;
Michal Vaskob7be7a82020-08-20 09:09:04 +02002708 LY_CHECK_ERR_GOTO(orig->value.realtype->plugin->duplicate(LYD_CTX(node), &orig->value, &term->value),
Michal Vasko69730152020-10-09 16:30:07 +02002709 LOGERR(LYD_CTX(node), LY_EINT, "Value duplication failed."); ret = LY_EINT, error);
Michal Vasko52927e22020-03-16 17:26:14 +01002710 } else if (dup->schema->nodetype & LYD_NODE_INNER) {
2711 struct lyd_node_inner *orig = (struct lyd_node_inner *)node;
2712 struct lyd_node *child;
2713
2714 if (options & LYD_DUP_RECURSIVE) {
2715 /* duplicate all the children */
2716 LY_LIST_FOR(orig->child, child) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002717 LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, NULL, options, NULL), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002718 }
Michal Vasko69730152020-10-09 16:30:07 +02002719 } else if ((dup->schema->nodetype == LYS_LIST) && !(dup->schema->flags & LYS_KEYLESS)) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02002720 /* always duplicate keys of a list */
Radek Krejci22ebdba2019-07-25 13:59:43 +02002721 child = orig->child;
Michal Vasko52927e22020-03-16 17:26:14 +01002722 for (struct lysc_node *key = ((struct lysc_node_list *)dup->schema)->child;
Michal Vaskoc57d9a92020-06-23 13:28:27 +02002723 key && (key->flags & LYS_KEY);
Radek Krejci0fe9b512019-07-26 17:51:05 +02002724 key = key->next) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02002725 if (!child) {
2726 /* possibly not keys are present in filtered tree */
2727 break;
Radek Krejci0fe9b512019-07-26 17:51:05 +02002728 } else if (child->schema != key) {
2729 /* possibly not all keys are present in filtered tree,
2730 * but there can be also some non-key nodes */
2731 continue;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002732 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002733 LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, NULL, options, NULL), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002734 child = child->next;
2735 }
2736 }
2737 lyd_hash(dup);
2738 } else if (dup->schema->nodetype & LYD_NODE_ANY) {
Michal Vasko61551fa2020-07-09 15:45:45 +02002739 dup->hash = node->hash;
2740 any = (struct lyd_node_any *)node;
2741 LY_CHECK_GOTO(ret = lyd_any_copy_value(dup, &any->value, any->value_type), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002742 }
2743
Michal Vasko52927e22020-03-16 17:26:14 +01002744 /* insert */
2745 lyd_insert_node(parent, first, dup);
Michal Vasko52927e22020-03-16 17:26:14 +01002746
2747 if (dup_p) {
2748 *dup_p = dup;
2749 }
2750 return LY_SUCCESS;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002751
2752error:
Michal Vasko52927e22020-03-16 17:26:14 +01002753 lyd_free_tree(dup);
2754 return ret;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002755}
2756
Michal Vasko3a41dff2020-07-15 14:30:28 +02002757static LY_ERR
2758lyd_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 +02002759 struct lyd_node_inner **local_parent)
Radek Krejci22ebdba2019-07-25 13:59:43 +02002760{
Michal Vasko3a41dff2020-07-15 14:30:28 +02002761 const struct lyd_node_inner *orig_parent, *iter;
Radek Krejci857189e2020-09-01 13:26:36 +02002762 ly_bool repeat = 1;
Michal Vasko3a41dff2020-07-15 14:30:28 +02002763
2764 *dup_parent = NULL;
2765 *local_parent = NULL;
2766
2767 for (orig_parent = node->parent; repeat && orig_parent; orig_parent = orig_parent->parent) {
2768 if (parent && (parent->schema == orig_parent->schema)) {
2769 /* stop creating parents, connect what we have into the provided parent */
2770 iter = parent;
2771 repeat = 0;
2772 } else {
2773 iter = NULL;
2774 LY_CHECK_RET(lyd_dup_r((struct lyd_node *)orig_parent, NULL, (struct lyd_node **)&iter, 0,
Radek Krejci0f969882020-08-21 16:56:47 +02002775 (struct lyd_node **)&iter));
Michal Vasko3a41dff2020-07-15 14:30:28 +02002776 }
2777 if (!*local_parent) {
2778 *local_parent = (struct lyd_node_inner *)iter;
2779 }
2780 if (iter->child) {
2781 /* 1) list - add after keys
2782 * 2) provided parent with some children */
2783 iter->child->prev->next = *dup_parent;
2784 if (*dup_parent) {
2785 (*dup_parent)->prev = iter->child->prev;
2786 iter->child->prev = *dup_parent;
2787 }
2788 } else {
2789 ((struct lyd_node_inner *)iter)->child = *dup_parent;
2790 }
2791 if (*dup_parent) {
2792 (*dup_parent)->parent = (struct lyd_node_inner *)iter;
2793 }
2794 *dup_parent = (struct lyd_node *)iter;
2795 }
2796
2797 if (repeat && parent) {
2798 /* given parent and created parents chain actually do not interconnect */
Michal Vaskob7be7a82020-08-20 09:09:04 +02002799 LOGERR(LYD_CTX(node), LY_EINVAL,
Michal Vasko69730152020-10-09 16:30:07 +02002800 "Invalid argument parent (%s()) - does not interconnect with the created node's parents chain.", __func__);
Michal Vasko3a41dff2020-07-15 14:30:28 +02002801 return LY_EINVAL;
2802 }
2803
2804 return LY_SUCCESS;
2805}
2806
2807static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02002808lyd_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 +02002809{
2810 LY_ERR rc;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002811 const struct lyd_node *orig; /* original node to be duplicated */
2812 struct lyd_node *first = NULL; /* the first duplicated node, this is returned */
Radek Krejci22ebdba2019-07-25 13:59:43 +02002813 struct lyd_node *top = NULL; /* the most higher created node */
2814 struct lyd_node_inner *local_parent = NULL; /* the direct parent node for the duplicated node(s) */
Radek Krejci22ebdba2019-07-25 13:59:43 +02002815
Michal Vasko3a41dff2020-07-15 14:30:28 +02002816 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002817
2818 if (options & LYD_DUP_WITH_PARENTS) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002819 LY_CHECK_GOTO(rc = lyd_dup_get_local_parent(node, parent, &top, &local_parent), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002820 } else {
2821 local_parent = parent;
2822 }
2823
Radek Krejci22ebdba2019-07-25 13:59:43 +02002824 LY_LIST_FOR(node, orig) {
Michal Vasko35f4d772021-01-12 12:08:57 +01002825 if (lysc_is_key(orig->schema)) {
2826 if (local_parent) {
2827 /* the key must already exist in the parent */
2828 rc = lyd_find_sibling_schema(local_parent->child, orig->schema, first ? NULL : &first);
2829 LY_CHECK_ERR_GOTO(rc, LOGINT(LYD_CTX(node)), error);
2830 } else {
2831 assert(!(options & LYD_DUP_WITH_PARENTS));
2832 /* duplicating a single key, okay, I suppose... */
2833 rc = lyd_dup_r(orig, NULL, &first, options, first ? NULL : &first);
2834 LY_CHECK_GOTO(rc, error);
2835 }
2836 } else {
2837 /* if there is no local parent, it will be inserted into first */
2838 rc = lyd_dup_r(orig, (struct lyd_node *)local_parent, &first, options, first ? NULL : &first);
2839 LY_CHECK_GOTO(rc, error);
2840 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002841 if (nosiblings) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02002842 break;
2843 }
2844 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002845
2846 /* rehash if needed */
Michal Vaskod989ba02020-08-24 10:59:24 +02002847 for ( ; local_parent; local_parent = local_parent->parent) {
Michal Vasko69730152020-10-09 16:30:07 +02002848 if ((local_parent->schema->nodetype == LYS_LIST) && (local_parent->schema->flags & LYS_KEYLESS)) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002849 lyd_hash((struct lyd_node *)local_parent);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002850 }
2851 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002852
2853 if (dup) {
2854 *dup = first;
2855 }
2856 return LY_SUCCESS;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002857
2858error:
2859 if (top) {
2860 lyd_free_tree(top);
2861 } else {
Michal Vaskof03ed032020-03-04 13:31:44 +01002862 lyd_free_siblings(first);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002863 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002864 return rc;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002865}
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002866
Michal Vasko3a41dff2020-07-15 14:30:28 +02002867API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002868lyd_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 +02002869{
2870 return lyd_dup(node, parent, options, 1, dup);
2871}
2872
2873API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002874lyd_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 +02002875{
2876 return lyd_dup(node, parent, options, 0, dup);
2877}
2878
2879API LY_ERR
2880lyd_dup_meta_single(const struct lyd_meta *meta, struct lyd_node *node, struct lyd_meta **dup)
Michal Vasko25a32822020-07-09 15:48:22 +02002881{
Radek Krejci011e4aa2020-09-04 15:22:31 +02002882 LY_ERR ret = LY_SUCCESS;
Michal Vasko25a32822020-07-09 15:48:22 +02002883 struct lyd_meta *mt, *last;
2884
Michal Vasko3a41dff2020-07-15 14:30:28 +02002885 LY_CHECK_ARG_RET(NULL, meta, node, LY_EINVAL);
Michal Vasko25a32822020-07-09 15:48:22 +02002886
2887 /* create a copy */
2888 mt = calloc(1, sizeof *mt);
Michal Vaskob7be7a82020-08-20 09:09:04 +02002889 LY_CHECK_ERR_RET(!mt, LOGMEM(LYD_CTX(node)), LY_EMEM);
Michal Vasko25a32822020-07-09 15:48:22 +02002890 mt->annotation = meta->annotation;
Michal Vaskob7be7a82020-08-20 09:09:04 +02002891 ret = meta->value.realtype->plugin->duplicate(LYD_CTX(node), &meta->value, &mt->value);
Radek Krejci011e4aa2020-09-04 15:22:31 +02002892 LY_CHECK_ERR_GOTO(ret, LOGERR(LYD_CTX(node), LY_EINT, "Value duplication failed."), finish);
2893 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), meta->name, 0, &mt->name), finish);
Michal Vasko25a32822020-07-09 15:48:22 +02002894
2895 /* insert as the last attribute */
Radek Krejci011e4aa2020-09-04 15:22:31 +02002896 mt->parent = node;
Michal Vasko25a32822020-07-09 15:48:22 +02002897 if (node->meta) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002898 for (last = node->meta; last->next; last = last->next) {}
Michal Vasko25a32822020-07-09 15:48:22 +02002899 last->next = mt;
2900 } else {
2901 node->meta = mt;
2902 }
2903
Radek Krejci011e4aa2020-09-04 15:22:31 +02002904finish:
2905 if (ret) {
2906 lyd_free_meta_single(mt);
2907 } else if (dup) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002908 *dup = mt;
2909 }
2910 return LY_SUCCESS;
Michal Vasko25a32822020-07-09 15:48:22 +02002911}
2912
Michal Vasko4490d312020-06-16 13:08:55 +02002913/**
2914 * @brief Merge a source sibling into target siblings.
2915 *
2916 * @param[in,out] first_trg First target sibling, is updated if top-level.
2917 * @param[in] parent_trg Target parent.
2918 * @param[in,out] sibling_src Source sibling to merge, set to NULL if spent.
2919 * @param[in] options Merge options.
2920 * @return LY_ERR value.
2921 */
2922static LY_ERR
2923lyd_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 +02002924 uint16_t options)
Michal Vasko4490d312020-06-16 13:08:55 +02002925{
2926 LY_ERR ret;
2927 const struct lyd_node *child_src, *tmp, *sibling_src;
Michal Vasko56daf732020-08-10 10:57:18 +02002928 struct lyd_node *match_trg, *dup_src, *elem;
Michal Vasko4490d312020-06-16 13:08:55 +02002929 struct lysc_type *type;
Michal Vasko4490d312020-06-16 13:08:55 +02002930
2931 sibling_src = *sibling_src_p;
2932 if (sibling_src->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) {
2933 /* try to find the exact instance */
2934 ret = lyd_find_sibling_first(*first_trg, sibling_src, &match_trg);
2935 } else {
2936 /* try to simply find the node, there cannot be more instances */
2937 ret = lyd_find_sibling_val(*first_trg, sibling_src->schema, NULL, 0, &match_trg);
2938 }
2939
2940 if (!ret) {
2941 /* node found, make sure even value matches for all node types */
Michal Vasko8f359bf2020-07-28 10:41:15 +02002942 if ((match_trg->schema->nodetype == LYS_LEAF) && lyd_compare_single(sibling_src, match_trg, LYD_COMPARE_DEFAULTS)) {
Michal Vasko4490d312020-06-16 13:08:55 +02002943 /* since they are different, they cannot both be default */
2944 assert(!(sibling_src->flags & LYD_DEFAULT) || !(match_trg->flags & LYD_DEFAULT));
2945
Michal Vasko3a41dff2020-07-15 14:30:28 +02002946 /* update value (or only LYD_DEFAULT flag) only if flag set or the source node is not default */
2947 if ((options & LYD_MERGE_DEFAULTS) || !(sibling_src->flags & LYD_DEFAULT)) {
Michal Vasko4490d312020-06-16 13:08:55 +02002948 type = ((struct lysc_node_leaf *)match_trg->schema)->type;
Michal Vaskob7be7a82020-08-20 09:09:04 +02002949 type->plugin->free(LYD_CTX(match_trg), &((struct lyd_node_term *)match_trg)->value);
2950 LY_CHECK_RET(type->plugin->duplicate(LYD_CTX(match_trg), &((struct lyd_node_term *)sibling_src)->value,
Michal Vasko69730152020-10-09 16:30:07 +02002951 &((struct lyd_node_term *)match_trg)->value));
Michal Vasko4490d312020-06-16 13:08:55 +02002952
2953 /* copy flags and add LYD_NEW */
2954 match_trg->flags = sibling_src->flags | LYD_NEW;
2955 }
Michal Vasko8f359bf2020-07-28 10:41:15 +02002956 } else if ((match_trg->schema->nodetype & LYS_ANYDATA) && lyd_compare_single(sibling_src, match_trg, 0)) {
Michal Vasko4c583e82020-07-17 12:16:14 +02002957 /* update value */
2958 LY_CHECK_RET(lyd_any_copy_value(match_trg, &((struct lyd_node_any *)sibling_src)->value,
Radek Krejci0f969882020-08-21 16:56:47 +02002959 ((struct lyd_node_any *)sibling_src)->value_type));
Michal Vasko4490d312020-06-16 13:08:55 +02002960
2961 /* copy flags and add LYD_NEW */
2962 match_trg->flags = sibling_src->flags | LYD_NEW;
Michal Vasko4490d312020-06-16 13:08:55 +02002963 } else {
2964 /* check descendants, recursively */
Radek Krejcia1c1e542020-09-29 16:06:52 +02002965 LY_LIST_FOR_SAFE(lyd_child_no_keys(sibling_src), tmp, child_src) {
Michal Vasko4490d312020-06-16 13:08:55 +02002966 LY_CHECK_RET(lyd_merge_sibling_r(lyd_node_children_p(match_trg), match_trg, &child_src, options));
2967 }
2968 }
2969 } else {
2970 /* node not found, merge it */
2971 if (options & LYD_MERGE_DESTRUCT) {
2972 dup_src = (struct lyd_node *)sibling_src;
2973 lyd_unlink_tree(dup_src);
2974 /* spend it */
2975 *sibling_src_p = NULL;
2976 } else {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002977 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 +02002978 }
2979
2980 /* set LYD_NEW for all the new nodes, required for validation */
Michal Vasko56daf732020-08-10 10:57:18 +02002981 LYD_TREE_DFS_BEGIN(dup_src, elem) {
Michal Vasko4490d312020-06-16 13:08:55 +02002982 elem->flags |= LYD_NEW;
Michal Vasko56daf732020-08-10 10:57:18 +02002983 LYD_TREE_DFS_END(dup_src, elem);
Michal Vasko4490d312020-06-16 13:08:55 +02002984 }
2985
2986 lyd_insert_node(parent_trg, first_trg, dup_src);
2987 }
2988
2989 return LY_SUCCESS;
2990}
2991
Michal Vasko3a41dff2020-07-15 14:30:28 +02002992static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02002993lyd_merge(struct lyd_node **target, const struct lyd_node *source, uint16_t options, ly_bool nosiblings)
Michal Vasko4490d312020-06-16 13:08:55 +02002994{
2995 const struct lyd_node *sibling_src, *tmp;
Radek Krejci857189e2020-09-01 13:26:36 +02002996 ly_bool first;
Michal Vasko4490d312020-06-16 13:08:55 +02002997
2998 LY_CHECK_ARG_RET(NULL, target, LY_EINVAL);
2999
3000 if (!source) {
3001 /* nothing to merge */
3002 return LY_SUCCESS;
3003 }
3004
Michal Vasko831422b2020-11-24 11:20:51 +01003005 if ((*target && lysc_data_parent((*target)->schema)) || lysc_data_parent(source->schema)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02003006 LOGERR(LYD_CTX(source), LY_EINVAL, "Invalid arguments - can merge only 2 top-level subtrees (%s()).", __func__);
Michal Vasko4490d312020-06-16 13:08:55 +02003007 return LY_EINVAL;
3008 }
3009
3010 LY_LIST_FOR_SAFE(source, tmp, sibling_src) {
Radek Krejci857189e2020-09-01 13:26:36 +02003011 first = (sibling_src == source) ? 1 : 0;
Michal Vasko4490d312020-06-16 13:08:55 +02003012 LY_CHECK_RET(lyd_merge_sibling_r(target, NULL, &sibling_src, options));
3013 if (first && !sibling_src) {
3014 /* source was spent (unlinked), move to the next node */
3015 source = tmp;
3016 }
3017
Michal Vasko3a41dff2020-07-15 14:30:28 +02003018 if (nosiblings) {
Michal Vasko4490d312020-06-16 13:08:55 +02003019 break;
3020 }
3021 }
3022
3023 if (options & LYD_MERGE_DESTRUCT) {
3024 /* free any leftover source data that were not merged */
3025 lyd_free_siblings((struct lyd_node *)source);
3026 }
3027
3028 return LY_SUCCESS;
3029}
3030
Michal Vasko3a41dff2020-07-15 14:30:28 +02003031API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003032lyd_merge_tree(struct lyd_node **target, const struct lyd_node *source, uint16_t options)
Michal Vasko3a41dff2020-07-15 14:30:28 +02003033{
3034 return lyd_merge(target, source, options, 1);
3035}
3036
3037API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003038lyd_merge_siblings(struct lyd_node **target, const struct lyd_node *source, uint16_t options)
Michal Vasko3a41dff2020-07-15 14:30:28 +02003039{
3040 return lyd_merge(target, source, options, 0);
3041}
3042
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003043static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003044lyd_path_str_enlarge(char **buffer, size_t *buflen, size_t reqlen, ly_bool is_static)
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003045{
Michal Vasko14654712020-02-06 08:35:21 +01003046 /* ending \0 */
3047 ++reqlen;
3048
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003049 if (reqlen > *buflen) {
3050 if (is_static) {
3051 return LY_EINCOMPLETE;
3052 }
3053
3054 *buffer = ly_realloc(*buffer, reqlen * sizeof **buffer);
3055 if (!*buffer) {
3056 return LY_EMEM;
3057 }
3058
3059 *buflen = reqlen;
3060 }
3061
3062 return LY_SUCCESS;
3063}
3064
Michal Vaskod59035b2020-07-08 12:00:06 +02003065LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003066lyd_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 +02003067{
3068 const struct lyd_node *key;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003069 size_t len;
3070 const char *val;
3071 char quot;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003072
Radek Krejcia1c1e542020-09-29 16:06:52 +02003073 for (key = lyd_child(node); key && (key->schema->flags & LYS_KEY); key = key->next) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02003074 val = LYD_CANON_VALUE(key);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003075 len = 1 + strlen(key->schema->name) + 2 + strlen(val) + 2;
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003076 LY_CHECK_RET(lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static));
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003077
3078 quot = '\'';
3079 if (strchr(val, '\'')) {
3080 quot = '"';
3081 }
3082 *bufused += sprintf(*buffer + *bufused, "[%s=%c%s%c]", key->schema->name, quot, val, quot);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003083 }
3084
3085 return LY_SUCCESS;
3086}
3087
3088/**
3089 * @brief Append leaf-list value predicate to path.
3090 *
3091 * @param[in] node Node to print.
3092 * @param[in,out] buffer Buffer to print to.
3093 * @param[in,out] buflen Current buffer length.
3094 * @param[in,out] bufused Current number of characters used in @p buffer.
3095 * @param[in] is_static Whether buffer is static or can be reallocated.
3096 * @return LY_ERR
3097 */
3098static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003099lyd_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 +02003100{
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003101 size_t len;
3102 const char *val;
3103 char quot;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003104
Michal Vaskob7be7a82020-08-20 09:09:04 +02003105 val = LYD_CANON_VALUE(node);
Radek Krejcif13b87b2020-12-01 22:02:17 +01003106 len = 4 + strlen(val) + 2; /* "[.='" + val + "']" */
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003107 LY_CHECK_RET(lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static));
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003108
3109 quot = '\'';
3110 if (strchr(val, '\'')) {
3111 quot = '"';
3112 }
3113 *bufused += sprintf(*buffer + *bufused, "[.=%c%s%c]", quot, val, quot);
3114
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003115 return LY_SUCCESS;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003116}
3117
3118/**
3119 * @brief Append node position (relative to its other instances) predicate to path.
3120 *
3121 * @param[in] node Node to print.
3122 * @param[in,out] buffer Buffer to print to.
3123 * @param[in,out] buflen Current buffer length.
3124 * @param[in,out] bufused Current number of characters used in @p buffer.
3125 * @param[in] is_static Whether buffer is static or can be reallocated.
3126 * @return LY_ERR
3127 */
3128static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003129lyd_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 +02003130{
3131 const struct lyd_node *first, *iter;
3132 size_t len;
Radek Krejci1deb5be2020-08-26 16:43:36 +02003133 uint64_t pos;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003134 char *val = NULL;
3135 LY_ERR rc;
3136
3137 if (node->parent) {
3138 first = node->parent->child;
3139 } else {
Michal Vaskoe070bfe2020-08-31 12:27:25 +02003140 for (first = node; first->prev->next; first = first->prev) {}
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003141 }
3142 pos = 1;
3143 for (iter = first; iter != node; iter = iter->next) {
3144 if (iter->schema == node->schema) {
3145 ++pos;
3146 }
3147 }
Radek Krejci1deb5be2020-08-26 16:43:36 +02003148 if (asprintf(&val, "%" PRIu64, pos) == -1) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003149 return LY_EMEM;
3150 }
3151
3152 len = 1 + strlen(val) + 1;
3153 rc = lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static);
3154 if (rc != LY_SUCCESS) {
3155 goto cleanup;
3156 }
3157
3158 *bufused += sprintf(*buffer + *bufused, "[%s]", val);
3159
3160cleanup:
3161 free(val);
3162 return rc;
3163}
3164
3165API char *
3166lyd_path(const struct lyd_node *node, LYD_PATH_TYPE pathtype, char *buffer, size_t buflen)
3167{
Radek Krejci857189e2020-09-01 13:26:36 +02003168 ly_bool is_static = 0;
Radek Krejci1deb5be2020-08-26 16:43:36 +02003169 uint32_t i, depth;
Michal Vasko14654712020-02-06 08:35:21 +01003170 size_t bufused = 0, len;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003171 const struct lyd_node *iter;
3172 const struct lys_module *mod;
Michal Vasko790b2bc2020-08-03 13:35:06 +02003173 LY_ERR rc = LY_SUCCESS;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003174
3175 LY_CHECK_ARG_RET(NULL, node, NULL);
3176 if (buffer) {
3177 LY_CHECK_ARG_RET(node->schema->module->ctx, buflen > 1, NULL);
3178 is_static = 1;
Michal Vasko14654712020-02-06 08:35:21 +01003179 } else {
3180 buflen = 0;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003181 }
3182
3183 switch (pathtype) {
Radek Krejci635d2b82021-01-04 11:26:51 +01003184 case LYD_PATH_STD:
3185 case LYD_PATH_STD_NO_LAST_PRED:
Michal Vasko14654712020-02-06 08:35:21 +01003186 depth = 1;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003187 for (iter = node; iter->parent; iter = (const struct lyd_node *)iter->parent) {
3188 ++depth;
3189 }
3190
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003191 goto iter_print;
Michal Vasko14654712020-02-06 08:35:21 +01003192 while (depth) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003193 /* find the right node */
Radek Krejci1e008d22020-08-17 11:37:37 +02003194 for (iter = node, i = 1; i < depth; iter = (const struct lyd_node *)iter->parent, ++i) {}
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003195iter_print:
3196 /* print prefix and name */
3197 mod = NULL;
Michal Vasko69730152020-10-09 16:30:07 +02003198 if (iter->schema && (!iter->parent || (iter->schema->module != iter->parent->schema->module))) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003199 mod = iter->schema->module;
3200 }
3201
3202 /* realloc string */
Michal Vaskoad92b672020-11-12 13:11:31 +01003203 len = 1 + (mod ? strlen(mod->name) + 1 : 0) + (iter->schema ? strlen(iter->schema->name) :
3204 strlen(((struct lyd_node_opaq *)iter)->name.name));
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003205 rc = lyd_path_str_enlarge(&buffer, &buflen, bufused + len, is_static);
3206 if (rc != LY_SUCCESS) {
3207 break;
3208 }
3209
3210 /* print next node */
Radek Krejci1798aae2020-07-14 13:26:06 +02003211 bufused += sprintf(buffer + bufused, "/%s%s%s", mod ? mod->name : "", mod ? ":" : "",
Michal Vaskoad92b672020-11-12 13:11:31 +01003212 iter->schema ? iter->schema->name : ((struct lyd_node_opaq *)iter)->name.name);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003213
Michal Vasko790b2bc2020-08-03 13:35:06 +02003214 /* do not always print the last (first) predicate */
Radek Krejci635d2b82021-01-04 11:26:51 +01003215 if (iter->schema && ((depth > 1) || (pathtype == LYD_PATH_STD))) {
Michal Vasko790b2bc2020-08-03 13:35:06 +02003216 switch (iter->schema->nodetype) {
3217 case LYS_LIST:
3218 if (iter->schema->flags & LYS_KEYLESS) {
3219 /* print its position */
3220 rc = lyd_path_position_predicate(iter, &buffer, &buflen, &bufused, is_static);
3221 } else {
3222 /* print all list keys in predicates */
3223 rc = lyd_path_list_predicate(iter, &buffer, &buflen, &bufused, is_static);
3224 }
3225 break;
3226 case LYS_LEAFLIST:
3227 if (iter->schema->flags & LYS_CONFIG_W) {
3228 /* print leaf-list value */
3229 rc = lyd_path_leaflist_predicate(iter, &buffer, &buflen, &bufused, is_static);
3230 } else {
3231 /* print its position */
3232 rc = lyd_path_position_predicate(iter, &buffer, &buflen, &bufused, is_static);
3233 }
3234 break;
3235 default:
3236 /* nothing to print more */
3237 break;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003238 }
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003239 }
3240 if (rc != LY_SUCCESS) {
3241 break;
3242 }
3243
Michal Vasko14654712020-02-06 08:35:21 +01003244 --depth;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003245 }
3246 break;
3247 }
3248
3249 return buffer;
3250}
Michal Vaskoe444f752020-02-10 12:20:06 +01003251
Michal Vasko25a32822020-07-09 15:48:22 +02003252API struct lyd_meta *
3253lyd_find_meta(const struct lyd_meta *first, const struct lys_module *module, const char *name)
3254{
3255 struct lyd_meta *ret = NULL;
3256 const struct ly_ctx *ctx;
3257 const char *prefix, *tmp;
3258 char *str;
3259 size_t pref_len, name_len;
3260
3261 LY_CHECK_ARG_RET(NULL, module || strchr(name, ':'), name, NULL);
3262
3263 if (!first) {
3264 return NULL;
3265 }
3266
3267 ctx = first->annotation->module->ctx;
3268
3269 /* parse the name */
3270 tmp = name;
3271 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
3272 LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name);
3273 return NULL;
3274 }
3275
3276 /* find the module */
3277 if (prefix) {
3278 str = strndup(prefix, pref_len);
3279 module = ly_ctx_get_module_latest(ctx, str);
3280 free(str);
3281 LY_CHECK_ERR_RET(!module, LOGERR(ctx, LY_EINVAL, "Module \"%.*s\" not found.", pref_len, prefix), NULL);
3282 }
3283
3284 /* find the metadata */
3285 LY_LIST_FOR(first, first) {
3286 if ((first->annotation->module == module) && !strcmp(first->name, name)) {
3287 ret = (struct lyd_meta *)first;
3288 break;
3289 }
3290 }
3291
3292 return ret;
3293}
3294
Michal Vasko9b368d32020-02-14 13:53:31 +01003295API LY_ERR
Michal Vaskoe444f752020-02-10 12:20:06 +01003296lyd_find_sibling_first(const struct lyd_node *siblings, const struct lyd_node *target, struct lyd_node **match)
3297{
3298 struct lyd_node **match_p;
3299 struct lyd_node_inner *parent;
3300
Michal Vaskof03ed032020-03-04 13:31:44 +01003301 LY_CHECK_ARG_RET(NULL, target, LY_EINVAL);
Michal Vaskoe444f752020-02-10 12:20:06 +01003302
Michal Vasko6da1e952020-12-09 18:14:38 +01003303 if (!siblings || (siblings->schema && target->schema &&
3304 (lysc_data_parent(siblings->schema) != lysc_data_parent(target->schema)))) {
Michal Vasko62ed12d2020-05-21 10:08:25 +02003305 /* no data or schema mismatch */
Michal Vasko9b368d32020-02-14 13:53:31 +01003306 if (match) {
3307 *match = NULL;
3308 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003309 return LY_ENOTFOUND;
3310 }
3311
3312 /* find first sibling */
3313 if (siblings->parent) {
3314 siblings = siblings->parent->child;
3315 } else {
3316 while (siblings->prev->next) {
3317 siblings = siblings->prev;
3318 }
3319 }
3320
3321 parent = (struct lyd_node_inner *)siblings->parent;
Michal Vasko6da1e952020-12-09 18:14:38 +01003322 if (parent && parent->schema && parent->children_ht) {
Michal Vaskoe444f752020-02-10 12:20:06 +01003323 assert(target->hash);
3324
3325 /* find by hash */
3326 if (!lyht_find(parent->children_ht, &target, target->hash, (void **)&match_p)) {
Michal Vaskoda859032020-07-14 12:20:14 +02003327 /* check even value when needed */
Michal Vasko8f359bf2020-07-28 10:41:15 +02003328 if (!(target->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !lyd_compare_single(target, *match_p, 0)) {
Michal Vaskoda859032020-07-14 12:20:14 +02003329 siblings = *match_p;
3330 } else {
3331 siblings = NULL;
3332 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003333 } else {
3334 /* not found */
3335 siblings = NULL;
3336 }
3337 } else {
3338 /* no children hash table */
Michal Vaskod989ba02020-08-24 10:59:24 +02003339 for ( ; siblings; siblings = siblings->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02003340 if (!lyd_compare_single(siblings, target, 0)) {
Michal Vaskoe444f752020-02-10 12:20:06 +01003341 break;
3342 }
3343 }
3344 }
3345
3346 if (!siblings) {
Michal Vasko9b368d32020-02-14 13:53:31 +01003347 if (match) {
3348 *match = NULL;
3349 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003350 return LY_ENOTFOUND;
3351 }
3352
Michal Vasko9b368d32020-02-14 13:53:31 +01003353 if (match) {
3354 *match = (struct lyd_node *)siblings;
3355 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003356 return LY_SUCCESS;
3357}
3358
Radek Krejci857189e2020-09-01 13:26:36 +02003359/**
3360 * @brief Comparison callback to match schema node with a schema of a data node.
3361 *
3362 * @param[in] val1_p Pointer to the schema node
3363 * @param[in] val2_p Pointer to the data node
3364 * Implementation of ::values_equal_cb.
3365 */
3366static ly_bool
3367lyd_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 +01003368{
3369 struct lysc_node *val1;
3370 struct lyd_node *val2;
3371
3372 val1 = *((struct lysc_node **)val1_p);
3373 val2 = *((struct lyd_node **)val2_p);
3374
Michal Vasko90932a92020-02-12 14:33:03 +01003375 if (val1 == val2->schema) {
3376 /* schema match is enough */
3377 return 1;
3378 } else {
3379 return 0;
3380 }
3381}
3382
Michal Vasko92239c72020-11-18 18:17:25 +01003383/**
3384 * @brief Search in the given siblings (NOT recursively) for the first schema node data instance.
3385 * Uses hashes - should be used whenever possible for best performance.
3386 *
3387 * @param[in] siblings Siblings to search in including preceding and succeeding nodes.
3388 * @param[in] schema Target data node schema to find.
3389 * @param[out] match Can be NULL, otherwise the found data node.
3390 * @return LY_SUCCESS on success, @p match set.
3391 * @return LY_ENOTFOUND if not found, @p match set to NULL.
3392 * @return LY_ERR value if another error occurred.
3393 */
Michal Vasko90932a92020-02-12 14:33:03 +01003394static LY_ERR
3395lyd_find_sibling_schema(const struct lyd_node *siblings, const struct lysc_node *schema, struct lyd_node **match)
3396{
3397 struct lyd_node **match_p;
3398 struct lyd_node_inner *parent;
3399 uint32_t hash;
3400 values_equal_cb ht_cb;
3401
Michal Vaskob104f112020-07-17 09:54:54 +02003402 assert(siblings && schema);
Michal Vasko90932a92020-02-12 14:33:03 +01003403
3404 parent = (struct lyd_node_inner *)siblings->parent;
Michal Vasko08fd6132020-11-18 18:17:45 +01003405 if (parent && parent->schema && parent->children_ht) {
Michal Vasko90932a92020-02-12 14:33:03 +01003406 /* calculate our hash */
3407 hash = dict_hash_multi(0, schema->module->name, strlen(schema->module->name));
3408 hash = dict_hash_multi(hash, schema->name, strlen(schema->name));
3409 hash = dict_hash_multi(hash, NULL, 0);
3410
3411 /* use special hash table function */
3412 ht_cb = lyht_set_cb(parent->children_ht, lyd_hash_table_schema_val_equal);
3413
3414 /* find by hash */
3415 if (!lyht_find(parent->children_ht, &schema, hash, (void **)&match_p)) {
3416 siblings = *match_p;
3417 } else {
3418 /* not found */
3419 siblings = NULL;
3420 }
3421
3422 /* set the original hash table compare function back */
3423 lyht_set_cb(parent->children_ht, ht_cb);
3424 } else {
Michal Vaskob104f112020-07-17 09:54:54 +02003425 /* find first sibling */
3426 if (siblings->parent) {
3427 siblings = siblings->parent->child;
3428 } else {
3429 while (siblings->prev->next) {
3430 siblings = siblings->prev;
3431 }
3432 }
3433
3434 /* search manually without hashes */
Michal Vaskod989ba02020-08-24 10:59:24 +02003435 for ( ; siblings; siblings = siblings->next) {
Michal Vasko90932a92020-02-12 14:33:03 +01003436 if (siblings->schema == schema) {
3437 /* schema match is enough */
3438 break;
3439 }
3440 }
3441 }
3442
3443 if (!siblings) {
Michal Vasko9b368d32020-02-14 13:53:31 +01003444 if (match) {
3445 *match = NULL;
3446 }
Michal Vasko90932a92020-02-12 14:33:03 +01003447 return LY_ENOTFOUND;
3448 }
3449
Michal Vasko9b368d32020-02-14 13:53:31 +01003450 if (match) {
3451 *match = (struct lyd_node *)siblings;
3452 }
Michal Vasko90932a92020-02-12 14:33:03 +01003453 return LY_SUCCESS;
3454}
3455
Michal Vaskoe444f752020-02-10 12:20:06 +01003456API LY_ERR
3457lyd_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 +02003458 size_t val_len, struct lyd_node **match)
Michal Vaskoe444f752020-02-10 12:20:06 +01003459{
3460 LY_ERR rc;
3461 struct lyd_node *target = NULL;
3462
Michal Vasko4c583e82020-07-17 12:16:14 +02003463 LY_CHECK_ARG_RET(NULL, schema, !(schema->nodetype & (LYS_CHOICE | LYS_CASE)), LY_EINVAL);
Michal Vaskoe444f752020-02-10 12:20:06 +01003464
Michal Vasko08fd6132020-11-18 18:17:45 +01003465 if (!siblings || (siblings->schema && (lysc_data_parent(siblings->schema) != lysc_data_parent(schema)))) {
Michal Vasko62ed12d2020-05-21 10:08:25 +02003466 /* no data or schema mismatch */
Michal Vasko9b368d32020-02-14 13:53:31 +01003467 if (match) {
3468 *match = NULL;
3469 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003470 return LY_ENOTFOUND;
3471 }
3472
Michal Vaskof03ed032020-03-04 13:31:44 +01003473 if (key_or_value && !val_len) {
3474 val_len = strlen(key_or_value);
3475 }
3476
Michal Vaskob104f112020-07-17 09:54:54 +02003477 if ((schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) && key_or_value) {
3478 /* create a data node and find the instance */
3479 if (schema->nodetype == LYS_LEAFLIST) {
3480 /* target used attributes: schema, hash, value */
Michal Vaskofeca4fb2020-10-05 08:58:40 +02003481 rc = lyd_create_term(schema, key_or_value, val_len, NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, NULL, &target);
3482 LY_CHECK_RET(rc);
Michal Vaskob104f112020-07-17 09:54:54 +02003483 } else {
Michal Vasko90932a92020-02-12 14:33:03 +01003484 /* target used attributes: schema, hash, child (all keys) */
Michal Vasko004d3152020-06-11 19:59:22 +02003485 LY_CHECK_RET(lyd_create_list2(schema, key_or_value, val_len, &target));
Michal Vasko90932a92020-02-12 14:33:03 +01003486 }
3487
3488 /* find it */
3489 rc = lyd_find_sibling_first(siblings, target, match);
Michal Vaskob104f112020-07-17 09:54:54 +02003490 } else {
3491 /* find the first schema node instance */
3492 rc = lyd_find_sibling_schema(siblings, schema, match);
Michal Vaskoe444f752020-02-10 12:20:06 +01003493 }
3494
Michal Vaskoe444f752020-02-10 12:20:06 +01003495 lyd_free_tree(target);
3496 return rc;
3497}
Michal Vaskoccc02342020-05-21 10:09:21 +02003498
3499API LY_ERR
3500lyd_find_xpath(const struct lyd_node *ctx_node, const char *xpath, struct ly_set **set)
3501{
3502 LY_ERR ret = LY_SUCCESS;
3503 struct lyxp_set xp_set;
Radek Krejcif03a9e22020-09-18 20:09:31 +02003504 struct lyxp_expr *exp = NULL;
Michal Vaskoccc02342020-05-21 10:09:21 +02003505 uint32_t i;
3506
3507 LY_CHECK_ARG_RET(NULL, ctx_node, xpath, set, LY_EINVAL);
3508
3509 memset(&xp_set, 0, sizeof xp_set);
3510
3511 /* compile expression */
Radek Krejcif03a9e22020-09-18 20:09:31 +02003512 ret = lyxp_expr_parse((struct ly_ctx *)LYD_CTX(ctx_node), xpath, 0, 1, &exp);
3513 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003514
3515 /* evaluate expression */
Michal Vasko400e9672021-01-11 13:39:17 +01003516 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 +02003517 LY_CHECK_GOTO(ret, cleanup);
3518
3519 /* allocate return set */
Radek Krejciba03a5a2020-08-27 14:40:41 +02003520 ret = ly_set_new(set);
3521 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003522
3523 /* transform into ly_set */
3524 if (xp_set.type == LYXP_SET_NODE_SET) {
3525 /* allocate memory for all the elements once (even though not all items must be elements but most likely will be) */
3526 (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs);
Michal Vaskob7be7a82020-08-20 09:09:04 +02003527 LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(LYD_CTX(ctx_node)); ret = LY_EMEM, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003528 (*set)->size = xp_set.used;
3529
3530 for (i = 0; i < xp_set.used; ++i) {
3531 if (xp_set.val.nodes[i].type == LYXP_NODE_ELEM) {
Radek Krejci3d92e442020-10-12 12:48:13 +02003532 ret = ly_set_add(*set, xp_set.val.nodes[i].node, 1, NULL);
Radek Krejciba03a5a2020-08-27 14:40:41 +02003533 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003534 }
3535 }
3536 }
3537
3538cleanup:
Michal Vasko0691d522020-05-21 13:21:47 +02003539 lyxp_set_free_content(&xp_set);
Michal Vaskob7be7a82020-08-20 09:09:04 +02003540 lyxp_expr_free((struct ly_ctx *)LYD_CTX(ctx_node), exp);
Radek Krejci8f45abc2020-11-26 12:15:13 +01003541 if (ret) {
3542 ly_set_free(*set, NULL);
3543 *set = NULL;
3544 }
Michal Vaskoccc02342020-05-21 10:09:21 +02003545 return ret;
3546}
Radek Krejcica989142020-11-05 11:32:22 +01003547
3548API uint32_t
3549lyd_list_pos(const struct lyd_node *instance)
3550{
3551 const struct lyd_node *iter = NULL;
3552 uint32_t pos = 0;
3553
3554 if (!instance || !(instance->schema->nodetype & (LYS_LIST | LYS_LEAFLIST))) {
3555 return 0;
3556 }
3557
3558 /* data instances are ordered, so we can stop when we found instance of other schema node */
3559 for (iter = instance; iter->schema == instance->schema; iter = iter->prev) {
Radek Krejcibb27df32020-11-13 15:39:16 +01003560 if (pos && (iter->next == NULL)) {
Radek Krejcica989142020-11-05 11:32:22 +01003561 /* overrun to the end of the siblings list */
3562 break;
3563 }
3564 ++pos;
3565 }
3566
3567 return pos;
3568}
Radek Krejci4233f9b2020-11-05 12:38:35 +01003569
3570API struct lyd_node *
3571lyd_first_sibling(const struct lyd_node *node)
3572{
3573 struct lyd_node *start;
3574
3575 if (!node) {
3576 return NULL;
3577 }
3578
3579 /* get the first sibling */
3580 if (node->parent) {
3581 start = node->parent->child;
3582 } else {
Radek Krejcibb27df32020-11-13 15:39:16 +01003583 for (start = (struct lyd_node *)node; start->prev->next; start = start->prev) {}
Radek Krejci4233f9b2020-11-05 12:38:35 +01003584 }
3585
3586 return start;
3587}