blob: ca6b2e3a72a2500dc6dbaaeb687b4f883fd0eae3 [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 Vaskod1e53b92021-01-28 13:11:06 +01001488 const struct lysc_node *iter = NULL;
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 getnext_opts = LYS_GETNEXT_WITHCHOICE;
1501 if (impl_opts & LYD_IMPLICIT_OUTPUT) {
1502 getnext_opts |= LYS_GETNEXT_OUTPUT;
1503 }
1504
1505 while ((iter = lys_getnext(iter, sparent, mod ? mod->compiled : NULL, getnext_opts))) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001506 if ((impl_opts & LYD_IMPLICIT_NO_STATE) && (iter->flags & LYS_CONFIG_R)) {
1507 continue;
Michal Vasko44b19a12020-08-07 09:21:30 +02001508 } else if ((impl_opts & LYD_IMPLICIT_NO_CONFIG) && (iter->flags & LYS_CONFIG_W)) {
1509 continue;
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001510 }
1511
1512 switch (iter->nodetype) {
1513 case LYS_CHOICE:
Michal Vaskobcf4d7d2020-11-18 18:16:49 +01001514 node = lys_getnext_data(NULL, *first, NULL, iter, NULL);
1515 if (!node && ((struct lysc_node_choice *)iter)->dflt) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001516 /* create default case data */
Michal Vasko14ed9cd2021-01-28 14:16:25 +01001517 LY_CHECK_RET(lyd_new_implicit_r(parent, first, &((struct lysc_node_choice *)iter)->dflt->node,
Michal Vasko69730152020-10-09 16:30:07 +02001518 NULL, node_types, node_when, impl_opts, diff));
Michal Vaskobcf4d7d2020-11-18 18:16:49 +01001519 } else if (node) {
1520 /* create any default data in the existing case */
1521 assert(node->schema->parent->nodetype == LYS_CASE);
1522 LY_CHECK_RET(lyd_new_implicit_r(parent, first, node->schema->parent, NULL, node_types, node_when,
1523 impl_opts, diff));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001524 }
1525 break;
1526 case LYS_CONTAINER:
1527 if (!(iter->flags & LYS_PRESENCE) && lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
1528 /* create default NP container */
1529 LY_CHECK_RET(lyd_create_inner(iter, &node));
Radek Krejci9a3823e2021-01-27 20:26:46 +01001530 node->flags = LYD_DEFAULT | (lysc_node_when(node->schema) ? LYD_WHEN_TRUE : 0);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001531 lyd_insert_node(parent, first, node);
1532
1533 /* cannot be a NP container with when */
Radek Krejci9a3823e2021-01-27 20:26:46 +01001534 assert(!lysc_node_when(iter));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001535
Michal Vaskoe49b6322020-11-05 17:38:36 +01001536 if (diff) {
1537 /* add into diff */
1538 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff));
1539 }
1540
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001541 /* create any default children */
1542 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 +02001543 impl_opts, diff));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001544 }
1545 break;
1546 case LYS_LEAF:
Michal Vasko69730152020-10-09 16:30:07 +02001547 if (!(impl_opts & LYD_IMPLICIT_NO_DEFAULTS) && ((struct lysc_node_leaf *)iter)->dflt &&
1548 lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001549 /* create default leaf */
1550 ret = lyd_create_term2(iter, ((struct lysc_node_leaf *)iter)->dflt, &node);
1551 if (ret == LY_EINCOMPLETE) {
1552 if (node_types) {
1553 /* remember to resolve type */
Radek Krejci3d92e442020-10-12 12:48:13 +02001554 LY_CHECK_RET(ly_set_add(node_types, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001555 }
1556 } else if (ret) {
1557 return ret;
1558 }
Radek Krejci9a3823e2021-01-27 20:26:46 +01001559 node->flags = LYD_DEFAULT | (lysc_node_when(node->schema) ? LYD_WHEN_TRUE : 0);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001560 lyd_insert_node(parent, first, node);
1561
Radek Krejci9a3823e2021-01-27 20:26:46 +01001562 if (lysc_node_when(iter) && node_when) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001563 /* remember to resolve when */
Radek Krejci3d92e442020-10-12 12:48:13 +02001564 LY_CHECK_RET(ly_set_add(node_when, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001565 }
1566 if (diff) {
1567 /* add into diff */
1568 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff));
1569 }
1570 }
1571 break;
1572 case LYS_LEAFLIST:
Michal Vasko69730152020-10-09 16:30:07 +02001573 if (!(impl_opts & LYD_IMPLICIT_NO_DEFAULTS) && ((struct lysc_node_leaflist *)iter)->dflts &&
1574 lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001575 /* create all default leaf-lists */
1576 dflts = ((struct lysc_node_leaflist *)iter)->dflts;
1577 LY_ARRAY_FOR(dflts, u) {
1578 ret = lyd_create_term2(iter, dflts[u], &node);
1579 if (ret == LY_EINCOMPLETE) {
1580 if (node_types) {
1581 /* remember to resolve type */
Radek Krejci3d92e442020-10-12 12:48:13 +02001582 LY_CHECK_RET(ly_set_add(node_types, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001583 }
1584 } else if (ret) {
1585 return ret;
1586 }
Radek Krejci9a3823e2021-01-27 20:26:46 +01001587 node->flags = LYD_DEFAULT | (lysc_node_when(node->schema) ? LYD_WHEN_TRUE : 0);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001588 lyd_insert_node(parent, first, node);
1589
Radek Krejci9a3823e2021-01-27 20:26:46 +01001590 if (lysc_node_when(iter) && node_when) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001591 /* remember to resolve when */
Radek Krejci3d92e442020-10-12 12:48:13 +02001592 LY_CHECK_RET(ly_set_add(node_when, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001593 }
1594 if (diff) {
1595 /* add into diff */
1596 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff));
1597 }
1598 }
1599 }
1600 break;
1601 default:
1602 /* without defaults */
1603 break;
1604 }
1605 }
1606
1607 return LY_SUCCESS;
1608}
1609
1610API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001611lyd_new_implicit_tree(struct lyd_node *tree, uint32_t implicit_options, struct lyd_node **diff)
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001612{
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001613 LY_ERR ret = LY_SUCCESS;
Michal Vasko3488ada2020-12-03 14:18:19 +01001614 struct lyd_node *node;
1615 struct ly_set node_when = {0};
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001616
1617 LY_CHECK_ARG_RET(NULL, tree, LY_EINVAL);
1618 if (diff) {
1619 *diff = NULL;
1620 }
1621
Michal Vasko56daf732020-08-10 10:57:18 +02001622 LYD_TREE_DFS_BEGIN(tree, node) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001623 /* skip added default nodes */
Michal Vasko69730152020-10-09 16:30:07 +02001624 if (((node->flags & (LYD_DEFAULT | LYD_NEW)) != (LYD_DEFAULT | LYD_NEW)) &&
1625 (node->schema->nodetype & LYD_NODE_INNER)) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001626 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 +01001627 &node_when, implicit_options, diff), cleanup);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001628 }
1629
Michal Vasko56daf732020-08-10 10:57:18 +02001630 LYD_TREE_DFS_END(tree, node);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001631 }
1632
Michal Vasko3488ada2020-12-03 14:18:19 +01001633 /* resolve when and remove any invalid defaults */
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001634 LY_CHECK_GOTO(ret = lyd_validate_unres(&tree, NULL, &node_when, NULL, NULL, diff), cleanup);
Michal Vasko3488ada2020-12-03 14:18:19 +01001635
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001636cleanup:
Michal Vasko3488ada2020-12-03 14:18:19 +01001637 ly_set_erase(&node_when, NULL);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001638 if (ret && diff) {
1639 lyd_free_all(*diff);
1640 *diff = NULL;
1641 }
1642 return ret;
1643}
1644
1645API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001646lyd_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 +02001647{
1648 const struct lys_module *mod;
1649 struct lyd_node *d = NULL;
1650 uint32_t i = 0;
1651 LY_ERR ret = LY_SUCCESS;
1652
1653 LY_CHECK_ARG_RET(ctx, tree, *tree || ctx, LY_EINVAL);
1654 if (diff) {
1655 *diff = NULL;
1656 }
1657 if (!ctx) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001658 ctx = LYD_CTX(*tree);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001659 }
1660
1661 /* add nodes for each module one-by-one */
1662 while ((mod = ly_ctx_get_module_iter(ctx, &i))) {
1663 if (!mod->implemented) {
1664 continue;
1665 }
1666
1667 LY_CHECK_GOTO(ret = lyd_new_implicit_module(tree, mod, implicit_options, diff ? &d : NULL), cleanup);
1668 if (d) {
1669 /* merge into one diff */
1670 lyd_insert_sibling(*diff, d, diff);
1671
1672 d = NULL;
1673 }
1674 }
1675
1676cleanup:
1677 if (ret && diff) {
1678 lyd_free_all(*diff);
1679 *diff = NULL;
1680 }
1681 return ret;
1682}
1683
1684API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001685lyd_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 +02001686{
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001687 LY_ERR ret = LY_SUCCESS;
Michal Vasko3488ada2020-12-03 14:18:19 +01001688 struct lyd_node *root, *d = NULL;
1689 struct ly_set node_when = {0};
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001690
1691 LY_CHECK_ARG_RET(NULL, tree, module, LY_EINVAL);
1692 if (diff) {
1693 *diff = NULL;
1694 }
1695
1696 /* add all top-level defaults for this module */
Michal Vasko3488ada2020-12-03 14:18:19 +01001697 LY_CHECK_GOTO(ret = lyd_new_implicit_r(NULL, tree, NULL, module, NULL, &node_when, implicit_options, diff), cleanup);
1698
1699 /* resolve when and remove any invalid defaults */
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001700 LY_CHECK_GOTO(ret = lyd_validate_unres(tree, module, &node_when, NULL, NULL, diff), cleanup);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001701
1702 /* process nested nodes */
1703 LY_LIST_FOR(*tree, root) {
1704 /* skip added default nodes */
1705 if ((root->flags & (LYD_DEFAULT | LYD_NEW)) != (LYD_DEFAULT | LYD_NEW)) {
1706 LY_CHECK_GOTO(ret = lyd_new_implicit_tree(root, implicit_options, diff ? &d : NULL), cleanup);
1707
1708 if (d) {
1709 /* merge into one diff */
1710 lyd_insert_sibling(*diff, d, diff);
1711
1712 d = NULL;
1713 }
1714 }
1715 }
1716
1717cleanup:
Michal Vasko3488ada2020-12-03 14:18:19 +01001718 ly_set_erase(&node_when, NULL);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001719 if (ret && diff) {
1720 lyd_free_all(*diff);
1721 *diff = NULL;
1722 }
1723 return ret;
1724}
1725
Michal Vasko90932a92020-02-12 14:33:03 +01001726struct lyd_node *
Michal Vaskob104f112020-07-17 09:54:54 +02001727lyd_insert_get_next_anchor(const struct lyd_node *first_sibling, const struct lyd_node *new_node)
Michal Vasko90932a92020-02-12 14:33:03 +01001728{
Michal Vaskob104f112020-07-17 09:54:54 +02001729 const struct lysc_node *schema, *sparent;
Michal Vasko90932a92020-02-12 14:33:03 +01001730 struct lyd_node *match = NULL;
Radek Krejci857189e2020-09-01 13:26:36 +02001731 ly_bool found;
Michal Vasko93b16062020-12-09 18:14:18 +01001732 uint32_t getnext_opts;
Michal Vasko90932a92020-02-12 14:33:03 +01001733
Michal Vaskob104f112020-07-17 09:54:54 +02001734 assert(new_node);
1735
1736 if (!first_sibling || !new_node->schema) {
1737 /* insert at the end, no next anchor */
Michal Vasko90932a92020-02-12 14:33:03 +01001738 return NULL;
1739 }
1740
Michal Vasko93b16062020-12-09 18:14:18 +01001741 getnext_opts = 0;
Michal Vaskod1e53b92021-01-28 13:11:06 +01001742 if (new_node->schema->flags & LYS_IS_OUTPUT) {
Michal Vasko93b16062020-12-09 18:14:18 +01001743 getnext_opts = LYS_GETNEXT_OUTPUT;
1744 }
1745
Michal Vaskob104f112020-07-17 09:54:54 +02001746 if (first_sibling->parent && first_sibling->parent->children_ht) {
1747 /* find the anchor using hashes */
1748 sparent = first_sibling->parent->schema;
Michal Vasko93b16062020-12-09 18:14:18 +01001749 schema = lys_getnext(new_node->schema, sparent, NULL, getnext_opts);
Michal Vaskob104f112020-07-17 09:54:54 +02001750 while (schema) {
1751 /* keep trying to find the first existing instance of the closest following schema sibling,
1752 * otherwise return NULL - inserting at the end */
1753 if (!lyd_find_sibling_schema(first_sibling, schema, &match)) {
1754 break;
1755 }
1756
Michal Vasko93b16062020-12-09 18:14:18 +01001757 schema = lys_getnext(schema, sparent, NULL, getnext_opts);
Michal Vaskob104f112020-07-17 09:54:54 +02001758 }
1759 } else {
1760 /* find the anchor without hashes */
1761 match = (struct lyd_node *)first_sibling;
1762 if (!lysc_data_parent(new_node->schema)) {
1763 /* we are in top-level, skip all the data from preceding modules */
1764 LY_LIST_FOR(match, match) {
1765 if (!match->schema || (strcmp(lyd_owner_module(match)->name, lyd_owner_module(new_node)->name) >= 0)) {
1766 break;
1767 }
1768 }
1769 }
1770
1771 /* get the first schema sibling */
1772 sparent = lysc_data_parent(new_node->schema);
Michal Vasko93b16062020-12-09 18:14:18 +01001773 schema = lys_getnext(NULL, sparent, new_node->schema->module->compiled, getnext_opts);
Michal Vaskob104f112020-07-17 09:54:54 +02001774
1775 found = 0;
1776 LY_LIST_FOR(match, match) {
1777 if (!match->schema || (lyd_owner_module(match) != lyd_owner_module(new_node))) {
1778 /* we have found an opaque node, which must be at the end, so use it OR
1779 * modules do not match, so we must have traversed all the data from new_node module (if any),
1780 * we have found the first node of the next module, that is what we want */
1781 break;
1782 }
1783
1784 /* skip schema nodes until we find the instantiated one */
1785 while (!found) {
1786 if (new_node->schema == schema) {
1787 /* we have found the schema of the new node, continue search to find the first
1788 * data node with a different schema (after our schema) */
1789 found = 1;
1790 break;
1791 }
1792 if (match->schema == schema) {
1793 /* current node (match) is a data node still before the new node, continue search in data */
1794 break;
1795 }
Michal Vasko93b16062020-12-09 18:14:18 +01001796 schema = lys_getnext(schema, sparent, new_node->schema->module->compiled, getnext_opts);
Michal Vaskob104f112020-07-17 09:54:54 +02001797 assert(schema);
1798 }
1799
1800 if (found && (match->schema != new_node->schema)) {
1801 /* find the next node after we have found our node schema data instance */
1802 break;
1803 }
1804 }
Michal Vasko90932a92020-02-12 14:33:03 +01001805 }
1806
1807 return match;
1808}
1809
1810/**
1811 * @brief Insert node after a sibling.
1812 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001813 * Handles inserting into NP containers and key-less lists.
1814 *
Michal Vasko90932a92020-02-12 14:33:03 +01001815 * @param[in] sibling Sibling to insert after.
1816 * @param[in] node Node to insert.
1817 */
1818static void
Michal Vaskof03ed032020-03-04 13:31:44 +01001819lyd_insert_after_node(struct lyd_node *sibling, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001820{
Michal Vasko0249f7c2020-03-05 16:36:40 +01001821 struct lyd_node_inner *par;
1822
Michal Vasko90932a92020-02-12 14:33:03 +01001823 assert(!node->next && (node->prev == node));
1824
1825 node->next = sibling->next;
1826 node->prev = sibling;
1827 sibling->next = node;
1828 if (node->next) {
1829 /* sibling had a succeeding node */
1830 node->next->prev = node;
1831 } else {
1832 /* sibling was last, find first sibling and change its prev */
1833 if (sibling->parent) {
1834 sibling = sibling->parent->child;
1835 } else {
Michal Vaskod989ba02020-08-24 10:59:24 +02001836 for ( ; sibling->prev->next != node; sibling = sibling->prev) {}
Michal Vasko90932a92020-02-12 14:33:03 +01001837 }
1838 sibling->prev = node;
1839 }
1840 node->parent = sibling->parent;
Michal Vasko0249f7c2020-03-05 16:36:40 +01001841
Michal Vasko9f96a052020-03-10 09:41:45 +01001842 for (par = node->parent; par; par = par->parent) {
1843 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
1844 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01001845 par->flags &= ~LYD_DEFAULT;
1846 }
Michal Vaskob104f112020-07-17 09:54:54 +02001847 if (par->schema && (par->schema->nodetype == LYS_LIST) && (par->schema->flags & LYS_KEYLESS)) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001848 /* rehash key-less list */
1849 lyd_hash((struct lyd_node *)par);
1850 }
Michal Vasko0249f7c2020-03-05 16:36:40 +01001851 }
Michal Vasko90932a92020-02-12 14:33:03 +01001852}
1853
1854/**
1855 * @brief Insert node before a sibling.
1856 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001857 * Handles inserting into NP containers and key-less lists.
1858 *
Michal Vasko90932a92020-02-12 14:33:03 +01001859 * @param[in] sibling Sibling to insert before.
1860 * @param[in] node Node to insert.
1861 */
1862static void
Michal Vaskof03ed032020-03-04 13:31:44 +01001863lyd_insert_before_node(struct lyd_node *sibling, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001864{
Michal Vasko0249f7c2020-03-05 16:36:40 +01001865 struct lyd_node_inner *par;
1866
Michal Vasko90932a92020-02-12 14:33:03 +01001867 assert(!node->next && (node->prev == node));
1868
1869 node->next = sibling;
1870 /* covers situation of sibling being first */
1871 node->prev = sibling->prev;
1872 sibling->prev = node;
1873 if (node->prev->next) {
1874 /* sibling had a preceding node */
1875 node->prev->next = node;
1876 } else if (sibling->parent) {
1877 /* sibling was first and we must also change parent child pointer */
1878 sibling->parent->child = node;
1879 }
1880 node->parent = sibling->parent;
Michal Vasko0249f7c2020-03-05 16:36:40 +01001881
Michal Vasko9f96a052020-03-10 09:41:45 +01001882 for (par = node->parent; par; par = par->parent) {
1883 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
1884 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01001885 par->flags &= ~LYD_DEFAULT;
1886 }
Michal Vaskob104f112020-07-17 09:54:54 +02001887 if (par->schema && (par->schema->nodetype == LYS_LIST) && (par->schema->flags & LYS_KEYLESS)) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001888 /* rehash key-less list */
1889 lyd_hash((struct lyd_node *)par);
1890 }
Michal Vasko0249f7c2020-03-05 16:36:40 +01001891 }
Michal Vasko90932a92020-02-12 14:33:03 +01001892}
1893
1894/**
Michal Vaskob104f112020-07-17 09:54:54 +02001895 * @brief Insert node as the first and only child of a parent.
Michal Vasko90932a92020-02-12 14:33:03 +01001896 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001897 * Handles inserting into NP containers and key-less lists.
1898 *
Michal Vasko90932a92020-02-12 14:33:03 +01001899 * @param[in] parent Parent to insert into.
1900 * @param[in] node Node to insert.
1901 */
1902static void
Michal Vaskob104f112020-07-17 09:54:54 +02001903lyd_insert_only_child(struct lyd_node *parent, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001904{
1905 struct lyd_node_inner *par;
1906
Radek Krejcia1c1e542020-09-29 16:06:52 +02001907 assert(parent && !lyd_child(parent) && !node->next && (node->prev == node));
Michal Vasko52927e22020-03-16 17:26:14 +01001908 assert(!parent->schema || (parent->schema->nodetype & LYD_NODE_INNER));
Michal Vasko90932a92020-02-12 14:33:03 +01001909
1910 par = (struct lyd_node_inner *)parent;
1911
Michal Vaskob104f112020-07-17 09:54:54 +02001912 par->child = node;
Michal Vasko90932a92020-02-12 14:33:03 +01001913 node->parent = par;
Michal Vasko0249f7c2020-03-05 16:36:40 +01001914
Michal Vaskod989ba02020-08-24 10:59:24 +02001915 for ( ; par; par = par->parent) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001916 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
1917 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01001918 par->flags &= ~LYD_DEFAULT;
1919 }
Michal Vasko52927e22020-03-16 17:26:14 +01001920 if (par->schema && (par->schema->nodetype == LYS_LIST) && (par->schema->flags & LYS_KEYLESS)) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001921 /* rehash key-less list */
1922 lyd_hash((struct lyd_node *)par);
1923 }
Michal Vasko0249f7c2020-03-05 16:36:40 +01001924 }
Michal Vasko751cb4d2020-07-14 12:25:28 +02001925}
Michal Vasko0249f7c2020-03-05 16:36:40 +01001926
Michal Vasko751cb4d2020-07-14 12:25:28 +02001927/**
1928 * @brief Learn whether a list instance has all the keys.
1929 *
1930 * @param[in] list List instance to check.
1931 * @return non-zero if all the keys were found,
1932 * @return 0 otherwise.
1933 */
1934static int
1935lyd_insert_has_keys(const struct lyd_node *list)
1936{
1937 const struct lyd_node *key;
1938 const struct lysc_node *skey = NULL;
1939
1940 assert(list->schema->nodetype == LYS_LIST);
Radek Krejcia1c1e542020-09-29 16:06:52 +02001941 key = lyd_child(list);
Michal Vasko751cb4d2020-07-14 12:25:28 +02001942 while ((skey = lys_getnext(skey, list->schema, NULL, 0)) && (skey->flags & LYS_KEY)) {
1943 if (!key || (key->schema != skey)) {
1944 /* key missing */
1945 return 0;
1946 }
1947
1948 key = key->next;
1949 }
1950
1951 /* all keys found */
1952 return 1;
Michal Vasko90932a92020-02-12 14:33:03 +01001953}
1954
1955void
Michal Vaskob104f112020-07-17 09:54:54 +02001956lyd_insert_node(struct lyd_node *parent, struct lyd_node **first_sibling_p, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01001957{
Michal Vaskob104f112020-07-17 09:54:54 +02001958 struct lyd_node *anchor, *first_sibling;
Michal Vasko90932a92020-02-12 14:33:03 +01001959
Michal Vaskob104f112020-07-17 09:54:54 +02001960 /* inserting list without its keys is not supported */
1961 assert((parent || first_sibling_p) && node && (node->hash || !node->schema));
Michal Vaskof756c942020-11-06 17:21:37 +01001962 assert(!parent || !parent->schema ||
1963 (parent->schema->nodetype & (LYS_CONTAINER | LYS_LIST | LYS_RPC | LYS_ACTION | LYS_NOTIF)));
Michal Vasko9b368d32020-02-14 13:53:31 +01001964
Michal Vaskob104f112020-07-17 09:54:54 +02001965 if (!parent && first_sibling_p && (*first_sibling_p) && (*first_sibling_p)->parent) {
1966 parent = (struct lyd_node *)(*first_sibling_p)->parent;
Michal Vasko9b368d32020-02-14 13:53:31 +01001967 }
Michal Vasko90932a92020-02-12 14:33:03 +01001968
Michal Vaskob104f112020-07-17 09:54:54 +02001969 /* get first sibling */
1970 first_sibling = parent ? ((struct lyd_node_inner *)parent)->child : *first_sibling_p;
Michal Vasko9f96a052020-03-10 09:41:45 +01001971
Michal Vaskob104f112020-07-17 09:54:54 +02001972 /* find the anchor, our next node, so we can insert before it */
1973 anchor = lyd_insert_get_next_anchor(first_sibling, node);
1974 if (anchor) {
1975 lyd_insert_before_node(anchor, node);
Michal Vasko26123192020-11-09 21:02:34 +01001976 if (!parent && (*first_sibling_p == anchor)) {
1977 /* move first sibling */
1978 *first_sibling_p = node;
1979 }
Michal Vaskob104f112020-07-17 09:54:54 +02001980 } else if (first_sibling) {
1981 lyd_insert_after_node(first_sibling->prev, node);
1982 } else if (parent) {
1983 lyd_insert_only_child(parent, node);
Michal Vasko90932a92020-02-12 14:33:03 +01001984 } else {
Michal Vaskob104f112020-07-17 09:54:54 +02001985 *first_sibling_p = node;
1986 }
1987
1988 /* insert into parent HT */
1989 lyd_insert_hash(node);
1990
1991 /* finish hashes for our parent, if needed and possible */
Michal Vasko9e8de2d2020-09-01 08:17:10 +02001992 if (node->schema && (node->schema->flags & LYS_KEY) && parent && lyd_insert_has_keys(parent)) {
Michal Vaskob104f112020-07-17 09:54:54 +02001993 lyd_hash(parent);
1994
1995 /* now we can insert even the list into its parent HT */
1996 lyd_insert_hash(parent);
Michal Vasko90932a92020-02-12 14:33:03 +01001997 }
Michal Vasko90932a92020-02-12 14:33:03 +01001998}
1999
Michal Vasko717a4c32020-12-07 09:40:10 +01002000/**
2001 * @brief Check schema place of a node to be inserted.
2002 *
2003 * @param[in] parent Schema node of the parent data node.
2004 * @param[in] sibling Schema node of a sibling data node.
2005 * @param[in] schema Schema node if the data node to be inserted.
2006 * @return LY_SUCCESS on success.
2007 * @return LY_EINVAL if the place is invalid.
2008 */
Michal Vaskof03ed032020-03-04 13:31:44 +01002009static LY_ERR
Michal Vasko717a4c32020-12-07 09:40:10 +01002010lyd_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 +01002011{
2012 const struct lysc_node *par2;
2013
Michal Vasko62ed12d2020-05-21 10:08:25 +02002014 assert(!parent || !(parent->nodetype & (LYS_CASE | LYS_CHOICE)));
Michal Vasko717a4c32020-12-07 09:40:10 +01002015 assert(!sibling || !(sibling->nodetype & (LYS_CASE | LYS_CHOICE)));
2016 assert(!schema || !(schema->nodetype & (LYS_CASE | LYS_CHOICE)));
Michal Vaskof03ed032020-03-04 13:31:44 +01002017
Michal Vasko717a4c32020-12-07 09:40:10 +01002018 if (!schema || (!parent && !sibling)) {
Michal Vasko71e795e2020-12-04 16:27:37 +01002019 /* opaque nodes can be inserted wherever */
2020 return LY_SUCCESS;
2021 }
2022
Michal Vasko717a4c32020-12-07 09:40:10 +01002023 if (!parent) {
2024 parent = lysc_data_parent(sibling);
2025 }
2026
Michal Vaskof03ed032020-03-04 13:31:44 +01002027 /* find schema parent */
Michal Vasko62ed12d2020-05-21 10:08:25 +02002028 par2 = lysc_data_parent(schema);
Michal Vaskof03ed032020-03-04 13:31:44 +01002029
2030 if (parent) {
2031 /* inner node */
2032 if (par2 != parent) {
Michal Vaskob104f112020-07-17 09:54:54 +02002033 LOGERR(schema->module->ctx, LY_EINVAL, "Cannot insert, parent of \"%s\" is not \"%s\".", schema->name,
Michal Vasko69730152020-10-09 16:30:07 +02002034 parent->name);
Michal Vaskof03ed032020-03-04 13:31:44 +01002035 return LY_EINVAL;
2036 }
2037 } else {
2038 /* top-level node */
2039 if (par2) {
Radek Krejcif6d14cb2020-07-02 16:11:45 +02002040 LOGERR(schema->module->ctx, LY_EINVAL, "Cannot insert, node \"%s\" is not top-level.", schema->name);
Michal Vaskof03ed032020-03-04 13:31:44 +01002041 return LY_EINVAL;
2042 }
2043 }
2044
2045 return LY_SUCCESS;
2046}
2047
2048API LY_ERR
Michal Vaskob104f112020-07-17 09:54:54 +02002049lyd_insert_child(struct lyd_node *parent, struct lyd_node *node)
Michal Vaskof03ed032020-03-04 13:31:44 +01002050{
2051 struct lyd_node *iter;
2052
Michal Vasko654bc852020-06-23 13:28:06 +02002053 LY_CHECK_ARG_RET(NULL, parent, node, parent->schema->nodetype & LYD_NODE_INNER, LY_EINVAL);
Michal Vaskof03ed032020-03-04 13:31:44 +01002054
Michal Vasko717a4c32020-12-07 09:40:10 +01002055 LY_CHECK_RET(lyd_insert_check_schema(parent->schema, NULL, node->schema));
Michal Vaskof03ed032020-03-04 13:31:44 +01002056
2057 if (node->schema->flags & LYS_KEY) {
2058 LOGERR(parent->schema->module->ctx, LY_EINVAL, "Cannot insert key \"%s\".", node->schema->name);
2059 return LY_EINVAL;
2060 }
2061
2062 if (node->parent || node->prev->next) {
2063 lyd_unlink_tree(node);
2064 }
2065
2066 while (node) {
2067 iter = node->next;
2068 lyd_unlink_tree(node);
2069 lyd_insert_node(parent, NULL, node);
2070 node = iter;
2071 }
2072 return LY_SUCCESS;
2073}
2074
2075API LY_ERR
Michal Vaskob104f112020-07-17 09:54:54 +02002076lyd_insert_sibling(struct lyd_node *sibling, struct lyd_node *node, struct lyd_node **first)
Michal Vaskob1b5c262020-03-05 14:29:47 +01002077{
2078 struct lyd_node *iter;
2079
Michal Vaskob104f112020-07-17 09:54:54 +02002080 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Michal Vaskob1b5c262020-03-05 14:29:47 +01002081
Michal Vaskob104f112020-07-17 09:54:54 +02002082 if (sibling) {
Michal Vasko717a4c32020-12-07 09:40:10 +01002083 LY_CHECK_RET(lyd_insert_check_schema(NULL, sibling->schema, node->schema));
Michal Vaskob1b5c262020-03-05 14:29:47 +01002084 }
2085
Michal Vasko553d0b52020-12-04 16:27:52 +01002086 if (sibling == node) {
2087 /* we need to keep the connection to siblings so we can insert into them */
2088 sibling = sibling->prev;
2089 }
2090
Michal Vaskob1b5c262020-03-05 14:29:47 +01002091 if (node->parent || node->prev->next) {
2092 lyd_unlink_tree(node);
2093 }
2094
2095 while (node) {
Michal Vasko71e795e2020-12-04 16:27:37 +01002096 if (lysc_is_key(node->schema)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002097 LOGERR(LYD_CTX(node), LY_EINVAL, "Cannot insert key \"%s\".", node->schema->name);
Michal Vaskob104f112020-07-17 09:54:54 +02002098 return LY_EINVAL;
2099 }
2100
Michal Vaskob1b5c262020-03-05 14:29:47 +01002101 iter = node->next;
2102 lyd_unlink_tree(node);
2103 lyd_insert_node(NULL, &sibling, node);
2104 node = iter;
2105 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01002106
Michal Vaskob104f112020-07-17 09:54:54 +02002107 if (first) {
2108 /* find the first sibling */
2109 *first = sibling;
2110 while ((*first)->prev->next) {
2111 *first = (*first)->prev;
Michal Vasko0249f7c2020-03-05 16:36:40 +01002112 }
2113 }
2114
2115 return LY_SUCCESS;
2116}
2117
Michal Vaskob1b5c262020-03-05 14:29:47 +01002118API LY_ERR
Michal Vaskof03ed032020-03-04 13:31:44 +01002119lyd_insert_before(struct lyd_node *sibling, struct lyd_node *node)
2120{
Michal Vaskof03ed032020-03-04 13:31:44 +01002121 LY_CHECK_ARG_RET(NULL, sibling, node, LY_EINVAL);
2122
Michal Vasko717a4c32020-12-07 09:40:10 +01002123 LY_CHECK_RET(lyd_insert_check_schema(NULL, sibling->schema, node->schema));
Michal Vaskof03ed032020-03-04 13:31:44 +01002124
Michal Vaskob104f112020-07-17 09:54:54 +02002125 if (!(node->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !(node->schema->flags & LYS_ORDBY_USER)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002126 LOGERR(LYD_CTX(sibling), LY_EINVAL, "Can be used only for user-ordered nodes.");
Michal Vaskof03ed032020-03-04 13:31:44 +01002127 return LY_EINVAL;
2128 }
2129
Michal Vasko4bc2ce32020-12-08 10:06:16 +01002130 lyd_unlink_tree(node);
2131 lyd_insert_before_node(sibling, node);
2132 lyd_insert_hash(node);
Michal Vaskof03ed032020-03-04 13:31:44 +01002133
Michal Vaskof03ed032020-03-04 13:31:44 +01002134 return LY_SUCCESS;
2135}
2136
2137API LY_ERR
2138lyd_insert_after(struct lyd_node *sibling, struct lyd_node *node)
2139{
Michal Vaskof03ed032020-03-04 13:31:44 +01002140 LY_CHECK_ARG_RET(NULL, sibling, node, LY_EINVAL);
2141
Michal Vasko717a4c32020-12-07 09:40:10 +01002142 LY_CHECK_RET(lyd_insert_check_schema(NULL, sibling->schema, node->schema));
Michal Vaskof03ed032020-03-04 13:31:44 +01002143
Michal Vaskob104f112020-07-17 09:54:54 +02002144 if (!(node->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !(node->schema->flags & LYS_ORDBY_USER)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002145 LOGERR(LYD_CTX(sibling), LY_EINVAL, "Can be used only for user-ordered nodes.");
Michal Vaskof03ed032020-03-04 13:31:44 +01002146 return LY_EINVAL;
2147 }
2148
Michal Vasko4bc2ce32020-12-08 10:06:16 +01002149 lyd_unlink_tree(node);
2150 lyd_insert_after_node(sibling, node);
2151 lyd_insert_hash(node);
Michal Vaskof03ed032020-03-04 13:31:44 +01002152
Michal Vaskof03ed032020-03-04 13:31:44 +01002153 return LY_SUCCESS;
2154}
2155
2156API void
2157lyd_unlink_tree(struct lyd_node *node)
2158{
2159 struct lyd_node *iter;
2160
2161 if (!node) {
2162 return;
2163 }
2164
Michal Vaskob104f112020-07-17 09:54:54 +02002165 /* update hashes while still linked into the tree */
2166 lyd_unlink_hash(node);
2167
Michal Vaskof03ed032020-03-04 13:31:44 +01002168 /* unlink from siblings */
2169 if (node->prev->next) {
2170 node->prev->next = node->next;
2171 }
2172 if (node->next) {
2173 node->next->prev = node->prev;
2174 } else {
2175 /* unlinking the last node */
2176 if (node->parent) {
2177 iter = node->parent->child;
2178 } else {
2179 iter = node->prev;
2180 while (iter->prev != node) {
2181 iter = iter->prev;
2182 }
2183 }
2184 /* update the "last" pointer from the first node */
2185 iter->prev = node->prev;
2186 }
2187
2188 /* unlink from parent */
2189 if (node->parent) {
2190 if (node->parent->child == node) {
2191 /* the node is the first child */
2192 node->parent->child = node->next;
2193 }
2194
Michal Vaskoab49dbe2020-07-17 12:32:47 +02002195 /* check for NP container whether its last non-default node is not being unlinked */
Michal Vasko69730152020-10-09 16:30:07 +02002196 if (node->parent->schema && (node->parent->schema->nodetype == LYS_CONTAINER) &&
2197 !(node->parent->flags & LYD_DEFAULT) && !(node->parent->schema->flags & LYS_PRESENCE)) {
Michal Vaskoab49dbe2020-07-17 12:32:47 +02002198 LY_LIST_FOR(node->parent->child, iter) {
2199 if ((iter != node) && !(iter->flags & LYD_DEFAULT)) {
2200 break;
2201 }
2202 }
2203 if (!iter) {
2204 node->parent->flags |= LYD_DEFAULT;
2205 }
2206 }
2207
Michal Vaskof03ed032020-03-04 13:31:44 +01002208 /* check for keyless list and update its hash */
2209 for (iter = (struct lyd_node *)node->parent; iter; iter = (struct lyd_node *)iter->parent) {
Michal Vasko413c7f22020-05-05 12:34:06 +02002210 if (iter->schema && (iter->schema->flags & LYS_KEYLESS)) {
Michal Vaskof03ed032020-03-04 13:31:44 +01002211 lyd_hash(iter);
2212 }
2213 }
2214
2215 node->parent = NULL;
2216 }
2217
2218 node->next = NULL;
2219 node->prev = node;
2220}
2221
Michal Vaskoa5da3292020-08-12 13:10:50 +02002222void
Michal Vasko871a0252020-11-11 18:35:24 +01002223lyd_insert_meta(struct lyd_node *parent, struct lyd_meta *meta, ly_bool clear_dflt)
Radek Krejci1798aae2020-07-14 13:26:06 +02002224{
2225 struct lyd_meta *last, *iter;
2226
2227 assert(parent);
Michal Vaskoa5da3292020-08-12 13:10:50 +02002228
2229 if (!meta) {
2230 return;
2231 }
Radek Krejci1798aae2020-07-14 13:26:06 +02002232
2233 for (iter = meta; iter; iter = iter->next) {
2234 iter->parent = parent;
2235 }
2236
2237 /* insert as the last attribute */
2238 if (parent->meta) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002239 for (last = parent->meta; last->next; last = last->next) {}
Radek Krejci1798aae2020-07-14 13:26:06 +02002240 last->next = meta;
2241 } else {
2242 parent->meta = meta;
2243 }
2244
2245 /* remove default flags from NP containers */
Michal Vasko871a0252020-11-11 18:35:24 +01002246 while (clear_dflt && parent && (parent->schema->nodetype == LYS_CONTAINER) && (parent->flags & LYD_DEFAULT)) {
Radek Krejci1798aae2020-07-14 13:26:06 +02002247 parent->flags &= ~LYD_DEFAULT;
2248 parent = (struct lyd_node *)parent->parent;
2249 }
Radek Krejci1798aae2020-07-14 13:26:06 +02002250}
2251
2252LY_ERR
Michal Vasko9f96a052020-03-10 09:41:45 +01002253lyd_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 +02002254 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 +01002255 void *prefix_data, uint32_t hints, ly_bool clear_dflt, ly_bool *incomplete)
Michal Vasko90932a92020-02-12 14:33:03 +01002256{
Radek Krejci2efc45b2020-12-22 16:25:44 +01002257 LY_ERR ret = LY_SUCCESS;
Michal Vasko90932a92020-02-12 14:33:03 +01002258 struct lysc_ext_instance *ant = NULL;
Michal Vasko9f96a052020-03-10 09:41:45 +01002259 struct lyd_meta *mt, *last;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002260 LY_ARRAY_COUNT_TYPE u;
Michal Vasko90932a92020-02-12 14:33:03 +01002261
Michal Vasko9f96a052020-03-10 09:41:45 +01002262 assert((parent || meta) && mod);
Michal Vasko6f4cbb62020-02-28 11:15:47 +01002263
Radek Krejciddace2c2021-01-08 11:30:56 +01002264 LOG_LOCSET(parent ? parent->schema : NULL, parent, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01002265
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002266 LY_ARRAY_FOR(mod->compiled->exts, u) {
Michal Vasko69730152020-10-09 16:30:07 +02002267 if ((mod->compiled->exts[u].def->plugin == lyext_plugins_internal[LYEXT_PLUGIN_INTERNAL_ANNOTATION].plugin) &&
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002268 !ly_strncmp(mod->compiled->exts[u].argument, name, name_len)) {
Michal Vasko90932a92020-02-12 14:33:03 +01002269 /* we have the annotation definition */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002270 ant = &mod->compiled->exts[u];
Michal Vasko90932a92020-02-12 14:33:03 +01002271 break;
2272 }
2273 }
2274 if (!ant) {
2275 /* attribute is not defined as a metadata annotation (RFC 7952) */
Radek Krejci2efc45b2020-12-22 16:25:44 +01002276 LOGVAL(mod->ctx, LYVE_REFERENCE, "Annotation definition for attribute \"%s:%.*s\" not found.",
Michal Vasko90932a92020-02-12 14:33:03 +01002277 mod->name, name_len, name);
Radek Krejci2efc45b2020-12-22 16:25:44 +01002278 ret = LY_EINVAL;
2279 goto cleanup;
Michal Vasko90932a92020-02-12 14:33:03 +01002280 }
2281
Michal Vasko9f96a052020-03-10 09:41:45 +01002282 mt = calloc(1, sizeof *mt);
Radek Krejci2efc45b2020-12-22 16:25:44 +01002283 LY_CHECK_ERR_GOTO(!mt, LOGMEM(mod->ctx); ret = LY_EMEM, cleanup);
Michal Vasko9f96a052020-03-10 09:41:45 +01002284 mt->parent = parent;
2285 mt->annotation = ant;
Radek Krejci2efc45b2020-12-22 16:25:44 +01002286 ret = lyd_value_store(mod->ctx, &mt->value, ((struct lyext_metadata *)ant->data)->type, value, value_len, dynamic,
2287 format, prefix_data, hints, parent ? parent->schema : NULL, incomplete);
2288 LY_CHECK_ERR_GOTO(ret, free(mt), cleanup);
2289 ret = lydict_insert(mod->ctx, name, name_len, &mt->name);
2290 LY_CHECK_ERR_GOTO(ret, free(mt), cleanup);
Michal Vasko90932a92020-02-12 14:33:03 +01002291
Michal Vasko6f4cbb62020-02-28 11:15:47 +01002292 /* insert as the last attribute */
2293 if (parent) {
Michal Vasko871a0252020-11-11 18:35:24 +01002294 lyd_insert_meta(parent, mt, clear_dflt);
Michal Vasko9f96a052020-03-10 09:41:45 +01002295 } else if (*meta) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002296 for (last = *meta; last->next; last = last->next) {}
Michal Vasko9f96a052020-03-10 09:41:45 +01002297 last->next = mt;
Michal Vasko90932a92020-02-12 14:33:03 +01002298 }
2299
Michal Vasko9f96a052020-03-10 09:41:45 +01002300 if (meta) {
2301 *meta = mt;
Michal Vasko90932a92020-02-12 14:33:03 +01002302 }
Radek Krejci2efc45b2020-12-22 16:25:44 +01002303
2304cleanup:
Radek Krejciddace2c2021-01-08 11:30:56 +01002305 LOG_LOCBACK((parent && parent->schema) ? 1 : 0, parent ? 1 : 0, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +01002306 return ret;
Michal Vasko90932a92020-02-12 14:33:03 +01002307}
2308
Michal Vaskoa5da3292020-08-12 13:10:50 +02002309void
2310lyd_insert_attr(struct lyd_node *parent, struct lyd_attr *attr)
2311{
2312 struct lyd_attr *last, *iter;
2313 struct lyd_node_opaq *opaq;
2314
2315 assert(parent && !parent->schema);
2316
2317 if (!attr) {
2318 return;
2319 }
2320
2321 opaq = (struct lyd_node_opaq *)parent;
2322 for (iter = attr; iter; iter = iter->next) {
2323 iter->parent = opaq;
2324 }
2325
2326 /* insert as the last attribute */
2327 if (opaq->attr) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002328 for (last = opaq->attr; last->next; last = last->next) {}
Michal Vaskoa5da3292020-08-12 13:10:50 +02002329 last->next = attr;
2330 } else {
2331 opaq->attr = attr;
2332 }
2333}
2334
Michal Vasko52927e22020-03-16 17:26:14 +01002335LY_ERR
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002336lyd_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 +01002337 const char *prefix, size_t prefix_len, const char *module_key, size_t module_key_len, const char *value,
2338 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 +01002339{
Radek Krejci011e4aa2020-09-04 15:22:31 +02002340 LY_ERR ret = LY_SUCCESS;
Radek Krejci1798aae2020-07-14 13:26:06 +02002341 struct lyd_attr *at, *last;
Michal Vasko52927e22020-03-16 17:26:14 +01002342
2343 assert(ctx && (parent || attr) && (!parent || !parent->schema));
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002344 assert(name && name_len && format);
Michal Vasko52927e22020-03-16 17:26:14 +01002345
2346 if (!value_len) {
2347 value = "";
2348 }
2349
2350 at = calloc(1, sizeof *at);
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01002351 LY_CHECK_ERR_RET(!at, LOGMEM(ctx); ly_free_prefix_data(format, val_prefix_data), LY_EMEM);
Radek Krejcid46e46a2020-09-15 14:22:42 +02002352
Michal Vaskoad92b672020-11-12 13:11:31 +01002353 LY_CHECK_GOTO(ret = lydict_insert(ctx, name, name_len, &at->name.name), finish);
Michal Vasko501af032020-11-11 20:27:44 +01002354 if (prefix_len) {
Michal Vaskoad92b672020-11-12 13:11:31 +01002355 LY_CHECK_GOTO(ret = lydict_insert(ctx, prefix, prefix_len, &at->name.prefix), finish);
Michal Vasko501af032020-11-11 20:27:44 +01002356 }
2357 if (module_key_len) {
Michal Vaskoad92b672020-11-12 13:11:31 +01002358 LY_CHECK_GOTO(ret = lydict_insert(ctx, module_key, module_key_len, &at->name.module_ns), finish);
Michal Vasko501af032020-11-11 20:27:44 +01002359 }
2360
Michal Vasko52927e22020-03-16 17:26:14 +01002361 if (dynamic && *dynamic) {
Radek Krejci011e4aa2020-09-04 15:22:31 +02002362 ret = lydict_insert_zc(ctx, (char *)value, &at->value);
2363 LY_CHECK_GOTO(ret, finish);
Michal Vasko52927e22020-03-16 17:26:14 +01002364 *dynamic = 0;
2365 } else {
Radek Krejci011e4aa2020-09-04 15:22:31 +02002366 LY_CHECK_GOTO(ret = lydict_insert(ctx, value, value_len, &at->value), finish);
Michal Vasko52927e22020-03-16 17:26:14 +01002367 }
Michal Vasko501af032020-11-11 20:27:44 +01002368 at->format = format;
2369 at->val_prefix_data = val_prefix_data;
2370 at->hints = hints;
Michal Vasko52927e22020-03-16 17:26:14 +01002371
2372 /* insert as the last attribute */
2373 if (parent) {
Michal Vaskoa5da3292020-08-12 13:10:50 +02002374 lyd_insert_attr(parent, at);
Michal Vasko52927e22020-03-16 17:26:14 +01002375 } else if (*attr) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002376 for (last = *attr; last->next; last = last->next) {}
Michal Vasko52927e22020-03-16 17:26:14 +01002377 last->next = at;
2378 }
2379
Radek Krejci011e4aa2020-09-04 15:22:31 +02002380finish:
2381 if (ret) {
2382 lyd_free_attr_single(ctx, at);
2383 } else if (attr) {
Michal Vasko52927e22020-03-16 17:26:14 +01002384 *attr = at;
2385 }
2386 return LY_SUCCESS;
2387}
2388
Radek Krejci084289f2019-07-09 17:35:30 +02002389API const struct lyd_node_term *
Michal Vasko004d3152020-06-11 19:59:22 +02002390lyd_target(const struct ly_path *path, const struct lyd_node *tree)
Radek Krejci084289f2019-07-09 17:35:30 +02002391{
Michal Vasko004d3152020-06-11 19:59:22 +02002392 struct lyd_node *target;
Radek Krejci084289f2019-07-09 17:35:30 +02002393
Michal Vasko004d3152020-06-11 19:59:22 +02002394 if (ly_path_eval(path, tree, &target)) {
2395 return NULL;
Radek Krejci084289f2019-07-09 17:35:30 +02002396 }
2397
Michal Vasko004d3152020-06-11 19:59:22 +02002398 return (struct lyd_node_term *)target;
Radek Krejci084289f2019-07-09 17:35:30 +02002399}
2400
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002401API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002402lyd_compare_single(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options)
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002403{
2404 const struct lyd_node *iter1, *iter2;
2405 struct lyd_node_term *term1, *term2;
2406 struct lyd_node_any *any1, *any2;
Michal Vasko52927e22020-03-16 17:26:14 +01002407 struct lyd_node_opaq *opaq1, *opaq2;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002408 size_t len1, len2;
Radek Krejci084289f2019-07-09 17:35:30 +02002409
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002410 if (!node1 || !node2) {
2411 if (node1 == node2) {
2412 return LY_SUCCESS;
2413 } else {
2414 return LY_ENOT;
2415 }
2416 }
2417
Michal Vaskob7be7a82020-08-20 09:09:04 +02002418 if ((LYD_CTX(node1) != LYD_CTX(node2)) || (node1->schema != node2->schema)) {
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002419 return LY_ENOT;
2420 }
2421
2422 if (node1->hash != node2->hash) {
2423 return LY_ENOT;
2424 }
Michal Vasko52927e22020-03-16 17:26:14 +01002425 /* 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 +02002426
Michal Vasko52927e22020-03-16 17:26:14 +01002427 if (!node1->schema) {
2428 opaq1 = (struct lyd_node_opaq *)node1;
2429 opaq2 = (struct lyd_node_opaq *)node2;
Michal Vaskoad92b672020-11-12 13:11:31 +01002430 if ((opaq1->name.name != opaq2->name.name) || (opaq1->format != opaq2->format) ||
2431 (opaq1->name.module_ns != opaq2->name.module_ns)) {
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002432 return LY_ENOT;
2433 }
Michal Vasko52927e22020-03-16 17:26:14 +01002434 switch (opaq1->format) {
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01002435 case LY_PREF_XML:
2436 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 +01002437 return LY_ENOT;
2438 }
2439 break;
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01002440 case LY_PREF_JSON:
Radek Krejci1798aae2020-07-14 13:26:06 +02002441 /* prefixes in JSON are unique, so it is not necessary to canonize the values */
2442 if (strcmp(opaq1->value, opaq2->value)) {
2443 return LY_ENOT;
2444 }
2445 break;
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01002446 default:
Michal Vasko52927e22020-03-16 17:26:14 +01002447 /* not allowed */
Michal Vaskob7be7a82020-08-20 09:09:04 +02002448 LOGINT(LYD_CTX(node1));
Michal Vasko52927e22020-03-16 17:26:14 +01002449 return LY_EINT;
2450 }
2451 if (options & LYD_COMPARE_FULL_RECURSION) {
2452 iter1 = opaq1->child;
2453 iter2 = opaq2->child;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002454 goto all_children_compare;
Michal Vasko52927e22020-03-16 17:26:14 +01002455 }
2456 return LY_SUCCESS;
2457 } else {
2458 switch (node1->schema->nodetype) {
2459 case LYS_LEAF:
2460 case LYS_LEAFLIST:
2461 if (options & LYD_COMPARE_DEFAULTS) {
2462 if ((node1->flags & LYD_DEFAULT) != (node2->flags & LYD_DEFAULT)) {
2463 return LY_ENOT;
2464 }
2465 }
2466
Michal Vasko1a2bf2e2020-06-16 13:07:48 +02002467 term1 = (struct lyd_node_term *)node1;
2468 term2 = (struct lyd_node_term *)node2;
Michal Vasko1a2bf2e2020-06-16 13:07:48 +02002469 return term1->value.realtype->plugin->compare(&term1->value, &term2->value);
Michal Vasko52927e22020-03-16 17:26:14 +01002470 case LYS_CONTAINER:
2471 if (options & LYD_COMPARE_DEFAULTS) {
2472 if ((node1->flags & LYD_DEFAULT) != (node2->flags & LYD_DEFAULT)) {
2473 return LY_ENOT;
2474 }
2475 }
2476 if (options & LYD_COMPARE_FULL_RECURSION) {
Michal Vasko22df3f02020-08-24 13:29:22 +02002477 iter1 = ((struct lyd_node_inner *)node1)->child;
2478 iter2 = ((struct lyd_node_inner *)node2)->child;
Michal Vasko52927e22020-03-16 17:26:14 +01002479 goto all_children_compare;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002480 }
2481 return LY_SUCCESS;
Michal Vasko1bf09392020-03-27 12:38:10 +01002482 case LYS_RPC:
Michal Vasko52927e22020-03-16 17:26:14 +01002483 case LYS_ACTION:
2484 if (options & LYD_COMPARE_FULL_RECURSION) {
2485 /* TODO action/RPC
2486 goto all_children_compare;
2487 */
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002488 }
2489 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01002490 case LYS_NOTIF:
2491 if (options & LYD_COMPARE_FULL_RECURSION) {
2492 /* TODO Notification
2493 goto all_children_compare;
2494 */
2495 }
2496 return LY_SUCCESS;
2497 case LYS_LIST:
Michal Vasko22df3f02020-08-24 13:29:22 +02002498 iter1 = ((struct lyd_node_inner *)node1)->child;
2499 iter2 = ((struct lyd_node_inner *)node2)->child;
Michal Vasko52927e22020-03-16 17:26:14 +01002500
2501 if (!(node1->schema->flags & LYS_KEYLESS) && !(options & LYD_COMPARE_FULL_RECURSION)) {
2502 /* lists with keys, their equivalence is based on their keys */
Michal Vasko14ed9cd2021-01-28 14:16:25 +01002503 for (const struct lysc_node *key = lysc_node_children(node1->schema, 0);
Michal Vaskoc57d9a92020-06-23 13:28:27 +02002504 key && (key->flags & LYS_KEY);
Michal Vasko52927e22020-03-16 17:26:14 +01002505 key = key->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02002506 if (lyd_compare_single(iter1, iter2, options)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002507 return LY_ENOT;
2508 }
2509 iter1 = iter1->next;
2510 iter2 = iter2->next;
2511 }
2512 } else {
2513 /* lists without keys, their equivalence is based on equivalence of all the children (both direct and indirect) */
2514
Radek Krejci0f969882020-08-21 16:56:47 +02002515all_children_compare:
Michal Vasko52927e22020-03-16 17:26:14 +01002516 if (!iter1 && !iter2) {
2517 /* no children, nothing to compare */
2518 return LY_SUCCESS;
2519 }
2520
Michal Vaskod989ba02020-08-24 10:59:24 +02002521 for ( ; iter1 && iter2; iter1 = iter1->next, iter2 = iter2->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02002522 if (lyd_compare_single(iter1, iter2, options | LYD_COMPARE_FULL_RECURSION)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002523 return LY_ENOT;
2524 }
2525 }
2526 if (iter1 || iter2) {
2527 return LY_ENOT;
2528 }
2529 }
2530 return LY_SUCCESS;
2531 case LYS_ANYXML:
2532 case LYS_ANYDATA:
Michal Vasko22df3f02020-08-24 13:29:22 +02002533 any1 = (struct lyd_node_any *)node1;
2534 any2 = (struct lyd_node_any *)node2;
Michal Vasko52927e22020-03-16 17:26:14 +01002535
2536 if (any1->value_type != any2->value_type) {
2537 return LY_ENOT;
2538 }
2539 switch (any1->value_type) {
2540 case LYD_ANYDATA_DATATREE:
2541 iter1 = any1->value.tree;
2542 iter2 = any2->value.tree;
2543 goto all_children_compare;
2544 case LYD_ANYDATA_STRING:
2545 case LYD_ANYDATA_XML:
2546 case LYD_ANYDATA_JSON:
2547 len1 = strlen(any1->value.str);
2548 len2 = strlen(any2->value.str);
Michal Vasko69730152020-10-09 16:30:07 +02002549 if ((len1 != len2) || strcmp(any1->value.str, any2->value.str)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002550 return LY_ENOT;
2551 }
2552 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01002553 case LYD_ANYDATA_LYB:
Michal Vasko60ea6352020-06-29 13:39:39 +02002554 len1 = lyd_lyb_data_length(any1->value.mem);
2555 len2 = lyd_lyb_data_length(any2->value.mem);
Michal Vasko69730152020-10-09 16:30:07 +02002556 if ((len1 != len2) || memcmp(any1->value.mem, any2->value.mem, len1)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002557 return LY_ENOT;
2558 }
2559 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01002560 }
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002561 }
2562 }
2563
Michal Vaskob7be7a82020-08-20 09:09:04 +02002564 LOGINT(LYD_CTX(node1));
Radek Krejci1f05b6a2019-07-18 16:15:06 +02002565 return LY_EINT;
2566}
Radek Krejci22ebdba2019-07-25 13:59:43 +02002567
Michal Vasko21725742020-06-29 11:49:25 +02002568API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002569lyd_compare_siblings(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options)
Michal Vasko8f359bf2020-07-28 10:41:15 +02002570{
Michal Vaskod989ba02020-08-24 10:59:24 +02002571 for ( ; node1 && node2; node1 = node1->next, node2 = node2->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02002572 LY_CHECK_RET(lyd_compare_single(node1, node2, options));
2573 }
2574
Michal Vasko11a81432020-07-28 16:31:29 +02002575 if (node1 == node2) {
2576 return LY_SUCCESS;
Michal Vasko8f359bf2020-07-28 10:41:15 +02002577 }
Michal Vasko11a81432020-07-28 16:31:29 +02002578 return LY_ENOT;
Michal Vasko8f359bf2020-07-28 10:41:15 +02002579}
2580
2581API LY_ERR
Michal Vasko21725742020-06-29 11:49:25 +02002582lyd_compare_meta(const struct lyd_meta *meta1, const struct lyd_meta *meta2)
2583{
2584 if (!meta1 || !meta2) {
2585 if (meta1 == meta2) {
2586 return LY_SUCCESS;
2587 } else {
2588 return LY_ENOT;
2589 }
2590 }
2591
Michal Vaskoa8083062020-11-06 17:22:10 +01002592 if ((meta1->annotation->module->ctx != meta2->annotation->module->ctx) || (meta1->annotation != meta2->annotation)) {
Michal Vasko21725742020-06-29 11:49:25 +02002593 return LY_ENOT;
2594 }
2595
Michal Vasko21725742020-06-29 11:49:25 +02002596 return meta1->value.realtype->plugin->compare(&meta1->value, &meta2->value);
2597}
2598
Radek Krejci22ebdba2019-07-25 13:59:43 +02002599/**
Michal Vasko52927e22020-03-16 17:26:14 +01002600 * @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 +02002601 *
2602 * 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 +02002603 *
2604 * @param[in] node Original node to duplicate
2605 * @param[in] parent Parent to insert into, NULL for top-level sibling.
2606 * @param[in,out] first First sibling, NULL if no top-level sibling exist yet. Can be also NULL if @p parent is set.
2607 * @param[in] options Bitmask of options flags, see @ref dupoptions.
2608 * @param[out] dup_p Pointer where the created duplicated node is placed (besides connecting it int @p parent / @p first sibling).
2609 * @return LY_ERR value
Radek Krejci22ebdba2019-07-25 13:59:43 +02002610 */
Michal Vasko52927e22020-03-16 17:26:14 +01002611static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002612lyd_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 +02002613 struct lyd_node **dup_p)
Radek Krejci22ebdba2019-07-25 13:59:43 +02002614{
Michal Vasko52927e22020-03-16 17:26:14 +01002615 LY_ERR ret;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002616 struct lyd_node *dup = NULL;
Michal Vasko61551fa2020-07-09 15:45:45 +02002617 struct lyd_meta *meta;
2618 struct lyd_node_any *any;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002619
Michal Vasko52927e22020-03-16 17:26:14 +01002620 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002621
Michal Vasko52927e22020-03-16 17:26:14 +01002622 if (!node->schema) {
2623 dup = calloc(1, sizeof(struct lyd_node_opaq));
2624 } else {
2625 switch (node->schema->nodetype) {
Michal Vasko1bf09392020-03-27 12:38:10 +01002626 case LYS_RPC:
Michal Vasko52927e22020-03-16 17:26:14 +01002627 case LYS_ACTION:
2628 case LYS_NOTIF:
2629 case LYS_CONTAINER:
2630 case LYS_LIST:
2631 dup = calloc(1, sizeof(struct lyd_node_inner));
2632 break;
2633 case LYS_LEAF:
2634 case LYS_LEAFLIST:
2635 dup = calloc(1, sizeof(struct lyd_node_term));
2636 break;
2637 case LYS_ANYDATA:
2638 case LYS_ANYXML:
2639 dup = calloc(1, sizeof(struct lyd_node_any));
2640 break;
2641 default:
Michal Vaskob7be7a82020-08-20 09:09:04 +02002642 LOGINT(LYD_CTX(node));
Michal Vasko52927e22020-03-16 17:26:14 +01002643 ret = LY_EINT;
2644 goto error;
2645 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02002646 }
Michal Vaskob7be7a82020-08-20 09:09:04 +02002647 LY_CHECK_ERR_GOTO(!dup, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002648
Michal Vaskof6df0a02020-06-16 13:08:34 +02002649 if (options & LYD_DUP_WITH_FLAGS) {
2650 dup->flags = node->flags;
2651 } else {
2652 dup->flags = (node->flags & LYD_DEFAULT) | LYD_NEW;
2653 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02002654 dup->schema = node->schema;
Michal Vasko52927e22020-03-16 17:26:14 +01002655 dup->prev = dup;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002656
Michal Vasko25a32822020-07-09 15:48:22 +02002657 /* duplicate metadata */
2658 if (!(options & LYD_DUP_NO_META)) {
2659 LY_LIST_FOR(node->meta, meta) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002660 LY_CHECK_GOTO(ret = lyd_dup_meta_single(meta, dup, NULL), error);
Michal Vasko25a32822020-07-09 15:48:22 +02002661 }
2662 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02002663
2664 /* nodetype-specific work */
Michal Vasko52927e22020-03-16 17:26:14 +01002665 if (!dup->schema) {
2666 struct lyd_node_opaq *opaq = (struct lyd_node_opaq *)dup;
2667 struct lyd_node_opaq *orig = (struct lyd_node_opaq *)node;
2668 struct lyd_node *child;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002669
2670 if (options & LYD_DUP_RECURSIVE) {
2671 /* duplicate all the children */
2672 LY_LIST_FOR(orig->child, child) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002673 LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, NULL, options, NULL), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002674 }
2675 }
Michal Vaskoad92b672020-11-12 13:11:31 +01002676 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->name.name, 0, &opaq->name.name), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002677 opaq->format = orig->format;
Michal Vaskoad92b672020-11-12 13:11:31 +01002678 if (orig->name.prefix) {
2679 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->name.prefix, 0, &opaq->name.prefix), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002680 }
Michal Vaskoad92b672020-11-12 13:11:31 +01002681 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 +01002682 if (orig->val_prefix_data) {
2683 ret = ly_dup_prefix_data(LYD_CTX(node), opaq->format, orig->val_prefix_data, &opaq->val_prefix_data);
2684 LY_CHECK_GOTO(ret, error);
Michal Vasko52927e22020-03-16 17:26:14 +01002685 }
Radek Krejci011e4aa2020-09-04 15:22:31 +02002686 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->value, 0, &opaq->value), error);
Michal Vasko52927e22020-03-16 17:26:14 +01002687 opaq->ctx = orig->ctx;
2688 } else if (dup->schema->nodetype & LYD_NODE_TERM) {
2689 struct lyd_node_term *term = (struct lyd_node_term *)dup;
2690 struct lyd_node_term *orig = (struct lyd_node_term *)node;
2691
2692 term->hash = orig->hash;
Michal Vaskob7be7a82020-08-20 09:09:04 +02002693 LY_CHECK_ERR_GOTO(orig->value.realtype->plugin->duplicate(LYD_CTX(node), &orig->value, &term->value),
Michal Vasko69730152020-10-09 16:30:07 +02002694 LOGERR(LYD_CTX(node), LY_EINT, "Value duplication failed."); ret = LY_EINT, error);
Michal Vasko52927e22020-03-16 17:26:14 +01002695 } else if (dup->schema->nodetype & LYD_NODE_INNER) {
2696 struct lyd_node_inner *orig = (struct lyd_node_inner *)node;
2697 struct lyd_node *child;
2698
2699 if (options & LYD_DUP_RECURSIVE) {
2700 /* duplicate all the children */
2701 LY_LIST_FOR(orig->child, child) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002702 LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, NULL, options, NULL), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002703 }
Michal Vasko69730152020-10-09 16:30:07 +02002704 } else if ((dup->schema->nodetype == LYS_LIST) && !(dup->schema->flags & LYS_KEYLESS)) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02002705 /* always duplicate keys of a list */
Radek Krejci22ebdba2019-07-25 13:59:43 +02002706 child = orig->child;
Michal Vasko14ed9cd2021-01-28 14:16:25 +01002707 for (const struct lysc_node *key = lysc_node_children(dup->schema, 0);
Michal Vaskoc57d9a92020-06-23 13:28:27 +02002708 key && (key->flags & LYS_KEY);
Radek Krejci0fe9b512019-07-26 17:51:05 +02002709 key = key->next) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02002710 if (!child) {
2711 /* possibly not keys are present in filtered tree */
2712 break;
Radek Krejci0fe9b512019-07-26 17:51:05 +02002713 } else if (child->schema != key) {
2714 /* possibly not all keys are present in filtered tree,
2715 * but there can be also some non-key nodes */
2716 continue;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002717 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002718 LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, NULL, options, NULL), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002719 child = child->next;
2720 }
2721 }
2722 lyd_hash(dup);
2723 } else if (dup->schema->nodetype & LYD_NODE_ANY) {
Michal Vasko61551fa2020-07-09 15:45:45 +02002724 dup->hash = node->hash;
2725 any = (struct lyd_node_any *)node;
2726 LY_CHECK_GOTO(ret = lyd_any_copy_value(dup, &any->value, any->value_type), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002727 }
2728
Michal Vasko52927e22020-03-16 17:26:14 +01002729 /* insert */
2730 lyd_insert_node(parent, first, dup);
Michal Vasko52927e22020-03-16 17:26:14 +01002731
2732 if (dup_p) {
2733 *dup_p = dup;
2734 }
2735 return LY_SUCCESS;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002736
2737error:
Michal Vasko52927e22020-03-16 17:26:14 +01002738 lyd_free_tree(dup);
2739 return ret;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002740}
2741
Michal Vasko3a41dff2020-07-15 14:30:28 +02002742static LY_ERR
2743lyd_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 +02002744 struct lyd_node_inner **local_parent)
Radek Krejci22ebdba2019-07-25 13:59:43 +02002745{
Michal Vasko3a41dff2020-07-15 14:30:28 +02002746 const struct lyd_node_inner *orig_parent, *iter;
Radek Krejci857189e2020-09-01 13:26:36 +02002747 ly_bool repeat = 1;
Michal Vasko3a41dff2020-07-15 14:30:28 +02002748
2749 *dup_parent = NULL;
2750 *local_parent = NULL;
2751
2752 for (orig_parent = node->parent; repeat && orig_parent; orig_parent = orig_parent->parent) {
2753 if (parent && (parent->schema == orig_parent->schema)) {
2754 /* stop creating parents, connect what we have into the provided parent */
2755 iter = parent;
2756 repeat = 0;
2757 } else {
2758 iter = NULL;
2759 LY_CHECK_RET(lyd_dup_r((struct lyd_node *)orig_parent, NULL, (struct lyd_node **)&iter, 0,
Radek Krejci0f969882020-08-21 16:56:47 +02002760 (struct lyd_node **)&iter));
Michal Vasko3a41dff2020-07-15 14:30:28 +02002761 }
2762 if (!*local_parent) {
2763 *local_parent = (struct lyd_node_inner *)iter;
2764 }
2765 if (iter->child) {
2766 /* 1) list - add after keys
2767 * 2) provided parent with some children */
2768 iter->child->prev->next = *dup_parent;
2769 if (*dup_parent) {
2770 (*dup_parent)->prev = iter->child->prev;
2771 iter->child->prev = *dup_parent;
2772 }
2773 } else {
2774 ((struct lyd_node_inner *)iter)->child = *dup_parent;
2775 }
2776 if (*dup_parent) {
2777 (*dup_parent)->parent = (struct lyd_node_inner *)iter;
2778 }
2779 *dup_parent = (struct lyd_node *)iter;
2780 }
2781
2782 if (repeat && parent) {
2783 /* given parent and created parents chain actually do not interconnect */
Michal Vaskob7be7a82020-08-20 09:09:04 +02002784 LOGERR(LYD_CTX(node), LY_EINVAL,
Michal Vasko69730152020-10-09 16:30:07 +02002785 "Invalid argument parent (%s()) - does not interconnect with the created node's parents chain.", __func__);
Michal Vasko3a41dff2020-07-15 14:30:28 +02002786 return LY_EINVAL;
2787 }
2788
2789 return LY_SUCCESS;
2790}
2791
2792static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02002793lyd_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 +02002794{
2795 LY_ERR rc;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002796 const struct lyd_node *orig; /* original node to be duplicated */
2797 struct lyd_node *first = NULL; /* the first duplicated node, this is returned */
Radek Krejci22ebdba2019-07-25 13:59:43 +02002798 struct lyd_node *top = NULL; /* the most higher created node */
2799 struct lyd_node_inner *local_parent = NULL; /* the direct parent node for the duplicated node(s) */
Radek Krejci22ebdba2019-07-25 13:59:43 +02002800
Michal Vasko3a41dff2020-07-15 14:30:28 +02002801 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002802
2803 if (options & LYD_DUP_WITH_PARENTS) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002804 LY_CHECK_GOTO(rc = lyd_dup_get_local_parent(node, parent, &top, &local_parent), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002805 } else {
2806 local_parent = parent;
2807 }
2808
Radek Krejci22ebdba2019-07-25 13:59:43 +02002809 LY_LIST_FOR(node, orig) {
Michal Vasko35f4d772021-01-12 12:08:57 +01002810 if (lysc_is_key(orig->schema)) {
2811 if (local_parent) {
2812 /* the key must already exist in the parent */
2813 rc = lyd_find_sibling_schema(local_parent->child, orig->schema, first ? NULL : &first);
2814 LY_CHECK_ERR_GOTO(rc, LOGINT(LYD_CTX(node)), error);
2815 } else {
2816 assert(!(options & LYD_DUP_WITH_PARENTS));
2817 /* duplicating a single key, okay, I suppose... */
2818 rc = lyd_dup_r(orig, NULL, &first, options, first ? NULL : &first);
2819 LY_CHECK_GOTO(rc, error);
2820 }
2821 } else {
2822 /* if there is no local parent, it will be inserted into first */
2823 rc = lyd_dup_r(orig, (struct lyd_node *)local_parent, &first, options, first ? NULL : &first);
2824 LY_CHECK_GOTO(rc, error);
2825 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002826 if (nosiblings) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02002827 break;
2828 }
2829 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002830
2831 /* rehash if needed */
Michal Vaskod989ba02020-08-24 10:59:24 +02002832 for ( ; local_parent; local_parent = local_parent->parent) {
Michal Vasko69730152020-10-09 16:30:07 +02002833 if ((local_parent->schema->nodetype == LYS_LIST) && (local_parent->schema->flags & LYS_KEYLESS)) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002834 lyd_hash((struct lyd_node *)local_parent);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002835 }
2836 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002837
2838 if (dup) {
2839 *dup = first;
2840 }
2841 return LY_SUCCESS;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002842
2843error:
2844 if (top) {
2845 lyd_free_tree(top);
2846 } else {
Michal Vaskof03ed032020-03-04 13:31:44 +01002847 lyd_free_siblings(first);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002848 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02002849 return rc;
Radek Krejci22ebdba2019-07-25 13:59:43 +02002850}
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002851
Michal Vasko3a41dff2020-07-15 14:30:28 +02002852API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002853lyd_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 +02002854{
2855 return lyd_dup(node, parent, options, 1, dup);
2856}
2857
2858API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002859lyd_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 +02002860{
2861 return lyd_dup(node, parent, options, 0, dup);
2862}
2863
2864API LY_ERR
2865lyd_dup_meta_single(const struct lyd_meta *meta, struct lyd_node *node, struct lyd_meta **dup)
Michal Vasko25a32822020-07-09 15:48:22 +02002866{
Radek Krejci011e4aa2020-09-04 15:22:31 +02002867 LY_ERR ret = LY_SUCCESS;
Michal Vasko25a32822020-07-09 15:48:22 +02002868 struct lyd_meta *mt, *last;
2869
Michal Vasko3a41dff2020-07-15 14:30:28 +02002870 LY_CHECK_ARG_RET(NULL, meta, node, LY_EINVAL);
Michal Vasko25a32822020-07-09 15:48:22 +02002871
2872 /* create a copy */
2873 mt = calloc(1, sizeof *mt);
Michal Vaskob7be7a82020-08-20 09:09:04 +02002874 LY_CHECK_ERR_RET(!mt, LOGMEM(LYD_CTX(node)), LY_EMEM);
Michal Vasko25a32822020-07-09 15:48:22 +02002875 mt->annotation = meta->annotation;
Michal Vaskob7be7a82020-08-20 09:09:04 +02002876 ret = meta->value.realtype->plugin->duplicate(LYD_CTX(node), &meta->value, &mt->value);
Radek Krejci011e4aa2020-09-04 15:22:31 +02002877 LY_CHECK_ERR_GOTO(ret, LOGERR(LYD_CTX(node), LY_EINT, "Value duplication failed."), finish);
2878 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), meta->name, 0, &mt->name), finish);
Michal Vasko25a32822020-07-09 15:48:22 +02002879
2880 /* insert as the last attribute */
Radek Krejci011e4aa2020-09-04 15:22:31 +02002881 mt->parent = node;
Michal Vasko25a32822020-07-09 15:48:22 +02002882 if (node->meta) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002883 for (last = node->meta; last->next; last = last->next) {}
Michal Vasko25a32822020-07-09 15:48:22 +02002884 last->next = mt;
2885 } else {
2886 node->meta = mt;
2887 }
2888
Radek Krejci011e4aa2020-09-04 15:22:31 +02002889finish:
2890 if (ret) {
2891 lyd_free_meta_single(mt);
2892 } else if (dup) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002893 *dup = mt;
2894 }
2895 return LY_SUCCESS;
Michal Vasko25a32822020-07-09 15:48:22 +02002896}
2897
Michal Vasko4490d312020-06-16 13:08:55 +02002898/**
2899 * @brief Merge a source sibling into target siblings.
2900 *
2901 * @param[in,out] first_trg First target sibling, is updated if top-level.
2902 * @param[in] parent_trg Target parent.
2903 * @param[in,out] sibling_src Source sibling to merge, set to NULL if spent.
2904 * @param[in] options Merge options.
2905 * @return LY_ERR value.
2906 */
2907static LY_ERR
2908lyd_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 +02002909 uint16_t options)
Michal Vasko4490d312020-06-16 13:08:55 +02002910{
2911 LY_ERR ret;
2912 const struct lyd_node *child_src, *tmp, *sibling_src;
Michal Vasko56daf732020-08-10 10:57:18 +02002913 struct lyd_node *match_trg, *dup_src, *elem;
Michal Vasko4490d312020-06-16 13:08:55 +02002914 struct lysc_type *type;
Michal Vasko4490d312020-06-16 13:08:55 +02002915
2916 sibling_src = *sibling_src_p;
2917 if (sibling_src->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) {
2918 /* try to find the exact instance */
2919 ret = lyd_find_sibling_first(*first_trg, sibling_src, &match_trg);
2920 } else {
2921 /* try to simply find the node, there cannot be more instances */
2922 ret = lyd_find_sibling_val(*first_trg, sibling_src->schema, NULL, 0, &match_trg);
2923 }
2924
2925 if (!ret) {
2926 /* node found, make sure even value matches for all node types */
Michal Vasko8f359bf2020-07-28 10:41:15 +02002927 if ((match_trg->schema->nodetype == LYS_LEAF) && lyd_compare_single(sibling_src, match_trg, LYD_COMPARE_DEFAULTS)) {
Michal Vasko4490d312020-06-16 13:08:55 +02002928 /* since they are different, they cannot both be default */
2929 assert(!(sibling_src->flags & LYD_DEFAULT) || !(match_trg->flags & LYD_DEFAULT));
2930
Michal Vasko3a41dff2020-07-15 14:30:28 +02002931 /* update value (or only LYD_DEFAULT flag) only if flag set or the source node is not default */
2932 if ((options & LYD_MERGE_DEFAULTS) || !(sibling_src->flags & LYD_DEFAULT)) {
Michal Vasko4490d312020-06-16 13:08:55 +02002933 type = ((struct lysc_node_leaf *)match_trg->schema)->type;
Michal Vaskob7be7a82020-08-20 09:09:04 +02002934 type->plugin->free(LYD_CTX(match_trg), &((struct lyd_node_term *)match_trg)->value);
2935 LY_CHECK_RET(type->plugin->duplicate(LYD_CTX(match_trg), &((struct lyd_node_term *)sibling_src)->value,
Michal Vasko69730152020-10-09 16:30:07 +02002936 &((struct lyd_node_term *)match_trg)->value));
Michal Vasko4490d312020-06-16 13:08:55 +02002937
2938 /* copy flags and add LYD_NEW */
2939 match_trg->flags = sibling_src->flags | LYD_NEW;
2940 }
Michal Vasko8f359bf2020-07-28 10:41:15 +02002941 } else if ((match_trg->schema->nodetype & LYS_ANYDATA) && lyd_compare_single(sibling_src, match_trg, 0)) {
Michal Vasko4c583e82020-07-17 12:16:14 +02002942 /* update value */
2943 LY_CHECK_RET(lyd_any_copy_value(match_trg, &((struct lyd_node_any *)sibling_src)->value,
Radek Krejci0f969882020-08-21 16:56:47 +02002944 ((struct lyd_node_any *)sibling_src)->value_type));
Michal Vasko4490d312020-06-16 13:08:55 +02002945
2946 /* copy flags and add LYD_NEW */
2947 match_trg->flags = sibling_src->flags | LYD_NEW;
Michal Vasko4490d312020-06-16 13:08:55 +02002948 } else {
2949 /* check descendants, recursively */
Radek Krejcia1c1e542020-09-29 16:06:52 +02002950 LY_LIST_FOR_SAFE(lyd_child_no_keys(sibling_src), tmp, child_src) {
Michal Vasko4490d312020-06-16 13:08:55 +02002951 LY_CHECK_RET(lyd_merge_sibling_r(lyd_node_children_p(match_trg), match_trg, &child_src, options));
2952 }
2953 }
2954 } else {
2955 /* node not found, merge it */
2956 if (options & LYD_MERGE_DESTRUCT) {
2957 dup_src = (struct lyd_node *)sibling_src;
2958 lyd_unlink_tree(dup_src);
2959 /* spend it */
2960 *sibling_src_p = NULL;
2961 } else {
Michal Vasko3a41dff2020-07-15 14:30:28 +02002962 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 +02002963 }
2964
2965 /* set LYD_NEW for all the new nodes, required for validation */
Michal Vasko56daf732020-08-10 10:57:18 +02002966 LYD_TREE_DFS_BEGIN(dup_src, elem) {
Michal Vasko4490d312020-06-16 13:08:55 +02002967 elem->flags |= LYD_NEW;
Michal Vasko56daf732020-08-10 10:57:18 +02002968 LYD_TREE_DFS_END(dup_src, elem);
Michal Vasko4490d312020-06-16 13:08:55 +02002969 }
2970
2971 lyd_insert_node(parent_trg, first_trg, dup_src);
2972 }
2973
2974 return LY_SUCCESS;
2975}
2976
Michal Vasko3a41dff2020-07-15 14:30:28 +02002977static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02002978lyd_merge(struct lyd_node **target, const struct lyd_node *source, uint16_t options, ly_bool nosiblings)
Michal Vasko4490d312020-06-16 13:08:55 +02002979{
2980 const struct lyd_node *sibling_src, *tmp;
Radek Krejci857189e2020-09-01 13:26:36 +02002981 ly_bool first;
Michal Vasko4490d312020-06-16 13:08:55 +02002982
2983 LY_CHECK_ARG_RET(NULL, target, LY_EINVAL);
2984
2985 if (!source) {
2986 /* nothing to merge */
2987 return LY_SUCCESS;
2988 }
2989
Michal Vasko831422b2020-11-24 11:20:51 +01002990 if ((*target && lysc_data_parent((*target)->schema)) || lysc_data_parent(source->schema)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002991 LOGERR(LYD_CTX(source), LY_EINVAL, "Invalid arguments - can merge only 2 top-level subtrees (%s()).", __func__);
Michal Vasko4490d312020-06-16 13:08:55 +02002992 return LY_EINVAL;
2993 }
2994
2995 LY_LIST_FOR_SAFE(source, tmp, sibling_src) {
Radek Krejci857189e2020-09-01 13:26:36 +02002996 first = (sibling_src == source) ? 1 : 0;
Michal Vasko4490d312020-06-16 13:08:55 +02002997 LY_CHECK_RET(lyd_merge_sibling_r(target, NULL, &sibling_src, options));
2998 if (first && !sibling_src) {
2999 /* source was spent (unlinked), move to the next node */
3000 source = tmp;
3001 }
3002
Michal Vasko3a41dff2020-07-15 14:30:28 +02003003 if (nosiblings) {
Michal Vasko4490d312020-06-16 13:08:55 +02003004 break;
3005 }
3006 }
3007
3008 if (options & LYD_MERGE_DESTRUCT) {
3009 /* free any leftover source data that were not merged */
3010 lyd_free_siblings((struct lyd_node *)source);
3011 }
3012
3013 return LY_SUCCESS;
3014}
3015
Michal Vasko3a41dff2020-07-15 14:30:28 +02003016API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003017lyd_merge_tree(struct lyd_node **target, const struct lyd_node *source, uint16_t options)
Michal Vasko3a41dff2020-07-15 14:30:28 +02003018{
3019 return lyd_merge(target, source, options, 1);
3020}
3021
3022API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003023lyd_merge_siblings(struct lyd_node **target, const struct lyd_node *source, uint16_t options)
Michal Vasko3a41dff2020-07-15 14:30:28 +02003024{
3025 return lyd_merge(target, source, options, 0);
3026}
3027
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003028static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003029lyd_path_str_enlarge(char **buffer, size_t *buflen, size_t reqlen, ly_bool is_static)
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003030{
Michal Vasko14654712020-02-06 08:35:21 +01003031 /* ending \0 */
3032 ++reqlen;
3033
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003034 if (reqlen > *buflen) {
3035 if (is_static) {
3036 return LY_EINCOMPLETE;
3037 }
3038
3039 *buffer = ly_realloc(*buffer, reqlen * sizeof **buffer);
3040 if (!*buffer) {
3041 return LY_EMEM;
3042 }
3043
3044 *buflen = reqlen;
3045 }
3046
3047 return LY_SUCCESS;
3048}
3049
Michal Vaskod59035b2020-07-08 12:00:06 +02003050LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003051lyd_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 +02003052{
3053 const struct lyd_node *key;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003054 size_t len;
3055 const char *val;
3056 char quot;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003057
Radek Krejcia1c1e542020-09-29 16:06:52 +02003058 for (key = lyd_child(node); key && (key->schema->flags & LYS_KEY); key = key->next) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02003059 val = LYD_CANON_VALUE(key);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003060 len = 1 + strlen(key->schema->name) + 2 + strlen(val) + 2;
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003061 LY_CHECK_RET(lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static));
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003062
3063 quot = '\'';
3064 if (strchr(val, '\'')) {
3065 quot = '"';
3066 }
3067 *bufused += sprintf(*buffer + *bufused, "[%s=%c%s%c]", key->schema->name, quot, val, quot);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003068 }
3069
3070 return LY_SUCCESS;
3071}
3072
3073/**
3074 * @brief Append leaf-list value predicate to path.
3075 *
3076 * @param[in] node Node to print.
3077 * @param[in,out] buffer Buffer to print to.
3078 * @param[in,out] buflen Current buffer length.
3079 * @param[in,out] bufused Current number of characters used in @p buffer.
3080 * @param[in] is_static Whether buffer is static or can be reallocated.
3081 * @return LY_ERR
3082 */
3083static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003084lyd_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 +02003085{
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003086 size_t len;
3087 const char *val;
3088 char quot;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003089
Michal Vaskob7be7a82020-08-20 09:09:04 +02003090 val = LYD_CANON_VALUE(node);
Radek Krejcif13b87b2020-12-01 22:02:17 +01003091 len = 4 + strlen(val) + 2; /* "[.='" + val + "']" */
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003092 LY_CHECK_RET(lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static));
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003093
3094 quot = '\'';
3095 if (strchr(val, '\'')) {
3096 quot = '"';
3097 }
3098 *bufused += sprintf(*buffer + *bufused, "[.=%c%s%c]", quot, val, quot);
3099
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003100 return LY_SUCCESS;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003101}
3102
3103/**
3104 * @brief Append node position (relative to its other instances) predicate to path.
3105 *
3106 * @param[in] node Node to print.
3107 * @param[in,out] buffer Buffer to print to.
3108 * @param[in,out] buflen Current buffer length.
3109 * @param[in,out] bufused Current number of characters used in @p buffer.
3110 * @param[in] is_static Whether buffer is static or can be reallocated.
3111 * @return LY_ERR
3112 */
3113static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003114lyd_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 +02003115{
3116 const struct lyd_node *first, *iter;
3117 size_t len;
Radek Krejci1deb5be2020-08-26 16:43:36 +02003118 uint64_t pos;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003119 char *val = NULL;
3120 LY_ERR rc;
3121
3122 if (node->parent) {
3123 first = node->parent->child;
3124 } else {
Michal Vaskoe070bfe2020-08-31 12:27:25 +02003125 for (first = node; first->prev->next; first = first->prev) {}
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003126 }
3127 pos = 1;
3128 for (iter = first; iter != node; iter = iter->next) {
3129 if (iter->schema == node->schema) {
3130 ++pos;
3131 }
3132 }
Radek Krejci1deb5be2020-08-26 16:43:36 +02003133 if (asprintf(&val, "%" PRIu64, pos) == -1) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003134 return LY_EMEM;
3135 }
3136
3137 len = 1 + strlen(val) + 1;
3138 rc = lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static);
3139 if (rc != LY_SUCCESS) {
3140 goto cleanup;
3141 }
3142
3143 *bufused += sprintf(*buffer + *bufused, "[%s]", val);
3144
3145cleanup:
3146 free(val);
3147 return rc;
3148}
3149
3150API char *
3151lyd_path(const struct lyd_node *node, LYD_PATH_TYPE pathtype, char *buffer, size_t buflen)
3152{
Radek Krejci857189e2020-09-01 13:26:36 +02003153 ly_bool is_static = 0;
Radek Krejci1deb5be2020-08-26 16:43:36 +02003154 uint32_t i, depth;
Michal Vasko14654712020-02-06 08:35:21 +01003155 size_t bufused = 0, len;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003156 const struct lyd_node *iter;
3157 const struct lys_module *mod;
Michal Vasko790b2bc2020-08-03 13:35:06 +02003158 LY_ERR rc = LY_SUCCESS;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003159
3160 LY_CHECK_ARG_RET(NULL, node, NULL);
3161 if (buffer) {
3162 LY_CHECK_ARG_RET(node->schema->module->ctx, buflen > 1, NULL);
3163 is_static = 1;
Michal Vasko14654712020-02-06 08:35:21 +01003164 } else {
3165 buflen = 0;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003166 }
3167
3168 switch (pathtype) {
Radek Krejci635d2b82021-01-04 11:26:51 +01003169 case LYD_PATH_STD:
3170 case LYD_PATH_STD_NO_LAST_PRED:
Michal Vasko14654712020-02-06 08:35:21 +01003171 depth = 1;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003172 for (iter = node; iter->parent; iter = (const struct lyd_node *)iter->parent) {
3173 ++depth;
3174 }
3175
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003176 goto iter_print;
Michal Vasko14654712020-02-06 08:35:21 +01003177 while (depth) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003178 /* find the right node */
Radek Krejci1e008d22020-08-17 11:37:37 +02003179 for (iter = node, i = 1; i < depth; iter = (const struct lyd_node *)iter->parent, ++i) {}
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003180iter_print:
3181 /* print prefix and name */
3182 mod = NULL;
Michal Vasko69730152020-10-09 16:30:07 +02003183 if (iter->schema && (!iter->parent || (iter->schema->module != iter->parent->schema->module))) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003184 mod = iter->schema->module;
3185 }
3186
3187 /* realloc string */
Michal Vaskoad92b672020-11-12 13:11:31 +01003188 len = 1 + (mod ? strlen(mod->name) + 1 : 0) + (iter->schema ? strlen(iter->schema->name) :
3189 strlen(((struct lyd_node_opaq *)iter)->name.name));
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003190 rc = lyd_path_str_enlarge(&buffer, &buflen, bufused + len, is_static);
3191 if (rc != LY_SUCCESS) {
3192 break;
3193 }
3194
3195 /* print next node */
Radek Krejci1798aae2020-07-14 13:26:06 +02003196 bufused += sprintf(buffer + bufused, "/%s%s%s", mod ? mod->name : "", mod ? ":" : "",
Michal Vaskoad92b672020-11-12 13:11:31 +01003197 iter->schema ? iter->schema->name : ((struct lyd_node_opaq *)iter)->name.name);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003198
Michal Vasko790b2bc2020-08-03 13:35:06 +02003199 /* do not always print the last (first) predicate */
Radek Krejci635d2b82021-01-04 11:26:51 +01003200 if (iter->schema && ((depth > 1) || (pathtype == LYD_PATH_STD))) {
Michal Vasko790b2bc2020-08-03 13:35:06 +02003201 switch (iter->schema->nodetype) {
3202 case LYS_LIST:
3203 if (iter->schema->flags & LYS_KEYLESS) {
3204 /* print its position */
3205 rc = lyd_path_position_predicate(iter, &buffer, &buflen, &bufused, is_static);
3206 } else {
3207 /* print all list keys in predicates */
3208 rc = lyd_path_list_predicate(iter, &buffer, &buflen, &bufused, is_static);
3209 }
3210 break;
3211 case LYS_LEAFLIST:
3212 if (iter->schema->flags & LYS_CONFIG_W) {
3213 /* print leaf-list value */
3214 rc = lyd_path_leaflist_predicate(iter, &buffer, &buflen, &bufused, is_static);
3215 } else {
3216 /* print its position */
3217 rc = lyd_path_position_predicate(iter, &buffer, &buflen, &bufused, is_static);
3218 }
3219 break;
3220 default:
3221 /* nothing to print more */
3222 break;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003223 }
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003224 }
3225 if (rc != LY_SUCCESS) {
3226 break;
3227 }
3228
Michal Vasko14654712020-02-06 08:35:21 +01003229 --depth;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003230 }
3231 break;
3232 }
3233
3234 return buffer;
3235}
Michal Vaskoe444f752020-02-10 12:20:06 +01003236
Michal Vasko25a32822020-07-09 15:48:22 +02003237API struct lyd_meta *
3238lyd_find_meta(const struct lyd_meta *first, const struct lys_module *module, const char *name)
3239{
3240 struct lyd_meta *ret = NULL;
3241 const struct ly_ctx *ctx;
3242 const char *prefix, *tmp;
3243 char *str;
3244 size_t pref_len, name_len;
3245
3246 LY_CHECK_ARG_RET(NULL, module || strchr(name, ':'), name, NULL);
3247
3248 if (!first) {
3249 return NULL;
3250 }
3251
3252 ctx = first->annotation->module->ctx;
3253
3254 /* parse the name */
3255 tmp = name;
3256 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
3257 LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name);
3258 return NULL;
3259 }
3260
3261 /* find the module */
3262 if (prefix) {
3263 str = strndup(prefix, pref_len);
3264 module = ly_ctx_get_module_latest(ctx, str);
3265 free(str);
3266 LY_CHECK_ERR_RET(!module, LOGERR(ctx, LY_EINVAL, "Module \"%.*s\" not found.", pref_len, prefix), NULL);
3267 }
3268
3269 /* find the metadata */
3270 LY_LIST_FOR(first, first) {
3271 if ((first->annotation->module == module) && !strcmp(first->name, name)) {
3272 ret = (struct lyd_meta *)first;
3273 break;
3274 }
3275 }
3276
3277 return ret;
3278}
3279
Michal Vasko9b368d32020-02-14 13:53:31 +01003280API LY_ERR
Michal Vaskoe444f752020-02-10 12:20:06 +01003281lyd_find_sibling_first(const struct lyd_node *siblings, const struct lyd_node *target, struct lyd_node **match)
3282{
3283 struct lyd_node **match_p;
3284 struct lyd_node_inner *parent;
3285
Michal Vaskof03ed032020-03-04 13:31:44 +01003286 LY_CHECK_ARG_RET(NULL, target, LY_EINVAL);
Michal Vaskoe444f752020-02-10 12:20:06 +01003287
Michal Vasko6da1e952020-12-09 18:14:38 +01003288 if (!siblings || (siblings->schema && target->schema &&
3289 (lysc_data_parent(siblings->schema) != lysc_data_parent(target->schema)))) {
Michal Vasko62ed12d2020-05-21 10:08:25 +02003290 /* no data or schema mismatch */
Michal Vasko9b368d32020-02-14 13:53:31 +01003291 if (match) {
3292 *match = NULL;
3293 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003294 return LY_ENOTFOUND;
3295 }
3296
3297 /* find first sibling */
3298 if (siblings->parent) {
3299 siblings = siblings->parent->child;
3300 } else {
3301 while (siblings->prev->next) {
3302 siblings = siblings->prev;
3303 }
3304 }
3305
3306 parent = (struct lyd_node_inner *)siblings->parent;
Michal Vasko6da1e952020-12-09 18:14:38 +01003307 if (parent && parent->schema && parent->children_ht) {
Michal Vaskoe444f752020-02-10 12:20:06 +01003308 assert(target->hash);
3309
3310 /* find by hash */
3311 if (!lyht_find(parent->children_ht, &target, target->hash, (void **)&match_p)) {
Michal Vaskoda859032020-07-14 12:20:14 +02003312 /* check even value when needed */
Michal Vasko8f359bf2020-07-28 10:41:15 +02003313 if (!(target->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !lyd_compare_single(target, *match_p, 0)) {
Michal Vaskoda859032020-07-14 12:20:14 +02003314 siblings = *match_p;
3315 } else {
3316 siblings = NULL;
3317 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003318 } else {
3319 /* not found */
3320 siblings = NULL;
3321 }
3322 } else {
3323 /* no children hash table */
Michal Vaskod989ba02020-08-24 10:59:24 +02003324 for ( ; siblings; siblings = siblings->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02003325 if (!lyd_compare_single(siblings, target, 0)) {
Michal Vaskoe444f752020-02-10 12:20:06 +01003326 break;
3327 }
3328 }
3329 }
3330
3331 if (!siblings) {
Michal Vasko9b368d32020-02-14 13:53:31 +01003332 if (match) {
3333 *match = NULL;
3334 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003335 return LY_ENOTFOUND;
3336 }
3337
Michal Vasko9b368d32020-02-14 13:53:31 +01003338 if (match) {
3339 *match = (struct lyd_node *)siblings;
3340 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003341 return LY_SUCCESS;
3342}
3343
Radek Krejci857189e2020-09-01 13:26:36 +02003344/**
3345 * @brief Comparison callback to match schema node with a schema of a data node.
3346 *
3347 * @param[in] val1_p Pointer to the schema node
3348 * @param[in] val2_p Pointer to the data node
3349 * Implementation of ::values_equal_cb.
3350 */
3351static ly_bool
3352lyd_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 +01003353{
3354 struct lysc_node *val1;
3355 struct lyd_node *val2;
3356
3357 val1 = *((struct lysc_node **)val1_p);
3358 val2 = *((struct lyd_node **)val2_p);
3359
Michal Vasko90932a92020-02-12 14:33:03 +01003360 if (val1 == val2->schema) {
3361 /* schema match is enough */
3362 return 1;
3363 } else {
3364 return 0;
3365 }
3366}
3367
Michal Vasko92239c72020-11-18 18:17:25 +01003368/**
3369 * @brief Search in the given siblings (NOT recursively) for the first schema node data instance.
3370 * Uses hashes - should be used whenever possible for best performance.
3371 *
3372 * @param[in] siblings Siblings to search in including preceding and succeeding nodes.
3373 * @param[in] schema Target data node schema to find.
3374 * @param[out] match Can be NULL, otherwise the found data node.
3375 * @return LY_SUCCESS on success, @p match set.
3376 * @return LY_ENOTFOUND if not found, @p match set to NULL.
3377 * @return LY_ERR value if another error occurred.
3378 */
Michal Vasko90932a92020-02-12 14:33:03 +01003379static LY_ERR
3380lyd_find_sibling_schema(const struct lyd_node *siblings, const struct lysc_node *schema, struct lyd_node **match)
3381{
3382 struct lyd_node **match_p;
3383 struct lyd_node_inner *parent;
3384 uint32_t hash;
3385 values_equal_cb ht_cb;
3386
Michal Vaskob104f112020-07-17 09:54:54 +02003387 assert(siblings && schema);
Michal Vasko90932a92020-02-12 14:33:03 +01003388
3389 parent = (struct lyd_node_inner *)siblings->parent;
Michal Vasko08fd6132020-11-18 18:17:45 +01003390 if (parent && parent->schema && parent->children_ht) {
Michal Vasko90932a92020-02-12 14:33:03 +01003391 /* calculate our hash */
3392 hash = dict_hash_multi(0, schema->module->name, strlen(schema->module->name));
3393 hash = dict_hash_multi(hash, schema->name, strlen(schema->name));
3394 hash = dict_hash_multi(hash, NULL, 0);
3395
3396 /* use special hash table function */
3397 ht_cb = lyht_set_cb(parent->children_ht, lyd_hash_table_schema_val_equal);
3398
3399 /* find by hash */
3400 if (!lyht_find(parent->children_ht, &schema, hash, (void **)&match_p)) {
3401 siblings = *match_p;
3402 } else {
3403 /* not found */
3404 siblings = NULL;
3405 }
3406
3407 /* set the original hash table compare function back */
3408 lyht_set_cb(parent->children_ht, ht_cb);
3409 } else {
Michal Vaskob104f112020-07-17 09:54:54 +02003410 /* find first sibling */
3411 if (siblings->parent) {
3412 siblings = siblings->parent->child;
3413 } else {
3414 while (siblings->prev->next) {
3415 siblings = siblings->prev;
3416 }
3417 }
3418
3419 /* search manually without hashes */
Michal Vaskod989ba02020-08-24 10:59:24 +02003420 for ( ; siblings; siblings = siblings->next) {
Michal Vasko90932a92020-02-12 14:33:03 +01003421 if (siblings->schema == schema) {
3422 /* schema match is enough */
3423 break;
3424 }
3425 }
3426 }
3427
3428 if (!siblings) {
Michal Vasko9b368d32020-02-14 13:53:31 +01003429 if (match) {
3430 *match = NULL;
3431 }
Michal Vasko90932a92020-02-12 14:33:03 +01003432 return LY_ENOTFOUND;
3433 }
3434
Michal Vasko9b368d32020-02-14 13:53:31 +01003435 if (match) {
3436 *match = (struct lyd_node *)siblings;
3437 }
Michal Vasko90932a92020-02-12 14:33:03 +01003438 return LY_SUCCESS;
3439}
3440
Michal Vaskoe444f752020-02-10 12:20:06 +01003441API LY_ERR
3442lyd_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 +02003443 size_t val_len, struct lyd_node **match)
Michal Vaskoe444f752020-02-10 12:20:06 +01003444{
3445 LY_ERR rc;
3446 struct lyd_node *target = NULL;
3447
Michal Vasko4c583e82020-07-17 12:16:14 +02003448 LY_CHECK_ARG_RET(NULL, schema, !(schema->nodetype & (LYS_CHOICE | LYS_CASE)), LY_EINVAL);
Michal Vaskoe444f752020-02-10 12:20:06 +01003449
Michal Vasko08fd6132020-11-18 18:17:45 +01003450 if (!siblings || (siblings->schema && (lysc_data_parent(siblings->schema) != lysc_data_parent(schema)))) {
Michal Vasko62ed12d2020-05-21 10:08:25 +02003451 /* no data or schema mismatch */
Michal Vasko9b368d32020-02-14 13:53:31 +01003452 if (match) {
3453 *match = NULL;
3454 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003455 return LY_ENOTFOUND;
3456 }
3457
Michal Vaskof03ed032020-03-04 13:31:44 +01003458 if (key_or_value && !val_len) {
3459 val_len = strlen(key_or_value);
3460 }
3461
Michal Vaskob104f112020-07-17 09:54:54 +02003462 if ((schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) && key_or_value) {
3463 /* create a data node and find the instance */
3464 if (schema->nodetype == LYS_LEAFLIST) {
3465 /* target used attributes: schema, hash, value */
Michal Vaskofeca4fb2020-10-05 08:58:40 +02003466 rc = lyd_create_term(schema, key_or_value, val_len, NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, NULL, &target);
3467 LY_CHECK_RET(rc);
Michal Vaskob104f112020-07-17 09:54:54 +02003468 } else {
Michal Vasko90932a92020-02-12 14:33:03 +01003469 /* target used attributes: schema, hash, child (all keys) */
Michal Vasko004d3152020-06-11 19:59:22 +02003470 LY_CHECK_RET(lyd_create_list2(schema, key_or_value, val_len, &target));
Michal Vasko90932a92020-02-12 14:33:03 +01003471 }
3472
3473 /* find it */
3474 rc = lyd_find_sibling_first(siblings, target, match);
Michal Vaskob104f112020-07-17 09:54:54 +02003475 } else {
3476 /* find the first schema node instance */
3477 rc = lyd_find_sibling_schema(siblings, schema, match);
Michal Vaskoe444f752020-02-10 12:20:06 +01003478 }
3479
Michal Vaskoe444f752020-02-10 12:20:06 +01003480 lyd_free_tree(target);
3481 return rc;
3482}
Michal Vaskoccc02342020-05-21 10:09:21 +02003483
3484API LY_ERR
3485lyd_find_xpath(const struct lyd_node *ctx_node, const char *xpath, struct ly_set **set)
3486{
3487 LY_ERR ret = LY_SUCCESS;
3488 struct lyxp_set xp_set;
Radek Krejcif03a9e22020-09-18 20:09:31 +02003489 struct lyxp_expr *exp = NULL;
Michal Vaskoccc02342020-05-21 10:09:21 +02003490 uint32_t i;
3491
3492 LY_CHECK_ARG_RET(NULL, ctx_node, xpath, set, LY_EINVAL);
3493
3494 memset(&xp_set, 0, sizeof xp_set);
3495
3496 /* compile expression */
Radek Krejcif03a9e22020-09-18 20:09:31 +02003497 ret = lyxp_expr_parse((struct ly_ctx *)LYD_CTX(ctx_node), xpath, 0, 1, &exp);
3498 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003499
3500 /* evaluate expression */
Michal Vasko400e9672021-01-11 13:39:17 +01003501 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 +02003502 LY_CHECK_GOTO(ret, cleanup);
3503
3504 /* allocate return set */
Radek Krejciba03a5a2020-08-27 14:40:41 +02003505 ret = ly_set_new(set);
3506 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003507
3508 /* transform into ly_set */
3509 if (xp_set.type == LYXP_SET_NODE_SET) {
3510 /* allocate memory for all the elements once (even though not all items must be elements but most likely will be) */
3511 (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs);
Michal Vaskob7be7a82020-08-20 09:09:04 +02003512 LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(LYD_CTX(ctx_node)); ret = LY_EMEM, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003513 (*set)->size = xp_set.used;
3514
3515 for (i = 0; i < xp_set.used; ++i) {
3516 if (xp_set.val.nodes[i].type == LYXP_NODE_ELEM) {
Radek Krejci3d92e442020-10-12 12:48:13 +02003517 ret = ly_set_add(*set, xp_set.val.nodes[i].node, 1, NULL);
Radek Krejciba03a5a2020-08-27 14:40:41 +02003518 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02003519 }
3520 }
3521 }
3522
3523cleanup:
Michal Vasko0691d522020-05-21 13:21:47 +02003524 lyxp_set_free_content(&xp_set);
Michal Vaskob7be7a82020-08-20 09:09:04 +02003525 lyxp_expr_free((struct ly_ctx *)LYD_CTX(ctx_node), exp);
Radek Krejci8f45abc2020-11-26 12:15:13 +01003526 if (ret) {
3527 ly_set_free(*set, NULL);
3528 *set = NULL;
3529 }
Michal Vaskoccc02342020-05-21 10:09:21 +02003530 return ret;
3531}
Radek Krejcica989142020-11-05 11:32:22 +01003532
Michal Vasko3e1f6552021-01-14 09:27:55 +01003533API LY_ERR
3534lyd_find_path(const struct lyd_node *ctx_node, const char *path, ly_bool output, struct lyd_node **match)
3535{
3536 LY_ERR ret = LY_SUCCESS;
3537 struct lyxp_expr *expr = NULL;
3538 struct ly_path *lypath = NULL;
3539
3540 LY_CHECK_ARG_RET(NULL, ctx_node, ctx_node->schema, path, LY_EINVAL);
3541
3542 /* parse the path */
3543 ret = ly_path_parse(LYD_CTX(ctx_node), ctx_node->schema, path, strlen(path), LY_PATH_BEGIN_EITHER, LY_PATH_LREF_FALSE,
3544 LY_PATH_PREFIX_OPTIONAL, LY_PATH_PRED_SIMPLE, &expr);
3545 LY_CHECK_GOTO(ret, cleanup);
3546
3547 /* compile the path */
3548 ret = ly_path_compile(LYD_CTX(ctx_node), NULL, ctx_node->schema, expr, LY_PATH_LREF_FALSE,
3549 output ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT, LY_PATH_TARGET_SINGLE, LY_PREF_JSON,
3550 (void *)LYD_CTX(ctx_node), NULL, &lypath);
3551 LY_CHECK_GOTO(ret, cleanup);
3552
3553 /* evaluate the path */
3554 ret = ly_path_eval_partial(lypath, ctx_node, NULL, match);
3555
3556cleanup:
3557 lyxp_expr_free(LYD_CTX(ctx_node), expr);
3558 ly_path_free(LYD_CTX(ctx_node), lypath);
3559 return ret;
3560}
3561
Radek Krejcica989142020-11-05 11:32:22 +01003562API uint32_t
3563lyd_list_pos(const struct lyd_node *instance)
3564{
3565 const struct lyd_node *iter = NULL;
3566 uint32_t pos = 0;
3567
3568 if (!instance || !(instance->schema->nodetype & (LYS_LIST | LYS_LEAFLIST))) {
3569 return 0;
3570 }
3571
3572 /* data instances are ordered, so we can stop when we found instance of other schema node */
3573 for (iter = instance; iter->schema == instance->schema; iter = iter->prev) {
Radek Krejcibb27df32020-11-13 15:39:16 +01003574 if (pos && (iter->next == NULL)) {
Radek Krejcica989142020-11-05 11:32:22 +01003575 /* overrun to the end of the siblings list */
3576 break;
3577 }
3578 ++pos;
3579 }
3580
3581 return pos;
3582}
Radek Krejci4233f9b2020-11-05 12:38:35 +01003583
3584API struct lyd_node *
3585lyd_first_sibling(const struct lyd_node *node)
3586{
3587 struct lyd_node *start;
3588
3589 if (!node) {
3590 return NULL;
3591 }
3592
3593 /* get the first sibling */
3594 if (node->parent) {
3595 start = node->parent->child;
3596 } else {
Radek Krejcibb27df32020-11-13 15:39:16 +01003597 for (start = (struct lyd_node *)node; start->prev->next; start = start->prev) {}
Radek Krejci4233f9b2020-11-05 12:38:35 +01003598 }
3599
3600 return start;
3601}