blob: ab4c4957b55d68ab8d4e479e5fa025cca39da02c [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
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100158LIBYANG_API_DEF 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
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100233LIBYANG_API_DEF 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
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100259LIBYANG_API_DEF ly_bool
Radek Krejci19611252020-10-04 13:54:53 +0200260lyd_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
Michal Vasko39eb6882021-09-16 08:53:13 +0200267 if (!(node->schema->nodetype & LYD_NODE_TERM)) {
268 return 0;
269 }
270
Radek Krejci19611252020-10-04 13:54:53 +0200271 term = (const struct lyd_node_term *)node;
272
273 if (node->schema->nodetype == LYS_LEAF) {
274 leaf = (const struct lysc_node_leaf *)node->schema;
275 if (!leaf->dflt) {
276 return 0;
277 }
278
279 /* compare with the default value */
Michal Vasko39eb6882021-09-16 08:53:13 +0200280 if (!leaf->type->plugin->compare(&term->value, leaf->dflt)) {
281 return 1;
Radek Krejci19611252020-10-04 13:54:53 +0200282 }
283 } else {
284 llist = (const struct lysc_node_leaflist *)node->schema;
285 if (!llist->dflts) {
286 return 0;
287 }
288
289 LY_ARRAY_FOR(llist->dflts, u) {
290 /* compare with each possible default value */
Michal Vasko39eb6882021-09-16 08:53:13 +0200291 if (!llist->type->plugin->compare(&term->value, llist->dflts[u])) {
292 return 1;
Radek Krejci19611252020-10-04 13:54:53 +0200293 }
294 }
295 }
296
Michal Vasko39eb6882021-09-16 08:53:13 +0200297 return 0;
Radek Krejci19611252020-10-04 13:54:53 +0200298}
299
Radek Krejci7931b192020-06-25 17:05:03 +0200300static LYD_FORMAT
Michal Vasko63f3d842020-07-08 10:10:14 +0200301lyd_parse_get_format(const struct ly_in *in, LYD_FORMAT format)
Radek Krejcie7b95092019-05-15 11:03:07 +0200302{
Michal Vasko69730152020-10-09 16:30:07 +0200303 if (!format && (in->type == LY_IN_FILEPATH)) {
Radek Krejcie7b95092019-05-15 11:03:07 +0200304 /* unknown format - try to detect it from filename's suffix */
Radek Krejci7931b192020-06-25 17:05:03 +0200305 const char *path = in->method.fpath.filepath;
306 size_t len = strlen(path);
Radek Krejcie7b95092019-05-15 11:03:07 +0200307
308 /* ignore trailing whitespaces */
Michal Vaskod989ba02020-08-24 10:59:24 +0200309 for ( ; len > 0 && isspace(path[len - 1]); len--) {}
Radek Krejcie7b95092019-05-15 11:03:07 +0200310
Radek Krejcif13b87b2020-12-01 22:02:17 +0100311 if ((len >= LY_XML_SUFFIX_LEN + 1) &&
312 !strncmp(&path[len - LY_XML_SUFFIX_LEN], LY_XML_SUFFIX, LY_XML_SUFFIX_LEN)) {
Radek Krejcie7b95092019-05-15 11:03:07 +0200313 format = LYD_XML;
Radek Krejcif13b87b2020-12-01 22:02:17 +0100314 } else if ((len >= LY_JSON_SUFFIX_LEN + 1) &&
315 !strncmp(&path[len - LY_JSON_SUFFIX_LEN], LY_JSON_SUFFIX, LY_JSON_SUFFIX_LEN)) {
Radek Krejcie7b95092019-05-15 11:03:07 +0200316 format = LYD_JSON;
Radek Krejcif13b87b2020-12-01 22:02:17 +0100317 } else if ((len >= LY_LYB_SUFFIX_LEN + 1) &&
318 !strncmp(&path[len - LY_LYB_SUFFIX_LEN], LY_LYB_SUFFIX, LY_LYB_SUFFIX_LEN)) {
Radek Krejcie7b95092019-05-15 11:03:07 +0200319 format = LYD_LYB;
Radek Krejci7931b192020-06-25 17:05:03 +0200320 } /* else still unknown */
Radek Krejcie7b95092019-05-15 11:03:07 +0200321 }
322
Radek Krejci7931b192020-06-25 17:05:03 +0200323 return format;
324}
Radek Krejcie7b95092019-05-15 11:03:07 +0200325
Michal Vaskoe0665742021-02-11 11:08:44 +0100326/**
327 * @brief Parse YANG data into a data tree.
328 *
329 * @param[in] ctx libyang context.
Radek Krejcif16e2542021-02-17 15:39:23 +0100330 * @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 +0100331 * @param[in] parent Parent to connect the parsed nodes to, if any.
332 * @param[in,out] first_p Pointer to the first top-level parsed node, used only if @p parent is NULL.
333 * @param[in] in Input handle to read the input from.
334 * @param[in] format Expected format of the data in @p in.
335 * @param[in] parse_opts Options for parser.
336 * @param[in] val_opts Options for validation.
337 * @param[out] op Optional pointer to the parsed operation, if any.
338 * @return LY_ERR value.
339 */
340static LY_ERR
Radek Krejcif16e2542021-02-17 15:39:23 +0100341lyd_parse(const struct ly_ctx *ctx, const struct lysc_ext_instance *ext, struct lyd_node *parent, struct lyd_node **first_p,
342 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 +0200343{
Michal Vaskoe0665742021-02-11 11:08:44 +0100344 LY_ERR rc = LY_SUCCESS;
Radek Krejci1798aae2020-07-14 13:26:06 +0200345 struct lyd_ctx *lydctx = NULL;
Michal Vaskoe0665742021-02-11 11:08:44 +0100346 struct ly_set parsed = {0};
347 struct lyd_node *first;
348 uint32_t i;
Radek Krejci1798aae2020-07-14 13:26:06 +0200349
Michal Vaskoe0665742021-02-11 11:08:44 +0100350 assert(ctx && (parent || first_p));
Radek Krejci7931b192020-06-25 17:05:03 +0200351
352 format = lyd_parse_get_format(in, format);
Michal Vaskoe0665742021-02-11 11:08:44 +0100353 if (first_p) {
354 *first_p = NULL;
355 }
Radek Krejci1798aae2020-07-14 13:26:06 +0200356
Michal Vasko63f3d842020-07-08 10:10:14 +0200357 /* remember input position */
358 in->func_start = in->current;
Radek Krejci7931b192020-06-25 17:05:03 +0200359
Michal Vaskoe0665742021-02-11 11:08:44 +0100360 /* parse the data */
Radek Krejci7931b192020-06-25 17:05:03 +0200361 switch (format) {
362 case LYD_XML:
Radek Krejcif16e2542021-02-17 15:39:23 +0100363 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 +0200364 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200365 case LYD_JSON:
Radek Krejcif16e2542021-02-17 15:39:23 +0100366 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 +0200367 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200368 case LYD_LYB:
Radek Krejcif16e2542021-02-17 15:39:23 +0100369 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 +0200370 break;
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200371 case LYD_UNKNOWN:
Michal Vaskod74978f2021-02-12 11:59:36 +0100372 LOGARG(ctx, format);
373 rc = LY_EINVAL;
Michal Vaskoe0665742021-02-11 11:08:44 +0100374 break;
375 }
376 LY_CHECK_GOTO(rc, cleanup);
377
378 if (parent) {
379 /* get first top-level sibling */
380 for (first = parent; first->parent; first = lyd_parent(first)) {}
381 first = lyd_first_sibling(first);
382 first_p = &first;
Radek Krejci7931b192020-06-25 17:05:03 +0200383 }
384
Michal Vaskoe0665742021-02-11 11:08:44 +0100385 if (!(parse_opts & LYD_PARSE_ONLY)) {
386 /* validate data */
Radek Krejci4f2e3e52021-03-30 14:20:28 +0200387 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 +0100388 &lydctx->meta_types, NULL);
389 LY_CHECK_GOTO(rc, cleanup);
390 }
Radek Krejci7931b192020-06-25 17:05:03 +0200391
Michal Vaskoe0665742021-02-11 11:08:44 +0100392 /* set the operation node */
393 if (op) {
394 *op = lydctx->op_node;
Radek Krejci1798aae2020-07-14 13:26:06 +0200395 }
396
397cleanup:
Michal Vaskoe0665742021-02-11 11:08:44 +0100398 if (lydctx) {
399 lydctx->free(lydctx);
Radek Krejci1798aae2020-07-14 13:26:06 +0200400 }
Michal Vaskoe0665742021-02-11 11:08:44 +0100401 if (rc) {
402 if (parent) {
403 /* free all the parsed subtrees */
404 for (i = 0; i < parsed.count; ++i) {
405 lyd_free_tree(parsed.dnodes[i]);
406 }
407 } else {
408 /* free everything */
409 lyd_free_all(*first_p);
410 *first_p = NULL;
411 }
412 }
413 ly_set_erase(&parsed, NULL);
414 return rc;
Radek Krejci7931b192020-06-25 17:05:03 +0200415}
416
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100417LIBYANG_API_DEF LY_ERR
Radek Krejcif16e2542021-02-17 15:39:23 +0100418lyd_parse_ext_data(const struct lysc_ext_instance *ext, struct lyd_node *parent, struct ly_in *in, LYD_FORMAT format,
419 uint32_t parse_options, uint32_t validate_options, struct lyd_node **tree)
420{
421 const struct ly_ctx *ctx = ext ? ext->module->ctx : NULL;
422
423 LY_CHECK_ARG_RET(ctx, ext, in, parent || tree, LY_EINVAL);
424 LY_CHECK_ARG_RET(ctx, !(parse_options & ~LYD_PARSE_OPTS_MASK), LY_EINVAL);
425 LY_CHECK_ARG_RET(ctx, !(validate_options & ~LYD_VALIDATE_OPTS_MASK), LY_EINVAL);
426
427 return lyd_parse(ctx, ext, parent, tree, in, format, parse_options, validate_options, NULL);
428}
429
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100430LIBYANG_API_DEF LY_ERR
Michal Vaskoe0665742021-02-11 11:08:44 +0100431lyd_parse_data(const struct ly_ctx *ctx, struct lyd_node *parent, struct ly_in *in, LYD_FORMAT format,
432 uint32_t parse_options, uint32_t validate_options, struct lyd_node **tree)
433{
434 LY_CHECK_ARG_RET(ctx, ctx, in, parent || tree, LY_EINVAL);
435 LY_CHECK_ARG_RET(ctx, !(parse_options & ~LYD_PARSE_OPTS_MASK), LY_EINVAL);
436 LY_CHECK_ARG_RET(ctx, !(validate_options & ~LYD_VALIDATE_OPTS_MASK), LY_EINVAL);
437
Radek Krejcif16e2542021-02-17 15:39:23 +0100438 return lyd_parse(ctx, NULL, parent, tree, in, format, parse_options, validate_options, NULL);
Michal Vaskoe0665742021-02-11 11:08:44 +0100439}
440
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100441LIBYANG_API_DEF LY_ERR
Michal Vaskoe0665742021-02-11 11:08:44 +0100442lyd_parse_data_mem(const struct ly_ctx *ctx, const char *data, LYD_FORMAT format, uint32_t parse_options,
443 uint32_t validate_options, struct lyd_node **tree)
Radek Krejci7931b192020-06-25 17:05:03 +0200444{
445 LY_ERR ret;
446 struct ly_in *in;
447
448 LY_CHECK_RET(ly_in_new_memory(data, &in));
Michal Vaskoe0665742021-02-11 11:08:44 +0100449 ret = lyd_parse_data(ctx, NULL, in, format, parse_options, validate_options, tree);
Radek Krejci7931b192020-06-25 17:05:03 +0200450
451 ly_in_free(in, 0);
452 return ret;
453}
454
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100455LIBYANG_API_DEF LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200456lyd_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 +0200457 struct lyd_node **tree)
Radek Krejci7931b192020-06-25 17:05:03 +0200458{
459 LY_ERR ret;
460 struct ly_in *in;
461
462 LY_CHECK_RET(ly_in_new_fd(fd, &in));
Michal Vaskoe0665742021-02-11 11:08:44 +0100463 ret = lyd_parse_data(ctx, NULL, in, format, parse_options, validate_options, tree);
Radek Krejci7931b192020-06-25 17:05:03 +0200464
465 ly_in_free(in, 0);
466 return ret;
467}
468
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100469LIBYANG_API_DEF LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200470lyd_parse_data_path(const struct ly_ctx *ctx, const char *path, LYD_FORMAT format, uint32_t parse_options,
471 uint32_t validate_options, struct lyd_node **tree)
Radek Krejci7931b192020-06-25 17:05:03 +0200472{
473 LY_ERR ret;
474 struct ly_in *in;
475
476 LY_CHECK_RET(ly_in_new_filepath(path, 0, &in));
Michal Vaskoe0665742021-02-11 11:08:44 +0100477 ret = lyd_parse_data(ctx, NULL, in, format, parse_options, validate_options, tree);
Radek Krejci7931b192020-06-25 17:05:03 +0200478
479 ly_in_free(in, 0);
480 return ret;
481}
482
Radek Krejcif16e2542021-02-17 15:39:23 +0100483/**
484 * @brief Parse YANG data into an operation data tree, in case the extension instance is specified, keep the searching
485 * for schema nodes locked inside the extension instance.
486 *
487 * At least one of @p parent, @p tree, or @p op must always be set.
488 *
489 * Specific @p data_type values have different parameter meaning as follows:
490 * - ::LYD_TYPE_RPC_NETCONF:
491 * - @p parent - must be NULL, the whole RPC is expected;
492 * - @p format - must be ::LYD_XML, NETCONF supports only this format;
493 * - @p tree - must be provided, all the NETCONF-specific XML envelopes will be returned here as
494 * a separate opaque data tree, even if the function fails, this may be returned;
495 * - @p op - must be provided, the RPC/action data tree itself will be returned here, pointing to the operation;
496 *
497 * - ::LYD_TYPE_NOTIF_NETCONF:
498 * - @p parent - must be NULL, the whole notification is expected;
499 * - @p format - must be ::LYD_XML, NETCONF supports only this format;
500 * - @p tree - must be provided, all the NETCONF-specific XML envelopes will be returned here as
501 * a separate opaque data tree, even if the function fails, this may be returned;
502 * - @p op - must be provided, the notification data tree itself will be returned here, pointing to the operation;
503 *
504 * - ::LYD_TYPE_REPLY_NETCONF:
505 * - @p parent - must be set, pointing to the invoked RPC operation (RPC or action) node;
506 * - @p format - must be ::LYD_XML, NETCONF supports only this format;
507 * - @p tree - must be provided, all the NETCONF-specific XML envelopes will be returned here as
508 * a separate opaque data tree, even if the function fails, this may be returned;
509 * - @p op - must be NULL, the reply is appended to the RPC;
510 * Note that there are 3 kinds of NETCONF replies - ok, error, and data. Only data reply appends any nodes to the RPC.
511 *
512 * @param[in] ctx libyang context.
513 * @param[in] ext Extension instance providing the specific schema tree to match with the data being parsed.
514 * @param[in] parent Optional parent to connect the parsed nodes to.
515 * @param[in] in Input handle to read the input from.
516 * @param[in] format Expected format of the data in @p in.
517 * @param[in] data_type Expected operation to parse (@ref datatype).
518 * @param[out] tree Optional full parsed data tree. If @p parent is set, set to NULL.
519 * @param[out] op Optional parsed operation node.
520 * @return LY_ERR value.
521 * @return LY_ENOT if @p data_type is a NETCONF message and the root XML element is not the expected one.
522 */
523static LY_ERR
524lyd_parse_op_(const struct ly_ctx *ctx, const struct lysc_ext_instance *ext, struct lyd_node *parent,
525 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 +0200526{
Michal Vaskoe0665742021-02-11 11:08:44 +0100527 LY_ERR rc = LY_SUCCESS;
528 struct lyd_ctx *lydctx = NULL;
529 struct ly_set parsed = {0};
530 struct lyd_node *first = NULL, *envp = NULL;
531 uint32_t i, parse_opts, val_opts;
Radek Krejci7931b192020-06-25 17:05:03 +0200532
Michal Vasko27fb0262021-02-23 09:42:01 +0100533 if (!ctx) {
534 ctx = LYD_CTX(parent);
535 }
Radek Krejci1798aae2020-07-14 13:26:06 +0200536 if (tree) {
537 *tree = NULL;
538 }
539 if (op) {
540 *op = NULL;
541 }
542
Radek Krejci7931b192020-06-25 17:05:03 +0200543 format = lyd_parse_get_format(in, format);
Radek Krejci7931b192020-06-25 17:05:03 +0200544
Michal Vasko63f3d842020-07-08 10:10:14 +0200545 /* remember input position */
546 in->func_start = in->current;
547
Michal Vaskoe0665742021-02-11 11:08:44 +0100548 /* check params based on the data type */
Michal Vasko1e4c68e2021-02-18 15:03:01 +0100549 if ((data_type == LYD_TYPE_RPC_NETCONF) || (data_type == LYD_TYPE_NOTIF_NETCONF)) {
Michal Vaskoe0665742021-02-11 11:08:44 +0100550 LY_CHECK_ARG_RET(ctx, format == LYD_XML, !parent, tree, op, LY_EINVAL);
Michal Vasko1e4c68e2021-02-18 15:03:01 +0100551 } else if (data_type == LYD_TYPE_REPLY_NETCONF) {
552 LY_CHECK_ARG_RET(ctx, format == LYD_XML, parent, parent->schema->nodetype & (LYS_RPC | LYS_ACTION), tree, !op,
553 LY_EINVAL);
Michal Vaskoe0665742021-02-11 11:08:44 +0100554 }
Michal Vasko9da78cf2021-07-21 13:45:10 +0200555 parse_opts = LYD_PARSE_ONLY | LYD_PARSE_OPAQ;
Michal Vaskoe0665742021-02-11 11:08:44 +0100556 val_opts = 0;
557
558 /* parse the data */
Radek Krejci7931b192020-06-25 17:05:03 +0200559 switch (format) {
560 case LYD_XML:
Radek Krejcif16e2542021-02-17 15:39:23 +0100561 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 +0100562 if (rc && envp) {
563 /* special situation when the envelopes were parsed successfully */
564 if (tree) {
565 *tree = envp;
566 }
567 ly_set_erase(&parsed, NULL);
568 return rc;
569 }
Michal Vaskoe0665742021-02-11 11:08:44 +0100570 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200571 case LYD_JSON:
Radek Krejcif16e2542021-02-17 15:39:23 +0100572 rc = lyd_parse_json(ctx, ext, parent, &first, in, parse_opts, val_opts, data_type, &parsed, &lydctx);
Michal Vaskoe0665742021-02-11 11:08:44 +0100573 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200574 case LYD_LYB:
Radek Krejcif16e2542021-02-17 15:39:23 +0100575 rc = lyd_parse_lyb(ctx, ext, parent, &first, in, parse_opts, val_opts, data_type, &parsed, &lydctx);
Michal Vaskoe0665742021-02-11 11:08:44 +0100576 break;
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200577 case LYD_UNKNOWN:
Michal Vaskod74978f2021-02-12 11:59:36 +0100578 LOGARG(ctx, format);
579 rc = LY_EINVAL;
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200580 break;
Radek Krejci7931b192020-06-25 17:05:03 +0200581 }
Michal Vaskoe0665742021-02-11 11:08:44 +0100582 LY_CHECK_GOTO(rc, cleanup);
Radek Krejci7931b192020-06-25 17:05:03 +0200583
Michal Vaskoe0665742021-02-11 11:08:44 +0100584 /* set out params correctly */
585 if (tree) {
586 if (envp) {
587 /* special out param meaning */
588 *tree = envp;
589 } else {
590 *tree = parent ? NULL : first;
591 }
592 }
593 if (op) {
594 *op = lydctx->op_node;
595 }
596
597cleanup:
598 if (lydctx) {
599 lydctx->free(lydctx);
600 }
601 if (rc) {
602 if (parent) {
603 /* free all the parsed subtrees */
604 for (i = 0; i < parsed.count; ++i) {
605 lyd_free_tree(parsed.dnodes[i]);
606 }
607 } else {
608 /* free everything (cannot occur in the current code, a safety) */
609 lyd_free_all(first);
610 if (tree) {
611 *tree = NULL;
612 }
613 if (op) {
614 *op = NULL;
615 }
616 }
617 }
618 ly_set_erase(&parsed, NULL);
619 return rc;
Radek Krejcie7b95092019-05-15 11:03:07 +0200620}
Radek Krejci084289f2019-07-09 17:35:30 +0200621
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100622LIBYANG_API_DEF LY_ERR
Radek Krejcif16e2542021-02-17 15:39:23 +0100623lyd_parse_op(const struct ly_ctx *ctx, struct lyd_node *parent, struct ly_in *in, LYD_FORMAT format,
624 enum lyd_type data_type, struct lyd_node **tree, struct lyd_node **op)
625{
626 LY_CHECK_ARG_RET(ctx, ctx || parent, in, data_type, parent || tree || op, LY_EINVAL);
627
628 return lyd_parse_op_(ctx, NULL, parent, in, format, data_type, tree, op);
629}
630
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100631LIBYANG_API_DEF LY_ERR
Radek Krejcif16e2542021-02-17 15:39:23 +0100632lyd_parse_ext_op(const struct lysc_ext_instance *ext, struct lyd_node *parent, struct ly_in *in, LYD_FORMAT format,
633 enum lyd_type data_type, struct lyd_node **tree, struct lyd_node **op)
634{
635 const struct ly_ctx *ctx = ext ? ext->module->ctx : NULL;
636
637 LY_CHECK_ARG_RET(ctx, ext, in, data_type, parent || tree || op, LY_EINVAL);
638
639 return lyd_parse_op_(ctx, ext, parent, in, format, data_type, tree, op);
640}
641
Michal Vasko90932a92020-02-12 14:33:03 +0100642LY_ERR
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200643lyd_create_term(const struct lysc_node *schema, const char *value, size_t value_len, ly_bool *dynamic,
Radek Krejci8df109d2021-04-23 12:19:08 +0200644 LY_VALUE_FORMAT format, void *prefix_data, uint32_t hints, ly_bool *incomplete, struct lyd_node **node)
Michal Vasko90932a92020-02-12 14:33:03 +0100645{
646 LY_ERR ret;
647 struct lyd_node_term *term;
648
Michal Vasko9b368d32020-02-14 13:53:31 +0100649 assert(schema->nodetype & LYD_NODE_TERM);
650
Michal Vasko90932a92020-02-12 14:33:03 +0100651 term = calloc(1, sizeof *term);
652 LY_CHECK_ERR_RET(!term, LOGMEM(schema->module->ctx), LY_EMEM);
653
654 term->schema = schema;
Michal Vasko9e685082021-01-29 14:49:09 +0100655 term->prev = &term->node;
Michal Vasko9b368d32020-02-14 13:53:31 +0100656 term->flags = LYD_NEW;
Michal Vasko90932a92020-02-12 14:33:03 +0100657
Radek Krejciddace2c2021-01-08 11:30:56 +0100658 LOG_LOCSET(schema, NULL, NULL, NULL);
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200659 ret = lyd_value_store(schema->module->ctx, &term->value, ((struct lysc_node_leaf *)term->schema)->type, value,
Radek Krejci2efc45b2020-12-22 16:25:44 +0100660 value_len, dynamic, format, prefix_data, hints, schema, incomplete);
Radek Krejciddace2c2021-01-08 11:30:56 +0100661 LOG_LOCBACK(1, 0, 0, 0);
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200662 LY_CHECK_ERR_RET(ret, free(term), ret);
Michal Vasko9e685082021-01-29 14:49:09 +0100663 lyd_hash(&term->node);
Michal Vasko9b368d32020-02-14 13:53:31 +0100664
Michal Vasko9e685082021-01-29 14:49:09 +0100665 *node = &term->node;
Michal Vasko9b368d32020-02-14 13:53:31 +0100666 return ret;
667}
668
669LY_ERR
670lyd_create_term2(const struct lysc_node *schema, const struct lyd_value *val, struct lyd_node **node)
671{
672 LY_ERR ret;
673 struct lyd_node_term *term;
674 struct lysc_type *type;
675
676 assert(schema->nodetype & LYD_NODE_TERM);
Radek Krejci224d4b42021-04-23 13:54:59 +0200677 assert(val && val->realtype);
Michal Vasko9b368d32020-02-14 13:53:31 +0100678
679 term = calloc(1, sizeof *term);
680 LY_CHECK_ERR_RET(!term, LOGMEM(schema->module->ctx), LY_EMEM);
681
682 term->schema = schema;
Michal Vasko9e685082021-01-29 14:49:09 +0100683 term->prev = &term->node;
Michal Vasko9b368d32020-02-14 13:53:31 +0100684 term->flags = LYD_NEW;
685
686 type = ((struct lysc_node_leaf *)schema)->type;
687 ret = type->plugin->duplicate(schema->module->ctx, val, &term->value);
688 if (ret) {
689 LOGERR(schema->module->ctx, ret, "Value duplication failed.");
690 free(term);
691 return ret;
692 }
Michal Vasko9e685082021-01-29 14:49:09 +0100693 lyd_hash(&term->node);
Michal Vasko90932a92020-02-12 14:33:03 +0100694
Michal Vasko9e685082021-01-29 14:49:09 +0100695 *node = &term->node;
Michal Vasko90932a92020-02-12 14:33:03 +0100696 return ret;
697}
698
699LY_ERR
700lyd_create_inner(const struct lysc_node *schema, struct lyd_node **node)
701{
702 struct lyd_node_inner *in;
703
Michal Vasko9b368d32020-02-14 13:53:31 +0100704 assert(schema->nodetype & LYD_NODE_INNER);
705
Michal Vasko90932a92020-02-12 14:33:03 +0100706 in = calloc(1, sizeof *in);
707 LY_CHECK_ERR_RET(!in, LOGMEM(schema->module->ctx), LY_EMEM);
708
709 in->schema = schema;
Michal Vasko9e685082021-01-29 14:49:09 +0100710 in->prev = &in->node;
Michal Vasko9b368d32020-02-14 13:53:31 +0100711 in->flags = LYD_NEW;
Michal Vasko3383be72020-11-03 17:15:31 +0100712 if ((schema->nodetype == LYS_CONTAINER) && !(schema->flags & LYS_PRESENCE)) {
713 in->flags |= LYD_DEFAULT;
714 }
Michal Vasko90932a92020-02-12 14:33:03 +0100715
Michal Vasko9b368d32020-02-14 13:53:31 +0100716 /* do not hash list with keys, we need them for the hash */
717 if ((schema->nodetype != LYS_LIST) || (schema->flags & LYS_KEYLESS)) {
Michal Vasko9e685082021-01-29 14:49:09 +0100718 lyd_hash(&in->node);
Michal Vasko9b368d32020-02-14 13:53:31 +0100719 }
Michal Vasko90932a92020-02-12 14:33:03 +0100720
Michal Vasko9e685082021-01-29 14:49:09 +0100721 *node = &in->node;
Michal Vasko90932a92020-02-12 14:33:03 +0100722 return LY_SUCCESS;
723}
724
Michal Vasko90932a92020-02-12 14:33:03 +0100725LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +0200726lyd_create_list(const struct lysc_node *schema, const struct ly_path_predicate *predicates, struct lyd_node **node)
Michal Vasko90932a92020-02-12 14:33:03 +0100727{
728 LY_ERR ret = LY_SUCCESS;
Michal Vasko90932a92020-02-12 14:33:03 +0100729 struct lyd_node *list = NULL, *key;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200730 LY_ARRAY_COUNT_TYPE u;
Michal Vasko90932a92020-02-12 14:33:03 +0100731
Michal Vasko004d3152020-06-11 19:59:22 +0200732 assert((schema->nodetype == LYS_LIST) && !(schema->flags & LYS_KEYLESS));
Michal Vasko90932a92020-02-12 14:33:03 +0100733
734 /* create list */
735 LY_CHECK_GOTO(ret = lyd_create_inner(schema, &list), cleanup);
736
Radek Krejciddace2c2021-01-08 11:30:56 +0100737 LOG_LOCSET(NULL, list, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100738
Michal Vasko90932a92020-02-12 14:33:03 +0100739 /* create and insert all the keys */
Michal Vasko004d3152020-06-11 19:59:22 +0200740 LY_ARRAY_FOR(predicates, u) {
741 LY_CHECK_GOTO(ret = lyd_create_term2(predicates[u].key, &predicates[u].value, &key), cleanup);
Michal Vasko6ee6f432021-07-16 09:49:14 +0200742 lyd_insert_node(list, NULL, key, 0);
Michal Vasko90932a92020-02-12 14:33:03 +0100743 }
744
Michal Vasko9b368d32020-02-14 13:53:31 +0100745 /* hash having all the keys */
746 lyd_hash(list);
747
Michal Vasko90932a92020-02-12 14:33:03 +0100748 /* success */
749 *node = list;
750 list = NULL;
751
752cleanup:
Radek Krejciddace2c2021-01-08 11:30:56 +0100753 LOG_LOCBACK(0, 1, 0, 0);
Michal Vasko90932a92020-02-12 14:33:03 +0100754 lyd_free_tree(list);
Michal Vasko004d3152020-06-11 19:59:22 +0200755 return ret;
756}
757
758static LY_ERR
759lyd_create_list2(const struct lysc_node *schema, const char *keys, size_t keys_len, struct lyd_node **node)
760{
761 LY_ERR ret = LY_SUCCESS;
762 struct lyxp_expr *expr = NULL;
763 uint16_t exp_idx = 0;
764 enum ly_path_pred_type pred_type = 0;
765 struct ly_path_predicate *predicates = NULL;
766
Radek Krejciddace2c2021-01-08 11:30:56 +0100767 LOG_LOCSET(schema, NULL, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100768
Michal Vasko004d3152020-06-11 19:59:22 +0200769 /* parse keys */
Michal Vasko6b26e742020-07-17 15:02:10 +0200770 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 +0200771 LY_PATH_PRED_KEYS, &expr), cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +0200772
773 /* compile them */
Radek Krejci8df109d2021-04-23 12:19:08 +0200774 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 +0200775 NULL, &predicates, &pred_type), cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +0200776
777 /* create the list node */
778 LY_CHECK_GOTO(ret = lyd_create_list(schema, predicates, node), cleanup);
779
780cleanup:
Radek Krejciddace2c2021-01-08 11:30:56 +0100781 LOG_LOCBACK(1, 0, 0, 0);
Michal Vasko004d3152020-06-11 19:59:22 +0200782 lyxp_expr_free(schema->module->ctx, expr);
Michal Vaskof7e16e22020-10-21 09:24:39 +0200783 ly_path_predicates_free(schema->module->ctx, pred_type, predicates);
Michal Vasko90932a92020-02-12 14:33:03 +0100784 return ret;
785}
786
787LY_ERR
Michal Vasko366a4a12020-12-04 16:23:57 +0100788lyd_create_any(const struct lysc_node *schema, const void *value, LYD_ANYDATA_VALUETYPE value_type, ly_bool use_value,
789 struct lyd_node **node)
Michal Vasko90932a92020-02-12 14:33:03 +0100790{
Michal Vasko366a4a12020-12-04 16:23:57 +0100791 LY_ERR ret;
Michal Vasko90932a92020-02-12 14:33:03 +0100792 struct lyd_node_any *any;
Michal Vasko366a4a12020-12-04 16:23:57 +0100793 union lyd_any_value any_val;
Michal Vasko90932a92020-02-12 14:33:03 +0100794
Michal Vasko9b368d32020-02-14 13:53:31 +0100795 assert(schema->nodetype & LYD_NODE_ANY);
796
Michal Vasko90932a92020-02-12 14:33:03 +0100797 any = calloc(1, sizeof *any);
798 LY_CHECK_ERR_RET(!any, LOGMEM(schema->module->ctx), LY_EMEM);
799
800 any->schema = schema;
Michal Vasko9e685082021-01-29 14:49:09 +0100801 any->prev = &any->node;
Michal Vasko9b368d32020-02-14 13:53:31 +0100802 any->flags = LYD_NEW;
Michal Vasko90932a92020-02-12 14:33:03 +0100803
Radek Krejci1798aae2020-07-14 13:26:06 +0200804 /* TODO: convert XML/JSON strings into a opaq data tree */
Michal Vasko366a4a12020-12-04 16:23:57 +0100805
806 if (use_value) {
807 any->value.str = value;
808 any->value_type = value_type;
809 } else {
810 any_val.str = value;
Michal Vasko9e685082021-01-29 14:49:09 +0100811 ret = lyd_any_copy_value(&any->node, &any_val, value_type);
Michal Vasko366a4a12020-12-04 16:23:57 +0100812 LY_CHECK_ERR_RET(ret, free(any), ret);
813 }
Michal Vasko9e685082021-01-29 14:49:09 +0100814 lyd_hash(&any->node);
Michal Vasko90932a92020-02-12 14:33:03 +0100815
Michal Vasko9e685082021-01-29 14:49:09 +0100816 *node = &any->node;
Michal Vasko90932a92020-02-12 14:33:03 +0100817 return LY_SUCCESS;
818}
819
Michal Vasko52927e22020-03-16 17:26:14 +0100820LY_ERR
Michal Vasko501af032020-11-11 20:27:44 +0100821lyd_create_opaq(const struct ly_ctx *ctx, const char *name, size_t name_len, const char *prefix, size_t pref_len,
822 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 +0200823 LY_VALUE_FORMAT format, void *val_prefix_data, uint32_t hints, struct lyd_node **node)
Michal Vasko52927e22020-03-16 17:26:14 +0100824{
Radek Krejci011e4aa2020-09-04 15:22:31 +0200825 LY_ERR ret = LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +0100826 struct lyd_node_opaq *opaq;
827
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200828 assert(ctx && name && name_len && format);
Michal Vasko52927e22020-03-16 17:26:14 +0100829
Michal Vasko4cd0a602021-05-31 11:11:58 +0200830 if (!value_len && (!dynamic || !*dynamic)) {
Michal Vasko52927e22020-03-16 17:26:14 +0100831 value = "";
832 }
833
834 opaq = calloc(1, sizeof *opaq);
Michal Vasko501af032020-11-11 20:27:44 +0100835 LY_CHECK_ERR_GOTO(!opaq, LOGMEM(ctx); ret = LY_EMEM, finish);
Michal Vasko52927e22020-03-16 17:26:14 +0100836
Michal Vasko9e685082021-01-29 14:49:09 +0100837 opaq->prev = &opaq->node;
Michal Vaskoad92b672020-11-12 13:11:31 +0100838 LY_CHECK_GOTO(ret = lydict_insert(ctx, name, name_len, &opaq->name.name), finish);
Radek Krejci011e4aa2020-09-04 15:22:31 +0200839
Michal Vasko52927e22020-03-16 17:26:14 +0100840 if (pref_len) {
Michal Vaskoad92b672020-11-12 13:11:31 +0100841 LY_CHECK_GOTO(ret = lydict_insert(ctx, prefix, pref_len, &opaq->name.prefix), finish);
Michal Vasko52927e22020-03-16 17:26:14 +0100842 }
Radek Krejci1798aae2020-07-14 13:26:06 +0200843 if (module_key_len) {
Michal Vaskoad92b672020-11-12 13:11:31 +0100844 LY_CHECK_GOTO(ret = lydict_insert(ctx, module_key, module_key_len, &opaq->name.module_ns), finish);
Radek Krejci1798aae2020-07-14 13:26:06 +0200845 }
Michal Vasko52927e22020-03-16 17:26:14 +0100846 if (dynamic && *dynamic) {
Radek Krejci011e4aa2020-09-04 15:22:31 +0200847 LY_CHECK_GOTO(ret = lydict_insert_zc(ctx, (char *)value, &opaq->value), finish);
Michal Vasko52927e22020-03-16 17:26:14 +0100848 *dynamic = 0;
849 } else {
Radek Krejci011e4aa2020-09-04 15:22:31 +0200850 LY_CHECK_GOTO(ret = lydict_insert(ctx, value, value_len, &opaq->value), finish);
Michal Vasko52927e22020-03-16 17:26:14 +0100851 }
Michal Vasko501af032020-11-11 20:27:44 +0100852
853 opaq->format = format;
854 opaq->val_prefix_data = val_prefix_data;
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200855 opaq->hints = hints;
Michal Vasko52927e22020-03-16 17:26:14 +0100856 opaq->ctx = ctx;
857
Radek Krejci011e4aa2020-09-04 15:22:31 +0200858finish:
859 if (ret) {
Michal Vasko9e685082021-01-29 14:49:09 +0100860 lyd_free_tree(&opaq->node);
Michal Vasko501af032020-11-11 20:27:44 +0100861 ly_free_prefix_data(format, val_prefix_data);
Radek Krejci011e4aa2020-09-04 15:22:31 +0200862 } else {
Michal Vasko9e685082021-01-29 14:49:09 +0100863 *node = &opaq->node;
Radek Krejci011e4aa2020-09-04 15:22:31 +0200864 }
865 return ret;
Michal Vasko52927e22020-03-16 17:26:14 +0100866}
867
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100868LIBYANG_API_DEF LY_ERR
Michal Vasko65243892020-12-04 16:26:21 +0100869lyd_new_inner(struct lyd_node *parent, const struct lys_module *module, const char *name, ly_bool output,
870 struct lyd_node **node)
Michal Vasko013a8182020-03-03 10:46:53 +0100871{
872 struct lyd_node *ret = NULL;
873 const struct lysc_node *schema;
Michal Vasko892f5bf2021-11-24 10:41:05 +0100874 const struct ly_ctx *ctx = parent ? LYD_CTX(parent) : (module ? module->ctx : NULL);
Michal Vasko013a8182020-03-03 10:46:53 +0100875
Michal Vasko6027eb92020-07-15 16:37:30 +0200876 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +0100877 LY_CHECK_CTX_EQUAL_RET(parent ? LYD_CTX(parent) : NULL, module ? module->ctx : NULL, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100878
Michal Vaskof03ed032020-03-04 13:31:44 +0100879 if (!module) {
880 module = parent->schema->module;
881 }
882
Michal Vasko3a41dff2020-07-15 14:30:28 +0200883 schema = lys_find_child(parent ? parent->schema : NULL, module, name, 0,
Radek Krejci41ac9942020-11-02 14:47:56 +0100884 LYS_CONTAINER | LYS_NOTIF | LYS_RPC | LYS_ACTION, output ? LYS_GETNEXT_OUTPUT : 0);
Radek Krejcidd2a7662021-03-12 11:26:34 +0100885 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 +0100886
Michal Vasko3a41dff2020-07-15 14:30:28 +0200887 LY_CHECK_RET(lyd_create_inner(schema, &ret));
888 if (parent) {
Michal Vasko6ee6f432021-07-16 09:49:14 +0200889 lyd_insert_node(parent, NULL, ret, 0);
Michal Vasko013a8182020-03-03 10:46:53 +0100890 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200891
892 if (node) {
893 *node = ret;
894 }
895 return LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +0100896}
897
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100898LIBYANG_API_DEF LY_ERR
Radek Krejcidd2a7662021-03-12 11:26:34 +0100899lyd_new_ext_inner(const struct lysc_ext_instance *ext, const char *name, struct lyd_node **node)
900{
901 struct lyd_node *ret = NULL;
902 const struct lysc_node *schema;
903 struct ly_ctx *ctx = ext ? ext->module->ctx : NULL;
904
905 LY_CHECK_ARG_RET(ctx, ext, node, name, LY_EINVAL);
906
907 schema = lysc_ext_find_node(ext, NULL, name, 0, LYS_CONTAINER | LYS_NOTIF | LYS_RPC | LYS_ACTION, 0);
908 if (!schema) {
909 if (ext->argument) {
910 LOGERR(ctx, LY_EINVAL, "Inner node (not a list) \"%s\" not found in instance \"%s\" of extension %s.",
911 name, ext->argument, ext->def->name);
912 } else {
913 LOGERR(ctx, LY_EINVAL, "Inner node (not a list) \"%s\" not found in instance of extension %s.",
914 name, ext->def->name);
915 }
916 return LY_ENOTFOUND;
917 }
918 LY_CHECK_RET(lyd_create_inner(schema, &ret));
919
920 *node = ret;
921
922 return LY_SUCCESS;
923}
924
Michal Vasko208e6d62021-06-28 11:23:50 +0200925/**
926 * @brief Create a new list node in the data tree.
927 *
928 * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element.
929 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
930 * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST.
931 * @param[in] format Format of key values.
932 * @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
933 * taken into consideration. Otherwise, the output's data node is going to be created.
934 * @param[out] node Optional created node.
935 * @param[in] ap Ordered key values of the new list instance, all must be set. For ::LY_VALUE_LYB, every value must
936 * be followed by the value length.
937 * @return LY_ERR value.
938 */
939static LY_ERR
940_lyd_new_list(struct lyd_node *parent, const struct lys_module *module, const char *name, LY_VALUE_FORMAT format,
941 ly_bool output, struct lyd_node **node, va_list ap)
Michal Vasko013a8182020-03-03 10:46:53 +0100942{
943 struct lyd_node *ret = NULL, *key;
944 const struct lysc_node *schema, *key_s;
Michal Vasko892f5bf2021-11-24 10:41:05 +0100945 const struct ly_ctx *ctx = parent ? LYD_CTX(parent) : (module ? module->ctx : NULL);
Michal Vasko208e6d62021-06-28 11:23:50 +0200946 const void *key_val;
947 uint32_t key_len;
Michal Vasko013a8182020-03-03 10:46:53 +0100948 LY_ERR rc = LY_SUCCESS;
949
Michal Vasko6027eb92020-07-15 16:37:30 +0200950 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +0100951 LY_CHECK_CTX_EQUAL_RET(parent ? LYD_CTX(parent) : NULL, module ? module->ctx : NULL, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +0100952
Michal Vaskof03ed032020-03-04 13:31:44 +0100953 if (!module) {
954 module = parent->schema->module;
955 }
956
Radek Krejci41ac9942020-11-02 14:47:56 +0100957 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 +0200958 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "List node \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +0100959
960 /* create list inner node */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200961 LY_CHECK_RET(lyd_create_inner(schema, &ret));
Michal Vasko013a8182020-03-03 10:46:53 +0100962
Michal Vasko013a8182020-03-03 10:46:53 +0100963 /* create and insert all the keys */
Michal Vasko544e58a2021-01-28 14:33:41 +0100964 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 +0200965 if (format == LY_VALUE_LYB) {
966 key_val = va_arg(ap, const void *);
967 key_len = va_arg(ap, uint32_t);
968 } else {
969 key_val = va_arg(ap, const char *);
970 key_len = key_val ? strlen((char *)key_val) : 0;
971 }
Michal Vasko013a8182020-03-03 10:46:53 +0100972
Michal Vasko208e6d62021-06-28 11:23:50 +0200973 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 +0200974 LY_CHECK_GOTO(rc, cleanup);
Michal Vasko6ee6f432021-07-16 09:49:14 +0200975 lyd_insert_node(ret, NULL, key, 1);
Michal Vasko013a8182020-03-03 10:46:53 +0100976 }
977
Michal Vasko013a8182020-03-03 10:46:53 +0100978 if (parent) {
Michal Vasko6ee6f432021-07-16 09:49:14 +0200979 lyd_insert_node(parent, NULL, ret, 0);
Michal Vasko013a8182020-03-03 10:46:53 +0100980 }
981
982cleanup:
983 if (rc) {
984 lyd_free_tree(ret);
985 ret = NULL;
Michal Vasko3a41dff2020-07-15 14:30:28 +0200986 } else if (node) {
987 *node = ret;
Michal Vasko013a8182020-03-03 10:46:53 +0100988 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200989 return rc;
Michal Vasko013a8182020-03-03 10:46:53 +0100990}
991
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100992LIBYANG_API_DEF LY_ERR
Michal Vasko208e6d62021-06-28 11:23:50 +0200993lyd_new_list(struct lyd_node *parent, const struct lys_module *module, const char *name, ly_bool output,
994 struct lyd_node **node, ...)
995{
996 LY_ERR rc;
997 va_list ap;
998
999 va_start(ap, node);
1000
1001 rc = _lyd_new_list(parent, module, name, LY_VALUE_JSON, output, node, ap);
1002
1003 va_end(ap);
1004 return rc;
1005}
1006
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001007LIBYANG_API_DEF LY_ERR
Michal Vasko208e6d62021-06-28 11:23:50 +02001008lyd_new_list_bin(struct lyd_node *parent, const struct lys_module *module, const char *name, ly_bool output,
1009 struct lyd_node **node, ...)
1010{
1011 LY_ERR rc;
1012 va_list ap;
1013
1014 va_start(ap, node);
1015
1016 rc = _lyd_new_list(parent, module, name, LY_VALUE_LYB, output, node, ap);
1017
1018 va_end(ap);
1019 return rc;
1020}
1021
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001022LIBYANG_API_DEF LY_ERR
Michal Vasko208e6d62021-06-28 11:23:50 +02001023lyd_new_list_canon(struct lyd_node *parent, const struct lys_module *module, const char *name, ly_bool output,
1024 struct lyd_node **node, ...)
1025{
1026 LY_ERR rc;
1027 va_list ap;
1028
1029 va_start(ap, node);
1030
1031 rc = _lyd_new_list(parent, module, name, LY_VALUE_CANON, output, node, ap);
1032
1033 va_end(ap);
1034 return rc;
1035}
1036
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001037LIBYANG_API_DEF LY_ERR
Radek Krejci8247bae2021-03-12 11:47:02 +01001038lyd_new_ext_list(const struct lysc_ext_instance *ext, const char *name, struct lyd_node **node, ...)
1039{
1040 struct lyd_node *ret = NULL, *key;
1041 const struct lysc_node *schema, *key_s;
1042 struct ly_ctx *ctx = ext ? ext->module->ctx : NULL;
1043 va_list ap;
1044 const char *key_val;
1045 LY_ERR rc = LY_SUCCESS;
1046
1047 LY_CHECK_ARG_RET(ctx, ext, node, name, LY_EINVAL);
1048
1049 schema = lysc_ext_find_node(ext, NULL, name, 0, LYS_LIST, 0);
1050 if (!schema) {
1051 if (ext->argument) {
1052 LOGERR(ctx, LY_EINVAL, "List node \"%s\" not found in instance \"%s\" of extension %s.",
1053 name, ext->argument, ext->def->name);
1054 } else {
1055 LOGERR(ctx, LY_EINVAL, "List node \"%s\" not found in instance of extension %s.", name, ext->def->name);
1056 }
1057 return LY_ENOTFOUND;
1058 }
1059 /* create list inner node */
1060 LY_CHECK_RET(lyd_create_inner(schema, &ret));
1061
1062 va_start(ap, node);
1063
1064 /* create and insert all the keys */
1065 for (key_s = lysc_node_child(schema); key_s && (key_s->flags & LYS_KEY); key_s = key_s->next) {
1066 key_val = va_arg(ap, const char *);
1067
Radek Krejci8df109d2021-04-23 12:19:08 +02001068 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 +01001069 NULL, &key);
1070 LY_CHECK_GOTO(rc, cleanup);
Michal Vasko6ee6f432021-07-16 09:49:14 +02001071 lyd_insert_node(ret, NULL, key, 1);
Radek Krejci8247bae2021-03-12 11:47:02 +01001072 }
1073
1074cleanup:
1075 va_end(ap);
1076 if (rc) {
1077 lyd_free_tree(ret);
1078 ret = NULL;
Radek Krejci8247bae2021-03-12 11:47:02 +01001079 }
Radek Krejci8919fbd2021-03-15 09:35:25 +01001080 *node = ret;
Radek Krejci8247bae2021-03-12 11:47:02 +01001081 return rc;
1082}
1083
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001084LIBYANG_API_DEF LY_ERR
Michal Vasko3a41dff2020-07-15 14:30:28 +02001085lyd_new_list2(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *keys,
Radek Krejci41ac9942020-11-02 14:47:56 +01001086 ly_bool output, struct lyd_node **node)
Michal Vasko013a8182020-03-03 10:46:53 +01001087{
1088 struct lyd_node *ret = NULL;
1089 const struct lysc_node *schema;
Michal Vasko892f5bf2021-11-24 10:41:05 +01001090 const struct ly_ctx *ctx = parent ? LYD_CTX(parent) : (module ? module->ctx : NULL);
Michal Vasko013a8182020-03-03 10:46:53 +01001091
Michal Vasko6027eb92020-07-15 16:37:30 +02001092 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +01001093 LY_CHECK_CTX_EQUAL_RET(parent ? LYD_CTX(parent) : NULL, module ? module->ctx : NULL, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +01001094
Michal Vaskof03ed032020-03-04 13:31:44 +01001095 if (!module) {
1096 module = parent->schema->module;
1097 }
Michal Vasko004d3152020-06-11 19:59:22 +02001098 if (!keys) {
1099 keys = "";
1100 }
Michal Vaskof03ed032020-03-04 13:31:44 +01001101
Michal Vasko004d3152020-06-11 19:59:22 +02001102 /* find schema node */
Radek Krejci41ac9942020-11-02 14:47:56 +01001103 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 +02001104 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "List node \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +01001105
Michal Vasko004d3152020-06-11 19:59:22 +02001106 if ((schema->flags & LYS_KEYLESS) && !keys[0]) {
1107 /* key-less list */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001108 LY_CHECK_RET(lyd_create_inner(schema, &ret));
Michal Vasko004d3152020-06-11 19:59:22 +02001109 } else {
1110 /* create the list node */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001111 LY_CHECK_RET(lyd_create_list2(schema, keys, strlen(keys), &ret));
Michal Vasko004d3152020-06-11 19:59:22 +02001112 }
Michal Vasko004d3152020-06-11 19:59:22 +02001113 if (parent) {
Michal Vasko6ee6f432021-07-16 09:49:14 +02001114 lyd_insert_node(parent, NULL, ret, 0);
Michal Vasko013a8182020-03-03 10:46:53 +01001115 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02001116
1117 if (node) {
1118 *node = ret;
1119 }
1120 return LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +01001121}
1122
Radek Krejci09c77442021-04-26 11:10:34 +02001123/**
1124 * @brief Create a new term node in the data tree.
1125 *
1126 * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element.
1127 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
1128 * @param[in] name Schema node name of the new data node. The node can be ::LYS_LEAF or ::LYS_LEAFLIST.
1129 * @param[in] value Value of the node being created.
1130 * @param[in] value_len Length of @p value.
1131 * @param[in] format Format of @p value.
1132 * @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
1133 * taken into consideration. Otherwise, the output's data node is going to be created.
1134 * @param[out] node Optional created node.
1135 * @return LY_ERR value.
1136 */
1137static LY_ERR
1138_lyd_new_term(struct lyd_node *parent, const struct lys_module *module, const char *name, const void *value,
1139 size_t value_len, LY_VALUE_FORMAT format, ly_bool output, struct lyd_node **node)
Michal Vasko013a8182020-03-03 10:46:53 +01001140{
Michal Vaskocbff3e92020-05-27 12:56:41 +02001141 LY_ERR rc;
Michal Vasko013a8182020-03-03 10:46:53 +01001142 struct lyd_node *ret = NULL;
1143 const struct lysc_node *schema;
Radek Krejci09c77442021-04-26 11:10:34 +02001144 const struct ly_ctx *ctx = parent ? LYD_CTX(parent) : (module ? module->ctx : NULL);
Michal Vasko013a8182020-03-03 10:46:53 +01001145
Michal Vasko6027eb92020-07-15 16:37:30 +02001146 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +01001147 LY_CHECK_CTX_EQUAL_RET(parent ? LYD_CTX(parent) : NULL, module ? module->ctx : NULL, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +01001148
Michal Vaskof03ed032020-03-04 13:31:44 +01001149 if (!module) {
1150 module = parent->schema->module;
1151 }
1152
Radek Krejci41ac9942020-11-02 14:47:56 +01001153 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 +02001154 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "Term node \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +01001155
Radek Krejci09c77442021-04-26 11:10:34 +02001156 rc = lyd_create_term(schema, value, value_len, NULL, format, NULL, LYD_HINT_DATA, NULL, &ret);
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001157 LY_CHECK_RET(rc);
Michal Vaskocbff3e92020-05-27 12:56:41 +02001158 if (parent) {
Michal Vasko6ee6f432021-07-16 09:49:14 +02001159 lyd_insert_node(parent, NULL, ret, 0);
Michal Vasko013a8182020-03-03 10:46:53 +01001160 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02001161
1162 if (node) {
1163 *node = ret;
1164 }
1165 return LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +01001166}
1167
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001168LIBYANG_API_DEF LY_ERR
Radek Krejci09c77442021-04-26 11:10:34 +02001169lyd_new_term(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *val_str,
1170 ly_bool output, struct lyd_node **node)
1171{
1172 return _lyd_new_term(parent, module, name, val_str, val_str ? strlen(val_str) : 0, LY_VALUE_JSON, output, node);
1173}
1174
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001175LIBYANG_API_DEF LY_ERR
Radek Krejci09c77442021-04-26 11:10:34 +02001176lyd_new_term_bin(struct lyd_node *parent, const struct lys_module *module, const char *name, const void *value,
1177 size_t value_len, ly_bool output, struct lyd_node **node)
1178{
1179 return _lyd_new_term(parent, module, name, value, value_len, LY_VALUE_LYB, output, node);
1180}
1181
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001182LIBYANG_API_DEF LY_ERR
Radek Krejci09c77442021-04-26 11:10:34 +02001183lyd_new_term_canon(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *val_str,
1184 ly_bool output, struct lyd_node **node)
1185{
1186 return _lyd_new_term(parent, module, name, val_str, val_str ? strlen(val_str) : 0, LY_VALUE_CANON, output, node);
1187}
1188
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001189LIBYANG_API_DEF LY_ERR
Radek Krejci8a5afc22021-03-12 11:10:47 +01001190lyd_new_ext_term(const struct lysc_ext_instance *ext, const char *name, const char *val_str, struct lyd_node **node)
1191{
1192 LY_ERR rc;
1193 struct lyd_node *ret = NULL;
1194 const struct lysc_node *schema;
1195 struct ly_ctx *ctx = ext ? ext->module->ctx : NULL;
1196
1197 LY_CHECK_ARG_RET(ctx, ext, node, name, LY_EINVAL);
1198
1199 schema = lysc_ext_find_node(ext, NULL, name, 0, LYD_NODE_TERM, 0);
1200 if (!schema) {
1201 if (ext->argument) {
1202 LOGERR(ctx, LY_EINVAL, "Term node \"%s\" not found in instance \"%s\" of extension %s.",
1203 name, ext->argument, ext->def->name);
1204 } else {
1205 LOGERR(ctx, LY_EINVAL, "Term node \"%s\" not found in instance of extension %s.", name, ext->def->name);
1206 }
1207 return LY_ENOTFOUND;
1208 }
Radek Krejci8df109d2021-04-23 12:19:08 +02001209 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 +01001210 LY_CHECK_RET(rc);
1211
1212 *node = ret;
1213
1214 return LY_SUCCESS;
1215}
1216
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001217LIBYANG_API_DEF LY_ERR
Michal Vasko2a4ab2b2021-03-04 15:52:40 +01001218lyd_new_any(struct lyd_node *parent, const struct lys_module *module, const char *name, const void *value,
1219 ly_bool use_value, LYD_ANYDATA_VALUETYPE value_type, ly_bool output, struct lyd_node **node)
Michal Vasko013a8182020-03-03 10:46:53 +01001220{
1221 struct lyd_node *ret = NULL;
1222 const struct lysc_node *schema;
Michal Vasko892f5bf2021-11-24 10:41:05 +01001223 const struct ly_ctx *ctx = parent ? LYD_CTX(parent) : (module ? module->ctx : NULL);
Michal Vasko013a8182020-03-03 10:46:53 +01001224
Michal Vasko6027eb92020-07-15 16:37:30 +02001225 LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +01001226 LY_CHECK_CTX_EQUAL_RET(parent ? LYD_CTX(parent) : NULL, module ? module->ctx : NULL, LY_EINVAL);
Michal Vasko013a8182020-03-03 10:46:53 +01001227
Michal Vaskof03ed032020-03-04 13:31:44 +01001228 if (!module) {
1229 module = parent->schema->module;
1230 }
1231
Radek Krejci41ac9942020-11-02 14:47:56 +01001232 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 +02001233 LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "Any node \"%s\" not found.", name), LY_ENOTFOUND);
Michal Vasko013a8182020-03-03 10:46:53 +01001234
Michal Vasko2a4ab2b2021-03-04 15:52:40 +01001235 LY_CHECK_RET(lyd_create_any(schema, value, value_type, use_value, &ret));
Michal Vasko3a41dff2020-07-15 14:30:28 +02001236 if (parent) {
Michal Vasko6ee6f432021-07-16 09:49:14 +02001237 lyd_insert_node(parent, NULL, ret, 0);
Michal Vasko013a8182020-03-03 10:46:53 +01001238 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02001239
1240 if (node) {
1241 *node = ret;
1242 }
1243 return LY_SUCCESS;
Michal Vasko013a8182020-03-03 10:46:53 +01001244}
1245
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001246LIBYANG_API_DEF LY_ERR
Radek Krejci0b963da2021-03-12 13:23:44 +01001247lyd_new_ext_any(const struct lysc_ext_instance *ext, const char *name, const void *value, ly_bool use_value,
1248 LYD_ANYDATA_VALUETYPE value_type, struct lyd_node **node)
1249{
1250 struct lyd_node *ret = NULL;
1251 const struct lysc_node *schema;
1252 struct ly_ctx *ctx = ext ? ext->module->ctx : NULL;
1253
1254 LY_CHECK_ARG_RET(ctx, ext, node, name, LY_EINVAL);
1255
1256 schema = lysc_ext_find_node(ext, NULL, name, 0, LYD_NODE_ANY, 0);
1257 if (!schema) {
1258 if (ext->argument) {
1259 LOGERR(ctx, LY_EINVAL, "Any node \"%s\" not found in instance \"%s\" of extension %s.",
1260 name, ext->argument, ext->def->name);
1261 } else {
1262 LOGERR(ctx, LY_EINVAL, "Any node \"%s\" not found in instance of extension %s.", name, ext->def->name);
1263 }
1264 return LY_ENOTFOUND;
1265 }
1266 LY_CHECK_RET(lyd_create_any(schema, value, value_type, use_value, &ret));
1267
1268 *node = ret;
1269
1270 return LY_SUCCESS;
1271}
1272
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001273LIBYANG_API_DEF LY_ERR
Michal Vasko871a0252020-11-11 18:35:24 +01001274lyd_new_meta(const struct ly_ctx *ctx, struct lyd_node *parent, const struct lys_module *module, const char *name,
1275 const char *val_str, ly_bool clear_dflt, struct lyd_meta **meta)
Michal Vaskod86997b2020-05-26 15:19:54 +02001276{
Michal Vaskod86997b2020-05-26 15:19:54 +02001277 const char *prefix, *tmp;
Michal Vaskod86997b2020-05-26 15:19:54 +02001278 size_t pref_len, name_len;
1279
Michal Vasko2b5344c2021-02-26 10:12:05 +01001280 LY_CHECK_ARG_RET(ctx, ctx || parent, name, module || strchr(name, ':'), parent || meta, LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +01001281 LY_CHECK_CTX_EQUAL_RET(ctx, parent ? LYD_CTX(parent) : NULL, module ? module->ctx : NULL, LY_EINVAL);
Michal Vasko2b5344c2021-02-26 10:12:05 +01001282 if (!ctx) {
1283 ctx = LYD_CTX(parent);
1284 }
Michal Vasko00cbf532020-06-15 13:58:47 +02001285
Michal Vasko871a0252020-11-11 18:35:24 +01001286 if (parent && !parent->schema) {
Michal Vasko33b4fab2021-03-04 15:56:12 +01001287 LOGERR(ctx, LY_EINVAL, "Cannot add metadata \"%s\" to an opaque node \"%s\".", name, LYD_NAME(parent));
Michal Vasko871a0252020-11-11 18:35:24 +01001288 return LY_EINVAL;
1289 }
Michal Vasko610553d2020-11-18 18:15:05 +01001290 if (meta) {
1291 *meta = NULL;
1292 }
Michal Vaskod86997b2020-05-26 15:19:54 +02001293
1294 /* parse the name */
1295 tmp = name;
1296 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
1297 LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name);
Michal Vasko871a0252020-11-11 18:35:24 +01001298 return LY_EINVAL;
Michal Vaskod86997b2020-05-26 15:19:54 +02001299 }
1300
1301 /* find the module */
1302 if (prefix) {
Radek Krejci0ad51f12020-07-16 12:08:12 +02001303 module = ly_ctx_get_module_implemented2(ctx, prefix, pref_len);
Radek Krejci422afb12021-03-04 16:38:16 +01001304 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 +02001305 }
1306
1307 /* set value if none */
1308 if (!val_str) {
1309 val_str = "";
1310 }
1311
Radek Krejci8df109d2021-04-23 12:19:08 +02001312 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 +01001313 NULL, LYD_HINT_DATA, clear_dflt, NULL);
1314}
Michal Vasko3a41dff2020-07-15 14:30:28 +02001315
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001316LIBYANG_API_DEF LY_ERR
Michal Vaskoba696702020-11-11 19:12:45 +01001317lyd_new_meta2(const struct ly_ctx *ctx, struct lyd_node *parent, ly_bool clear_dflt, const struct lyd_attr *attr,
1318 struct lyd_meta **meta)
1319{
1320 const struct lys_module *mod;
1321
1322 LY_CHECK_ARG_RET(NULL, ctx, attr, parent || meta, LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +01001323 LY_CHECK_CTX_EQUAL_RET(ctx, parent ? LYD_CTX(parent) : NULL, LY_EINVAL);
Michal Vaskoba696702020-11-11 19:12:45 +01001324
1325 if (parent && !parent->schema) {
1326 LOGERR(ctx, LY_EINVAL, "Cannot add metadata to an opaque node \"%s\".", ((struct lyd_node_opaq *)parent)->name);
1327 return LY_EINVAL;
Michal Vasko3a41dff2020-07-15 14:30:28 +02001328 }
Michal Vasko610553d2020-11-18 18:15:05 +01001329 if (meta) {
1330 *meta = NULL;
1331 }
Michal Vaskoba696702020-11-11 19:12:45 +01001332
1333 switch (attr->format) {
Radek Krejci8df109d2021-04-23 12:19:08 +02001334 case LY_VALUE_XML:
Michal Vaskoad92b672020-11-12 13:11:31 +01001335 mod = ly_ctx_get_module_implemented_ns(ctx, attr->name.module_ns);
Michal Vaskoba696702020-11-11 19:12:45 +01001336 if (!mod) {
Michal Vaskoad92b672020-11-12 13:11:31 +01001337 LOGERR(ctx, LY_EINVAL, "Module with namespace \"%s\" not found.", attr->name.module_ns);
Michal Vaskoba696702020-11-11 19:12:45 +01001338 return LY_ENOTFOUND;
1339 }
1340 break;
Radek Krejci8df109d2021-04-23 12:19:08 +02001341 case LY_VALUE_JSON:
Michal Vaskoad92b672020-11-12 13:11:31 +01001342 mod = ly_ctx_get_module_implemented(ctx, attr->name.module_name);
Michal Vaskoba696702020-11-11 19:12:45 +01001343 if (!mod) {
Michal Vaskoad92b672020-11-12 13:11:31 +01001344 LOGERR(ctx, LY_EINVAL, "Module \"%s\" not found.", attr->name.module_name);
Michal Vaskoba696702020-11-11 19:12:45 +01001345 return LY_ENOTFOUND;
1346 }
1347 break;
1348 default:
1349 LOGINT_RET(ctx);
1350 }
1351
Michal Vaskoad92b672020-11-12 13:11:31 +01001352 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 +01001353 NULL, attr->format, attr->val_prefix_data, attr->hints, clear_dflt, NULL);
Michal Vaskod86997b2020-05-26 15:19:54 +02001354}
1355
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001356LIBYANG_API_DEF LY_ERR
Michal Vasko00cbf532020-06-15 13:58:47 +02001357lyd_new_opaq(struct lyd_node *parent, const struct ly_ctx *ctx, const char *name, const char *value,
Michal Vasko0ab974d2021-02-24 13:18:26 +01001358 const char *prefix, const char *module_name, struct lyd_node **node)
Michal Vasko00cbf532020-06-15 13:58:47 +02001359{
1360 struct lyd_node *ret = NULL;
Radek Krejci07a55962021-03-02 20:16:43 +01001361
Michal Vasko0ab974d2021-02-24 13:18:26 +01001362 LY_CHECK_ARG_RET(ctx, parent || ctx, parent || node, name, module_name, !prefix || !strcmp(prefix, module_name), LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +01001363 LY_CHECK_CTX_EQUAL_RET(ctx, parent ? LYD_CTX(parent) : NULL, LY_EINVAL);
Michal Vasko00cbf532020-06-15 13:58:47 +02001364
1365 if (!ctx) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001366 ctx = LYD_CTX(parent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001367 }
1368 if (!value) {
1369 value = "";
1370 }
1371
Michal Vasko0ab974d2021-02-24 13:18:26 +01001372 LY_CHECK_RET(lyd_create_opaq(ctx, name, strlen(name), prefix, prefix ? strlen(prefix) : 0, module_name,
Radek Krejci8df109d2021-04-23 12:19:08 +02001373 strlen(module_name), value, strlen(value), NULL, LY_VALUE_JSON, NULL, 0, &ret));
Michal Vasko3a41dff2020-07-15 14:30:28 +02001374 if (parent) {
Michal Vasko6ee6f432021-07-16 09:49:14 +02001375 lyd_insert_node(parent, NULL, ret, 1);
Michal Vasko00cbf532020-06-15 13:58:47 +02001376 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02001377
1378 if (node) {
1379 *node = ret;
1380 }
1381 return LY_SUCCESS;
Michal Vasko00cbf532020-06-15 13:58:47 +02001382}
1383
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001384LIBYANG_API_DEF LY_ERR
Michal Vasko8d65f852021-02-17 11:28:13 +01001385lyd_new_opaq2(struct lyd_node *parent, const struct ly_ctx *ctx, const char *name, const char *value,
Michal Vasko0ab974d2021-02-24 13:18:26 +01001386 const char *prefix, const char *module_ns, struct lyd_node **node)
Michal Vasko8d65f852021-02-17 11:28:13 +01001387{
1388 struct lyd_node *ret = NULL;
1389
1390 LY_CHECK_ARG_RET(ctx, parent || ctx, parent || node, name, module_ns, LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +01001391 LY_CHECK_CTX_EQUAL_RET(ctx, parent ? LYD_CTX(parent) : NULL, LY_EINVAL);
Michal Vasko8d65f852021-02-17 11:28:13 +01001392
1393 if (!ctx) {
1394 ctx = LYD_CTX(parent);
1395 }
1396 if (!value) {
1397 value = "";
1398 }
1399
Michal Vasko0ab974d2021-02-24 13:18:26 +01001400 LY_CHECK_RET(lyd_create_opaq(ctx, name, strlen(name), prefix, prefix ? strlen(prefix) : 0, module_ns,
Radek Krejci8df109d2021-04-23 12:19:08 +02001401 strlen(module_ns), value, strlen(value), NULL, LY_VALUE_XML, NULL, 0, &ret));
Michal Vasko8d65f852021-02-17 11:28:13 +01001402 if (parent) {
Michal Vasko6ee6f432021-07-16 09:49:14 +02001403 lyd_insert_node(parent, NULL, ret, 1);
Michal Vasko8d65f852021-02-17 11:28:13 +01001404 }
1405
1406 if (node) {
1407 *node = ret;
1408 }
1409 return LY_SUCCESS;
1410}
1411
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001412LIBYANG_API_DEF LY_ERR
Michal Vasko8d65f852021-02-17 11:28:13 +01001413lyd_new_attr(struct lyd_node *parent, const char *module_name, const char *name, const char *value,
Radek Krejci0f969882020-08-21 16:56:47 +02001414 struct lyd_attr **attr)
Michal Vasko00cbf532020-06-15 13:58:47 +02001415{
Radek Krejci1798aae2020-07-14 13:26:06 +02001416 struct lyd_attr *ret = NULL;
Michal Vasko00cbf532020-06-15 13:58:47 +02001417 const struct ly_ctx *ctx;
1418 const char *prefix, *tmp;
Michal Vasko51d21b82020-11-13 18:03:54 +01001419 size_t pref_len, name_len, mod_len;
Michal Vasko00cbf532020-06-15 13:58:47 +02001420
Michal Vasko3a41dff2020-07-15 14:30:28 +02001421 LY_CHECK_ARG_RET(NULL, parent, !parent->schema, name, LY_EINVAL);
Michal Vasko00cbf532020-06-15 13:58:47 +02001422
Michal Vaskob7be7a82020-08-20 09:09:04 +02001423 ctx = LYD_CTX(parent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001424
1425 /* parse the name */
1426 tmp = name;
1427 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
Michal Vaskob69b68c2021-02-17 11:18:16 +01001428 LOGERR(ctx, LY_EINVAL, "Attribute name \"%s\" is not valid.", name);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001429 return LY_EVALID;
Michal Vasko00cbf532020-06-15 13:58:47 +02001430 }
1431
Michal Vaskoe137fc42021-07-22 11:53:13 +02001432 if ((pref_len == 3) && !strncmp(prefix, "xml", 3)) {
1433 /* not a prefix but special name */
1434 name = prefix;
1435 name_len += 1 + pref_len;
1436 prefix = NULL;
1437 pref_len = 0;
1438 }
1439
Michal Vasko51d21b82020-11-13 18:03:54 +01001440 /* get the module */
1441 if (module_name) {
1442 mod_len = strlen(module_name);
1443 } else {
1444 module_name = prefix;
1445 mod_len = pref_len;
1446 }
1447
Michal Vasko00cbf532020-06-15 13:58:47 +02001448 /* set value if none */
Michal Vasko8d65f852021-02-17 11:28:13 +01001449 if (!value) {
1450 value = "";
Michal Vasko00cbf532020-06-15 13:58:47 +02001451 }
1452
Michal Vasko8d65f852021-02-17 11:28:13 +01001453 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 +02001454 strlen(value), NULL, LY_VALUE_JSON, NULL, LYD_HINT_DATA));
Michal Vasko8d65f852021-02-17 11:28:13 +01001455
1456 if (attr) {
1457 *attr = ret;
1458 }
1459 return LY_SUCCESS;
1460}
1461
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001462LIBYANG_API_DEF LY_ERR
Michal Vasko8d65f852021-02-17 11:28:13 +01001463lyd_new_attr2(struct lyd_node *parent, const char *module_ns, const char *name, const char *value,
1464 struct lyd_attr **attr)
1465{
1466 struct lyd_attr *ret = NULL;
1467 const struct ly_ctx *ctx;
1468 const char *prefix, *tmp;
1469 size_t pref_len, name_len;
1470
1471 LY_CHECK_ARG_RET(NULL, parent, !parent->schema, name, LY_EINVAL);
1472
1473 ctx = LYD_CTX(parent);
1474
1475 /* parse the name */
1476 tmp = name;
1477 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
1478 LOGERR(ctx, LY_EINVAL, "Attribute name \"%s\" is not valid.", name);
1479 return LY_EVALID;
1480 }
1481
Michal Vaskoe137fc42021-07-22 11:53:13 +02001482 if ((pref_len == 3) && !strncmp(prefix, "xml", 3)) {
1483 /* not a prefix but special name */
1484 name = prefix;
1485 name_len += 1 + pref_len;
1486 prefix = NULL;
1487 pref_len = 0;
1488 }
1489
Michal Vasko8d65f852021-02-17 11:28:13 +01001490 /* set value if none */
1491 if (!value) {
1492 value = "";
1493 }
1494
1495 LY_CHECK_RET(lyd_create_attr(parent, &ret, ctx, name, name_len, prefix, pref_len, module_ns,
Radek Krejci8df109d2021-04-23 12:19:08 +02001496 module_ns ? strlen(module_ns) : 0, value, strlen(value), NULL, LY_VALUE_XML, NULL, LYD_HINT_DATA));
Michal Vasko3a41dff2020-07-15 14:30:28 +02001497
1498 if (attr) {
1499 *attr = ret;
1500 }
1501 return LY_SUCCESS;
Michal Vasko00cbf532020-06-15 13:58:47 +02001502}
1503
Radek Krejci09c77442021-04-26 11:10:34 +02001504/**
1505 * @brief Change the value of a term (leaf or leaf-list) node.
1506 *
1507 * Node changed this way is always considered explicitly set, meaning its default flag
1508 * is always cleared.
1509 *
1510 * @param[in] term Term node to change.
1511 * @param[in] value New value to set.
1512 * @param[in] value_len Length of @p value.
1513 * @param[in] format Format of @p value.
1514 * @return LY_SUCCESS if value was changed,
1515 * @return LY_EEXIST if value was the same and only the default flag was cleared,
1516 * @return LY_ENOT if the values were equal and no change occured,
1517 * @return LY_ERR value on other errors.
1518 */
1519static LY_ERR
1520_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 +02001521{
1522 LY_ERR ret = LY_SUCCESS;
1523 struct lysc_type *type;
1524 struct lyd_node_term *t;
1525 struct lyd_node *parent;
1526 struct lyd_value val = {0};
Radek Krejci857189e2020-09-01 13:26:36 +02001527 ly_bool dflt_change, val_change;
Michal Vasko00cbf532020-06-15 13:58:47 +02001528
Radek Krejci09c77442021-04-26 11:10:34 +02001529 assert(term && term->schema && (term->schema->nodetype & LYD_NODE_TERM));
Michal Vasko00cbf532020-06-15 13:58:47 +02001530
Michal Vasko00cbf532020-06-15 13:58:47 +02001531 t = (struct lyd_node_term *)term;
1532 type = ((struct lysc_node_leaf *)term->schema)->type;
1533
1534 /* parse the new value */
Radek Krejciddace2c2021-01-08 11:30:56 +01001535 LOG_LOCSET(term->schema, term, NULL, NULL);
Radek Krejci09c77442021-04-26 11:10:34 +02001536 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 +01001537 LOG_LOCBACK(term->schema ? 1 : 0, 1, 0, 0);
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001538 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001539
1540 /* compare original and new value */
1541 if (type->plugin->compare(&t->value, &val)) {
1542 /* values differ, switch them */
Michal Vaskob7be7a82020-08-20 09:09:04 +02001543 type->plugin->free(LYD_CTX(term), &t->value);
Michal Vasko00cbf532020-06-15 13:58:47 +02001544 t->value = val;
1545 memset(&val, 0, sizeof val);
1546 val_change = 1;
1547 } else {
1548 val_change = 0;
1549 }
1550
1551 /* always clear the default flag */
1552 if (term->flags & LYD_DEFAULT) {
Michal Vasko9e685082021-01-29 14:49:09 +01001553 for (parent = term; parent; parent = lyd_parent(parent)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001554 parent->flags &= ~LYD_DEFAULT;
1555 }
1556 dflt_change = 1;
1557 } else {
1558 dflt_change = 0;
1559 }
1560
1561 if (val_change || dflt_change) {
1562 /* make the node non-validated */
1563 term->flags &= LYD_NEW;
1564 }
1565
1566 if (val_change) {
1567 if (term->schema->nodetype == LYS_LEAFLIST) {
1568 /* leaf-list needs to be hashed again and re-inserted into parent */
1569 lyd_unlink_hash(term);
1570 lyd_hash(term);
1571 LY_CHECK_GOTO(ret = lyd_insert_hash(term), cleanup);
1572 } else if ((term->schema->flags & LYS_KEY) && term->parent) {
1573 /* list needs to be updated if its key was changed */
1574 assert(term->parent->schema->nodetype == LYS_LIST);
Michal Vasko9e685082021-01-29 14:49:09 +01001575 lyd_unlink_hash(lyd_parent(term));
1576 lyd_hash(lyd_parent(term));
1577 LY_CHECK_GOTO(ret = lyd_insert_hash(lyd_parent(term)), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001578 } /* else leaf that is not a key, its value is not used for its hash so it does not change */
1579 }
1580
1581 /* retrun value */
1582 if (!val_change) {
1583 if (dflt_change) {
1584 /* only default flag change */
1585 ret = LY_EEXIST;
1586 } else {
1587 /* no change */
1588 ret = LY_ENOT;
1589 }
1590 } /* else value changed, LY_SUCCESS */
1591
1592cleanup:
Michal Vasko59512fc2020-12-09 18:13:29 +01001593 if (val.realtype) {
1594 type->plugin->free(LYD_CTX(term), &val);
1595 }
Michal Vasko00cbf532020-06-15 13:58:47 +02001596 return ret;
1597}
1598
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001599LIBYANG_API_DEF LY_ERR
Radek Krejci09c77442021-04-26 11:10:34 +02001600lyd_change_term(struct lyd_node *term, const char *val_str)
1601{
1602 LY_CHECK_ARG_RET(NULL, term, term->schema, term->schema->nodetype & LYD_NODE_TERM, LY_EINVAL);
1603
1604 return _lyd_change_term(term, val_str, val_str ? strlen(val_str) : 0, LY_VALUE_JSON);
1605}
1606
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001607LIBYANG_API_DEF LY_ERR
Radek Krejci09c77442021-04-26 11:10:34 +02001608lyd_change_term_bin(struct lyd_node *term, const void *value, size_t value_len)
1609{
1610 LY_CHECK_ARG_RET(NULL, term, term->schema, term->schema->nodetype & LYD_NODE_TERM, LY_EINVAL);
1611
1612 return _lyd_change_term(term, value, value_len, LY_VALUE_LYB);
1613}
1614
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001615LIBYANG_API_DEF LY_ERR
Radek Krejci09c77442021-04-26 11:10:34 +02001616lyd_change_term_canon(struct lyd_node *term, const char *val_str)
1617{
1618 LY_CHECK_ARG_RET(NULL, term, term->schema, term->schema->nodetype & LYD_NODE_TERM, LY_EINVAL);
1619
1620 return _lyd_change_term(term, val_str, val_str ? strlen(val_str) : 0, LY_VALUE_CANON);
1621}
1622
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001623LIBYANG_API_DEF LY_ERR
Michal Vasko41586352020-07-13 13:54:25 +02001624lyd_change_meta(struct lyd_meta *meta, const char *val_str)
1625{
1626 LY_ERR ret = LY_SUCCESS;
Radek Krejci2b18bf12020-11-06 11:20:20 +01001627 struct lyd_meta *m2 = NULL;
Michal Vasko41586352020-07-13 13:54:25 +02001628 struct lyd_value val;
Radek Krejci857189e2020-09-01 13:26:36 +02001629 ly_bool val_change;
Michal Vasko41586352020-07-13 13:54:25 +02001630
1631 LY_CHECK_ARG_RET(NULL, meta, LY_EINVAL);
1632
1633 if (!val_str) {
1634 val_str = "";
1635 }
1636
1637 /* parse the new value into a new meta structure */
1638 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 +02001639 strlen(val_str), NULL, LY_VALUE_JSON, NULL, LYD_HINT_DATA, 0, NULL), cleanup);
Michal Vasko41586352020-07-13 13:54:25 +02001640
1641 /* compare original and new value */
1642 if (lyd_compare_meta(meta, m2)) {
1643 /* values differ, switch them */
1644 val = meta->value;
1645 meta->value = m2->value;
1646 m2->value = val;
1647 val_change = 1;
1648 } else {
1649 val_change = 0;
1650 }
1651
1652 /* retrun value */
1653 if (!val_change) {
1654 /* no change */
1655 ret = LY_ENOT;
1656 } /* else value changed, LY_SUCCESS */
1657
1658cleanup:
Michal Vasko1a66a5d2020-11-18 18:15:37 +01001659 lyd_free_meta_single(m2);
Michal Vasko41586352020-07-13 13:54:25 +02001660 return ret;
1661}
1662
Radek Krejci09c77442021-04-26 11:10:34 +02001663/**
1664 * @brief Update node value.
1665 *
1666 * @param[in] node Node to update.
1667 * @param[in] value New value to set.
1668 * @param[in] value_len Length of @p value.
1669 * @param[in] value_type Type of @p value for anydata/anyxml node.
1670 * @param[in] format Format of @p value.
1671 * @param[out] new_parent Set to @p node if the value was updated, otherwise set to NULL.
1672 * @param[out] new_node Set to @p node if the value was updated, otherwise set to NULL.
1673 * @return LY_ERR value.
1674 */
Michal Vasko6741dc62021-02-04 09:27:45 +01001675static LY_ERR
Radek Krejci09c77442021-04-26 11:10:34 +02001676lyd_new_path_update(struct lyd_node *node, const void *value, size_t value_len, LYD_ANYDATA_VALUETYPE value_type,
1677 LY_VALUE_FORMAT format, struct lyd_node **new_parent, struct lyd_node **new_node)
1678{
1679 LY_ERR ret = LY_SUCCESS;
1680 struct lyd_node *new_any;
1681
1682 switch (node->schema->nodetype) {
1683 case LYS_CONTAINER:
1684 case LYS_NOTIF:
1685 case LYS_RPC:
1686 case LYS_ACTION:
1687 case LYS_LIST:
1688 /* if it exists, there is nothing to update */
1689 *new_parent = NULL;
1690 *new_node = NULL;
1691 break;
1692 case LYS_LEAFLIST:
1693 if (!lysc_is_dup_inst_list(node->schema)) {
1694 /* if it exists, there is nothing to update */
1695 *new_parent = NULL;
1696 *new_node = NULL;
1697 break;
1698 }
1699 /* fallthrough */
1700 case LYS_LEAF:
1701 ret = _lyd_change_term(node, value, value_len, format);
1702 if ((ret == LY_SUCCESS) || (ret == LY_EEXIST)) {
1703 /* there was an actual change (at least of the default flag) */
1704 *new_parent = node;
1705 *new_node = node;
1706 ret = LY_SUCCESS;
1707 } else if (ret == LY_ENOT) {
1708 /* no change */
1709 *new_parent = NULL;
1710 *new_node = NULL;
1711 ret = LY_SUCCESS;
1712 } /* else error */
1713 break;
1714 case LYS_ANYDATA:
1715 case LYS_ANYXML:
1716 /* create a new any node */
1717 LY_CHECK_RET(lyd_create_any(node->schema, value, value_type, 0, &new_any));
1718
1719 /* compare with the existing one */
1720 if (lyd_compare_single(node, new_any, 0)) {
1721 /* not equal, switch values (so that we can use generic node free) */
1722 ((struct lyd_node_any *)new_any)->value = ((struct lyd_node_any *)node)->value;
1723 ((struct lyd_node_any *)new_any)->value_type = ((struct lyd_node_any *)node)->value_type;
1724 ((struct lyd_node_any *)node)->value.str = value;
1725 ((struct lyd_node_any *)node)->value_type = value_type;
1726
1727 *new_parent = node;
1728 *new_node = node;
1729 } else {
1730 /* they are equal */
1731 *new_parent = NULL;
1732 *new_node = NULL;
1733 }
1734 lyd_free_tree(new_any);
1735 break;
1736 default:
1737 LOGINT(LYD_CTX(node));
1738 ret = LY_EINT;
1739 break;
1740 }
1741
1742 return ret;
1743}
1744
1745static LY_ERR
1746lyd_new_path_check_find_lypath(struct ly_path *path, const char *str_path, const char *value, size_t value_len,
1747 LY_VALUE_FORMAT format, uint32_t options)
Michal Vasko6741dc62021-02-04 09:27:45 +01001748{
Michal Vaskoe78faec2021-04-08 17:24:43 +02001749 LY_ERR r;
Michal Vasko6741dc62021-02-04 09:27:45 +01001750 struct ly_path_predicate *pred;
Michal Vaskoe1886a92022-01-10 09:30:08 +01001751 struct lyd_value val;
Michal Vaskoe78faec2021-04-08 17:24:43 +02001752 const struct lysc_node *schema = NULL;
1753 LY_ARRAY_COUNT_TYPE u, new_count;
1754 int create = 0;
Michal Vasko6741dc62021-02-04 09:27:45 +01001755
1756 assert(path);
1757
1758 /* go through all the compiled nodes */
1759 LY_ARRAY_FOR(path, u) {
1760 schema = path[u].node;
Michal Vaskoe78faec2021-04-08 17:24:43 +02001761
1762 if (lysc_is_dup_inst_list(schema)) {
1763 if (path[u].pred_type == LY_PATH_PREDTYPE_NONE) {
1764 /* creating a new key-less list or state leaf-list instance */
1765 create = 1;
1766 new_count = u;
1767 } else if (path[u].pred_type != LY_PATH_PREDTYPE_POSITION) {
1768 LOG_LOCSET(schema, NULL, NULL, NULL);
1769 LOGVAL(schema->module->ctx, LYVE_XPATH, "Invalid predicate for %s \"%s\" in path \"%s\".",
1770 lys_nodetype2str(schema->nodetype), schema->name, str_path);
1771 LOG_LOCBACK(1, 0, 0, 0);
1772 return LY_EINVAL;
1773 }
1774 } else if ((schema->nodetype == LYS_LIST) && (path[u].pred_type != LY_PATH_PREDTYPE_LIST)) {
1775 if ((u < LY_ARRAY_COUNT(path) - 1) || !(options & LYD_NEW_PATH_OPAQ)) {
Michal Vasko6741dc62021-02-04 09:27:45 +01001776 LOG_LOCSET(schema, NULL, NULL, NULL);
1777 LOGVAL(schema->module->ctx, LYVE_XPATH, "Predicate missing for %s \"%s\" in path \"%s\".",
1778 lys_nodetype2str(schema->nodetype), schema->name, str_path);
1779 LOG_LOCBACK(1, 0, 0, 0);
1780 return LY_EINVAL;
Michal Vaskoe78faec2021-04-08 17:24:43 +02001781 } /* else creating an opaque list */
1782 } else if ((schema->nodetype == LYS_LEAFLIST) && (path[u].pred_type != LY_PATH_PREDTYPE_LEAFLIST)) {
Michal Vaskoe78faec2021-04-08 17:24:43 +02001783 r = LY_SUCCESS;
1784 if (options & LYD_NEW_PATH_OPAQ) {
Radek Krejci09c77442021-04-26 11:10:34 +02001785 r = lyd_value_validate(NULL, schema, value, value_len, NULL, NULL, NULL);
Michal Vaskoe78faec2021-04-08 17:24:43 +02001786 }
1787 if (!r) {
Michal Vaskoe1886a92022-01-10 09:30:08 +01001788 /* try to store the value */
1789 LY_CHECK_RET(lyd_value_store(schema->module->ctx, &val, ((struct lysc_node_leaflist *)schema)->type,
1790 value, value_len, NULL, format, NULL, LYD_HINT_DATA, schema, NULL));
1791 ++((struct lysc_type *)val.realtype)->refcount;
1792
Michal Vaskoe78faec2021-04-08 17:24:43 +02001793 /* store the new predicate so that it is used when searching for this instance */
1794 path[u].pred_type = LY_PATH_PREDTYPE_LEAFLIST;
1795 LY_ARRAY_NEW_RET(schema->module->ctx, path[u].predicates, pred, LY_EMEM);
Michal Vaskoe1886a92022-01-10 09:30:08 +01001796 pred->value = val;
Michal Vaskoe78faec2021-04-08 17:24:43 +02001797 } /* else we have opaq flag and the value is not valid, leave no predicate and then create an opaque node */
1798 }
Michal Vasko6741dc62021-02-04 09:27:45 +01001799 }
1800
Michal Vaskoe78faec2021-04-08 17:24:43 +02001801 if (create) {
1802 /* hide the nodes that should always be created so they are not found */
1803 while (new_count < LY_ARRAY_COUNT(path)) {
1804 LY_ARRAY_DECREMENT(path);
1805 }
Michal Vasko6741dc62021-02-04 09:27:45 +01001806 }
1807
Michal Vaskoe78faec2021-04-08 17:24:43 +02001808 return LY_SUCCESS;
Michal Vasko6741dc62021-02-04 09:27:45 +01001809}
1810
Radek Krejci95ccd1b2021-03-12 14:57:22 +01001811/**
1812 * @brief Create a new node in the data tree based on a path. All node types can be created.
1813 *
Michal Vaskoa918a632021-07-02 11:53:36 +02001814 * If @p path points to a list key, the key value from the predicate is used and @p value is ignored.
1815 * Also, if a leaf-list is being created and both a predicate is defined in @p path
Radek Krejci95ccd1b2021-03-12 14:57:22 +01001816 * and @p value is set, the predicate is preferred.
1817 *
1818 * For key-less lists and state leaf-lists, positional predicates can be used. If no preciate is used for these
1819 * nodes, they are always created.
1820 *
1821 * @param[in] parent Data parent to add to/modify, can be NULL. Note that in case a first top-level sibling is used,
1822 * it may no longer be first if @p path is absolute and starts with a non-existing top-level node inserted
1823 * before @p parent. Use ::lyd_first_sibling() to adjust @p parent in these cases.
1824 * @param[in] ctx libyang context, must be set if @p parent is NULL.
1825 * @param[in] ext Extension instance where the node being created is defined. This argument takes effect only for absolute
1826 * path or when the relative paths touches document root (top-level). In such cases the present extension instance replaces
1827 * searching for the appropriate module.
1828 * @param[in] path [Path](@ref howtoXPath) to create.
Radek Krejci09c77442021-04-26 11:10:34 +02001829 * @param[in] value Value of the new leaf/leaf-list (const char *) in ::LY_VALUE_JSON format. If creating an
1830 * anyxml/anydata node, the expected type depends on @p value_type. For other node types, it should be NULL.
1831 * @param[in] value_len Length of @p value in bytes. May be 0 if @p value is a zero-terminated string. Ignored when
1832 * creating anyxml/anydata nodes.
Radek Krejci95ccd1b2021-03-12 14:57:22 +01001833 * @param[in] value_type Anyxml/anydata node @p value type.
1834 * @param[in] options Bitmask of options, see @ref pathoptions.
1835 * @param[out] new_parent Optional first parent node created. If only one node was created, equals to @p new_node.
1836 * @param[out] new_node Optional last node created.
1837 * @return LY_ERR value.
1838 */
1839static LY_ERR
1840lyd_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 +02001841 const void *value, size_t value_len, LYD_ANYDATA_VALUETYPE value_type, uint32_t options,
Radek Krejci95ccd1b2021-03-12 14:57:22 +01001842 struct lyd_node **new_parent, struct lyd_node **new_node)
Michal Vasko00cbf532020-06-15 13:58:47 +02001843{
1844 LY_ERR ret = LY_SUCCESS, r;
1845 struct lyxp_expr *exp = NULL;
1846 struct ly_path *p = NULL;
1847 struct lyd_node *nparent = NULL, *nnode = NULL, *node = NULL, *cur_parent;
1848 const struct lysc_node *schema;
Michal Vaskoe78faec2021-04-08 17:24:43 +02001849 const struct lyd_value *val = NULL;
Radek Krejci910d0132021-03-05 14:19:31 +01001850 LY_ARRAY_COUNT_TYPE path_idx = 0, orig_count = 0;
Radek Krejci09c77442021-04-26 11:10:34 +02001851 LY_VALUE_FORMAT format;
Michal Vasko00cbf532020-06-15 13:58:47 +02001852
Radek Krejci95ccd1b2021-03-12 14:57:22 +01001853 assert(parent || ctx);
Radek Krejci09c77442021-04-26 11:10:34 +02001854 assert(path && ((path[0] == '/') || parent));
1855 assert(!(options & LYD_NEW_PATH_BIN_VALUE) || !(options & LYD_NEW_PATH_CANON_VALUE));
Michal Vasko00cbf532020-06-15 13:58:47 +02001856
1857 if (!ctx) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001858 ctx = LYD_CTX(parent);
Michal Vasko00cbf532020-06-15 13:58:47 +02001859 }
Radek Krejci09c77442021-04-26 11:10:34 +02001860 if (value && !value_len) {
1861 value_len = strlen(value);
1862 }
1863 if (options & LYD_NEW_PATH_BIN_VALUE) {
1864 format = LY_VALUE_LYB;
1865 } else if (options & LYD_NEW_PATH_CANON_VALUE) {
1866 format = LY_VALUE_CANON;
1867 } else {
1868 format = LY_VALUE_JSON;
1869 }
Michal Vasko00cbf532020-06-15 13:58:47 +02001870
1871 /* parse path */
Michal Vaskoed725d72021-06-23 12:03:45 +02001872 LY_CHECK_GOTO(ret = ly_path_parse(ctx, NULL, path, strlen(path), 0, LY_PATH_BEGIN_EITHER, LY_PATH_PREFIX_OPTIONAL,
1873 LY_PATH_PRED_SIMPLE, &exp), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001874
1875 /* compile path */
Michal Vasko106f0862021-11-02 11:49:27 +01001876 LY_CHECK_GOTO(ret = ly_path_compile(ctx, NULL, lyd_node_schema(parent), ext, exp, options & LYD_NEW_PATH_OUTPUT ?
1877 LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT, LY_PATH_TARGET_MANY, 0, LY_VALUE_JSON, NULL, &p), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001878
Michal Vasko6741dc62021-02-04 09:27:45 +01001879 /* check the compiled path before searching existing nodes, it may be shortened */
1880 orig_count = LY_ARRAY_COUNT(p);
Radek Krejci09c77442021-04-26 11:10:34 +02001881 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 +02001882
1883 /* try to find any existing nodes in the path */
1884 if (parent) {
1885 ret = ly_path_eval_partial(p, parent, &path_idx, &node);
1886 if (ret == LY_SUCCESS) {
Michal Vasko6741dc62021-02-04 09:27:45 +01001887 if (orig_count == LY_ARRAY_COUNT(p)) {
1888 /* the node exists, are we supposed to update it or is it just a default? */
1889 if (!(options & LYD_NEW_PATH_UPDATE) && !(node->flags & LYD_DEFAULT)) {
1890 LOG_LOCSET(NULL, node, NULL, NULL);
1891 LOGVAL(ctx, LYVE_REFERENCE, "Path \"%s\" already exists", path);
1892 LOG_LOCBACK(0, 1, 0, 0);
1893 ret = LY_EEXIST;
1894 goto cleanup;
1895 }
Michal Vasko00cbf532020-06-15 13:58:47 +02001896
Michal Vasko6741dc62021-02-04 09:27:45 +01001897 /* update the existing node */
Radek Krejci09c77442021-04-26 11:10:34 +02001898 ret = lyd_new_path_update(node, value, value_len, value_type, format, &nparent, &nnode);
Michal Vasko6741dc62021-02-04 09:27:45 +01001899 goto cleanup;
1900 } /* else we were not searching for the whole path */
Michal Vasko00cbf532020-06-15 13:58:47 +02001901 } else if (ret == LY_EINCOMPLETE) {
1902 /* some nodes were found, adjust the iterator to the next segment */
1903 ++path_idx;
1904 } else if (ret == LY_ENOTFOUND) {
1905 /* 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 +01001906 if (lysc_data_parent(p[0].node)) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001907 node = parent;
1908 }
1909 } else {
1910 /* error */
1911 goto cleanup;
1912 }
1913 }
1914
Michal Vasko6741dc62021-02-04 09:27:45 +01001915 /* restore the full path for creating new nodes */
1916 while (orig_count > LY_ARRAY_COUNT(p)) {
1917 LY_ARRAY_INCREMENT(p);
1918 }
1919
Michal Vasko00cbf532020-06-15 13:58:47 +02001920 /* create all the non-existing nodes in a loop */
Michal Vaskod989ba02020-08-24 10:59:24 +02001921 for ( ; path_idx < LY_ARRAY_COUNT(p); ++path_idx) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001922 cur_parent = node;
1923 schema = p[path_idx].node;
1924
1925 switch (schema->nodetype) {
1926 case LYS_LIST:
Michal Vaskoe78faec2021-04-08 17:24:43 +02001927 if (lysc_is_dup_inst_list(schema)) {
1928 /* create key-less list instance */
1929 LY_CHECK_GOTO(ret = lyd_create_inner(schema, &node), cleanup);
1930 } else if ((options & LYD_NEW_PATH_OPAQ) && (p[path_idx].pred_type == LY_PATH_PREDTYPE_NONE)) {
1931 /* creating opaque list without keys */
1932 LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), NULL, 0,
Radek Krejci8df109d2021-04-23 12:19:08 +02001933 schema->module->name, strlen(schema->module->name), NULL, 0, NULL, LY_VALUE_JSON, NULL,
Michal Vaskoe78faec2021-04-08 17:24:43 +02001934 LYD_NODEHINT_LIST, &node), cleanup);
1935 } else {
1936 /* create standard list instance */
1937 assert(p[path_idx].pred_type == LY_PATH_PREDTYPE_LIST);
1938 LY_CHECK_GOTO(ret = lyd_create_list(schema, p[path_idx].predicates, &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001939 }
Michal Vaskoe78faec2021-04-08 17:24:43 +02001940 break;
Michal Vasko00cbf532020-06-15 13:58:47 +02001941 case LYS_CONTAINER:
1942 case LYS_NOTIF:
1943 case LYS_RPC:
1944 case LYS_ACTION:
1945 LY_CHECK_GOTO(ret = lyd_create_inner(schema, &node), cleanup);
1946 break;
1947 case LYS_LEAFLIST:
Michal Vaskoe78faec2021-04-08 17:24:43 +02001948 if ((options & LYD_NEW_PATH_OPAQ) && (p[path_idx].pred_type != LY_PATH_PREDTYPE_LEAFLIST)) {
1949 /* we have not checked this only for dup-inst lists, otherwise it must be opaque */
1950 r = LY_EVALID;
1951 if (lysc_is_dup_inst_list(schema)) {
1952 /* validate value */
Radek Krejci09c77442021-04-26 11:10:34 +02001953 r = lyd_value_validate(NULL, schema, value ? value : "", value_len, NULL, NULL, NULL);
Michal Vaskoe78faec2021-04-08 17:24:43 +02001954 }
1955 if (r && (r != LY_EINCOMPLETE)) {
1956 /* creating opaque leaf-list */
Radek Krejci09c77442021-04-26 11:10:34 +02001957 LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), value, value_len,
1958 schema->module->name, strlen(schema->module->name), NULL, 0, NULL, format, NULL,
1959 LYD_NODEHINT_LEAFLIST, &node), cleanup);
Michal Vaskoe78faec2021-04-08 17:24:43 +02001960 break;
1961 }
1962 }
1963
1964 /* get value to set */
1965 if (p[path_idx].pred_type == LY_PATH_PREDTYPE_LEAFLIST) {
1966 val = &p[path_idx].predicates[0].value;
Michal Vaskoe78faec2021-04-08 17:24:43 +02001967 }
1968
1969 /* create a leaf-list instance */
1970 if (val) {
Michal Vasko00cbf532020-06-15 13:58:47 +02001971 LY_CHECK_GOTO(ret = lyd_create_term2(schema, &p[path_idx].predicates[0].value, &node), cleanup);
Michal Vaskoe78faec2021-04-08 17:24:43 +02001972 } else {
Radek Krejci09c77442021-04-26 11:10:34 +02001973 LY_CHECK_GOTO(ret = lyd_create_term(schema, value, value_len, NULL, format, NULL, LYD_HINT_DATA,
1974 NULL, &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02001975 }
1976 break;
1977 case LYS_LEAF:
Michal Vasko106f0862021-11-02 11:49:27 +01001978 if (lysc_is_key(schema) && cur_parent->schema) {
Michal Vasko35880332020-12-08 13:08:12 +01001979 /* it must have been already created or some error will occur later */
Michal Vaskoa918a632021-07-02 11:53:36 +02001980 lyd_find_sibling_schema(lyd_child(cur_parent), schema, &node);
1981 assert(node);
Michal Vasko35880332020-12-08 13:08:12 +01001982 goto next_iter;
1983 }
1984
Michal Vaskoe78faec2021-04-08 17:24:43 +02001985 if (options & LYD_NEW_PATH_OPAQ) {
Michal Vasko106f0862021-11-02 11:49:27 +01001986 if (cur_parent && !cur_parent->schema) {
1987 /* always create opaque nodes for opaque parents */
1988 r = LY_ENOT;
1989 } else {
1990 /* validate value */
1991 r = lyd_value_validate(NULL, schema, value ? value : "", value_len, NULL, NULL, NULL);
1992 }
Michal Vaskoe78faec2021-04-08 17:24:43 +02001993 if (r && (r != LY_EINCOMPLETE)) {
1994 /* creating opaque leaf */
Radek Krejci09c77442021-04-26 11:10:34 +02001995 LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), value, value_len,
1996 schema->module->name, strlen(schema->module->name), NULL, 0, NULL, format, NULL, 0, &node),
1997 cleanup);
Michal Vaskoe78faec2021-04-08 17:24:43 +02001998 break;
1999 }
2000 }
2001
Michal Vaskoe78faec2021-04-08 17:24:43 +02002002 /* create a leaf instance */
Radek Krejci09c77442021-04-26 11:10:34 +02002003 LY_CHECK_GOTO(ret = lyd_create_term(schema, value, value_len, NULL, format, NULL, LYD_HINT_DATA, NULL,
2004 &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02002005 break;
2006 case LYS_ANYDATA:
2007 case LYS_ANYXML:
Michal Vasko366a4a12020-12-04 16:23:57 +01002008 LY_CHECK_GOTO(ret = lyd_create_any(schema, value, value_type, 0, &node), cleanup);
Michal Vasko00cbf532020-06-15 13:58:47 +02002009 break;
2010 default:
2011 LOGINT(ctx);
2012 ret = LY_EINT;
2013 goto cleanup;
2014 }
2015
2016 if (cur_parent) {
2017 /* connect to the parent */
Michal Vasko6ee6f432021-07-16 09:49:14 +02002018 lyd_insert_node(cur_parent, NULL, node, 0);
Michal Vasko00cbf532020-06-15 13:58:47 +02002019 } else if (parent) {
2020 /* connect to top-level siblings */
Michal Vasko6ee6f432021-07-16 09:49:14 +02002021 lyd_insert_node(NULL, &parent, node, 0);
Michal Vasko00cbf532020-06-15 13:58:47 +02002022 }
2023
Michal Vasko35880332020-12-08 13:08:12 +01002024next_iter:
Michal Vasko00cbf532020-06-15 13:58:47 +02002025 /* update remembered nodes */
2026 if (!nparent) {
2027 nparent = node;
2028 }
2029 nnode = node;
2030 }
2031
2032cleanup:
2033 lyxp_expr_free(ctx, exp);
Michal Vasko6741dc62021-02-04 09:27:45 +01002034 if (p) {
2035 while (orig_count > LY_ARRAY_COUNT(p)) {
2036 LY_ARRAY_INCREMENT(p);
2037 }
2038 }
Michal Vasko00cbf532020-06-15 13:58:47 +02002039 ly_path_free(ctx, p);
2040 if (!ret) {
2041 /* set out params only on success */
2042 if (new_parent) {
2043 *new_parent = nparent;
2044 }
2045 if (new_node) {
2046 *new_node = nnode;
2047 }
Michal Vaskof4b95ba2020-12-11 08:42:33 +01002048 } else {
2049 lyd_free_tree(nparent);
Michal Vasko00cbf532020-06-15 13:58:47 +02002050 }
2051 return ret;
2052}
2053
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002054LIBYANG_API_DEF LY_ERR
Radek Krejci95ccd1b2021-03-12 14:57:22 +01002055lyd_new_path(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const char *value, uint32_t options,
2056 struct lyd_node **node)
2057{
Radek Krejci09c77442021-04-26 11:10:34 +02002058 LY_CHECK_ARG_RET(ctx, parent || ctx, path, (path[0] == '/') || parent,
2059 !(options & LYD_NEW_PATH_BIN_VALUE) || !(options & LYD_NEW_PATH_CANON_VALUE), LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +01002060 LY_CHECK_CTX_EQUAL_RET(parent ? LYD_CTX(parent) : NULL, ctx, LY_EINVAL);
Radek Krejci09c77442021-04-26 11:10:34 +02002061
2062 return lyd_new_path_(parent, ctx, NULL, path, value, 0, LYD_ANYDATA_STRING, options, node, NULL);
Radek Krejci95ccd1b2021-03-12 14:57:22 +01002063}
2064
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002065LIBYANG_API_DEF LY_ERR
Radek Krejci95ccd1b2021-03-12 14:57:22 +01002066lyd_new_path2(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const void *value,
Radek Krejci09c77442021-04-26 11:10:34 +02002067 size_t value_len, LYD_ANYDATA_VALUETYPE value_type, uint32_t options, struct lyd_node **new_parent,
2068 struct lyd_node **new_node)
Radek Krejci95ccd1b2021-03-12 14:57:22 +01002069{
Radek Krejci09c77442021-04-26 11:10:34 +02002070 LY_CHECK_ARG_RET(ctx, parent || ctx, path, (path[0] == '/') || parent,
2071 !(options & LYD_NEW_PATH_BIN_VALUE) || !(options & LYD_NEW_PATH_CANON_VALUE), LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +01002072 LY_CHECK_CTX_EQUAL_RET(parent ? LYD_CTX(parent) : NULL, ctx, LY_EINVAL);
2073
Radek Krejci09c77442021-04-26 11:10:34 +02002074 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 +01002075}
2076
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002077LIBYANG_API_DEF LY_ERR
Radek Krejci95ccd1b2021-03-12 14:57:22 +01002078lyd_new_ext_path(struct lyd_node *parent, const struct lysc_ext_instance *ext, const char *path, const void *value,
2079 uint32_t options, struct lyd_node **node)
2080{
2081 const struct ly_ctx *ctx = ext ? ext->module->ctx : NULL;
2082
Radek Krejci09c77442021-04-26 11:10:34 +02002083 LY_CHECK_ARG_RET(ctx, ext, path, (path[0] == '/') || parent,
2084 !(options & LYD_NEW_PATH_BIN_VALUE) || !(options & LYD_NEW_PATH_CANON_VALUE), LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +01002085 LY_CHECK_CTX_EQUAL_RET(parent ? LYD_CTX(parent) : NULL, ctx, LY_EINVAL);
2086
Radek Krejci09c77442021-04-26 11:10:34 +02002087 return lyd_new_path_(parent, ctx, ext, path, value, 0, LYD_ANYDATA_STRING, options, node, NULL);
Radek Krejci95ccd1b2021-03-12 14:57:22 +01002088}
2089
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002090LY_ERR
2091lyd_new_implicit_r(struct lyd_node *parent, struct lyd_node **first, const struct lysc_node *sparent,
Radek Krejci4f2e3e52021-03-30 14:20:28 +02002092 const struct lys_module *mod, struct ly_set *node_when, struct ly_set *node_exts, struct ly_set *node_types,
2093 uint32_t impl_opts, struct lyd_node **diff)
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002094{
2095 LY_ERR ret;
Michal Vaskod1e53b92021-01-28 13:11:06 +01002096 const struct lysc_node *iter = NULL;
Radek Krejci2b18bf12020-11-06 11:20:20 +01002097 struct lyd_node *node = NULL;
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002098 struct lyd_value **dflts;
2099 LY_ARRAY_COUNT_TYPE u;
Michal Vasko630d9892020-12-08 17:11:08 +01002100 uint32_t getnext_opts;
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002101
2102 assert(first && (parent || sparent || mod));
2103
2104 if (!sparent && parent) {
2105 sparent = parent->schema;
2106 }
2107
Michal Vasko630d9892020-12-08 17:11:08 +01002108 getnext_opts = LYS_GETNEXT_WITHCHOICE;
2109 if (impl_opts & LYD_IMPLICIT_OUTPUT) {
2110 getnext_opts |= LYS_GETNEXT_OUTPUT;
2111 }
2112
2113 while ((iter = lys_getnext(iter, sparent, mod ? mod->compiled : NULL, getnext_opts))) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002114 if ((impl_opts & LYD_IMPLICIT_NO_STATE) && (iter->flags & LYS_CONFIG_R)) {
2115 continue;
Michal Vasko44b19a12020-08-07 09:21:30 +02002116 } else if ((impl_opts & LYD_IMPLICIT_NO_CONFIG) && (iter->flags & LYS_CONFIG_W)) {
2117 continue;
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002118 }
2119
2120 switch (iter->nodetype) {
2121 case LYS_CHOICE:
Michal Vaskobcf4d7d2020-11-18 18:16:49 +01002122 node = lys_getnext_data(NULL, *first, NULL, iter, NULL);
2123 if (!node && ((struct lysc_node_choice *)iter)->dflt) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002124 /* create default case data */
Michal Vasko14ed9cd2021-01-28 14:16:25 +01002125 LY_CHECK_RET(lyd_new_implicit_r(parent, first, &((struct lysc_node_choice *)iter)->dflt->node,
Radek Krejci4f2e3e52021-03-30 14:20:28 +02002126 NULL, node_when, node_exts, node_types, impl_opts, diff));
Michal Vaskobcf4d7d2020-11-18 18:16:49 +01002127 } else if (node) {
2128 /* create any default data in the existing case */
2129 assert(node->schema->parent->nodetype == LYS_CASE);
Radek Krejci4f2e3e52021-03-30 14:20:28 +02002130 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 +01002131 impl_opts, diff));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002132 }
2133 break;
2134 case LYS_CONTAINER:
2135 if (!(iter->flags & LYS_PRESENCE) && lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
2136 /* create default NP container */
2137 LY_CHECK_RET(lyd_create_inner(iter, &node));
Michal Vaskof4d67ea2021-03-31 13:53:21 +02002138 node->flags = LYD_DEFAULT | (lysc_has_when(iter) ? LYD_WHEN_TRUE : 0);
Michal Vasko6ee6f432021-07-16 09:49:14 +02002139 lyd_insert_node(parent, first, node, 0);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002140
Michal Vaskof4d67ea2021-03-31 13:53:21 +02002141 if (lysc_has_when(iter) && node_when) {
Michal Vaskoe16c7b72021-02-26 10:39:06 +01002142 /* remember to resolve when */
2143 LY_CHECK_RET(ly_set_add(node_when, node, 1, NULL));
2144 }
Radek Krejci4f2e3e52021-03-30 14:20:28 +02002145 if (node_exts) {
2146 /* remember to call all the extension's validation callbacks */
2147 LY_CHECK_RET(lysc_node_ext_tovalidate(node_exts, node));
2148 }
Michal Vaskoe49b6322020-11-05 17:38:36 +01002149 if (diff) {
2150 /* add into diff */
2151 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff));
2152 }
2153
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002154 /* create any default children */
Radek Krejci4f2e3e52021-03-30 14:20:28 +02002155 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 +02002156 impl_opts, diff));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002157 }
2158 break;
2159 case LYS_LEAF:
Michal Vasko69730152020-10-09 16:30:07 +02002160 if (!(impl_opts & LYD_IMPLICIT_NO_DEFAULTS) && ((struct lysc_node_leaf *)iter)->dflt &&
2161 lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002162 /* create default leaf */
2163 ret = lyd_create_term2(iter, ((struct lysc_node_leaf *)iter)->dflt, &node);
2164 if (ret == LY_EINCOMPLETE) {
2165 if (node_types) {
2166 /* remember to resolve type */
Radek Krejci3d92e442020-10-12 12:48:13 +02002167 LY_CHECK_RET(ly_set_add(node_types, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002168 }
2169 } else if (ret) {
2170 return ret;
2171 }
Michal Vaskof4d67ea2021-03-31 13:53:21 +02002172 node->flags = LYD_DEFAULT | (lysc_has_when(iter) ? LYD_WHEN_TRUE : 0);
Michal Vasko6ee6f432021-07-16 09:49:14 +02002173 lyd_insert_node(parent, first, node, 0);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002174
Michal Vaskof4d67ea2021-03-31 13:53:21 +02002175 if (lysc_has_when(iter) && node_when) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002176 /* remember to resolve when */
Radek Krejci3d92e442020-10-12 12:48:13 +02002177 LY_CHECK_RET(ly_set_add(node_when, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002178 }
Radek Krejci4f2e3e52021-03-30 14:20:28 +02002179 if (node_exts) {
2180 /* remember to call all the extension's validation callbacks */
2181 LY_CHECK_RET(lysc_node_ext_tovalidate(node_exts, node));
2182 }
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002183 if (diff) {
2184 /* add into diff */
2185 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff));
2186 }
2187 }
2188 break;
2189 case LYS_LEAFLIST:
Michal Vasko69730152020-10-09 16:30:07 +02002190 if (!(impl_opts & LYD_IMPLICIT_NO_DEFAULTS) && ((struct lysc_node_leaflist *)iter)->dflts &&
2191 lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002192 /* create all default leaf-lists */
2193 dflts = ((struct lysc_node_leaflist *)iter)->dflts;
2194 LY_ARRAY_FOR(dflts, u) {
2195 ret = lyd_create_term2(iter, dflts[u], &node);
2196 if (ret == LY_EINCOMPLETE) {
2197 if (node_types) {
2198 /* remember to resolve type */
Radek Krejci3d92e442020-10-12 12:48:13 +02002199 LY_CHECK_RET(ly_set_add(node_types, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002200 }
2201 } else if (ret) {
2202 return ret;
2203 }
Michal Vaskof4d67ea2021-03-31 13:53:21 +02002204 node->flags = LYD_DEFAULT | (lysc_has_when(iter) ? LYD_WHEN_TRUE : 0);
Michal Vasko6ee6f432021-07-16 09:49:14 +02002205 lyd_insert_node(parent, first, node, 0);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002206
Michal Vaskof4d67ea2021-03-31 13:53:21 +02002207 if (lysc_has_when(iter) && node_when) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002208 /* remember to resolve when */
Radek Krejci3d92e442020-10-12 12:48:13 +02002209 LY_CHECK_RET(ly_set_add(node_when, node, 1, NULL));
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002210 }
Radek Krejci4f2e3e52021-03-30 14:20:28 +02002211 if (node_exts) {
2212 /* remember to call all the extension's validation callbacks */
2213 LY_CHECK_RET(lysc_node_ext_tovalidate(node_exts, node));
2214 }
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002215 if (diff) {
2216 /* add into diff */
2217 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff));
2218 }
2219 }
2220 }
2221 break;
2222 default:
2223 /* without defaults */
2224 break;
2225 }
2226 }
2227
2228 return LY_SUCCESS;
2229}
2230
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002231LIBYANG_API_DEF LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002232lyd_new_implicit_tree(struct lyd_node *tree, uint32_t implicit_options, struct lyd_node **diff)
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002233{
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002234 LY_ERR ret = LY_SUCCESS;
Michal Vasko3488ada2020-12-03 14:18:19 +01002235 struct lyd_node *node;
Radek Krejci4f2e3e52021-03-30 14:20:28 +02002236 struct ly_set node_when = {0}, node_exts = {0};
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002237
2238 LY_CHECK_ARG_RET(NULL, tree, LY_EINVAL);
2239 if (diff) {
2240 *diff = NULL;
2241 }
2242
Michal Vasko56daf732020-08-10 10:57:18 +02002243 LYD_TREE_DFS_BEGIN(tree, node) {
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002244 /* skip added default nodes */
Michal Vasko69730152020-10-09 16:30:07 +02002245 if (((node->flags & (LYD_DEFAULT | LYD_NEW)) != (LYD_DEFAULT | LYD_NEW)) &&
2246 (node->schema->nodetype & LYD_NODE_INNER)) {
Radek Krejci4f2e3e52021-03-30 14:20:28 +02002247 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 +01002248 NULL, implicit_options, diff), cleanup);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002249 }
2250
Michal Vasko56daf732020-08-10 10:57:18 +02002251 LYD_TREE_DFS_END(tree, node);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002252 }
2253
Michal Vasko3488ada2020-12-03 14:18:19 +01002254 /* resolve when and remove any invalid defaults */
Michal Vasko976ec432021-12-06 15:42:22 +01002255 LY_CHECK_GOTO(ret = lyd_validate_unres(&tree, NULL, &node_when, LYXP_IGNORE_WHEN, &node_exts, NULL, NULL, diff),
2256 cleanup);
Michal Vasko3488ada2020-12-03 14:18:19 +01002257
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002258cleanup:
Michal Vasko3488ada2020-12-03 14:18:19 +01002259 ly_set_erase(&node_when, NULL);
Radek Krejci4f2e3e52021-03-30 14:20:28 +02002260 ly_set_erase(&node_exts, NULL);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002261 if (ret && diff) {
2262 lyd_free_all(*diff);
2263 *diff = NULL;
2264 }
2265 return ret;
2266}
2267
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002268LIBYANG_API_DEF LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002269lyd_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 +02002270{
2271 const struct lys_module *mod;
2272 struct lyd_node *d = NULL;
2273 uint32_t i = 0;
2274 LY_ERR ret = LY_SUCCESS;
2275
2276 LY_CHECK_ARG_RET(ctx, tree, *tree || ctx, LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +01002277 LY_CHECK_CTX_EQUAL_RET(*tree ? LYD_CTX(*tree) : NULL, ctx, LY_EINVAL);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002278 if (diff) {
2279 *diff = NULL;
2280 }
2281 if (!ctx) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002282 ctx = LYD_CTX(*tree);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002283 }
2284
2285 /* add nodes for each module one-by-one */
2286 while ((mod = ly_ctx_get_module_iter(ctx, &i))) {
2287 if (!mod->implemented) {
2288 continue;
2289 }
2290
2291 LY_CHECK_GOTO(ret = lyd_new_implicit_module(tree, mod, implicit_options, diff ? &d : NULL), cleanup);
2292 if (d) {
2293 /* merge into one diff */
2294 lyd_insert_sibling(*diff, d, diff);
2295
2296 d = NULL;
2297 }
2298 }
2299
2300cleanup:
2301 if (ret && diff) {
2302 lyd_free_all(*diff);
2303 *diff = NULL;
2304 }
2305 return ret;
2306}
2307
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002308LIBYANG_API_DEF LY_ERR
Michal Vasko892f5bf2021-11-24 10:41:05 +01002309lyd_new_implicit_module(struct lyd_node **tree, const struct lys_module *module, uint32_t implicit_options,
2310 struct lyd_node **diff)
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002311{
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002312 LY_ERR ret = LY_SUCCESS;
Michal Vasko3488ada2020-12-03 14:18:19 +01002313 struct lyd_node *root, *d = NULL;
Radek Krejci4f2e3e52021-03-30 14:20:28 +02002314 struct ly_set node_when = {0}, node_exts = {0};
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002315
2316 LY_CHECK_ARG_RET(NULL, tree, module, LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +01002317 LY_CHECK_CTX_EQUAL_RET(*tree ? LYD_CTX(*tree) : NULL, module ? module->ctx : NULL, LY_EINVAL);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002318 if (diff) {
2319 *diff = NULL;
2320 }
2321
2322 /* add all top-level defaults for this module */
Radek Krejci4f2e3e52021-03-30 14:20:28 +02002323 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 +01002324
2325 /* resolve when and remove any invalid defaults */
Michal Vasko976ec432021-12-06 15:42:22 +01002326 LY_CHECK_GOTO(ret = lyd_validate_unres(tree, module, &node_when, LYXP_IGNORE_WHEN, &node_exts, NULL, NULL, diff),
2327 cleanup);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002328
2329 /* process nested nodes */
2330 LY_LIST_FOR(*tree, root) {
2331 /* skip added default nodes */
2332 if ((root->flags & (LYD_DEFAULT | LYD_NEW)) != (LYD_DEFAULT | LYD_NEW)) {
2333 LY_CHECK_GOTO(ret = lyd_new_implicit_tree(root, implicit_options, diff ? &d : NULL), cleanup);
2334
2335 if (d) {
2336 /* merge into one diff */
2337 lyd_insert_sibling(*diff, d, diff);
2338
2339 d = NULL;
2340 }
2341 }
2342 }
2343
2344cleanup:
Michal Vasko3488ada2020-12-03 14:18:19 +01002345 ly_set_erase(&node_when, NULL);
Radek Krejci4f2e3e52021-03-30 14:20:28 +02002346 ly_set_erase(&node_exts, NULL);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02002347 if (ret && diff) {
2348 lyd_free_all(*diff);
2349 *diff = NULL;
2350 }
2351 return ret;
2352}
2353
Michal Vasko90932a92020-02-12 14:33:03 +01002354struct lyd_node *
Michal Vaskob104f112020-07-17 09:54:54 +02002355lyd_insert_get_next_anchor(const struct lyd_node *first_sibling, const struct lyd_node *new_node)
Michal Vasko90932a92020-02-12 14:33:03 +01002356{
Michal Vaskob104f112020-07-17 09:54:54 +02002357 const struct lysc_node *schema, *sparent;
Michal Vasko90932a92020-02-12 14:33:03 +01002358 struct lyd_node *match = NULL;
Radek Krejci857189e2020-09-01 13:26:36 +02002359 ly_bool found;
Michal Vasko93b16062020-12-09 18:14:18 +01002360 uint32_t getnext_opts;
Michal Vasko90932a92020-02-12 14:33:03 +01002361
Michal Vaskob104f112020-07-17 09:54:54 +02002362 assert(new_node);
2363
2364 if (!first_sibling || !new_node->schema) {
2365 /* insert at the end, no next anchor */
Michal Vasko90932a92020-02-12 14:33:03 +01002366 return NULL;
2367 }
2368
Michal Vasko93b16062020-12-09 18:14:18 +01002369 getnext_opts = 0;
Michal Vaskod1e53b92021-01-28 13:11:06 +01002370 if (new_node->schema->flags & LYS_IS_OUTPUT) {
Michal Vasko93b16062020-12-09 18:14:18 +01002371 getnext_opts = LYS_GETNEXT_OUTPUT;
2372 }
2373
Michal Vaskoa2756f02021-07-09 13:20:28 +02002374 if (first_sibling->parent && first_sibling->parent->schema && first_sibling->parent->children_ht) {
Michal Vaskob104f112020-07-17 09:54:54 +02002375 /* find the anchor using hashes */
2376 sparent = first_sibling->parent->schema;
Michal Vasko93b16062020-12-09 18:14:18 +01002377 schema = lys_getnext(new_node->schema, sparent, NULL, getnext_opts);
Michal Vaskob104f112020-07-17 09:54:54 +02002378 while (schema) {
2379 /* keep trying to find the first existing instance of the closest following schema sibling,
2380 * otherwise return NULL - inserting at the end */
2381 if (!lyd_find_sibling_schema(first_sibling, schema, &match)) {
2382 break;
2383 }
2384
Michal Vasko93b16062020-12-09 18:14:18 +01002385 schema = lys_getnext(schema, sparent, NULL, getnext_opts);
Michal Vaskob104f112020-07-17 09:54:54 +02002386 }
2387 } else {
2388 /* find the anchor without hashes */
2389 match = (struct lyd_node *)first_sibling;
Michal Vasko3a708622021-07-15 14:20:10 +02002390 sparent = lysc_data_parent(new_node->schema);
2391 if (!sparent) {
Michal Vaskob104f112020-07-17 09:54:54 +02002392 /* we are in top-level, skip all the data from preceding modules */
2393 LY_LIST_FOR(match, match) {
2394 if (!match->schema || (strcmp(lyd_owner_module(match)->name, lyd_owner_module(new_node)->name) >= 0)) {
2395 break;
2396 }
2397 }
2398 }
2399
2400 /* get the first schema sibling */
Michal Vasko93b16062020-12-09 18:14:18 +01002401 schema = lys_getnext(NULL, sparent, new_node->schema->module->compiled, getnext_opts);
Michal Vaskob104f112020-07-17 09:54:54 +02002402
2403 found = 0;
2404 LY_LIST_FOR(match, match) {
2405 if (!match->schema || (lyd_owner_module(match) != lyd_owner_module(new_node))) {
2406 /* we have found an opaque node, which must be at the end, so use it OR
2407 * modules do not match, so we must have traversed all the data from new_node module (if any),
2408 * we have found the first node of the next module, that is what we want */
2409 break;
2410 }
2411
2412 /* skip schema nodes until we find the instantiated one */
2413 while (!found) {
2414 if (new_node->schema == schema) {
2415 /* we have found the schema of the new node, continue search to find the first
2416 * data node with a different schema (after our schema) */
2417 found = 1;
2418 break;
2419 }
2420 if (match->schema == schema) {
2421 /* current node (match) is a data node still before the new node, continue search in data */
2422 break;
2423 }
Michal Vasko93b16062020-12-09 18:14:18 +01002424 schema = lys_getnext(schema, sparent, new_node->schema->module->compiled, getnext_opts);
Michal Vaskob104f112020-07-17 09:54:54 +02002425 assert(schema);
2426 }
2427
2428 if (found && (match->schema != new_node->schema)) {
2429 /* find the next node after we have found our node schema data instance */
2430 break;
2431 }
2432 }
Michal Vasko90932a92020-02-12 14:33:03 +01002433 }
2434
2435 return match;
2436}
2437
2438/**
2439 * @brief Insert node after a sibling.
2440 *
Michal Vasko9f96a052020-03-10 09:41:45 +01002441 * Handles inserting into NP containers and key-less lists.
2442 *
Michal Vasko90932a92020-02-12 14:33:03 +01002443 * @param[in] sibling Sibling to insert after.
2444 * @param[in] node Node to insert.
2445 */
2446static void
Michal Vaskof03ed032020-03-04 13:31:44 +01002447lyd_insert_after_node(struct lyd_node *sibling, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01002448{
Michal Vasko0249f7c2020-03-05 16:36:40 +01002449 struct lyd_node_inner *par;
2450
Michal Vasko90932a92020-02-12 14:33:03 +01002451 assert(!node->next && (node->prev == node));
2452
2453 node->next = sibling->next;
2454 node->prev = sibling;
2455 sibling->next = node;
2456 if (node->next) {
2457 /* sibling had a succeeding node */
2458 node->next->prev = node;
2459 } else {
2460 /* sibling was last, find first sibling and change its prev */
2461 if (sibling->parent) {
2462 sibling = sibling->parent->child;
2463 } else {
Michal Vaskod989ba02020-08-24 10:59:24 +02002464 for ( ; sibling->prev->next != node; sibling = sibling->prev) {}
Michal Vasko90932a92020-02-12 14:33:03 +01002465 }
2466 sibling->prev = node;
2467 }
2468 node->parent = sibling->parent;
Michal Vasko0249f7c2020-03-05 16:36:40 +01002469
Michal Vasko9f96a052020-03-10 09:41:45 +01002470 for (par = node->parent; par; par = par->parent) {
2471 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
2472 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01002473 par->flags &= ~LYD_DEFAULT;
2474 }
2475 }
Michal Vasko90932a92020-02-12 14:33:03 +01002476}
2477
2478/**
2479 * @brief Insert node before a sibling.
2480 *
Michal Vasko9f96a052020-03-10 09:41:45 +01002481 * Handles inserting into NP containers and key-less lists.
2482 *
Michal Vasko90932a92020-02-12 14:33:03 +01002483 * @param[in] sibling Sibling to insert before.
2484 * @param[in] node Node to insert.
2485 */
2486static void
Michal Vaskof03ed032020-03-04 13:31:44 +01002487lyd_insert_before_node(struct lyd_node *sibling, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01002488{
Michal Vasko0249f7c2020-03-05 16:36:40 +01002489 struct lyd_node_inner *par;
2490
Michal Vasko90932a92020-02-12 14:33:03 +01002491 assert(!node->next && (node->prev == node));
2492
2493 node->next = sibling;
2494 /* covers situation of sibling being first */
2495 node->prev = sibling->prev;
2496 sibling->prev = node;
2497 if (node->prev->next) {
2498 /* sibling had a preceding node */
2499 node->prev->next = node;
2500 } else if (sibling->parent) {
2501 /* sibling was first and we must also change parent child pointer */
2502 sibling->parent->child = node;
2503 }
2504 node->parent = sibling->parent;
Michal Vasko0249f7c2020-03-05 16:36:40 +01002505
Michal Vasko9f96a052020-03-10 09:41:45 +01002506 for (par = node->parent; par; par = par->parent) {
2507 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
2508 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01002509 par->flags &= ~LYD_DEFAULT;
2510 }
2511 }
Michal Vasko90932a92020-02-12 14:33:03 +01002512}
2513
2514/**
Michal Vaskob104f112020-07-17 09:54:54 +02002515 * @brief Insert node as the first and only child of a parent.
Michal Vasko90932a92020-02-12 14:33:03 +01002516 *
Michal Vasko9f96a052020-03-10 09:41:45 +01002517 * Handles inserting into NP containers and key-less lists.
2518 *
Michal Vasko90932a92020-02-12 14:33:03 +01002519 * @param[in] parent Parent to insert into.
2520 * @param[in] node Node to insert.
2521 */
2522static void
Michal Vaskob104f112020-07-17 09:54:54 +02002523lyd_insert_only_child(struct lyd_node *parent, struct lyd_node *node)
Michal Vasko90932a92020-02-12 14:33:03 +01002524{
2525 struct lyd_node_inner *par;
2526
Radek Krejcia1c1e542020-09-29 16:06:52 +02002527 assert(parent && !lyd_child(parent) && !node->next && (node->prev == node));
Michal Vasko52927e22020-03-16 17:26:14 +01002528 assert(!parent->schema || (parent->schema->nodetype & LYD_NODE_INNER));
Michal Vasko90932a92020-02-12 14:33:03 +01002529
2530 par = (struct lyd_node_inner *)parent;
2531
Michal Vaskob104f112020-07-17 09:54:54 +02002532 par->child = node;
Michal Vasko90932a92020-02-12 14:33:03 +01002533 node->parent = par;
Michal Vasko0249f7c2020-03-05 16:36:40 +01002534
Michal Vaskod989ba02020-08-24 10:59:24 +02002535 for ( ; par; par = par->parent) {
Michal Vasko9f96a052020-03-10 09:41:45 +01002536 if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) {
2537 /* remove default flags from NP containers */
Michal Vasko0249f7c2020-03-05 16:36:40 +01002538 par->flags &= ~LYD_DEFAULT;
2539 }
2540 }
Michal Vasko751cb4d2020-07-14 12:25:28 +02002541}
Michal Vasko0249f7c2020-03-05 16:36:40 +01002542
Michal Vasko751cb4d2020-07-14 12:25:28 +02002543/**
2544 * @brief Learn whether a list instance has all the keys.
2545 *
2546 * @param[in] list List instance to check.
2547 * @return non-zero if all the keys were found,
2548 * @return 0 otherwise.
2549 */
2550static int
2551lyd_insert_has_keys(const struct lyd_node *list)
2552{
2553 const struct lyd_node *key;
2554 const struct lysc_node *skey = NULL;
2555
2556 assert(list->schema->nodetype == LYS_LIST);
Radek Krejcia1c1e542020-09-29 16:06:52 +02002557 key = lyd_child(list);
Michal Vasko751cb4d2020-07-14 12:25:28 +02002558 while ((skey = lys_getnext(skey, list->schema, NULL, 0)) && (skey->flags & LYS_KEY)) {
2559 if (!key || (key->schema != skey)) {
2560 /* key missing */
2561 return 0;
2562 }
2563
2564 key = key->next;
2565 }
2566
2567 /* all keys found */
2568 return 1;
Michal Vasko90932a92020-02-12 14:33:03 +01002569}
2570
2571void
Michal Vasko6ee6f432021-07-16 09:49:14 +02002572lyd_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 +01002573{
Michal Vaskob104f112020-07-17 09:54:54 +02002574 struct lyd_node *anchor, *first_sibling;
Michal Vasko90932a92020-02-12 14:33:03 +01002575
Michal Vaskob104f112020-07-17 09:54:54 +02002576 /* inserting list without its keys is not supported */
2577 assert((parent || first_sibling_p) && node && (node->hash || !node->schema));
Michal Vaskof756c942020-11-06 17:21:37 +01002578 assert(!parent || !parent->schema ||
2579 (parent->schema->nodetype & (LYS_CONTAINER | LYS_LIST | LYS_RPC | LYS_ACTION | LYS_NOTIF)));
Michal Vasko9b368d32020-02-14 13:53:31 +01002580
Michal Vaskob104f112020-07-17 09:54:54 +02002581 if (!parent && first_sibling_p && (*first_sibling_p) && (*first_sibling_p)->parent) {
Michal Vasko9e685082021-01-29 14:49:09 +01002582 parent = lyd_parent(*first_sibling_p);
Michal Vasko9b368d32020-02-14 13:53:31 +01002583 }
Michal Vasko90932a92020-02-12 14:33:03 +01002584
Michal Vaskob104f112020-07-17 09:54:54 +02002585 /* get first sibling */
Michal Vasko9e685082021-01-29 14:49:09 +01002586 first_sibling = parent ? lyd_child(parent) : *first_sibling_p;
Michal Vasko9f96a052020-03-10 09:41:45 +01002587
Michal Vasko6ee6f432021-07-16 09:49:14 +02002588 if (last) {
2589 /* no next anchor */
2590 anchor = NULL;
2591 } else {
2592 /* find the anchor, our next node, so we can insert before it */
2593 anchor = lyd_insert_get_next_anchor(first_sibling, node);
2594 }
2595
Michal Vaskob104f112020-07-17 09:54:54 +02002596 if (anchor) {
Michal Vasko6ee6f432021-07-16 09:49:14 +02002597 /* insert before the anchor */
Michal Vaskob104f112020-07-17 09:54:54 +02002598 lyd_insert_before_node(anchor, node);
Michal Vasko26123192020-11-09 21:02:34 +01002599 if (!parent && (*first_sibling_p == anchor)) {
2600 /* move first sibling */
2601 *first_sibling_p = node;
2602 }
Michal Vaskob104f112020-07-17 09:54:54 +02002603 } else if (first_sibling) {
Michal Vasko6ee6f432021-07-16 09:49:14 +02002604 /* insert as the last node */
Michal Vaskob104f112020-07-17 09:54:54 +02002605 lyd_insert_after_node(first_sibling->prev, node);
2606 } else if (parent) {
Michal Vasko6ee6f432021-07-16 09:49:14 +02002607 /* insert as the only child */
Michal Vaskob104f112020-07-17 09:54:54 +02002608 lyd_insert_only_child(parent, node);
Michal Vasko90932a92020-02-12 14:33:03 +01002609 } else {
Michal Vasko6ee6f432021-07-16 09:49:14 +02002610 /* insert as the only sibling */
Michal Vaskob104f112020-07-17 09:54:54 +02002611 *first_sibling_p = node;
2612 }
2613
2614 /* insert into parent HT */
2615 lyd_insert_hash(node);
2616
2617 /* finish hashes for our parent, if needed and possible */
Michal Vasko9e8de2d2020-09-01 08:17:10 +02002618 if (node->schema && (node->schema->flags & LYS_KEY) && parent && lyd_insert_has_keys(parent)) {
Michal Vaskob104f112020-07-17 09:54:54 +02002619 lyd_hash(parent);
2620
2621 /* now we can insert even the list into its parent HT */
2622 lyd_insert_hash(parent);
Michal Vasko90932a92020-02-12 14:33:03 +01002623 }
Michal Vasko90932a92020-02-12 14:33:03 +01002624}
2625
Michal Vasko717a4c32020-12-07 09:40:10 +01002626/**
2627 * @brief Check schema place of a node to be inserted.
2628 *
2629 * @param[in] parent Schema node of the parent data node.
2630 * @param[in] sibling Schema node of a sibling data node.
2631 * @param[in] schema Schema node if the data node to be inserted.
2632 * @return LY_SUCCESS on success.
2633 * @return LY_EINVAL if the place is invalid.
2634 */
Michal Vaskof03ed032020-03-04 13:31:44 +01002635static LY_ERR
Michal Vasko717a4c32020-12-07 09:40:10 +01002636lyd_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 +01002637{
2638 const struct lysc_node *par2;
2639
Michal Vasko62ed12d2020-05-21 10:08:25 +02002640 assert(!parent || !(parent->nodetype & (LYS_CASE | LYS_CHOICE)));
Michal Vasko717a4c32020-12-07 09:40:10 +01002641 assert(!sibling || !(sibling->nodetype & (LYS_CASE | LYS_CHOICE)));
2642 assert(!schema || !(schema->nodetype & (LYS_CASE | LYS_CHOICE)));
Michal Vaskof03ed032020-03-04 13:31:44 +01002643
Michal Vasko717a4c32020-12-07 09:40:10 +01002644 if (!schema || (!parent && !sibling)) {
Michal Vasko71e795e2020-12-04 16:27:37 +01002645 /* opaque nodes can be inserted wherever */
2646 return LY_SUCCESS;
2647 }
2648
Michal Vasko717a4c32020-12-07 09:40:10 +01002649 if (!parent) {
2650 parent = lysc_data_parent(sibling);
2651 }
2652
Michal Vaskof03ed032020-03-04 13:31:44 +01002653 /* find schema parent */
Michal Vasko62ed12d2020-05-21 10:08:25 +02002654 par2 = lysc_data_parent(schema);
Michal Vaskof03ed032020-03-04 13:31:44 +01002655
2656 if (parent) {
2657 /* inner node */
2658 if (par2 != parent) {
Michal Vaskob104f112020-07-17 09:54:54 +02002659 LOGERR(schema->module->ctx, LY_EINVAL, "Cannot insert, parent of \"%s\" is not \"%s\".", schema->name,
Michal Vasko69730152020-10-09 16:30:07 +02002660 parent->name);
Michal Vaskof03ed032020-03-04 13:31:44 +01002661 return LY_EINVAL;
2662 }
2663 } else {
2664 /* top-level node */
2665 if (par2) {
Radek Krejcif6d14cb2020-07-02 16:11:45 +02002666 LOGERR(schema->module->ctx, LY_EINVAL, "Cannot insert, node \"%s\" is not top-level.", schema->name);
Michal Vaskof03ed032020-03-04 13:31:44 +01002667 return LY_EINVAL;
2668 }
2669 }
2670
2671 return LY_SUCCESS;
2672}
2673
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002674LIBYANG_API_DEF LY_ERR
Michal Vaskob104f112020-07-17 09:54:54 +02002675lyd_insert_child(struct lyd_node *parent, struct lyd_node *node)
Michal Vaskof03ed032020-03-04 13:31:44 +01002676{
2677 struct lyd_node *iter;
2678
Michal Vasko0ab974d2021-02-24 13:18:26 +01002679 LY_CHECK_ARG_RET(NULL, parent, node, !parent->schema || (parent->schema->nodetype & LYD_NODE_INNER), LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +01002680 LY_CHECK_CTX_EQUAL_RET(LYD_CTX(parent), LYD_CTX(node), LY_EINVAL);
Michal Vaskof03ed032020-03-04 13:31:44 +01002681
Michal Vasko717a4c32020-12-07 09:40:10 +01002682 LY_CHECK_RET(lyd_insert_check_schema(parent->schema, NULL, node->schema));
Michal Vaskof03ed032020-03-04 13:31:44 +01002683
Michal Vasko0ab974d2021-02-24 13:18:26 +01002684 if (node->schema && (node->schema->flags & LYS_KEY)) {
Michal Vaskof03ed032020-03-04 13:31:44 +01002685 LOGERR(parent->schema->module->ctx, LY_EINVAL, "Cannot insert key \"%s\".", node->schema->name);
2686 return LY_EINVAL;
2687 }
2688
2689 if (node->parent || node->prev->next) {
2690 lyd_unlink_tree(node);
2691 }
2692
2693 while (node) {
2694 iter = node->next;
2695 lyd_unlink_tree(node);
Michal Vasko6ee6f432021-07-16 09:49:14 +02002696 lyd_insert_node(parent, NULL, node, 0);
Michal Vaskof03ed032020-03-04 13:31:44 +01002697 node = iter;
2698 }
2699 return LY_SUCCESS;
2700}
2701
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002702LIBYANG_API_DEF LY_ERR
Michal Vaskob104f112020-07-17 09:54:54 +02002703lyd_insert_sibling(struct lyd_node *sibling, struct lyd_node *node, struct lyd_node **first)
Michal Vaskob1b5c262020-03-05 14:29:47 +01002704{
2705 struct lyd_node *iter;
2706
Michal Vaskob104f112020-07-17 09:54:54 +02002707 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +01002708 LY_CHECK_CTX_EQUAL_RET(sibling ? LYD_CTX(sibling) : NULL, LYD_CTX(node), LY_EINVAL);
Michal Vaskob1b5c262020-03-05 14:29:47 +01002709
Michal Vaskob104f112020-07-17 09:54:54 +02002710 if (sibling) {
Michal Vasko717a4c32020-12-07 09:40:10 +01002711 LY_CHECK_RET(lyd_insert_check_schema(NULL, sibling->schema, node->schema));
Michal Vaskob1b5c262020-03-05 14:29:47 +01002712 }
2713
Michal Vasko553d0b52020-12-04 16:27:52 +01002714 if (sibling == node) {
2715 /* we need to keep the connection to siblings so we can insert into them */
2716 sibling = sibling->prev;
2717 }
2718
Michal Vaskob1b5c262020-03-05 14:29:47 +01002719 if (node->parent || node->prev->next) {
2720 lyd_unlink_tree(node);
2721 }
2722
2723 while (node) {
Michal Vasko71e795e2020-12-04 16:27:37 +01002724 if (lysc_is_key(node->schema)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002725 LOGERR(LYD_CTX(node), LY_EINVAL, "Cannot insert key \"%s\".", node->schema->name);
Michal Vaskob104f112020-07-17 09:54:54 +02002726 return LY_EINVAL;
2727 }
2728
Michal Vaskob1b5c262020-03-05 14:29:47 +01002729 iter = node->next;
2730 lyd_unlink_tree(node);
Michal Vasko6ee6f432021-07-16 09:49:14 +02002731 lyd_insert_node(NULL, &sibling, node, 0);
Michal Vaskob1b5c262020-03-05 14:29:47 +01002732 node = iter;
2733 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01002734
Michal Vaskob104f112020-07-17 09:54:54 +02002735 if (first) {
2736 /* find the first sibling */
2737 *first = sibling;
2738 while ((*first)->prev->next) {
2739 *first = (*first)->prev;
Michal Vasko0249f7c2020-03-05 16:36:40 +01002740 }
2741 }
2742
2743 return LY_SUCCESS;
2744}
2745
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002746LIBYANG_API_DEF LY_ERR
Michal Vaskof03ed032020-03-04 13:31:44 +01002747lyd_insert_before(struct lyd_node *sibling, struct lyd_node *node)
2748{
Michal Vaskof03ed032020-03-04 13:31:44 +01002749 LY_CHECK_ARG_RET(NULL, sibling, node, LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +01002750 LY_CHECK_CTX_EQUAL_RET(LYD_CTX(sibling), LYD_CTX(node), LY_EINVAL);
Michal Vaskof03ed032020-03-04 13:31:44 +01002751
Michal Vasko717a4c32020-12-07 09:40:10 +01002752 LY_CHECK_RET(lyd_insert_check_schema(NULL, sibling->schema, node->schema));
Michal Vaskof03ed032020-03-04 13:31:44 +01002753
Michal Vaskob104f112020-07-17 09:54:54 +02002754 if (!(node->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !(node->schema->flags & LYS_ORDBY_USER)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002755 LOGERR(LYD_CTX(sibling), LY_EINVAL, "Can be used only for user-ordered nodes.");
Michal Vaskof03ed032020-03-04 13:31:44 +01002756 return LY_EINVAL;
2757 }
2758
Michal Vasko4bc2ce32020-12-08 10:06:16 +01002759 lyd_unlink_tree(node);
2760 lyd_insert_before_node(sibling, node);
2761 lyd_insert_hash(node);
Michal Vaskof03ed032020-03-04 13:31:44 +01002762
Michal Vaskof03ed032020-03-04 13:31:44 +01002763 return LY_SUCCESS;
2764}
2765
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002766LIBYANG_API_DEF LY_ERR
Michal Vaskof03ed032020-03-04 13:31:44 +01002767lyd_insert_after(struct lyd_node *sibling, struct lyd_node *node)
2768{
Michal Vaskof03ed032020-03-04 13:31:44 +01002769 LY_CHECK_ARG_RET(NULL, sibling, node, LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +01002770 LY_CHECK_CTX_EQUAL_RET(LYD_CTX(sibling), LYD_CTX(node), LY_EINVAL);
Michal Vaskof03ed032020-03-04 13:31:44 +01002771
Michal Vasko717a4c32020-12-07 09:40:10 +01002772 LY_CHECK_RET(lyd_insert_check_schema(NULL, sibling->schema, node->schema));
Michal Vaskof03ed032020-03-04 13:31:44 +01002773
Michal Vaskob104f112020-07-17 09:54:54 +02002774 if (!(node->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !(node->schema->flags & LYS_ORDBY_USER)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002775 LOGERR(LYD_CTX(sibling), LY_EINVAL, "Can be used only for user-ordered nodes.");
Michal Vaskof03ed032020-03-04 13:31:44 +01002776 return LY_EINVAL;
2777 }
2778
Michal Vasko4bc2ce32020-12-08 10:06:16 +01002779 lyd_unlink_tree(node);
2780 lyd_insert_after_node(sibling, node);
2781 lyd_insert_hash(node);
Michal Vaskof03ed032020-03-04 13:31:44 +01002782
Michal Vaskof03ed032020-03-04 13:31:44 +01002783 return LY_SUCCESS;
2784}
2785
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002786LIBYANG_API_DEF void
Michal Vasko66d508c2021-07-21 16:07:09 +02002787lyd_unlink_siblings(struct lyd_node *node)
2788{
2789 struct lyd_node *next, *elem, *first = NULL;
2790
2791 LY_LIST_FOR_SAFE(node, next, elem) {
2792 lyd_unlink_tree(elem);
2793 lyd_insert_node(NULL, &first, elem, 1);
2794 }
2795}
2796
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002797LIBYANG_API_DEF void
Michal Vaskof03ed032020-03-04 13:31:44 +01002798lyd_unlink_tree(struct lyd_node *node)
2799{
2800 struct lyd_node *iter;
2801
2802 if (!node) {
2803 return;
2804 }
2805
Michal Vaskob104f112020-07-17 09:54:54 +02002806 /* update hashes while still linked into the tree */
2807 lyd_unlink_hash(node);
2808
Michal Vaskof03ed032020-03-04 13:31:44 +01002809 /* unlink from siblings */
2810 if (node->prev->next) {
2811 node->prev->next = node->next;
2812 }
2813 if (node->next) {
2814 node->next->prev = node->prev;
2815 } else {
2816 /* unlinking the last node */
2817 if (node->parent) {
2818 iter = node->parent->child;
2819 } else {
2820 iter = node->prev;
2821 while (iter->prev != node) {
2822 iter = iter->prev;
2823 }
2824 }
2825 /* update the "last" pointer from the first node */
2826 iter->prev = node->prev;
2827 }
2828
2829 /* unlink from parent */
2830 if (node->parent) {
2831 if (node->parent->child == node) {
2832 /* the node is the first child */
2833 node->parent->child = node->next;
2834 }
2835
Michal Vaskoab49dbe2020-07-17 12:32:47 +02002836 /* check for NP container whether its last non-default node is not being unlinked */
Michal Vasko69730152020-10-09 16:30:07 +02002837 if (node->parent->schema && (node->parent->schema->nodetype == LYS_CONTAINER) &&
2838 !(node->parent->flags & LYD_DEFAULT) && !(node->parent->schema->flags & LYS_PRESENCE)) {
Michal Vaskoab49dbe2020-07-17 12:32:47 +02002839 LY_LIST_FOR(node->parent->child, iter) {
2840 if ((iter != node) && !(iter->flags & LYD_DEFAULT)) {
2841 break;
2842 }
2843 }
2844 if (!iter) {
2845 node->parent->flags |= LYD_DEFAULT;
2846 }
2847 }
2848
Michal Vaskof03ed032020-03-04 13:31:44 +01002849 node->parent = NULL;
2850 }
2851
2852 node->next = NULL;
2853 node->prev = node;
2854}
2855
Michal Vaskoa5da3292020-08-12 13:10:50 +02002856void
Michal Vasko871a0252020-11-11 18:35:24 +01002857lyd_insert_meta(struct lyd_node *parent, struct lyd_meta *meta, ly_bool clear_dflt)
Radek Krejci1798aae2020-07-14 13:26:06 +02002858{
2859 struct lyd_meta *last, *iter;
2860
2861 assert(parent);
Michal Vaskoa5da3292020-08-12 13:10:50 +02002862
2863 if (!meta) {
2864 return;
2865 }
Radek Krejci1798aae2020-07-14 13:26:06 +02002866
2867 for (iter = meta; iter; iter = iter->next) {
2868 iter->parent = parent;
2869 }
2870
2871 /* insert as the last attribute */
2872 if (parent->meta) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002873 for (last = parent->meta; last->next; last = last->next) {}
Radek Krejci1798aae2020-07-14 13:26:06 +02002874 last->next = meta;
2875 } else {
2876 parent->meta = meta;
2877 }
2878
2879 /* remove default flags from NP containers */
Michal Vasko871a0252020-11-11 18:35:24 +01002880 while (clear_dflt && parent && (parent->schema->nodetype == LYS_CONTAINER) && (parent->flags & LYD_DEFAULT)) {
Radek Krejci1798aae2020-07-14 13:26:06 +02002881 parent->flags &= ~LYD_DEFAULT;
Michal Vasko9e685082021-01-29 14:49:09 +01002882 parent = lyd_parent(parent);
Radek Krejci1798aae2020-07-14 13:26:06 +02002883 }
Radek Krejci1798aae2020-07-14 13:26:06 +02002884}
2885
2886LY_ERR
Michal Vasko9f96a052020-03-10 09:41:45 +01002887lyd_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 +02002888 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 +01002889 void *prefix_data, uint32_t hints, ly_bool clear_dflt, ly_bool *incomplete)
Michal Vasko90932a92020-02-12 14:33:03 +01002890{
Radek Krejci2efc45b2020-12-22 16:25:44 +01002891 LY_ERR ret = LY_SUCCESS;
Michal Vasko90932a92020-02-12 14:33:03 +01002892 struct lysc_ext_instance *ant = NULL;
Michal Vaskob0534f92021-07-01 13:24:03 +02002893 const struct lysc_type **ant_type;
Michal Vasko9f96a052020-03-10 09:41:45 +01002894 struct lyd_meta *mt, *last;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002895 LY_ARRAY_COUNT_TYPE u;
Michal Vasko90932a92020-02-12 14:33:03 +01002896
Michal Vasko9f96a052020-03-10 09:41:45 +01002897 assert((parent || meta) && mod);
Michal Vasko6f4cbb62020-02-28 11:15:47 +01002898
Radek Krejciddace2c2021-01-08 11:30:56 +01002899 LOG_LOCSET(parent ? parent->schema : NULL, parent, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01002900
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002901 LY_ARRAY_FOR(mod->compiled->exts, u) {
Radek Krejci3e6632f2021-03-22 22:08:21 +01002902 if ((mod->compiled->exts[u].def->plugin == lyplg_find(LYPLG_EXTENSION, LYEXT_PLUGIN_INTERNAL_ANNOTATION)) &&
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002903 !ly_strncmp(mod->compiled->exts[u].argument, name, name_len)) {
Michal Vasko90932a92020-02-12 14:33:03 +01002904 /* we have the annotation definition */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002905 ant = &mod->compiled->exts[u];
Michal Vasko90932a92020-02-12 14:33:03 +01002906 break;
2907 }
2908 }
2909 if (!ant) {
2910 /* attribute is not defined as a metadata annotation (RFC 7952) */
Radek Krejci2efc45b2020-12-22 16:25:44 +01002911 LOGVAL(mod->ctx, LYVE_REFERENCE, "Annotation definition for attribute \"%s:%.*s\" not found.",
Radek Krejci422afb12021-03-04 16:38:16 +01002912 mod->name, (int)name_len, name);
Radek Krejci2efc45b2020-12-22 16:25:44 +01002913 ret = LY_EINVAL;
2914 goto cleanup;
Michal Vasko90932a92020-02-12 14:33:03 +01002915 }
2916
Michal Vasko9f96a052020-03-10 09:41:45 +01002917 mt = calloc(1, sizeof *mt);
Radek Krejci2efc45b2020-12-22 16:25:44 +01002918 LY_CHECK_ERR_GOTO(!mt, LOGMEM(mod->ctx); ret = LY_EMEM, cleanup);
Michal Vasko9f96a052020-03-10 09:41:45 +01002919 mt->parent = parent;
2920 mt->annotation = ant;
Michal Vaskob0534f92021-07-01 13:24:03 +02002921 ant_type = ant->substmts[ANNOTATION_SUBSTMT_TYPE].storage;
2922 ret = lyd_value_store(mod->ctx, &mt->value, *ant_type, value, value_len, dynamic, format, prefix_data, hints,
2923 parent ? parent->schema : NULL, incomplete);
Radek Krejci2efc45b2020-12-22 16:25:44 +01002924 LY_CHECK_ERR_GOTO(ret, free(mt), cleanup);
2925 ret = lydict_insert(mod->ctx, name, name_len, &mt->name);
2926 LY_CHECK_ERR_GOTO(ret, free(mt), cleanup);
Michal Vasko90932a92020-02-12 14:33:03 +01002927
Michal Vasko6f4cbb62020-02-28 11:15:47 +01002928 /* insert as the last attribute */
2929 if (parent) {
Michal Vasko871a0252020-11-11 18:35:24 +01002930 lyd_insert_meta(parent, mt, clear_dflt);
Michal Vasko9f96a052020-03-10 09:41:45 +01002931 } else if (*meta) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002932 for (last = *meta; last->next; last = last->next) {}
Michal Vasko9f96a052020-03-10 09:41:45 +01002933 last->next = mt;
Michal Vasko90932a92020-02-12 14:33:03 +01002934 }
2935
Michal Vasko9f96a052020-03-10 09:41:45 +01002936 if (meta) {
2937 *meta = mt;
Michal Vasko90932a92020-02-12 14:33:03 +01002938 }
Radek Krejci2efc45b2020-12-22 16:25:44 +01002939
2940cleanup:
Radek Krejciddace2c2021-01-08 11:30:56 +01002941 LOG_LOCBACK((parent && parent->schema) ? 1 : 0, parent ? 1 : 0, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +01002942 return ret;
Michal Vasko90932a92020-02-12 14:33:03 +01002943}
2944
Michal Vaskoa5da3292020-08-12 13:10:50 +02002945void
2946lyd_insert_attr(struct lyd_node *parent, struct lyd_attr *attr)
2947{
2948 struct lyd_attr *last, *iter;
2949 struct lyd_node_opaq *opaq;
2950
2951 assert(parent && !parent->schema);
2952
2953 if (!attr) {
2954 return;
2955 }
2956
2957 opaq = (struct lyd_node_opaq *)parent;
2958 for (iter = attr; iter; iter = iter->next) {
2959 iter->parent = opaq;
2960 }
2961
2962 /* insert as the last attribute */
2963 if (opaq->attr) {
Radek Krejci1e008d22020-08-17 11:37:37 +02002964 for (last = opaq->attr; last->next; last = last->next) {}
Michal Vaskoa5da3292020-08-12 13:10:50 +02002965 last->next = attr;
2966 } else {
2967 opaq->attr = attr;
2968 }
2969}
2970
Michal Vasko52927e22020-03-16 17:26:14 +01002971LY_ERR
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002972lyd_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 +01002973 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 +02002974 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 +01002975{
Radek Krejci011e4aa2020-09-04 15:22:31 +02002976 LY_ERR ret = LY_SUCCESS;
Radek Krejci1798aae2020-07-14 13:26:06 +02002977 struct lyd_attr *at, *last;
Michal Vasko52927e22020-03-16 17:26:14 +01002978
2979 assert(ctx && (parent || attr) && (!parent || !parent->schema));
Michal Vaskofeca4fb2020-10-05 08:58:40 +02002980 assert(name && name_len && format);
Michal Vasko52927e22020-03-16 17:26:14 +01002981
Michal Vasko2a3722d2021-06-16 11:52:39 +02002982 if (!value_len && (!dynamic || !*dynamic)) {
Michal Vasko52927e22020-03-16 17:26:14 +01002983 value = "";
2984 }
2985
2986 at = calloc(1, sizeof *at);
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01002987 LY_CHECK_ERR_RET(!at, LOGMEM(ctx); ly_free_prefix_data(format, val_prefix_data), LY_EMEM);
Radek Krejcid46e46a2020-09-15 14:22:42 +02002988
Michal Vaskoad92b672020-11-12 13:11:31 +01002989 LY_CHECK_GOTO(ret = lydict_insert(ctx, name, name_len, &at->name.name), finish);
Michal Vasko501af032020-11-11 20:27:44 +01002990 if (prefix_len) {
Michal Vaskoad92b672020-11-12 13:11:31 +01002991 LY_CHECK_GOTO(ret = lydict_insert(ctx, prefix, prefix_len, &at->name.prefix), finish);
Michal Vasko501af032020-11-11 20:27:44 +01002992 }
2993 if (module_key_len) {
Michal Vaskoad92b672020-11-12 13:11:31 +01002994 LY_CHECK_GOTO(ret = lydict_insert(ctx, module_key, module_key_len, &at->name.module_ns), finish);
Michal Vasko501af032020-11-11 20:27:44 +01002995 }
2996
Michal Vasko52927e22020-03-16 17:26:14 +01002997 if (dynamic && *dynamic) {
Radek Krejci011e4aa2020-09-04 15:22:31 +02002998 ret = lydict_insert_zc(ctx, (char *)value, &at->value);
2999 LY_CHECK_GOTO(ret, finish);
Michal Vasko52927e22020-03-16 17:26:14 +01003000 *dynamic = 0;
3001 } else {
Radek Krejci011e4aa2020-09-04 15:22:31 +02003002 LY_CHECK_GOTO(ret = lydict_insert(ctx, value, value_len, &at->value), finish);
Michal Vasko52927e22020-03-16 17:26:14 +01003003 }
Michal Vasko501af032020-11-11 20:27:44 +01003004 at->format = format;
3005 at->val_prefix_data = val_prefix_data;
3006 at->hints = hints;
Michal Vasko52927e22020-03-16 17:26:14 +01003007
3008 /* insert as the last attribute */
3009 if (parent) {
Michal Vaskoa5da3292020-08-12 13:10:50 +02003010 lyd_insert_attr(parent, at);
Michal Vasko52927e22020-03-16 17:26:14 +01003011 } else if (*attr) {
Radek Krejci1e008d22020-08-17 11:37:37 +02003012 for (last = *attr; last->next; last = last->next) {}
Michal Vasko52927e22020-03-16 17:26:14 +01003013 last->next = at;
3014 }
3015
Radek Krejci011e4aa2020-09-04 15:22:31 +02003016finish:
3017 if (ret) {
3018 lyd_free_attr_single(ctx, at);
3019 } else if (attr) {
Michal Vasko52927e22020-03-16 17:26:14 +01003020 *attr = at;
3021 }
3022 return LY_SUCCESS;
3023}
3024
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01003025LIBYANG_API_DEF const struct lyd_node_term *
Michal Vasko004d3152020-06-11 19:59:22 +02003026lyd_target(const struct ly_path *path, const struct lyd_node *tree)
Radek Krejci084289f2019-07-09 17:35:30 +02003027{
Michal Vasko004d3152020-06-11 19:59:22 +02003028 struct lyd_node *target;
Radek Krejci084289f2019-07-09 17:35:30 +02003029
Michal Vasko004d3152020-06-11 19:59:22 +02003030 if (ly_path_eval(path, tree, &target)) {
3031 return NULL;
Radek Krejci084289f2019-07-09 17:35:30 +02003032 }
3033
Michal Vasko004d3152020-06-11 19:59:22 +02003034 return (struct lyd_node_term *)target;
Radek Krejci084289f2019-07-09 17:35:30 +02003035}
3036
aPiecek2f63f952021-03-30 12:22:18 +02003037/**
3038 * @brief Check the equality of the two schemas from different contexts.
3039 *
3040 * @param schema1 of first node.
3041 * @param schema2 of second node.
3042 * @return 1 if the schemas are equal otherwise 0.
3043 */
3044static ly_bool
3045lyd_compare_schema_equal(const struct lysc_node *schema1, const struct lysc_node *schema2)
3046{
3047 if (!schema1 && !schema2) {
3048 return 1;
3049 } else if (!schema1 || !schema2) {
3050 return 0;
3051 }
3052
3053 assert(schema1->module->ctx != schema2->module->ctx);
3054
3055 if (schema1->nodetype != schema2->nodetype) {
3056 return 0;
3057 }
3058
3059 if (strcmp(schema1->name, schema2->name)) {
3060 return 0;
3061 }
3062
3063 if (strcmp(schema1->module->name, schema2->module->name)) {
3064 return 0;
3065 }
3066
3067 if (schema1->module->revision || schema2->module->revision) {
3068 if (!schema1->module->revision || !schema2->module->revision) {
3069 return 0;
3070 }
3071 if (strcmp(schema1->module->revision, schema2->module->revision)) {
3072 return 0;
3073 }
3074 }
3075
3076 return 1;
3077}
3078
3079/**
3080 * @brief Check the equality of the schemas for all parent nodes.
3081 *
3082 * Both nodes must be from different contexts.
3083 *
3084 * @param node1 Data of first node.
3085 * @param node2 Data of second node.
3086 * @return 1 if the all related parental schemas are equal otherwise 0.
3087 */
3088static ly_bool
3089lyd_compare_schema_parents_equal(const struct lyd_node *node1, const struct lyd_node *node2)
3090{
3091 const struct lysc_node *parent1, *parent2;
3092
3093 assert(node1 && node2);
3094
3095 for (parent1 = node1->schema->parent, parent2 = node2->schema->parent;
3096 parent1 && parent2;
3097 parent1 = parent1->parent, parent2 = parent2->parent) {
3098 if (!lyd_compare_schema_equal(parent1, parent2)) {
3099 return 0;
3100 }
3101 }
3102
3103 if (parent1 || parent2) {
3104 return 0;
3105 }
3106
3107 return 1;
3108}
3109
3110/**
3111 * @brief Internal implementation of @ref lyd_compare_single.
3112 * @copydoc lyd_compare_single
3113 * @param[in] parental_schemas_checked Flag used for optimization.
3114 * When this function is called for the first time, the flag must be set to 0.
3115 * The @ref lyd_compare_schema_parents_equal should be called only once during
3116 * recursive calls, and this is accomplished by setting to 1 in the lyd_compare_single_ body.
3117 */
3118static LY_ERR
3119lyd_compare_single_(const struct lyd_node *node1, const struct lyd_node *node2,
3120 uint32_t options, ly_bool parental_schemas_checked)
Radek Krejci1f05b6a2019-07-18 16:15:06 +02003121{
3122 const struct lyd_node *iter1, *iter2;
3123 struct lyd_node_term *term1, *term2;
3124 struct lyd_node_any *any1, *any2;
Michal Vasko52927e22020-03-16 17:26:14 +01003125 struct lyd_node_opaq *opaq1, *opaq2;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02003126 size_t len1, len2;
Radek Krejci084289f2019-07-09 17:35:30 +02003127
Radek Krejci1f05b6a2019-07-18 16:15:06 +02003128 if (!node1 || !node2) {
3129 if (node1 == node2) {
3130 return LY_SUCCESS;
3131 } else {
3132 return LY_ENOT;
3133 }
3134 }
3135
aPiecek2f63f952021-03-30 12:22:18 +02003136 if (LYD_CTX(node1) == LYD_CTX(node2)) {
3137 /* same contexts */
3138 if (node1->schema != node2->schema) {
3139 return LY_ENOT;
3140 }
3141 } else {
3142 /* different contexts */
3143 if (!lyd_compare_schema_equal(node1->schema, node2->schema)) {
3144 return LY_ENOT;
3145 }
3146 if (!parental_schemas_checked) {
3147 if (!lyd_compare_schema_parents_equal(node1, node2)) {
3148 return LY_ENOT;
3149 }
3150 parental_schemas_checked = 1;
3151 }
Radek Krejci1f05b6a2019-07-18 16:15:06 +02003152 }
3153
3154 if (node1->hash != node2->hash) {
3155 return LY_ENOT;
3156 }
aPiecek2f63f952021-03-30 12:22:18 +02003157 /* 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 +02003158
Michal Vasko52927e22020-03-16 17:26:14 +01003159 if (!node1->schema) {
3160 opaq1 = (struct lyd_node_opaq *)node1;
3161 opaq2 = (struct lyd_node_opaq *)node2;
aPiecek2f63f952021-03-30 12:22:18 +02003162 if ((strcmp(opaq1->name.name, opaq2->name.name)) || (opaq1->format != opaq2->format) ||
3163 (strcmp(opaq1->name.module_ns, opaq2->name.module_ns))) {
Radek Krejci1f05b6a2019-07-18 16:15:06 +02003164 return LY_ENOT;
3165 }
Michal Vasko52927e22020-03-16 17:26:14 +01003166 switch (opaq1->format) {
Radek Krejci8df109d2021-04-23 12:19:08 +02003167 case LY_VALUE_XML:
Radek Krejci09c77442021-04-26 11:10:34 +02003168 if (lyxml_value_compare(LYD_CTX(node1), opaq1->value, opaq1->val_prefix_data, LYD_CTX(node2), opaq2->value,
3169 opaq2->val_prefix_data)) {
Michal Vasko52927e22020-03-16 17:26:14 +01003170 return LY_ENOT;
3171 }
3172 break;
Radek Krejci8df109d2021-04-23 12:19:08 +02003173 case LY_VALUE_JSON:
Radek Krejci1798aae2020-07-14 13:26:06 +02003174 /* prefixes in JSON are unique, so it is not necessary to canonize the values */
3175 if (strcmp(opaq1->value, opaq2->value)) {
3176 return LY_ENOT;
3177 }
3178 break;
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01003179 default:
Michal Vasko52927e22020-03-16 17:26:14 +01003180 /* not allowed */
Michal Vaskob7be7a82020-08-20 09:09:04 +02003181 LOGINT(LYD_CTX(node1));
Michal Vasko52927e22020-03-16 17:26:14 +01003182 return LY_EINT;
3183 }
3184 if (options & LYD_COMPARE_FULL_RECURSION) {
3185 iter1 = opaq1->child;
3186 iter2 = opaq2->child;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02003187 goto all_children_compare;
Michal Vasko52927e22020-03-16 17:26:14 +01003188 }
3189 return LY_SUCCESS;
3190 } else {
3191 switch (node1->schema->nodetype) {
3192 case LYS_LEAF:
3193 case LYS_LEAFLIST:
3194 if (options & LYD_COMPARE_DEFAULTS) {
3195 if ((node1->flags & LYD_DEFAULT) != (node2->flags & LYD_DEFAULT)) {
3196 return LY_ENOT;
3197 }
3198 }
3199
Michal Vasko1a2bf2e2020-06-16 13:07:48 +02003200 term1 = (struct lyd_node_term *)node1;
3201 term2 = (struct lyd_node_term *)node2;
aPiecek2f63f952021-03-30 12:22:18 +02003202
3203 /* same contexts */
3204 if (LYD_CTX(node1) == LYD_CTX(node2)) {
3205 return term1->value.realtype->plugin->compare(&term1->value, &term2->value);
3206 }
3207
3208 /* different contexts */
Radek Krejci6d5ba0c2021-04-26 07:49:59 +02003209 if (strcmp(lyd_get_value(node1), lyd_get_value(node2))) {
aPiecek2f63f952021-03-30 12:22:18 +02003210 return LY_ENOT;
3211 }
3212 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01003213 case LYS_CONTAINER:
3214 if (options & LYD_COMPARE_DEFAULTS) {
3215 if ((node1->flags & LYD_DEFAULT) != (node2->flags & LYD_DEFAULT)) {
3216 return LY_ENOT;
3217 }
3218 }
3219 if (options & LYD_COMPARE_FULL_RECURSION) {
Michal Vasko9e685082021-01-29 14:49:09 +01003220 iter1 = lyd_child(node1);
3221 iter2 = lyd_child(node2);
Michal Vasko52927e22020-03-16 17:26:14 +01003222 goto all_children_compare;
Radek Krejci1f05b6a2019-07-18 16:15:06 +02003223 }
3224 return LY_SUCCESS;
Michal Vasko1bf09392020-03-27 12:38:10 +01003225 case LYS_RPC:
Michal Vasko52927e22020-03-16 17:26:14 +01003226 case LYS_ACTION:
3227 if (options & LYD_COMPARE_FULL_RECURSION) {
3228 /* TODO action/RPC
3229 goto all_children_compare;
3230 */
Radek Krejci1f05b6a2019-07-18 16:15:06 +02003231 }
3232 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01003233 case LYS_NOTIF:
3234 if (options & LYD_COMPARE_FULL_RECURSION) {
3235 /* TODO Notification
3236 goto all_children_compare;
3237 */
3238 }
3239 return LY_SUCCESS;
3240 case LYS_LIST:
Michal Vasko9e685082021-01-29 14:49:09 +01003241 iter1 = lyd_child(node1);
3242 iter2 = lyd_child(node2);
Michal Vasko52927e22020-03-16 17:26:14 +01003243
3244 if (!(node1->schema->flags & LYS_KEYLESS) && !(options & LYD_COMPARE_FULL_RECURSION)) {
3245 /* lists with keys, their equivalence is based on their keys */
Michal Vasko544e58a2021-01-28 14:33:41 +01003246 for (const struct lysc_node *key = lysc_node_child(node1->schema);
Michal Vaskoc57d9a92020-06-23 13:28:27 +02003247 key && (key->flags & LYS_KEY);
Michal Vasko52927e22020-03-16 17:26:14 +01003248 key = key->next) {
aPiecek2f63f952021-03-30 12:22:18 +02003249 if (lyd_compare_single_(iter1, iter2, options, parental_schemas_checked)) {
Michal Vasko52927e22020-03-16 17:26:14 +01003250 return LY_ENOT;
3251 }
3252 iter1 = iter1->next;
3253 iter2 = iter2->next;
3254 }
3255 } else {
3256 /* lists without keys, their equivalence is based on equivalence of all the children (both direct and indirect) */
3257
Radek Krejci0f969882020-08-21 16:56:47 +02003258all_children_compare:
Michal Vasko52927e22020-03-16 17:26:14 +01003259 if (!iter1 && !iter2) {
3260 /* no children, nothing to compare */
3261 return LY_SUCCESS;
3262 }
3263
Michal Vaskod989ba02020-08-24 10:59:24 +02003264 for ( ; iter1 && iter2; iter1 = iter1->next, iter2 = iter2->next) {
aPiecek2f63f952021-03-30 12:22:18 +02003265 if (lyd_compare_single_(iter1, iter2, options | LYD_COMPARE_FULL_RECURSION, parental_schemas_checked)) {
Michal Vasko52927e22020-03-16 17:26:14 +01003266 return LY_ENOT;
3267 }
3268 }
3269 if (iter1 || iter2) {
3270 return LY_ENOT;
3271 }
3272 }
3273 return LY_SUCCESS;
3274 case LYS_ANYXML:
3275 case LYS_ANYDATA:
Michal Vasko22df3f02020-08-24 13:29:22 +02003276 any1 = (struct lyd_node_any *)node1;
3277 any2 = (struct lyd_node_any *)node2;
Michal Vasko52927e22020-03-16 17:26:14 +01003278
3279 if (any1->value_type != any2->value_type) {
3280 return LY_ENOT;
3281 }
3282 switch (any1->value_type) {
3283 case LYD_ANYDATA_DATATREE:
3284 iter1 = any1->value.tree;
3285 iter2 = any2->value.tree;
3286 goto all_children_compare;
3287 case LYD_ANYDATA_STRING:
3288 case LYD_ANYDATA_XML:
3289 case LYD_ANYDATA_JSON:
3290 len1 = strlen(any1->value.str);
3291 len2 = strlen(any2->value.str);
Michal Vasko69730152020-10-09 16:30:07 +02003292 if ((len1 != len2) || strcmp(any1->value.str, any2->value.str)) {
Michal Vasko52927e22020-03-16 17:26:14 +01003293 return LY_ENOT;
3294 }
3295 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01003296 case LYD_ANYDATA_LYB:
Michal Vasko60ea6352020-06-29 13:39:39 +02003297 len1 = lyd_lyb_data_length(any1->value.mem);
3298 len2 = lyd_lyb_data_length(any2->value.mem);
Michal Vasko69730152020-10-09 16:30:07 +02003299 if ((len1 != len2) || memcmp(any1->value.mem, any2->value.mem, len1)) {
Michal Vasko52927e22020-03-16 17:26:14 +01003300 return LY_ENOT;
3301 }
3302 return LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +01003303 }
Radek Krejci1f05b6a2019-07-18 16:15:06 +02003304 }
3305 }
3306
Michal Vaskob7be7a82020-08-20 09:09:04 +02003307 LOGINT(LYD_CTX(node1));
Radek Krejci1f05b6a2019-07-18 16:15:06 +02003308 return LY_EINT;
3309}
Radek Krejci22ebdba2019-07-25 13:59:43 +02003310
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01003311LIBYANG_API_DEF LY_ERR
aPiecek2f63f952021-03-30 12:22:18 +02003312lyd_compare_single(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options)
3313{
3314 return lyd_compare_single_(node1, node2, options, 0);
3315}
3316
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01003317LIBYANG_API_DEF LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003318lyd_compare_siblings(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options)
Michal Vasko8f359bf2020-07-28 10:41:15 +02003319{
Michal Vaskod989ba02020-08-24 10:59:24 +02003320 for ( ; node1 && node2; node1 = node1->next, node2 = node2->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02003321 LY_CHECK_RET(lyd_compare_single(node1, node2, options));
3322 }
3323
Michal Vasko11a81432020-07-28 16:31:29 +02003324 if (node1 == node2) {
3325 return LY_SUCCESS;
Michal Vasko8f359bf2020-07-28 10:41:15 +02003326 }
Michal Vasko11a81432020-07-28 16:31:29 +02003327 return LY_ENOT;
Michal Vasko8f359bf2020-07-28 10:41:15 +02003328}
3329
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01003330LIBYANG_API_DEF LY_ERR
Michal Vasko21725742020-06-29 11:49:25 +02003331lyd_compare_meta(const struct lyd_meta *meta1, const struct lyd_meta *meta2)
3332{
3333 if (!meta1 || !meta2) {
3334 if (meta1 == meta2) {
3335 return LY_SUCCESS;
3336 } else {
3337 return LY_ENOT;
3338 }
3339 }
3340
Michal Vaskoa8083062020-11-06 17:22:10 +01003341 if ((meta1->annotation->module->ctx != meta2->annotation->module->ctx) || (meta1->annotation != meta2->annotation)) {
Michal Vasko21725742020-06-29 11:49:25 +02003342 return LY_ENOT;
3343 }
3344
Michal Vasko21725742020-06-29 11:49:25 +02003345 return meta1->value.realtype->plugin->compare(&meta1->value, &meta2->value);
3346}
3347
Radek Krejci22ebdba2019-07-25 13:59:43 +02003348/**
Michal Vasko9cf62422021-07-01 13:29:32 +02003349 * @brief Create a copy of the attribute.
3350 *
3351 * @param[in] attr Attribute to copy.
3352 * @param[in] node Opaque where to append the new attribute.
3353 * @param[out] dup Optional created attribute copy.
3354 * @return LY_ERR value.
3355 */
3356static LY_ERR
3357lyd_dup_attr_single(const struct lyd_attr *attr, struct lyd_node *node, struct lyd_attr **dup)
3358{
3359 LY_ERR ret = LY_SUCCESS;
3360 struct lyd_attr *a, *last;
3361 struct lyd_node_opaq *opaq = (struct lyd_node_opaq *)node;
3362
3363 LY_CHECK_ARG_RET(NULL, attr, node, !node->schema, LY_EINVAL);
3364
3365 /* create a copy */
3366 a = calloc(1, sizeof *attr);
3367 LY_CHECK_ERR_RET(!a, LOGMEM(LYD_CTX(node)), LY_EMEM);
3368
3369 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), attr->name.name, 0, &a->name.name), finish);
3370 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), attr->name.prefix, 0, &a->name.prefix), finish);
3371 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), attr->name.module_ns, 0, &a->name.module_ns), finish);
3372 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), attr->value, 0, &a->value), finish);
3373 a->hints = attr->hints;
3374 a->format = attr->format;
3375 if (attr->val_prefix_data) {
3376 ret = ly_dup_prefix_data(LYD_CTX(node), attr->format, attr->val_prefix_data, &a->val_prefix_data);
3377 LY_CHECK_GOTO(ret, finish);
3378 }
3379
3380 /* insert as the last attribute */
3381 a->parent = opaq;
3382 if (opaq->attr) {
3383 for (last = opaq->attr; last->next; last = last->next) {}
3384 last->next = a;
3385 } else {
3386 opaq->attr = a;
3387 }
3388
3389finish:
3390 if (ret) {
3391 lyd_free_attr_single(LYD_CTX(node), a);
3392 } else if (dup) {
3393 *dup = a;
3394 }
3395 return LY_SUCCESS;
3396}
3397
3398/**
Michal Vasko52927e22020-03-16 17:26:14 +01003399 * @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 +02003400 *
3401 * 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 +02003402 *
3403 * @param[in] node Original node to duplicate
3404 * @param[in] parent Parent to insert into, NULL for top-level sibling.
Michal Vasko67177e52021-08-25 11:15:15 +02003405 * @param[in] insert_last Whether the duplicated node can be inserted as the last child of @p parent. Set for
3406 * recursive duplication as an optimization.
Radek Krejcif8b95172020-05-15 14:51:06 +02003407 * @param[in,out] first First sibling, NULL if no top-level sibling exist yet. Can be also NULL if @p parent is set.
3408 * @param[in] options Bitmask of options flags, see @ref dupoptions.
3409 * @param[out] dup_p Pointer where the created duplicated node is placed (besides connecting it int @p parent / @p first sibling).
3410 * @return LY_ERR value
Radek Krejci22ebdba2019-07-25 13:59:43 +02003411 */
Michal Vasko52927e22020-03-16 17:26:14 +01003412static LY_ERR
Michal Vasko67177e52021-08-25 11:15:15 +02003413lyd_dup_r(const struct lyd_node *node, struct lyd_node *parent, ly_bool insert_last, struct lyd_node **first,
3414 uint32_t options, struct lyd_node **dup_p)
Radek Krejci22ebdba2019-07-25 13:59:43 +02003415{
Michal Vasko52927e22020-03-16 17:26:14 +01003416 LY_ERR ret;
Radek Krejci22ebdba2019-07-25 13:59:43 +02003417 struct lyd_node *dup = NULL;
Michal Vasko61551fa2020-07-09 15:45:45 +02003418 struct lyd_meta *meta;
Michal Vasko9cf62422021-07-01 13:29:32 +02003419 struct lyd_attr *attr;
Michal Vasko61551fa2020-07-09 15:45:45 +02003420 struct lyd_node_any *any;
Radek Krejci22ebdba2019-07-25 13:59:43 +02003421
Michal Vasko52927e22020-03-16 17:26:14 +01003422 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Radek Krejci22ebdba2019-07-25 13:59:43 +02003423
Michal Vasko52927e22020-03-16 17:26:14 +01003424 if (!node->schema) {
3425 dup = calloc(1, sizeof(struct lyd_node_opaq));
Michal Vasko9cf62422021-07-01 13:29:32 +02003426 ((struct lyd_node_opaq *)dup)->ctx = LYD_CTX(node);
Michal Vasko52927e22020-03-16 17:26:14 +01003427 } else {
3428 switch (node->schema->nodetype) {
Michal Vasko1bf09392020-03-27 12:38:10 +01003429 case LYS_RPC:
Michal Vasko52927e22020-03-16 17:26:14 +01003430 case LYS_ACTION:
3431 case LYS_NOTIF:
3432 case LYS_CONTAINER:
3433 case LYS_LIST:
3434 dup = calloc(1, sizeof(struct lyd_node_inner));
3435 break;
3436 case LYS_LEAF:
3437 case LYS_LEAFLIST:
3438 dup = calloc(1, sizeof(struct lyd_node_term));
3439 break;
3440 case LYS_ANYDATA:
3441 case LYS_ANYXML:
3442 dup = calloc(1, sizeof(struct lyd_node_any));
3443 break;
3444 default:
Michal Vaskob7be7a82020-08-20 09:09:04 +02003445 LOGINT(LYD_CTX(node));
Michal Vasko52927e22020-03-16 17:26:14 +01003446 ret = LY_EINT;
3447 goto error;
3448 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02003449 }
Michal Vaskob7be7a82020-08-20 09:09:04 +02003450 LY_CHECK_ERR_GOTO(!dup, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02003451
Michal Vaskof6df0a02020-06-16 13:08:34 +02003452 if (options & LYD_DUP_WITH_FLAGS) {
3453 dup->flags = node->flags;
3454 } else {
3455 dup->flags = (node->flags & LYD_DEFAULT) | LYD_NEW;
3456 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02003457 dup->schema = node->schema;
Michal Vasko52927e22020-03-16 17:26:14 +01003458 dup->prev = dup;
Radek Krejci22ebdba2019-07-25 13:59:43 +02003459
Michal Vasko9cf62422021-07-01 13:29:32 +02003460 /* duplicate metadata/attributes */
Michal Vasko25a32822020-07-09 15:48:22 +02003461 if (!(options & LYD_DUP_NO_META)) {
Michal Vasko9cf62422021-07-01 13:29:32 +02003462 if (!node->schema) {
3463 LY_LIST_FOR(((struct lyd_node_opaq *)node)->attr, attr) {
3464 LY_CHECK_GOTO(ret = lyd_dup_attr_single(attr, dup, NULL), error);
3465 }
3466 } else {
3467 LY_LIST_FOR(node->meta, meta) {
3468 LY_CHECK_GOTO(ret = lyd_dup_meta_single(meta, dup, NULL), error);
3469 }
Michal Vasko25a32822020-07-09 15:48:22 +02003470 }
3471 }
Radek Krejci22ebdba2019-07-25 13:59:43 +02003472
3473 /* nodetype-specific work */
Michal Vasko52927e22020-03-16 17:26:14 +01003474 if (!dup->schema) {
3475 struct lyd_node_opaq *opaq = (struct lyd_node_opaq *)dup;
3476 struct lyd_node_opaq *orig = (struct lyd_node_opaq *)node;
3477 struct lyd_node *child;
Radek Krejci22ebdba2019-07-25 13:59:43 +02003478
3479 if (options & LYD_DUP_RECURSIVE) {
3480 /* duplicate all the children */
3481 LY_LIST_FOR(orig->child, child) {
Michal Vasko67177e52021-08-25 11:15:15 +02003482 LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, 1, NULL, options, NULL), error);
Michal Vasko52927e22020-03-16 17:26:14 +01003483 }
3484 }
Michal Vaskoad92b672020-11-12 13:11:31 +01003485 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->name.name, 0, &opaq->name.name), error);
Michal Vasko9cf62422021-07-01 13:29:32 +02003486 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->name.prefix, 0, &opaq->name.prefix), error);
Michal Vaskoad92b672020-11-12 13:11:31 +01003487 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 +02003488 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->value, 0, &opaq->value), error);
3489 opaq->hints = orig->hints;
3490 opaq->format = orig->format;
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01003491 if (orig->val_prefix_data) {
3492 ret = ly_dup_prefix_data(LYD_CTX(node), opaq->format, orig->val_prefix_data, &opaq->val_prefix_data);
3493 LY_CHECK_GOTO(ret, error);
Michal Vasko52927e22020-03-16 17:26:14 +01003494 }
Michal Vasko52927e22020-03-16 17:26:14 +01003495 } else if (dup->schema->nodetype & LYD_NODE_TERM) {
3496 struct lyd_node_term *term = (struct lyd_node_term *)dup;
3497 struct lyd_node_term *orig = (struct lyd_node_term *)node;
3498
3499 term->hash = orig->hash;
Michal Vaskob7be7a82020-08-20 09:09:04 +02003500 LY_CHECK_ERR_GOTO(orig->value.realtype->plugin->duplicate(LYD_CTX(node), &orig->value, &term->value),
Michal Vasko69730152020-10-09 16:30:07 +02003501 LOGERR(LYD_CTX(node), LY_EINT, "Value duplication failed."); ret = LY_EINT, error);
Michal Vasko52927e22020-03-16 17:26:14 +01003502 } else if (dup->schema->nodetype & LYD_NODE_INNER) {
3503 struct lyd_node_inner *orig = (struct lyd_node_inner *)node;
3504 struct lyd_node *child;
3505
3506 if (options & LYD_DUP_RECURSIVE) {
3507 /* duplicate all the children */
3508 LY_LIST_FOR(orig->child, child) {
Michal Vasko67177e52021-08-25 11:15:15 +02003509 LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, 1, NULL, options, NULL), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02003510 }
Michal Vasko69730152020-10-09 16:30:07 +02003511 } else if ((dup->schema->nodetype == LYS_LIST) && !(dup->schema->flags & LYS_KEYLESS)) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02003512 /* always duplicate keys of a list */
Radek Krejci22ebdba2019-07-25 13:59:43 +02003513 child = orig->child;
Michal Vasko544e58a2021-01-28 14:33:41 +01003514 for (const struct lysc_node *key = lysc_node_child(dup->schema);
Michal Vaskoc57d9a92020-06-23 13:28:27 +02003515 key && (key->flags & LYS_KEY);
Radek Krejci0fe9b512019-07-26 17:51:05 +02003516 key = key->next) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02003517 if (!child) {
3518 /* possibly not keys are present in filtered tree */
3519 break;
Radek Krejci0fe9b512019-07-26 17:51:05 +02003520 } else if (child->schema != key) {
3521 /* possibly not all keys are present in filtered tree,
3522 * but there can be also some non-key nodes */
3523 continue;
Radek Krejci22ebdba2019-07-25 13:59:43 +02003524 }
Michal Vasko67177e52021-08-25 11:15:15 +02003525 LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, 1, NULL, options, NULL), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02003526 child = child->next;
3527 }
3528 }
3529 lyd_hash(dup);
3530 } else if (dup->schema->nodetype & LYD_NODE_ANY) {
Michal Vasko61551fa2020-07-09 15:45:45 +02003531 dup->hash = node->hash;
3532 any = (struct lyd_node_any *)node;
3533 LY_CHECK_GOTO(ret = lyd_any_copy_value(dup, &any->value, any->value_type), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02003534 }
3535
Michal Vasko52927e22020-03-16 17:26:14 +01003536 /* insert */
Michal Vasko67177e52021-08-25 11:15:15 +02003537 lyd_insert_node(parent, first, dup, insert_last);
Michal Vasko52927e22020-03-16 17:26:14 +01003538
3539 if (dup_p) {
3540 *dup_p = dup;
3541 }
3542 return LY_SUCCESS;
Radek Krejci22ebdba2019-07-25 13:59:43 +02003543
3544error:
Michal Vasko52927e22020-03-16 17:26:14 +01003545 lyd_free_tree(dup);
3546 return ret;
Radek Krejci22ebdba2019-07-25 13:59:43 +02003547}
3548
Michal Vasko29d674b2021-08-25 11:18:35 +02003549/**
3550 * @brief Get a parent node to connect duplicated subtree to.
3551 *
3552 * @param[in] node Node (subtree) to duplicate.
3553 * @param[in] parent Initial parent to connect to.
3554 * @param[in] options Bitmask of options flags, see @ref dupoptions.
3555 * @param[out] dup_parent First duplicated parent node, if any.
3556 * @param[out] local_parent Correct parent to directly connect duplicated @p node to.
3557 * @return LY_ERR value.
3558 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02003559static LY_ERR
Michal Vasko20909752021-05-18 16:13:38 +02003560lyd_dup_get_local_parent(const struct lyd_node *node, const struct lyd_node_inner *parent, uint32_t options,
3561 struct lyd_node **dup_parent, struct lyd_node_inner **local_parent)
Radek Krejci22ebdba2019-07-25 13:59:43 +02003562{
Michal Vasko3a41dff2020-07-15 14:30:28 +02003563 const struct lyd_node_inner *orig_parent, *iter;
Radek Krejci857189e2020-09-01 13:26:36 +02003564 ly_bool repeat = 1;
Michal Vasko3a41dff2020-07-15 14:30:28 +02003565
3566 *dup_parent = NULL;
3567 *local_parent = NULL;
3568
3569 for (orig_parent = node->parent; repeat && orig_parent; orig_parent = orig_parent->parent) {
3570 if (parent && (parent->schema == orig_parent->schema)) {
3571 /* stop creating parents, connect what we have into the provided parent */
3572 iter = parent;
3573 repeat = 0;
3574 } else {
3575 iter = NULL;
Michal Vasko67177e52021-08-25 11:15:15 +02003576 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 +02003577 (struct lyd_node **)&iter));
Michal Vasko3a41dff2020-07-15 14:30:28 +02003578 }
3579 if (!*local_parent) {
3580 *local_parent = (struct lyd_node_inner *)iter;
3581 }
3582 if (iter->child) {
3583 /* 1) list - add after keys
3584 * 2) provided parent with some children */
3585 iter->child->prev->next = *dup_parent;
3586 if (*dup_parent) {
3587 (*dup_parent)->prev = iter->child->prev;
3588 iter->child->prev = *dup_parent;
3589 }
3590 } else {
3591 ((struct lyd_node_inner *)iter)->child = *dup_parent;
3592 }
3593 if (*dup_parent) {
3594 (*dup_parent)->parent = (struct lyd_node_inner *)iter;
3595 }
3596 *dup_parent = (struct lyd_node *)iter;
3597 }
3598
3599 if (repeat && parent) {
3600 /* given parent and created parents chain actually do not interconnect */
Michal Vaskob7be7a82020-08-20 09:09:04 +02003601 LOGERR(LYD_CTX(node), LY_EINVAL,
Michal Vasko69730152020-10-09 16:30:07 +02003602 "Invalid argument parent (%s()) - does not interconnect with the created node's parents chain.", __func__);
Michal Vasko3a41dff2020-07-15 14:30:28 +02003603 return LY_EINVAL;
3604 }
3605
3606 return LY_SUCCESS;
3607}
3608
3609static LY_ERR
Michal Vasko67177e52021-08-25 11:15:15 +02003610lyd_dup(const struct lyd_node *node, struct lyd_node_inner *parent, uint32_t options, ly_bool nosiblings,
3611 struct lyd_node **dup)
Michal Vasko3a41dff2020-07-15 14:30:28 +02003612{
3613 LY_ERR rc;
Radek Krejci22ebdba2019-07-25 13:59:43 +02003614 const struct lyd_node *orig; /* original node to be duplicated */
3615 struct lyd_node *first = NULL; /* the first duplicated node, this is returned */
Radek Krejci22ebdba2019-07-25 13:59:43 +02003616 struct lyd_node *top = NULL; /* the most higher created node */
3617 struct lyd_node_inner *local_parent = NULL; /* the direct parent node for the duplicated node(s) */
Radek Krejci22ebdba2019-07-25 13:59:43 +02003618
Michal Vasko3a41dff2020-07-15 14:30:28 +02003619 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
Radek Krejci22ebdba2019-07-25 13:59:43 +02003620
3621 if (options & LYD_DUP_WITH_PARENTS) {
Michal Vasko20909752021-05-18 16:13:38 +02003622 LY_CHECK_GOTO(rc = lyd_dup_get_local_parent(node, parent, options & (LYD_DUP_WITH_FLAGS | LYD_DUP_NO_META),
3623 &top, &local_parent), error);
Radek Krejci22ebdba2019-07-25 13:59:43 +02003624 } else {
3625 local_parent = parent;
3626 }
3627
Radek Krejci22ebdba2019-07-25 13:59:43 +02003628 LY_LIST_FOR(node, orig) {
Michal Vasko35f4d772021-01-12 12:08:57 +01003629 if (lysc_is_key(orig->schema)) {
3630 if (local_parent) {
3631 /* the key must already exist in the parent */
3632 rc = lyd_find_sibling_schema(local_parent->child, orig->schema, first ? NULL : &first);
3633 LY_CHECK_ERR_GOTO(rc, LOGINT(LYD_CTX(node)), error);
3634 } else {
3635 assert(!(options & LYD_DUP_WITH_PARENTS));
3636 /* duplicating a single key, okay, I suppose... */
Michal Vasko67177e52021-08-25 11:15:15 +02003637 rc = lyd_dup_r(orig, NULL, 0, &first, options, first ? NULL : &first);
Michal Vasko35f4d772021-01-12 12:08:57 +01003638 LY_CHECK_GOTO(rc, error);
3639 }
3640 } else {
3641 /* if there is no local parent, it will be inserted into first */
Michal Vasko67177e52021-08-25 11:15:15 +02003642 rc = lyd_dup_r(orig, local_parent ? &local_parent->node : NULL, 0, &first, options, first ? NULL : &first);
Michal Vasko35f4d772021-01-12 12:08:57 +01003643 LY_CHECK_GOTO(rc, error);
3644 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02003645 if (nosiblings) {
Radek Krejci22ebdba2019-07-25 13:59:43 +02003646 break;
3647 }
3648 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02003649
Michal Vasko3a41dff2020-07-15 14:30:28 +02003650 if (dup) {
3651 *dup = first;
3652 }
3653 return LY_SUCCESS;
Radek Krejci22ebdba2019-07-25 13:59:43 +02003654
3655error:
3656 if (top) {
3657 lyd_free_tree(top);
3658 } else {
Michal Vaskof03ed032020-03-04 13:31:44 +01003659 lyd_free_siblings(first);
Radek Krejci22ebdba2019-07-25 13:59:43 +02003660 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02003661 return rc;
Radek Krejci22ebdba2019-07-25 13:59:43 +02003662}
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003663
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01003664LIBYANG_API_DEF LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003665lyd_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 +02003666{
3667 return lyd_dup(node, parent, options, 1, dup);
3668}
3669
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01003670LIBYANG_API_DEF LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003671lyd_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 +02003672{
3673 return lyd_dup(node, parent, options, 0, dup);
3674}
3675
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01003676LIBYANG_API_DEF LY_ERR
Michal Vasko3a41dff2020-07-15 14:30:28 +02003677lyd_dup_meta_single(const struct lyd_meta *meta, struct lyd_node *node, struct lyd_meta **dup)
Michal Vasko25a32822020-07-09 15:48:22 +02003678{
Radek Krejci011e4aa2020-09-04 15:22:31 +02003679 LY_ERR ret = LY_SUCCESS;
Michal Vasko25a32822020-07-09 15:48:22 +02003680 struct lyd_meta *mt, *last;
3681
Michal Vasko3a41dff2020-07-15 14:30:28 +02003682 LY_CHECK_ARG_RET(NULL, meta, node, LY_EINVAL);
Michal Vasko25a32822020-07-09 15:48:22 +02003683
3684 /* create a copy */
3685 mt = calloc(1, sizeof *mt);
Michal Vaskob7be7a82020-08-20 09:09:04 +02003686 LY_CHECK_ERR_RET(!mt, LOGMEM(LYD_CTX(node)), LY_EMEM);
Michal Vasko25a32822020-07-09 15:48:22 +02003687 mt->annotation = meta->annotation;
Michal Vaskob7be7a82020-08-20 09:09:04 +02003688 ret = meta->value.realtype->plugin->duplicate(LYD_CTX(node), &meta->value, &mt->value);
Radek Krejci011e4aa2020-09-04 15:22:31 +02003689 LY_CHECK_ERR_GOTO(ret, LOGERR(LYD_CTX(node), LY_EINT, "Value duplication failed."), finish);
3690 LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), meta->name, 0, &mt->name), finish);
Michal Vasko25a32822020-07-09 15:48:22 +02003691
3692 /* insert as the last attribute */
Radek Krejci011e4aa2020-09-04 15:22:31 +02003693 mt->parent = node;
Michal Vasko25a32822020-07-09 15:48:22 +02003694 if (node->meta) {
Radek Krejci1e008d22020-08-17 11:37:37 +02003695 for (last = node->meta; last->next; last = last->next) {}
Michal Vasko25a32822020-07-09 15:48:22 +02003696 last->next = mt;
3697 } else {
3698 node->meta = mt;
3699 }
3700
Radek Krejci011e4aa2020-09-04 15:22:31 +02003701finish:
3702 if (ret) {
3703 lyd_free_meta_single(mt);
3704 } else if (dup) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02003705 *dup = mt;
3706 }
3707 return LY_SUCCESS;
Michal Vasko25a32822020-07-09 15:48:22 +02003708}
3709
Michal Vasko4490d312020-06-16 13:08:55 +02003710/**
3711 * @brief Merge a source sibling into target siblings.
3712 *
3713 * @param[in,out] first_trg First target sibling, is updated if top-level.
3714 * @param[in] parent_trg Target parent.
3715 * @param[in,out] sibling_src Source sibling to merge, set to NULL if spent.
Michal Vaskocd3f6172021-05-18 16:14:50 +02003716 * @param[in] merge_cb Optional merge callback.
3717 * @param[in] cb_data Arbitrary callback data.
Michal Vasko4490d312020-06-16 13:08:55 +02003718 * @param[in] options Merge options.
Michal Vaskocd3f6172021-05-18 16:14:50 +02003719 * @param[in,out] dup_inst Duplicate instance cache for all @p first_trg siblings.
Michal Vasko4490d312020-06-16 13:08:55 +02003720 * @return LY_ERR value.
3721 */
3722static LY_ERR
3723lyd_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 +02003724 lyd_merge_cb merge_cb, void *cb_data, uint16_t options, struct lyd_dup_inst **dup_inst)
Michal Vasko4490d312020-06-16 13:08:55 +02003725{
Michal Vasko4490d312020-06-16 13:08:55 +02003726 const struct lyd_node *child_src, *tmp, *sibling_src;
Michal Vasko56daf732020-08-10 10:57:18 +02003727 struct lyd_node *match_trg, *dup_src, *elem;
Michal Vaskod1afa502022-01-27 16:18:12 +01003728 struct lyd_node_opaq *opaq_trg, *opaq_src;
Michal Vasko4490d312020-06-16 13:08:55 +02003729 struct lysc_type *type;
Michal Vaskocd3f6172021-05-18 16:14:50 +02003730 struct lyd_dup_inst *child_dup_inst = NULL;
3731 LY_ERR ret;
3732 ly_bool first_inst = 0;
Michal Vasko4490d312020-06-16 13:08:55 +02003733
3734 sibling_src = *sibling_src_p;
Michal Vaskocd3f6172021-05-18 16:14:50 +02003735 if (!sibling_src->schema) {
3736 /* try to find the same opaque node */
3737 lyd_find_sibling_opaq_next(*first_trg, LYD_NAME(sibling_src), &match_trg);
3738 } else if (sibling_src->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) {
Michal Vasko4490d312020-06-16 13:08:55 +02003739 /* try to find the exact instance */
Michal Vaskocd3f6172021-05-18 16:14:50 +02003740 lyd_find_sibling_first(*first_trg, sibling_src, &match_trg);
Michal Vasko4490d312020-06-16 13:08:55 +02003741 } else {
3742 /* try to simply find the node, there cannot be more instances */
Michal Vaskocd3f6172021-05-18 16:14:50 +02003743 lyd_find_sibling_val(*first_trg, sibling_src->schema, NULL, 0, &match_trg);
Michal Vasko4490d312020-06-16 13:08:55 +02003744 }
3745
Michal Vaskocd3f6172021-05-18 16:14:50 +02003746 if (match_trg) {
3747 /* update match as needed */
3748 LY_CHECK_RET(lyd_dup_inst_next(&match_trg, *first_trg, dup_inst));
3749 } else {
3750 /* first instance of this node */
3751 first_inst = 1;
3752 }
3753
3754 if (match_trg) {
3755 /* call callback */
3756 if (merge_cb) {
3757 LY_CHECK_RET(merge_cb(match_trg, sibling_src, cb_data));
3758 }
3759
Michal Vasko4490d312020-06-16 13:08:55 +02003760 /* node found, make sure even value matches for all node types */
Michal Vaskod1afa502022-01-27 16:18:12 +01003761 if (!match_trg->schema) {
3762 if (lyd_compare_single(sibling_src, match_trg, 0)) {
3763 /* update value */
3764 opaq_trg = (struct lyd_node_opaq *)match_trg;
3765 opaq_src = (struct lyd_node_opaq *)sibling_src;
3766
3767 lydict_remove(LYD_CTX(opaq_trg), opaq_trg->value);
3768 lydict_insert(LYD_CTX(opaq_trg), opaq_src->value, 0, &opaq_trg->value);
3769 opaq_trg->hints = opaq_src->hints;
3770
3771 ly_free_prefix_data(opaq_trg->format, opaq_trg->val_prefix_data);
3772 opaq_trg->format = opaq_src->format;
3773 ly_dup_prefix_data(LYD_CTX(opaq_trg), opaq_src->format, opaq_src->val_prefix_data,
3774 &opaq_trg->val_prefix_data);
3775 }
3776 } else if ((match_trg->schema->nodetype == LYS_LEAF) &&
3777 lyd_compare_single(sibling_src, match_trg, LYD_COMPARE_DEFAULTS)) {
Michal Vasko4490d312020-06-16 13:08:55 +02003778 /* since they are different, they cannot both be default */
3779 assert(!(sibling_src->flags & LYD_DEFAULT) || !(match_trg->flags & LYD_DEFAULT));
3780
Michal Vasko3a41dff2020-07-15 14:30:28 +02003781 /* update value (or only LYD_DEFAULT flag) only if flag set or the source node is not default */
3782 if ((options & LYD_MERGE_DEFAULTS) || !(sibling_src->flags & LYD_DEFAULT)) {
Michal Vasko4490d312020-06-16 13:08:55 +02003783 type = ((struct lysc_node_leaf *)match_trg->schema)->type;
Michal Vaskob7be7a82020-08-20 09:09:04 +02003784 type->plugin->free(LYD_CTX(match_trg), &((struct lyd_node_term *)match_trg)->value);
3785 LY_CHECK_RET(type->plugin->duplicate(LYD_CTX(match_trg), &((struct lyd_node_term *)sibling_src)->value,
Michal Vasko69730152020-10-09 16:30:07 +02003786 &((struct lyd_node_term *)match_trg)->value));
Michal Vasko4490d312020-06-16 13:08:55 +02003787
3788 /* copy flags and add LYD_NEW */
Michal Vasko7e8315b2021-08-03 17:01:06 +02003789 match_trg->flags = sibling_src->flags | ((options & LYD_MERGE_WITH_FLAGS) ? 0 : LYD_NEW);
Michal Vasko4490d312020-06-16 13:08:55 +02003790 }
Michal Vasko8f359bf2020-07-28 10:41:15 +02003791 } else if ((match_trg->schema->nodetype & LYS_ANYDATA) && lyd_compare_single(sibling_src, match_trg, 0)) {
Michal Vasko4c583e82020-07-17 12:16:14 +02003792 /* update value */
3793 LY_CHECK_RET(lyd_any_copy_value(match_trg, &((struct lyd_node_any *)sibling_src)->value,
Radek Krejci0f969882020-08-21 16:56:47 +02003794 ((struct lyd_node_any *)sibling_src)->value_type));
Michal Vasko4490d312020-06-16 13:08:55 +02003795
3796 /* copy flags and add LYD_NEW */
Michal Vasko7e8315b2021-08-03 17:01:06 +02003797 match_trg->flags = sibling_src->flags | ((options & LYD_MERGE_WITH_FLAGS) ? 0 : LYD_NEW);
Michal Vaskocd3f6172021-05-18 16:14:50 +02003798 }
3799
3800 /* check descendants, recursively */
3801 ret = LY_SUCCESS;
3802 LY_LIST_FOR_SAFE(lyd_child_no_keys(sibling_src), tmp, child_src) {
3803 ret = lyd_merge_sibling_r(lyd_node_child_p(match_trg), match_trg, &child_src, merge_cb, cb_data, options,
3804 &child_dup_inst);
3805 if (ret) {
3806 break;
Michal Vasko4490d312020-06-16 13:08:55 +02003807 }
3808 }
Michal Vaskocd3f6172021-05-18 16:14:50 +02003809 lyd_dup_inst_free(child_dup_inst);
3810 LY_CHECK_RET(ret);
Michal Vasko4490d312020-06-16 13:08:55 +02003811 } else {
3812 /* node not found, merge it */
3813 if (options & LYD_MERGE_DESTRUCT) {
3814 dup_src = (struct lyd_node *)sibling_src;
3815 lyd_unlink_tree(dup_src);
3816 /* spend it */
3817 *sibling_src_p = NULL;
3818 } else {
Michal Vasko3a41dff2020-07-15 14:30:28 +02003819 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 +02003820 }
3821
Michal Vasko7e8315b2021-08-03 17:01:06 +02003822 if (!(options & LYD_MERGE_WITH_FLAGS)) {
3823 /* set LYD_NEW for all the new nodes, required for validation */
3824 LYD_TREE_DFS_BEGIN(dup_src, elem) {
3825 elem->flags |= LYD_NEW;
3826 LYD_TREE_DFS_END(dup_src, elem);
3827 }
Michal Vasko4490d312020-06-16 13:08:55 +02003828 }
3829
Michal Vaskocd3f6172021-05-18 16:14:50 +02003830 /* insert */
Michal Vasko6ee6f432021-07-16 09:49:14 +02003831 lyd_insert_node(parent_trg, first_trg, dup_src, 0);
Michal Vaskocd3f6172021-05-18 16:14:50 +02003832
3833 if (first_inst) {
3834 /* remember not to find this instance next time */
3835 LY_CHECK_RET(lyd_dup_inst_next(&dup_src, *first_trg, dup_inst));
3836 }
3837
3838 /* call callback, no source node */
3839 if (merge_cb) {
3840 LY_CHECK_RET(merge_cb(dup_src, NULL, cb_data));
3841 }
Michal Vasko4490d312020-06-16 13:08:55 +02003842 }
3843
3844 return LY_SUCCESS;
3845}
3846
Michal Vasko3a41dff2020-07-15 14:30:28 +02003847static LY_ERR
Michal Vaskocd3f6172021-05-18 16:14:50 +02003848lyd_merge(struct lyd_node **target, const struct lyd_node *source, const struct lys_module *mod,
3849 lyd_merge_cb merge_cb, void *cb_data, uint16_t options, ly_bool nosiblings)
Michal Vasko4490d312020-06-16 13:08:55 +02003850{
3851 const struct lyd_node *sibling_src, *tmp;
Michal Vaskocd3f6172021-05-18 16:14:50 +02003852 struct lyd_dup_inst *dup_inst = NULL;
Radek Krejci857189e2020-09-01 13:26:36 +02003853 ly_bool first;
Michal Vaskocd3f6172021-05-18 16:14:50 +02003854 LY_ERR ret = LY_SUCCESS;
Michal Vasko4490d312020-06-16 13:08:55 +02003855
3856 LY_CHECK_ARG_RET(NULL, target, LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +01003857 LY_CHECK_CTX_EQUAL_RET(*target ? LYD_CTX(*target) : NULL, source ? LYD_CTX(source) : NULL, mod ? mod->ctx : NULL,
3858 LY_EINVAL);
Michal Vasko4490d312020-06-16 13:08:55 +02003859
3860 if (!source) {
3861 /* nothing to merge */
3862 return LY_SUCCESS;
3863 }
3864
Michal Vasko831422b2020-11-24 11:20:51 +01003865 if ((*target && lysc_data_parent((*target)->schema)) || lysc_data_parent(source->schema)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02003866 LOGERR(LYD_CTX(source), LY_EINVAL, "Invalid arguments - can merge only 2 top-level subtrees (%s()).", __func__);
Michal Vasko4490d312020-06-16 13:08:55 +02003867 return LY_EINVAL;
3868 }
3869
3870 LY_LIST_FOR_SAFE(source, tmp, sibling_src) {
Michal Vaskocd3f6172021-05-18 16:14:50 +02003871 if (mod && (lyd_owner_module(sibling_src) != mod)) {
3872 /* skip data nodes from different modules */
3873 continue;
3874 }
3875
Radek Krejci857189e2020-09-01 13:26:36 +02003876 first = (sibling_src == source) ? 1 : 0;
Michal Vaskocd3f6172021-05-18 16:14:50 +02003877 ret = lyd_merge_sibling_r(target, NULL, &sibling_src, merge_cb, cb_data, options, &dup_inst);
3878 if (ret) {
3879 break;
3880 }
Michal Vasko4490d312020-06-16 13:08:55 +02003881 if (first && !sibling_src) {
3882 /* source was spent (unlinked), move to the next node */
3883 source = tmp;
3884 }
3885
Michal Vasko3a41dff2020-07-15 14:30:28 +02003886 if (nosiblings) {
Michal Vasko4490d312020-06-16 13:08:55 +02003887 break;
3888 }
3889 }
3890
3891 if (options & LYD_MERGE_DESTRUCT) {
3892 /* free any leftover source data that were not merged */
3893 lyd_free_siblings((struct lyd_node *)source);
3894 }
3895
Michal Vaskocd3f6172021-05-18 16:14:50 +02003896 lyd_dup_inst_free(dup_inst);
3897 return ret;
Michal Vasko4490d312020-06-16 13:08:55 +02003898}
3899
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01003900LIBYANG_API_DEF LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003901lyd_merge_tree(struct lyd_node **target, const struct lyd_node *source, uint16_t options)
Michal Vasko3a41dff2020-07-15 14:30:28 +02003902{
Michal Vaskocd3f6172021-05-18 16:14:50 +02003903 return lyd_merge(target, source, NULL, NULL, NULL, options, 1);
Michal Vasko3a41dff2020-07-15 14:30:28 +02003904}
3905
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01003906LIBYANG_API_DEF LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003907lyd_merge_siblings(struct lyd_node **target, const struct lyd_node *source, uint16_t options)
Michal Vasko3a41dff2020-07-15 14:30:28 +02003908{
Michal Vaskocd3f6172021-05-18 16:14:50 +02003909 return lyd_merge(target, source, NULL, NULL, NULL, options, 0);
3910}
3911
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01003912LIBYANG_API_DEF LY_ERR
Michal Vaskocd3f6172021-05-18 16:14:50 +02003913lyd_merge_module(struct lyd_node **target, const struct lyd_node *source, const struct lys_module *mod,
3914 lyd_merge_cb merge_cb, void *cb_data, uint16_t options)
3915{
3916 return lyd_merge(target, source, mod, merge_cb, cb_data, options, 0);
Michal Vasko3a41dff2020-07-15 14:30:28 +02003917}
3918
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003919static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003920lyd_path_str_enlarge(char **buffer, size_t *buflen, size_t reqlen, ly_bool is_static)
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003921{
Michal Vasko14654712020-02-06 08:35:21 +01003922 /* ending \0 */
3923 ++reqlen;
3924
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003925 if (reqlen > *buflen) {
3926 if (is_static) {
3927 return LY_EINCOMPLETE;
3928 }
3929
3930 *buffer = ly_realloc(*buffer, reqlen * sizeof **buffer);
3931 if (!*buffer) {
3932 return LY_EMEM;
3933 }
3934
3935 *buflen = reqlen;
3936 }
3937
3938 return LY_SUCCESS;
3939}
3940
Michal Vaskod59035b2020-07-08 12:00:06 +02003941LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003942lyd_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 +02003943{
3944 const struct lyd_node *key;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003945 size_t len;
3946 const char *val;
3947 char quot;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003948
Michal Vasko824d0832021-11-04 15:36:51 +01003949 for (key = lyd_child(node); key && key->schema && (key->schema->flags & LYS_KEY); key = key->next) {
Radek Krejci6d5ba0c2021-04-26 07:49:59 +02003950 val = lyd_get_value(key);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003951 len = 1 + strlen(key->schema->name) + 2 + strlen(val) + 2;
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003952 LY_CHECK_RET(lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static));
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003953
3954 quot = '\'';
3955 if (strchr(val, '\'')) {
3956 quot = '"';
3957 }
3958 *bufused += sprintf(*buffer + *bufused, "[%s=%c%s%c]", key->schema->name, quot, val, quot);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003959 }
3960
3961 return LY_SUCCESS;
3962}
3963
3964/**
3965 * @brief Append leaf-list value predicate to path.
3966 *
3967 * @param[in] node Node to print.
3968 * @param[in,out] buffer Buffer to print to.
3969 * @param[in,out] buflen Current buffer length.
3970 * @param[in,out] bufused Current number of characters used in @p buffer.
3971 * @param[in] is_static Whether buffer is static or can be reallocated.
3972 * @return LY_ERR
3973 */
3974static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003975lyd_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 +02003976{
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003977 size_t len;
3978 const char *val;
3979 char quot;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003980
Radek Krejci6d5ba0c2021-04-26 07:49:59 +02003981 val = lyd_get_value(node);
Radek Krejcif13b87b2020-12-01 22:02:17 +01003982 len = 4 + strlen(val) + 2; /* "[.='" + val + "']" */
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003983 LY_CHECK_RET(lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static));
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003984
3985 quot = '\'';
3986 if (strchr(val, '\'')) {
3987 quot = '"';
3988 }
3989 *bufused += sprintf(*buffer + *bufused, "[.=%c%s%c]", quot, val, quot);
3990
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003991 return LY_SUCCESS;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02003992}
3993
3994/**
3995 * @brief Append node position (relative to its other instances) predicate to path.
3996 *
3997 * @param[in] node Node to print.
3998 * @param[in,out] buffer Buffer to print to.
3999 * @param[in,out] buflen Current buffer length.
4000 * @param[in,out] bufused Current number of characters used in @p buffer.
4001 * @param[in] is_static Whether buffer is static or can be reallocated.
4002 * @return LY_ERR
4003 */
4004static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02004005lyd_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 +02004006{
Michal Vasko5ec7cda2019-09-11 13:43:08 +02004007 size_t len;
Michal Vasko50cc0562021-05-18 16:15:43 +02004008 uint32_t pos;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02004009 char *val = NULL;
4010 LY_ERR rc;
4011
Michal Vasko50cc0562021-05-18 16:15:43 +02004012 pos = lyd_list_pos(node);
4013 if (asprintf(&val, "%" PRIu32, pos) == -1) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02004014 return LY_EMEM;
4015 }
4016
4017 len = 1 + strlen(val) + 1;
4018 rc = lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static);
4019 if (rc != LY_SUCCESS) {
4020 goto cleanup;
4021 }
4022
4023 *bufused += sprintf(*buffer + *bufused, "[%s]", val);
4024
4025cleanup:
4026 free(val);
4027 return rc;
4028}
4029
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01004030LIBYANG_API_DEF char *
Michal Vasko5ec7cda2019-09-11 13:43:08 +02004031lyd_path(const struct lyd_node *node, LYD_PATH_TYPE pathtype, char *buffer, size_t buflen)
4032{
Radek Krejci857189e2020-09-01 13:26:36 +02004033 ly_bool is_static = 0;
Radek Krejci1deb5be2020-08-26 16:43:36 +02004034 uint32_t i, depth;
Michal Vasko14654712020-02-06 08:35:21 +01004035 size_t bufused = 0, len;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02004036 const struct lyd_node *iter;
4037 const struct lys_module *mod;
Michal Vasko790b2bc2020-08-03 13:35:06 +02004038 LY_ERR rc = LY_SUCCESS;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02004039
4040 LY_CHECK_ARG_RET(NULL, node, NULL);
4041 if (buffer) {
Michal Vasko16385f42021-05-18 16:16:09 +02004042 LY_CHECK_ARG_RET(LYD_CTX(node), buflen > 1, NULL);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02004043 is_static = 1;
Michal Vasko14654712020-02-06 08:35:21 +01004044 } else {
4045 buflen = 0;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02004046 }
4047
4048 switch (pathtype) {
Radek Krejci635d2b82021-01-04 11:26:51 +01004049 case LYD_PATH_STD:
4050 case LYD_PATH_STD_NO_LAST_PRED:
Michal Vasko14654712020-02-06 08:35:21 +01004051 depth = 1;
Michal Vasko9e685082021-01-29 14:49:09 +01004052 for (iter = node; iter->parent; iter = lyd_parent(iter)) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02004053 ++depth;
4054 }
4055
Michal Vasko5ec7cda2019-09-11 13:43:08 +02004056 goto iter_print;
Michal Vasko14654712020-02-06 08:35:21 +01004057 while (depth) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02004058 /* find the right node */
Michal Vasko9e685082021-01-29 14:49:09 +01004059 for (iter = node, i = 1; i < depth; iter = lyd_parent(iter), ++i) {}
Michal Vasko5ec7cda2019-09-11 13:43:08 +02004060iter_print:
4061 /* print prefix and name */
4062 mod = NULL;
Michal Vasko195607b2022-01-06 13:35:08 +01004063 if (iter->schema && (!iter->parent || !iter->parent->schema ||
4064 (iter->schema->module != iter->parent->schema->module))) {
Michal Vasko5ec7cda2019-09-11 13:43:08 +02004065 mod = iter->schema->module;
4066 }
4067
4068 /* realloc string */
Michal Vaskoad92b672020-11-12 13:11:31 +01004069 len = 1 + (mod ? strlen(mod->name) + 1 : 0) + (iter->schema ? strlen(iter->schema->name) :
4070 strlen(((struct lyd_node_opaq *)iter)->name.name));
Michal Vasko5ec7cda2019-09-11 13:43:08 +02004071 rc = lyd_path_str_enlarge(&buffer, &buflen, bufused + len, is_static);
4072 if (rc != LY_SUCCESS) {
4073 break;
4074 }
4075
4076 /* print next node */
Radek Krejci1798aae2020-07-14 13:26:06 +02004077 bufused += sprintf(buffer + bufused, "/%s%s%s", mod ? mod->name : "", mod ? ":" : "",
Michal Vaskoad92b672020-11-12 13:11:31 +01004078 iter->schema ? iter->schema->name : ((struct lyd_node_opaq *)iter)->name.name);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02004079
Michal Vasko790b2bc2020-08-03 13:35:06 +02004080 /* do not always print the last (first) predicate */
Radek Krejci635d2b82021-01-04 11:26:51 +01004081 if (iter->schema && ((depth > 1) || (pathtype == LYD_PATH_STD))) {
Michal Vasko790b2bc2020-08-03 13:35:06 +02004082 switch (iter->schema->nodetype) {
4083 case LYS_LIST:
4084 if (iter->schema->flags & LYS_KEYLESS) {
4085 /* print its position */
4086 rc = lyd_path_position_predicate(iter, &buffer, &buflen, &bufused, is_static);
4087 } else {
4088 /* print all list keys in predicates */
4089 rc = lyd_path_list_predicate(iter, &buffer, &buflen, &bufused, is_static);
4090 }
4091 break;
4092 case LYS_LEAFLIST:
4093 if (iter->schema->flags & LYS_CONFIG_W) {
4094 /* print leaf-list value */
4095 rc = lyd_path_leaflist_predicate(iter, &buffer, &buflen, &bufused, is_static);
4096 } else {
4097 /* print its position */
4098 rc = lyd_path_position_predicate(iter, &buffer, &buflen, &bufused, is_static);
4099 }
4100 break;
4101 default:
4102 /* nothing to print more */
4103 break;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02004104 }
Michal Vasko5ec7cda2019-09-11 13:43:08 +02004105 }
4106 if (rc != LY_SUCCESS) {
4107 break;
4108 }
4109
Michal Vasko14654712020-02-06 08:35:21 +01004110 --depth;
Michal Vasko5ec7cda2019-09-11 13:43:08 +02004111 }
4112 break;
4113 }
4114
4115 return buffer;
4116}
Michal Vaskoe444f752020-02-10 12:20:06 +01004117
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01004118LIBYANG_API_DEF struct lyd_meta *
Michal Vasko25a32822020-07-09 15:48:22 +02004119lyd_find_meta(const struct lyd_meta *first, const struct lys_module *module, const char *name)
4120{
4121 struct lyd_meta *ret = NULL;
4122 const struct ly_ctx *ctx;
4123 const char *prefix, *tmp;
4124 char *str;
4125 size_t pref_len, name_len;
4126
4127 LY_CHECK_ARG_RET(NULL, module || strchr(name, ':'), name, NULL);
Michal Vasko892f5bf2021-11-24 10:41:05 +01004128 LY_CHECK_CTX_EQUAL_RET(first ? first->annotation->module->ctx : NULL, module ? module->ctx : NULL, NULL);
Michal Vasko25a32822020-07-09 15:48:22 +02004129
4130 if (!first) {
4131 return NULL;
4132 }
4133
4134 ctx = first->annotation->module->ctx;
4135
4136 /* parse the name */
4137 tmp = name;
4138 if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) {
4139 LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name);
4140 return NULL;
4141 }
4142
4143 /* find the module */
4144 if (prefix) {
4145 str = strndup(prefix, pref_len);
4146 module = ly_ctx_get_module_latest(ctx, str);
4147 free(str);
Radek Krejci422afb12021-03-04 16:38:16 +01004148 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 +02004149 }
4150
4151 /* find the metadata */
4152 LY_LIST_FOR(first, first) {
4153 if ((first->annotation->module == module) && !strcmp(first->name, name)) {
4154 ret = (struct lyd_meta *)first;
4155 break;
4156 }
4157 }
4158
4159 return ret;
4160}
4161
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01004162LIBYANG_API_DEF LY_ERR
Michal Vaskoe444f752020-02-10 12:20:06 +01004163lyd_find_sibling_first(const struct lyd_node *siblings, const struct lyd_node *target, struct lyd_node **match)
4164{
Michal Vaskoe78faec2021-04-08 17:24:43 +02004165 struct lyd_node **match_p, *iter;
Michal Vaskoe444f752020-02-10 12:20:06 +01004166 struct lyd_node_inner *parent;
Michal Vaskoe78faec2021-04-08 17:24:43 +02004167 ly_bool found;
Michal Vaskoe444f752020-02-10 12:20:06 +01004168
Michal Vaskof03ed032020-03-04 13:31:44 +01004169 LY_CHECK_ARG_RET(NULL, target, LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +01004170 LY_CHECK_CTX_EQUAL_RET(siblings ? LYD_CTX(siblings) : NULL, LYD_CTX(target), LY_EINVAL);
Michal Vaskoe444f752020-02-10 12:20:06 +01004171
Michal Vasko6da1e952020-12-09 18:14:38 +01004172 if (!siblings || (siblings->schema && target->schema &&
4173 (lysc_data_parent(siblings->schema) != lysc_data_parent(target->schema)))) {
Michal Vasko62ed12d2020-05-21 10:08:25 +02004174 /* no data or schema mismatch */
Michal Vasko9b368d32020-02-14 13:53:31 +01004175 if (match) {
4176 *match = NULL;
4177 }
Michal Vaskoe444f752020-02-10 12:20:06 +01004178 return LY_ENOTFOUND;
4179 }
4180
Michal Vaskoe78faec2021-04-08 17:24:43 +02004181 /* get first sibling */
4182 siblings = lyd_first_sibling(siblings);
Michal Vaskoe444f752020-02-10 12:20:06 +01004183
Michal Vasko9e685082021-01-29 14:49:09 +01004184 parent = siblings->parent;
Michal Vasko6da1e952020-12-09 18:14:38 +01004185 if (parent && parent->schema && parent->children_ht) {
Michal Vaskoe444f752020-02-10 12:20:06 +01004186 assert(target->hash);
4187
Michal Vaskoe78faec2021-04-08 17:24:43 +02004188 if (lysc_is_dup_inst_list(target->schema)) {
4189 /* we must search the instances from beginning to find the first matching one */
4190 found = 0;
4191 LYD_LIST_FOR_INST(siblings, target->schema, iter) {
4192 if (!lyd_compare_single(target, iter, 0)) {
4193 found = 1;
4194 break;
4195 }
4196 }
4197 if (found) {
4198 siblings = iter;
Michal Vaskoda859032020-07-14 12:20:14 +02004199 } else {
4200 siblings = NULL;
4201 }
Michal Vaskoe444f752020-02-10 12:20:06 +01004202 } else {
Michal Vaskoe78faec2021-04-08 17:24:43 +02004203 /* find by hash */
4204 if (!lyht_find(parent->children_ht, &target, target->hash, (void **)&match_p)) {
4205 siblings = *match_p;
4206 } else {
4207 /* not found */
4208 siblings = NULL;
4209 }
Michal Vaskoe444f752020-02-10 12:20:06 +01004210 }
4211 } else {
4212 /* no children hash table */
Michal Vaskod989ba02020-08-24 10:59:24 +02004213 for ( ; siblings; siblings = siblings->next) {
Michal Vasko8f359bf2020-07-28 10:41:15 +02004214 if (!lyd_compare_single(siblings, target, 0)) {
Michal Vaskoe444f752020-02-10 12:20:06 +01004215 break;
4216 }
4217 }
4218 }
4219
4220 if (!siblings) {
Michal Vasko9b368d32020-02-14 13:53:31 +01004221 if (match) {
4222 *match = NULL;
4223 }
Michal Vaskoe444f752020-02-10 12:20:06 +01004224 return LY_ENOTFOUND;
4225 }
4226
Michal Vasko9b368d32020-02-14 13:53:31 +01004227 if (match) {
4228 *match = (struct lyd_node *)siblings;
4229 }
Michal Vaskoe444f752020-02-10 12:20:06 +01004230 return LY_SUCCESS;
4231}
4232
Radek Krejci857189e2020-09-01 13:26:36 +02004233/**
4234 * @brief Comparison callback to match schema node with a schema of a data node.
4235 *
4236 * @param[in] val1_p Pointer to the schema node
4237 * @param[in] val2_p Pointer to the data node
Michal Vasko62524a92021-02-26 10:08:50 +01004238 * Implementation of ::lyht_value_equal_cb.
Radek Krejci857189e2020-09-01 13:26:36 +02004239 */
4240static ly_bool
4241lyd_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 +01004242{
4243 struct lysc_node *val1;
4244 struct lyd_node *val2;
4245
4246 val1 = *((struct lysc_node **)val1_p);
4247 val2 = *((struct lyd_node **)val2_p);
4248
Michal Vasko90932a92020-02-12 14:33:03 +01004249 if (val1 == val2->schema) {
4250 /* schema match is enough */
4251 return 1;
4252 } else {
4253 return 0;
4254 }
4255}
4256
Michal Vasko92239c72020-11-18 18:17:25 +01004257/**
4258 * @brief Search in the given siblings (NOT recursively) for the first schema node data instance.
4259 * Uses hashes - should be used whenever possible for best performance.
4260 *
4261 * @param[in] siblings Siblings to search in including preceding and succeeding nodes.
4262 * @param[in] schema Target data node schema to find.
4263 * @param[out] match Can be NULL, otherwise the found data node.
4264 * @return LY_SUCCESS on success, @p match set.
4265 * @return LY_ENOTFOUND if not found, @p match set to NULL.
4266 * @return LY_ERR value if another error occurred.
4267 */
Michal Vasko90932a92020-02-12 14:33:03 +01004268static LY_ERR
4269lyd_find_sibling_schema(const struct lyd_node *siblings, const struct lysc_node *schema, struct lyd_node **match)
4270{
4271 struct lyd_node **match_p;
4272 struct lyd_node_inner *parent;
4273 uint32_t hash;
Michal Vasko62524a92021-02-26 10:08:50 +01004274 lyht_value_equal_cb ht_cb;
Michal Vasko90932a92020-02-12 14:33:03 +01004275
Michal Vaskob104f112020-07-17 09:54:54 +02004276 assert(siblings && schema);
Michal Vasko90932a92020-02-12 14:33:03 +01004277
Michal Vasko9e685082021-01-29 14:49:09 +01004278 parent = siblings->parent;
Michal Vasko08fd6132020-11-18 18:17:45 +01004279 if (parent && parent->schema && parent->children_ht) {
Michal Vasko90932a92020-02-12 14:33:03 +01004280 /* calculate our hash */
4281 hash = dict_hash_multi(0, schema->module->name, strlen(schema->module->name));
4282 hash = dict_hash_multi(hash, schema->name, strlen(schema->name));
4283 hash = dict_hash_multi(hash, NULL, 0);
4284
4285 /* use special hash table function */
4286 ht_cb = lyht_set_cb(parent->children_ht, lyd_hash_table_schema_val_equal);
4287
4288 /* find by hash */
4289 if (!lyht_find(parent->children_ht, &schema, hash, (void **)&match_p)) {
4290 siblings = *match_p;
4291 } else {
4292 /* not found */
4293 siblings = NULL;
4294 }
4295
4296 /* set the original hash table compare function back */
4297 lyht_set_cb(parent->children_ht, ht_cb);
4298 } else {
Michal Vaskob104f112020-07-17 09:54:54 +02004299 /* find first sibling */
4300 if (siblings->parent) {
4301 siblings = siblings->parent->child;
4302 } else {
4303 while (siblings->prev->next) {
4304 siblings = siblings->prev;
4305 }
4306 }
4307
4308 /* search manually without hashes */
Michal Vaskod989ba02020-08-24 10:59:24 +02004309 for ( ; siblings; siblings = siblings->next) {
Michal Vasko90932a92020-02-12 14:33:03 +01004310 if (siblings->schema == schema) {
4311 /* schema match is enough */
4312 break;
4313 }
4314 }
4315 }
4316
4317 if (!siblings) {
Michal Vasko9b368d32020-02-14 13:53:31 +01004318 if (match) {
4319 *match = NULL;
4320 }
Michal Vasko90932a92020-02-12 14:33:03 +01004321 return LY_ENOTFOUND;
4322 }
4323
Michal Vasko9b368d32020-02-14 13:53:31 +01004324 if (match) {
4325 *match = (struct lyd_node *)siblings;
4326 }
Michal Vasko90932a92020-02-12 14:33:03 +01004327 return LY_SUCCESS;
4328}
4329
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01004330LIBYANG_API_DEF LY_ERR
Michal Vaskoe444f752020-02-10 12:20:06 +01004331lyd_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 +02004332 size_t val_len, struct lyd_node **match)
Michal Vaskoe444f752020-02-10 12:20:06 +01004333{
4334 LY_ERR rc;
4335 struct lyd_node *target = NULL;
4336
Michal Vasko4c583e82020-07-17 12:16:14 +02004337 LY_CHECK_ARG_RET(NULL, schema, !(schema->nodetype & (LYS_CHOICE | LYS_CASE)), LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +01004338 LY_CHECK_CTX_EQUAL_RET(siblings ? LYD_CTX(siblings) : NULL, schema->module->ctx, LY_EINVAL);
Michal Vaskoe444f752020-02-10 12:20:06 +01004339
Michal Vasko08fd6132020-11-18 18:17:45 +01004340 if (!siblings || (siblings->schema && (lysc_data_parent(siblings->schema) != lysc_data_parent(schema)))) {
Michal Vasko62ed12d2020-05-21 10:08:25 +02004341 /* no data or schema mismatch */
Michal Vasko9b368d32020-02-14 13:53:31 +01004342 if (match) {
4343 *match = NULL;
4344 }
Michal Vaskoe444f752020-02-10 12:20:06 +01004345 return LY_ENOTFOUND;
4346 }
4347
Michal Vaskof03ed032020-03-04 13:31:44 +01004348 if (key_or_value && !val_len) {
4349 val_len = strlen(key_or_value);
4350 }
4351
Michal Vaskob104f112020-07-17 09:54:54 +02004352 if ((schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) && key_or_value) {
4353 /* create a data node and find the instance */
4354 if (schema->nodetype == LYS_LEAFLIST) {
4355 /* target used attributes: schema, hash, value */
Radek Krejci8df109d2021-04-23 12:19:08 +02004356 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 +02004357 LY_CHECK_RET(rc);
Michal Vaskob104f112020-07-17 09:54:54 +02004358 } else {
Michal Vasko90932a92020-02-12 14:33:03 +01004359 /* target used attributes: schema, hash, child (all keys) */
Michal Vasko004d3152020-06-11 19:59:22 +02004360 LY_CHECK_RET(lyd_create_list2(schema, key_or_value, val_len, &target));
Michal Vasko90932a92020-02-12 14:33:03 +01004361 }
4362
4363 /* find it */
4364 rc = lyd_find_sibling_first(siblings, target, match);
Michal Vaskob104f112020-07-17 09:54:54 +02004365 } else {
4366 /* find the first schema node instance */
4367 rc = lyd_find_sibling_schema(siblings, schema, match);
Michal Vaskoe444f752020-02-10 12:20:06 +01004368 }
4369
Michal Vaskoe444f752020-02-10 12:20:06 +01004370 lyd_free_tree(target);
4371 return rc;
4372}
Michal Vaskoccc02342020-05-21 10:09:21 +02004373
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01004374LIBYANG_API_DEF LY_ERR
Michal Vaskoe78faec2021-04-08 17:24:43 +02004375lyd_find_sibling_dup_inst_set(const struct lyd_node *siblings, const struct lyd_node *target, struct ly_set **set)
4376{
4377 struct lyd_node **match_p, *first, *iter;
4378 struct lyd_node_inner *parent;
4379
4380 LY_CHECK_ARG_RET(NULL, target, lysc_is_dup_inst_list(target->schema), set, LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +01004381 LY_CHECK_CTX_EQUAL_RET(siblings ? LYD_CTX(siblings) : NULL, LYD_CTX(target), LY_EINVAL);
Michal Vaskoe78faec2021-04-08 17:24:43 +02004382
4383 LY_CHECK_RET(ly_set_new(set));
4384
4385 if (!siblings || (siblings->schema && (lysc_data_parent(siblings->schema) != lysc_data_parent(target->schema)))) {
4386 /* no data or schema mismatch */
4387 return LY_ENOTFOUND;
4388 }
4389
4390 /* get first sibling */
4391 siblings = lyd_first_sibling(siblings);
4392
4393 parent = siblings->parent;
4394 if (parent && parent->schema && parent->children_ht) {
4395 assert(target->hash);
4396
4397 /* find the first instance */
4398 lyd_find_sibling_first(siblings, target, &first);
4399 if (first) {
4400 /* add it so that it is the first in the set */
4401 if (ly_set_add(*set, first, 1, NULL)) {
4402 goto error;
4403 }
4404
4405 /* find by hash */
4406 if (!lyht_find(parent->children_ht, &target, target->hash, (void **)&match_p)) {
4407 iter = *match_p;
4408 } else {
4409 /* not found */
4410 iter = NULL;
4411 }
4412 while (iter) {
4413 /* add all found nodes into the set */
4414 if ((iter != first) && !lyd_compare_single(iter, target, 0) && ly_set_add(*set, iter, 1, NULL)) {
4415 goto error;
4416 }
4417
4418 /* find next instance */
4419 if (lyht_find_next(parent->children_ht, &iter, iter->hash, (void **)&match_p)) {
4420 iter = NULL;
4421 } else {
4422 iter = *match_p;
4423 }
4424 }
4425 }
4426 } else {
4427 /* no children hash table */
4428 LY_LIST_FOR(siblings, siblings) {
4429 if (!lyd_compare_single(target, siblings, 0)) {
4430 ly_set_add(*set, (void *)siblings, 1, NULL);
4431 }
4432 }
4433 }
4434
4435 if (!(*set)->count) {
4436 return LY_ENOTFOUND;
4437 }
4438 return LY_SUCCESS;
4439
4440error:
4441 ly_set_free(*set, NULL);
4442 *set = NULL;
4443 return LY_EMEM;
4444}
4445
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01004446LIBYANG_API_DEF LY_ERR
Michal Vasko1d4af6c2021-02-22 13:31:26 +01004447lyd_find_sibling_opaq_next(const struct lyd_node *first, const char *name, struct lyd_node **match)
4448{
4449 LY_CHECK_ARG_RET(NULL, name, LY_EINVAL);
4450
4451 for ( ; first; first = first->next) {
4452 if (!first->schema && !strcmp(LYD_NAME(first), name)) {
4453 break;
4454 }
4455 }
4456
4457 if (match) {
4458 *match = (struct lyd_node *)first;
4459 }
4460 return first ? LY_SUCCESS : LY_ENOTFOUND;
4461}
4462
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01004463LIBYANG_API_DEF LY_ERR
Michal Vaskoe3716b32021-12-13 16:58:25 +01004464lyd_find_xpath3(const struct lyd_node *ctx_node, const struct lyd_node *tree, const char *xpath,
4465 const struct lyxp_var *vars, struct ly_set **set)
Michal Vaskoccc02342020-05-21 10:09:21 +02004466{
4467 LY_ERR ret = LY_SUCCESS;
Michal Vasko8bd9cc72021-07-16 14:06:10 +02004468 struct lyxp_set xp_set = {0};
Radek Krejcif03a9e22020-09-18 20:09:31 +02004469 struct lyxp_expr *exp = NULL;
Michal Vaskoccc02342020-05-21 10:09:21 +02004470 uint32_t i;
4471
Michal Vaskoe3716b32021-12-13 16:58:25 +01004472 LY_CHECK_ARG_RET(NULL, tree, xpath, set, LY_EINVAL);
Michal Vaskoccc02342020-05-21 10:09:21 +02004473
Michal Vasko37c69432021-04-12 14:48:24 +02004474 *set = NULL;
Michal Vaskoccc02342020-05-21 10:09:21 +02004475
4476 /* compile expression */
Michal Vaskoe3716b32021-12-13 16:58:25 +01004477 ret = lyxp_expr_parse((struct ly_ctx *)LYD_CTX(tree), xpath, 0, 1, &exp);
Radek Krejcif03a9e22020-09-18 20:09:31 +02004478 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02004479
4480 /* evaluate expression */
Michal Vaskoe3716b32021-12-13 16:58:25 +01004481 ret = lyxp_eval(LYD_CTX(tree), exp, NULL, LY_VALUE_JSON, NULL, ctx_node, tree, vars, &xp_set, LYXP_IGNORE_WHEN);
Michal Vaskoccc02342020-05-21 10:09:21 +02004482 LY_CHECK_GOTO(ret, cleanup);
4483
4484 /* allocate return set */
Radek Krejciba03a5a2020-08-27 14:40:41 +02004485 ret = ly_set_new(set);
4486 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02004487
4488 /* transform into ly_set */
4489 if (xp_set.type == LYXP_SET_NODE_SET) {
4490 /* allocate memory for all the elements once (even though not all items must be elements but most likely will be) */
4491 (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs);
Michal Vaskoe3716b32021-12-13 16:58:25 +01004492 LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(LYD_CTX(tree)); ret = LY_EMEM, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02004493 (*set)->size = xp_set.used;
4494
4495 for (i = 0; i < xp_set.used; ++i) {
4496 if (xp_set.val.nodes[i].type == LYXP_NODE_ELEM) {
Radek Krejci3d92e442020-10-12 12:48:13 +02004497 ret = ly_set_add(*set, xp_set.val.nodes[i].node, 1, NULL);
Radek Krejciba03a5a2020-08-27 14:40:41 +02004498 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoccc02342020-05-21 10:09:21 +02004499 }
4500 }
4501 }
4502
4503cleanup:
Michal Vasko0691d522020-05-21 13:21:47 +02004504 lyxp_set_free_content(&xp_set);
Michal Vaskoe3716b32021-12-13 16:58:25 +01004505 lyxp_expr_free((struct ly_ctx *)LYD_CTX(tree), exp);
Radek Krejci8f45abc2020-11-26 12:15:13 +01004506 if (ret) {
4507 ly_set_free(*set, NULL);
4508 *set = NULL;
4509 }
Michal Vaskoccc02342020-05-21 10:09:21 +02004510 return ret;
4511}
Radek Krejcica989142020-11-05 11:32:22 +01004512
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01004513LIBYANG_API_DEF LY_ERR
Michal Vaskoe3716b32021-12-13 16:58:25 +01004514lyd_find_xpath2(const struct lyd_node *ctx_node, const char *xpath, const struct lyxp_var *vars, struct ly_set **set)
4515{
4516 LY_CHECK_ARG_RET(NULL, ctx_node, xpath, set, LY_EINVAL);
4517
4518 return lyd_find_xpath3(ctx_node, ctx_node, xpath, vars, set);
4519}
4520
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01004521LIBYANG_API_DEF LY_ERR
aPiecekfba75362021-10-07 12:39:48 +02004522lyd_find_xpath(const struct lyd_node *ctx_node, const char *xpath, struct ly_set **set)
4523{
Michal Vaskoe3716b32021-12-13 16:58:25 +01004524 LY_CHECK_ARG_RET(NULL, ctx_node, xpath, set, LY_EINVAL);
4525
4526 return lyd_find_xpath3(ctx_node, ctx_node, xpath, NULL, set);
aPiecekfba75362021-10-07 12:39:48 +02004527}
4528
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01004529LIBYANG_API_DEF LY_ERR
aPiecekfba75362021-10-07 12:39:48 +02004530lyd_eval_xpath2(const struct lyd_node *ctx_node, const char *xpath, const struct lyxp_var *vars, ly_bool *result)
Michal Vaskoc9eb3ca2021-07-16 10:20:37 +02004531{
4532 LY_ERR ret = LY_SUCCESS;
Michal Vasko8bd9cc72021-07-16 14:06:10 +02004533 struct lyxp_set xp_set = {0};
Michal Vaskoc9eb3ca2021-07-16 10:20:37 +02004534 struct lyxp_expr *exp = NULL;
4535
4536 LY_CHECK_ARG_RET(NULL, ctx_node, xpath, result, LY_EINVAL);
4537
4538 /* compile expression */
4539 ret = lyxp_expr_parse((struct ly_ctx *)LYD_CTX(ctx_node), xpath, 0, 1, &exp);
4540 LY_CHECK_GOTO(ret, cleanup);
4541
4542 /* evaluate expression */
aPiecekfba75362021-10-07 12:39:48 +02004543 ret = lyxp_eval(LYD_CTX(ctx_node), exp, NULL, LY_VALUE_JSON, NULL, ctx_node, ctx_node, vars, &xp_set, LYXP_IGNORE_WHEN);
Michal Vaskoc9eb3ca2021-07-16 10:20:37 +02004544 LY_CHECK_GOTO(ret, cleanup);
4545
4546 /* transform into boolean */
4547 ret = lyxp_set_cast(&xp_set, LYXP_SET_BOOLEAN);
4548 LY_CHECK_GOTO(ret, cleanup);
4549
4550 /* set result */
4551 *result = xp_set.val.bln;
4552
4553cleanup:
4554 lyxp_set_free_content(&xp_set);
4555 lyxp_expr_free((struct ly_ctx *)LYD_CTX(ctx_node), exp);
4556 return ret;
4557}
4558
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01004559LIBYANG_API_DEF LY_ERR
aPiecekfba75362021-10-07 12:39:48 +02004560lyd_eval_xpath(const struct lyd_node *ctx_node, const char *xpath, ly_bool *result)
4561{
4562 return lyd_eval_xpath2(ctx_node, xpath, NULL, result);
4563}
4564
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01004565LIBYANG_API_DEF LY_ERR
Michal Vasko3e1f6552021-01-14 09:27:55 +01004566lyd_find_path(const struct lyd_node *ctx_node, const char *path, ly_bool output, struct lyd_node **match)
4567{
4568 LY_ERR ret = LY_SUCCESS;
4569 struct lyxp_expr *expr = NULL;
4570 struct ly_path *lypath = NULL;
4571
4572 LY_CHECK_ARG_RET(NULL, ctx_node, ctx_node->schema, path, LY_EINVAL);
4573
4574 /* parse the path */
Michal Vaskoed725d72021-06-23 12:03:45 +02004575 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 +01004576 LY_PATH_PREFIX_OPTIONAL, LY_PATH_PRED_SIMPLE, &expr);
4577 LY_CHECK_GOTO(ret, cleanup);
4578
4579 /* compile the path */
Michal Vaskoed725d72021-06-23 12:03:45 +02004580 ret = ly_path_compile(LYD_CTX(ctx_node), NULL, ctx_node->schema, NULL, expr,
Michal Vasko0884d212021-10-14 09:21:46 +02004581 output ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT, LY_PATH_TARGET_SINGLE, 0, LY_VALUE_JSON, NULL, &lypath);
Michal Vasko3e1f6552021-01-14 09:27:55 +01004582 LY_CHECK_GOTO(ret, cleanup);
4583
4584 /* evaluate the path */
4585 ret = ly_path_eval_partial(lypath, ctx_node, NULL, match);
4586
4587cleanup:
4588 lyxp_expr_free(LYD_CTX(ctx_node), expr);
4589 ly_path_free(LYD_CTX(ctx_node), lypath);
4590 return ret;
4591}
4592
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01004593LIBYANG_API_DEF LY_ERR
Michal Vaskobb22b182021-06-14 08:14:21 +02004594lyd_find_target(const struct ly_path *path, const struct lyd_node *tree, struct lyd_node **match)
4595{
4596 LY_ERR ret;
4597 struct lyd_node *m;
4598
4599 LY_CHECK_ARG_RET(NULL, path, LY_EINVAL);
4600
4601 ret = ly_path_eval(path, tree, &m);
4602 if (ret) {
4603 if (match) {
4604 *match = NULL;
4605 }
4606 return LY_ENOTFOUND;
4607 }
4608
4609 if (match) {
4610 *match = m;
4611 }
4612 return LY_SUCCESS;
4613}
4614
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01004615LIBYANG_API_DEF uint32_t
Radek Krejcica989142020-11-05 11:32:22 +01004616lyd_list_pos(const struct lyd_node *instance)
4617{
4618 const struct lyd_node *iter = NULL;
4619 uint32_t pos = 0;
4620
4621 if (!instance || !(instance->schema->nodetype & (LYS_LIST | LYS_LEAFLIST))) {
4622 return 0;
4623 }
4624
4625 /* data instances are ordered, so we can stop when we found instance of other schema node */
4626 for (iter = instance; iter->schema == instance->schema; iter = iter->prev) {
Radek Krejcibb27df32020-11-13 15:39:16 +01004627 if (pos && (iter->next == NULL)) {
Radek Krejcica989142020-11-05 11:32:22 +01004628 /* overrun to the end of the siblings list */
4629 break;
4630 }
4631 ++pos;
4632 }
4633
4634 return pos;
4635}
Radek Krejci4233f9b2020-11-05 12:38:35 +01004636
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01004637LIBYANG_API_DEF struct lyd_node *
Radek Krejci4233f9b2020-11-05 12:38:35 +01004638lyd_first_sibling(const struct lyd_node *node)
4639{
4640 struct lyd_node *start;
4641
4642 if (!node) {
4643 return NULL;
4644 }
4645
4646 /* get the first sibling */
4647 if (node->parent) {
4648 start = node->parent->child;
4649 } else {
Radek Krejcibb27df32020-11-13 15:39:16 +01004650 for (start = (struct lyd_node *)node; start->prev->next; start = start->prev) {}
Radek Krejci4233f9b2020-11-05 12:38:35 +01004651 }
4652
4653 return start;
4654}