blob: e7720ae04f377175c1bdaf94171173384caa7bff [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 Krejci0aa1f702021-04-01 16:16:19 +020040#include "plugins.h"
Radek Krejcif1ca0ac2021-04-12 16:00:06 +020041#include "plugins_exts/metadata.h"
Radek Krejci3e6632f2021-03-22 22:08:21 +010042#include "plugins_internal.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"
Radek Krejci859a15a2021-03-05 20:56:59 +010047#include "tree_edit.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020048#include "tree_schema.h"
49#include "tree_schema_internal.h"
Michal Vaskoa6669ba2020-08-06 16:14:26 +020050#include "validation.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020051#include "xml.h"
52#include "xpath.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020053
Michal Vaskob104f112020-07-17 09:54:54 +020054static LY_ERR lyd_find_sibling_schema(const struct lyd_node *siblings, const struct lysc_node *schema,
Radek Krejci0f969882020-08-21 16:56:47 +020055 struct lyd_node **match);
Michal Vaskob104f112020-07-17 09:54:54 +020056
Radek Krejci084289f2019-07-09 17:35:30 +020057LY_ERR
Radek Krejcif9943642021-04-26 10:18:21 +020058lyd_value_store(const struct ly_ctx *ctx, struct lyd_value *val, const struct lysc_type *type, const void *value,
Radek Krejci8df109d2021-04-23 12:19:08 +020059 size_t value_len, ly_bool *dynamic, LY_VALUE_FORMAT format, void *prefix_data, uint32_t hints,
Radek Krejci2efc45b2020-12-22 16:25:44 +010060 const struct lysc_node *ctx_node, ly_bool *incomplete)
Radek Krejci084289f2019-07-09 17:35:30 +020061{
Michal Vaskofeca4fb2020-10-05 08:58:40 +020062 LY_ERR ret;
Radek Krejci084289f2019-07-09 17:35:30 +020063 struct ly_err_item *err = NULL;
Radek Krejci0b013302021-03-29 15:22:32 +020064 uint32_t options = (dynamic && *dynamic ? LYPLG_TYPE_STORE_DYNAMIC : 0);
Radek Krejci084289f2019-07-09 17:35:30 +020065
Michal Vasko62ed8652021-04-28 09:38:37 +020066 if (!value) {
67 value = "";
68 }
Michal Vaskofeca4fb2020-10-05 08:58:40 +020069 if (incomplete) {
70 *incomplete = 0;
Radek Krejci084289f2019-07-09 17:35:30 +020071 }
72
Michal Vasko405cc9e2020-12-01 12:01:27 +010073 ret = type->plugin->store(ctx, type, value, value_len, options, format, prefix_data, hints, ctx_node, val, NULL, &err);
Radek Iša96b2de12021-02-16 10:32:57 +010074 if (dynamic) {
75 *dynamic = 0;
76 }
77
Michal Vasko90932a92020-02-12 14:33:03 +010078 if (ret == LY_EINCOMPLETE) {
Michal Vaskofeca4fb2020-10-05 08:58:40 +020079 if (incomplete) {
80 *incomplete = 1;
81 }
82 } else if (ret) {
83 if (err) {
aPiecek4204b612021-05-03 09:06:16 +020084 LOGVAL_ERRITEM(ctx, err);
Michal Vaskofeca4fb2020-10-05 08:58:40 +020085 ly_err_free(err);
86 } else {
Radek Krejci2efc45b2020-12-22 16:25:44 +010087 LOGVAL(ctx, LYVE_OTHER, "Storing value \"%.*s\" failed.", (int)value_len, value);
Michal Vaskofeca4fb2020-10-05 08:58:40 +020088 }
89 return ret;
Michal Vasko90932a92020-02-12 14:33:03 +010090 }
91
Michal Vaskofeca4fb2020-10-05 08:58:40 +020092 return LY_SUCCESS;
Michal Vasko90932a92020-02-12 14:33:03 +010093}
94
Radek Krejci38d85362019-09-05 16:26:38 +020095LY_ERR
Michal Vaskofeca4fb2020-10-05 08:58:40 +020096lyd_value_validate_incomplete(const struct ly_ctx *ctx, const struct lysc_type *type, struct lyd_value *val,
Radek Krejci2efc45b2020-12-22 16:25:44 +010097 const struct lyd_node *ctx_node, const struct lyd_node *tree)
Radek Krejci38d85362019-09-05 16:26:38 +020098{
Michal Vaskofeca4fb2020-10-05 08:58:40 +020099 LY_ERR ret;
Radek Krejci38d85362019-09-05 16:26:38 +0200100 struct ly_err_item *err = NULL;
Radek Krejci38d85362019-09-05 16:26:38 +0200101
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200102 assert(type->plugin->validate);
Michal Vasko8d544252020-03-02 10:19:52 +0100103
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200104 ret = type->plugin->validate(ctx, type, ctx_node, tree, val, &err);
105 if (ret) {
Radek Krejci38d85362019-09-05 16:26:38 +0200106 if (err) {
aPiecek4204b612021-05-03 09:06:16 +0200107 LOGVAL_ERRITEM(ctx, err);
Radek Krejci38d85362019-09-05 16:26:38 +0200108 ly_err_free(err);
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200109 } else {
Radek Krejci6d5ba0c2021-04-26 07:49:59 +0200110 LOGVAL(ctx, LYVE_OTHER, "Resolving value \"%s\" failed.", type->plugin->print(ctx, val, LY_VALUE_CANON,
111 NULL, NULL, NULL));
Radek Krejci38d85362019-09-05 16:26:38 +0200112 }
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200113 return ret;
Radek Krejci38d85362019-09-05 16:26:38 +0200114 }
115
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200116 return LY_SUCCESS;
Radek Krejci38d85362019-09-05 16:26:38 +0200117}
118
Michal Vaskof937cfe2020-08-03 16:07:12 +0200119LY_ERR
Michal Vaskoaebbce02021-04-06 09:23:37 +0200120lys_value_validate(const struct ly_ctx *ctx, const struct lysc_node *node, const char *value, size_t value_len,
Radek Krejci8df109d2021-04-23 12:19:08 +0200121 LY_VALUE_FORMAT format, void *prefix_data)
Radek Krejci084289f2019-07-09 17:35:30 +0200122{
123 LY_ERR rc = LY_SUCCESS;
124 struct ly_err_item *err = NULL;
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200125 struct lyd_value storage;
Radek Krejci084289f2019-07-09 17:35:30 +0200126 struct lysc_type *type;
Radek Krejci084289f2019-07-09 17:35:30 +0200127
128 LY_CHECK_ARG_RET(ctx, node, value, LY_EINVAL);
129
130 if (!(node->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
131 LOGARG(ctx, node);
132 return LY_EINVAL;
133 }
134
Michal Vasko22df3f02020-08-24 13:29:22 +0200135 type = ((struct lysc_node_leaf *)node)->type;
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200136 rc = type->plugin->store(ctx ? ctx : node->module->ctx, type, value, value_len, 0, format, prefix_data,
Michal Vasko405cc9e2020-12-01 12:01:27 +0100137 LYD_HINT_SCHEMA, node, &storage, NULL, &err);
Radek Krejci73dead22019-07-11 16:46:16 +0200138 if (rc == LY_EINCOMPLETE) {
139 /* actually success since we do not provide the context tree and call validation with
140 * LY_TYPE_OPTS_INCOMPLETE_DATA */
141 rc = LY_SUCCESS;
142 } else if (rc && err) {
143 if (ctx) {
144 /* log only in case the ctx was provided as input parameter */
Radek Krejciddace2c2021-01-08 11:30:56 +0100145 LOG_LOCSET(NULL, NULL, err->path, NULL);
aPiecek4204b612021-05-03 09:06:16 +0200146 LOGVAL_ERRITEM(ctx, err);
Radek Krejciddace2c2021-01-08 11:30:56 +0100147 LOG_LOCBACK(0, 0, 1, 0);
Radek Krejci084289f2019-07-09 17:35:30 +0200148 }
Radek Krejci73dead22019-07-11 16:46:16 +0200149 ly_err_free(err);
Radek Krejci084289f2019-07-09 17:35:30 +0200150 }
151
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200152 if (!rc) {
153 type->plugin->free(ctx ? ctx : node->module->ctx, &storage);
154 }
Radek Krejci084289f2019-07-09 17:35:30 +0200155 return rc;
156}
157
158API LY_ERR
Michal Vaskoaebbce02021-04-06 09:23:37 +0200159lyd_value_validate(const struct ly_ctx *ctx, const struct lysc_node *schema, const char *value, size_t value_len,
160 const struct lyd_node *ctx_node, const struct lysc_type **realtype, const char **canonical)
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};
Radek Krejci09c77442021-04-26 11:10:34 +0200166 ly_bool stored = 0, log = 1;
Radek Krejci084289f2019-07-09 17:35:30 +0200167
Michal Vaskoaebbce02021-04-06 09:23:37 +0200168 LY_CHECK_ARG_RET(ctx, schema, value, LY_EINVAL);
Radek Krejci084289f2019-07-09 17:35:30 +0200169
Radek Krejci09c77442021-04-26 11:10:34 +0200170 if (!ctx) {
171 ctx = schema->module->ctx;
172 log = 0;
173 }
Michal Vaskoaebbce02021-04-06 09:23:37 +0200174 type = ((struct lysc_node_leaf *)schema)->type;
175
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200176 /* store */
Radek Krejci09c77442021-04-26 11:10:34 +0200177 rc = type->plugin->store(ctx, type, value, value_len, 0, LY_VALUE_JSON, NULL,
Michal Vaskoaebbce02021-04-06 09:23:37 +0200178 LYD_HINT_DATA, schema, &val, NULL, &err);
179 if (!rc || (rc == LY_EINCOMPLETE)) {
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200180 stored = 1;
Michal Vaskoaebbce02021-04-06 09:23:37 +0200181 }
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200182
Michal Vaskoaebbce02021-04-06 09:23:37 +0200183 if (ctx_node && (rc == LY_EINCOMPLETE)) {
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200184 /* resolve */
Radek Krejci09c77442021-04-26 11:10:34 +0200185 rc = type->plugin->validate(ctx, type, ctx_node, ctx_node, &val, &err);
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200186 }
187
Michal Vaskoaebbce02021-04-06 09:23:37 +0200188 if (rc && (rc != LY_EINCOMPLETE) && err) {
Radek Krejci09c77442021-04-26 11:10:34 +0200189 if (log) {
Michal Vaskoaebbce02021-04-06 09:23:37 +0200190 /* log error */
191 if (err->path) {
192 LOG_LOCSET(NULL, NULL, err->path, NULL);
193 } else if (ctx_node) {
194 LOG_LOCSET(NULL, ctx_node, NULL, NULL);
195 } else {
196 LOG_LOCSET(schema, NULL, NULL, NULL);
Radek Krejci084289f2019-07-09 17:35:30 +0200197 }
aPiecek4204b612021-05-03 09:06:16 +0200198 LOGVAL_ERRITEM(ctx, err);
Michal Vaskoaebbce02021-04-06 09:23:37 +0200199 if (err->path) {
200 LOG_LOCBACK(0, 0, 1, 0);
201 } else if (ctx_node) {
202 LOG_LOCBACK(0, 1, 0, 0);
203 } else {
204 LOG_LOCBACK(1, 0, 0, 0);
205 }
Radek Krejci084289f2019-07-09 17:35:30 +0200206 }
Michal Vaskoaebbce02021-04-06 09:23:37 +0200207 ly_err_free(err);
Radek Krejci084289f2019-07-09 17:35:30 +0200208 }
209
Michal Vaskoaebbce02021-04-06 09:23:37 +0200210 if (!rc || (rc == LY_EINCOMPLETE)) {
211 if (realtype) {
212 /* return realtype */
213 if (val.realtype->basetype == LY_TYPE_UNION) {
214 *realtype = val.subvalue->value.realtype;
215 } else {
216 *realtype = val.realtype;
217 }
218 }
219
220 if (canonical) {
221 /* return canonical value */
Radek Krejci6d5ba0c2021-04-26 07:49:59 +0200222 lydict_insert(ctx, val.realtype->plugin->print(ctx, &val, LY_VALUE_CANON, NULL, NULL, NULL), 0, canonical);
Michal Vasko29134f82020-11-13 18:03:20 +0100223 }
Michal Vasko3701af52020-08-03 14:29:38 +0200224 }
225
Michal Vaskoaebbce02021-04-06 09:23:37 +0200226 if (stored) {
227 /* free value */
228 type->plugin->free(ctx ? ctx : schema->module->ctx, &val);
229 }
230 return rc;
Radek Krejci084289f2019-07-09 17:35:30 +0200231}
232
233API LY_ERR
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200234lyd_value_compare(const struct lyd_node_term *node, const char *value, size_t value_len)
Radek Krejci084289f2019-07-09 17:35:30 +0200235{
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200236 LY_ERR ret = LY_SUCCESS;
Radek Krejci084289f2019-07-09 17:35:30 +0200237 struct ly_ctx *ctx;
238 struct lysc_type *type;
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200239 struct lyd_value val = {0};
Radek Krejci084289f2019-07-09 17:35:30 +0200240
241 LY_CHECK_ARG_RET(node ? node->schema->module->ctx : NULL, node, value, LY_EINVAL);
242
243 ctx = node->schema->module->ctx;
Michal Vasko22df3f02020-08-24 13:29:22 +0200244 type = ((struct lysc_node_leaf *)node->schema)->type;
Radek Krejci084289f2019-07-09 17:35:30 +0200245
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200246 /* store the value */
Michal Vasko9e685082021-01-29 14:49:09 +0100247 LOG_LOCSET(node->schema, &node->node, NULL, NULL);
Radek Krejci8df109d2021-04-23 12:19:08 +0200248 ret = lyd_value_store(ctx, &val, type, value, value_len, NULL, LY_VALUE_JSON, NULL, LYD_HINT_DATA, node->schema, NULL);
Radek Krejciddace2c2021-01-08 11:30:56 +0100249 LOG_LOCBACK(1, 1, 0, 0);
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200250 LY_CHECK_RET(ret);
Radek Krejci084289f2019-07-09 17:35:30 +0200251
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200252 /* compare values */
253 ret = type->plugin->compare(&node->value, &val);
Radek Krejci084289f2019-07-09 17:35:30 +0200254
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200255 type->plugin->free(ctx, &val);
Radek Krejci084289f2019-07-09 17:35:30 +0200256 return ret;
257}
258
Radek Krejci19611252020-10-04 13:54:53 +0200259API ly_bool
260lyd_is_default(const struct lyd_node *node)
261{
262 const struct lysc_node_leaf *leaf;
263 const struct lysc_node_leaflist *llist;
264 const struct lyd_node_term *term;
265 LY_ARRAY_COUNT_TYPE u;
266
267 assert(node->schema->nodetype & LYD_NODE_TERM);
268 term = (const struct lyd_node_term *)node;
269
270 if (node->schema->nodetype == LYS_LEAF) {
271 leaf = (const struct lysc_node_leaf *)node->schema;
272 if (!leaf->dflt) {
273 return 0;
274 }
275
276 /* compare with the default value */
277 if (leaf->type->plugin->compare(&term->value, leaf->dflt)) {
278 return 0;
279 }
280 } else {
281 llist = (const struct lysc_node_leaflist *)node->schema;
282 if (!llist->dflts) {
283 return 0;
284 }
285
286 LY_ARRAY_FOR(llist->dflts, u) {
287 /* compare with each possible default value */
288 if (llist->type->plugin->compare(&term->value, llist->dflts[u])) {
289 return 0;
290 }
291 }
292 }
293
294 return 1;
295}
296
Radek Krejci7931b192020-06-25 17:05:03 +0200297static LYD_FORMAT
Michal Vasko63f3d842020-07-08 10:10:14 +0200298lyd_parse_get_format(const struct ly_in *in, LYD_FORMAT format)
Radek Krejcie7b95092019-05-15 11:03:07 +0200299{
Michal Vasko69730152020-10-09 16:30:07 +0200300 if (!format && (in->type == LY_IN_FILEPATH)) {
Radek Krejcie7b95092019-05-15 11:03:07 +0200301 /* unknown format - try to detect it from filename's suffix */
Radek Krejci7931b192020-06-25 17:05:03 +0200302 const char *path = in->method.fpath.filepath;
303 size_t len = strlen(path);
Radek Krejcie7b95092019-05-15 11:03:07 +0200304
305 /* ignore trailing whitespaces */
Michal Vaskod989ba02020-08-24 10:59:24 +0200306 for ( ; len > 0 && isspace(path[len - 1]); len--) {}
Radek Krejcie7b95092019-05-15 11:03:07 +0200307
Radek Krejcif13b87b2020-12-01 22:02:17 +0100308 if ((len >= LY_XML_SUFFIX_LEN + 1) &&
309 !strncmp(&path[len - LY_XML_SUFFIX_LEN], LY_XML_SUFFIX, LY_XML_SUFFIX_LEN)) {
Radek Krejcie7b95092019-05-15 11:03:07 +0200310 format = LYD_XML;
Radek Krejcif13b87b2020-12-01 22:02:17 +0100311 } else if ((len >= LY_JSON_SUFFIX_LEN + 1) &&
312 !strncmp(&path[len - LY_JSON_SUFFIX_LEN], LY_JSON_SUFFIX, LY_JSON_SUFFIX_LEN)) {
Radek Krejcie7b95092019-05-15 11:03:07 +0200313 format = LYD_JSON;
Radek Krejcif13b87b2020-12-01 22:02:17 +0100314 } else if ((len >= LY_LYB_SUFFIX_LEN + 1) &&
315 !strncmp(&path[len - LY_LYB_SUFFIX_LEN], LY_LYB_SUFFIX, LY_LYB_SUFFIX_LEN)) {
Radek Krejcie7b95092019-05-15 11:03:07 +0200316 format = LYD_LYB;
Radek Krejci7931b192020-06-25 17:05:03 +0200317 } /* else still unknown */
Radek Krejcie7b95092019-05-15 11:03:07 +0200318 }
319
Radek Krejci7931b192020-06-25 17:05:03 +0200320 return format;
321}
Radek Krejcie7b95092019-05-15 11:03:07 +0200322
Michal Vaskoe0665742021-02-11 11:08:44 +0100323/**
324 * @brief Parse YANG data into a data tree.
325 *
326 * @param[in] ctx libyang context.
Radek Krejcif16e2542021-02-17 15:39:23 +0100327 * @param[in] ext Optional extenion instance to parse data following the schema tree specified in the extension instance
Michal Vaskoe0665742021-02-11 11:08:44 +0100328 * @param[in] parent Parent to connect the parsed nodes to, if any.
329 * @param[in,out] first_p Pointer to the first top-level parsed node, used only if @p parent is NULL.
330 * @param[in] in Input handle to read the input from.
331 * @param[in] format Expected format of the data in @p in.
332 * @param[in] parse_opts Options for parser.
333 * @param[in] val_opts Options for validation.
334 * @param[out] op Optional pointer to the parsed operation, if any.
335 * @return LY_ERR value.
336 */
337static LY_ERR
Radek Krejcif16e2542021-02-17 15:39:23 +0100338lyd_parse(const struct ly_ctx *ctx, const struct lysc_ext_instance *ext, struct lyd_node *parent, struct lyd_node **first_p,
339 struct ly_in *in, LYD_FORMAT format, uint32_t parse_opts, uint32_t val_opts, struct lyd_node **op)
Radek Krejci7931b192020-06-25 17:05:03 +0200340{
Michal Vaskoe0665742021-02-11 11:08:44 +0100341 LY_ERR rc = LY_SUCCESS;
Radek Krejci1798aae2020-07-14 13:26:06 +0200342 struct lyd_ctx *lydctx = NULL;
Michal Vaskoe0665742021-02-11 11:08:44 +0100343 struct ly_set parsed = {0};
344 struct lyd_node *first;
345 uint32_t i;
Radek Krejci1798aae2020-07-14 13:26:06 +0200346
Michal Vaskoe0665742021-02-11 11:08:44 +0100347 assert(ctx && (parent || first_p));
Radek Krejci7931b192020-06-25 17:05:03 +0200348
349 format = lyd_parse_get_format(in, format);
Michal Vaskoe0665742021-02-11 11:08:44 +0100350 if (first_p) {
351 *first_p = NULL;
352 }
Radek Krejci1798aae2020-07-14 13:26:06 +0200353
Michal Vasko63f3d842020-07-08 10:10:14 +0200354 /* remember input position */
355 in->func_start = in->current;
Radek Krejci7931b192020-06-25 17:05:03 +0200356
Michal Vaskoe0665742021-02-11 11:08:44 +0100357 /* parse the data */
Radek Krejci7931b192020-06-25 17:05:03 +0200358 switch (format) {
359 case LYD_XML:
Radek Krejcif16e2542021-02-17 15:39:23 +0100360 rc = lyd_parse_xml(ctx, ext, parent, first_p, in, parse_opts, val_opts, LYD_TYPE_DATA_YANG, NULL, &parsed, &lydctx);
Radek Krejci1798aae2020-07-14 13:26:06 +0200361 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200362 case LYD_JSON:
Radek Krejcif16e2542021-02-17 15:39:23 +0100363 rc = lyd_parse_json(ctx, ext, parent, first_p, in, parse_opts, val_opts, LYD_TYPE_DATA_YANG, &parsed, &lydctx);
Radek Krejci1798aae2020-07-14 13:26:06 +0200364 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200365 case LYD_LYB:
Radek Krejcif16e2542021-02-17 15:39:23 +0100366 rc = lyd_parse_lyb(ctx, ext, parent, first_p, in, parse_opts, val_opts, LYD_TYPE_DATA_YANG, &parsed, &lydctx);
Radek Krejci1798aae2020-07-14 13:26:06 +0200367 break;
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200368 case LYD_UNKNOWN:
Michal Vaskod74978f2021-02-12 11:59:36 +0100369 LOGARG(ctx, format);
370 rc = LY_EINVAL;
Michal Vaskoe0665742021-02-11 11:08:44 +0100371 break;
372 }
373 LY_CHECK_GOTO(rc, cleanup);
374
375 if (parent) {
376 /* get first top-level sibling */
377 for (first = parent; first->parent; first = lyd_parent(first)) {}
378 first = lyd_first_sibling(first);
379 first_p = &first;
Radek Krejci7931b192020-06-25 17:05:03 +0200380 }
381
Michal Vaskoe0665742021-02-11 11:08:44 +0100382 if (!(parse_opts & LYD_PARSE_ONLY)) {
383 /* validate data */
Radek Krejci4f2e3e52021-03-30 14:20:28 +0200384 rc = lyd_validate(first_p, NULL, ctx, val_opts, 0, &lydctx->node_when, &lydctx->node_exts, &lydctx->node_types,
Michal Vaskoe0665742021-02-11 11:08:44 +0100385 &lydctx->meta_types, NULL);
386 LY_CHECK_GOTO(rc, cleanup);
387 }
Radek Krejci7931b192020-06-25 17:05:03 +0200388
Michal Vaskoe0665742021-02-11 11:08:44 +0100389 /* set the operation node */
390 if (op) {
391 *op = lydctx->op_node;
Radek Krejci1798aae2020-07-14 13:26:06 +0200392 }
393
394cleanup:
Michal Vaskoe0665742021-02-11 11:08:44 +0100395 if (lydctx) {
396 lydctx->free(lydctx);
Radek Krejci1798aae2020-07-14 13:26:06 +0200397 }
Michal Vaskoe0665742021-02-11 11:08:44 +0100398 if (rc) {
399 if (parent) {
400 /* free all the parsed subtrees */
401 for (i = 0; i < parsed.count; ++i) {
402 lyd_free_tree(parsed.dnodes[i]);
403 }
404 } else {
405 /* free everything */
406 lyd_free_all(*first_p);
407 *first_p = NULL;
408 }
409 }
410 ly_set_erase(&parsed, NULL);
411 return rc;
Radek Krejci7931b192020-06-25 17:05:03 +0200412}
413
414API LY_ERR
Radek Krejcif16e2542021-02-17 15:39:23 +0100415lyd_parse_ext_data(const struct lysc_ext_instance *ext, struct lyd_node *parent, struct ly_in *in, LYD_FORMAT format,
416 uint32_t parse_options, uint32_t validate_options, struct lyd_node **tree)
417{
418 const struct ly_ctx *ctx = ext ? ext->module->ctx : NULL;
419
420 LY_CHECK_ARG_RET(ctx, ext, in, parent || tree, LY_EINVAL);
421 LY_CHECK_ARG_RET(ctx, !(parse_options & ~LYD_PARSE_OPTS_MASK), LY_EINVAL);
422 LY_CHECK_ARG_RET(ctx, !(validate_options & ~LYD_VALIDATE_OPTS_MASK), LY_EINVAL);
423
424 return lyd_parse(ctx, ext, parent, tree, in, format, parse_options, validate_options, NULL);
425}
426
427API LY_ERR
Michal Vaskoe0665742021-02-11 11:08:44 +0100428lyd_parse_data(const struct ly_ctx *ctx, struct lyd_node *parent, struct ly_in *in, LYD_FORMAT format,
429 uint32_t parse_options, uint32_t validate_options, struct lyd_node **tree)
430{
431 LY_CHECK_ARG_RET(ctx, ctx, in, parent || tree, LY_EINVAL);
432 LY_CHECK_ARG_RET(ctx, !(parse_options & ~LYD_PARSE_OPTS_MASK), LY_EINVAL);
433 LY_CHECK_ARG_RET(ctx, !(validate_options & ~LYD_VALIDATE_OPTS_MASK), LY_EINVAL);
434
Radek Krejcif16e2542021-02-17 15:39:23 +0100435 return lyd_parse(ctx, NULL, parent, tree, in, format, parse_options, validate_options, NULL);
Michal Vaskoe0665742021-02-11 11:08:44 +0100436}
437
438API LY_ERR
439lyd_parse_data_mem(const struct ly_ctx *ctx, const char *data, LYD_FORMAT format, uint32_t parse_options,
440 uint32_t validate_options, struct lyd_node **tree)
Radek Krejci7931b192020-06-25 17:05:03 +0200441{
442 LY_ERR ret;
443 struct ly_in *in;
444
445 LY_CHECK_RET(ly_in_new_memory(data, &in));
Michal Vaskoe0665742021-02-11 11:08:44 +0100446 ret = lyd_parse_data(ctx, NULL, in, format, parse_options, validate_options, tree);
Radek Krejci7931b192020-06-25 17:05:03 +0200447
448 ly_in_free(in, 0);
449 return ret;
450}
451
452API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200453lyd_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 +0200454 struct lyd_node **tree)
Radek Krejci7931b192020-06-25 17:05:03 +0200455{
456 LY_ERR ret;
457 struct ly_in *in;
458
459 LY_CHECK_RET(ly_in_new_fd(fd, &in));
Michal Vaskoe0665742021-02-11 11:08:44 +0100460 ret = lyd_parse_data(ctx, NULL, in, format, parse_options, validate_options, tree);
Radek Krejci7931b192020-06-25 17:05:03 +0200461
462 ly_in_free(in, 0);
463 return ret;
464}
465
466API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200467lyd_parse_data_path(const struct ly_ctx *ctx, const char *path, LYD_FORMAT format, uint32_t parse_options,
468 uint32_t validate_options, struct lyd_node **tree)
Radek Krejci7931b192020-06-25 17:05:03 +0200469{
470 LY_ERR ret;
471 struct ly_in *in;
472
473 LY_CHECK_RET(ly_in_new_filepath(path, 0, &in));
Michal Vaskoe0665742021-02-11 11:08:44 +0100474 ret = lyd_parse_data(ctx, NULL, in, format, parse_options, validate_options, tree);
Radek Krejci7931b192020-06-25 17:05:03 +0200475
476 ly_in_free(in, 0);
477 return ret;
478}
479
Radek Krejcif16e2542021-02-17 15:39:23 +0100480/**
481 * @brief Parse YANG data into an operation data tree, in case the extension instance is specified, keep the searching
482 * for schema nodes locked inside the extension instance.
483 *
484 * At least one of @p parent, @p tree, or @p op must always be set.
485 *
486 * Specific @p data_type values have different parameter meaning as follows:
487 * - ::LYD_TYPE_RPC_NETCONF:
488 * - @p parent - must be NULL, the whole RPC is expected;
489 * - @p format - must be ::LYD_XML, NETCONF supports only this format;
490 * - @p tree - must be provided, all the NETCONF-specific XML envelopes will be returned here as
491 * a separate opaque data tree, even if the function fails, this may be returned;
492 * - @p op - must be provided, the RPC/action data tree itself will be returned here, pointing to the operation;
493 *
494 * - ::LYD_TYPE_NOTIF_NETCONF:
495 * - @p parent - must be NULL, the whole notification is expected;
496 * - @p format - must be ::LYD_XML, NETCONF supports only this format;
497 * - @p tree - must be provided, all the NETCONF-specific XML envelopes will be returned here as
498 * a separate opaque data tree, even if the function fails, this may be returned;
499 * - @p op - must be provided, the notification data tree itself will be returned here, pointing to the operation;
500 *
501 * - ::LYD_TYPE_REPLY_NETCONF:
502 * - @p parent - must be set, pointing to the invoked RPC operation (RPC or action) node;
503 * - @p format - must be ::LYD_XML, NETCONF supports only this format;
504 * - @p tree - must be provided, all the NETCONF-specific XML envelopes will be returned here as
505 * a separate opaque data tree, even if the function fails, this may be returned;
506 * - @p op - must be NULL, the reply is appended to the RPC;
507 * Note that there are 3 kinds of NETCONF replies - ok, error, and data. Only data reply appends any nodes to the RPC.
508 *
509 * @param[in] ctx libyang context.
510 * @param[in] ext Extension instance providing the specific schema tree to match with the data being parsed.
511 * @param[in] parent Optional parent to connect the parsed nodes to.
512 * @param[in] in Input handle to read the input from.
513 * @param[in] format Expected format of the data in @p in.
514 * @param[in] data_type Expected operation to parse (@ref datatype).
515 * @param[out] tree Optional full parsed data tree. If @p parent is set, set to NULL.
516 * @param[out] op Optional parsed operation node.
517 * @return LY_ERR value.
518 * @return LY_ENOT if @p data_type is a NETCONF message and the root XML element is not the expected one.
519 */
520static LY_ERR
521lyd_parse_op_(const struct ly_ctx *ctx, const struct lysc_ext_instance *ext, struct lyd_node *parent,
522 struct ly_in *in, LYD_FORMAT format, enum lyd_type data_type, struct lyd_node **tree, struct lyd_node **op)
Radek Krejci7931b192020-06-25 17:05:03 +0200523{
Michal Vaskoe0665742021-02-11 11:08:44 +0100524 LY_ERR rc = LY_SUCCESS;
525 struct lyd_ctx *lydctx = NULL;
526 struct ly_set parsed = {0};
527 struct lyd_node *first = NULL, *envp = NULL;
528 uint32_t i, parse_opts, val_opts;
Radek Krejci7931b192020-06-25 17:05:03 +0200529
Michal Vasko27fb0262021-02-23 09:42:01 +0100530 if (!ctx) {
531 ctx = LYD_CTX(parent);
532 }
Radek Krejci1798aae2020-07-14 13:26:06 +0200533 if (tree) {
534 *tree = NULL;
535 }
536 if (op) {
537 *op = NULL;
538 }
539
Radek Krejci7931b192020-06-25 17:05:03 +0200540 format = lyd_parse_get_format(in, format);
Radek Krejci7931b192020-06-25 17:05:03 +0200541
Michal Vasko63f3d842020-07-08 10:10:14 +0200542 /* remember input position */
543 in->func_start = in->current;
544
Michal Vaskoe0665742021-02-11 11:08:44 +0100545 /* check params based on the data type */
Michal Vasko1e4c68e2021-02-18 15:03:01 +0100546 if ((data_type == LYD_TYPE_RPC_NETCONF) || (data_type == LYD_TYPE_NOTIF_NETCONF)) {
Michal Vaskoe0665742021-02-11 11:08:44 +0100547 LY_CHECK_ARG_RET(ctx, format == LYD_XML, !parent, tree, op, LY_EINVAL);
Michal Vasko1e4c68e2021-02-18 15:03:01 +0100548 } else if (data_type == LYD_TYPE_REPLY_NETCONF) {
549 LY_CHECK_ARG_RET(ctx, format == LYD_XML, parent, parent->schema->nodetype & (LYS_RPC | LYS_ACTION), tree, !op,
550 LY_EINVAL);
Michal Vaskoe0665742021-02-11 11:08:44 +0100551 }
Michal Vasko9da78cf2021-07-21 13:45:10 +0200552 parse_opts = LYD_PARSE_ONLY | LYD_PARSE_OPAQ;
Michal Vaskoe0665742021-02-11 11:08:44 +0100553 val_opts = 0;
554
555 /* parse the data */
Radek Krejci7931b192020-06-25 17:05:03 +0200556 switch (format) {
557 case LYD_XML:
Radek Krejcif16e2542021-02-17 15:39:23 +0100558 rc = lyd_parse_xml(ctx, ext, parent, &first, in, parse_opts, val_opts, data_type, &envp, &parsed, &lydctx);
Michal Vasko299d5d12021-02-16 16:36:37 +0100559 if (rc && envp) {
560 /* special situation when the envelopes were parsed successfully */
561 if (tree) {
562 *tree = envp;
563 }
564 ly_set_erase(&parsed, NULL);
565 return rc;
566 }
Michal Vaskoe0665742021-02-11 11:08:44 +0100567 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200568 case LYD_JSON:
Radek Krejcif16e2542021-02-17 15:39:23 +0100569 rc = lyd_parse_json(ctx, ext, parent, &first, in, parse_opts, val_opts, data_type, &parsed, &lydctx);
Michal Vaskoe0665742021-02-11 11:08:44 +0100570 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200571 case LYD_LYB:
Radek Krejcif16e2542021-02-17 15:39:23 +0100572 rc = lyd_parse_lyb(ctx, ext, parent, &first, in, parse_opts, val_opts, data_type, &parsed, &lydctx);
Michal Vaskoe0665742021-02-11 11:08:44 +0100573 break;
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200574 case LYD_UNKNOWN:
Michal Vaskod74978f2021-02-12 11:59:36 +0100575 LOGARG(ctx, format);
576 rc = LY_EINVAL;
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200577 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200578 }
Michal Vaskoe0665742021-02-11 11:08:44 +0100579 LY_CHECK_GOTO(rc, cleanup);
Radek Krejci7931b192020-06-25 17:05:03 +0200580
Michal Vaskoe0665742021-02-11 11:08:44 +0100581 /* set out params correctly */
582 if (tree) {
583 if (envp) {
584 /* special out param meaning */
585 *tree = envp;
586 } else {
587 *tree = parent ? NULL : first;
588 }
589 }
590 if (op) {
591 *op = lydctx->op_node;
592 }
593
594cleanup:
595 if (lydctx) {
596 lydctx->free(lydctx);
597 }
598 if (rc) {
599 if (parent) {
600 /* free all the parsed subtrees */
601 for (i = 0; i < parsed.count; ++i) {
602 lyd_free_tree(parsed.dnodes[i]);
603 }
604 } else {
605 /* free everything (cannot occur in the current code, a safety) */
606 lyd_free_all(first);
607 if (tree) {
608 *tree = NULL;
609 }
610 if (op) {
611 *op = NULL;
612 }
613 }
614 }
615 ly_set_erase(&parsed, NULL);
616 return rc;
Radek Krejcie7b95092019-05-15 11:03:07 +0200617}
Radek Krejci084289f2019-07-09 17:35:30 +0200618
Radek Krejcif16e2542021-02-17 15:39:23 +0100619API LY_ERR
620lyd_parse_op(const struct ly_ctx *ctx, struct lyd_node *parent, struct ly_in *in, LYD_FORMAT format,
621 enum lyd_type data_type, struct lyd_node **tree, struct lyd_node **op)
622{
623 LY_CHECK_ARG_RET(ctx, ctx || parent, in, data_type, parent || tree || op, LY_EINVAL);
624
625 return lyd_parse_op_(ctx, NULL, parent, in, format, data_type, tree, op);
626}
627
628API LY_ERR
629lyd_parse_ext_op(const struct lysc_ext_instance *ext, struct lyd_node *parent, struct ly_in *in, LYD_FORMAT format,
630 enum lyd_type data_type, struct lyd_node **tree, struct lyd_node **op)
631{
632 const struct ly_ctx *ctx = ext ? ext->module->ctx : NULL;
633
634 LY_CHECK_ARG_RET(ctx, ext, in, data_type, parent || tree || op, LY_EINVAL);
635
636 return lyd_parse_op_(ctx, ext, parent, in, format, data_type, tree, op);
637}
638
Michal Vasko90932a92020-02-12 14:33:03 +0100639LY_ERR
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200640lyd_create_term(const struct lysc_node *schema, const char *value, size_t value_len, ly_bool *dynamic,
Radek Krejci8df109d2021-04-23 12:19:08 +0200641 LY_VALUE_FORMAT format, void *prefix_data, uint32_t hints, ly_bool *incomplete, struct lyd_node **node)
Michal Vasko90932a92020-02-12 14:33:03 +0100642{
643 LY_ERR ret;
644 struct lyd_node_term *term;
645
Michal Vasko9b368d32020-02-14 13:53:31 +0100646 assert(schema->nodetype & LYD_NODE_TERM);
647
Michal Vasko90932a92020-02-12 14:33:03 +0100648 term = calloc(1, sizeof *term);
649 LY_CHECK_ERR_RET(!term, LOGMEM(schema->module->ctx), LY_EMEM);
650
651 term->schema = schema;
Michal Vasko9e685082021-01-29 14:49:09 +0100652 term->prev = &term->node;
Michal Vasko9b368d32020-02-14 13:53:31 +0100653 term->flags = LYD_NEW;
Michal Vasko90932a92020-02-12 14:33:03 +0100654
Radek Krejciddace2c2021-01-08 11:30:56 +0100655 LOG_LOCSET(schema, NULL, NULL, NULL);
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200656 ret = lyd_value_store(schema->module->ctx, &term->value, ((struct lysc_node_leaf *)term->schema)->type, value,
Radek Krejci2efc45b2020-12-22 16:25:44 +0100657 value_len, dynamic, format, prefix_data, hints, schema, incomplete);
Radek Krejciddace2c2021-01-08 11:30:56 +0100658 LOG_LOCBACK(1, 0, 0, 0);
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200659 LY_CHECK_ERR_RET(ret, free(term), ret);
Michal Vasko9e685082021-01-29 14:49:09 +0100660 lyd_hash(&term->node);
Michal Vasko9b368d32020-02-14 13:53:31 +0100661
Michal Vasko9e685082021-01-29 14:49:09 +0100662 *node = &term->node;
Michal Vasko9b368d32020-02-14 13:53:31 +0100663 return ret;
664}
665
666LY_ERR
667lyd_create_term2(const struct lysc_node *schema, const struct lyd_value *val, struct lyd_node **node)
668{
669 LY_ERR ret;
670 struct lyd_node_term *term;
671 struct lysc_type *type;
672
673 assert(schema->nodetype & LYD_NODE_TERM);
Radek Krejci224d4b42021-04-23 13:54:59 +0200674 assert(val && val->realtype);
Michal Vasko9b368d32020-02-14 13:53:31 +0100675
676 term = calloc(1, sizeof *term);
677 LY_CHECK_ERR_RET(!term, LOGMEM(schema->module->ctx), LY_EMEM);
678
679 term->schema = schema;
Michal Vasko9e685082021-01-29 14:49:09 +0100680 term->prev = &term->node;
Michal Vasko9b368d32020-02-14 13:53:31 +0100681 term->flags = LYD_NEW;
682
683 type = ((struct lysc_node_leaf *)schema)->type;
684 ret = type->plugin->duplicate(schema->module->ctx, val, &term->value);
685 if (ret) {
686 LOGERR(schema->module->ctx, ret, "Value duplication failed.");
687 free(term);
688 return ret;
689 }
Michal Vasko9e685082021-01-29 14:49:09 +0100690 lyd_hash(&term->node);
Michal Vasko90932a92020-02-12 14:33:03 +0100691
Michal Vasko9e685082021-01-29 14:49:09 +0100692 *node = &term->node;
Michal Vasko90932a92020-02-12 14:33:03 +0100693 return ret;
694}
695
696LY_ERR
697lyd_create_inner(const struct lysc_node *schema, struct lyd_node **node)
698{
699 struct lyd_node_inner *in;
700
Michal Vasko9b368d32020-02-14 13:53:31 +0100701 assert(schema->nodetype & LYD_NODE_INNER);
702
Michal Vasko90932a92020-02-12 14:33:03 +0100703 in = calloc(1, sizeof *in);
704 LY_CHECK_ERR_RET(!in, LOGMEM(schema->module->ctx), LY_EMEM);
705
706 in->schema = schema;
Michal Vasko9e685082021-01-29 14:49:09 +0100707 in->prev = &in->node;
Michal Vasko9b368d32020-02-14 13:53:31 +0100708 in->flags = LYD_NEW;
Michal Vasko3383be72020-11-03 17:15:31 +0100709 if ((schema->nodetype == LYS_CONTAINER) && !(schema->flags & LYS_PRESENCE)) {
710 in->flags |= LYD_DEFAULT;
711 }
Michal Vasko90932a92020-02-12 14:33:03 +0100712
Michal Vasko9b368d32020-02-14 13:53:31 +0100713 /* do not hash list with keys, we need them for the hash */
714 if ((schema->nodetype != LYS_LIST) || (schema->flags & LYS_KEYLESS)) {
Michal Vasko9e685082021-01-29 14:49:09 +0100715 lyd_hash(&in->node);
Michal Vasko9b368d32020-02-14 13:53:31 +0100716 }
Michal Vasko90932a92020-02-12 14:33:03 +0100717
Michal Vasko9e685082021-01-29 14:49:09 +0100718 *node = &in->node;
Michal Vasko90932a92020-02-12 14:33:03 +0100719 return LY_SUCCESS;
720}
721
Michal Vasko90932a92020-02-12 14:33:03 +0100722LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +0200723lyd_create_list(const struct lysc_node *schema, const struct ly_path_predicate *predicates, struct lyd_node **node)
Michal Vasko90932a92020-02-12 14:33:03 +0100724{
725 LY_ERR ret = LY_SUCCESS;
Michal Vasko90932a92020-02-12 14:33:03 +0100726 struct lyd_node *list = NULL, *key;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200727 LY_ARRAY_COUNT_TYPE u;
Michal Vasko90932a92020-02-12 14:33:03 +0100728
Michal Vasko004d3152020-06-11 19:59:22 +0200729 assert((schema->nodetype == LYS_LIST) && !(schema->flags & LYS_KEYLESS));
Michal Vasko90932a92020-02-12 14:33:03 +0100730
731 /* create list */
732 LY_CHECK_GOTO(ret = lyd_create_inner(schema, &list), cleanup);
733
Radek Krejciddace2c2021-01-08 11:30:56 +0100734 LOG_LOCSET(NULL, list, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100735
Michal Vasko90932a92020-02-12 14:33:03 +0100736 /* create and insert all the keys */
Michal Vasko004d3152020-06-11 19:59:22 +0200737 LY_ARRAY_FOR(predicates, u) {
738 LY_CHECK_GOTO(ret = lyd_create_term2(predicates[u].key, &predicates[u].value, &key), cleanup);
Michal Vasko6ee6f432021-07-16 09:49:14 +0200739 lyd_insert_node(list, NULL, key, 0);
Michal Vasko90932a92020-02-12 14:33:03 +0100740 }
741
Michal Vasko9b368d32020-02-14 13:53:31 +0100742 /* hash having all the keys */
743 lyd_hash(list);
744
Michal Vasko90932a92020-02-12 14:33:03 +0100745 /* success */
746 *node = list;
747 list = NULL;
748
749cleanup:
Radek Krejciddace2c2021-01-08 11:30:56 +0100750 LOG_LOCBACK(0, 1, 0, 0);
Michal Vasko90932a92020-02-12 14:33:03 +0100751 lyd_free_tree(list);
Michal Vasko004d3152020-06-11 19:59:22 +0200752 return ret;
753}
754
755static LY_ERR
756lyd_create_list2(const struct lysc_node *schema, const char *keys, size_t keys_len, struct lyd_node **node)
757{
758 LY_ERR ret = LY_SUCCESS;
759 struct lyxp_expr *expr = NULL;
760 uint16_t exp_idx = 0;
761 enum ly_path_pred_type pred_type = 0;
762 struct ly_path_predicate *predicates = NULL;
763
Radek Krejciddace2c2021-01-08 11:30:56 +0100764 LOG_LOCSET(schema, NULL, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100765
Michal Vasko004d3152020-06-11 19:59:22 +0200766 /* parse keys */
Michal Vasko6b26e742020-07-17 15:02:10 +0200767 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 +0200768 LY_PATH_PRED_KEYS, &expr), cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +0200769
770 /* compile them */
Radek Krejci8df109d2021-04-23 12:19:08 +0200771 LY_CHECK_GOTO(ret = ly_path_compile_predicate(schema->module->ctx, NULL, NULL, schema, expr, &exp_idx, LY_VALUE_JSON,
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200772 NULL, &predicates, &pred_type), cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +0200773
774 /* create the list node */
775 LY_CHECK_GOTO(ret = lyd_create_list(schema, predicates, node), cleanup);
776
777cleanup:
Radek Krejciddace2c2021-01-08 11:30:56 +0100778 LOG_LOCBACK(1, 0, 0, 0);
Michal Vasko004d3152020-06-11 19:59:22 +0200779 lyxp_expr_free(schema->module->ctx, expr);
Michal Vaskof7e16e22020-10-21 09:24:39 +0200780 ly_path_predicates_free(schema->module->ctx, pred_type, predicates);
Michal Vasko90932a92020-02-12 14:33:03 +0100781 return ret;
782}
783
784LY_ERR
Michal Vasko366a4a12020-12-04 16:23:57 +0100785lyd_create_any(const struct lysc_node *schema, const void *value, LYD_ANYDATA_VALUETYPE value_type, ly_bool use_value,
786 struct lyd_node **node)
Michal Vasko90932a92020-02-12 14:33:03 +0100787{
Michal Vasko366a4a12020-12-04 16:23:57 +0100788 LY_ERR ret;
Michal Vasko90932a92020-02-12 14:33:03 +0100789 struct lyd_node_any *any;
Michal Vasko366a4a12020-12-04 16:23:57 +0100790 union lyd_any_value any_val;
Michal Vasko90932a92020-02-12 14:33:03 +0100791
Michal Vasko9b368d32020-02-14 13:53:31 +0100792 assert(schema->nodetype & LYD_NODE_ANY);
793
Michal Vasko90932a92020-02-12 14:33:03 +0100794 any = calloc(1, sizeof *any);
795 LY_CHECK_ERR_RET(!any, LOGMEM(schema->module->ctx), LY_EMEM);
796
797 any->schema = schema;
Michal Vasko9e685082021-01-29 14:49:09 +0100798 any->prev = &any->node;
Michal Vasko9b368d32020-02-14 13:53:31 +0100799 any->flags = LYD_NEW;
Michal Vasko90932a92020-02-12 14:33:03 +0100800
Radek Krejci1798aae2020-07-14 13:26:06 +0200801 /* TODO: convert XML/JSON strings into a opaq data tree */
Michal Vasko366a4a12020-12-04 16:23:57 +0100802
803 if (use_value) {
804 any->value.str = value;
805 any->value_type = value_type;
806 } else {
807 any_val.str = value;
Michal Vasko9e685082021-01-29 14:49:09 +0100808 ret = lyd_any_copy_value(&any->node, &any_val, value_type);
Michal Vasko366a4a12020-12-04 16:23:57 +0100809 LY_CHECK_ERR_RET(ret, free(any), ret);
810 }
Michal Vasko9e685082021-01-29 14:49:09 +0100811 lyd_hash(&any->node);
Michal Vasko90932a92020-02-12 14:33:03 +0100812
Michal Vasko9e685082021-01-29 14:49:09 +0100813 *node = &any->node;
Michal Vasko90932a92020-02-12 14:33:03 +0100814 return LY_SUCCESS;
815}
816
Michal Vasko52927e22020-03-16 17:26:14 +0100817LY_ERR
Michal Vasko501af032020-11-11 20:27:44 +0100818lyd_create_opaq(const struct ly_ctx *ctx, const char *name, size_t name_len, const char *prefix, size_t pref_len,
819 const char *module_key, size_t module_key_len, const char *value, size_t value_len, ly_bool *dynamic,
Radek Krejci8df109d2021-04-23 12:19:08 +0200820 LY_VALUE_FORMAT format, void *val_prefix_data, uint32_t hints, struct lyd_node **node)
Michal Vasko52927e22020-03-16 17:26:14 +0100821{
Radek Krejci011e4aa2020-09-04 15:22:31 +0200822 LY_ERR ret = LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +0100823 struct lyd_node_opaq *opaq;
824
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200825 assert(ctx && name && name_len && format);
Michal Vasko52927e22020-03-16 17:26:14 +0100826
Michal Vasko4cd0a602021-05-31 11:11:58 +0200827 if (!value_len && (!dynamic || !*dynamic)) {
Michal Vasko52927e22020-03-16 17:26:14 +0100828 value = "";
829 }
830
831 opaq = calloc(1, sizeof *opaq);
Michal Vasko501af032020-11-11 20:27:44 +0100832 LY_CHECK_ERR_GOTO(!opaq, LOGMEM(ctx); ret = LY_EMEM, finish);
Michal Vasko52927e22020-03-16 17:26:14 +0100833
Michal Vasko9e685082021-01-29 14:49:09 +0100834 opaq->prev = &opaq->node;
Michal Vaskoad92b672020-11-12 13:11:31 +0100835 LY_CHECK_GOTO(ret = lydict_insert(ctx, name, name_len, &opaq->name.name), finish);
Radek Krejci011e4aa2020-09-04 15:22:31 +0200836
Michal Vasko52927e22020-03-16 17:26:14 +0100837 if (pref_len) {
Michal Vaskoad92b672020-11-12 13:11:31 +0100838 LY_CHECK_GOTO(ret = lydict_insert(ctx, prefix, pref_len, &opaq->name.prefix), finish);
Michal Vasko52927e22020-03-16 17:26:14 +0100839 }
Radek Krejci1798aae2020-07-14 13:26:06 +0200840 if (module_key_len) {
Michal Vaskoad92b672020-11-12 13:11:31 +0100841 LY_CHECK_GOTO(ret = lydict_insert(ctx, module_key, module_key_len, &opaq->name.module_ns), finish);
Radek Krejci1798aae2020-07-14 13:26:06 +0200842 }
Michal Vasko52927e22020-03-16 17:26:14 +0100843 if (dynamic && *dynamic) {
Radek Krejci011e4aa2020-09-04 15:22:31 +0200844 LY_CHECK_GOTO(ret = lydict_insert_zc(ctx, (char *)value, &opaq->value), finish);
Michal Vasko52927e22020-03-16 17:26:14 +0100845 *dynamic = 0;
846 } else {
Radek Krejci011e4aa2020-09-04 15:22:31 +0200847 LY_CHECK_GOTO(ret = lydict_insert(ctx, value, value_len, &opaq->value), finish);
Michal Vasko52927e22020-03-16 17:26:14 +0100848 }
Michal Vasko501af032020-11-11 20:27:44 +0100849
850 opaq->format = format;
851 opaq->val_prefix_data = val_prefix_data;
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200852 opaq->hints = hints;
Michal Vasko52927e22020-03-16 17:26:14 +0100853 opaq->ctx = ctx;
854
Radek Krejci011e4aa2020-09-04 15:22:31 +0200855finish:
856 if (ret) {
Michal Vasko9e685082021-01-29 14:49:09 +0100857 lyd_free_tree(&opaq->node);
Michal Vasko501af032020-11-11 20:27:44 +0100858 ly_free_prefix_data(format, val_prefix_data);
Radek Krejci011e4aa2020-09-04 15:22:31 +0200859 } else {
Michal Vasko9e685082021-01-29 14:49:09 +0100860 *node = &opaq->node;
Radek Krejci011e4aa2020-09-04 15:22:31 +0200861 }
862 return ret;
Michal Vasko52927e22020-03-16 17:26:14 +0100863}
864
Michal Vasko3a41dff2020-07-15 14:30:28 +0200865API LY_ERR
Michal Vasko65243892020-12-04 16:26:21 +0100866lyd_new_inner(struct lyd_node *parent, const struct lys_module *module, const char *name, ly_bool output,
867 struct lyd_node **node)
Michal Vasko013a8182020-03-03 10:46:53 +0100868{
869 struct lyd_node *ret = NULL;
870 const struct lysc_node *schema;
871 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
872
Michal Vasko6027eb92020-07-15 16:37:30 +0200873 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100874
Michal Vaskof03ed032020-03-04 13:31:44 +0100875 if (!module) {
876 module = parent->schema->module;
877 }
878
Michal Vasko3a41dff2020-07-15 14:30:28 +0200879 schema = lys_find_child(parent ? parent->schema : NULL, module, name, 0,
Radek Krejci41ac9942020-11-02 14:47:56 +0100880 LYS_CONTAINER | LYS_NOTIF | LYS_RPC | LYS_ACTION, output ? LYS_GETNEXT_OUTPUT : 0);
Radek Krejcidd2a7662021-03-12 11:26:34 +0100881 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "Inner node (not a list) \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +0100882
Michal Vasko3a41dff2020-07-15 14:30:28 +0200883 LY_CHECK_RET(lyd_create_inner(schema, &ret));
884 if (parent) {
Michal Vasko6ee6f432021-07-16 09:49:14 +0200885 lyd_insert_node(parent, NULL, ret, 0);
Michal Vasko013a8182020-03-03 10:46:53 +0100886 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200887
888 if (node) {
889 *node = ret;
890 }
891 return LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +0100892}
893
Michal Vasko3a41dff2020-07-15 14:30:28 +0200894API LY_ERR
Radek Krejcidd2a7662021-03-12 11:26:34 +0100895lyd_new_ext_inner(const struct lysc_ext_instance *ext, const char *name, struct lyd_node **node)
896{
897 struct lyd_node *ret = NULL;
898 const struct lysc_node *schema;
899 struct ly_ctx *ctx = ext ? ext->module->ctx : NULL;
900
901 LY_CHECK_ARG_RET(ctx, ext, node, name, LY_EINVAL);
902
903 schema = lysc_ext_find_node(ext, NULL, name, 0, LYS_CONTAINER | LYS_NOTIF | LYS_RPC | LYS_ACTION, 0);
904 if (!schema) {
905 if (ext->argument) {
906 LOGERR(ctx, LY_EINVAL, "Inner node (not a list) \"%s\" not found in instance \"%s\" of extension %s.",
907 name, ext->argument, ext->def->name);
908 } else {
909 LOGERR(ctx, LY_EINVAL, "Inner node (not a list) \"%s\" not found in instance of extension %s.",
910 name, ext->def->name);
911 }
912 return LY_ENOTFOUND;
913 }
914 LY_CHECK_RET(lyd_create_inner(schema, &ret));
915
916 *node = ret;
917
918 return LY_SUCCESS;
919}
920
Michal Vasko208e6d62021-06-28 11:23:50 +0200921/**
922 * @brief Create a new list node in the data tree.
923 *
924 * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element.
925 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
926 * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST.
927 * @param[in] format Format of key values.
928 * @param[in] output Flag in case the @p parent is RPC/Action. If value is 0, the input's data nodes of the RPC/Action are
929 * taken into consideration. Otherwise, the output's data node is going to be created.
930 * @param[out] node Optional created node.
931 * @param[in] ap Ordered key values of the new list instance, all must be set. For ::LY_VALUE_LYB, every value must
932 * be followed by the value length.
933 * @return LY_ERR value.
934 */
935static LY_ERR
936_lyd_new_list(struct lyd_node *parent, const struct lys_module *module, const char *name, LY_VALUE_FORMAT format,
937 ly_bool output, struct lyd_node **node, va_list ap)
Michal Vasko013a8182020-03-03 10:46:53 +0100938{
939 struct lyd_node *ret = NULL, *key;
940 const struct lysc_node *schema, *key_s;
941 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
Michal Vasko208e6d62021-06-28 11:23:50 +0200942 const void *key_val;
943 uint32_t key_len;
Michal Vasko013a8182020-03-03 10:46:53 +0100944 LY_ERR rc = LY_SUCCESS;
945
Michal Vasko6027eb92020-07-15 16:37:30 +0200946 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100947
Michal Vaskof03ed032020-03-04 13:31:44 +0100948 if (!module) {
949 module = parent->schema->module;
950 }
951
Radek Krejci41ac9942020-11-02 14:47:56 +0100952 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 +0200953 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "List node \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +0100954
955 /* create list inner node */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200956 LY_CHECK_RET(lyd_create_inner(schema, &ret));
Michal Vasko013a8182020-03-03 10:46:53 +0100957
Michal Vasko013a8182020-03-03 10:46:53 +0100958 /* create and insert all the keys */
Michal Vasko544e58a2021-01-28 14:33:41 +0100959 for (key_s = lysc_node_child(schema); key_s && (key_s->flags & LYS_KEY); key_s = key_s->next) {
Michal Vasko208e6d62021-06-28 11:23:50 +0200960 if (format == LY_VALUE_LYB) {
961 key_val = va_arg(ap, const void *);
962 key_len = va_arg(ap, uint32_t);
963 } else {
964 key_val = va_arg(ap, const char *);
965 key_len = key_val ? strlen((char *)key_val) : 0;
966 }
Michal Vasko013a8182020-03-03 10:46:53 +0100967
Michal Vasko208e6d62021-06-28 11:23:50 +0200968 rc = lyd_create_term(key_s, key_val, key_len, NULL, format, NULL, LYD_HINT_DATA, NULL, &key);
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200969 LY_CHECK_GOTO(rc, cleanup);
Michal Vasko6ee6f432021-07-16 09:49:14 +0200970 lyd_insert_node(ret, NULL, key, 1);
Michal Vasko013a8182020-03-03 10:46:53 +0100971 }
972
Michal Vasko013a8182020-03-03 10:46:53 +0100973 if (parent) {
Michal Vasko6ee6f432021-07-16 09:49:14 +0200974 lyd_insert_node(parent, NULL, ret, 0);
Michal Vasko013a8182020-03-03 10:46:53 +0100975 }
976
977cleanup:
978 if (rc) {
979 lyd_free_tree(ret);
980 ret = NULL;
Michal Vasko3a41dff2020-07-15 14:30:28 +0200981 } else if (node) {
982 *node = ret;
Michal Vasko013a8182020-03-03 10:46:53 +0100983 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200984 return rc;
Michal Vasko013a8182020-03-03 10:46:53 +0100985}
986
Michal Vasko3a41dff2020-07-15 14:30:28 +0200987API LY_ERR
Michal Vasko208e6d62021-06-28 11:23:50 +0200988lyd_new_list(struct lyd_node *parent, const struct lys_module *module, const char *name, ly_bool output,
989 struct lyd_node **node, ...)
990{
991 LY_ERR rc;
992 va_list ap;
993
994 va_start(ap, node);
995
996 rc = _lyd_new_list(parent, module, name, LY_VALUE_JSON, output, node, ap);
997
998 va_end(ap);
999 return rc;
1000}
1001
1002API LY_ERR
1003lyd_new_list_bin(struct lyd_node *parent, const struct lys_module *module, const char *name, ly_bool output,
1004 struct lyd_node **node, ...)
1005{
1006 LY_ERR rc;
1007 va_list ap;
1008
1009 va_start(ap, node);
1010
1011 rc = _lyd_new_list(parent, module, name, LY_VALUE_LYB, output, node, ap);
1012
1013 va_end(ap);
1014 return rc;
1015}
1016
1017API LY_ERR
1018lyd_new_list_canon(struct lyd_node *parent, const struct lys_module *module, const char *name, ly_bool output,
1019 struct lyd_node **node, ...)
1020{
1021 LY_ERR rc;
1022 va_list ap;
1023
1024 va_start(ap, node);
1025
1026 rc = _lyd_new_list(parent, module, name, LY_VALUE_CANON, output, node, ap);
1027
1028 va_end(ap);
1029 return rc;
1030}
1031
1032API LY_ERR
Radek Krejci8247bae2021-03-12 11:47:02 +01001033lyd_new_ext_list(const struct lysc_ext_instance *ext, const char *name, struct lyd_node **node, ...)
1034{
1035 struct lyd_node *ret = NULL, *key;
1036 const struct lysc_node *schema, *key_s;
1037 struct ly_ctx *ctx = ext ? ext->module->ctx : NULL;
1038 va_list ap;
1039 const char *key_val;
1040 LY_ERR rc = LY_SUCCESS;
1041
1042 LY_CHECK_ARG_RET(ctx, ext, node, name, LY_EINVAL);
1043
1044 schema = lysc_ext_find_node(ext, NULL, name, 0, LYS_LIST, 0);
1045 if (!schema) {
1046 if (ext->argument) {
1047 LOGERR(ctx, LY_EINVAL, "List node \"%s\" not found in instance \"%s\" of extension %s.",
1048 name, ext->argument, ext->def->name);
1049 } else {
1050 LOGERR(ctx, LY_EINVAL, "List node \"%s\" not found in instance of extension %s.", name, ext->def->name);
1051 }
1052 return LY_ENOTFOUND;
1053 }
1054 /* create list inner node */
1055 LY_CHECK_RET(lyd_create_inner(schema, &ret));
1056
1057 va_start(ap, node);
1058
1059 /* create and insert all the keys */
1060 for (key_s = lysc_node_child(schema); key_s && (key_s->flags & LYS_KEY); key_s = key_s->next) {
1061 key_val = va_arg(ap, const char *);
1062
Radek Krejci8df109d2021-04-23 12:19:08 +02001063 rc = lyd_create_term(key_s, key_val, key_val ? strlen(key_val) : 0, NULL, LY_VALUE_JSON, NULL, LYD_HINT_DATA,
Radek Krejci8247bae2021-03-12 11:47:02 +01001064 NULL, &key);
1065 LY_CHECK_GOTO(rc, cleanup);
Michal Vasko6ee6f432021-07-16 09:49:14 +02001066 lyd_insert_node(ret, NULL, key, 1);
Radek Krejci8247bae2021-03-12 11:47:02 +01001067 }
1068
1069cleanup:
1070 va_end(ap);
1071 if (rc) {
1072 lyd_free_tree(ret);
1073 ret = NULL;
Radek Krejci8247bae2021-03-12 11:47:02 +01001074 }
Radek Krejci8919fbd2021-03-15 09:35:25 +01001075 *node = ret;
Radek Krejci8247bae2021-03-12 11:47:02 +01001076 return rc;
1077}
1078
1079API LY_ERR
Michal Vasko3a41dff2020-07-15 14:30:28 +02001080lyd_new_list2(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *keys,
Radek Krejci41ac9942020-11-02 14:47:56 +01001081 ly_bool output, struct lyd_node **node)
Michal Vasko013a8182020-03-03 10:46:53 +01001082{
1083 struct lyd_node *ret = NULL;
1084 const struct lysc_node *schema;
1085 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
1086
Michal Vasko6027eb92020-07-15 16:37:30 +02001087 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +01001088
Michal Vaskof03ed032020-03-04 13:31:44 +01001089 if (!module) {
1090 module = parent->schema->module;
1091 }
Michal Vasko004d3152020-06-11 19:59:22 +02001092 if (!keys) {
1093 keys = "";
1094 }
Michal Vaskof03ed032020-03-04 13:31:44 +01001095
Michal Vasko004d3152020-06-11 19:59:22 +02001096 /* find schema node */
Radek Krejci41ac9942020-11-02 14:47:56 +01001097 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 +02001098 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "List node \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +01001099
Michal Vasko004d3152020-06-11 19:59:22 +02001100 if ((schema->flags & LYS_KEYLESS) && !keys[0]) {
1101 /* key-less list */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001102 LY_CHECK_RET(lyd_create_inner(schema, &ret));
Michal Vasko004d3152020-06-11 19:59:22 +02001103 } else {
1104 /* create the list node */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001105 LY_CHECK_RET(lyd_create_list2(schema, keys, strlen(keys), &ret));
Michal Vasko004d3152020-06-11 19:59:22 +02001106 }
Michal Vasko004d3152020-06-11 19:59:22 +02001107 if (parent) {
Michal Vasko6ee6f432021-07-16 09:49:14 +02001108 lyd_insert_node(parent, NULL, ret, 0);
Michal Vasko013a8182020-03-03 10:46:53 +01001109 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02001110
1111 if (node) {
1112 *node = ret;
1113 }
1114 return LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +01001115}
1116
Radek Krejci09c77442021-04-26 11:10:34 +02001117/**
1118 * @brief Create a new term node in the data tree.
1119 *
1120 * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element.
1121 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
1122 * @param[in] name Schema node name of the new data node. The node can be ::LYS_LEAF or ::LYS_LEAFLIST.
1123 * @param[in] value Value of the node being created.
1124 * @param[in] value_len Length of @p value.
1125 * @param[in] format Format of @p value.
1126 * @param[in] output Flag in case the @p parent is RPC/Action. If value is 0, the input's data nodes of the RPC/Action are
1127 * taken into consideration. Otherwise, the output's data node is going to be created.
1128 * @param[out] node Optional created node.
1129 * @return LY_ERR value.
1130 */
1131static LY_ERR
1132_lyd_new_term(struct lyd_node *parent, const struct lys_module *module, const char *name, const void *value,
1133 size_t value_len, LY_VALUE_FORMAT format, ly_bool output, struct lyd_node **node)
Michal Vasko013a8182020-03-03 10:46:53 +01001134{
Michal Vaskocbff3e92020-05-27 12:56:41 +02001135 LY_ERR rc;
Michal Vasko013a8182020-03-03 10:46:53 +01001136 struct lyd_node *ret = NULL;
1137 const struct lysc_node *schema;
Radek Krejci09c77442021-04-26 11:10:34 +02001138 const struct ly_ctx *ctx = parent ? LYD_CTX(parent) : (module ? module->ctx : NULL);
Michal Vasko013a8182020-03-03 10:46:53 +01001139
Michal Vasko6027eb92020-07-15 16:37:30 +02001140 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +01001141
Michal Vaskof03ed032020-03-04 13:31:44 +01001142 if (!module) {
1143 module = parent->schema->module;
1144 }
1145
Radek Krejci41ac9942020-11-02 14:47:56 +01001146 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 +02001147 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "Term node \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +01001148
Radek Krejci09c77442021-04-26 11:10:34 +02001149 rc = lyd_create_term(schema, value, value_len, NULL, format, NULL, LYD_HINT_DATA, NULL, &ret);
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001150 LY_CHECK_RET(rc);
Michal Vaskocbff3e92020-05-27 12:56:41 +02001151 if (parent) {
Michal Vasko6ee6f432021-07-16 09:49:14 +02001152 lyd_insert_node(parent, NULL, ret, 0);
Michal Vasko013a8182020-03-03 10:46:53 +01001153 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02001154
1155 if (node) {
1156 *node = ret;
1157 }
1158 return LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +01001159}
1160
Michal Vasko3a41dff2020-07-15 14:30:28 +02001161API LY_ERR
Radek Krejci09c77442021-04-26 11:10:34 +02001162lyd_new_term(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *val_str,
1163 ly_bool output, struct lyd_node **node)
1164{
1165 return _lyd_new_term(parent, module, name, val_str, val_str ? strlen(val_str) : 0, LY_VALUE_JSON, output, node);
1166}
1167
1168API LY_ERR
1169lyd_new_term_bin(struct lyd_node *parent, const struct lys_module *module, const char *name, const void *value,
1170 size_t value_len, ly_bool output, struct lyd_node **node)
1171{
1172 return _lyd_new_term(parent, module, name, value, value_len, LY_VALUE_LYB, output, node);
1173}
1174
1175API LY_ERR
1176lyd_new_term_canon(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *val_str,
1177 ly_bool output, struct lyd_node **node)
1178{
1179 return _lyd_new_term(parent, module, name, val_str, val_str ? strlen(val_str) : 0, LY_VALUE_CANON, output, node);
1180}
1181
1182API LY_ERR
Radek Krejci8a5afc22021-03-12 11:10:47 +01001183lyd_new_ext_term(const struct lysc_ext_instance *ext, const char *name, const char *val_str, struct lyd_node **node)
1184{
1185 LY_ERR rc;
1186 struct lyd_node *ret = NULL;
1187 const struct lysc_node *schema;
1188 struct ly_ctx *ctx = ext ? ext->module->ctx : NULL;
1189
1190 LY_CHECK_ARG_RET(ctx, ext, node, name, LY_EINVAL);
1191
1192 schema = lysc_ext_find_node(ext, NULL, name, 0, LYD_NODE_TERM, 0);
1193 if (!schema) {
1194 if (ext->argument) {
1195 LOGERR(ctx, LY_EINVAL, "Term node \"%s\" not found in instance \"%s\" of extension %s.",
1196 name, ext->argument, ext->def->name);
1197 } else {
1198 LOGERR(ctx, LY_EINVAL, "Term node \"%s\" not found in instance of extension %s.", name, ext->def->name);
1199 }
1200 return LY_ENOTFOUND;
1201 }
Radek Krejci8df109d2021-04-23 12:19:08 +02001202 rc = lyd_create_term(schema, val_str, val_str ? strlen(val_str) : 0, NULL, LY_VALUE_JSON, NULL, LYD_HINT_DATA, NULL, &ret);
Radek Krejci8a5afc22021-03-12 11:10:47 +01001203 LY_CHECK_RET(rc);
1204
1205 *node = ret;
1206
1207 return LY_SUCCESS;
1208}
1209
1210API LY_ERR
Michal Vasko2a4ab2b2021-03-04 15:52:40 +01001211lyd_new_any(struct lyd_node *parent, const struct lys_module *module, const char *name, const void *value,
1212 ly_bool use_value, LYD_ANYDATA_VALUETYPE value_type, ly_bool output, struct lyd_node **node)
Michal Vasko013a8182020-03-03 10:46:53 +01001213{
1214 struct lyd_node *ret = NULL;
1215 const struct lysc_node *schema;
1216 struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL);
1217
Michal Vasko6027eb92020-07-15 16:37:30 +02001218 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +01001219
Michal Vaskof03ed032020-03-04 13:31:44 +01001220 if (!module) {
1221 module = parent->schema->module;
1222 }
1223
Radek Krejci41ac9942020-11-02 14:47:56 +01001224 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 +02001225 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "Any node \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +01001226
Michal Vasko2a4ab2b2021-03-04 15:52:40 +01001227 LY_CHECK_RET(lyd_create_any(schema, value, value_type, use_value, &ret));
Michal Vasko3a41dff2020-07-15 14:30:28 +02001228 if (parent) {
Michal Vasko6ee6f432021-07-16 09:49:14 +02001229 lyd_insert_node(parent, NULL, ret, 0);
Michal Vasko013a8182020-03-03 10:46:53 +01001230 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02001231
1232 if (node) {
1233 *node = ret;
1234 }
1235 return LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +01001236}
1237
Radek Krejci0b963da2021-03-12 13:23:44 +01001238API LY_ERR
1239lyd_new_ext_any(const struct lysc_ext_instance *ext, const char *name, const void *value, ly_bool use_value,
1240 LYD_ANYDATA_VALUETYPE value_type, struct lyd_node **node)
1241{
1242 struct lyd_node *ret = NULL;
1243 const struct lysc_node *schema;
1244 struct ly_ctx *ctx = ext ? ext->module->ctx : NULL;
1245
1246 LY_CHECK_ARG_RET(ctx, ext, node, name, LY_EINVAL);
1247
1248 schema = lysc_ext_find_node(ext, NULL, name, 0, LYD_NODE_ANY, 0);
1249 if (!schema) {
1250 if (ext->argument) {
1251 LOGERR(ctx, LY_EINVAL, "Any node \"%s\" not found in instance \"%s\" of extension %s.",
1252 name, ext->argument, ext->def->name);
1253 } else {
1254 LOGERR(ctx, LY_EINVAL, "Any node \"%s\" not found in instance of extension %s.", name, ext->def->name);
1255 }
1256 return LY_ENOTFOUND;
1257 }
1258 LY_CHECK_RET(lyd_create_any(schema, value, value_type, use_value, &ret));
1259
1260 *node = ret;
1261
1262 return LY_SUCCESS;
1263}
1264
Michal Vasko3a41dff2020-07-15 14:30:28 +02001265API LY_ERR
Michal Vasko871a0252020-11-11 18:35:24 +01001266lyd_new_meta(const struct ly_ctx *ctx, struct lyd_node *parent, const struct lys_module *module, const char *name,
1267 const char *val_str, ly_bool clear_dflt, struct lyd_meta **meta)
Michal Vaskod86997b2020-05-26 15:19:54 +02001268{
Michal Vaskod86997b2020-05-26 15:19:54 +02001269 const char *prefix, *tmp;
Michal Vaskod86997b2020-05-26 15:19:54 +02001270 size_t pref_len, name_len;
1271
Michal Vasko2b5344c2021-02-26 10:12:05 +01001272 LY_CHECK_ARG_RET(ctx, ctx || parent, name, module || strchr(name, ':'), parent || meta, LY_EINVAL);
1273 if (!ctx) {
1274 ctx = LYD_CTX(parent);
1275 }
Michal Vasko00cbf532020-06-15 13:58:47 +02001276
Michal Vasko871a0252020-11-11 18:35:24 +01001277 if (parent && !parent->schema) {
Michal Vasko33b4fab2021-03-04 15:56:12 +01001278 LOGERR(ctx, LY_EINVAL, "Cannot add metadata \"%s\" to an opaque node \"%s\".", name, LYD_NAME(parent));
Michal Vasko871a0252020-11-11 18:35:24 +01001279 return LY_EINVAL;
1280 }
Michal Vasko610553d2020-11-18 18:15:05 +01001281 if (meta) {
1282 *meta = NULL;
1283 }
Michal Vaskod86997b2020-05-26 15:19:54 +02001284
1285 /* parse the name */
1286 tmp = name;
1287 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
1288 LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name);
Michal Vasko871a0252020-11-11 18:35:24 +01001289 return LY_EINVAL;
Michal Vaskod86997b2020-05-26 15:19:54 +02001290 }
1291
1292 /* find the module */
1293 if (prefix) {
Radek Krejci0ad51f12020-07-16 12:08:12 +02001294 module = ly_ctx_get_module_implemented2(ctx, prefix, pref_len);
Radek Krejci422afb12021-03-04 16:38:16 +01001295 LY_CHECK_ERR_RET(!module, LOGERR(ctx, LY_EINVAL, "Module \"%.*s\" not found.", (int)pref_len, prefix), LY_ENOTFOUND);
Michal Vaskod86997b2020-05-26 15:19:54 +02001296 }
1297
1298 /* set value if none */
1299 if (!val_str) {
1300 val_str = "";
1301 }
1302
Radek Krejci8df109d2021-04-23 12:19:08 +02001303 return lyd_create_meta(parent, meta, module, name, name_len, val_str, strlen(val_str), NULL, LY_VALUE_JSON,
Michal Vasko871a0252020-11-11 18:35:24 +01001304 NULL, LYD_HINT_DATA, clear_dflt, NULL);
1305}
Michal Vasko3a41dff2020-07-15 14:30:28 +02001306
Michal Vaskoba696702020-11-11 19:12:45 +01001307API LY_ERR
1308lyd_new_meta2(const struct ly_ctx *ctx, struct lyd_node *parent, ly_bool clear_dflt, const struct lyd_attr *attr,
1309 struct lyd_meta **meta)
1310{
1311 const struct lys_module *mod;
1312
1313 LY_CHECK_ARG_RET(NULL, ctx, attr, parent || meta, LY_EINVAL);
1314
1315 if (parent && !parent->schema) {
1316 LOGERR(ctx, LY_EINVAL, "Cannot add metadata to an opaque node \"%s\".", ((struct lyd_node_opaq *)parent)->name);
1317 return LY_EINVAL;
Michal Vasko3a41dff2020-07-15 14:30:28 +02001318 }
Michal Vasko610553d2020-11-18 18:15:05 +01001319 if (meta) {
1320 *meta = NULL;
1321 }
Michal Vaskoba696702020-11-11 19:12:45 +01001322
1323 switch (attr->format) {
Radek Krejci8df109d2021-04-23 12:19:08 +02001324 case LY_VALUE_XML:
Michal Vaskoad92b672020-11-12 13:11:31 +01001325 mod = ly_ctx_get_module_implemented_ns(ctx, attr->name.module_ns);
Michal Vaskoba696702020-11-11 19:12:45 +01001326 if (!mod) {
Michal Vaskoad92b672020-11-12 13:11:31 +01001327 LOGERR(ctx, LY_EINVAL, "Module with namespace \"%s\" not found.", attr->name.module_ns);
Michal Vaskoba696702020-11-11 19:12:45 +01001328 return LY_ENOTFOUND;
1329 }
1330 break;
Radek Krejci8df109d2021-04-23 12:19:08 +02001331 case LY_VALUE_JSON:
Michal Vaskoad92b672020-11-12 13:11:31 +01001332 mod = ly_ctx_get_module_implemented(ctx, attr->name.module_name);
Michal Vaskoba696702020-11-11 19:12:45 +01001333 if (!mod) {
Michal Vaskoad92b672020-11-12 13:11:31 +01001334 LOGERR(ctx, LY_EINVAL, "Module \"%s\" not found.", attr->name.module_name);
Michal Vaskoba696702020-11-11 19:12:45 +01001335 return LY_ENOTFOUND;
1336 }
1337 break;
1338 default:
1339 LOGINT_RET(ctx);
1340 }
1341
Michal Vaskoad92b672020-11-12 13:11:31 +01001342 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 +01001343 NULL, attr->format, attr->val_prefix_data, attr->hints, clear_dflt, NULL);
Michal Vaskod86997b2020-05-26 15:19:54 +02001344}
1345
Michal Vasko3a41dff2020-07-15 14:30:28 +02001346API LY_ERR
Michal Vasko00cbf532020-06-15 13:58:47 +02001347lyd_new_opaq(struct lyd_node *parent, const struct ly_ctx *ctx, const char *name, const char *value,
Michal Vasko0ab974d2021-02-24 13:18:26 +01001348 const char *prefix, const char *module_name, struct lyd_node **node)
Michal Vasko00cbf532020-06-15 13:58:47 +02001349{
1350 struct lyd_node *ret = NULL;
Radek Krejci07a55962021-03-02 20:16:43 +01001351
Michal Vasko0ab974d2021-02-24 13:18:26 +01001352 LY_CHECK_ARG_RET(ctx, parent || ctx, parent || node, name, module_name, !prefix || !strcmp(prefix, module_name), LY_EINVAL);
Michal Vasko00cbf532020-06-15 13:58:47 +02001353
1354 if (!ctx) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001355 ctx = LYD_CTX(parent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001356 }
1357 if (!value) {
1358 value = "";
1359 }
1360
Michal Vasko0ab974d2021-02-24 13:18:26 +01001361 LY_CHECK_RET(lyd_create_opaq(ctx, name, strlen(name), prefix, prefix ? strlen(prefix) : 0, module_name,
Radek Krejci8df109d2021-04-23 12:19:08 +02001362 strlen(module_name), value, strlen(value), NULL, LY_VALUE_JSON, NULL, 0, &ret));
Michal Vasko3a41dff2020-07-15 14:30:28 +02001363 if (parent) {
Michal Vasko6ee6f432021-07-16 09:49:14 +02001364 lyd_insert_node(parent, NULL, ret, 1);
Michal Vasko00cbf532020-06-15 13:58:47 +02001365 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02001366
1367 if (node) {
1368 *node = ret;
1369 }
1370 return LY_SUCCESS;
Michal Vasko00cbf532020-06-15 13:58:47 +02001371}
1372
Michal Vasko3a41dff2020-07-15 14:30:28 +02001373API LY_ERR
Michal Vasko8d65f852021-02-17 11:28:13 +01001374lyd_new_opaq2(struct lyd_node *parent, const struct ly_ctx *ctx, const char *name, const char *value,
Michal Vasko0ab974d2021-02-24 13:18:26 +01001375 const char *prefix, const char *module_ns, struct lyd_node **node)
Michal Vasko8d65f852021-02-17 11:28:13 +01001376{
1377 struct lyd_node *ret = NULL;
1378
1379 LY_CHECK_ARG_RET(ctx, parent || ctx, parent || node, name, module_ns, LY_EINVAL);
1380
1381 if (!ctx) {
1382 ctx = LYD_CTX(parent);
1383 }
1384 if (!value) {
1385 value = "";
1386 }
1387
Michal Vasko0ab974d2021-02-24 13:18:26 +01001388 LY_CHECK_RET(lyd_create_opaq(ctx, name, strlen(name), prefix, prefix ? strlen(prefix) : 0, module_ns,
Radek Krejci8df109d2021-04-23 12:19:08 +02001389 strlen(module_ns), value, strlen(value), NULL, LY_VALUE_XML, NULL, 0, &ret));
Michal Vasko8d65f852021-02-17 11:28:13 +01001390 if (parent) {
Michal Vasko6ee6f432021-07-16 09:49:14 +02001391 lyd_insert_node(parent, NULL, ret, 1);
Michal Vasko8d65f852021-02-17 11:28:13 +01001392 }
1393
1394 if (node) {
1395 *node = ret;
1396 }
1397 return LY_SUCCESS;
1398}
1399
1400API LY_ERR
1401lyd_new_attr(struct lyd_node *parent, const char *module_name, const char *name, const char *value,
Radek Krejci0f969882020-08-21 16:56:47 +02001402 struct lyd_attr **attr)
Michal Vasko00cbf532020-06-15 13:58:47 +02001403{
Radek Krejci1798aae2020-07-14 13:26:06 +02001404 struct lyd_attr *ret = NULL;
Michal Vasko00cbf532020-06-15 13:58:47 +02001405 const struct ly_ctx *ctx;
1406 const char *prefix, *tmp;
Michal Vasko51d21b82020-11-13 18:03:54 +01001407 size_t pref_len, name_len, mod_len;
Michal Vasko00cbf532020-06-15 13:58:47 +02001408
Michal Vasko3a41dff2020-07-15 14:30:28 +02001409 LY_CHECK_ARG_RET(NULL, parent, !parent->schema, name, LY_EINVAL);
Michal Vasko00cbf532020-06-15 13:58:47 +02001410
Michal Vaskob7be7a82020-08-20 09:09:04 +02001411 ctx = LYD_CTX(parent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001412
1413 /* parse the name */
1414 tmp = name;
1415 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
Michal Vaskob69b68c2021-02-17 11:18:16 +01001416 LOGERR(ctx, LY_EINVAL, "Attribute name \"%s\" is not valid.", name);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001417 return LY_EVALID;
Michal Vasko00cbf532020-06-15 13:58:47 +02001418 }
1419
Michal Vaskoe137fc42021-07-22 11:53:13 +02001420 if ((pref_len == 3) && !strncmp(prefix, "xml", 3)) {
1421 /* not a prefix but special name */
1422 name = prefix;
1423 name_len += 1 + pref_len;
1424 prefix = NULL;
1425 pref_len = 0;
1426 }
1427
Michal Vasko51d21b82020-11-13 18:03:54 +01001428 /* get the module */
1429 if (module_name) {
1430 mod_len = strlen(module_name);
1431 } else {
1432 module_name = prefix;
1433 mod_len = pref_len;
1434 }
1435
Michal Vasko00cbf532020-06-15 13:58:47 +02001436 /* set value if none */
Michal Vasko8d65f852021-02-17 11:28:13 +01001437 if (!value) {
1438 value = "";
Michal Vasko00cbf532020-06-15 13:58:47 +02001439 }
1440
Michal Vasko8d65f852021-02-17 11:28:13 +01001441 LY_CHECK_RET(lyd_create_attr(parent, &ret, ctx, name, name_len, prefix, pref_len, module_name, mod_len, value,
Radek Krejci8df109d2021-04-23 12:19:08 +02001442 strlen(value), NULL, LY_VALUE_JSON, NULL, LYD_HINT_DATA));
Michal Vasko8d65f852021-02-17 11:28:13 +01001443
1444 if (attr) {
1445 *attr = ret;
1446 }
1447 return LY_SUCCESS;
1448}
1449
1450API LY_ERR
1451lyd_new_attr2(struct lyd_node *parent, const char *module_ns, const char *name, const char *value,
1452 struct lyd_attr **attr)
1453{
1454 struct lyd_attr *ret = NULL;
1455 const struct ly_ctx *ctx;
1456 const char *prefix, *tmp;
1457 size_t pref_len, name_len;
1458
1459 LY_CHECK_ARG_RET(NULL, parent, !parent->schema, name, LY_EINVAL);
1460
1461 ctx = LYD_CTX(parent);
1462
1463 /* parse the name */
1464 tmp = name;
1465 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
1466 LOGERR(ctx, LY_EINVAL, "Attribute name \"%s\" is not valid.", name);
1467 return LY_EVALID;
1468 }
1469
Michal Vaskoe137fc42021-07-22 11:53:13 +02001470 if ((pref_len == 3) && !strncmp(prefix, "xml", 3)) {
1471 /* not a prefix but special name */
1472 name = prefix;
1473 name_len += 1 + pref_len;
1474 prefix = NULL;
1475 pref_len = 0;
1476 }
1477
Michal Vasko8d65f852021-02-17 11:28:13 +01001478 /* set value if none */
1479 if (!value) {
1480 value = "";
1481 }
1482
1483 LY_CHECK_RET(lyd_create_attr(parent, &ret, ctx, name, name_len, prefix, pref_len, module_ns,
Radek Krejci8df109d2021-04-23 12:19:08 +02001484 module_ns ? strlen(module_ns) : 0, value, strlen(value), NULL, LY_VALUE_XML, NULL, LYD_HINT_DATA));
Michal Vasko3a41dff2020-07-15 14:30:28 +02001485
1486 if (attr) {
1487 *attr = ret;
1488 }
1489 return LY_SUCCESS;
Michal Vasko00cbf532020-06-15 13:58:47 +02001490}
1491
Radek Krejci09c77442021-04-26 11:10:34 +02001492/**
1493 * @brief Change the value of a term (leaf or leaf-list) node.
1494 *
1495 * Node changed this way is always considered explicitly set, meaning its default flag
1496 * is always cleared.
1497 *
1498 * @param[in] term Term node to change.
1499 * @param[in] value New value to set.
1500 * @param[in] value_len Length of @p value.
1501 * @param[in] format Format of @p value.
1502 * @return LY_SUCCESS if value was changed,
1503 * @return LY_EEXIST if value was the same and only the default flag was cleared,
1504 * @return LY_ENOT if the values were equal and no change occured,
1505 * @return LY_ERR value on other errors.
1506 */
1507static LY_ERR
1508_lyd_change_term(struct lyd_node *term, const void *value, size_t value_len, LY_VALUE_FORMAT format)
Michal Vasko00cbf532020-06-15 13:58:47 +02001509{
1510 LY_ERR ret = LY_SUCCESS;
1511 struct lysc_type *type;
1512 struct lyd_node_term *t;
1513 struct lyd_node *parent;
1514 struct lyd_value val = {0};
Radek Krejci857189e2020-09-01 13:26:36 +02001515 ly_bool dflt_change, val_change;
Michal Vasko00cbf532020-06-15 13:58:47 +02001516
Radek Krejci09c77442021-04-26 11:10:34 +02001517 assert(term && term->schema && (term->schema->nodetype & LYD_NODE_TERM));
Michal Vasko00cbf532020-06-15 13:58:47 +02001518
Michal Vasko00cbf532020-06-15 13:58:47 +02001519 t = (struct lyd_node_term *)term;
1520 type = ((struct lysc_node_leaf *)term->schema)->type;
1521
1522 /* parse the new value */
Radek Krejciddace2c2021-01-08 11:30:56 +01001523 LOG_LOCSET(term->schema, term, NULL, NULL);
Radek Krejci09c77442021-04-26 11:10:34 +02001524 ret = lyd_value_store(LYD_CTX(term), &val, type, value, value_len, NULL, format, NULL, LYD_HINT_DATA, term->schema, NULL);
Radek Krejciddace2c2021-01-08 11:30:56 +01001525 LOG_LOCBACK(term->schema ? 1 : 0, 1, 0, 0);
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001526 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001527
1528 /* compare original and new value */
1529 if (type->plugin->compare(&t->value, &val)) {
1530 /* values differ, switch them */
Michal Vaskob7be7a82020-08-20 09:09:04 +02001531 type->plugin->free(LYD_CTX(term), &t->value);
Michal Vasko00cbf532020-06-15 13:58:47 +02001532 t->value = val;
1533 memset(&val, 0, sizeof val);
1534 val_change = 1;
1535 } else {
1536 val_change = 0;
1537 }
1538
1539 /* always clear the default flag */
1540 if (term->flags & LYD_DEFAULT) {
Michal Vasko9e685082021-01-29 14:49:09 +01001541 for (parent = term; parent; parent = lyd_parent(parent)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001542 parent->flags &= ~LYD_DEFAULT;
1543 }
1544 dflt_change = 1;
1545 } else {
1546 dflt_change = 0;
1547 }
1548
1549 if (val_change || dflt_change) {
1550 /* make the node non-validated */
1551 term->flags &= LYD_NEW;
1552 }
1553
1554 if (val_change) {
1555 if (term->schema->nodetype == LYS_LEAFLIST) {
1556 /* leaf-list needs to be hashed again and re-inserted into parent */
1557 lyd_unlink_hash(term);
1558 lyd_hash(term);
1559 LY_CHECK_GOTO(ret = lyd_insert_hash(term), cleanup);
1560 } else if ((term->schema->flags & LYS_KEY) && term->parent) {
1561 /* list needs to be updated if its key was changed */
1562 assert(term->parent->schema->nodetype == LYS_LIST);
Michal Vasko9e685082021-01-29 14:49:09 +01001563 lyd_unlink_hash(lyd_parent(term));
1564 lyd_hash(lyd_parent(term));
1565 LY_CHECK_GOTO(ret = lyd_insert_hash(lyd_parent(term)), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001566 } /* else leaf that is not a key, its value is not used for its hash so it does not change */
1567 }
1568
1569 /* retrun value */
1570 if (!val_change) {
1571 if (dflt_change) {
1572 /* only default flag change */
1573 ret = LY_EEXIST;
1574 } else {
1575 /* no change */
1576 ret = LY_ENOT;
1577 }
1578 } /* else value changed, LY_SUCCESS */
1579
1580cleanup:
Michal Vasko59512fc2020-12-09 18:13:29 +01001581 if (val.realtype) {
1582 type->plugin->free(LYD_CTX(term), &val);
1583 }
Michal Vasko00cbf532020-06-15 13:58:47 +02001584 return ret;
1585}
1586
Michal Vasko41586352020-07-13 13:54:25 +02001587API LY_ERR
Radek Krejci09c77442021-04-26 11:10:34 +02001588lyd_change_term(struct lyd_node *term, const char *val_str)
1589{
1590 LY_CHECK_ARG_RET(NULL, term, term->schema, term->schema->nodetype & LYD_NODE_TERM, LY_EINVAL);
1591
1592 return _lyd_change_term(term, val_str, val_str ? strlen(val_str) : 0, LY_VALUE_JSON);
1593}
1594
1595API LY_ERR
1596lyd_change_term_bin(struct lyd_node *term, const void *value, size_t value_len)
1597{
1598 LY_CHECK_ARG_RET(NULL, term, term->schema, term->schema->nodetype & LYD_NODE_TERM, LY_EINVAL);
1599
1600 return _lyd_change_term(term, value, value_len, LY_VALUE_LYB);
1601}
1602
1603API LY_ERR
1604lyd_change_term_canon(struct lyd_node *term, const char *val_str)
1605{
1606 LY_CHECK_ARG_RET(NULL, term, term->schema, term->schema->nodetype & LYD_NODE_TERM, LY_EINVAL);
1607
1608 return _lyd_change_term(term, val_str, val_str ? strlen(val_str) : 0, LY_VALUE_CANON);
1609}
1610
1611API LY_ERR
Michal Vasko41586352020-07-13 13:54:25 +02001612lyd_change_meta(struct lyd_meta *meta, const char *val_str)
1613{
1614 LY_ERR ret = LY_SUCCESS;
Radek Krejci2b18bf12020-11-06 11:20:20 +01001615 struct lyd_meta *m2 = NULL;
Michal Vasko41586352020-07-13 13:54:25 +02001616 struct lyd_value val;
Radek Krejci857189e2020-09-01 13:26:36 +02001617 ly_bool val_change;
Michal Vasko41586352020-07-13 13:54:25 +02001618
1619 LY_CHECK_ARG_RET(NULL, meta, LY_EINVAL);
1620
1621 if (!val_str) {
1622 val_str = "";
1623 }
1624
1625 /* parse the new value into a new meta structure */
1626 LY_CHECK_GOTO(ret = lyd_create_meta(NULL, &m2, meta->annotation->module, meta->name, strlen(meta->name), val_str,
Radek Krejci8df109d2021-04-23 12:19:08 +02001627 strlen(val_str), NULL, LY_VALUE_JSON, NULL, LYD_HINT_DATA, 0, NULL), cleanup);
Michal Vasko41586352020-07-13 13:54:25 +02001628
1629 /* compare original and new value */
1630 if (lyd_compare_meta(meta, m2)) {
1631 /* values differ, switch them */
1632 val = meta->value;
1633 meta->value = m2->value;
1634 m2->value = val;
1635 val_change = 1;
1636 } else {
1637 val_change = 0;
1638 }
1639
1640 /* retrun value */
1641 if (!val_change) {
1642 /* no change */
1643 ret = LY_ENOT;
1644 } /* else value changed, LY_SUCCESS */
1645
1646cleanup:
Michal Vasko1a66a5d2020-11-18 18:15:37 +01001647 lyd_free_meta_single(m2);
Michal Vasko41586352020-07-13 13:54:25 +02001648 return ret;
1649}
1650
Radek Krejci09c77442021-04-26 11:10:34 +02001651/**
1652 * @brief Update node value.
1653 *
1654 * @param[in] node Node to update.
1655 * @param[in] value New value to set.
1656 * @param[in] value_len Length of @p value.
1657 * @param[in] value_type Type of @p value for anydata/anyxml node.
1658 * @param[in] format Format of @p value.
1659 * @param[out] new_parent Set to @p node if the value was updated, otherwise set to NULL.
1660 * @param[out] new_node Set to @p node if the value was updated, otherwise set to NULL.
1661 * @return LY_ERR value.
1662 */
Michal Vasko6741dc62021-02-04 09:27:45 +01001663static LY_ERR
Radek Krejci09c77442021-04-26 11:10:34 +02001664lyd_new_path_update(struct lyd_node *node, const void *value, size_t value_len, LYD_ANYDATA_VALUETYPE value_type,
1665 LY_VALUE_FORMAT format, struct lyd_node **new_parent, struct lyd_node **new_node)
1666{
1667 LY_ERR ret = LY_SUCCESS;
1668 struct lyd_node *new_any;
1669
1670 switch (node->schema->nodetype) {
1671 case LYS_CONTAINER:
1672 case LYS_NOTIF:
1673 case LYS_RPC:
1674 case LYS_ACTION:
1675 case LYS_LIST:
1676 /* if it exists, there is nothing to update */
1677 *new_parent = NULL;
1678 *new_node = NULL;
1679 break;
1680 case LYS_LEAFLIST:
1681 if (!lysc_is_dup_inst_list(node->schema)) {
1682 /* if it exists, there is nothing to update */
1683 *new_parent = NULL;
1684 *new_node = NULL;
1685 break;
1686 }
1687 /* fallthrough */
1688 case LYS_LEAF:
1689 ret = _lyd_change_term(node, value, value_len, format);
1690 if ((ret == LY_SUCCESS) || (ret == LY_EEXIST)) {
1691 /* there was an actual change (at least of the default flag) */
1692 *new_parent = node;
1693 *new_node = node;
1694 ret = LY_SUCCESS;
1695 } else if (ret == LY_ENOT) {
1696 /* no change */
1697 *new_parent = NULL;
1698 *new_node = NULL;
1699 ret = LY_SUCCESS;
1700 } /* else error */
1701 break;
1702 case LYS_ANYDATA:
1703 case LYS_ANYXML:
1704 /* create a new any node */
1705 LY_CHECK_RET(lyd_create_any(node->schema, value, value_type, 0, &new_any));
1706
1707 /* compare with the existing one */
1708 if (lyd_compare_single(node, new_any, 0)) {
1709 /* not equal, switch values (so that we can use generic node free) */
1710 ((struct lyd_node_any *)new_any)->value = ((struct lyd_node_any *)node)->value;
1711 ((struct lyd_node_any *)new_any)->value_type = ((struct lyd_node_any *)node)->value_type;
1712 ((struct lyd_node_any *)node)->value.str = value;
1713 ((struct lyd_node_any *)node)->value_type = value_type;
1714
1715 *new_parent = node;
1716 *new_node = node;
1717 } else {
1718 /* they are equal */
1719 *new_parent = NULL;
1720 *new_node = NULL;
1721 }
1722 lyd_free_tree(new_any);
1723 break;
1724 default:
1725 LOGINT(LYD_CTX(node));
1726 ret = LY_EINT;
1727 break;
1728 }
1729
1730 return ret;
1731}
1732
1733static LY_ERR
1734lyd_new_path_check_find_lypath(struct ly_path *path, const char *str_path, const char *value, size_t value_len,
1735 LY_VALUE_FORMAT format, uint32_t options)
Michal Vasko6741dc62021-02-04 09:27:45 +01001736{
Michal Vaskoe78faec2021-04-08 17:24:43 +02001737 LY_ERR r;
Michal Vasko6741dc62021-02-04 09:27:45 +01001738 struct ly_path_predicate *pred;
Michal Vaskoe78faec2021-04-08 17:24:43 +02001739 const struct lysc_node *schema = NULL;
1740 LY_ARRAY_COUNT_TYPE u, new_count;
1741 int create = 0;
Michal Vasko6741dc62021-02-04 09:27:45 +01001742
1743 assert(path);
1744
1745 /* go through all the compiled nodes */
1746 LY_ARRAY_FOR(path, u) {
1747 schema = path[u].node;
Michal Vaskoe78faec2021-04-08 17:24:43 +02001748
1749 if (lysc_is_dup_inst_list(schema)) {
1750 if (path[u].pred_type == LY_PATH_PREDTYPE_NONE) {
1751 /* creating a new key-less list or state leaf-list instance */
1752 create = 1;
1753 new_count = u;
1754 } else if (path[u].pred_type != LY_PATH_PREDTYPE_POSITION) {
1755 LOG_LOCSET(schema, NULL, NULL, NULL);
1756 LOGVAL(schema->module->ctx, LYVE_XPATH, "Invalid predicate for %s \"%s\" in path \"%s\".",
1757 lys_nodetype2str(schema->nodetype), schema->name, str_path);
1758 LOG_LOCBACK(1, 0, 0, 0);
1759 return LY_EINVAL;
1760 }
1761 } else if ((schema->nodetype == LYS_LIST) && (path[u].pred_type != LY_PATH_PREDTYPE_LIST)) {
1762 if ((u < LY_ARRAY_COUNT(path) - 1) || !(options & LYD_NEW_PATH_OPAQ)) {
Michal Vasko6741dc62021-02-04 09:27:45 +01001763 LOG_LOCSET(schema, NULL, NULL, NULL);
1764 LOGVAL(schema->module->ctx, LYVE_XPATH, "Predicate missing for %s \"%s\" in path \"%s\".",
1765 lys_nodetype2str(schema->nodetype), schema->name, str_path);
1766 LOG_LOCBACK(1, 0, 0, 0);
1767 return LY_EINVAL;
Michal Vaskoe78faec2021-04-08 17:24:43 +02001768 } /* else creating an opaque list */
1769 } else if ((schema->nodetype == LYS_LEAFLIST) && (path[u].pred_type != LY_PATH_PREDTYPE_LEAFLIST)) {
Michal Vaskoe78faec2021-04-08 17:24:43 +02001770 r = LY_SUCCESS;
1771 if (options & LYD_NEW_PATH_OPAQ) {
Radek Krejci09c77442021-04-26 11:10:34 +02001772 r = lyd_value_validate(NULL, schema, value, value_len, NULL, NULL, NULL);
Michal Vaskoe78faec2021-04-08 17:24:43 +02001773 }
1774 if (!r) {
1775 /* store the new predicate so that it is used when searching for this instance */
1776 path[u].pred_type = LY_PATH_PREDTYPE_LEAFLIST;
1777 LY_ARRAY_NEW_RET(schema->module->ctx, path[u].predicates, pred, LY_EMEM);
1778
1779 LY_CHECK_RET(lyd_value_store(schema->module->ctx, &pred->value,
Radek Krejci09c77442021-04-26 11:10:34 +02001780 ((struct lysc_node_leaflist *)schema)->type, value, value_len, NULL, format, NULL,
Michal Vaskoe78faec2021-04-08 17:24:43 +02001781 LYD_HINT_DATA, schema, NULL));
1782 ++((struct lysc_type *)pred->value.realtype)->refcount;
1783 } /* else we have opaq flag and the value is not valid, leave no predicate and then create an opaque node */
1784 }
Michal Vasko6741dc62021-02-04 09:27:45 +01001785 }
1786
Michal Vaskoe78faec2021-04-08 17:24:43 +02001787 if (create) {
1788 /* hide the nodes that should always be created so they are not found */
1789 while (new_count < LY_ARRAY_COUNT(path)) {
1790 LY_ARRAY_DECREMENT(path);
1791 }
Michal Vasko6741dc62021-02-04 09:27:45 +01001792 }
1793
Michal Vaskoe78faec2021-04-08 17:24:43 +02001794 return LY_SUCCESS;
Michal Vasko6741dc62021-02-04 09:27:45 +01001795}
1796
Radek Krejci95ccd1b2021-03-12 14:57:22 +01001797/**
1798 * @brief Create a new node in the data tree based on a path. All node types can be created.
1799 *
Michal Vaskoa918a632021-07-02 11:53:36 +02001800 * If @p path points to a list key, the key value from the predicate is used and @p value is ignored.
1801 * Also, if a leaf-list is being created and both a predicate is defined in @p path
Radek Krejci95ccd1b2021-03-12 14:57:22 +01001802 * and @p value is set, the predicate is preferred.
1803 *
1804 * For key-less lists and state leaf-lists, positional predicates can be used. If no preciate is used for these
1805 * nodes, they are always created.
1806 *
1807 * @param[in] parent Data parent to add to/modify, can be NULL. Note that in case a first top-level sibling is used,
1808 * it may no longer be first if @p path is absolute and starts with a non-existing top-level node inserted
1809 * before @p parent. Use ::lyd_first_sibling() to adjust @p parent in these cases.
1810 * @param[in] ctx libyang context, must be set if @p parent is NULL.
1811 * @param[in] ext Extension instance where the node being created is defined. This argument takes effect only for absolute
1812 * path or when the relative paths touches document root (top-level). In such cases the present extension instance replaces
1813 * searching for the appropriate module.
1814 * @param[in] path [Path](@ref howtoXPath) to create.
Radek Krejci09c77442021-04-26 11:10:34 +02001815 * @param[in] value Value of the new leaf/leaf-list (const char *) in ::LY_VALUE_JSON format. If creating an
1816 * anyxml/anydata node, the expected type depends on @p value_type. For other node types, it should be NULL.
1817 * @param[in] value_len Length of @p value in bytes. May be 0 if @p value is a zero-terminated string. Ignored when
1818 * creating anyxml/anydata nodes.
Radek Krejci95ccd1b2021-03-12 14:57:22 +01001819 * @param[in] value_type Anyxml/anydata node @p value type.
1820 * @param[in] options Bitmask of options, see @ref pathoptions.
1821 * @param[out] new_parent Optional first parent node created. If only one node was created, equals to @p new_node.
1822 * @param[out] new_node Optional last node created.
1823 * @return LY_ERR value.
1824 */
1825static LY_ERR
1826lyd_new_path_(struct lyd_node *parent, const struct ly_ctx *ctx, const struct lysc_ext_instance *ext, const char *path,
Radek Krejci09c77442021-04-26 11:10:34 +02001827 const void *value, size_t value_len, LYD_ANYDATA_VALUETYPE value_type, uint32_t options,
Radek Krejci95ccd1b2021-03-12 14:57:22 +01001828 struct lyd_node **new_parent, struct lyd_node **new_node)
Michal Vasko00cbf532020-06-15 13:58:47 +02001829{
1830 LY_ERR ret = LY_SUCCESS, r;
1831 struct lyxp_expr *exp = NULL;
1832 struct ly_path *p = NULL;
1833 struct lyd_node *nparent = NULL, *nnode = NULL, *node = NULL, *cur_parent;
1834 const struct lysc_node *schema;
Michal Vaskoe78faec2021-04-08 17:24:43 +02001835 const struct lyd_value *val = NULL;
Radek Krejci910d0132021-03-05 14:19:31 +01001836 LY_ARRAY_COUNT_TYPE path_idx = 0, orig_count = 0;
Radek Krejci09c77442021-04-26 11:10:34 +02001837 LY_VALUE_FORMAT format;
Michal Vasko00cbf532020-06-15 13:58:47 +02001838
Radek Krejci95ccd1b2021-03-12 14:57:22 +01001839 assert(parent || ctx);
Radek Krejci09c77442021-04-26 11:10:34 +02001840 assert(path && ((path[0] == '/') || parent));
1841 assert(!(options & LYD_NEW_PATH_BIN_VALUE) || !(options & LYD_NEW_PATH_CANON_VALUE));
Michal Vasko00cbf532020-06-15 13:58:47 +02001842
1843 if (!ctx) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001844 ctx = LYD_CTX(parent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001845 }
Radek Krejci09c77442021-04-26 11:10:34 +02001846 if (value && !value_len) {
1847 value_len = strlen(value);
1848 }
1849 if (options & LYD_NEW_PATH_BIN_VALUE) {
1850 format = LY_VALUE_LYB;
1851 } else if (options & LYD_NEW_PATH_CANON_VALUE) {
1852 format = LY_VALUE_CANON;
1853 } else {
1854 format = LY_VALUE_JSON;
1855 }
Michal Vasko00cbf532020-06-15 13:58:47 +02001856
1857 /* parse path */
Michal Vaskoed725d72021-06-23 12:03:45 +02001858 LY_CHECK_GOTO(ret = ly_path_parse(ctx, NULL, path, strlen(path), 0, LY_PATH_BEGIN_EITHER, LY_PATH_PREFIX_OPTIONAL,
1859 LY_PATH_PRED_SIMPLE, &exp), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001860
1861 /* compile path */
Michal Vaskoed725d72021-06-23 12:03:45 +02001862 LY_CHECK_GOTO(ret = ly_path_compile(ctx, NULL, parent ? parent->schema : NULL, ext, exp,
Radek Krejci8df109d2021-04-23 12:19:08 +02001863 options & LYD_NEW_PATH_OUTPUT ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT, LY_PATH_TARGET_MANY, LY_VALUE_JSON,
Michal Vaskoed725d72021-06-23 12:03:45 +02001864 NULL, &p), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001865
Michal Vasko6741dc62021-02-04 09:27:45 +01001866 /* check the compiled path before searching existing nodes, it may be shortened */
1867 orig_count = LY_ARRAY_COUNT(p);
Radek Krejci09c77442021-04-26 11:10:34 +02001868 LY_CHECK_GOTO(ret = lyd_new_path_check_find_lypath(p, path, value, value_len, format, options), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001869
1870 /* try to find any existing nodes in the path */
1871 if (parent) {
1872 ret = ly_path_eval_partial(p, parent, &path_idx, &node);
1873 if (ret == LY_SUCCESS) {
Michal Vasko6741dc62021-02-04 09:27:45 +01001874 if (orig_count == LY_ARRAY_COUNT(p)) {
1875 /* the node exists, are we supposed to update it or is it just a default? */
1876 if (!(options & LYD_NEW_PATH_UPDATE) && !(node->flags & LYD_DEFAULT)) {
1877 LOG_LOCSET(NULL, node, NULL, NULL);
1878 LOGVAL(ctx, LYVE_REFERENCE, "Path \"%s\" already exists", path);
1879 LOG_LOCBACK(0, 1, 0, 0);
1880 ret = LY_EEXIST;
1881 goto cleanup;
1882 }
Michal Vasko00cbf532020-06-15 13:58:47 +02001883
Michal Vasko6741dc62021-02-04 09:27:45 +01001884 /* update the existing node */
Radek Krejci09c77442021-04-26 11:10:34 +02001885 ret = lyd_new_path_update(node, value, value_len, value_type, format, &nparent, &nnode);
Michal Vasko6741dc62021-02-04 09:27:45 +01001886 goto cleanup;
1887 } /* else we were not searching for the whole path */
Michal Vasko00cbf532020-06-15 13:58:47 +02001888 } else if (ret == LY_EINCOMPLETE) {
1889 /* some nodes were found, adjust the iterator to the next segment */
1890 ++path_idx;
1891 } else if (ret == LY_ENOTFOUND) {
1892 /* 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 +01001893 if (lysc_data_parent(p[0].node)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001894 node = parent;
1895 }
1896 } else {
1897 /* error */
1898 goto cleanup;
1899 }
1900 }
1901
Michal Vasko6741dc62021-02-04 09:27:45 +01001902 /* restore the full path for creating new nodes */
1903 while (orig_count > LY_ARRAY_COUNT(p)) {
1904 LY_ARRAY_INCREMENT(p);
1905 }
1906
Michal Vasko00cbf532020-06-15 13:58:47 +02001907 /* create all the non-existing nodes in a loop */
Michal Vaskod989ba02020-08-24 10:59:24 +02001908 for ( ; path_idx < LY_ARRAY_COUNT(p); ++path_idx) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001909 cur_parent = node;
1910 schema = p[path_idx].node;
1911
1912 switch (schema->nodetype) {
1913 case LYS_LIST:
Michal Vaskoe78faec2021-04-08 17:24:43 +02001914 if (lysc_is_dup_inst_list(schema)) {
1915 /* create key-less list instance */
1916 LY_CHECK_GOTO(ret = lyd_create_inner(schema, &node), cleanup);
1917 } else if ((options & LYD_NEW_PATH_OPAQ) && (p[path_idx].pred_type == LY_PATH_PREDTYPE_NONE)) {
1918 /* creating opaque list without keys */
1919 LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), NULL, 0,
Radek Krejci8df109d2021-04-23 12:19:08 +02001920 schema->module->name, strlen(schema->module->name), NULL, 0, NULL, LY_VALUE_JSON, NULL,
Michal Vaskoe78faec2021-04-08 17:24:43 +02001921 LYD_NODEHINT_LIST, &node), cleanup);
1922 } else {
1923 /* create standard list instance */
1924 assert(p[path_idx].pred_type == LY_PATH_PREDTYPE_LIST);
1925 LY_CHECK_GOTO(ret = lyd_create_list(schema, p[path_idx].predicates, &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001926 }
Michal Vaskoe78faec2021-04-08 17:24:43 +02001927 break;
Michal Vasko00cbf532020-06-15 13:58:47 +02001928 case LYS_CONTAINER:
1929 case LYS_NOTIF:
1930 case LYS_RPC:
1931 case LYS_ACTION:
1932 LY_CHECK_GOTO(ret = lyd_create_inner(schema, &node), cleanup);
1933 break;
1934 case LYS_LEAFLIST:
Michal Vaskoe78faec2021-04-08 17:24:43 +02001935 if ((options & LYD_NEW_PATH_OPAQ) && (p[path_idx].pred_type != LY_PATH_PREDTYPE_LEAFLIST)) {
1936 /* we have not checked this only for dup-inst lists, otherwise it must be opaque */
1937 r = LY_EVALID;
1938 if (lysc_is_dup_inst_list(schema)) {
1939 /* validate value */
Radek Krejci09c77442021-04-26 11:10:34 +02001940 r = lyd_value_validate(NULL, schema, value ? value : "", value_len, NULL, NULL, NULL);
Michal Vaskoe78faec2021-04-08 17:24:43 +02001941 }
1942 if (r && (r != LY_EINCOMPLETE)) {
1943 /* creating opaque leaf-list */
Radek Krejci09c77442021-04-26 11:10:34 +02001944 LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), value, value_len,
1945 schema->module->name, strlen(schema->module->name), NULL, 0, NULL, format, NULL,
1946 LYD_NODEHINT_LEAFLIST, &node), cleanup);
Michal Vaskoe78faec2021-04-08 17:24:43 +02001947 break;
1948 }
1949 }
1950
1951 /* get value to set */
1952 if (p[path_idx].pred_type == LY_PATH_PREDTYPE_LEAFLIST) {
1953 val = &p[path_idx].predicates[0].value;
Michal Vaskoe78faec2021-04-08 17:24:43 +02001954 }
1955
1956 /* create a leaf-list instance */
1957 if (val) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001958 LY_CHECK_GOTO(ret = lyd_create_term2(schema, &p[path_idx].predicates[0].value, &node), cleanup);
Michal Vaskoe78faec2021-04-08 17:24:43 +02001959 } else {
Radek Krejci09c77442021-04-26 11:10:34 +02001960 LY_CHECK_GOTO(ret = lyd_create_term(schema, value, value_len, NULL, format, NULL, LYD_HINT_DATA,
1961 NULL, &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001962 }
1963 break;
1964 case LYS_LEAF:
Michal Vasko35880332020-12-08 13:08:12 +01001965 if (lysc_is_key(schema)) {
1966 /* it must have been already created or some error will occur later */
1967 assert(cur_parent);
Michal Vaskoa918a632021-07-02 11:53:36 +02001968 lyd_find_sibling_schema(lyd_child(cur_parent), schema, &node);
1969 assert(node);
Michal Vasko35880332020-12-08 13:08:12 +01001970 goto next_iter;
1971 }
1972
Michal Vaskoe78faec2021-04-08 17:24:43 +02001973 if (options & LYD_NEW_PATH_OPAQ) {
1974 /* validate value */
Radek Krejci09c77442021-04-26 11:10:34 +02001975 r = lyd_value_validate(NULL, schema, value ? value : "", value_len, NULL, NULL, NULL);
Michal Vaskoe78faec2021-04-08 17:24:43 +02001976 if (r && (r != LY_EINCOMPLETE)) {
1977 /* creating opaque leaf */
Radek Krejci09c77442021-04-26 11:10:34 +02001978 LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), value, value_len,
1979 schema->module->name, strlen(schema->module->name), NULL, 0, NULL, format, NULL, 0, &node),
1980 cleanup);
Michal Vaskoe78faec2021-04-08 17:24:43 +02001981 break;
1982 }
1983 }
1984
Michal Vaskoe78faec2021-04-08 17:24:43 +02001985 /* create a leaf instance */
Radek Krejci09c77442021-04-26 11:10:34 +02001986 LY_CHECK_GOTO(ret = lyd_create_term(schema, value, value_len, NULL, format, NULL, LYD_HINT_DATA, NULL,
1987 &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001988 break;
1989 case LYS_ANYDATA:
1990 case LYS_ANYXML:
Michal Vasko366a4a12020-12-04 16:23:57 +01001991 LY_CHECK_GOTO(ret = lyd_create_any(schema, value, value_type, 0, &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001992 break;
1993 default:
1994 LOGINT(ctx);
1995 ret = LY_EINT;
1996 goto cleanup;
1997 }
1998
1999 if (cur_parent) {
2000 /* connect to the parent */
Michal Vasko6ee6f432021-07-16 09:49:14 +02002001 lyd_insert_node(cur_parent, NULL, node, 0);
Michal Vasko00cbf532020-06-15 13:58:47 +02002002 } else if (parent) {
2003 /* connect to top-level siblings */
Michal Vasko6ee6f432021-07-16 09:49:14 +02002004 lyd_insert_node(NULL, &parent, node, 0);
Michal Vasko00cbf532020-06-15 13:58:47 +02002005 }
2006
Michal Vasko35880332020-12-08 13:08:12 +01002007next_iter:
Michal Vasko00cbf532020-06-15 13:58:47 +02002008 /* update remembered nodes */
2009 if (!nparent) {
2010 nparent = node;
2011 }
2012 nnode = node;
2013 }
2014
2015cleanup:
2016 lyxp_expr_free(ctx, exp);
Michal Vasko6741dc62021-02-04 09:27:45 +01002017 if (p) {
2018 while (orig_count > LY_ARRAY_COUNT(p)) {
2019 LY_ARRAY_INCREMENT(p);
2020 }
2021 }
Michal Vasko00cbf532020-06-15 13:58:47 +02002022 ly_path_free(ctx, p);
2023 if (!ret) {
2024 /* set out params only on success */
2025 if (new_parent) {
2026 *new_parent = nparent;
2027 }
2028 if (new_node) {
2029 *new_node = nnode;
2030 }
Michal Vaskof4b95ba2020-12-11 08:42:33 +01002031 } else {
2032 lyd_free_tree(nparent);
Michal Vasko00cbf532020-06-15 13:58:47 +02002033 }
2034 return ret;
2035}
2036
Radek Krejci95ccd1b2021-03-12 14:57:22 +01002037API LY_ERR
2038lyd_new_path(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const char *value, uint32_t options,
2039 struct lyd_node **node)
2040{
Radek Krejci09c77442021-04-26 11:10:34 +02002041 LY_CHECK_ARG_RET(ctx, parent || ctx, path, (path[0] == '/') || parent,
2042 !(options & LYD_NEW_PATH_BIN_VALUE) || !(options & LYD_NEW_PATH_CANON_VALUE), LY_EINVAL);
2043
2044 return lyd_new_path_(parent, ctx, NULL, path, value, 0, LYD_ANYDATA_STRING, options, node, NULL);
Radek Krejci95ccd1b2021-03-12 14:57:22 +01002045}
2046
2047API LY_ERR
2048lyd_new_path2(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const void *value,
Radek Krejci09c77442021-04-26 11:10:34 +02002049 size_t value_len, LYD_ANYDATA_VALUETYPE value_type, uint32_t options, struct lyd_node **new_parent,
2050 struct lyd_node **new_node)
Radek Krejci95ccd1b2021-03-12 14:57:22 +01002051{
Radek Krejci09c77442021-04-26 11:10:34 +02002052 LY_CHECK_ARG_RET(ctx, parent || ctx, path, (path[0] == '/') || parent,
2053 !(options & LYD_NEW_PATH_BIN_VALUE) || !(options & LYD_NEW_PATH_CANON_VALUE), LY_EINVAL);
2054 return lyd_new_path_(parent, ctx, NULL, path, value, value_len, value_type, options, new_parent, new_node);
Radek Krejci95ccd1b2021-03-12 14:57:22 +01002055}
2056
2057API LY_ERR
2058lyd_new_ext_path(struct lyd_node *parent, const struct lysc_ext_instance *ext, const char *path, const void *value,
2059 uint32_t options, struct lyd_node **node)
2060{
2061 const struct ly_ctx *ctx = ext ? ext->module->ctx : NULL;
2062
Radek Krejci09c77442021-04-26 11:10:34 +02002063 LY_CHECK_ARG_RET(ctx, ext, path, (path[0] == '/') || parent,
2064 !(options & LYD_NEW_PATH_BIN_VALUE) || !(options & LYD_NEW_PATH_CANON_VALUE), LY_EINVAL);
2065 return lyd_new_path_(parent, ctx, ext, path, value, 0, LYD_ANYDATA_STRING, options, node, NULL);
Radek Krejci95ccd1b2021-03-12 14:57:22 +01002066}
2067
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002068LY_ERR
2069lyd_new_implicit_r(struct lyd_node *parent, struct lyd_node **first, const struct lysc_node *sparent,
Radek Krejci4f2e3e52021-03-30 14:20:28 +02002070 const struct lys_module *mod, struct ly_set *node_when, struct ly_set *node_exts, struct ly_set *node_types,
2071 uint32_t impl_opts, struct lyd_node **diff)
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002072{
2073 LY_ERR ret;
Michal Vaskod1e53b92021-01-28 13:11:06 +01002074 const struct lysc_node *iter = NULL;
Radek Krejci2b18bf12020-11-06 11:20:20 +01002075 struct lyd_node *node = NULL;
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002076 struct lyd_value **dflts;
2077 LY_ARRAY_COUNT_TYPE u;
Michal Vasko630d9892020-12-08 17:11:08 +01002078 uint32_t getnext_opts;
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002079
2080 assert(first && (parent || sparent || mod));
2081
2082 if (!sparent && parent) {
2083 sparent = parent->schema;
2084 }
2085
Michal Vasko630d9892020-12-08 17:11:08 +01002086 getnext_opts = LYS_GETNEXT_WITHCHOICE;
2087 if (impl_opts & LYD_IMPLICIT_OUTPUT) {
2088 getnext_opts |= LYS_GETNEXT_OUTPUT;
2089 }
2090
2091 while ((iter = lys_getnext(iter, sparent, mod ? mod->compiled : NULL, getnext_opts))) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002092 if ((impl_opts & LYD_IMPLICIT_NO_STATE) && (iter->flags & LYS_CONFIG_R)) {
2093 continue;
Michal Vasko44b19a12020-08-07 09:21:30 +02002094 } else if ((impl_opts & LYD_IMPLICIT_NO_CONFIG) && (iter->flags & LYS_CONFIG_W)) {
2095 continue;
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002096 }
2097
2098 switch (iter->nodetype) {
2099 case LYS_CHOICE:
Michal Vaskobcf4d7d2020-11-18 18:16:49 +01002100 node = lys_getnext_data(NULL, *first, NULL, iter, NULL);
2101 if (!node && ((struct lysc_node_choice *)iter)->dflt) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002102 /* create default case data */
Michal Vasko14ed9cd2021-01-28 14:16:25 +01002103 LY_CHECK_RET(lyd_new_implicit_r(parent, first, &((struct lysc_node_choice *)iter)->dflt->node,
Radek Krejci4f2e3e52021-03-30 14:20:28 +02002104 NULL, node_when, node_exts, node_types, impl_opts, diff));
Michal Vaskobcf4d7d2020-11-18 18:16:49 +01002105 } else if (node) {
2106 /* create any default data in the existing case */
2107 assert(node->schema->parent->nodetype == LYS_CASE);
Radek Krejci4f2e3e52021-03-30 14:20:28 +02002108 LY_CHECK_RET(lyd_new_implicit_r(parent, first, node->schema->parent, NULL, node_when, node_exts, node_types,
Michal Vaskobcf4d7d2020-11-18 18:16:49 +01002109 impl_opts, diff));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002110 }
2111 break;
2112 case LYS_CONTAINER:
2113 if (!(iter->flags & LYS_PRESENCE) && lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
2114 /* create default NP container */
2115 LY_CHECK_RET(lyd_create_inner(iter, &node));
Michal Vaskof4d67ea2021-03-31 13:53:21 +02002116 node->flags = LYD_DEFAULT | (lysc_has_when(iter) ? LYD_WHEN_TRUE : 0);
Michal Vasko6ee6f432021-07-16 09:49:14 +02002117 lyd_insert_node(parent, first, node, 0);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002118
Michal Vaskof4d67ea2021-03-31 13:53:21 +02002119 if (lysc_has_when(iter) && node_when) {
Michal Vaskoe16c7b72021-02-26 10:39:06 +01002120 /* remember to resolve when */
2121 LY_CHECK_RET(ly_set_add(node_when, node, 1, NULL));
2122 }
Radek Krejci4f2e3e52021-03-30 14:20:28 +02002123 if (node_exts) {
2124 /* remember to call all the extension's validation callbacks */
2125 LY_CHECK_RET(lysc_node_ext_tovalidate(node_exts, node));
2126 }
Michal Vaskoe49b6322020-11-05 17:38:36 +01002127 if (diff) {
2128 /* add into diff */
2129 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff));
2130 }
2131
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002132 /* create any default children */
Radek Krejci4f2e3e52021-03-30 14:20:28 +02002133 LY_CHECK_RET(lyd_new_implicit_r(node, lyd_node_child_p(node), NULL, NULL, node_when, node_exts, node_types,
Michal Vasko69730152020-10-09 16:30:07 +02002134 impl_opts, diff));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002135 }
2136 break;
2137 case LYS_LEAF:
Michal Vasko69730152020-10-09 16:30:07 +02002138 if (!(impl_opts & LYD_IMPLICIT_NO_DEFAULTS) && ((struct lysc_node_leaf *)iter)->dflt &&
2139 lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002140 /* create default leaf */
2141 ret = lyd_create_term2(iter, ((struct lysc_node_leaf *)iter)->dflt, &node);
2142 if (ret == LY_EINCOMPLETE) {
2143 if (node_types) {
2144 /* remember to resolve type */
Radek Krejci3d92e442020-10-12 12:48:13 +02002145 LY_CHECK_RET(ly_set_add(node_types, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002146 }
2147 } else if (ret) {
2148 return ret;
2149 }
Michal Vaskof4d67ea2021-03-31 13:53:21 +02002150 node->flags = LYD_DEFAULT | (lysc_has_when(iter) ? LYD_WHEN_TRUE : 0);
Michal Vasko6ee6f432021-07-16 09:49:14 +02002151 lyd_insert_node(parent, first, node, 0);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002152
Michal Vaskof4d67ea2021-03-31 13:53:21 +02002153 if (lysc_has_when(iter) && node_when) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002154 /* remember to resolve when */
Radek Krejci3d92e442020-10-12 12:48:13 +02002155 LY_CHECK_RET(ly_set_add(node_when, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002156 }
Radek Krejci4f2e3e52021-03-30 14:20:28 +02002157 if (node_exts) {
2158 /* remember to call all the extension's validation callbacks */
2159 LY_CHECK_RET(lysc_node_ext_tovalidate(node_exts, node));
2160 }
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002161 if (diff) {
2162 /* add into diff */
2163 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff));
2164 }
2165 }
2166 break;
2167 case LYS_LEAFLIST:
Michal Vasko69730152020-10-09 16:30:07 +02002168 if (!(impl_opts & LYD_IMPLICIT_NO_DEFAULTS) && ((struct lysc_node_leaflist *)iter)->dflts &&
2169 lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002170 /* create all default leaf-lists */
2171 dflts = ((struct lysc_node_leaflist *)iter)->dflts;
2172 LY_ARRAY_FOR(dflts, u) {
2173 ret = lyd_create_term2(iter, dflts[u], &node);
2174 if (ret == LY_EINCOMPLETE) {
2175 if (node_types) {
2176 /* remember to resolve type */
Radek Krejci3d92e442020-10-12 12:48:13 +02002177 LY_CHECK_RET(ly_set_add(node_types, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002178 }
2179 } else if (ret) {
2180 return ret;
2181 }
Michal Vaskof4d67ea2021-03-31 13:53:21 +02002182 node->flags = LYD_DEFAULT | (lysc_has_when(iter) ? LYD_WHEN_TRUE : 0);
Michal Vasko6ee6f432021-07-16 09:49:14 +02002183 lyd_insert_node(parent, first, node, 0);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002184
Michal Vaskof4d67ea2021-03-31 13:53:21 +02002185 if (lysc_has_when(iter) && node_when) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002186 /* remember to resolve when */
Radek Krejci3d92e442020-10-12 12:48:13 +02002187 LY_CHECK_RET(ly_set_add(node_when, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002188 }
Radek Krejci4f2e3e52021-03-30 14:20:28 +02002189 if (node_exts) {
2190 /* remember to call all the extension's validation callbacks */
2191 LY_CHECK_RET(lysc_node_ext_tovalidate(node_exts, node));
2192 }
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002193 if (diff) {
2194 /* add into diff */
2195 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff));
2196 }
2197 }
2198 }
2199 break;
2200 default:
2201 /* without defaults */
2202 break;
2203 }
2204 }
2205
2206 return LY_SUCCESS;
2207}
2208
2209API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002210lyd_new_implicit_tree(struct lyd_node *tree, uint32_t implicit_options, struct lyd_node **diff)
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002211{
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002212 LY_ERR ret = LY_SUCCESS;
Michal Vasko3488ada2020-12-03 14:18:19 +01002213 struct lyd_node *node;
Radek Krejci4f2e3e52021-03-30 14:20:28 +02002214 struct ly_set node_when = {0}, node_exts = {0};
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002215
2216 LY_CHECK_ARG_RET(NULL, tree, LY_EINVAL);
2217 if (diff) {
2218 *diff = NULL;
2219 }
2220
Michal Vasko56daf732020-08-10 10:57:18 +02002221 LYD_TREE_DFS_BEGIN(tree, node) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002222 /* skip added default nodes */
Michal Vasko69730152020-10-09 16:30:07 +02002223 if (((node->flags & (LYD_DEFAULT | LYD_NEW)) != (LYD_DEFAULT | LYD_NEW)) &&
2224 (node->schema->nodetype & LYD_NODE_INNER)) {
Radek Krejci4f2e3e52021-03-30 14:20:28 +02002225 LY_CHECK_GOTO(ret = lyd_new_implicit_r(node, lyd_node_child_p(node), NULL, NULL, &node_when, &node_exts,
Michal Vaskoc43c8ab2021-03-05 13:32:44 +01002226 NULL, implicit_options, diff), cleanup);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002227 }
2228
Michal Vasko56daf732020-08-10 10:57:18 +02002229 LYD_TREE_DFS_END(tree, node);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002230 }
2231
Michal Vasko3488ada2020-12-03 14:18:19 +01002232 /* resolve when and remove any invalid defaults */
Radek Krejci4f2e3e52021-03-30 14:20:28 +02002233 LY_CHECK_GOTO(ret = lyd_validate_unres(&tree, NULL, &node_when, &node_exts, NULL, NULL, diff), cleanup);
Michal Vasko3488ada2020-12-03 14:18:19 +01002234
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002235cleanup:
Michal Vasko3488ada2020-12-03 14:18:19 +01002236 ly_set_erase(&node_when, NULL);
Radek Krejci4f2e3e52021-03-30 14:20:28 +02002237 ly_set_erase(&node_exts, NULL);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002238 if (ret && diff) {
2239 lyd_free_all(*diff);
2240 *diff = NULL;
2241 }
2242 return ret;
2243}
2244
2245API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002246lyd_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 +02002247{
2248 const struct lys_module *mod;
2249 struct lyd_node *d = NULL;
2250 uint32_t i = 0;
2251 LY_ERR ret = LY_SUCCESS;
2252
2253 LY_CHECK_ARG_RET(ctx, tree, *tree || ctx, LY_EINVAL);
2254 if (diff) {
2255 *diff = NULL;
2256 }
2257 if (!ctx) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002258 ctx = LYD_CTX(*tree);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002259 }
2260
2261 /* add nodes for each module one-by-one */
2262 while ((mod = ly_ctx_get_module_iter(ctx, &i))) {
2263 if (!mod->implemented) {
2264 continue;
2265 }
2266
2267 LY_CHECK_GOTO(ret = lyd_new_implicit_module(tree, mod, implicit_options, diff ? &d : NULL), cleanup);
2268 if (d) {
2269 /* merge into one diff */
2270 lyd_insert_sibling(*diff, d, diff);
2271
2272 d = NULL;
2273 }
2274 }
2275
2276cleanup:
2277 if (ret && diff) {
2278 lyd_free_all(*diff);
2279 *diff = NULL;
2280 }
2281 return ret;
2282}
2283
2284API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002285lyd_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 +02002286{
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002287 LY_ERR ret = LY_SUCCESS;
Michal Vasko3488ada2020-12-03 14:18:19 +01002288 struct lyd_node *root, *d = NULL;
Radek Krejci4f2e3e52021-03-30 14:20:28 +02002289 struct ly_set node_when = {0}, node_exts = {0};
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002290
2291 LY_CHECK_ARG_RET(NULL, tree, module, LY_EINVAL);
2292 if (diff) {
2293 *diff = NULL;
2294 }
2295
2296 /* add all top-level defaults for this module */
Radek Krejci4f2e3e52021-03-30 14:20:28 +02002297 LY_CHECK_GOTO(ret = lyd_new_implicit_r(NULL, tree, NULL, module, &node_when, &node_exts, NULL, implicit_options, diff), cleanup);
Michal Vasko3488ada2020-12-03 14:18:19 +01002298
2299 /* resolve when and remove any invalid defaults */
Radek Krejci4f2e3e52021-03-30 14:20:28 +02002300 LY_CHECK_GOTO(ret = lyd_validate_unres(tree, module, &node_when, &node_exts, NULL, NULL, diff), cleanup);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002301
2302 /* process nested nodes */
2303 LY_LIST_FOR(*tree, root) {
2304 /* skip added default nodes */
2305 if ((root->flags & (LYD_DEFAULT | LYD_NEW)) != (LYD_DEFAULT | LYD_NEW)) {
2306 LY_CHECK_GOTO(ret = lyd_new_implicit_tree(root, implicit_options, diff ? &d : NULL), cleanup);
2307
2308 if (d) {
2309 /* merge into one diff */
2310 lyd_insert_sibling(*diff, d, diff);
2311
2312 d = NULL;
2313 }
2314 }
2315 }
2316
2317cleanup:
Michal Vasko3488ada2020-12-03 14:18:19 +01002318 ly_set_erase(&node_when, NULL);
Radek Krejci4f2e3e52021-03-30 14:20:28 +02002319 ly_set_erase(&node_exts, NULL);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002320 if (ret && diff) {
2321 lyd_free_all(*diff);
2322 *diff = NULL;
2323 }
2324 return ret;
2325}
2326
Michal Vasko90932a92020-02-12 14:33:03 +01002327struct lyd_node *
Michal Vaskob104f112020-07-17 09:54:54 +02002328lyd_insert_get_next_anchor(const struct lyd_node *first_sibling, const struct lyd_node *new_node)
Michal Vasko90932a92020-02-12 14:33:03 +01002329{
Michal Vaskob104f112020-07-17 09:54:54 +02002330 const struct lysc_node *schema, *sparent;
Michal Vasko90932a92020-02-12 14:33:03 +01002331 struct lyd_node *match = NULL;
Radek Krejci857189e2020-09-01 13:26:36 +02002332 ly_bool found;
Michal Vasko93b16062020-12-09 18:14:18 +01002333 uint32_t getnext_opts;
Michal Vasko90932a92020-02-12 14:33:03 +01002334
Michal Vaskob104f112020-07-17 09:54:54 +02002335 assert(new_node);
2336
2337 if (!first_sibling || !new_node->schema) {
2338 /* insert at the end, no next anchor */
Michal Vasko90932a92020-02-12 14:33:03 +01002339 return NULL;
2340 }
2341
Michal Vasko93b16062020-12-09 18:14:18 +01002342 getnext_opts = 0;
Michal Vaskod1e53b92021-01-28 13:11:06 +01002343 if (new_node->schema->flags & LYS_IS_OUTPUT) {
Michal Vasko93b16062020-12-09 18:14:18 +01002344 getnext_opts = LYS_GETNEXT_OUTPUT;
2345 }
2346
Michal Vaskoa2756f02021-07-09 13:20:28 +02002347 if (first_sibling->parent && first_sibling->parent->schema && first_sibling->parent->children_ht) {
Michal Vaskob104f112020-07-17 09:54:54 +02002348 /* find the anchor using hashes */
2349 sparent = first_sibling->parent->schema;
Michal Vasko93b16062020-12-09 18:14:18 +01002350 schema = lys_getnext(new_node->schema, sparent, NULL, getnext_opts);
Michal Vaskob104f112020-07-17 09:54:54 +02002351 while (schema) {
2352 /* keep trying to find the first existing instance of the closest following schema sibling,
2353 * otherwise return NULL - inserting at the end */
2354 if (!lyd_find_sibling_schema(first_sibling, schema, &match)) {
2355 break;
2356 }
2357
Michal Vasko93b16062020-12-09 18:14:18 +01002358 schema = lys_getnext(schema, sparent, NULL, getnext_opts);
Michal Vaskob104f112020-07-17 09:54:54 +02002359 }
2360 } else {
2361 /* find the anchor without hashes */
2362 match = (struct lyd_node *)first_sibling;
Michal Vasko3a708622021-07-15 14:20:10 +02002363 sparent = lysc_data_parent(new_node->schema);
2364 if (!sparent) {
Michal Vaskob104f112020-07-17 09:54:54 +02002365 /* we are in top-level, skip all the data from preceding modules */
2366 LY_LIST_FOR(match, match) {
2367 if (!match->schema || (strcmp(lyd_owner_module(match)->name, lyd_owner_module(new_node)->name) >= 0)) {
2368 break;
2369 }
2370 }
2371 }
2372
2373 /* get the first schema sibling */
Michal Vasko93b16062020-12-09 18:14:18 +01002374 schema = lys_getnext(NULL, sparent, new_node->schema->module->compiled, getnext_opts);
Michal Vaskob104f112020-07-17 09:54:54 +02002375
2376 found = 0;
2377 LY_LIST_FOR(match, match) {
2378 if (!match->schema || (lyd_owner_module(match) != lyd_owner_module(new_node))) {
2379 /* we have found an opaque node, which must be at the end, so use it OR
2380 * modules do not match, so we must have traversed all the data from new_node module (if any),
2381 * we have found the first node of the next module, that is what we want */
2382 break;
2383 }
2384
2385 /* skip schema nodes until we find the instantiated one */
2386 while (!found) {
2387 if (new_node->schema == schema) {
2388 /* we have found the schema of the new node, continue search to find the first
2389 * data node with a different schema (after our schema) */
2390 found = 1;
2391 break;
2392 }
2393 if (match->schema == schema) {
2394 /* current node (match) is a data node still before the new node, continue search in data */
2395 break;
2396 }
Michal Vasko93b16062020-12-09 18:14:18 +01002397 schema = lys_getnext(schema, sparent, new_node->schema->module->compiled, getnext_opts);
Michal Vaskob104f112020-07-17 09:54:54 +02002398 assert(schema);
2399 }
2400
2401 if (found && (match->schema != new_node->schema)) {
2402 /* find the next node after we have found our node schema data instance */
2403 break;
2404 }
2405 }
Michal Vasko90932a92020-02-12 14:33:03 +01002406 }
2407
2408 return match;
2409}
2410
2411/**
2412 * @brief Insert node after a sibling.
2413 *
Michal Vasko9f96a052020-03-10 09:41:45 +01002414 * Handles inserting into NP containers and key-less lists.
2415 *
Michal Vasko90932a92020-02-12 14:33:03 +01002416 * @param[in] sibling Sibling to insert after.
2417 * @param[in] node Node to insert.
2418 */
2419static void
Michal Vaskof03ed032020-03-04 13:31:44 +01002420lyd_insert_after_node(struct lyd_node *sibling, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01002421{
Michal Vasko0249f7c2020-03-05 16:36:40 +01002422 struct lyd_node_inner *par;
2423
Michal Vasko90932a92020-02-12 14:33:03 +01002424 assert(!node->next && (node->prev == node));
2425
2426 node->next = sibling->next;
2427 node->prev = sibling;
2428 sibling->next = node;
2429 if (node->next) {
2430 /* sibling had a succeeding node */
2431 node->next->prev = node;
2432 } else {
2433 /* sibling was last, find first sibling and change its prev */
2434 if (sibling->parent) {
2435 sibling = sibling->parent->child;
2436 } else {
Michal Vaskod989ba02020-08-24 10:59:24 +02002437 for ( ; sibling->prev->next != node; sibling = sibling->prev) {}
Michal Vasko90932a92020-02-12 14:33:03 +01002438 }
2439 sibling->prev = node;
2440 }
2441 node->parent = sibling->parent;
Michal Vasko0249f7c2020-03-05 16:36:40 +01002442
Michal Vasko9f96a052020-03-10 09:41:45 +01002443 for (par = node->parent; par; par = par->parent) {
2444 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
2445 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01002446 par->flags &= ~LYD_DEFAULT;
2447 }
2448 }
Michal Vasko90932a92020-02-12 14:33:03 +01002449}
2450
2451/**
2452 * @brief Insert node before a sibling.
2453 *
Michal Vasko9f96a052020-03-10 09:41:45 +01002454 * Handles inserting into NP containers and key-less lists.
2455 *
Michal Vasko90932a92020-02-12 14:33:03 +01002456 * @param[in] sibling Sibling to insert before.
2457 * @param[in] node Node to insert.
2458 */
2459static void
Michal Vaskof03ed032020-03-04 13:31:44 +01002460lyd_insert_before_node(struct lyd_node *sibling, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01002461{
Michal Vasko0249f7c2020-03-05 16:36:40 +01002462 struct lyd_node_inner *par;
2463
Michal Vasko90932a92020-02-12 14:33:03 +01002464 assert(!node->next && (node->prev == node));
2465
2466 node->next = sibling;
2467 /* covers situation of sibling being first */
2468 node->prev = sibling->prev;
2469 sibling->prev = node;
2470 if (node->prev->next) {
2471 /* sibling had a preceding node */
2472 node->prev->next = node;
2473 } else if (sibling->parent) {
2474 /* sibling was first and we must also change parent child pointer */
2475 sibling->parent->child = node;
2476 }
2477 node->parent = sibling->parent;
Michal Vasko0249f7c2020-03-05 16:36:40 +01002478
Michal Vasko9f96a052020-03-10 09:41:45 +01002479 for (par = node->parent; par; par = par->parent) {
2480 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
2481 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01002482 par->flags &= ~LYD_DEFAULT;
2483 }
2484 }
Michal Vasko90932a92020-02-12 14:33:03 +01002485}
2486
2487/**
Michal Vaskob104f112020-07-17 09:54:54 +02002488 * @brief Insert node as the first and only child of a parent.
Michal Vasko90932a92020-02-12 14:33:03 +01002489 *
Michal Vasko9f96a052020-03-10 09:41:45 +01002490 * Handles inserting into NP containers and key-less lists.
2491 *
Michal Vasko90932a92020-02-12 14:33:03 +01002492 * @param[in] parent Parent to insert into.
2493 * @param[in] node Node to insert.
2494 */
2495static void
Michal Vaskob104f112020-07-17 09:54:54 +02002496lyd_insert_only_child(struct lyd_node *parent, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01002497{
2498 struct lyd_node_inner *par;
2499
Radek Krejcia1c1e542020-09-29 16:06:52 +02002500 assert(parent && !lyd_child(parent) && !node->next && (node->prev == node));
Michal Vasko52927e22020-03-16 17:26:14 +01002501 assert(!parent->schema || (parent->schema->nodetype & LYD_NODE_INNER));
Michal Vasko90932a92020-02-12 14:33:03 +01002502
2503 par = (struct lyd_node_inner *)parent;
2504
Michal Vaskob104f112020-07-17 09:54:54 +02002505 par->child = node;
Michal Vasko90932a92020-02-12 14:33:03 +01002506 node->parent = par;
Michal Vasko0249f7c2020-03-05 16:36:40 +01002507
Michal Vaskod989ba02020-08-24 10:59:24 +02002508 for ( ; par; par = par->parent) {
Michal Vasko9f96a052020-03-10 09:41:45 +01002509 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
2510 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01002511 par->flags &= ~LYD_DEFAULT;
2512 }
2513 }
Michal Vasko751cb4d2020-07-14 12:25:28 +02002514}
Michal Vasko0249f7c2020-03-05 16:36:40 +01002515
Michal Vasko751cb4d2020-07-14 12:25:28 +02002516/**
2517 * @brief Learn whether a list instance has all the keys.
2518 *
2519 * @param[in] list List instance to check.
2520 * @return non-zero if all the keys were found,
2521 * @return 0 otherwise.
2522 */
2523static int
2524lyd_insert_has_keys(const struct lyd_node *list)
2525{
2526 const struct lyd_node *key;
2527 const struct lysc_node *skey = NULL;
2528
2529 assert(list->schema->nodetype == LYS_LIST);
Radek Krejcia1c1e542020-09-29 16:06:52 +02002530 key = lyd_child(list);
Michal Vasko751cb4d2020-07-14 12:25:28 +02002531 while ((skey = lys_getnext(skey, list->schema, NULL, 0)) && (skey->flags & LYS_KEY)) {
2532 if (!key || (key->schema != skey)) {
2533 /* key missing */
2534 return 0;
2535 }
2536
2537 key = key->next;
2538 }
2539
2540 /* all keys found */
2541 return 1;
Michal Vasko90932a92020-02-12 14:33:03 +01002542}
2543
2544void
Michal Vasko6ee6f432021-07-16 09:49:14 +02002545lyd_insert_node(struct lyd_node *parent, struct lyd_node **first_sibling_p, struct lyd_node *node, ly_bool last)
Michal Vasko90932a92020-02-12 14:33:03 +01002546{
Michal Vaskob104f112020-07-17 09:54:54 +02002547 struct lyd_node *anchor, *first_sibling;
Michal Vasko90932a92020-02-12 14:33:03 +01002548
Michal Vaskob104f112020-07-17 09:54:54 +02002549 /* inserting list without its keys is not supported */
2550 assert((parent || first_sibling_p) && node && (node->hash || !node->schema));
Michal Vaskof756c942020-11-06 17:21:37 +01002551 assert(!parent || !parent->schema ||
2552 (parent->schema->nodetype & (LYS_CONTAINER | LYS_LIST | LYS_RPC | LYS_ACTION | LYS_NOTIF)));
Michal Vasko9b368d32020-02-14 13:53:31 +01002553
Michal Vaskob104f112020-07-17 09:54:54 +02002554 if (!parent && first_sibling_p && (*first_sibling_p) && (*first_sibling_p)->parent) {
Michal Vasko9e685082021-01-29 14:49:09 +01002555 parent = lyd_parent(*first_sibling_p);
Michal Vasko9b368d32020-02-14 13:53:31 +01002556 }
Michal Vasko90932a92020-02-12 14:33:03 +01002557
Michal Vaskob104f112020-07-17 09:54:54 +02002558 /* get first sibling */
Michal Vasko9e685082021-01-29 14:49:09 +01002559 first_sibling = parent ? lyd_child(parent) : *first_sibling_p;
Michal Vasko9f96a052020-03-10 09:41:45 +01002560
Michal Vasko6ee6f432021-07-16 09:49:14 +02002561 if (last) {
2562 /* no next anchor */
2563 anchor = NULL;
2564 } else {
2565 /* find the anchor, our next node, so we can insert before it */
2566 anchor = lyd_insert_get_next_anchor(first_sibling, node);
2567 }
2568
Michal Vaskob104f112020-07-17 09:54:54 +02002569 if (anchor) {
Michal Vasko6ee6f432021-07-16 09:49:14 +02002570 /* insert before the anchor */
Michal Vaskob104f112020-07-17 09:54:54 +02002571 lyd_insert_before_node(anchor, node);
Michal Vasko26123192020-11-09 21:02:34 +01002572 if (!parent && (*first_sibling_p == anchor)) {
2573 /* move first sibling */
2574 *first_sibling_p = node;
2575 }
Michal Vaskob104f112020-07-17 09:54:54 +02002576 } else if (first_sibling) {
Michal Vasko6ee6f432021-07-16 09:49:14 +02002577 /* insert as the last node */
Michal Vaskob104f112020-07-17 09:54:54 +02002578 lyd_insert_after_node(first_sibling->prev, node);
2579 } else if (parent) {
Michal Vasko6ee6f432021-07-16 09:49:14 +02002580 /* insert as the only child */
Michal Vaskob104f112020-07-17 09:54:54 +02002581 lyd_insert_only_child(parent, node);
Michal Vasko90932a92020-02-12 14:33:03 +01002582 } else {
Michal Vasko6ee6f432021-07-16 09:49:14 +02002583 /* insert as the only sibling */
Michal Vaskob104f112020-07-17 09:54:54 +02002584 *first_sibling_p = node;
2585 }
2586
2587 /* insert into parent HT */
2588 lyd_insert_hash(node);
2589
2590 /* finish hashes for our parent, if needed and possible */
Michal Vasko9e8de2d2020-09-01 08:17:10 +02002591 if (node->schema && (node->schema->flags & LYS_KEY) && parent && lyd_insert_has_keys(parent)) {
Michal Vaskob104f112020-07-17 09:54:54 +02002592 lyd_hash(parent);
2593
2594 /* now we can insert even the list into its parent HT */
2595 lyd_insert_hash(parent);
Michal Vasko90932a92020-02-12 14:33:03 +01002596 }
Michal Vasko90932a92020-02-12 14:33:03 +01002597}
2598
Michal Vasko717a4c32020-12-07 09:40:10 +01002599/**
2600 * @brief Check schema place of a node to be inserted.
2601 *
2602 * @param[in] parent Schema node of the parent data node.
2603 * @param[in] sibling Schema node of a sibling data node.
2604 * @param[in] schema Schema node if the data node to be inserted.
2605 * @return LY_SUCCESS on success.
2606 * @return LY_EINVAL if the place is invalid.
2607 */
Michal Vaskof03ed032020-03-04 13:31:44 +01002608static LY_ERR
Michal Vasko717a4c32020-12-07 09:40:10 +01002609lyd_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 +01002610{
2611 const struct lysc_node *par2;
2612
Michal Vasko62ed12d2020-05-21 10:08:25 +02002613 assert(!parent || !(parent->nodetype & (LYS_CASE | LYS_CHOICE)));
Michal Vasko717a4c32020-12-07 09:40:10 +01002614 assert(!sibling || !(sibling->nodetype & (LYS_CASE | LYS_CHOICE)));
2615 assert(!schema || !(schema->nodetype & (LYS_CASE | LYS_CHOICE)));
Michal Vaskof03ed032020-03-04 13:31:44 +01002616
Michal Vasko717a4c32020-12-07 09:40:10 +01002617 if (!schema || (!parent && !sibling)) {
Michal Vasko71e795e2020-12-04 16:27:37 +01002618 /* opaque nodes can be inserted wherever */
2619 return LY_SUCCESS;
2620 }
2621
Michal Vasko717a4c32020-12-07 09:40:10 +01002622 if (!parent) {
2623 parent = lysc_data_parent(sibling);
2624 }
2625
Michal Vaskof03ed032020-03-04 13:31:44 +01002626 /* find schema parent */
Michal Vasko62ed12d2020-05-21 10:08:25 +02002627 par2 = lysc_data_parent(schema);
Michal Vaskof03ed032020-03-04 13:31:44 +01002628
2629 if (parent) {
2630 /* inner node */
2631 if (par2 != parent) {
Michal Vaskob104f112020-07-17 09:54:54 +02002632 LOGERR(schema->module->ctx, LY_EINVAL, "Cannot insert, parent of \"%s\" is not \"%s\".", schema->name,
Michal Vasko69730152020-10-09 16:30:07 +02002633 parent->name);
Michal Vaskof03ed032020-03-04 13:31:44 +01002634 return LY_EINVAL;
2635 }
2636 } else {
2637 /* top-level node */
2638 if (par2) {
Radek Krejcif6d14cb2020-07-02 16:11:45 +02002639 LOGERR(schema->module->ctx, LY_EINVAL, "Cannot insert, node \"%s\" is not top-level.", schema->name);
Michal Vaskof03ed032020-03-04 13:31:44 +01002640 return LY_EINVAL;
2641 }
2642 }
2643
2644 return LY_SUCCESS;
2645}
2646
2647API LY_ERR
Michal Vaskob104f112020-07-17 09:54:54 +02002648lyd_insert_child(struct lyd_node *parent, struct lyd_node *node)
Michal Vaskof03ed032020-03-04 13:31:44 +01002649{
2650 struct lyd_node *iter;
2651
Michal Vasko0ab974d2021-02-24 13:18:26 +01002652 LY_CHECK_ARG_RET(NULL, parent, node, !parent->schema || (parent->schema->nodetype & LYD_NODE_INNER), LY_EINVAL);
Michal Vaskof03ed032020-03-04 13:31:44 +01002653
Michal Vasko717a4c32020-12-07 09:40:10 +01002654 LY_CHECK_RET(lyd_insert_check_schema(parent->schema, NULL, node->schema));
Michal Vaskof03ed032020-03-04 13:31:44 +01002655
Michal Vasko0ab974d2021-02-24 13:18:26 +01002656 if (node->schema && (node->schema->flags & LYS_KEY)) {
Michal Vaskof03ed032020-03-04 13:31:44 +01002657 LOGERR(parent->schema->module->ctx, LY_EINVAL, "Cannot insert key \"%s\".", node->schema->name);
2658 return LY_EINVAL;
2659 }
2660
2661 if (node->parent || node->prev->next) {
2662 lyd_unlink_tree(node);
2663 }
2664
2665 while (node) {
2666 iter = node->next;
2667 lyd_unlink_tree(node);
Michal Vasko6ee6f432021-07-16 09:49:14 +02002668 lyd_insert_node(parent, NULL, node, 0);
Michal Vaskof03ed032020-03-04 13:31:44 +01002669 node = iter;
2670 }
2671 return LY_SUCCESS;
2672}
2673
2674API LY_ERR
Michal Vaskob104f112020-07-17 09:54:54 +02002675lyd_insert_sibling(struct lyd_node *sibling, struct lyd_node *node, struct lyd_node **first)
Michal Vaskob1b5c262020-03-05 14:29:47 +01002676{
2677 struct lyd_node *iter;
2678
Michal Vaskob104f112020-07-17 09:54:54 +02002679 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Michal Vaskob1b5c262020-03-05 14:29:47 +01002680
Michal Vaskob104f112020-07-17 09:54:54 +02002681 if (sibling) {
Michal Vasko717a4c32020-12-07 09:40:10 +01002682 LY_CHECK_RET(lyd_insert_check_schema(NULL, sibling->schema, node->schema));
Michal Vaskob1b5c262020-03-05 14:29:47 +01002683 }
2684
Michal Vasko553d0b52020-12-04 16:27:52 +01002685 if (sibling == node) {
2686 /* we need to keep the connection to siblings so we can insert into them */
2687 sibling = sibling->prev;
2688 }
2689
Michal Vaskob1b5c262020-03-05 14:29:47 +01002690 if (node->parent || node->prev->next) {
2691 lyd_unlink_tree(node);
2692 }
2693
2694 while (node) {
Michal Vasko71e795e2020-12-04 16:27:37 +01002695 if (lysc_is_key(node->schema)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002696 LOGERR(LYD_CTX(node), LY_EINVAL, "Cannot insert key \"%s\".", node->schema->name);
Michal Vaskob104f112020-07-17 09:54:54 +02002697 return LY_EINVAL;
2698 }
2699
Michal Vaskob1b5c262020-03-05 14:29:47 +01002700 iter = node->next;
2701 lyd_unlink_tree(node);
Michal Vasko6ee6f432021-07-16 09:49:14 +02002702 lyd_insert_node(NULL, &sibling, node, 0);
Michal Vaskob1b5c262020-03-05 14:29:47 +01002703 node = iter;
2704 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01002705
Michal Vaskob104f112020-07-17 09:54:54 +02002706 if (first) {
2707 /* find the first sibling */
2708 *first = sibling;
2709 while ((*first)->prev->next) {
2710 *first = (*first)->prev;
Michal Vasko0249f7c2020-03-05 16:36:40 +01002711 }
2712 }
2713
2714 return LY_SUCCESS;
2715}
2716
Michal Vaskob1b5c262020-03-05 14:29:47 +01002717API LY_ERR
Michal Vaskof03ed032020-03-04 13:31:44 +01002718lyd_insert_before(struct lyd_node *sibling, struct lyd_node *node)
2719{
Michal Vaskof03ed032020-03-04 13:31:44 +01002720 LY_CHECK_ARG_RET(NULL, sibling, node, LY_EINVAL);
2721
Michal Vasko717a4c32020-12-07 09:40:10 +01002722 LY_CHECK_RET(lyd_insert_check_schema(NULL, sibling->schema, node->schema));
Michal Vaskof03ed032020-03-04 13:31:44 +01002723
Michal Vaskob104f112020-07-17 09:54:54 +02002724 if (!(node->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !(node->schema->flags & LYS_ORDBY_USER)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002725 LOGERR(LYD_CTX(sibling), LY_EINVAL, "Can be used only for user-ordered nodes.");
Michal Vaskof03ed032020-03-04 13:31:44 +01002726 return LY_EINVAL;
2727 }
2728
Michal Vasko4bc2ce32020-12-08 10:06:16 +01002729 lyd_unlink_tree(node);
2730 lyd_insert_before_node(sibling, node);
2731 lyd_insert_hash(node);
Michal Vaskof03ed032020-03-04 13:31:44 +01002732
Michal Vaskof03ed032020-03-04 13:31:44 +01002733 return LY_SUCCESS;
2734}
2735
2736API LY_ERR
2737lyd_insert_after(struct lyd_node *sibling, struct lyd_node *node)
2738{
Michal Vaskof03ed032020-03-04 13:31:44 +01002739 LY_CHECK_ARG_RET(NULL, sibling, node, LY_EINVAL);
2740
Michal Vasko717a4c32020-12-07 09:40:10 +01002741 LY_CHECK_RET(lyd_insert_check_schema(NULL, sibling->schema, node->schema));
Michal Vaskof03ed032020-03-04 13:31:44 +01002742
Michal Vaskob104f112020-07-17 09:54:54 +02002743 if (!(node->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !(node->schema->flags & LYS_ORDBY_USER)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002744 LOGERR(LYD_CTX(sibling), LY_EINVAL, "Can be used only for user-ordered nodes.");
Michal Vaskof03ed032020-03-04 13:31:44 +01002745 return LY_EINVAL;
2746 }
2747
Michal Vasko4bc2ce32020-12-08 10:06:16 +01002748 lyd_unlink_tree(node);
2749 lyd_insert_after_node(sibling, node);
2750 lyd_insert_hash(node);
Michal Vaskof03ed032020-03-04 13:31:44 +01002751
Michal Vaskof03ed032020-03-04 13:31:44 +01002752 return LY_SUCCESS;
2753}
2754
2755API void
Michal Vasko66d508c2021-07-21 16:07:09 +02002756lyd_unlink_siblings(struct lyd_node *node)
2757{
2758 struct lyd_node *next, *elem, *first = NULL;
2759
2760 LY_LIST_FOR_SAFE(node, next, elem) {
2761 lyd_unlink_tree(elem);
2762 lyd_insert_node(NULL, &first, elem, 1);
2763 }
2764}
2765
2766API void
Michal Vaskof03ed032020-03-04 13:31:44 +01002767lyd_unlink_tree(struct lyd_node *node)
2768{
2769 struct lyd_node *iter;
2770
2771 if (!node) {
2772 return;
2773 }
2774
Michal Vaskob104f112020-07-17 09:54:54 +02002775 /* update hashes while still linked into the tree */
2776 lyd_unlink_hash(node);
2777
Michal Vaskof03ed032020-03-04 13:31:44 +01002778 /* unlink from siblings */
2779 if (node->prev->next) {
2780 node->prev->next = node->next;
2781 }
2782 if (node->next) {
2783 node->next->prev = node->prev;
2784 } else {
2785 /* unlinking the last node */
2786 if (node->parent) {
2787 iter = node->parent->child;
2788 } else {
2789 iter = node->prev;
2790 while (iter->prev != node) {
2791 iter = iter->prev;
2792 }
2793 }
2794 /* update the "last" pointer from the first node */
2795 iter->prev = node->prev;
2796 }
2797
2798 /* unlink from parent */
2799 if (node->parent) {
2800 if (node->parent->child == node) {
2801 /* the node is the first child */
2802 node->parent->child = node->next;
2803 }
2804
Michal Vaskoab49dbe2020-07-17 12:32:47 +02002805 /* check for NP container whether its last non-default node is not being unlinked */
Michal Vasko69730152020-10-09 16:30:07 +02002806 if (node->parent->schema && (node->parent->schema->nodetype == LYS_CONTAINER) &&
2807 !(node->parent->flags & LYD_DEFAULT) && !(node->parent->schema->flags & LYS_PRESENCE)) {
Michal Vaskoab49dbe2020-07-17 12:32:47 +02002808 LY_LIST_FOR(node->parent->child, iter) {
2809 if ((iter != node) && !(iter->flags & LYD_DEFAULT)) {
2810 break;
2811 }
2812 }
2813 if (!iter) {
2814 node->parent->flags |= LYD_DEFAULT;
2815 }
2816 }
2817
Michal Vaskof03ed032020-03-04 13:31:44 +01002818 node->parent = NULL;
2819 }
2820
2821 node->next = NULL;
2822 node->prev = node;
2823}
2824
Michal Vaskoa5da3292020-08-12 13:10:50 +02002825void
Michal Vasko871a0252020-11-11 18:35:24 +01002826lyd_insert_meta(struct lyd_node *parent, struct lyd_meta *meta, ly_bool clear_dflt)
Radek Krejci1798aae2020-07-14 13:26:06 +02002827{
2828 struct lyd_meta *last, *iter;
2829
2830 assert(parent);
Michal Vaskoa5da3292020-08-12 13:10:50 +02002831
2832 if (!meta) {
2833 return;
2834 }
Radek Krejci1798aae2020-07-14 13:26:06 +02002835
2836 for (iter = meta; iter; iter = iter->next) {
2837 iter->parent = parent;
2838 }
2839
2840 /* insert as the last attribute */
2841 if (parent->meta) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002842 for (last = parent->meta; last->next; last = last->next) {}
Radek Krejci1798aae2020-07-14 13:26:06 +02002843 last->next = meta;
2844 } else {
2845 parent->meta = meta;
2846 }
2847
2848 /* remove default flags from NP containers */
Michal Vasko871a0252020-11-11 18:35:24 +01002849 while (clear_dflt && parent && (parent->schema->nodetype == LYS_CONTAINER) && (parent->flags & LYD_DEFAULT)) {
Radek Krejci1798aae2020-07-14 13:26:06 +02002850 parent->flags &= ~LYD_DEFAULT;
Michal Vasko9e685082021-01-29 14:49:09 +01002851 parent = lyd_parent(parent);
Radek Krejci1798aae2020-07-14 13:26:06 +02002852 }
Radek Krejci1798aae2020-07-14 13:26:06 +02002853}
2854
2855LY_ERR
Michal Vasko9f96a052020-03-10 09:41:45 +01002856lyd_create_meta(struct lyd_node *parent, struct lyd_meta **meta, const struct lys_module *mod, const char *name,
Radek Krejci8df109d2021-04-23 12:19:08 +02002857 size_t name_len, const char *value, size_t value_len, ly_bool *dynamic, LY_VALUE_FORMAT format,
Michal Vasko871a0252020-11-11 18:35:24 +01002858 void *prefix_data, uint32_t hints, ly_bool clear_dflt, ly_bool *incomplete)
Michal Vasko90932a92020-02-12 14:33:03 +01002859{
Radek Krejci2efc45b2020-12-22 16:25:44 +01002860 LY_ERR ret = LY_SUCCESS;
Michal Vasko90932a92020-02-12 14:33:03 +01002861 struct lysc_ext_instance *ant = NULL;
Michal Vaskob0534f92021-07-01 13:24:03 +02002862 const struct lysc_type **ant_type;
Michal Vasko9f96a052020-03-10 09:41:45 +01002863 struct lyd_meta *mt, *last;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002864 LY_ARRAY_COUNT_TYPE u;
Michal Vasko90932a92020-02-12 14:33:03 +01002865
Michal Vasko9f96a052020-03-10 09:41:45 +01002866 assert((parent || meta) && mod);
Michal Vasko6f4cbb62020-02-28 11:15:47 +01002867
Radek Krejciddace2c2021-01-08 11:30:56 +01002868 LOG_LOCSET(parent ? parent->schema : NULL, parent, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01002869
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002870 LY_ARRAY_FOR(mod->compiled->exts, u) {
Radek Krejci3e6632f2021-03-22 22:08:21 +01002871 if ((mod->compiled->exts[u].def->plugin == lyplg_find(LYPLG_EXTENSION, LYEXT_PLUGIN_INTERNAL_ANNOTATION)) &&
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002872 !ly_strncmp(mod->compiled->exts[u].argument, name, name_len)) {
Michal Vasko90932a92020-02-12 14:33:03 +01002873 /* we have the annotation definition */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002874 ant = &mod->compiled->exts[u];
Michal Vasko90932a92020-02-12 14:33:03 +01002875 break;
2876 }
2877 }
2878 if (!ant) {
2879 /* attribute is not defined as a metadata annotation (RFC 7952) */
Radek Krejci2efc45b2020-12-22 16:25:44 +01002880 LOGVAL(mod->ctx, LYVE_REFERENCE, "Annotation definition for attribute \"%s:%.*s\" not found.",
Radek Krejci422afb12021-03-04 16:38:16 +01002881 mod->name, (int)name_len, name);
Radek Krejci2efc45b2020-12-22 16:25:44 +01002882 ret = LY_EINVAL;
2883 goto cleanup;
Michal Vasko90932a92020-02-12 14:33:03 +01002884 }
2885
Michal Vasko9f96a052020-03-10 09:41:45 +01002886 mt = calloc(1, sizeof *mt);
Radek Krejci2efc45b2020-12-22 16:25:44 +01002887 LY_CHECK_ERR_GOTO(!mt, LOGMEM(mod->ctx); ret = LY_EMEM, cleanup);
Michal Vasko9f96a052020-03-10 09:41:45 +01002888 mt->parent = parent;
2889 mt->annotation = ant;
Michal Vaskob0534f92021-07-01 13:24:03 +02002890 ant_type = ant->substmts[ANNOTATION_SUBSTMT_TYPE].storage;
2891 ret = lyd_value_store(mod->ctx, &mt->value, *ant_type, value, value_len, dynamic, format, prefix_data, hints,
2892 parent ? parent->schema : NULL, incomplete);
Radek Krejci2efc45b2020-12-22 16:25:44 +01002893 LY_CHECK_ERR_GOTO(ret, free(mt), cleanup);
2894 ret = lydict_insert(mod->ctx, name, name_len, &mt->name);
2895 LY_CHECK_ERR_GOTO(ret, free(mt), cleanup);
Michal Vasko90932a92020-02-12 14:33:03 +01002896
Michal Vasko6f4cbb62020-02-28 11:15:47 +01002897 /* insert as the last attribute */
2898 if (parent) {
Michal Vasko871a0252020-11-11 18:35:24 +01002899 lyd_insert_meta(parent, mt, clear_dflt);
Michal Vasko9f96a052020-03-10 09:41:45 +01002900 } else if (*meta) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002901 for (last = *meta; last->next; last = last->next) {}
Michal Vasko9f96a052020-03-10 09:41:45 +01002902 last->next = mt;
Michal Vasko90932a92020-02-12 14:33:03 +01002903 }
2904
Michal Vasko9f96a052020-03-10 09:41:45 +01002905 if (meta) {
2906 *meta = mt;
Michal Vasko90932a92020-02-12 14:33:03 +01002907 }
Radek Krejci2efc45b2020-12-22 16:25:44 +01002908
2909cleanup:
Radek Krejciddace2c2021-01-08 11:30:56 +01002910 LOG_LOCBACK((parent && parent->schema) ? 1 : 0, parent ? 1 : 0, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +01002911 return ret;
Michal Vasko90932a92020-02-12 14:33:03 +01002912}
2913
Michal Vaskoa5da3292020-08-12 13:10:50 +02002914void
2915lyd_insert_attr(struct lyd_node *parent, struct lyd_attr *attr)
2916{
2917 struct lyd_attr *last, *iter;
2918 struct lyd_node_opaq *opaq;
2919
2920 assert(parent && !parent->schema);
2921
2922 if (!attr) {
2923 return;
2924 }
2925
2926 opaq = (struct lyd_node_opaq *)parent;
2927 for (iter = attr; iter; iter = iter->next) {
2928 iter->parent = opaq;
2929 }
2930
2931 /* insert as the last attribute */
2932 if (opaq->attr) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002933 for (last = opaq->attr; last->next; last = last->next) {}
Michal Vaskoa5da3292020-08-12 13:10:50 +02002934 last->next = attr;
2935 } else {
2936 opaq->attr = attr;
2937 }
2938}
2939
Michal Vasko52927e22020-03-16 17:26:14 +01002940LY_ERR
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002941lyd_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 +01002942 const char *prefix, size_t prefix_len, const char *module_key, size_t module_key_len, const char *value,
Radek Krejci8df109d2021-04-23 12:19:08 +02002943 size_t value_len, ly_bool *dynamic, LY_VALUE_FORMAT format, void *val_prefix_data, uint32_t hints)
Michal Vasko52927e22020-03-16 17:26:14 +01002944{
Radek Krejci011e4aa2020-09-04 15:22:31 +02002945 LY_ERR ret = LY_SUCCESS;
Radek Krejci1798aae2020-07-14 13:26:06 +02002946 struct lyd_attr *at, *last;
Michal Vasko52927e22020-03-16 17:26:14 +01002947
2948 assert(ctx && (parent || attr) && (!parent || !parent->schema));
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002949 assert(name && name_len && format);
Michal Vasko52927e22020-03-16 17:26:14 +01002950
Michal Vasko2a3722d2021-06-16 11:52:39 +02002951 if (!value_len && (!dynamic || !*dynamic)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002952 value = "";
2953 }
2954
2955 at = calloc(1, sizeof *at);
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01002956 LY_CHECK_ERR_RET(!at, LOGMEM(ctx); ly_free_prefix_data(format, val_prefix_data), LY_EMEM);
Radek Krejcid46e46a2020-09-15 14:22:42 +02002957
Michal Vaskoad92b672020-11-12 13:11:31 +01002958 LY_CHECK_GOTO(ret = lydict_insert(ctx, name, name_len, &at->name.name), finish);
Michal Vasko501af032020-11-11 20:27:44 +01002959 if (prefix_len) {
Michal Vaskoad92b672020-11-12 13:11:31 +01002960 LY_CHECK_GOTO(ret = lydict_insert(ctx, prefix, prefix_len, &at->name.prefix), finish);
Michal Vasko501af032020-11-11 20:27:44 +01002961 }
2962 if (module_key_len) {
Michal Vaskoad92b672020-11-12 13:11:31 +01002963 LY_CHECK_GOTO(ret = lydict_insert(ctx, module_key, module_key_len, &at->name.module_ns), finish);
Michal Vasko501af032020-11-11 20:27:44 +01002964 }
2965
Michal Vasko52927e22020-03-16 17:26:14 +01002966 if (dynamic && *dynamic) {
Radek Krejci011e4aa2020-09-04 15:22:31 +02002967 ret = lydict_insert_zc(ctx, (char *)value, &at->value);
2968 LY_CHECK_GOTO(ret, finish);
Michal Vasko52927e22020-03-16 17:26:14 +01002969 *dynamic = 0;
2970 } else {
Radek Krejci011e4aa2020-09-04 15:22:31 +02002971 LY_CHECK_GOTO(ret = lydict_insert(ctx, value, value_len, &at->value), finish);
Michal Vasko52927e22020-03-16 17:26:14 +01002972 }
Michal Vasko501af032020-11-11 20:27:44 +01002973 at->format = format;
2974 at->val_prefix_data = val_prefix_data;
2975 at->hints = hints;
Michal Vasko52927e22020-03-16 17:26:14 +01002976
2977 /* insert as the last attribute */
2978 if (parent) {
Michal Vaskoa5da3292020-08-12 13:10:50 +02002979 lyd_insert_attr(parent, at);
Michal Vasko52927e22020-03-16 17:26:14 +01002980 } else if (*attr) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002981 for (last = *attr; last->next; last = last->next) {}
Michal Vasko52927e22020-03-16 17:26:14 +01002982 last->next = at;
2983 }
2984
Radek Krejci011e4aa2020-09-04 15:22:31 +02002985finish:
2986 if (ret) {
2987 lyd_free_attr_single(ctx, at);
2988 } else if (attr) {
Michal Vasko52927e22020-03-16 17:26:14 +01002989 *attr = at;
2990 }
2991 return LY_SUCCESS;
2992}
2993
Radek Krejci084289f2019-07-09 17:35:30 +02002994API const struct lyd_node_term *
Michal Vasko004d3152020-06-11 19:59:22 +02002995lyd_target(const struct ly_path *path, const struct lyd_node *tree)
Radek Krejci084289f2019-07-09 17:35:30 +02002996{
Michal Vasko004d3152020-06-11 19:59:22 +02002997 struct lyd_node *target;
Radek Krejci084289f2019-07-09 17:35:30 +02002998
Michal Vasko004d3152020-06-11 19:59:22 +02002999 if (ly_path_eval(path, tree, &target)) {
3000 return NULL;
Radek Krejci084289f2019-07-09 17:35:30 +02003001 }
3002
Michal Vasko004d3152020-06-11 19:59:22 +02003003 return (struct lyd_node_term *)target;
Radek Krejci084289f2019-07-09 17:35:30 +02003004}
3005
aPiecek2f63f952021-03-30 12:22:18 +02003006/**
3007 * @brief Check the equality of the two schemas from different contexts.
3008 *
3009 * @param schema1 of first node.
3010 * @param schema2 of second node.
3011 * @return 1 if the schemas are equal otherwise 0.
3012 */
3013static ly_bool
3014lyd_compare_schema_equal(const struct lysc_node *schema1, const struct lysc_node *schema2)
3015{
3016 if (!schema1 && !schema2) {
3017 return 1;
3018 } else if (!schema1 || !schema2) {
3019 return 0;
3020 }
3021
3022 assert(schema1->module->ctx != schema2->module->ctx);
3023
3024 if (schema1->nodetype != schema2->nodetype) {
3025 return 0;
3026 }
3027
3028 if (strcmp(schema1->name, schema2->name)) {
3029 return 0;
3030 }
3031
3032 if (strcmp(schema1->module->name, schema2->module->name)) {
3033 return 0;
3034 }
3035
3036 if (schema1->module->revision || schema2->module->revision) {
3037 if (!schema1->module->revision || !schema2->module->revision) {
3038 return 0;
3039 }
3040 if (strcmp(schema1->module->revision, schema2->module->revision)) {
3041 return 0;
3042 }
3043 }
3044
3045 return 1;
3046}
3047
3048/**
3049 * @brief Check the equality of the schemas for all parent nodes.
3050 *
3051 * Both nodes must be from different contexts.
3052 *
3053 * @param node1 Data of first node.
3054 * @param node2 Data of second node.
3055 * @return 1 if the all related parental schemas are equal otherwise 0.
3056 */
3057static ly_bool
3058lyd_compare_schema_parents_equal(const struct lyd_node *node1, const struct lyd_node *node2)
3059{
3060 const struct lysc_node *parent1, *parent2;
3061
3062 assert(node1 && node2);
3063
3064 for (parent1 = node1->schema->parent, parent2 = node2->schema->parent;
3065 parent1 && parent2;
3066 parent1 = parent1->parent, parent2 = parent2->parent) {
3067 if (!lyd_compare_schema_equal(parent1, parent2)) {
3068 return 0;
3069 }
3070 }
3071
3072 if (parent1 || parent2) {
3073 return 0;
3074 }
3075
3076 return 1;
3077}
3078
3079/**
3080 * @brief Internal implementation of @ref lyd_compare_single.
3081 * @copydoc lyd_compare_single
3082 * @param[in] parental_schemas_checked Flag used for optimization.
3083 * When this function is called for the first time, the flag must be set to 0.
3084 * The @ref lyd_compare_schema_parents_equal should be called only once during
3085 * recursive calls, and this is accomplished by setting to 1 in the lyd_compare_single_ body.
3086 */
3087static LY_ERR
3088lyd_compare_single_(const struct lyd_node *node1, const struct lyd_node *node2,
3089 uint32_t options, ly_bool parental_schemas_checked)
Radek Krejci1f05b6a2019-07-18 16:15:06 +02003090{
3091 const struct lyd_node *iter1, *iter2;
3092 struct lyd_node_term *term1, *term2;
3093 struct lyd_node_any *any1, *any2;
Michal Vasko52927e22020-03-16 17:26:14 +01003094 struct lyd_node_opaq *opaq1, *opaq2;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02003095 size_t len1, len2;
Radek Krejci084289f2019-07-09 17:35:30 +02003096
Radek Krejci1f05b6a2019-07-18 16:15:06 +02003097 if (!node1 || !node2) {
3098 if (node1 == node2) {
3099 return LY_SUCCESS;
3100 } else {
3101 return LY_ENOT;
3102 }
3103 }
3104
aPiecek2f63f952021-03-30 12:22:18 +02003105 if (LYD_CTX(node1) == LYD_CTX(node2)) {
3106 /* same contexts */
3107 if (node1->schema != node2->schema) {
3108 return LY_ENOT;
3109 }
3110 } else {
3111 /* different contexts */
3112 if (!lyd_compare_schema_equal(node1->schema, node2->schema)) {
3113 return LY_ENOT;
3114 }
3115 if (!parental_schemas_checked) {
3116 if (!lyd_compare_schema_parents_equal(node1, node2)) {
3117 return LY_ENOT;
3118 }
3119 parental_schemas_checked = 1;
3120 }
Radek Krejci1f05b6a2019-07-18 16:15:06 +02003121 }
3122
3123 if (node1->hash != node2->hash) {
3124 return LY_ENOT;
3125 }
aPiecek2f63f952021-03-30 12:22:18 +02003126 /* equal hashes do not mean equal nodes, they can be just in collision so the nodes must be checked explicitly */
Radek Krejci1f05b6a2019-07-18 16:15:06 +02003127
Michal Vasko52927e22020-03-16 17:26:14 +01003128 if (!node1->schema) {
3129 opaq1 = (struct lyd_node_opaq *)node1;
3130 opaq2 = (struct lyd_node_opaq *)node2;
aPiecek2f63f952021-03-30 12:22:18 +02003131 if ((strcmp(opaq1->name.name, opaq2->name.name)) || (opaq1->format != opaq2->format) ||
3132 (strcmp(opaq1->name.module_ns, opaq2->name.module_ns))) {
Radek Krejci1f05b6a2019-07-18 16:15:06 +02003133 return LY_ENOT;
3134 }
Michal Vasko52927e22020-03-16 17:26:14 +01003135 switch (opaq1->format) {
Radek Krejci8df109d2021-04-23 12:19:08 +02003136 case LY_VALUE_XML:
Radek Krejci09c77442021-04-26 11:10:34 +02003137 if (lyxml_value_compare(LYD_CTX(node1), opaq1->value, opaq1->val_prefix_data, LYD_CTX(node2), opaq2->value,
3138 opaq2->val_prefix_data)) {
Michal Vasko52927e22020-03-16 17:26:14 +01003139 return LY_ENOT;
3140 }
3141 break;
Radek Krejci8df109d2021-04-23 12:19:08 +02003142 case LY_VALUE_JSON:
Radek Krejci1798aae2020-07-14 13:26:06 +02003143 /* prefixes in JSON are unique, so it is not necessary to canonize the values */
3144 if (strcmp(opaq1->value, opaq2->value)) {
3145 return LY_ENOT;
3146 }
3147 break;
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01003148 default:
Michal Vasko52927e22020-03-16 17:26:14 +01003149 /* not allowed */
Michal Vaskob7be7a82020-08-20 09:09:04 +02003150 LOGINT(LYD_CTX(node1));
Michal Vasko52927e22020-03-16 17:26:14 +01003151 return LY_EINT;
3152 }
3153 if (options & LYD_COMPARE_FULL_RECURSION) {
3154 iter1 = opaq1->child;
3155 iter2 = opaq2->child;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02003156 goto all_children_compare;
Michal Vasko52927e22020-03-16 17:26:14 +01003157 }
3158 return LY_SUCCESS;
3159 } else {
3160 switch (node1->schema->nodetype) {
3161 case LYS_LEAF:
3162 case LYS_LEAFLIST:
3163 if (options & LYD_COMPARE_DEFAULTS) {
3164 if ((node1->flags & LYD_DEFAULT) != (node2->flags & LYD_DEFAULT)) {
3165 return LY_ENOT;
3166 }
3167 }
3168
Michal Vasko1a2bf2e2020-06-16 13:07:48 +02003169 term1 = (struct lyd_node_term *)node1;
3170 term2 = (struct lyd_node_term *)node2;
aPiecek2f63f952021-03-30 12:22:18 +02003171
3172 /* same contexts */
3173 if (LYD_CTX(node1) == LYD_CTX(node2)) {
3174 return term1->value.realtype->plugin->compare(&term1->value, &term2->value);
3175 }
3176
3177 /* different contexts */
Radek Krejci6d5ba0c2021-04-26 07:49:59 +02003178 if (strcmp(lyd_get_value(node1), lyd_get_value(node2))) {
aPiecek2f63f952021-03-30 12:22:18 +02003179 return LY_ENOT;
3180 }
3181 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01003182 case LYS_CONTAINER:
3183 if (options & LYD_COMPARE_DEFAULTS) {
3184 if ((node1->flags & LYD_DEFAULT) != (node2->flags & LYD_DEFAULT)) {
3185 return LY_ENOT;
3186 }
3187 }
3188 if (options & LYD_COMPARE_FULL_RECURSION) {
Michal Vasko9e685082021-01-29 14:49:09 +01003189 iter1 = lyd_child(node1);
3190 iter2 = lyd_child(node2);
Michal Vasko52927e22020-03-16 17:26:14 +01003191 goto all_children_compare;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02003192 }
3193 return LY_SUCCESS;
Michal Vasko1bf09392020-03-27 12:38:10 +01003194 case LYS_RPC:
Michal Vasko52927e22020-03-16 17:26:14 +01003195 case LYS_ACTION:
3196 if (options & LYD_COMPARE_FULL_RECURSION) {
3197 /* TODO action/RPC
3198 goto all_children_compare;
3199 */
Radek Krejci1f05b6a2019-07-18 16:15:06 +02003200 }
3201 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01003202 case LYS_NOTIF:
3203 if (options & LYD_COMPARE_FULL_RECURSION) {
3204 /* TODO Notification
3205 goto all_children_compare;
3206 */
3207 }
3208 return LY_SUCCESS;
3209 case LYS_LIST:
Michal Vasko9e685082021-01-29 14:49:09 +01003210 iter1 = lyd_child(node1);
3211 iter2 = lyd_child(node2);
Michal Vasko52927e22020-03-16 17:26:14 +01003212
3213 if (!(node1->schema->flags & LYS_KEYLESS) && !(options & LYD_COMPARE_FULL_RECURSION)) {
3214 /* lists with keys, their equivalence is based on their keys */
Michal Vasko544e58a2021-01-28 14:33:41 +01003215 for (const struct lysc_node *key = lysc_node_child(node1->schema);
Michal Vaskoc57d9a92020-06-23 13:28:27 +02003216 key && (key->flags & LYS_KEY);
Michal Vasko52927e22020-03-16 17:26:14 +01003217 key = key->next) {
aPiecek2f63f952021-03-30 12:22:18 +02003218 if (lyd_compare_single_(iter1, iter2, options, parental_schemas_checked)) {
Michal Vasko52927e22020-03-16 17:26:14 +01003219 return LY_ENOT;
3220 }
3221 iter1 = iter1->next;
3222 iter2 = iter2->next;
3223 }
3224 } else {
3225 /* lists without keys, their equivalence is based on equivalence of all the children (both direct and indirect) */
3226
Radek Krejci0f969882020-08-21 16:56:47 +02003227all_children_compare:
Michal Vasko52927e22020-03-16 17:26:14 +01003228 if (!iter1 && !iter2) {
3229 /* no children, nothing to compare */
3230 return LY_SUCCESS;
3231 }
3232
Michal Vaskod989ba02020-08-24 10:59:24 +02003233 for ( ; iter1 && iter2; iter1 = iter1->next, iter2 = iter2->next) {
aPiecek2f63f952021-03-30 12:22:18 +02003234 if (lyd_compare_single_(iter1, iter2, options | LYD_COMPARE_FULL_RECURSION, parental_schemas_checked)) {
Michal Vasko52927e22020-03-16 17:26:14 +01003235 return LY_ENOT;
3236 }
3237 }
3238 if (iter1 || iter2) {
3239 return LY_ENOT;
3240 }
3241 }
3242 return LY_SUCCESS;
3243 case LYS_ANYXML:
3244 case LYS_ANYDATA:
Michal Vasko22df3f02020-08-24 13:29:22 +02003245 any1 = (struct lyd_node_any *)node1;
3246 any2 = (struct lyd_node_any *)node2;
Michal Vasko52927e22020-03-16 17:26:14 +01003247
3248 if (any1->value_type != any2->value_type) {
3249 return LY_ENOT;
3250 }
3251 switch (any1->value_type) {
3252 case LYD_ANYDATA_DATATREE:
3253 iter1 = any1->value.tree;
3254 iter2 = any2->value.tree;
3255 goto all_children_compare;
3256 case LYD_ANYDATA_STRING:
3257 case LYD_ANYDATA_XML:
3258 case LYD_ANYDATA_JSON:
3259 len1 = strlen(any1->value.str);
3260 len2 = strlen(any2->value.str);
Michal Vasko69730152020-10-09 16:30:07 +02003261 if ((len1 != len2) || strcmp(any1->value.str, any2->value.str)) {
Michal Vasko52927e22020-03-16 17:26:14 +01003262 return LY_ENOT;
3263 }
3264 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01003265 case LYD_ANYDATA_LYB:
Michal Vasko60ea6352020-06-29 13:39:39 +02003266 len1 = lyd_lyb_data_length(any1->value.mem);
3267 len2 = lyd_lyb_data_length(any2->value.mem);
Michal Vasko69730152020-10-09 16:30:07 +02003268 if ((len1 != len2) || memcmp(any1->value.mem, any2->value.mem, len1)) {
Michal Vasko52927e22020-03-16 17:26:14 +01003269 return LY_ENOT;
3270 }
3271 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01003272 }
Radek Krejci1f05b6a2019-07-18 16:15:06 +02003273 }
3274 }
3275
Michal Vaskob7be7a82020-08-20 09:09:04 +02003276 LOGINT(LYD_CTX(node1));
Radek Krejci1f05b6a2019-07-18 16:15:06 +02003277 return LY_EINT;
3278}
Radek Krejci22ebdba2019-07-25 13:59:43 +02003279
Michal Vasko21725742020-06-29 11:49:25 +02003280API LY_ERR
aPiecek2f63f952021-03-30 12:22:18 +02003281lyd_compare_single(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options)
3282{
3283 return lyd_compare_single_(node1, node2, options, 0);
3284}
3285
3286API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003287lyd_compare_siblings(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options)
Michal Vasko8f359bf2020-07-28 10:41:15 +02003288{
Michal Vaskod989ba02020-08-24 10:59:24 +02003289 for ( ; node1 && node2; node1 = node1->next, node2 = node2->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02003290 LY_CHECK_RET(lyd_compare_single(node1, node2, options));
3291 }
3292
Michal Vasko11a81432020-07-28 16:31:29 +02003293 if (node1 == node2) {
3294 return LY_SUCCESS;
Michal Vasko8f359bf2020-07-28 10:41:15 +02003295 }
Michal Vasko11a81432020-07-28 16:31:29 +02003296 return LY_ENOT;
Michal Vasko8f359bf2020-07-28 10:41:15 +02003297}
3298
3299API LY_ERR
Michal Vasko21725742020-06-29 11:49:25 +02003300lyd_compare_meta(const struct lyd_meta *meta1, const struct lyd_meta *meta2)
3301{
3302 if (!meta1 || !meta2) {
3303 if (meta1 == meta2) {
3304 return LY_SUCCESS;
3305 } else {
3306 return LY_ENOT;
3307 }
3308 }
3309
Michal Vaskoa8083062020-11-06 17:22:10 +01003310 if ((meta1->annotation->module->ctx != meta2->annotation->module->ctx) || (meta1->annotation != meta2->annotation)) {
Michal Vasko21725742020-06-29 11:49:25 +02003311 return LY_ENOT;
3312 }
3313
Michal Vasko21725742020-06-29 11:49:25 +02003314 return meta1->value.realtype->plugin->compare(&meta1->value, &meta2->value);
3315}
3316
Radek Krejci22ebdba2019-07-25 13:59:43 +02003317/**
Michal Vasko9cf62422021-07-01 13:29:32 +02003318 * @brief Create a copy of the attribute.
3319 *
3320 * @param[in] attr Attribute to copy.
3321 * @param[in] node Opaque where to append the new attribute.
3322 * @param[out] dup Optional created attribute copy.
3323 * @return LY_ERR value.
3324 */
3325static LY_ERR
3326lyd_dup_attr_single(const struct lyd_attr *attr, struct lyd_node *node, struct lyd_attr **dup)
3327{
3328 LY_ERR ret = LY_SUCCESS;
3329 struct lyd_attr *a, *last;
3330 struct lyd_node_opaq *opaq = (struct lyd_node_opaq *)node;
3331
3332 LY_CHECK_ARG_RET(NULL, attr, node, !node->schema, LY_EINVAL);
3333
3334 /* create a copy */
3335 a = calloc(1, sizeof *attr);
3336 LY_CHECK_ERR_RET(!a, LOGMEM(LYD_CTX(node)), LY_EMEM);
3337
3338 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), attr->name.name, 0, &a->name.name), finish);
3339 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), attr->name.prefix, 0, &a->name.prefix), finish);
3340 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), attr->name.module_ns, 0, &a->name.module_ns), finish);
3341 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), attr->value, 0, &a->value), finish);
3342 a->hints = attr->hints;
3343 a->format = attr->format;
3344 if (attr->val_prefix_data) {
3345 ret = ly_dup_prefix_data(LYD_CTX(node), attr->format, attr->val_prefix_data, &a->val_prefix_data);
3346 LY_CHECK_GOTO(ret, finish);
3347 }
3348
3349 /* insert as the last attribute */
3350 a->parent = opaq;
3351 if (opaq->attr) {
3352 for (last = opaq->attr; last->next; last = last->next) {}
3353 last->next = a;
3354 } else {
3355 opaq->attr = a;
3356 }
3357
3358finish:
3359 if (ret) {
3360 lyd_free_attr_single(LYD_CTX(node), a);
3361 } else if (dup) {
3362 *dup = a;
3363 }
3364 return LY_SUCCESS;
3365}
3366
3367/**
Michal Vasko52927e22020-03-16 17:26:14 +01003368 * @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 +02003369 *
3370 * 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 +02003371 *
3372 * @param[in] node Original node to duplicate
3373 * @param[in] parent Parent to insert into, NULL for top-level sibling.
Michal Vasko67177e52021-08-25 11:15:15 +02003374 * @param[in] insert_last Whether the duplicated node can be inserted as the last child of @p parent. Set for
3375 * recursive duplication as an optimization.
Radek Krejcif8b95172020-05-15 14:51:06 +02003376 * @param[in,out] first First sibling, NULL if no top-level sibling exist yet. Can be also NULL if @p parent is set.
3377 * @param[in] options Bitmask of options flags, see @ref dupoptions.
3378 * @param[out] dup_p Pointer where the created duplicated node is placed (besides connecting it int @p parent / @p first sibling).
3379 * @return LY_ERR value
Radek Krejci22ebdba2019-07-25 13:59:43 +02003380 */
Michal Vasko52927e22020-03-16 17:26:14 +01003381static LY_ERR
Michal Vasko67177e52021-08-25 11:15:15 +02003382lyd_dup_r(const struct lyd_node *node, struct lyd_node *parent, ly_bool insert_last, struct lyd_node **first,
3383 uint32_t options, struct lyd_node **dup_p)
Radek Krejci22ebdba2019-07-25 13:59:43 +02003384{
Michal Vasko52927e22020-03-16 17:26:14 +01003385 LY_ERR ret;
Radek Krejci22ebdba2019-07-25 13:59:43 +02003386 struct lyd_node *dup = NULL;
Michal Vasko61551fa2020-07-09 15:45:45 +02003387 struct lyd_meta *meta;
Michal Vasko9cf62422021-07-01 13:29:32 +02003388 struct lyd_attr *attr;
Michal Vasko61551fa2020-07-09 15:45:45 +02003389 struct lyd_node_any *any;
Radek Krejci22ebdba2019-07-25 13:59:43 +02003390
Michal Vasko52927e22020-03-16 17:26:14 +01003391 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Radek Krejci22ebdba2019-07-25 13:59:43 +02003392
Michal Vasko52927e22020-03-16 17:26:14 +01003393 if (!node->schema) {
3394 dup = calloc(1, sizeof(struct lyd_node_opaq));
Michal Vasko9cf62422021-07-01 13:29:32 +02003395 ((struct lyd_node_opaq *)dup)->ctx = LYD_CTX(node);
Michal Vasko52927e22020-03-16 17:26:14 +01003396 } else {
3397 switch (node->schema->nodetype) {
Michal Vasko1bf09392020-03-27 12:38:10 +01003398 case LYS_RPC:
Michal Vasko52927e22020-03-16 17:26:14 +01003399 case LYS_ACTION:
3400 case LYS_NOTIF:
3401 case LYS_CONTAINER:
3402 case LYS_LIST:
3403 dup = calloc(1, sizeof(struct lyd_node_inner));
3404 break;
3405 case LYS_LEAF:
3406 case LYS_LEAFLIST:
3407 dup = calloc(1, sizeof(struct lyd_node_term));
3408 break;
3409 case LYS_ANYDATA:
3410 case LYS_ANYXML:
3411 dup = calloc(1, sizeof(struct lyd_node_any));
3412 break;
3413 default:
Michal Vaskob7be7a82020-08-20 09:09:04 +02003414 LOGINT(LYD_CTX(node));
Michal Vasko52927e22020-03-16 17:26:14 +01003415 ret = LY_EINT;
3416 goto error;
3417 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02003418 }
Michal Vaskob7be7a82020-08-20 09:09:04 +02003419 LY_CHECK_ERR_GOTO(!dup, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02003420
Michal Vaskof6df0a02020-06-16 13:08:34 +02003421 if (options & LYD_DUP_WITH_FLAGS) {
3422 dup->flags = node->flags;
3423 } else {
3424 dup->flags = (node->flags & LYD_DEFAULT) | LYD_NEW;
3425 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02003426 dup->schema = node->schema;
Michal Vasko52927e22020-03-16 17:26:14 +01003427 dup->prev = dup;
Radek Krejci22ebdba2019-07-25 13:59:43 +02003428
Michal Vasko9cf62422021-07-01 13:29:32 +02003429 /* duplicate metadata/attributes */
Michal Vasko25a32822020-07-09 15:48:22 +02003430 if (!(options & LYD_DUP_NO_META)) {
Michal Vasko9cf62422021-07-01 13:29:32 +02003431 if (!node->schema) {
3432 LY_LIST_FOR(((struct lyd_node_opaq *)node)->attr, attr) {
3433 LY_CHECK_GOTO(ret = lyd_dup_attr_single(attr, dup, NULL), error);
3434 }
3435 } else {
3436 LY_LIST_FOR(node->meta, meta) {
3437 LY_CHECK_GOTO(ret = lyd_dup_meta_single(meta, dup, NULL), error);
3438 }
Michal Vasko25a32822020-07-09 15:48:22 +02003439 }
3440 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02003441
3442 /* nodetype-specific work */
Michal Vasko52927e22020-03-16 17:26:14 +01003443 if (!dup->schema) {
3444 struct lyd_node_opaq *opaq = (struct lyd_node_opaq *)dup;
3445 struct lyd_node_opaq *orig = (struct lyd_node_opaq *)node;
3446 struct lyd_node *child;
Radek Krejci22ebdba2019-07-25 13:59:43 +02003447
3448 if (options & LYD_DUP_RECURSIVE) {
3449 /* duplicate all the children */
3450 LY_LIST_FOR(orig->child, child) {
Michal Vasko67177e52021-08-25 11:15:15 +02003451 LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, 1, NULL, options, NULL), error);
Michal Vasko52927e22020-03-16 17:26:14 +01003452 }
3453 }
Michal Vaskoad92b672020-11-12 13:11:31 +01003454 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->name.name, 0, &opaq->name.name), error);
Michal Vasko9cf62422021-07-01 13:29:32 +02003455 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->name.prefix, 0, &opaq->name.prefix), error);
Michal Vaskoad92b672020-11-12 13:11:31 +01003456 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->name.module_ns, 0, &opaq->name.module_ns), error);
Michal Vasko9cf62422021-07-01 13:29:32 +02003457 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->value, 0, &opaq->value), error);
3458 opaq->hints = orig->hints;
3459 opaq->format = orig->format;
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01003460 if (orig->val_prefix_data) {
3461 ret = ly_dup_prefix_data(LYD_CTX(node), opaq->format, orig->val_prefix_data, &opaq->val_prefix_data);
3462 LY_CHECK_GOTO(ret, error);
Michal Vasko52927e22020-03-16 17:26:14 +01003463 }
Michal Vasko52927e22020-03-16 17:26:14 +01003464 } else if (dup->schema->nodetype & LYD_NODE_TERM) {
3465 struct lyd_node_term *term = (struct lyd_node_term *)dup;
3466 struct lyd_node_term *orig = (struct lyd_node_term *)node;
3467
3468 term->hash = orig->hash;
Michal Vaskob7be7a82020-08-20 09:09:04 +02003469 LY_CHECK_ERR_GOTO(orig->value.realtype->plugin->duplicate(LYD_CTX(node), &orig->value, &term->value),
Michal Vasko69730152020-10-09 16:30:07 +02003470 LOGERR(LYD_CTX(node), LY_EINT, "Value duplication failed."); ret = LY_EINT, error);
Michal Vasko52927e22020-03-16 17:26:14 +01003471 } else if (dup->schema->nodetype & LYD_NODE_INNER) {
3472 struct lyd_node_inner *orig = (struct lyd_node_inner *)node;
3473 struct lyd_node *child;
3474
3475 if (options & LYD_DUP_RECURSIVE) {
3476 /* duplicate all the children */
3477 LY_LIST_FOR(orig->child, child) {
Michal Vasko67177e52021-08-25 11:15:15 +02003478 LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, 1, NULL, options, NULL), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02003479 }
Michal Vasko69730152020-10-09 16:30:07 +02003480 } else if ((dup->schema->nodetype == LYS_LIST) && !(dup->schema->flags & LYS_KEYLESS)) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02003481 /* always duplicate keys of a list */
Radek Krejci22ebdba2019-07-25 13:59:43 +02003482 child = orig->child;
Michal Vasko544e58a2021-01-28 14:33:41 +01003483 for (const struct lysc_node *key = lysc_node_child(dup->schema);
Michal Vaskoc57d9a92020-06-23 13:28:27 +02003484 key && (key->flags & LYS_KEY);
Radek Krejci0fe9b512019-07-26 17:51:05 +02003485 key = key->next) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02003486 if (!child) {
3487 /* possibly not keys are present in filtered tree */
3488 break;
Radek Krejci0fe9b512019-07-26 17:51:05 +02003489 } else if (child->schema != key) {
3490 /* possibly not all keys are present in filtered tree,
3491 * but there can be also some non-key nodes */
3492 continue;
Radek Krejci22ebdba2019-07-25 13:59:43 +02003493 }
Michal Vasko67177e52021-08-25 11:15:15 +02003494 LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, 1, NULL, options, NULL), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02003495 child = child->next;
3496 }
3497 }
3498 lyd_hash(dup);
3499 } else if (dup->schema->nodetype & LYD_NODE_ANY) {
Michal Vasko61551fa2020-07-09 15:45:45 +02003500 dup->hash = node->hash;
3501 any = (struct lyd_node_any *)node;
3502 LY_CHECK_GOTO(ret = lyd_any_copy_value(dup, &any->value, any->value_type), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02003503 }
3504
Michal Vasko52927e22020-03-16 17:26:14 +01003505 /* insert */
Michal Vasko67177e52021-08-25 11:15:15 +02003506 lyd_insert_node(parent, first, dup, insert_last);
Michal Vasko52927e22020-03-16 17:26:14 +01003507
3508 if (dup_p) {
3509 *dup_p = dup;
3510 }
3511 return LY_SUCCESS;
Radek Krejci22ebdba2019-07-25 13:59:43 +02003512
3513error:
Michal Vasko52927e22020-03-16 17:26:14 +01003514 lyd_free_tree(dup);
3515 return ret;
Radek Krejci22ebdba2019-07-25 13:59:43 +02003516}
3517
Michal Vasko29d674b2021-08-25 11:18:35 +02003518/**
3519 * @brief Get a parent node to connect duplicated subtree to.
3520 *
3521 * @param[in] node Node (subtree) to duplicate.
3522 * @param[in] parent Initial parent to connect to.
3523 * @param[in] options Bitmask of options flags, see @ref dupoptions.
3524 * @param[out] dup_parent First duplicated parent node, if any.
3525 * @param[out] local_parent Correct parent to directly connect duplicated @p node to.
3526 * @return LY_ERR value.
3527 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02003528static LY_ERR
Michal Vasko20909752021-05-18 16:13:38 +02003529lyd_dup_get_local_parent(const struct lyd_node *node, const struct lyd_node_inner *parent, uint32_t options,
3530 struct lyd_node **dup_parent, struct lyd_node_inner **local_parent)
Radek Krejci22ebdba2019-07-25 13:59:43 +02003531{
Michal Vasko3a41dff2020-07-15 14:30:28 +02003532 const struct lyd_node_inner *orig_parent, *iter;
Radek Krejci857189e2020-09-01 13:26:36 +02003533 ly_bool repeat = 1;
Michal Vasko3a41dff2020-07-15 14:30:28 +02003534
3535 *dup_parent = NULL;
3536 *local_parent = NULL;
3537
3538 for (orig_parent = node->parent; repeat && orig_parent; orig_parent = orig_parent->parent) {
3539 if (parent && (parent->schema == orig_parent->schema)) {
3540 /* stop creating parents, connect what we have into the provided parent */
3541 iter = parent;
3542 repeat = 0;
3543 } else {
3544 iter = NULL;
Michal Vasko67177e52021-08-25 11:15:15 +02003545 LY_CHECK_RET(lyd_dup_r((struct lyd_node *)orig_parent, NULL, 0, (struct lyd_node **)&iter, options,
Radek Krejci0f969882020-08-21 16:56:47 +02003546 (struct lyd_node **)&iter));
Michal Vasko3a41dff2020-07-15 14:30:28 +02003547 }
3548 if (!*local_parent) {
3549 *local_parent = (struct lyd_node_inner *)iter;
3550 }
3551 if (iter->child) {
3552 /* 1) list - add after keys
3553 * 2) provided parent with some children */
3554 iter->child->prev->next = *dup_parent;
3555 if (*dup_parent) {
3556 (*dup_parent)->prev = iter->child->prev;
3557 iter->child->prev = *dup_parent;
3558 }
3559 } else {
3560 ((struct lyd_node_inner *)iter)->child = *dup_parent;
3561 }
3562 if (*dup_parent) {
3563 (*dup_parent)->parent = (struct lyd_node_inner *)iter;
3564 }
3565 *dup_parent = (struct lyd_node *)iter;
3566 }
3567
3568 if (repeat && parent) {
3569 /* given parent and created parents chain actually do not interconnect */
Michal Vaskob7be7a82020-08-20 09:09:04 +02003570 LOGERR(LYD_CTX(node), LY_EINVAL,
Michal Vasko69730152020-10-09 16:30:07 +02003571 "Invalid argument parent (%s()) - does not interconnect with the created node's parents chain.", __func__);
Michal Vasko3a41dff2020-07-15 14:30:28 +02003572 return LY_EINVAL;
3573 }
3574
3575 return LY_SUCCESS;
3576}
3577
3578static LY_ERR
Michal Vasko67177e52021-08-25 11:15:15 +02003579lyd_dup(const struct lyd_node *node, struct lyd_node_inner *parent, uint32_t options, ly_bool nosiblings,
3580 struct lyd_node **dup)
Michal Vasko3a41dff2020-07-15 14:30:28 +02003581{
3582 LY_ERR rc;
Radek Krejci22ebdba2019-07-25 13:59:43 +02003583 const struct lyd_node *orig; /* original node to be duplicated */
3584 struct lyd_node *first = NULL; /* the first duplicated node, this is returned */
Radek Krejci22ebdba2019-07-25 13:59:43 +02003585 struct lyd_node *top = NULL; /* the most higher created node */
3586 struct lyd_node_inner *local_parent = NULL; /* the direct parent node for the duplicated node(s) */
Radek Krejci22ebdba2019-07-25 13:59:43 +02003587
Michal Vasko3a41dff2020-07-15 14:30:28 +02003588 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Radek Krejci22ebdba2019-07-25 13:59:43 +02003589
3590 if (options & LYD_DUP_WITH_PARENTS) {
Michal Vasko20909752021-05-18 16:13:38 +02003591 LY_CHECK_GOTO(rc = lyd_dup_get_local_parent(node, parent, options & (LYD_DUP_WITH_FLAGS | LYD_DUP_NO_META),
3592 &top, &local_parent), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02003593 } else {
3594 local_parent = parent;
3595 }
3596
Radek Krejci22ebdba2019-07-25 13:59:43 +02003597 LY_LIST_FOR(node, orig) {
Michal Vasko35f4d772021-01-12 12:08:57 +01003598 if (lysc_is_key(orig->schema)) {
3599 if (local_parent) {
3600 /* the key must already exist in the parent */
3601 rc = lyd_find_sibling_schema(local_parent->child, orig->schema, first ? NULL : &first);
3602 LY_CHECK_ERR_GOTO(rc, LOGINT(LYD_CTX(node)), error);
3603 } else {
3604 assert(!(options & LYD_DUP_WITH_PARENTS));
3605 /* duplicating a single key, okay, I suppose... */
Michal Vasko67177e52021-08-25 11:15:15 +02003606 rc = lyd_dup_r(orig, NULL, 0, &first, options, first ? NULL : &first);
Michal Vasko35f4d772021-01-12 12:08:57 +01003607 LY_CHECK_GOTO(rc, error);
3608 }
3609 } else {
3610 /* if there is no local parent, it will be inserted into first */
Michal Vasko67177e52021-08-25 11:15:15 +02003611 rc = lyd_dup_r(orig, local_parent ? &local_parent->node : NULL, 0, &first, options, first ? NULL : &first);
Michal Vasko35f4d772021-01-12 12:08:57 +01003612 LY_CHECK_GOTO(rc, error);
3613 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02003614 if (nosiblings) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02003615 break;
3616 }
3617 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02003618
Michal Vasko3a41dff2020-07-15 14:30:28 +02003619 if (dup) {
3620 *dup = first;
3621 }
3622 return LY_SUCCESS;
Radek Krejci22ebdba2019-07-25 13:59:43 +02003623
3624error:
3625 if (top) {
3626 lyd_free_tree(top);
3627 } else {
Michal Vaskof03ed032020-03-04 13:31:44 +01003628 lyd_free_siblings(first);
Radek Krejci22ebdba2019-07-25 13:59:43 +02003629 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02003630 return rc;
Radek Krejci22ebdba2019-07-25 13:59:43 +02003631}
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003632
Michal Vasko3a41dff2020-07-15 14:30:28 +02003633API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003634lyd_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 +02003635{
3636 return lyd_dup(node, parent, options, 1, dup);
3637}
3638
3639API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003640lyd_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 +02003641{
3642 return lyd_dup(node, parent, options, 0, dup);
3643}
3644
3645API LY_ERR
3646lyd_dup_meta_single(const struct lyd_meta *meta, struct lyd_node *node, struct lyd_meta **dup)
Michal Vasko25a32822020-07-09 15:48:22 +02003647{
Radek Krejci011e4aa2020-09-04 15:22:31 +02003648 LY_ERR ret = LY_SUCCESS;
Michal Vasko25a32822020-07-09 15:48:22 +02003649 struct lyd_meta *mt, *last;
3650
Michal Vasko3a41dff2020-07-15 14:30:28 +02003651 LY_CHECK_ARG_RET(NULL, meta, node, LY_EINVAL);
Michal Vasko25a32822020-07-09 15:48:22 +02003652
3653 /* create a copy */
3654 mt = calloc(1, sizeof *mt);
Michal Vaskob7be7a82020-08-20 09:09:04 +02003655 LY_CHECK_ERR_RET(!mt, LOGMEM(LYD_CTX(node)), LY_EMEM);
Michal Vasko25a32822020-07-09 15:48:22 +02003656 mt->annotation = meta->annotation;
Michal Vaskob7be7a82020-08-20 09:09:04 +02003657 ret = meta->value.realtype->plugin->duplicate(LYD_CTX(node), &meta->value, &mt->value);
Radek Krejci011e4aa2020-09-04 15:22:31 +02003658 LY_CHECK_ERR_GOTO(ret, LOGERR(LYD_CTX(node), LY_EINT, "Value duplication failed."), finish);
3659 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), meta->name, 0, &mt->name), finish);
Michal Vasko25a32822020-07-09 15:48:22 +02003660
3661 /* insert as the last attribute */
Radek Krejci011e4aa2020-09-04 15:22:31 +02003662 mt->parent = node;
Michal Vasko25a32822020-07-09 15:48:22 +02003663 if (node->meta) {
Radek Krejci1e008d22020-08-17 11:37:37 +02003664 for (last = node->meta; last->next; last = last->next) {}
Michal Vasko25a32822020-07-09 15:48:22 +02003665 last->next = mt;
3666 } else {
3667 node->meta = mt;
3668 }
3669
Radek Krejci011e4aa2020-09-04 15:22:31 +02003670finish:
3671 if (ret) {
3672 lyd_free_meta_single(mt);
3673 } else if (dup) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02003674 *dup = mt;
3675 }
3676 return LY_SUCCESS;
Michal Vasko25a32822020-07-09 15:48:22 +02003677}
3678
Michal Vasko4490d312020-06-16 13:08:55 +02003679/**
3680 * @brief Merge a source sibling into target siblings.
3681 *
3682 * @param[in,out] first_trg First target sibling, is updated if top-level.
3683 * @param[in] parent_trg Target parent.
3684 * @param[in,out] sibling_src Source sibling to merge, set to NULL if spent.
Michal Vaskocd3f6172021-05-18 16:14:50 +02003685 * @param[in] merge_cb Optional merge callback.
3686 * @param[in] cb_data Arbitrary callback data.
Michal Vasko4490d312020-06-16 13:08:55 +02003687 * @param[in] options Merge options.
Michal Vaskocd3f6172021-05-18 16:14:50 +02003688 * @param[in,out] dup_inst Duplicate instance cache for all @p first_trg siblings.
Michal Vasko4490d312020-06-16 13:08:55 +02003689 * @return LY_ERR value.
3690 */
3691static LY_ERR
3692lyd_merge_sibling_r(struct lyd_node **first_trg, struct lyd_node *parent_trg, const struct lyd_node **sibling_src_p,
Michal Vaskocd3f6172021-05-18 16:14:50 +02003693 lyd_merge_cb merge_cb, void *cb_data, uint16_t options, struct lyd_dup_inst **dup_inst)
Michal Vasko4490d312020-06-16 13:08:55 +02003694{
Michal Vasko4490d312020-06-16 13:08:55 +02003695 const struct lyd_node *child_src, *tmp, *sibling_src;
Michal Vasko56daf732020-08-10 10:57:18 +02003696 struct lyd_node *match_trg, *dup_src, *elem;
Michal Vasko4490d312020-06-16 13:08:55 +02003697 struct lysc_type *type;
Michal Vaskocd3f6172021-05-18 16:14:50 +02003698 struct lyd_dup_inst *child_dup_inst = NULL;
3699 LY_ERR ret;
3700 ly_bool first_inst = 0;
Michal Vasko4490d312020-06-16 13:08:55 +02003701
3702 sibling_src = *sibling_src_p;
Michal Vaskocd3f6172021-05-18 16:14:50 +02003703 if (!sibling_src->schema) {
3704 /* try to find the same opaque node */
3705 lyd_find_sibling_opaq_next(*first_trg, LYD_NAME(sibling_src), &match_trg);
3706 } else if (sibling_src->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) {
Michal Vasko4490d312020-06-16 13:08:55 +02003707 /* try to find the exact instance */
Michal Vaskocd3f6172021-05-18 16:14:50 +02003708 lyd_find_sibling_first(*first_trg, sibling_src, &match_trg);
Michal Vasko4490d312020-06-16 13:08:55 +02003709 } else {
3710 /* try to simply find the node, there cannot be more instances */
Michal Vaskocd3f6172021-05-18 16:14:50 +02003711 lyd_find_sibling_val(*first_trg, sibling_src->schema, NULL, 0, &match_trg);
Michal Vasko4490d312020-06-16 13:08:55 +02003712 }
3713
Michal Vaskocd3f6172021-05-18 16:14:50 +02003714 if (match_trg) {
3715 /* update match as needed */
3716 LY_CHECK_RET(lyd_dup_inst_next(&match_trg, *first_trg, dup_inst));
3717 } else {
3718 /* first instance of this node */
3719 first_inst = 1;
3720 }
3721
3722 if (match_trg) {
3723 /* call callback */
3724 if (merge_cb) {
3725 LY_CHECK_RET(merge_cb(match_trg, sibling_src, cb_data));
3726 }
3727
Michal Vasko4490d312020-06-16 13:08:55 +02003728 /* node found, make sure even value matches for all node types */
Michal Vasko8f359bf2020-07-28 10:41:15 +02003729 if ((match_trg->schema->nodetype == LYS_LEAF) && lyd_compare_single(sibling_src, match_trg, LYD_COMPARE_DEFAULTS)) {
Michal Vasko4490d312020-06-16 13:08:55 +02003730 /* since they are different, they cannot both be default */
3731 assert(!(sibling_src->flags & LYD_DEFAULT) || !(match_trg->flags & LYD_DEFAULT));
3732
Michal Vasko3a41dff2020-07-15 14:30:28 +02003733 /* update value (or only LYD_DEFAULT flag) only if flag set or the source node is not default */
3734 if ((options & LYD_MERGE_DEFAULTS) || !(sibling_src->flags & LYD_DEFAULT)) {
Michal Vasko4490d312020-06-16 13:08:55 +02003735 type = ((struct lysc_node_leaf *)match_trg->schema)->type;
Michal Vaskob7be7a82020-08-20 09:09:04 +02003736 type->plugin->free(LYD_CTX(match_trg), &((struct lyd_node_term *)match_trg)->value);
3737 LY_CHECK_RET(type->plugin->duplicate(LYD_CTX(match_trg), &((struct lyd_node_term *)sibling_src)->value,
Michal Vasko69730152020-10-09 16:30:07 +02003738 &((struct lyd_node_term *)match_trg)->value));
Michal Vasko4490d312020-06-16 13:08:55 +02003739
3740 /* copy flags and add LYD_NEW */
Michal Vasko7e8315b2021-08-03 17:01:06 +02003741 match_trg->flags = sibling_src->flags | ((options & LYD_MERGE_WITH_FLAGS) ? 0 : LYD_NEW);
Michal Vasko4490d312020-06-16 13:08:55 +02003742 }
Michal Vasko8f359bf2020-07-28 10:41:15 +02003743 } else if ((match_trg->schema->nodetype & LYS_ANYDATA) && lyd_compare_single(sibling_src, match_trg, 0)) {
Michal Vasko4c583e82020-07-17 12:16:14 +02003744 /* update value */
3745 LY_CHECK_RET(lyd_any_copy_value(match_trg, &((struct lyd_node_any *)sibling_src)->value,
Radek Krejci0f969882020-08-21 16:56:47 +02003746 ((struct lyd_node_any *)sibling_src)->value_type));
Michal Vasko4490d312020-06-16 13:08:55 +02003747
3748 /* copy flags and add LYD_NEW */
Michal Vasko7e8315b2021-08-03 17:01:06 +02003749 match_trg->flags = sibling_src->flags | ((options & LYD_MERGE_WITH_FLAGS) ? 0 : LYD_NEW);
Michal Vaskocd3f6172021-05-18 16:14:50 +02003750 }
3751
3752 /* check descendants, recursively */
3753 ret = LY_SUCCESS;
3754 LY_LIST_FOR_SAFE(lyd_child_no_keys(sibling_src), tmp, child_src) {
3755 ret = lyd_merge_sibling_r(lyd_node_child_p(match_trg), match_trg, &child_src, merge_cb, cb_data, options,
3756 &child_dup_inst);
3757 if (ret) {
3758 break;
Michal Vasko4490d312020-06-16 13:08:55 +02003759 }
3760 }
Michal Vaskocd3f6172021-05-18 16:14:50 +02003761 lyd_dup_inst_free(child_dup_inst);
3762 LY_CHECK_RET(ret);
Michal Vasko4490d312020-06-16 13:08:55 +02003763 } else {
3764 /* node not found, merge it */
3765 if (options & LYD_MERGE_DESTRUCT) {
3766 dup_src = (struct lyd_node *)sibling_src;
3767 lyd_unlink_tree(dup_src);
3768 /* spend it */
3769 *sibling_src_p = NULL;
3770 } else {
Michal Vasko3a41dff2020-07-15 14:30:28 +02003771 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 +02003772 }
3773
Michal Vasko7e8315b2021-08-03 17:01:06 +02003774 if (!(options & LYD_MERGE_WITH_FLAGS)) {
3775 /* set LYD_NEW for all the new nodes, required for validation */
3776 LYD_TREE_DFS_BEGIN(dup_src, elem) {
3777 elem->flags |= LYD_NEW;
3778 LYD_TREE_DFS_END(dup_src, elem);
3779 }
Michal Vasko4490d312020-06-16 13:08:55 +02003780 }
3781
Michal Vaskocd3f6172021-05-18 16:14:50 +02003782 /* insert */
Michal Vasko6ee6f432021-07-16 09:49:14 +02003783 lyd_insert_node(parent_trg, first_trg, dup_src, 0);
Michal Vaskocd3f6172021-05-18 16:14:50 +02003784
3785 if (first_inst) {
3786 /* remember not to find this instance next time */
3787 LY_CHECK_RET(lyd_dup_inst_next(&dup_src, *first_trg, dup_inst));
3788 }
3789
3790 /* call callback, no source node */
3791 if (merge_cb) {
3792 LY_CHECK_RET(merge_cb(dup_src, NULL, cb_data));
3793 }
Michal Vasko4490d312020-06-16 13:08:55 +02003794 }
3795
3796 return LY_SUCCESS;
3797}
3798
Michal Vasko3a41dff2020-07-15 14:30:28 +02003799static LY_ERR
Michal Vaskocd3f6172021-05-18 16:14:50 +02003800lyd_merge(struct lyd_node **target, const struct lyd_node *source, const struct lys_module *mod,
3801 lyd_merge_cb merge_cb, void *cb_data, uint16_t options, ly_bool nosiblings)
Michal Vasko4490d312020-06-16 13:08:55 +02003802{
3803 const struct lyd_node *sibling_src, *tmp;
Michal Vaskocd3f6172021-05-18 16:14:50 +02003804 struct lyd_dup_inst *dup_inst = NULL;
Radek Krejci857189e2020-09-01 13:26:36 +02003805 ly_bool first;
Michal Vaskocd3f6172021-05-18 16:14:50 +02003806 LY_ERR ret = LY_SUCCESS;
Michal Vasko4490d312020-06-16 13:08:55 +02003807
3808 LY_CHECK_ARG_RET(NULL, target, LY_EINVAL);
3809
3810 if (!source) {
3811 /* nothing to merge */
3812 return LY_SUCCESS;
3813 }
3814
Michal Vasko831422b2020-11-24 11:20:51 +01003815 if ((*target && lysc_data_parent((*target)->schema)) || lysc_data_parent(source->schema)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02003816 LOGERR(LYD_CTX(source), LY_EINVAL, "Invalid arguments - can merge only 2 top-level subtrees (%s()).", __func__);
Michal Vasko4490d312020-06-16 13:08:55 +02003817 return LY_EINVAL;
3818 }
3819
3820 LY_LIST_FOR_SAFE(source, tmp, sibling_src) {
Michal Vaskocd3f6172021-05-18 16:14:50 +02003821 if (mod && (lyd_owner_module(sibling_src) != mod)) {
3822 /* skip data nodes from different modules */
3823 continue;
3824 }
3825
Radek Krejci857189e2020-09-01 13:26:36 +02003826 first = (sibling_src == source) ? 1 : 0;
Michal Vaskocd3f6172021-05-18 16:14:50 +02003827 ret = lyd_merge_sibling_r(target, NULL, &sibling_src, merge_cb, cb_data, options, &dup_inst);
3828 if (ret) {
3829 break;
3830 }
Michal Vasko4490d312020-06-16 13:08:55 +02003831 if (first && !sibling_src) {
3832 /* source was spent (unlinked), move to the next node */
3833 source = tmp;
3834 }
3835
Michal Vasko3a41dff2020-07-15 14:30:28 +02003836 if (nosiblings) {
Michal Vasko4490d312020-06-16 13:08:55 +02003837 break;
3838 }
3839 }
3840
3841 if (options & LYD_MERGE_DESTRUCT) {
3842 /* free any leftover source data that were not merged */
3843 lyd_free_siblings((struct lyd_node *)source);
3844 }
3845
Michal Vaskocd3f6172021-05-18 16:14:50 +02003846 lyd_dup_inst_free(dup_inst);
3847 return ret;
Michal Vasko4490d312020-06-16 13:08:55 +02003848}
3849
Michal Vasko3a41dff2020-07-15 14:30:28 +02003850API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003851lyd_merge_tree(struct lyd_node **target, const struct lyd_node *source, uint16_t options)
Michal Vasko3a41dff2020-07-15 14:30:28 +02003852{
Michal Vaskocd3f6172021-05-18 16:14:50 +02003853 return lyd_merge(target, source, NULL, NULL, NULL, options, 1);
Michal Vasko3a41dff2020-07-15 14:30:28 +02003854}
3855
3856API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003857lyd_merge_siblings(struct lyd_node **target, const struct lyd_node *source, uint16_t options)
Michal Vasko3a41dff2020-07-15 14:30:28 +02003858{
Michal Vaskocd3f6172021-05-18 16:14:50 +02003859 return lyd_merge(target, source, NULL, NULL, NULL, options, 0);
3860}
3861
3862API LY_ERR
3863lyd_merge_module(struct lyd_node **target, const struct lyd_node *source, const struct lys_module *mod,
3864 lyd_merge_cb merge_cb, void *cb_data, uint16_t options)
3865{
3866 return lyd_merge(target, source, mod, merge_cb, cb_data, options, 0);
Michal Vasko3a41dff2020-07-15 14:30:28 +02003867}
3868
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003869static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003870lyd_path_str_enlarge(char **buffer, size_t *buflen, size_t reqlen, ly_bool is_static)
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003871{
Michal Vasko14654712020-02-06 08:35:21 +01003872 /* ending \0 */
3873 ++reqlen;
3874
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003875 if (reqlen > *buflen) {
3876 if (is_static) {
3877 return LY_EINCOMPLETE;
3878 }
3879
3880 *buffer = ly_realloc(*buffer, reqlen * sizeof **buffer);
3881 if (!*buffer) {
3882 return LY_EMEM;
3883 }
3884
3885 *buflen = reqlen;
3886 }
3887
3888 return LY_SUCCESS;
3889}
3890
Michal Vaskod59035b2020-07-08 12:00:06 +02003891LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003892lyd_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 +02003893{
3894 const struct lyd_node *key;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003895 size_t len;
3896 const char *val;
3897 char quot;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003898
Radek Krejcia1c1e542020-09-29 16:06:52 +02003899 for (key = lyd_child(node); key && (key->schema->flags & LYS_KEY); key = key->next) {
Radek Krejci6d5ba0c2021-04-26 07:49:59 +02003900 val = lyd_get_value(key);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003901 len = 1 + strlen(key->schema->name) + 2 + strlen(val) + 2;
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003902 LY_CHECK_RET(lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static));
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003903
3904 quot = '\'';
3905 if (strchr(val, '\'')) {
3906 quot = '"';
3907 }
3908 *bufused += sprintf(*buffer + *bufused, "[%s=%c%s%c]", key->schema->name, quot, val, quot);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003909 }
3910
3911 return LY_SUCCESS;
3912}
3913
3914/**
3915 * @brief Append leaf-list value predicate to path.
3916 *
3917 * @param[in] node Node to print.
3918 * @param[in,out] buffer Buffer to print to.
3919 * @param[in,out] buflen Current buffer length.
3920 * @param[in,out] bufused Current number of characters used in @p buffer.
3921 * @param[in] is_static Whether buffer is static or can be reallocated.
3922 * @return LY_ERR
3923 */
3924static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003925lyd_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 +02003926{
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003927 size_t len;
3928 const char *val;
3929 char quot;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003930
Radek Krejci6d5ba0c2021-04-26 07:49:59 +02003931 val = lyd_get_value(node);
Radek Krejcif13b87b2020-12-01 22:02:17 +01003932 len = 4 + strlen(val) + 2; /* "[.='" + val + "']" */
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003933 LY_CHECK_RET(lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static));
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003934
3935 quot = '\'';
3936 if (strchr(val, '\'')) {
3937 quot = '"';
3938 }
3939 *bufused += sprintf(*buffer + *bufused, "[.=%c%s%c]", quot, val, quot);
3940
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003941 return LY_SUCCESS;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003942}
3943
3944/**
3945 * @brief Append node position (relative to its other instances) predicate to path.
3946 *
3947 * @param[in] node Node to print.
3948 * @param[in,out] buffer Buffer to print to.
3949 * @param[in,out] buflen Current buffer length.
3950 * @param[in,out] bufused Current number of characters used in @p buffer.
3951 * @param[in] is_static Whether buffer is static or can be reallocated.
3952 * @return LY_ERR
3953 */
3954static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003955lyd_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 +02003956{
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003957 size_t len;
Michal Vasko50cc0562021-05-18 16:15:43 +02003958 uint32_t pos;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003959 char *val = NULL;
3960 LY_ERR rc;
3961
Michal Vasko50cc0562021-05-18 16:15:43 +02003962 pos = lyd_list_pos(node);
3963 if (asprintf(&val, "%" PRIu32, pos) == -1) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003964 return LY_EMEM;
3965 }
3966
3967 len = 1 + strlen(val) + 1;
3968 rc = lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static);
3969 if (rc != LY_SUCCESS) {
3970 goto cleanup;
3971 }
3972
3973 *bufused += sprintf(*buffer + *bufused, "[%s]", val);
3974
3975cleanup:
3976 free(val);
3977 return rc;
3978}
3979
3980API char *
3981lyd_path(const struct lyd_node *node, LYD_PATH_TYPE pathtype, char *buffer, size_t buflen)
3982{
Radek Krejci857189e2020-09-01 13:26:36 +02003983 ly_bool is_static = 0;
Radek Krejci1deb5be2020-08-26 16:43:36 +02003984 uint32_t i, depth;
Michal Vasko14654712020-02-06 08:35:21 +01003985 size_t bufused = 0, len;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003986 const struct lyd_node *iter;
3987 const struct lys_module *mod;
Michal Vasko790b2bc2020-08-03 13:35:06 +02003988 LY_ERR rc = LY_SUCCESS;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003989
3990 LY_CHECK_ARG_RET(NULL, node, NULL);
3991 if (buffer) {
Michal Vasko16385f42021-05-18 16:16:09 +02003992 LY_CHECK_ARG_RET(LYD_CTX(node), buflen > 1, NULL);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003993 is_static = 1;
Michal Vasko14654712020-02-06 08:35:21 +01003994 } else {
3995 buflen = 0;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003996 }
3997
3998 switch (pathtype) {
Radek Krejci635d2b82021-01-04 11:26:51 +01003999 case LYD_PATH_STD:
4000 case LYD_PATH_STD_NO_LAST_PRED:
Michal Vasko14654712020-02-06 08:35:21 +01004001 depth = 1;
Michal Vasko9e685082021-01-29 14:49:09 +01004002 for (iter = node; iter->parent; iter = lyd_parent(iter)) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02004003 ++depth;
4004 }
4005
Michal Vasko5ec7cda2019-09-11 13:43:08 +02004006 goto iter_print;
Michal Vasko14654712020-02-06 08:35:21 +01004007 while (depth) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02004008 /* find the right node */
Michal Vasko9e685082021-01-29 14:49:09 +01004009 for (iter = node, i = 1; i < depth; iter = lyd_parent(iter), ++i) {}
Michal Vasko5ec7cda2019-09-11 13:43:08 +02004010iter_print:
4011 /* print prefix and name */
4012 mod = NULL;
Michal Vasko69730152020-10-09 16:30:07 +02004013 if (iter->schema && (!iter->parent || (iter->schema->module != iter->parent->schema->module))) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02004014 mod = iter->schema->module;
4015 }
4016
4017 /* realloc string */
Michal Vaskoad92b672020-11-12 13:11:31 +01004018 len = 1 + (mod ? strlen(mod->name) + 1 : 0) + (iter->schema ? strlen(iter->schema->name) :
4019 strlen(((struct lyd_node_opaq *)iter)->name.name));
Michal Vasko5ec7cda2019-09-11 13:43:08 +02004020 rc = lyd_path_str_enlarge(&buffer, &buflen, bufused + len, is_static);
4021 if (rc != LY_SUCCESS) {
4022 break;
4023 }
4024
4025 /* print next node */
Radek Krejci1798aae2020-07-14 13:26:06 +02004026 bufused += sprintf(buffer + bufused, "/%s%s%s", mod ? mod->name : "", mod ? ":" : "",
Michal Vaskoad92b672020-11-12 13:11:31 +01004027 iter->schema ? iter->schema->name : ((struct lyd_node_opaq *)iter)->name.name);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02004028
Michal Vasko790b2bc2020-08-03 13:35:06 +02004029 /* do not always print the last (first) predicate */
Radek Krejci635d2b82021-01-04 11:26:51 +01004030 if (iter->schema && ((depth > 1) || (pathtype == LYD_PATH_STD))) {
Michal Vasko790b2bc2020-08-03 13:35:06 +02004031 switch (iter->schema->nodetype) {
4032 case LYS_LIST:
4033 if (iter->schema->flags & LYS_KEYLESS) {
4034 /* print its position */
4035 rc = lyd_path_position_predicate(iter, &buffer, &buflen, &bufused, is_static);
4036 } else {
4037 /* print all list keys in predicates */
4038 rc = lyd_path_list_predicate(iter, &buffer, &buflen, &bufused, is_static);
4039 }
4040 break;
4041 case LYS_LEAFLIST:
4042 if (iter->schema->flags & LYS_CONFIG_W) {
4043 /* print leaf-list value */
4044 rc = lyd_path_leaflist_predicate(iter, &buffer, &buflen, &bufused, is_static);
4045 } else {
4046 /* print its position */
4047 rc = lyd_path_position_predicate(iter, &buffer, &buflen, &bufused, is_static);
4048 }
4049 break;
4050 default:
4051 /* nothing to print more */
4052 break;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02004053 }
Michal Vasko5ec7cda2019-09-11 13:43:08 +02004054 }
4055 if (rc != LY_SUCCESS) {
4056 break;
4057 }
4058
Michal Vasko14654712020-02-06 08:35:21 +01004059 --depth;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02004060 }
4061 break;
4062 }
4063
4064 return buffer;
4065}
Michal Vaskoe444f752020-02-10 12:20:06 +01004066
Michal Vasko25a32822020-07-09 15:48:22 +02004067API struct lyd_meta *
4068lyd_find_meta(const struct lyd_meta *first, const struct lys_module *module, const char *name)
4069{
4070 struct lyd_meta *ret = NULL;
4071 const struct ly_ctx *ctx;
4072 const char *prefix, *tmp;
4073 char *str;
4074 size_t pref_len, name_len;
4075
4076 LY_CHECK_ARG_RET(NULL, module || strchr(name, ':'), name, NULL);
4077
4078 if (!first) {
4079 return NULL;
4080 }
4081
4082 ctx = first->annotation->module->ctx;
4083
4084 /* parse the name */
4085 tmp = name;
4086 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
4087 LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name);
4088 return NULL;
4089 }
4090
4091 /* find the module */
4092 if (prefix) {
4093 str = strndup(prefix, pref_len);
4094 module = ly_ctx_get_module_latest(ctx, str);
4095 free(str);
Radek Krejci422afb12021-03-04 16:38:16 +01004096 LY_CHECK_ERR_RET(!module, LOGERR(ctx, LY_EINVAL, "Module \"%.*s\" not found.", (int)pref_len, prefix), NULL);
Michal Vasko25a32822020-07-09 15:48:22 +02004097 }
4098
4099 /* find the metadata */
4100 LY_LIST_FOR(first, first) {
4101 if ((first->annotation->module == module) && !strcmp(first->name, name)) {
4102 ret = (struct lyd_meta *)first;
4103 break;
4104 }
4105 }
4106
4107 return ret;
4108}
4109
Michal Vasko9b368d32020-02-14 13:53:31 +01004110API LY_ERR
Michal Vaskoe444f752020-02-10 12:20:06 +01004111lyd_find_sibling_first(const struct lyd_node *siblings, const struct lyd_node *target, struct lyd_node **match)
4112{
Michal Vaskoe78faec2021-04-08 17:24:43 +02004113 struct lyd_node **match_p, *iter;
Michal Vaskoe444f752020-02-10 12:20:06 +01004114 struct lyd_node_inner *parent;
Michal Vaskoe78faec2021-04-08 17:24:43 +02004115 ly_bool found;
Michal Vaskoe444f752020-02-10 12:20:06 +01004116
Michal Vaskof03ed032020-03-04 13:31:44 +01004117 LY_CHECK_ARG_RET(NULL, target, LY_EINVAL);
Michal Vaskoe444f752020-02-10 12:20:06 +01004118
Michal Vasko6da1e952020-12-09 18:14:38 +01004119 if (!siblings || (siblings->schema && target->schema &&
4120 (lysc_data_parent(siblings->schema) != lysc_data_parent(target->schema)))) {
Michal Vasko62ed12d2020-05-21 10:08:25 +02004121 /* no data or schema mismatch */
Michal Vasko9b368d32020-02-14 13:53:31 +01004122 if (match) {
4123 *match = NULL;
4124 }
Michal Vaskoe444f752020-02-10 12:20:06 +01004125 return LY_ENOTFOUND;
4126 }
4127
Michal Vaskoe78faec2021-04-08 17:24:43 +02004128 /* get first sibling */
4129 siblings = lyd_first_sibling(siblings);
Michal Vaskoe444f752020-02-10 12:20:06 +01004130
Michal Vasko9e685082021-01-29 14:49:09 +01004131 parent = siblings->parent;
Michal Vasko6da1e952020-12-09 18:14:38 +01004132 if (parent && parent->schema && parent->children_ht) {
Michal Vaskoe444f752020-02-10 12:20:06 +01004133 assert(target->hash);
4134
Michal Vaskoe78faec2021-04-08 17:24:43 +02004135 if (lysc_is_dup_inst_list(target->schema)) {
4136 /* we must search the instances from beginning to find the first matching one */
4137 found = 0;
4138 LYD_LIST_FOR_INST(siblings, target->schema, iter) {
4139 if (!lyd_compare_single(target, iter, 0)) {
4140 found = 1;
4141 break;
4142 }
4143 }
4144 if (found) {
4145 siblings = iter;
Michal Vaskoda859032020-07-14 12:20:14 +02004146 } else {
4147 siblings = NULL;
4148 }
Michal Vaskoe444f752020-02-10 12:20:06 +01004149 } else {
Michal Vaskoe78faec2021-04-08 17:24:43 +02004150 /* find by hash */
4151 if (!lyht_find(parent->children_ht, &target, target->hash, (void **)&match_p)) {
4152 siblings = *match_p;
4153 } else {
4154 /* not found */
4155 siblings = NULL;
4156 }
Michal Vaskoe444f752020-02-10 12:20:06 +01004157 }
4158 } else {
4159 /* no children hash table */
Michal Vaskod989ba02020-08-24 10:59:24 +02004160 for ( ; siblings; siblings = siblings->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02004161 if (!lyd_compare_single(siblings, target, 0)) {
Michal Vaskoe444f752020-02-10 12:20:06 +01004162 break;
4163 }
4164 }
4165 }
4166
4167 if (!siblings) {
Michal Vasko9b368d32020-02-14 13:53:31 +01004168 if (match) {
4169 *match = NULL;
4170 }
Michal Vaskoe444f752020-02-10 12:20:06 +01004171 return LY_ENOTFOUND;
4172 }
4173
Michal Vasko9b368d32020-02-14 13:53:31 +01004174 if (match) {
4175 *match = (struct lyd_node *)siblings;
4176 }
Michal Vaskoe444f752020-02-10 12:20:06 +01004177 return LY_SUCCESS;
4178}
4179
Radek Krejci857189e2020-09-01 13:26:36 +02004180/**
4181 * @brief Comparison callback to match schema node with a schema of a data node.
4182 *
4183 * @param[in] val1_p Pointer to the schema node
4184 * @param[in] val2_p Pointer to the data node
Michal Vasko62524a92021-02-26 10:08:50 +01004185 * Implementation of ::lyht_value_equal_cb.
Radek Krejci857189e2020-09-01 13:26:36 +02004186 */
4187static ly_bool
4188lyd_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 +01004189{
4190 struct lysc_node *val1;
4191 struct lyd_node *val2;
4192
4193 val1 = *((struct lysc_node **)val1_p);
4194 val2 = *((struct lyd_node **)val2_p);
4195
Michal Vasko90932a92020-02-12 14:33:03 +01004196 if (val1 == val2->schema) {
4197 /* schema match is enough */
4198 return 1;
4199 } else {
4200 return 0;
4201 }
4202}
4203
Michal Vasko92239c72020-11-18 18:17:25 +01004204/**
4205 * @brief Search in the given siblings (NOT recursively) for the first schema node data instance.
4206 * Uses hashes - should be used whenever possible for best performance.
4207 *
4208 * @param[in] siblings Siblings to search in including preceding and succeeding nodes.
4209 * @param[in] schema Target data node schema to find.
4210 * @param[out] match Can be NULL, otherwise the found data node.
4211 * @return LY_SUCCESS on success, @p match set.
4212 * @return LY_ENOTFOUND if not found, @p match set to NULL.
4213 * @return LY_ERR value if another error occurred.
4214 */
Michal Vasko90932a92020-02-12 14:33:03 +01004215static LY_ERR
4216lyd_find_sibling_schema(const struct lyd_node *siblings, const struct lysc_node *schema, struct lyd_node **match)
4217{
4218 struct lyd_node **match_p;
4219 struct lyd_node_inner *parent;
4220 uint32_t hash;
Michal Vasko62524a92021-02-26 10:08:50 +01004221 lyht_value_equal_cb ht_cb;
Michal Vasko90932a92020-02-12 14:33:03 +01004222
Michal Vaskob104f112020-07-17 09:54:54 +02004223 assert(siblings && schema);
Michal Vasko90932a92020-02-12 14:33:03 +01004224
Michal Vasko9e685082021-01-29 14:49:09 +01004225 parent = siblings->parent;
Michal Vasko08fd6132020-11-18 18:17:45 +01004226 if (parent && parent->schema && parent->children_ht) {
Michal Vasko90932a92020-02-12 14:33:03 +01004227 /* calculate our hash */
4228 hash = dict_hash_multi(0, schema->module->name, strlen(schema->module->name));
4229 hash = dict_hash_multi(hash, schema->name, strlen(schema->name));
4230 hash = dict_hash_multi(hash, NULL, 0);
4231
4232 /* use special hash table function */
4233 ht_cb = lyht_set_cb(parent->children_ht, lyd_hash_table_schema_val_equal);
4234
4235 /* find by hash */
4236 if (!lyht_find(parent->children_ht, &schema, hash, (void **)&match_p)) {
4237 siblings = *match_p;
4238 } else {
4239 /* not found */
4240 siblings = NULL;
4241 }
4242
4243 /* set the original hash table compare function back */
4244 lyht_set_cb(parent->children_ht, ht_cb);
4245 } else {
Michal Vaskob104f112020-07-17 09:54:54 +02004246 /* find first sibling */
4247 if (siblings->parent) {
4248 siblings = siblings->parent->child;
4249 } else {
4250 while (siblings->prev->next) {
4251 siblings = siblings->prev;
4252 }
4253 }
4254
4255 /* search manually without hashes */
Michal Vaskod989ba02020-08-24 10:59:24 +02004256 for ( ; siblings; siblings = siblings->next) {
Michal Vasko90932a92020-02-12 14:33:03 +01004257 if (siblings->schema == schema) {
4258 /* schema match is enough */
4259 break;
4260 }
4261 }
4262 }
4263
4264 if (!siblings) {
Michal Vasko9b368d32020-02-14 13:53:31 +01004265 if (match) {
4266 *match = NULL;
4267 }
Michal Vasko90932a92020-02-12 14:33:03 +01004268 return LY_ENOTFOUND;
4269 }
4270
Michal Vasko9b368d32020-02-14 13:53:31 +01004271 if (match) {
4272 *match = (struct lyd_node *)siblings;
4273 }
Michal Vasko90932a92020-02-12 14:33:03 +01004274 return LY_SUCCESS;
4275}
4276
Michal Vaskoe444f752020-02-10 12:20:06 +01004277API LY_ERR
4278lyd_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 +02004279 size_t val_len, struct lyd_node **match)
Michal Vaskoe444f752020-02-10 12:20:06 +01004280{
4281 LY_ERR rc;
4282 struct lyd_node *target = NULL;
4283
Michal Vasko4c583e82020-07-17 12:16:14 +02004284 LY_CHECK_ARG_RET(NULL, schema, !(schema->nodetype & (LYS_CHOICE | LYS_CASE)), LY_EINVAL);
Michal Vaskoe444f752020-02-10 12:20:06 +01004285
Michal Vasko08fd6132020-11-18 18:17:45 +01004286 if (!siblings || (siblings->schema && (lysc_data_parent(siblings->schema) != lysc_data_parent(schema)))) {
Michal Vasko62ed12d2020-05-21 10:08:25 +02004287 /* no data or schema mismatch */
Michal Vasko9b368d32020-02-14 13:53:31 +01004288 if (match) {
4289 *match = NULL;
4290 }
Michal Vaskoe444f752020-02-10 12:20:06 +01004291 return LY_ENOTFOUND;
4292 }
4293
Michal Vaskof03ed032020-03-04 13:31:44 +01004294 if (key_or_value && !val_len) {
4295 val_len = strlen(key_or_value);
4296 }
4297
Michal Vaskob104f112020-07-17 09:54:54 +02004298 if ((schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) && key_or_value) {
4299 /* create a data node and find the instance */
4300 if (schema->nodetype == LYS_LEAFLIST) {
4301 /* target used attributes: schema, hash, value */
Radek Krejci8df109d2021-04-23 12:19:08 +02004302 rc = lyd_create_term(schema, key_or_value, val_len, NULL, LY_VALUE_JSON, NULL, LYD_HINT_DATA, NULL, &target);
Michal Vaskofeca4fb2020-10-05 08:58:40 +02004303 LY_CHECK_RET(rc);
Michal Vaskob104f112020-07-17 09:54:54 +02004304 } else {
Michal Vasko90932a92020-02-12 14:33:03 +01004305 /* target used attributes: schema, hash, child (all keys) */
Michal Vasko004d3152020-06-11 19:59:22 +02004306 LY_CHECK_RET(lyd_create_list2(schema, key_or_value, val_len, &target));
Michal Vasko90932a92020-02-12 14:33:03 +01004307 }
4308
4309 /* find it */
4310 rc = lyd_find_sibling_first(siblings, target, match);
Michal Vaskob104f112020-07-17 09:54:54 +02004311 } else {
4312 /* find the first schema node instance */
4313 rc = lyd_find_sibling_schema(siblings, schema, match);
Michal Vaskoe444f752020-02-10 12:20:06 +01004314 }
4315
Michal Vaskoe444f752020-02-10 12:20:06 +01004316 lyd_free_tree(target);
4317 return rc;
4318}
Michal Vaskoccc02342020-05-21 10:09:21 +02004319
4320API LY_ERR
Michal Vaskoe78faec2021-04-08 17:24:43 +02004321lyd_find_sibling_dup_inst_set(const struct lyd_node *siblings, const struct lyd_node *target, struct ly_set **set)
4322{
4323 struct lyd_node **match_p, *first, *iter;
4324 struct lyd_node_inner *parent;
4325
4326 LY_CHECK_ARG_RET(NULL, target, lysc_is_dup_inst_list(target->schema), set, LY_EINVAL);
4327
4328 LY_CHECK_RET(ly_set_new(set));
4329
4330 if (!siblings || (siblings->schema && (lysc_data_parent(siblings->schema) != lysc_data_parent(target->schema)))) {
4331 /* no data or schema mismatch */
4332 return LY_ENOTFOUND;
4333 }
4334
4335 /* get first sibling */
4336 siblings = lyd_first_sibling(siblings);
4337
4338 parent = siblings->parent;
4339 if (parent && parent->schema && parent->children_ht) {
4340 assert(target->hash);
4341
4342 /* find the first instance */
4343 lyd_find_sibling_first(siblings, target, &first);
4344 if (first) {
4345 /* add it so that it is the first in the set */
4346 if (ly_set_add(*set, first, 1, NULL)) {
4347 goto error;
4348 }
4349
4350 /* find by hash */
4351 if (!lyht_find(parent->children_ht, &target, target->hash, (void **)&match_p)) {
4352 iter = *match_p;
4353 } else {
4354 /* not found */
4355 iter = NULL;
4356 }
4357 while (iter) {
4358 /* add all found nodes into the set */
4359 if ((iter != first) && !lyd_compare_single(iter, target, 0) && ly_set_add(*set, iter, 1, NULL)) {
4360 goto error;
4361 }
4362
4363 /* find next instance */
4364 if (lyht_find_next(parent->children_ht, &iter, iter->hash, (void **)&match_p)) {
4365 iter = NULL;
4366 } else {
4367 iter = *match_p;
4368 }
4369 }
4370 }
4371 } else {
4372 /* no children hash table */
4373 LY_LIST_FOR(siblings, siblings) {
4374 if (!lyd_compare_single(target, siblings, 0)) {
4375 ly_set_add(*set, (void *)siblings, 1, NULL);
4376 }
4377 }
4378 }
4379
4380 if (!(*set)->count) {
4381 return LY_ENOTFOUND;
4382 }
4383 return LY_SUCCESS;
4384
4385error:
4386 ly_set_free(*set, NULL);
4387 *set = NULL;
4388 return LY_EMEM;
4389}
4390
4391API LY_ERR
Michal Vasko1d4af6c2021-02-22 13:31:26 +01004392lyd_find_sibling_opaq_next(const struct lyd_node *first, const char *name, struct lyd_node **match)
4393{
4394 LY_CHECK_ARG_RET(NULL, name, LY_EINVAL);
4395
4396 for ( ; first; first = first->next) {
4397 if (!first->schema && !strcmp(LYD_NAME(first), name)) {
4398 break;
4399 }
4400 }
4401
4402 if (match) {
4403 *match = (struct lyd_node *)first;
4404 }
4405 return first ? LY_SUCCESS : LY_ENOTFOUND;
4406}
4407
4408API LY_ERR
Michal Vaskoccc02342020-05-21 10:09:21 +02004409lyd_find_xpath(const struct lyd_node *ctx_node, const char *xpath, struct ly_set **set)
4410{
4411 LY_ERR ret = LY_SUCCESS;
Michal Vasko8bd9cc72021-07-16 14:06:10 +02004412 struct lyxp_set xp_set = {0};
Radek Krejcif03a9e22020-09-18 20:09:31 +02004413 struct lyxp_expr *exp = NULL;
Michal Vaskoccc02342020-05-21 10:09:21 +02004414 uint32_t i;
4415
4416 LY_CHECK_ARG_RET(NULL, ctx_node, xpath, set, LY_EINVAL);
4417
Michal Vasko37c69432021-04-12 14:48:24 +02004418 *set = NULL;
Michal Vaskoccc02342020-05-21 10:09:21 +02004419
4420 /* compile expression */
Radek Krejcif03a9e22020-09-18 20:09:31 +02004421 ret = lyxp_expr_parse((struct ly_ctx *)LYD_CTX(ctx_node), xpath, 0, 1, &exp);
4422 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02004423
4424 /* evaluate expression */
Radek Krejci8df109d2021-04-23 12:19:08 +02004425 ret = lyxp_eval(LYD_CTX(ctx_node), exp, NULL, LY_VALUE_JSON, NULL, ctx_node, ctx_node, &xp_set, LYXP_IGNORE_WHEN);
Michal Vaskoccc02342020-05-21 10:09:21 +02004426 LY_CHECK_GOTO(ret, cleanup);
4427
4428 /* allocate return set */
Radek Krejciba03a5a2020-08-27 14:40:41 +02004429 ret = ly_set_new(set);
4430 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02004431
4432 /* transform into ly_set */
4433 if (xp_set.type == LYXP_SET_NODE_SET) {
4434 /* allocate memory for all the elements once (even though not all items must be elements but most likely will be) */
4435 (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs);
Michal Vaskob7be7a82020-08-20 09:09:04 +02004436 LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(LYD_CTX(ctx_node)); ret = LY_EMEM, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02004437 (*set)->size = xp_set.used;
4438
4439 for (i = 0; i < xp_set.used; ++i) {
4440 if (xp_set.val.nodes[i].type == LYXP_NODE_ELEM) {
Radek Krejci3d92e442020-10-12 12:48:13 +02004441 ret = ly_set_add(*set, xp_set.val.nodes[i].node, 1, NULL);
Radek Krejciba03a5a2020-08-27 14:40:41 +02004442 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02004443 }
4444 }
4445 }
4446
4447cleanup:
Michal Vasko0691d522020-05-21 13:21:47 +02004448 lyxp_set_free_content(&xp_set);
Michal Vaskob7be7a82020-08-20 09:09:04 +02004449 lyxp_expr_free((struct ly_ctx *)LYD_CTX(ctx_node), exp);
Radek Krejci8f45abc2020-11-26 12:15:13 +01004450 if (ret) {
4451 ly_set_free(*set, NULL);
4452 *set = NULL;
4453 }
Michal Vaskoccc02342020-05-21 10:09:21 +02004454 return ret;
4455}
Radek Krejcica989142020-11-05 11:32:22 +01004456
Michal Vasko3e1f6552021-01-14 09:27:55 +01004457API LY_ERR
Michal Vaskoc9eb3ca2021-07-16 10:20:37 +02004458lyd_eval_xpath(const struct lyd_node *ctx_node, const char *xpath, ly_bool *result)
4459{
4460 LY_ERR ret = LY_SUCCESS;
Michal Vasko8bd9cc72021-07-16 14:06:10 +02004461 struct lyxp_set xp_set = {0};
Michal Vaskoc9eb3ca2021-07-16 10:20:37 +02004462 struct lyxp_expr *exp = NULL;
4463
4464 LY_CHECK_ARG_RET(NULL, ctx_node, xpath, result, LY_EINVAL);
4465
4466 /* compile expression */
4467 ret = lyxp_expr_parse((struct ly_ctx *)LYD_CTX(ctx_node), xpath, 0, 1, &exp);
4468 LY_CHECK_GOTO(ret, cleanup);
4469
4470 /* evaluate expression */
4471 ret = lyxp_eval(LYD_CTX(ctx_node), exp, NULL, LY_VALUE_JSON, NULL, ctx_node, ctx_node, &xp_set, LYXP_IGNORE_WHEN);
4472 LY_CHECK_GOTO(ret, cleanup);
4473
4474 /* transform into boolean */
4475 ret = lyxp_set_cast(&xp_set, LYXP_SET_BOOLEAN);
4476 LY_CHECK_GOTO(ret, cleanup);
4477
4478 /* set result */
4479 *result = xp_set.val.bln;
4480
4481cleanup:
4482 lyxp_set_free_content(&xp_set);
4483 lyxp_expr_free((struct ly_ctx *)LYD_CTX(ctx_node), exp);
4484 return ret;
4485}
4486
4487API LY_ERR
Michal Vasko3e1f6552021-01-14 09:27:55 +01004488lyd_find_path(const struct lyd_node *ctx_node, const char *path, ly_bool output, struct lyd_node **match)
4489{
4490 LY_ERR ret = LY_SUCCESS;
4491 struct lyxp_expr *expr = NULL;
4492 struct ly_path *lypath = NULL;
4493
4494 LY_CHECK_ARG_RET(NULL, ctx_node, ctx_node->schema, path, LY_EINVAL);
4495
4496 /* parse the path */
Michal Vaskoed725d72021-06-23 12:03:45 +02004497 ret = ly_path_parse(LYD_CTX(ctx_node), ctx_node->schema, path, strlen(path), 0, LY_PATH_BEGIN_EITHER,
Michal Vasko3e1f6552021-01-14 09:27:55 +01004498 LY_PATH_PREFIX_OPTIONAL, LY_PATH_PRED_SIMPLE, &expr);
4499 LY_CHECK_GOTO(ret, cleanup);
4500
4501 /* compile the path */
Michal Vaskoed725d72021-06-23 12:03:45 +02004502 ret = ly_path_compile(LYD_CTX(ctx_node), NULL, ctx_node->schema, NULL, expr,
4503 output ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT, LY_PATH_TARGET_SINGLE, LY_VALUE_JSON, NULL, &lypath);
Michal Vasko3e1f6552021-01-14 09:27:55 +01004504 LY_CHECK_GOTO(ret, cleanup);
4505
4506 /* evaluate the path */
4507 ret = ly_path_eval_partial(lypath, ctx_node, NULL, match);
4508
4509cleanup:
4510 lyxp_expr_free(LYD_CTX(ctx_node), expr);
4511 ly_path_free(LYD_CTX(ctx_node), lypath);
4512 return ret;
4513}
4514
Michal Vaskobb22b182021-06-14 08:14:21 +02004515API LY_ERR
4516lyd_find_target(const struct ly_path *path, const struct lyd_node *tree, struct lyd_node **match)
4517{
4518 LY_ERR ret;
4519 struct lyd_node *m;
4520
4521 LY_CHECK_ARG_RET(NULL, path, LY_EINVAL);
4522
4523 ret = ly_path_eval(path, tree, &m);
4524 if (ret) {
4525 if (match) {
4526 *match = NULL;
4527 }
4528 return LY_ENOTFOUND;
4529 }
4530
4531 if (match) {
4532 *match = m;
4533 }
4534 return LY_SUCCESS;
4535}
4536
Radek Krejcica989142020-11-05 11:32:22 +01004537API uint32_t
4538lyd_list_pos(const struct lyd_node *instance)
4539{
4540 const struct lyd_node *iter = NULL;
4541 uint32_t pos = 0;
4542
4543 if (!instance || !(instance->schema->nodetype & (LYS_LIST | LYS_LEAFLIST))) {
4544 return 0;
4545 }
4546
4547 /* data instances are ordered, so we can stop when we found instance of other schema node */
4548 for (iter = instance; iter->schema == instance->schema; iter = iter->prev) {
Radek Krejcibb27df32020-11-13 15:39:16 +01004549 if (pos && (iter->next == NULL)) {
Radek Krejcica989142020-11-05 11:32:22 +01004550 /* overrun to the end of the siblings list */
4551 break;
4552 }
4553 ++pos;
4554 }
4555
4556 return pos;
4557}
Radek Krejci4233f9b2020-11-05 12:38:35 +01004558
4559API struct lyd_node *
4560lyd_first_sibling(const struct lyd_node *node)
4561{
4562 struct lyd_node *start;
4563
4564 if (!node) {
4565 return NULL;
4566 }
4567
4568 /* get the first sibling */
4569 if (node->parent) {
4570 start = node->parent->child;
4571 } else {
Radek Krejcibb27df32020-11-13 15:39:16 +01004572 for (start = (struct lyd_node *)node; start->prev->next; start = start->prev) {}
Radek Krejci4233f9b2020-11-05 12:38:35 +01004573 }
4574
4575 return start;
4576}