blob: 556ac5817b60e05d21569dbf6d4a040b49e6f41c [file] [log] [blame]
Michal Vaskod59035b2020-07-08 12:00:06 +02001/**
2 * @file diff.c
3 * @author Michal Vasko <mvasko@cesnet.cz>
4 * @brief diff functions
5 *
Michal Vaskoe78faec2021-04-08 17:24:43 +02006 * Copyright (c) 2020 - 2021 CESNET, z.s.p.o.
Michal Vaskod59035b2020-07-08 12:00:06 +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 */
Christian Hopps32874e12021-05-01 09:43:54 -040014#define _GNU_SOURCE /* asprintf, strdup */
Michal Vaskod59035b2020-07-08 12:00:06 +020015
16#include "diff.h"
17
18#include <assert.h>
19#include <stddef.h>
Michal Vaskoe78faec2021-04-08 17:24:43 +020020#include <stdint.h>
21#include <stdio.h>
Radek Krejci47fab892020-11-05 17:02:41 +010022#include <stdlib.h>
Michal Vaskod59035b2020-07-08 12:00:06 +020023#include <string.h>
24
25#include "common.h"
Michal Vaskoe78faec2021-04-08 17:24:43 +020026#include "compat.h"
Radek Krejci47fab892020-11-05 17:02:41 +010027#include "context.h"
Michal Vaskod59035b2020-07-08 12:00:06 +020028#include "log.h"
Michal Vasko19175b62022-04-01 09:17:07 +020029#include "plugins_exts.h"
Michal Vaskob4750962022-10-06 15:33:35 +020030#include "plugins_exts/metadata.h"
Radek Krejci47fab892020-11-05 17:02:41 +010031#include "plugins_types.h"
32#include "set.h"
33#include "tree.h"
34#include "tree_data.h"
Michal Vaskod59035b2020-07-08 12:00:06 +020035#include "tree_data_internal.h"
Radek Krejci859a15a2021-03-05 20:56:59 +010036#include "tree_edit.h"
Michal Vaskod59035b2020-07-08 12:00:06 +020037#include "tree_schema.h"
38#include "tree_schema_internal.h"
39
Michal Vasko52afd7d2022-01-18 14:08:34 +010040#define LOGERR_META(ctx, meta_name, node) \
41 { \
42 char *__path = lyd_path(node, LYD_PATH_STD, NULL, 0); \
43 LOGERR(ctx, LY_EINVAL, "Failed to find metadata \"%s\" for node \"%s\".", meta_name, __path); \
44 free(__path); \
45 }
46
47#define LOGERR_NOINST(ctx, node) \
48 { \
49 char *__path = lyd_path(node, LYD_PATH_STD, NULL, 0); \
50 LOGERR(ctx, LY_EINVAL, "Failed to find node \"%s\" instance in data.", __path); \
51 free(__path); \
52 }
53
54#define LOGERR_UNEXPVAL(ctx, node, data_source) \
55 { \
56 char *__path = lyd_path(node, LYD_PATH_STD, NULL, 0); \
57 LOGERR(ctx, LY_EINVAL, "Unexpected value of node \"%s\" in %s.", __path, data_source); \
58 free(__path); \
59 }
60
61#define LOGERR_MERGEOP(ctx, node, src_op, trg_op) \
62 { \
63 char *__path = lyd_path(node, LYD_PATH_STD, NULL, 0); \
64 LOGERR(ctx, LY_EINVAL, "Unable to merge operation \"%s\" with \"%s\" for node \"%s\".", \
65 lyd_diff_op2str(trg_op), lyd_diff_op2str(src_op), __path); \
66 free(__path); \
67 }
68
Michal Vaskod59035b2020-07-08 12:00:06 +020069static const char *
70lyd_diff_op2str(enum lyd_diff_op op)
71{
72 switch (op) {
73 case LYD_DIFF_OP_CREATE:
74 return "create";
75 case LYD_DIFF_OP_DELETE:
76 return "delete";
77 case LYD_DIFF_OP_REPLACE:
78 return "replace";
79 case LYD_DIFF_OP_NONE:
80 return "none";
81 }
82
83 LOGINT(NULL);
84 return NULL;
85}
86
Michal Vaskoe6323f62020-07-09 15:49:02 +020087static enum lyd_diff_op
88lyd_diff_str2op(const char *str)
89{
90 switch (str[0]) {
91 case 'c':
92 assert(!strcmp(str, "create"));
93 return LYD_DIFF_OP_CREATE;
94 case 'd':
95 assert(!strcmp(str, "delete"));
96 return LYD_DIFF_OP_DELETE;
97 case 'r':
98 assert(!strcmp(str, "replace"));
99 return LYD_DIFF_OP_REPLACE;
100 case 'n':
101 assert(!strcmp(str, "none"));
102 return LYD_DIFF_OP_NONE;
103 }
104
105 LOGINT(NULL);
106 return 0;
107}
108
Michal Vaskocffc3f92022-06-15 07:57:24 +0200109/**
110 * @brief Create diff metadata for a nested user-ordered node with the effective operation "create".
111 *
112 * @param[in] node User-rodered node to update.
113 * @return LY_ERR value.
114 */
115static LY_ERR
116lyd_diff_add_create_nested_userord(struct lyd_node *node)
117{
118 LY_ERR rc = LY_SUCCESS;
119 const char *meta_name, *meta_val;
120 size_t buflen = 0, bufused = 0;
121 uint32_t pos;
122 char *dyn = NULL;
123
124 assert(lysc_is_userordered(node->schema));
125
126 /* get correct metadata name and value */
127 if (lysc_is_dup_inst_list(node->schema)) {
128 meta_name = "yang:position";
129
130 pos = lyd_list_pos(node);
131 if (asprintf(&dyn, "%" PRIu32, pos) == -1) {
132 LOGMEM(LYD_CTX(node));
133 rc = LY_EMEM;
134 goto cleanup;
135 }
136 meta_val = dyn;
137 } else if (node->schema->nodetype == LYS_LIST) {
138 meta_name = "yang:key";
139
140 if (node->prev->next && (node->prev->schema == node->schema)) {
141 LY_CHECK_GOTO(rc = lyd_path_list_predicate(node->prev, &dyn, &buflen, &bufused, 0), cleanup);
142 meta_val = dyn;
143 } else {
144 meta_val = "";
145 }
146 } else {
147 meta_name = "yang:value";
148
149 if (node->prev->next && (node->prev->schema == node->schema)) {
150 meta_val = lyd_get_value(node->prev);
151 } else {
152 meta_val = "";
153 }
154 }
155
156 /* create the metadata */
157 LY_CHECK_GOTO(rc = lyd_new_meta(NULL, node, NULL, meta_name, meta_val, 0, NULL), cleanup);
158
159cleanup:
160 free(dyn);
161 return rc;
162}
163
Michal Vaskofb51a842023-06-20 08:50:24 +0200164/**
165 * @brief Find metadata/an attribute of a node.
166 *
167 * @param[in] node Node to search.
168 * @param[in] name Metadata/attribute name.
169 * @param[out] meta Metadata found, NULL if not found.
170 * @param[out] attr Attribute found, NULL if not found.
171 */
172static void
173lyd_diff_find_meta(const struct lyd_node *node, const char *name, struct lyd_meta **meta, struct lyd_attr **attr)
174{
175 struct lyd_meta *m;
176 struct lyd_attr *a;
177
178 if (meta) {
179 *meta = NULL;
180 }
181 if (attr) {
182 *attr = NULL;
183 }
184
185 if (node->schema) {
186 assert(meta);
187
188 LY_LIST_FOR(node->meta, m) {
189 if (!strcmp(m->name, name) && !strcmp(m->annotation->module->name, "yang")) {
190 *meta = m;
191 break;
192 }
193 }
194 } else {
195 assert(attr);
196
197 LY_LIST_FOR(((struct lyd_node_opaq *)node)->attr, a) {
198 /* name */
199 if (strcmp(a->name.name, name)) {
200 continue;
201 }
202
203 /* module */
204 switch (a->format) {
205 case LY_VALUE_JSON:
206 if (strcmp(a->name.module_name, "yang")) {
207 continue;
208 }
209 break;
210 case LY_VALUE_XML:
211 if (strcmp(a->name.module_ns, "urn:ietf:params:xml:ns:yang:1")) {
212 continue;
213 }
214 break;
215 default:
216 LOGINT(LYD_CTX(node));
217 return;
218 }
219
220 *attr = a;
221 break;
222 }
223 }
224}
225
226/**
227 * @brief Learn operation of a diff node.
228 *
229 * @param[in] diff_node Diff node.
230 * @param[out] op Operation.
231 * @return LY_ERR value.
232 */
233static LY_ERR
234lyd_diff_get_op(const struct lyd_node *diff_node, enum lyd_diff_op *op)
235{
236 struct lyd_meta *meta = NULL;
237 struct lyd_attr *attr = NULL;
238 const struct lyd_node *diff_parent;
239 const char *str;
240 char *path;
241
242 for (diff_parent = diff_node; diff_parent; diff_parent = lyd_parent(diff_parent)) {
243 lyd_diff_find_meta(diff_parent, "operation", &meta, &attr);
244 if (!meta && !attr) {
245 continue;
246 }
247
248 str = meta ? lyd_get_meta_value(meta) : attr->value;
249 if ((str[0] == 'r') && (diff_parent != diff_node)) {
250 /* we do not care about this operation if it's in our parent */
251 continue;
252 }
253 *op = lyd_diff_str2op(str);
254 return LY_SUCCESS;
255 }
256
257 /* operation not found */
258 path = lyd_path(diff_node, LYD_PATH_STD, NULL, 0);
259 LOGERR(LYD_CTX(diff_node), LY_EINVAL, "Node \"%s\" without an operation.", path);
260 free(path);
261 return LY_EINT;
262}
263
264/**
265 * @brief Remove metadata/an attribute from a node.
266 *
267 * @param[in] node Node to update.
268 * @param[in] name Metadata/attribute name.
269 */
270static void
271lyd_diff_del_meta(struct lyd_node *node, const char *name)
272{
273 struct lyd_meta *meta;
274 struct lyd_attr *attr;
275
276 lyd_diff_find_meta(node, name, &meta, &attr);
277
278 if (meta) {
279 lyd_free_meta_single(meta);
280 } else if (attr) {
281 lyd_free_attr_single(LYD_CTX(node), attr);
282 }
283}
284
Michal Vaskod59035b2020-07-08 12:00:06 +0200285LY_ERR
286lyd_diff_add(const struct lyd_node *node, enum lyd_diff_op op, const char *orig_default, const char *orig_value,
Michal Vaskoe78faec2021-04-08 17:24:43 +0200287 const char *key, const char *value, const char *position, const char *orig_key, const char *orig_position,
288 struct lyd_node **diff)
Michal Vaskod59035b2020-07-08 12:00:06 +0200289{
Michal Vaskocffc3f92022-06-15 07:57:24 +0200290 struct lyd_node *dup, *siblings, *match = NULL, *diff_parent = NULL, *elem;
Michal Vaskod59035b2020-07-08 12:00:06 +0200291 const struct lyd_node *parent = NULL;
Michal Vaskofb51a842023-06-20 08:50:24 +0200292 enum lyd_diff_op cur_op;
Michal Vaskod59035b2020-07-08 12:00:06 +0200293
294 assert(diff);
295
Michal Vasko53d48422020-11-13 18:02:29 +0100296 /* replace leaf always needs orig-default and orig-value */
297 assert((node->schema->nodetype != LYS_LEAF) || (op != LYD_DIFF_OP_REPLACE) || (orig_default && orig_value));
298
299 /* create on userord needs key/value */
300 assert((node->schema->nodetype != LYS_LIST) || !(node->schema->flags & LYS_ORDBY_USER) || (op != LYD_DIFF_OP_CREATE) ||
Michal Vaskoe78faec2021-04-08 17:24:43 +0200301 (lysc_is_dup_inst_list(node->schema) && position) || key);
Michal Vasko53d48422020-11-13 18:02:29 +0100302 assert((node->schema->nodetype != LYS_LEAFLIST) || !(node->schema->flags & LYS_ORDBY_USER) ||
Michal Vaskoe78faec2021-04-08 17:24:43 +0200303 (op != LYD_DIFF_OP_CREATE) || (lysc_is_dup_inst_list(node->schema) && position) || value);
Michal Vasko53d48422020-11-13 18:02:29 +0100304
305 /* move on userord needs both key and orig-key/value and orig-value */
306 assert((node->schema->nodetype != LYS_LIST) || !(node->schema->flags & LYS_ORDBY_USER) || (op != LYD_DIFF_OP_REPLACE) ||
Michal Vaskoe78faec2021-04-08 17:24:43 +0200307 (lysc_is_dup_inst_list(node->schema) && position && orig_position) || (key && orig_key));
Michal Vasko53d48422020-11-13 18:02:29 +0100308 assert((node->schema->nodetype != LYS_LEAFLIST) || !(node->schema->flags & LYS_ORDBY_USER) ||
Michal Vaskoe78faec2021-04-08 17:24:43 +0200309 (op != LYD_DIFF_OP_REPLACE) || (lysc_is_dup_inst_list(node->schema) && position && orig_position) ||
310 (value && orig_value));
Michal Vasko53d48422020-11-13 18:02:29 +0100311
Michal Vaskod59035b2020-07-08 12:00:06 +0200312 /* find the first existing parent */
313 siblings = *diff;
Michal Vaskofb51a842023-06-20 08:50:24 +0200314 do {
Michal Vaskod59035b2020-07-08 12:00:06 +0200315 /* find next node parent */
316 parent = node;
317 while (parent->parent && (!diff_parent || (parent->parent->schema != diff_parent->schema))) {
Michal Vasko9e685082021-01-29 14:49:09 +0100318 parent = lyd_parent(parent);
Michal Vaskod59035b2020-07-08 12:00:06 +0200319 }
Michal Vaskofb51a842023-06-20 08:50:24 +0200320
321 if (lysc_is_dup_inst_list(parent->schema)) {
322 /* assume it never exists, we are not able to distinguish whether it does or not */
323 match = NULL;
Michal Vaskod59035b2020-07-08 12:00:06 +0200324 break;
325 }
326
327 /* check whether it exists in the diff */
328 if (lyd_find_sibling_first(siblings, parent, &match)) {
329 break;
330 }
331
332 /* another parent found */
333 diff_parent = match;
334
335 /* move down in the diff */
Radek Krejcia1c1e542020-09-29 16:06:52 +0200336 siblings = lyd_child_no_keys(match);
Michal Vaskofb51a842023-06-20 08:50:24 +0200337 } while (parent != node);
Michal Vaskod59035b2020-07-08 12:00:06 +0200338
Michal Vaskofb51a842023-06-20 08:50:24 +0200339 if (match && (parent == node)) {
340 /* special case when there is already an operation on our descendant */
341 assert(!lyd_diff_get_op(diff_parent, &cur_op) && (cur_op == LYD_DIFF_OP_NONE));
342 (void)cur_op;
343
344 /* will be replaced by the new operation */
345 lyd_diff_del_meta(diff_parent, "operation");
346 dup = diff_parent;
Michal Vasko695a7f22023-02-14 10:02:10 +0100347 } else {
Michal Vaskofb51a842023-06-20 08:50:24 +0200348 /* duplicate the subtree (and connect to the diff if possible) */
349 if (diff_parent) {
350 LY_CHECK_RET(lyd_dup_single_to_ctx(node, LYD_CTX(diff_parent), (struct lyd_node_inner *)diff_parent,
351 LYD_DUP_RECURSIVE | LYD_DUP_NO_META | LYD_DUP_WITH_PARENTS | LYD_DUP_WITH_FLAGS, &dup));
352 } else {
353 LY_CHECK_RET(lyd_dup_single(node, NULL,
354 LYD_DUP_RECURSIVE | LYD_DUP_NO_META | LYD_DUP_WITH_PARENTS | LYD_DUP_WITH_FLAGS, &dup));
Michal Vaskod59035b2020-07-08 12:00:06 +0200355 }
Michal Vaskofb51a842023-06-20 08:50:24 +0200356
357 /* find the first duplicated parent */
358 if (!diff_parent) {
359 diff_parent = lyd_parent(dup);
360 while (diff_parent && diff_parent->parent) {
361 diff_parent = lyd_parent(diff_parent);
362 }
363 } else {
364 diff_parent = dup;
365 while (diff_parent->parent && (diff_parent->parent->schema == parent->schema)) {
366 diff_parent = lyd_parent(diff_parent);
367 }
Michal Vaskod59035b2020-07-08 12:00:06 +0200368 }
Michal Vaskod59035b2020-07-08 12:00:06 +0200369
Michal Vaskofb51a842023-06-20 08:50:24 +0200370 /* no parent existed, must be manually connected */
371 if (!diff_parent) {
372 /* there actually was no parent to duplicate */
373 lyd_insert_sibling(*diff, dup, diff);
374 } else if (!diff_parent->parent) {
375 lyd_insert_sibling(*diff, diff_parent, diff);
376 }
Michal Vaskod59035b2020-07-08 12:00:06 +0200377
Michal Vaskofb51a842023-06-20 08:50:24 +0200378 /* add parent operation, if any */
379 if (diff_parent && (diff_parent != dup)) {
380 LY_CHECK_RET(lyd_new_meta(NULL, diff_parent, NULL, "yang:operation", "none", 0, NULL));
381 }
Michal Vaskod59035b2020-07-08 12:00:06 +0200382 }
383
384 /* add subtree operation */
Michal Vasko2e552792022-11-02 12:15:31 +0100385 LY_CHECK_RET(lyd_new_meta(NULL, dup, NULL, "yang:operation", lyd_diff_op2str(op), 0, NULL));
Michal Vaskod59035b2020-07-08 12:00:06 +0200386
Michal Vaskocffc3f92022-06-15 07:57:24 +0200387 if (op == LYD_DIFF_OP_CREATE) {
388 /* all nested user-ordered (leaf-)lists need special metadata for create op */
389 LYD_TREE_DFS_BEGIN(dup, elem) {
390 if ((elem != dup) && lysc_is_userordered(elem->schema)) {
391 LY_CHECK_RET(lyd_diff_add_create_nested_userord(elem));
392 }
393 LYD_TREE_DFS_END(dup, elem);
394 }
395 }
396
Michal Vaskod59035b2020-07-08 12:00:06 +0200397 /* orig-default */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200398 if (orig_default) {
Michal Vasko2e552792022-11-02 12:15:31 +0100399 LY_CHECK_RET(lyd_new_meta(NULL, dup, NULL, "yang:orig-default", orig_default, 0, NULL));
Michal Vaskod59035b2020-07-08 12:00:06 +0200400 }
401
402 /* orig-value */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200403 if (orig_value) {
Michal Vasko2e552792022-11-02 12:15:31 +0100404 LY_CHECK_RET(lyd_new_meta(NULL, dup, NULL, "yang:orig-value", orig_value, 0, NULL));
Michal Vaskod59035b2020-07-08 12:00:06 +0200405 }
406
407 /* key */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200408 if (key) {
Michal Vasko2e552792022-11-02 12:15:31 +0100409 LY_CHECK_RET(lyd_new_meta(NULL, dup, NULL, "yang:key", key, 0, NULL));
Michal Vaskod59035b2020-07-08 12:00:06 +0200410 }
411
412 /* value */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200413 if (value) {
Michal Vasko2e552792022-11-02 12:15:31 +0100414 LY_CHECK_RET(lyd_new_meta(NULL, dup, NULL, "yang:value", value, 0, NULL));
Michal Vaskod59035b2020-07-08 12:00:06 +0200415 }
416
Michal Vaskoe78faec2021-04-08 17:24:43 +0200417 /* position */
418 if (position) {
Michal Vasko2e552792022-11-02 12:15:31 +0100419 LY_CHECK_RET(lyd_new_meta(NULL, dup, NULL, "yang:position", position, 0, NULL));
Michal Vaskoe78faec2021-04-08 17:24:43 +0200420 }
421
Michal Vaskod59035b2020-07-08 12:00:06 +0200422 /* orig-key */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200423 if (orig_key) {
Michal Vasko2e552792022-11-02 12:15:31 +0100424 LY_CHECK_RET(lyd_new_meta(NULL, dup, NULL, "yang:orig-key", orig_key, 0, NULL));
Michal Vaskod59035b2020-07-08 12:00:06 +0200425 }
426
Michal Vaskoe78faec2021-04-08 17:24:43 +0200427 /* orig-position */
428 if (orig_position) {
Michal Vasko2e552792022-11-02 12:15:31 +0100429 LY_CHECK_RET(lyd_new_meta(NULL, dup, NULL, "yang:orig-position", orig_position, 0, NULL));
Michal Vaskoe78faec2021-04-08 17:24:43 +0200430 }
431
Michal Vaskod59035b2020-07-08 12:00:06 +0200432 return LY_SUCCESS;
433}
434
435/**
436 * @brief Get a userord entry for a specific user-ordered list/leaf-list. Create if does not exist yet.
437 *
Michal Vasko1dcd73b2020-12-08 10:04:33 +0100438 * @param[in] first Node from the first tree, can be NULL (on create).
Michal Vaskod59035b2020-07-08 12:00:06 +0200439 * @param[in] schema Schema node of the list/leaf-list.
440 * @param[in,out] userord Sized array of userord items.
441 * @return Userord item for all the user-ordered list/leaf-list instances.
442 */
443static struct lyd_diff_userord *
444lyd_diff_userord_get(const struct lyd_node *first, const struct lysc_node *schema, struct lyd_diff_userord **userord)
445{
446 struct lyd_diff_userord *item;
Michal Vaskoe78faec2021-04-08 17:24:43 +0200447 struct lyd_node *iter;
448 const struct lyd_node **node;
Michal Vaskod59035b2020-07-08 12:00:06 +0200449 LY_ARRAY_COUNT_TYPE u;
450
451 LY_ARRAY_FOR(*userord, u) {
452 if ((*userord)[u].schema == schema) {
453 return &(*userord)[u];
454 }
455 }
456
457 /* it was not added yet, add it now */
458 LY_ARRAY_NEW_RET(schema->module->ctx, *userord, item, NULL);
459
460 item->schema = schema;
461 item->pos = 0;
462 item->inst = NULL;
463
464 /* store all the instance pointers in the current order */
465 if (first) {
Michal Vaskoe78faec2021-04-08 17:24:43 +0200466 LYD_LIST_FOR_INST(lyd_first_sibling(first), first->schema, iter) {
467 LY_ARRAY_NEW_RET(schema->module->ctx, item->inst, node, NULL);
468 *node = iter;
Michal Vaskod59035b2020-07-08 12:00:06 +0200469 }
470 }
471
472 return item;
473}
474
475/**
476 * @brief Get all the metadata to be stored in a diff for the 2 nodes. Can be used only for user-ordered
477 * lists/leaf-lists.
478 *
479 * @param[in] first Node from the first tree, can be NULL (on create).
480 * @param[in] second Node from the second tree, can be NULL (on delete).
481 * @param[in] options Diff options.
Michal Vasko5da938a2022-03-01 09:19:02 +0100482 * @param[in] userord_item Userord item of @p first and/or @p second node.
Michal Vaskod59035b2020-07-08 12:00:06 +0200483 * @param[out] op Operation.
484 * @param[out] orig_default Original default metadata.
485 * @param[out] value Value metadata.
486 * @param[out] orig_value Original value metadata
487 * @param[out] key Key metadata.
488 * @param[out] orig_key Original key metadata.
Michal Vaskoe78faec2021-04-08 17:24:43 +0200489 * @param[out] position Position metadata.
490 * @param[out] orig_position Original position metadata.
Michal Vaskod59035b2020-07-08 12:00:06 +0200491 * @return LY_SUCCESS on success,
492 * @return LY_ENOT if there is no change to be added into diff,
493 * @return LY_ERR value on other errors.
494 */
495static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200496lyd_diff_userord_attrs(const struct lyd_node *first, const struct lyd_node *second, uint16_t options,
Michal Vasko5da938a2022-03-01 09:19:02 +0100497 struct lyd_diff_userord *userord_item, enum lyd_diff_op *op, const char **orig_default, char **value,
Michal Vaskoe78faec2021-04-08 17:24:43 +0200498 char **orig_value, char **key, char **orig_key, char **position, char **orig_position)
Michal Vaskod59035b2020-07-08 12:00:06 +0200499{
Michal Vaskof9b052a2022-06-08 10:26:53 +0200500 LY_ERR rc = LY_SUCCESS;
Michal Vaskod59035b2020-07-08 12:00:06 +0200501 const struct lysc_node *schema;
Michal Vaskoe78faec2021-04-08 17:24:43 +0200502 size_t buflen, bufused;
Michal Vaskoee9b9482023-06-19 13:17:48 +0200503 uint32_t first_pos, second_pos, comp_opts;
Michal Vaskod59035b2020-07-08 12:00:06 +0200504
505 assert(first || second);
506
507 *orig_default = NULL;
508 *value = NULL;
509 *orig_value = NULL;
510 *key = NULL;
511 *orig_key = NULL;
Michal Vaskoe78faec2021-04-08 17:24:43 +0200512 *position = NULL;
513 *orig_position = NULL;
Michal Vaskod59035b2020-07-08 12:00:06 +0200514
515 schema = first ? first->schema : second->schema;
516 assert(lysc_is_userordered(schema));
517
Michal Vaskod59035b2020-07-08 12:00:06 +0200518 /* find user-ordered first position */
519 if (first) {
Michal Vaskoe78faec2021-04-08 17:24:43 +0200520 for (first_pos = 0; first_pos < LY_ARRAY_COUNT(userord_item->inst); ++first_pos) {
Michal Vaskod59035b2020-07-08 12:00:06 +0200521 if (userord_item->inst[first_pos] == first) {
522 break;
523 }
524 }
525 assert(first_pos < LY_ARRAY_COUNT(userord_item->inst));
526 } else {
527 first_pos = 0;
528 }
529
Michal Vaskoe78faec2021-04-08 17:24:43 +0200530 /* prepare position of the next instance */
531 second_pos = userord_item->pos++;
532
Michal Vaskod59035b2020-07-08 12:00:06 +0200533 /* learn operation first */
534 if (!second) {
535 *op = LYD_DIFF_OP_DELETE;
536 } else if (!first) {
537 *op = LYD_DIFF_OP_CREATE;
538 } else {
Michal Vaskoee9b9482023-06-19 13:17:48 +0200539 comp_opts = lysc_is_dup_inst_list(second->schema) ? LYD_COMPARE_FULL_RECURSION : 0;
540 if (lyd_compare_single(second, userord_item->inst[second_pos], comp_opts)) {
Michal Vaskod59035b2020-07-08 12:00:06 +0200541 /* in first, there is a different instance on the second position, we are going to move 'first' node */
542 *op = LYD_DIFF_OP_REPLACE;
Michal Vasko3a41dff2020-07-15 14:30:28 +0200543 } else if ((options & LYD_DIFF_DEFAULTS) && ((first->flags & LYD_DEFAULT) != (second->flags & LYD_DEFAULT))) {
Michal Vaskod59035b2020-07-08 12:00:06 +0200544 /* default flag change */
545 *op = LYD_DIFF_OP_NONE;
546 } else {
547 /* no changes */
548 return LY_ENOT;
549 }
550 }
551
552 /*
553 * set each attribute correctly based on the operation and node type
554 */
555
556 /* orig-default */
Michal Vasko4b715ca2020-11-11 18:39:57 +0100557 if ((schema->nodetype == LYS_LEAFLIST) && ((*op == LYD_DIFF_OP_REPLACE) || (*op == LYD_DIFF_OP_NONE))) {
Michal Vaskod59035b2020-07-08 12:00:06 +0200558 if (first->flags & LYD_DEFAULT) {
559 *orig_default = "true";
560 } else {
561 *orig_default = "false";
562 }
563 }
564
565 /* value */
Michal Vaskoe78faec2021-04-08 17:24:43 +0200566 if ((schema->nodetype == LYS_LEAFLIST) && !lysc_is_dup_inst_list(schema) &&
567 ((*op == LYD_DIFF_OP_REPLACE) || (*op == LYD_DIFF_OP_CREATE))) {
Michal Vaskod59035b2020-07-08 12:00:06 +0200568 if (second_pos) {
Radek Krejci6d5ba0c2021-04-26 07:49:59 +0200569 *value = strdup(lyd_get_value(userord_item->inst[second_pos - 1]));
Michal Vaskof9b052a2022-06-08 10:26:53 +0200570 LY_CHECK_ERR_GOTO(!*value, LOGMEM(schema->module->ctx); rc = LY_EMEM, cleanup);
Michal Vaskod59035b2020-07-08 12:00:06 +0200571 } else {
572 *value = strdup("");
Michal Vaskof9b052a2022-06-08 10:26:53 +0200573 LY_CHECK_ERR_GOTO(!*value, LOGMEM(schema->module->ctx); rc = LY_EMEM, cleanup);
Michal Vaskod59035b2020-07-08 12:00:06 +0200574 }
575 }
576
577 /* orig-value */
Michal Vaskoe78faec2021-04-08 17:24:43 +0200578 if ((schema->nodetype == LYS_LEAFLIST) && !lysc_is_dup_inst_list(schema) &&
579 ((*op == LYD_DIFF_OP_REPLACE) || (*op == LYD_DIFF_OP_DELETE))) {
Michal Vaskod59035b2020-07-08 12:00:06 +0200580 if (first_pos) {
Radek Krejci6d5ba0c2021-04-26 07:49:59 +0200581 *orig_value = strdup(lyd_get_value(userord_item->inst[first_pos - 1]));
Michal Vaskof9b052a2022-06-08 10:26:53 +0200582 LY_CHECK_ERR_GOTO(!*orig_value, LOGMEM(schema->module->ctx); rc = LY_EMEM, cleanup);
Michal Vaskod59035b2020-07-08 12:00:06 +0200583 } else {
584 *orig_value = strdup("");
Michal Vaskof9b052a2022-06-08 10:26:53 +0200585 LY_CHECK_ERR_GOTO(!*orig_value, LOGMEM(schema->module->ctx); rc = LY_EMEM, cleanup);
Michal Vaskod59035b2020-07-08 12:00:06 +0200586 }
587 }
588
589 /* key */
Michal Vaskoe78faec2021-04-08 17:24:43 +0200590 if ((schema->nodetype == LYS_LIST) && !lysc_is_dup_inst_list(schema) &&
591 ((*op == LYD_DIFF_OP_REPLACE) || (*op == LYD_DIFF_OP_CREATE))) {
Michal Vaskod59035b2020-07-08 12:00:06 +0200592 if (second_pos) {
593 buflen = bufused = 0;
Michal Vaskof9b052a2022-06-08 10:26:53 +0200594 LY_CHECK_GOTO(rc = lyd_path_list_predicate(userord_item->inst[second_pos - 1], key, &buflen, &bufused, 0), cleanup);
Michal Vaskod59035b2020-07-08 12:00:06 +0200595 } else {
596 *key = strdup("");
Michal Vaskof9b052a2022-06-08 10:26:53 +0200597 LY_CHECK_ERR_GOTO(!*key, LOGMEM(schema->module->ctx); rc = LY_EMEM, cleanup);
Michal Vaskod59035b2020-07-08 12:00:06 +0200598 }
599 }
600
601 /* orig-key */
Michal Vaskoe78faec2021-04-08 17:24:43 +0200602 if ((schema->nodetype == LYS_LIST) && !lysc_is_dup_inst_list(schema) &&
603 ((*op == LYD_DIFF_OP_REPLACE) || (*op == LYD_DIFF_OP_DELETE))) {
Michal Vaskod59035b2020-07-08 12:00:06 +0200604 if (first_pos) {
605 buflen = bufused = 0;
Michal Vaskof9b052a2022-06-08 10:26:53 +0200606 LY_CHECK_GOTO(rc = lyd_path_list_predicate(userord_item->inst[first_pos - 1], orig_key, &buflen, &bufused, 0), cleanup);
Michal Vaskod59035b2020-07-08 12:00:06 +0200607 } else {
608 *orig_key = strdup("");
Michal Vaskof9b052a2022-06-08 10:26:53 +0200609 LY_CHECK_ERR_GOTO(!*orig_key, LOGMEM(schema->module->ctx); rc = LY_EMEM, cleanup);
Michal Vaskod59035b2020-07-08 12:00:06 +0200610 }
611 }
612
Michal Vaskoe78faec2021-04-08 17:24:43 +0200613 /* position */
614 if (lysc_is_dup_inst_list(schema) && ((*op == LYD_DIFF_OP_REPLACE) || (*op == LYD_DIFF_OP_CREATE))) {
615 if (second_pos) {
616 if (asprintf(position, "%" PRIu32, second_pos) == -1) {
617 LOGMEM(schema->module->ctx);
Michal Vaskof9b052a2022-06-08 10:26:53 +0200618 rc = LY_EMEM;
619 goto cleanup;
Michal Vaskoe78faec2021-04-08 17:24:43 +0200620 }
621 } else {
622 *position = strdup("");
Michal Vaskof9b052a2022-06-08 10:26:53 +0200623 LY_CHECK_ERR_GOTO(!*position, LOGMEM(schema->module->ctx); rc = LY_EMEM, cleanup);
Michal Vaskoe78faec2021-04-08 17:24:43 +0200624 }
625 }
626
627 /* orig-position */
628 if (lysc_is_dup_inst_list(schema) && ((*op == LYD_DIFF_OP_REPLACE) || (*op == LYD_DIFF_OP_DELETE))) {
629 if (first_pos) {
630 if (asprintf(orig_position, "%" PRIu32, first_pos) == -1) {
631 LOGMEM(schema->module->ctx);
Michal Vaskof9b052a2022-06-08 10:26:53 +0200632 rc = LY_EMEM;
633 goto cleanup;
Michal Vaskoe78faec2021-04-08 17:24:43 +0200634 }
635 } else {
636 *orig_position = strdup("");
Michal Vaskof9b052a2022-06-08 10:26:53 +0200637 LY_CHECK_ERR_GOTO(!*orig_position, LOGMEM(schema->module->ctx); rc = LY_EMEM, cleanup);
Michal Vaskoe78faec2021-04-08 17:24:43 +0200638 }
639 }
640
Michal Vaskod59035b2020-07-08 12:00:06 +0200641 /*
642 * update our instances - apply the change
643 */
644 if (*op == LYD_DIFF_OP_CREATE) {
645 /* insert the instance */
Michal Vaskof9b052a2022-06-08 10:26:53 +0200646 LY_ARRAY_CREATE_GOTO(schema->module->ctx, userord_item->inst, 1, rc, cleanup);
Michal Vaskod59035b2020-07-08 12:00:06 +0200647 if (second_pos < LY_ARRAY_COUNT(userord_item->inst)) {
648 memmove(userord_item->inst + second_pos + 1, userord_item->inst + second_pos,
649 (LY_ARRAY_COUNT(userord_item->inst) - second_pos) * sizeof *userord_item->inst);
650 }
651 LY_ARRAY_INCREMENT(userord_item->inst);
652 userord_item->inst[second_pos] = second;
653
654 } else if (*op == LYD_DIFF_OP_DELETE) {
655 /* remove the instance */
656 if (first_pos + 1 < LY_ARRAY_COUNT(userord_item->inst)) {
657 memmove(userord_item->inst + first_pos, userord_item->inst + first_pos + 1,
658 (LY_ARRAY_COUNT(userord_item->inst) - first_pos - 1) * sizeof *userord_item->inst);
659 }
660 LY_ARRAY_DECREMENT(userord_item->inst);
661
662 } else if (*op == LYD_DIFF_OP_REPLACE) {
663 /* move the instances */
664 memmove(userord_item->inst + second_pos + 1, userord_item->inst + second_pos,
665 (first_pos - second_pos) * sizeof *userord_item->inst);
666 userord_item->inst[second_pos] = first;
667 }
668
Michal Vaskof9b052a2022-06-08 10:26:53 +0200669cleanup:
670 if (rc) {
671 free(*value);
672 *value = NULL;
673 free(*orig_value);
674 *orig_value = NULL;
675 free(*key);
676 *key = NULL;
677 free(*orig_key);
678 *orig_key = NULL;
679 free(*position);
680 *position = NULL;
681 free(*orig_position);
682 *orig_position = NULL;
683 }
684 return rc;
Michal Vaskod59035b2020-07-08 12:00:06 +0200685}
686
687/**
688 * @brief Get all the metadata to be stored in a diff for the 2 nodes. Cannot be used for user-ordered
689 * lists/leaf-lists.
690 *
691 * @param[in] first Node from the first tree, can be NULL (on create).
692 * @param[in] second Node from the second tree, can be NULL (on delete).
693 * @param[in] options Diff options.
694 * @param[out] op Operation.
695 * @param[out] orig_default Original default metadata.
696 * @param[out] orig_value Original value metadata.
697 * @return LY_SUCCESS on success,
698 * @return LY_ENOT if there is no change to be added into diff,
699 * @return LY_ERR value on other errors.
700 */
701static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200702lyd_diff_attrs(const struct lyd_node *first, const struct lyd_node *second, uint16_t options, enum lyd_diff_op *op,
Radek Krejci0f969882020-08-21 16:56:47 +0200703 const char **orig_default, char **orig_value)
Michal Vaskod59035b2020-07-08 12:00:06 +0200704{
705 const struct lysc_node *schema;
Michal Vasko6ea6fe22021-10-08 09:57:01 +0200706 const char *str_val;
Michal Vaskod59035b2020-07-08 12:00:06 +0200707
708 assert(first || second);
709
710 *orig_default = NULL;
711 *orig_value = NULL;
712
713 schema = first ? first->schema : second->schema;
714 assert(!lysc_is_userordered(schema));
715
716 /* learn operation first */
717 if (!second) {
718 *op = LYD_DIFF_OP_DELETE;
719 } else if (!first) {
720 *op = LYD_DIFF_OP_CREATE;
721 } else {
722 switch (schema->nodetype) {
723 case LYS_CONTAINER:
724 case LYS_RPC:
725 case LYS_ACTION:
726 case LYS_NOTIF:
727 /* no changes */
728 return LY_ENOT;
729 case LYS_LIST:
730 case LYS_LEAFLIST:
Michal Vasko3a41dff2020-07-15 14:30:28 +0200731 if ((options & LYD_DIFF_DEFAULTS) && ((first->flags & LYD_DEFAULT) != (second->flags & LYD_DEFAULT))) {
Michal Vaskod59035b2020-07-08 12:00:06 +0200732 /* default flag change */
733 *op = LYD_DIFF_OP_NONE;
734 } else {
735 /* no changes */
736 return LY_ENOT;
737 }
738 break;
739 case LYS_LEAF:
740 case LYS_ANYXML:
741 case LYS_ANYDATA:
Michal Vasko8f359bf2020-07-28 10:41:15 +0200742 if (lyd_compare_single(first, second, 0)) {
Michal Vaskod59035b2020-07-08 12:00:06 +0200743 /* different values */
744 *op = LYD_DIFF_OP_REPLACE;
Michal Vasko3a41dff2020-07-15 14:30:28 +0200745 } else if ((options & LYD_DIFF_DEFAULTS) && ((first->flags & LYD_DEFAULT) != (second->flags & LYD_DEFAULT))) {
Michal Vaskod59035b2020-07-08 12:00:06 +0200746 /* default flag change */
747 *op = LYD_DIFF_OP_NONE;
748 } else {
749 /* no changes */
750 return LY_ENOT;
751 }
752 break;
753 default:
754 LOGINT_RET(schema->module->ctx);
755 }
756 }
757
758 /*
759 * set each attribute correctly based on the operation and node type
760 */
761
762 /* orig-default */
Michal Vasko4b715ca2020-11-11 18:39:57 +0100763 if ((schema->nodetype & LYD_NODE_TERM) && ((*op == LYD_DIFF_OP_REPLACE) || (*op == LYD_DIFF_OP_NONE))) {
Michal Vaskod59035b2020-07-08 12:00:06 +0200764 if (first->flags & LYD_DEFAULT) {
765 *orig_default = "true";
766 } else {
767 *orig_default = "false";
768 }
769 }
770
771 /* orig-value */
Michal Vaskobaba84e2021-02-05 16:33:30 +0100772 if ((schema->nodetype & (LYS_LEAF | LYS_ANYDATA)) && (*op == LYD_DIFF_OP_REPLACE)) {
773 if (schema->nodetype == LYS_LEAF) {
Michal Vasko6ea6fe22021-10-08 09:57:01 +0200774 str_val = lyd_get_value(first);
775 *orig_value = strdup(str_val ? str_val : "");
Michal Vaskobaba84e2021-02-05 16:33:30 +0100776 LY_CHECK_ERR_RET(!*orig_value, LOGMEM(schema->module->ctx), LY_EMEM);
777 } else {
778 LY_CHECK_RET(lyd_any_value_str(first, orig_value));
779 }
Michal Vaskod59035b2020-07-08 12:00:06 +0200780 }
781
782 return LY_SUCCESS;
783}
784
785/**
Michal Vaskoe78faec2021-04-08 17:24:43 +0200786 * @brief Find a matching instance of a node in a data tree.
787 *
788 * @param[in] siblings Siblings to search in.
789 * @param[in] target Target node to search for.
790 * @param[in] defaults Whether to consider (or ignore) default values.
Michal Vasko271d2e32023-01-31 15:43:19 +0100791 * @param[in,out] dup_inst_ht Duplicate instance cache.
Michal Vaskoe78faec2021-04-08 17:24:43 +0200792 * @param[out] match Found match, NULL if no matching node found.
793 * @return LY_ERR value.
794 */
795static LY_ERR
796lyd_diff_find_match(const struct lyd_node *siblings, const struct lyd_node *target, ly_bool defaults,
Michal Vasko8efac242023-03-30 08:24:56 +0200797 struct ly_ht **dup_inst_ht, struct lyd_node **match)
Michal Vaskoe78faec2021-04-08 17:24:43 +0200798{
Michal Vasko2bd856f2022-12-02 14:03:29 +0100799 LY_ERR r;
800
Michal Vaskodb91fc32023-05-02 14:39:40 +0200801 if (!target->schema) {
802 /* try to find the same opaque node */
803 r = lyd_find_sibling_opaq_next(siblings, LYD_NAME(target), match);
804 } else if (target->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) {
Michal Vaskoe78faec2021-04-08 17:24:43 +0200805 /* try to find the exact instance */
Michal Vasko2bd856f2022-12-02 14:03:29 +0100806 r = lyd_find_sibling_first(siblings, target, match);
Michal Vaskoe78faec2021-04-08 17:24:43 +0200807 } else {
808 /* try to simply find the node, there cannot be more instances */
Michal Vasko2bd856f2022-12-02 14:03:29 +0100809 r = lyd_find_sibling_val(siblings, target->schema, NULL, 0, match);
810 }
811 if (r && (r != LY_ENOTFOUND)) {
812 return r;
Michal Vaskoe78faec2021-04-08 17:24:43 +0200813 }
814
Michal Vaskod7c048c2021-05-18 16:12:55 +0200815 /* update match as needed */
Michal Vasko271d2e32023-01-31 15:43:19 +0100816 LY_CHECK_RET(lyd_dup_inst_next(match, siblings, dup_inst_ht));
Michal Vaskoe78faec2021-04-08 17:24:43 +0200817
818 if (*match && ((*match)->flags & LYD_DEFAULT) && !defaults) {
819 /* ignore default nodes */
820 *match = NULL;
821 }
822 return LY_SUCCESS;
823}
824
825/**
Michal Vaskod59035b2020-07-08 12:00:06 +0200826 * @brief Perform diff for all siblings at certain depth, recursively.
827 *
828 * For user-ordered lists/leaf-lists a specific structure is used for storing
829 * the current order. The idea is to apply all the generated diff changes
830 * virtually on the first tree so that we can continue to generate correct
831 * changes after some were already generated.
832 *
833 * The algorithm then uses second tree position-based changes with a before
834 * (preceding) item anchor.
835 *
836 * Example:
837 *
838 * Virtual first tree leaf-list order:
839 * 1 2 [3] 4 5
840 *
841 * Second tree leaf-list order:
842 * 1 2 [5] 3 4
843 *
844 * We are at the 3rd node now. We look at whether the nodes on the 3rd position
845 * match - they do not - move nodes so that the 3rd position node is final ->
846 * -> move node 5 to the 3rd position -> move node 5 after node 2.
847 *
848 * Required properties:
849 * Stored operations (move) should not be affected by later operations -
850 * - would cause a redundantly long list of operations, possibly inifinite.
851 *
852 * Implemenation justification:
853 * First, all delete operations and only then move/create operations are stored.
854 * Also, preceding anchor is used and after each iteration another node is
855 * at its final position. That results in the invariant that all preceding
856 * nodes are final and will not be changed by the later operations, meaning
857 * they can safely be used as anchors for the later operations.
858 *
859 * @param[in] first First tree first sibling.
860 * @param[in] second Second tree first sibling.
861 * @param[in] options Diff options.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200862 * @param[in] nosiblings Whether to skip following siblings.
Michal Vaskod59035b2020-07-08 12:00:06 +0200863 * @param[in,out] diff Diff to append to.
864 * @return LY_ERR value.
865 */
866static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +0200867lyd_diff_siblings_r(const struct lyd_node *first, const struct lyd_node *second, uint16_t options, ly_bool nosiblings,
Radek Krejci0f969882020-08-21 16:56:47 +0200868 struct lyd_node **diff)
Michal Vaskod59035b2020-07-08 12:00:06 +0200869{
870 LY_ERR ret = LY_SUCCESS;
871 const struct lyd_node *iter_first, *iter_second;
872 struct lyd_node *match_second, *match_first;
Michal Vasko5da938a2022-03-01 09:19:02 +0100873 struct lyd_diff_userord *userord = NULL, *userord_item;
Michal Vasko8efac242023-03-30 08:24:56 +0200874 struct ly_ht *dup_inst_first = NULL, *dup_inst_second = NULL;
Michal Vaskod59035b2020-07-08 12:00:06 +0200875 LY_ARRAY_COUNT_TYPE u;
876 enum lyd_diff_op op;
877 const char *orig_default;
Michal Vaskoe78faec2021-04-08 17:24:43 +0200878 char *orig_value, *key, *value, *position, *orig_key, *orig_position;
Michal Vaskod59035b2020-07-08 12:00:06 +0200879
Michal Vaskod59035b2020-07-08 12:00:06 +0200880 /* compare first tree to the second tree - delete, replace, none */
881 LY_LIST_FOR(first, iter_first) {
Michal Vaskoc825ed72021-07-21 16:05:59 +0200882 if (!iter_first->schema) {
883 continue;
884 }
885
Michal Vaskod59035b2020-07-08 12:00:06 +0200886 assert(!(iter_first->schema->flags & LYS_KEY));
Michal Vasko3a41dff2020-07-15 14:30:28 +0200887 if ((iter_first->flags & LYD_DEFAULT) && !(options & LYD_DIFF_DEFAULTS)) {
Michal Vaskod59035b2020-07-08 12:00:06 +0200888 /* skip default nodes */
889 continue;
890 }
891
Michal Vaskoe78faec2021-04-08 17:24:43 +0200892 /* find a match in the second tree */
893 LY_CHECK_GOTO(ret = lyd_diff_find_match(second, iter_first, options & LYD_DIFF_DEFAULTS, &dup_inst_second,
894 &match_second), cleanup);
Michal Vaskod59035b2020-07-08 12:00:06 +0200895
896 if (lysc_is_userordered(iter_first->schema)) {
Michal Vasko5da938a2022-03-01 09:19:02 +0100897 /* get (create) userord entry */
898 userord_item = lyd_diff_userord_get(iter_first, iter_first->schema, &userord);
899 LY_CHECK_ERR_GOTO(!userord_item, LOGMEM(LYD_CTX(iter_first)); ret = LY_EMEM, cleanup);
900
Michal Vaskoe78faec2021-04-08 17:24:43 +0200901 /* we are handling only user-ordered node delete now */
902 if (!match_second) {
903 /* get all the attributes */
Michal Vasko5da938a2022-03-01 09:19:02 +0100904 LY_CHECK_GOTO(ret = lyd_diff_userord_attrs(iter_first, match_second, options, userord_item, &op,
905 &orig_default, &value, &orig_value, &key, &orig_key, &position, &orig_position), cleanup);
Michal Vaskoe78faec2021-04-08 17:24:43 +0200906
907 /* there must be changes, it is deleted */
908 assert(op == LYD_DIFF_OP_DELETE);
Michal Vasko5da938a2022-03-01 09:19:02 +0100909 ret = lyd_diff_add(iter_first, op, orig_default, orig_value, key, value, position, orig_key,
910 orig_position, diff);
Michal Vaskoe78faec2021-04-08 17:24:43 +0200911
912 free(orig_value);
913 free(key);
914 free(value);
915 free(position);
916 free(orig_key);
917 free(orig_position);
918 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskod59035b2020-07-08 12:00:06 +0200919 }
Michal Vaskod59035b2020-07-08 12:00:06 +0200920 } else {
921 /* get all the attributes */
922 ret = lyd_diff_attrs(iter_first, match_second, options, &op, &orig_default, &orig_value);
923
924 /* add into diff if there are any changes */
925 if (!ret) {
926 if (op == LYD_DIFF_OP_DELETE) {
Michal Vaskoe78faec2021-04-08 17:24:43 +0200927 ret = lyd_diff_add(iter_first, op, orig_default, orig_value, NULL, NULL, NULL, NULL, NULL, diff);
Michal Vaskod59035b2020-07-08 12:00:06 +0200928 } else {
Michal Vasko3c2dd6c2020-11-06 17:38:55 +0100929 assert(match_second);
Michal Vaskoe78faec2021-04-08 17:24:43 +0200930 ret = lyd_diff_add(match_second, op, orig_default, orig_value, NULL, NULL, NULL, NULL, NULL, diff);
Michal Vaskod59035b2020-07-08 12:00:06 +0200931 }
932
933 free(orig_value);
934 LY_CHECK_GOTO(ret, cleanup);
935 } else if (ret == LY_ENOT) {
936 ret = LY_SUCCESS;
937 } else {
938 goto cleanup;
939 }
940 }
941
942 /* check descendants, if any, recursively */
943 if (match_second) {
Michal Vaskoe78faec2021-04-08 17:24:43 +0200944 LY_CHECK_GOTO(ret = lyd_diff_siblings_r(lyd_child_no_keys(iter_first), lyd_child_no_keys(match_second),
945 options, 0, diff), cleanup);
Michal Vaskod59035b2020-07-08 12:00:06 +0200946 }
947
948 if (nosiblings) {
949 break;
950 }
951 }
952
953 /* reset all cached positions */
954 LY_ARRAY_FOR(userord, u) {
955 userord[u].pos = 0;
956 }
957
958 /* compare second tree to the first tree - create, user-ordered move */
959 LY_LIST_FOR(second, iter_second) {
Michal Vaskoc825ed72021-07-21 16:05:59 +0200960 if (!iter_second->schema) {
961 continue;
962 }
963
Michal Vaskod59035b2020-07-08 12:00:06 +0200964 assert(!(iter_second->schema->flags & LYS_KEY));
Michal Vasko3a41dff2020-07-15 14:30:28 +0200965 if ((iter_second->flags & LYD_DEFAULT) && !(options & LYD_DIFF_DEFAULTS)) {
Michal Vaskod59035b2020-07-08 12:00:06 +0200966 /* skip default nodes */
967 continue;
968 }
969
Michal Vaskoe78faec2021-04-08 17:24:43 +0200970 /* find a match in the first tree */
971 LY_CHECK_GOTO(ret = lyd_diff_find_match(first, iter_second, options & LYD_DIFF_DEFAULTS, &dup_inst_first,
972 &match_first), cleanup);
Michal Vaskod59035b2020-07-08 12:00:06 +0200973
974 if (lysc_is_userordered(iter_second->schema)) {
Michal Vasko5da938a2022-03-01 09:19:02 +0100975 /* get userord entry */
Michal Vaskoaa51cc52022-12-06 09:57:11 +0100976 userord_item = lyd_diff_userord_get(match_first, iter_second->schema, &userord);
Michal Vasko5da938a2022-03-01 09:19:02 +0100977 LY_CHECK_ERR_GOTO(!userord_item, LOGMEM(LYD_CTX(iter_second)); ret = LY_EMEM, cleanup);
978
Michal Vaskod59035b2020-07-08 12:00:06 +0200979 /* get all the attributes */
Michal Vasko5da938a2022-03-01 09:19:02 +0100980 ret = lyd_diff_userord_attrs(match_first, iter_second, options, userord_item, &op, &orig_default,
Michal Vaskoe78faec2021-04-08 17:24:43 +0200981 &value, &orig_value, &key, &orig_key, &position, &orig_position);
Michal Vaskod59035b2020-07-08 12:00:06 +0200982
983 /* add into diff if there are any changes */
984 if (!ret) {
Michal Vaskoe78faec2021-04-08 17:24:43 +0200985 ret = lyd_diff_add(iter_second, op, orig_default, orig_value, key, value, position, orig_key,
986 orig_position, diff);
Michal Vaskod59035b2020-07-08 12:00:06 +0200987
988 free(orig_value);
989 free(key);
990 free(value);
Michal Vaskoe78faec2021-04-08 17:24:43 +0200991 free(position);
Michal Vaskod59035b2020-07-08 12:00:06 +0200992 free(orig_key);
Michal Vaskoe78faec2021-04-08 17:24:43 +0200993 free(orig_position);
Michal Vaskod59035b2020-07-08 12:00:06 +0200994 LY_CHECK_GOTO(ret, cleanup);
995 } else if (ret == LY_ENOT) {
996 ret = LY_SUCCESS;
997 } else {
998 goto cleanup;
999 }
1000 } else if (!match_first) {
1001 /* get all the attributes */
Michal Vaskoe78faec2021-04-08 17:24:43 +02001002 LY_CHECK_GOTO(ret = lyd_diff_attrs(match_first, iter_second, options, &op, &orig_default, &orig_value), cleanup);
Michal Vaskod59035b2020-07-08 12:00:06 +02001003
1004 /* there must be changes, it is created */
1005 assert(op == LYD_DIFF_OP_CREATE);
Michal Vaskoe78faec2021-04-08 17:24:43 +02001006 ret = lyd_diff_add(iter_second, op, orig_default, orig_value, NULL, NULL, NULL, NULL, NULL, diff);
Michal Vaskod59035b2020-07-08 12:00:06 +02001007
1008 free(orig_value);
1009 LY_CHECK_GOTO(ret, cleanup);
1010 } /* else was handled */
1011
1012 if (nosiblings) {
1013 break;
1014 }
1015 }
1016
1017cleanup:
Michal Vaskod7c048c2021-05-18 16:12:55 +02001018 lyd_dup_inst_free(dup_inst_first);
1019 lyd_dup_inst_free(dup_inst_second);
Michal Vaskod59035b2020-07-08 12:00:06 +02001020 LY_ARRAY_FOR(userord, u) {
1021 LY_ARRAY_FREE(userord[u].inst);
1022 }
1023 LY_ARRAY_FREE(userord);
1024 return ret;
1025}
1026
Michal Vasko3a41dff2020-07-15 14:30:28 +02001027static LY_ERR
Michal Vasko55896172022-02-17 10:47:21 +01001028lyd_diff(const struct lyd_node *first, const struct lyd_node *second, uint16_t options, ly_bool nosiblings,
1029 struct lyd_node **diff)
Michal Vaskod59035b2020-07-08 12:00:06 +02001030{
1031 const struct ly_ctx *ctx;
1032
1033 LY_CHECK_ARG_RET(NULL, diff, LY_EINVAL);
1034
1035 if (first) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001036 ctx = LYD_CTX(first);
Michal Vaskod59035b2020-07-08 12:00:06 +02001037 } else if (second) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001038 ctx = LYD_CTX(second);
Michal Vaskod59035b2020-07-08 12:00:06 +02001039 } else {
1040 ctx = NULL;
1041 }
1042
1043 if (first && second && (lysc_data_parent(first->schema) != lysc_data_parent(second->schema))) {
1044 LOGERR(ctx, LY_EINVAL, "Invalid arguments - cannot create diff for unrelated data (%s()).", __func__);
1045 return LY_EINVAL;
1046 }
1047
1048 *diff = NULL;
1049
Michal Vasko3a41dff2020-07-15 14:30:28 +02001050 return lyd_diff_siblings_r(first, second, options, nosiblings, diff);
1051}
1052
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001053LIBYANG_API_DEF LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001054lyd_diff_tree(const struct lyd_node *first, const struct lyd_node *second, uint16_t options, struct lyd_node **diff)
Michal Vasko3a41dff2020-07-15 14:30:28 +02001055{
1056 return lyd_diff(first, second, options, 1, diff);
1057}
1058
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001059LIBYANG_API_DEF LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001060lyd_diff_siblings(const struct lyd_node *first, const struct lyd_node *second, uint16_t options, struct lyd_node **diff)
Michal Vasko3a41dff2020-07-15 14:30:28 +02001061{
1062 return lyd_diff(first, second, options, 0, diff);
Michal Vaskod59035b2020-07-08 12:00:06 +02001063}
1064
1065/**
Michal Vaskod59035b2020-07-08 12:00:06 +02001066 * @brief Insert a diff node into a data tree.
1067 *
1068 * @param[in,out] first_node First sibling of the data tree.
1069 * @param[in] parent_node Data tree sibling parent node.
1070 * @param[in] new_node Node to insert.
Michal Vaskoe78faec2021-04-08 17:24:43 +02001071 * @param[in] userord_anchor Optional anchor (key, value, or position) of relative (leaf-)list instance. If not set,
1072 * the user-ordered instance will be inserted at the first position.
Michal Vaskod59035b2020-07-08 12:00:06 +02001073 * @return err_info, NULL on success.
1074 */
1075static LY_ERR
1076lyd_diff_insert(struct lyd_node **first_node, struct lyd_node *parent_node, struct lyd_node *new_node,
Michal Vaskoe78faec2021-04-08 17:24:43 +02001077 const char *userord_anchor)
Michal Vaskod59035b2020-07-08 12:00:06 +02001078{
1079 LY_ERR ret;
1080 struct lyd_node *anchor;
Michal Vaskoe78faec2021-04-08 17:24:43 +02001081 uint32_t pos, anchor_pos;
1082 int found;
Michal Vaskod59035b2020-07-08 12:00:06 +02001083
1084 assert(new_node);
1085
1086 if (!*first_node) {
1087 if (!parent_node) {
1088 /* no parent or siblings */
1089 *first_node = new_node;
1090 return LY_SUCCESS;
1091 }
1092
1093 /* simply insert into parent, no other children */
Michal Vaskoe78faec2021-04-08 17:24:43 +02001094 if (userord_anchor) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001095 LOGERR(LYD_CTX(new_node), LY_EINVAL, "Node \"%s\" instance to insert next to not found.",
Michal Vasko69730152020-10-09 16:30:07 +02001096 new_node->schema->name);
Michal Vaskod59035b2020-07-08 12:00:06 +02001097 return LY_EINVAL;
1098 }
Michal Vaskob104f112020-07-17 09:54:54 +02001099 return lyd_insert_child(parent_node, new_node);
Michal Vaskod59035b2020-07-08 12:00:06 +02001100 }
1101
Michal Vasko9e685082021-01-29 14:49:09 +01001102 assert(!(*first_node)->parent || (lyd_parent(*first_node) == parent_node));
Michal Vaskod59035b2020-07-08 12:00:06 +02001103
Michal Vaskod59035b2020-07-08 12:00:06 +02001104 if (!lysc_is_userordered(new_node->schema)) {
Michal Vaskob104f112020-07-17 09:54:54 +02001105 /* simple insert */
1106 return lyd_insert_sibling(*first_node, new_node, first_node);
Michal Vaskod59035b2020-07-08 12:00:06 +02001107 }
1108
Michal Vaskoe78faec2021-04-08 17:24:43 +02001109 if (userord_anchor) {
Michal Vaskod59035b2020-07-08 12:00:06 +02001110 /* find the anchor sibling */
Michal Vaskoe78faec2021-04-08 17:24:43 +02001111 if (lysc_is_dup_inst_list(new_node->schema)) {
1112 anchor_pos = atoi(userord_anchor);
Michal Vasko0ff97752022-01-18 16:35:41 +01001113 if (!anchor_pos) {
1114 LOGERR(LYD_CTX(new_node), LY_EINVAL, "Invalid user-ordered anchor value \"%s\".", userord_anchor);
1115 return LY_EINVAL;
1116 }
Michal Vaskoe78faec2021-04-08 17:24:43 +02001117
1118 found = 0;
1119 pos = 1;
1120 LYD_LIST_FOR_INST(*first_node, new_node->schema, anchor) {
1121 if (pos == anchor_pos) {
1122 found = 1;
1123 break;
1124 }
1125 ++pos;
1126 }
1127 if (!found) {
1128 LOGERR(LYD_CTX(new_node), LY_EINVAL, "Node \"%s\" instance to insert next to not found.",
1129 new_node->schema->name);
1130 return LY_EINVAL;
1131 }
1132 } else {
1133 ret = lyd_find_sibling_val(*first_node, new_node->schema, userord_anchor, 0, &anchor);
1134 if (ret == LY_ENOTFOUND) {
1135 LOGERR(LYD_CTX(new_node), LY_EINVAL, "Node \"%s\" instance to insert next to not found.",
1136 new_node->schema->name);
1137 return LY_EINVAL;
1138 } else if (ret) {
1139 return ret;
1140 }
Michal Vaskod59035b2020-07-08 12:00:06 +02001141 }
1142
1143 /* insert after */
1144 LY_CHECK_RET(lyd_insert_after(anchor, new_node));
1145 assert(new_node->prev == anchor);
1146 if (*first_node == new_node) {
1147 *first_node = anchor;
1148 }
1149 } else {
Michal Vaskoea7d3232022-04-19 12:01:36 +02001150 /* find the first instance */
1151 ret = lyd_find_sibling_val(*first_node, new_node->schema, NULL, 0, &anchor);
1152 LY_CHECK_RET(ret && (ret != LY_ENOTFOUND), ret);
Michal Vaskod59035b2020-07-08 12:00:06 +02001153
Michal Vaskoea7d3232022-04-19 12:01:36 +02001154 if (anchor) {
1155 /* insert before the first instance */
1156 LY_CHECK_RET(lyd_insert_before(anchor, new_node));
1157 if ((*first_node)->prev->next) {
1158 assert(!new_node->prev->next);
1159 *first_node = new_node;
Michal Vaskod59035b2020-07-08 12:00:06 +02001160 }
Michal Vaskod59035b2020-07-08 12:00:06 +02001161 } else {
Michal Vaskoea7d3232022-04-19 12:01:36 +02001162 /* insert anywhere */
1163 LY_CHECK_RET(lyd_insert_sibling(*first_node, new_node, first_node));
Michal Vaskod59035b2020-07-08 12:00:06 +02001164 }
1165 }
1166
1167 return LY_SUCCESS;
1168}
1169
1170/**
1171 * @brief Apply diff subtree on data tree nodes, recursively.
1172 *
1173 * @param[in,out] first_node First sibling of the data tree.
1174 * @param[in] parent_node Parent of the first sibling.
1175 * @param[in] diff_node Current diff node.
Michal Vaskoe6323f62020-07-09 15:49:02 +02001176 * @param[in] diff_cb Optional diff callback.
1177 * @param[in] cb_data User data for @p diff_cb.
Michal Vaskoe78faec2021-04-08 17:24:43 +02001178 * @param[in,out] dup_inst Duplicate instance cache for all @p diff_node siblings.
Michal Vaskod59035b2020-07-08 12:00:06 +02001179 * @return LY_ERR value.
1180 */
1181static LY_ERR
1182lyd_diff_apply_r(struct lyd_node **first_node, struct lyd_node *parent_node, const struct lyd_node *diff_node,
Michal Vasko8efac242023-03-30 08:24:56 +02001183 lyd_diff_cb diff_cb, void *cb_data, struct ly_ht **dup_inst)
Michal Vaskod59035b2020-07-08 12:00:06 +02001184{
1185 LY_ERR ret;
1186 struct lyd_node *match, *diff_child;
Michal Vaskoe78faec2021-04-08 17:24:43 +02001187 const char *str_val, *meta_str;
Michal Vaskoe6323f62020-07-09 15:49:02 +02001188 enum lyd_diff_op op;
1189 struct lyd_meta *meta;
Michal Vasko8efac242023-03-30 08:24:56 +02001190 struct ly_ht *child_dup_inst = NULL;
Michal Vaskob7be7a82020-08-20 09:09:04 +02001191 const struct ly_ctx *ctx = LYD_CTX(diff_node);
Michal Vaskod59035b2020-07-08 12:00:06 +02001192
1193 /* read all the valid attributes */
Michal Vaskoe6323f62020-07-09 15:49:02 +02001194 LY_CHECK_RET(lyd_diff_get_op(diff_node, &op));
Michal Vaskod59035b2020-07-08 12:00:06 +02001195
Michal Vaskoe6323f62020-07-09 15:49:02 +02001196 /* handle specific user-ordered (leaf-)lists operations separately */
1197 if (lysc_is_userordered(diff_node->schema) && ((op == LYD_DIFF_OP_CREATE) || (op == LYD_DIFF_OP_REPLACE))) {
1198 if (op == LYD_DIFF_OP_REPLACE) {
Michal Vaskod59035b2020-07-08 12:00:06 +02001199 /* find the node (we must have some siblings because the node was only moved) */
Michal Vaskoe78faec2021-04-08 17:24:43 +02001200 LY_CHECK_RET(lyd_diff_find_match(*first_node, diff_node, 1, dup_inst, &match));
Michal Vasko52afd7d2022-01-18 14:08:34 +01001201 LY_CHECK_ERR_RET(!match, LOGERR_NOINST(ctx, diff_node), LY_EINVAL);
Michal Vaskod59035b2020-07-08 12:00:06 +02001202 } else {
Michal Vasko3a41dff2020-07-15 14:30:28 +02001203 /* duplicate the node */
1204 LY_CHECK_RET(lyd_dup_single(diff_node, NULL, LYD_DUP_NO_META, &match));
Michal Vaskod59035b2020-07-08 12:00:06 +02001205 }
1206
Michal Vaskoe78faec2021-04-08 17:24:43 +02001207 /* get "key", "value", or "position" metadata string value */
1208 if (lysc_is_dup_inst_list(diff_node->schema)) {
1209 meta_str = "yang:position";
1210 } else if (diff_node->schema->nodetype == LYS_LIST) {
1211 meta_str = "yang:key";
1212 } else {
1213 meta_str = "yang:value";
1214 }
1215 meta = lyd_find_meta(diff_node->meta, NULL, meta_str);
Michal Vasko52afd7d2022-01-18 14:08:34 +01001216 LY_CHECK_ERR_RET(!meta, LOGERR_META(ctx, meta_str, diff_node), LY_EINVAL);
Radek Krejci6d5ba0c2021-04-26 07:49:59 +02001217 str_val = lyd_get_meta_value(meta);
Michal Vaskoe6323f62020-07-09 15:49:02 +02001218
Michal Vaskod59035b2020-07-08 12:00:06 +02001219 /* insert/move the node */
Michal Vaskoe6323f62020-07-09 15:49:02 +02001220 if (str_val[0]) {
1221 ret = lyd_diff_insert(first_node, parent_node, match, str_val);
Michal Vaskod59035b2020-07-08 12:00:06 +02001222 } else {
1223 ret = lyd_diff_insert(first_node, parent_node, match, NULL);
1224 }
1225 if (ret) {
Michal Vaskoe6323f62020-07-09 15:49:02 +02001226 if (op == LYD_DIFF_OP_CREATE) {
Michal Vaskod59035b2020-07-08 12:00:06 +02001227 lyd_free_tree(match);
1228 }
1229 return ret;
1230 }
1231
1232 goto next_iter_r;
1233 }
1234
1235 /* apply operation */
Michal Vaskoe6323f62020-07-09 15:49:02 +02001236 switch (op) {
1237 case LYD_DIFF_OP_NONE:
Michal Vaskod59035b2020-07-08 12:00:06 +02001238 /* find the node */
Michal Vaskoe78faec2021-04-08 17:24:43 +02001239 LY_CHECK_RET(lyd_diff_find_match(*first_node, diff_node, 1, dup_inst, &match));
Michal Vasko52afd7d2022-01-18 14:08:34 +01001240 LY_CHECK_ERR_RET(!match, LOGERR_NOINST(ctx, diff_node), LY_EINVAL);
Michal Vaskod59035b2020-07-08 12:00:06 +02001241
1242 if (match->schema->nodetype & LYD_NODE_TERM) {
1243 /* special case of only dflt flag change */
1244 if (diff_node->flags & LYD_DEFAULT) {
1245 match->flags |= LYD_DEFAULT;
1246 } else {
1247 match->flags &= ~LYD_DEFAULT;
1248 }
1249 } else {
1250 /* none operation on nodes without children is redundant and hence forbidden */
Radek Krejcia1c1e542020-09-29 16:06:52 +02001251 if (!lyd_child_no_keys(diff_node)) {
Michal Vasko0ff97752022-01-18 16:35:41 +01001252 LOGERR(ctx, LY_EINVAL, "Operation \"none\" is invalid for node \"%s\" without children.",
1253 LYD_NAME(diff_node));
1254 return LY_EINVAL;
Michal Vaskod59035b2020-07-08 12:00:06 +02001255 }
1256 }
1257 break;
Michal Vaskoe6323f62020-07-09 15:49:02 +02001258 case LYD_DIFF_OP_CREATE:
Michal Vaskod59035b2020-07-08 12:00:06 +02001259 /* duplicate the node */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001260 LY_CHECK_RET(lyd_dup_single(diff_node, NULL, LYD_DUP_NO_META, &match));
Michal Vaskod59035b2020-07-08 12:00:06 +02001261
1262 /* insert it at the end */
1263 ret = 0;
Michal Vaskob104f112020-07-17 09:54:54 +02001264 if (parent_node) {
Michal Vasko19175b62022-04-01 09:17:07 +02001265 if (match->flags & LYD_EXT) {
Michal Vasko193dacd2022-10-13 08:43:05 +02001266 ret = lyplg_ext_insert(parent_node, match);
Michal Vasko19175b62022-04-01 09:17:07 +02001267 } else {
1268 ret = lyd_insert_child(parent_node, match);
1269 }
Michal Vaskod59035b2020-07-08 12:00:06 +02001270 } else {
Michal Vaskob104f112020-07-17 09:54:54 +02001271 ret = lyd_insert_sibling(*first_node, match, first_node);
Michal Vaskod59035b2020-07-08 12:00:06 +02001272 }
1273 if (ret) {
1274 lyd_free_tree(match);
1275 return ret;
1276 }
1277
1278 break;
Michal Vaskoe6323f62020-07-09 15:49:02 +02001279 case LYD_DIFF_OP_DELETE:
Michal Vaskod59035b2020-07-08 12:00:06 +02001280 /* find the node */
Michal Vaskoe78faec2021-04-08 17:24:43 +02001281 LY_CHECK_RET(lyd_diff_find_match(*first_node, diff_node, 1, dup_inst, &match));
Michal Vasko52afd7d2022-01-18 14:08:34 +01001282 LY_CHECK_ERR_RET(!match, LOGERR_NOINST(ctx, diff_node), LY_EINVAL);
Michal Vaskod59035b2020-07-08 12:00:06 +02001283
1284 /* remove it */
1285 if ((match == *first_node) && !match->parent) {
1286 assert(!parent_node);
1287 /* we have removed the top-level node */
1288 *first_node = (*first_node)->next;
1289 }
1290 lyd_free_tree(match);
1291
1292 /* we are not going recursively in this case, the whole subtree was already deleted */
1293 return LY_SUCCESS;
Michal Vaskoe6323f62020-07-09 15:49:02 +02001294 case LYD_DIFF_OP_REPLACE:
Michal Vasko0ff97752022-01-18 16:35:41 +01001295 if (!(diff_node->schema->nodetype & (LYS_LEAF | LYS_ANYDATA))) {
1296 LOGERR(ctx, LY_EINVAL, "Operation \"replace\" is invalid for %s node \"%s\".",
1297 lys_nodetype2str(diff_node->schema->nodetype), LYD_NAME(diff_node));
1298 return LY_EINVAL;
1299 }
Michal Vaskod59035b2020-07-08 12:00:06 +02001300
1301 /* find the node */
Michal Vaskoe78faec2021-04-08 17:24:43 +02001302 LY_CHECK_RET(lyd_diff_find_match(*first_node, diff_node, 1, dup_inst, &match));
Michal Vasko52afd7d2022-01-18 14:08:34 +01001303 LY_CHECK_ERR_RET(!match, LOGERR_NOINST(ctx, diff_node), LY_EINVAL);
Michal Vaskod59035b2020-07-08 12:00:06 +02001304
Michal Vaskobaba84e2021-02-05 16:33:30 +01001305 /* update the value */
1306 if (diff_node->schema->nodetype == LYS_LEAF) {
Radek Krejci6d5ba0c2021-04-26 07:49:59 +02001307 ret = lyd_change_term(match, lyd_get_value(diff_node));
Michal Vasko52afd7d2022-01-18 14:08:34 +01001308 LY_CHECK_ERR_RET(ret && (ret != LY_EEXIST), LOGERR_UNEXPVAL(ctx, match, "data"), LY_EINVAL);
Michal Vaskobaba84e2021-02-05 16:33:30 +01001309 } else {
1310 struct lyd_node_any *any = (struct lyd_node_any *)diff_node;
Michal Vasko26bbb272022-08-02 14:54:33 +02001311
Michal Vaskoe78faec2021-04-08 17:24:43 +02001312 LY_CHECK_RET(lyd_any_copy_value(match, &any->value, any->value_type));
Michal Vaskod59035b2020-07-08 12:00:06 +02001313 }
1314
1315 /* with flags */
1316 match->flags = diff_node->flags;
1317 break;
1318 default:
1319 LOGINT_RET(ctx);
1320 }
1321
1322next_iter_r:
1323 if (diff_cb) {
1324 /* call callback */
1325 LY_CHECK_RET(diff_cb(diff_node, match, cb_data));
1326 }
1327
1328 /* apply diff recursively */
Michal Vaskoe78faec2021-04-08 17:24:43 +02001329 ret = LY_SUCCESS;
Radek Krejcia1c1e542020-09-29 16:06:52 +02001330 LY_LIST_FOR(lyd_child_no_keys(diff_node), diff_child) {
Michal Vaskoe78faec2021-04-08 17:24:43 +02001331 ret = lyd_diff_apply_r(lyd_node_child_p(match), match, diff_child, diff_cb, cb_data, &child_dup_inst);
1332 if (ret) {
1333 break;
1334 }
Michal Vaskod59035b2020-07-08 12:00:06 +02001335 }
1336
Michal Vaskod7c048c2021-05-18 16:12:55 +02001337 lyd_dup_inst_free(child_dup_inst);
Michal Vaskoe78faec2021-04-08 17:24:43 +02001338 return ret;
Michal Vaskod59035b2020-07-08 12:00:06 +02001339}
1340
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001341LIBYANG_API_DEF LY_ERR
Michal Vaskod59035b2020-07-08 12:00:06 +02001342lyd_diff_apply_module(struct lyd_node **data, const struct lyd_node *diff, const struct lys_module *mod,
Radek Krejci0f969882020-08-21 16:56:47 +02001343 lyd_diff_cb diff_cb, void *cb_data)
Michal Vaskod59035b2020-07-08 12:00:06 +02001344{
1345 const struct lyd_node *root;
Michal Vasko8efac242023-03-30 08:24:56 +02001346 struct ly_ht *dup_inst = NULL;
Michal Vaskoe78faec2021-04-08 17:24:43 +02001347 LY_ERR ret = LY_SUCCESS;
Michal Vaskod59035b2020-07-08 12:00:06 +02001348
1349 LY_LIST_FOR(diff, root) {
1350 if (mod && (lyd_owner_module(root) != mod)) {
1351 /* skip data nodes from different modules */
1352 continue;
1353 }
1354
1355 /* apply relevant nodes from the diff datatree */
Michal Vaskoe78faec2021-04-08 17:24:43 +02001356 ret = lyd_diff_apply_r(data, NULL, root, diff_cb, cb_data, &dup_inst);
1357 if (ret) {
1358 break;
1359 }
Michal Vaskod59035b2020-07-08 12:00:06 +02001360 }
1361
Michal Vaskod7c048c2021-05-18 16:12:55 +02001362 lyd_dup_inst_free(dup_inst);
Michal Vaskoe78faec2021-04-08 17:24:43 +02001363 return ret;
Michal Vaskod59035b2020-07-08 12:00:06 +02001364}
1365
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001366LIBYANG_API_DEF LY_ERR
Michal Vasko3a41dff2020-07-15 14:30:28 +02001367lyd_diff_apply_all(struct lyd_node **data, const struct lyd_node *diff)
Michal Vaskod59035b2020-07-08 12:00:06 +02001368{
1369 return lyd_diff_apply_module(data, diff, NULL, NULL, NULL);
1370}
Michal Vaskoe6323f62020-07-09 15:49:02 +02001371
1372/**
1373 * @brief Update operations on a diff node when the new operation is NONE.
1374 *
1375 * @param[in] diff_match Node from the diff.
Michal Vaskoe78faec2021-04-08 17:24:43 +02001376 * @param[in] cur_op Current operation of @p diff_match.
Michal Vaskoe6323f62020-07-09 15:49:02 +02001377 * @param[in] src_diff Current source diff node.
1378 * @return LY_ERR value.
1379 */
1380static LY_ERR
1381lyd_diff_merge_none(struct lyd_node *diff_match, enum lyd_diff_op cur_op, const struct lyd_node *src_diff)
1382{
1383 switch (cur_op) {
1384 case LYD_DIFF_OP_NONE:
1385 case LYD_DIFF_OP_CREATE:
1386 case LYD_DIFF_OP_REPLACE:
1387 if (src_diff->schema->nodetype & LYD_NODE_TERM) {
1388 /* NONE on a term means only its dflt flag was changed */
1389 diff_match->flags &= ~LYD_DEFAULT;
1390 diff_match->flags |= src_diff->flags & LYD_DEFAULT;
1391 }
1392 break;
1393 default:
1394 /* delete operation is not valid */
Michal Vasko52afd7d2022-01-18 14:08:34 +01001395 LOGERR_MERGEOP(LYD_CTX(diff_match), diff_match, cur_op, LYD_DIFF_OP_NONE);
1396 return LY_EINVAL;
Michal Vaskoe6323f62020-07-09 15:49:02 +02001397 }
1398
1399 return LY_SUCCESS;
1400}
1401
1402/**
Michal Vaskoe6323f62020-07-09 15:49:02 +02001403 * @brief Set a specific operation of a node. Delete the previous operation, if any.
Michal Vasko871a0252020-11-11 18:35:24 +01001404 * Does not change the default flag.
Michal Vaskoe6323f62020-07-09 15:49:02 +02001405 *
1406 * @param[in] node Node to change.
1407 * @param[in] op Operation to set.
1408 * @return LY_ERR value.
1409 */
1410static LY_ERR
1411lyd_diff_change_op(struct lyd_node *node, enum lyd_diff_op op)
1412{
Michal Vaskodb91fc32023-05-02 14:39:40 +02001413 lyd_diff_del_meta(node, "operation");
Michal Vaskoe6323f62020-07-09 15:49:02 +02001414
Michal Vaskodb91fc32023-05-02 14:39:40 +02001415 if (node->schema) {
1416 return lyd_new_meta(LYD_CTX(node), node, NULL, "yang:operation", lyd_diff_op2str(op), 0, NULL);
1417 } else {
1418 return lyd_new_attr(node, "yang", "operation", lyd_diff_op2str(op), NULL);
Michal Vaskoe6323f62020-07-09 15:49:02 +02001419 }
Michal Vaskoe6323f62020-07-09 15:49:02 +02001420}
1421
1422/**
1423 * @brief Update operations on a diff node when the new operation is REPLACE.
1424 *
1425 * @param[in] diff_match Node from the diff.
Michal Vaskoe78faec2021-04-08 17:24:43 +02001426 * @param[in] cur_op Current operation of @p diff_match.
Michal Vaskoe6323f62020-07-09 15:49:02 +02001427 * @param[in] src_diff Current source diff node.
1428 * @return LY_ERR value.
1429 */
1430static LY_ERR
1431lyd_diff_merge_replace(struct lyd_node *diff_match, enum lyd_diff_op cur_op, const struct lyd_node *src_diff)
1432{
1433 LY_ERR ret;
Michal Vaskoe78faec2021-04-08 17:24:43 +02001434 const char *str_val, *meta_name, *orig_meta_name;
Michal Vaskoe6323f62020-07-09 15:49:02 +02001435 struct lyd_meta *meta;
1436 const struct lys_module *mod;
1437 const struct lyd_node_any *any;
Michal Vasko52afd7d2022-01-18 14:08:34 +01001438 const struct ly_ctx *ctx = LYD_CTX(diff_match);
Michal Vaskoe6323f62020-07-09 15:49:02 +02001439
1440 /* get "yang" module for the metadata */
Michal Vaskob7be7a82020-08-20 09:09:04 +02001441 mod = ly_ctx_get_module_latest(LYD_CTX(diff_match), "yang");
Michal Vaskoe6323f62020-07-09 15:49:02 +02001442 assert(mod);
1443
1444 switch (cur_op) {
1445 case LYD_DIFF_OP_REPLACE:
1446 case LYD_DIFF_OP_CREATE:
1447 switch (diff_match->schema->nodetype) {
1448 case LYS_LIST:
1449 case LYS_LEAFLIST:
Michal Vasko4231fb62020-07-13 13:54:47 +02001450 /* it was created/moved somewhere, but now it will be created/moved somewhere else,
Michal Vaskoe6323f62020-07-09 15:49:02 +02001451 * keep orig_key/orig_value (only replace oper) and replace key/value */
1452 assert(lysc_is_userordered(diff_match->schema));
Michal Vaskoe78faec2021-04-08 17:24:43 +02001453 if (lysc_is_dup_inst_list(diff_match->schema)) {
1454 meta_name = "position";
1455 } else if (diff_match->schema->nodetype == LYS_LIST) {
1456 meta_name = "key";
1457 } else {
1458 meta_name = "value";
1459 }
Michal Vaskoe6323f62020-07-09 15:49:02 +02001460
1461 lyd_diff_del_meta(diff_match, meta_name);
1462 meta = lyd_find_meta(src_diff->meta, mod, meta_name);
Michal Vasko52afd7d2022-01-18 14:08:34 +01001463 LY_CHECK_ERR_RET(!meta, LOGERR_META(ctx, meta_name, src_diff), LY_EINVAL);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001464 LY_CHECK_RET(lyd_dup_meta_single(meta, diff_match, NULL));
Michal Vaskoe6323f62020-07-09 15:49:02 +02001465 break;
1466 case LYS_LEAF:
1467 /* replaced with the exact same value, impossible */
Michal Vasko8f359bf2020-07-28 10:41:15 +02001468 if (!lyd_compare_single(diff_match, src_diff, 0)) {
Michal Vasko52afd7d2022-01-18 14:08:34 +01001469 LOGERR_UNEXPVAL(ctx, diff_match, "target diff");
1470 return LY_EINVAL;
Michal Vaskoe6323f62020-07-09 15:49:02 +02001471 }
1472
Michal Vaskoe6323f62020-07-09 15:49:02 +02001473 /* modify the node value */
Radek Krejci6d5ba0c2021-04-26 07:49:59 +02001474 if (lyd_change_term(diff_match, lyd_get_value(src_diff))) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001475 LOGINT_RET(LYD_CTX(src_diff));
Michal Vaskoe6323f62020-07-09 15:49:02 +02001476 }
1477
Michal Vasko8caadab2020-11-05 17:38:15 +01001478 if (cur_op == LYD_DIFF_OP_REPLACE) {
1479 /* compare values whether there is any change at all */
1480 meta = lyd_find_meta(diff_match->meta, mod, "orig-value");
Michal Vasko52afd7d2022-01-18 14:08:34 +01001481 LY_CHECK_ERR_RET(!meta, LOGERR_META(ctx, "orig-value", diff_match), LY_EINVAL);
Radek Krejci6d5ba0c2021-04-26 07:49:59 +02001482 str_val = lyd_get_meta_value(meta);
Michal Vasko8caadab2020-11-05 17:38:15 +01001483 ret = lyd_value_compare((struct lyd_node_term *)diff_match, str_val, strlen(str_val));
1484 if (!ret) {
1485 /* values are the same, remove orig-value meta and set oper to NONE */
1486 lyd_free_meta_single(meta);
1487 LY_CHECK_RET(lyd_diff_change_op(diff_match, LYD_DIFF_OP_NONE));
1488 }
Michal Vaskoe6323f62020-07-09 15:49:02 +02001489 }
1490
1491 /* modify the default flag */
1492 diff_match->flags &= ~LYD_DEFAULT;
1493 diff_match->flags |= src_diff->flags & LYD_DEFAULT;
1494 break;
1495 case LYS_ANYXML:
1496 case LYS_ANYDATA:
Michal Vasko8f359bf2020-07-28 10:41:15 +02001497 if (!lyd_compare_single(diff_match, src_diff, 0)) {
Michal Vasko52afd7d2022-01-18 14:08:34 +01001498 LOGERR_UNEXPVAL(ctx, diff_match, "target diff");
1499 return LY_EINVAL;
Michal Vaskoe6323f62020-07-09 15:49:02 +02001500 }
1501
1502 /* modify the node value */
1503 any = (struct lyd_node_any *)src_diff;
1504 LY_CHECK_RET(lyd_any_copy_value(diff_match, &any->value, any->value_type));
1505 break;
1506 default:
Michal Vaskob7be7a82020-08-20 09:09:04 +02001507 LOGINT_RET(LYD_CTX(src_diff));
Michal Vaskoe6323f62020-07-09 15:49:02 +02001508 }
1509 break;
1510 case LYD_DIFF_OP_NONE:
1511 /* it is moved now */
1512 assert(lysc_is_userordered(diff_match->schema) && (diff_match->schema->nodetype == LYS_LIST));
1513
1514 /* change the operation */
1515 LY_CHECK_RET(lyd_diff_change_op(diff_match, LYD_DIFF_OP_REPLACE));
1516
Michal Vaskoe78faec2021-04-08 17:24:43 +02001517 /* set orig-meta and meta */
1518 if (lysc_is_dup_inst_list(diff_match->schema)) {
1519 meta_name = "position";
1520 orig_meta_name = "orig-position";
1521 } else {
1522 meta_name = "key";
1523 orig_meta_name = "orig-key";
1524 }
1525
1526 meta = lyd_find_meta(src_diff->meta, mod, orig_meta_name);
Michal Vasko52afd7d2022-01-18 14:08:34 +01001527 LY_CHECK_ERR_RET(!meta, LOGERR_META(ctx, orig_meta_name, src_diff), LY_EINVAL);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001528 LY_CHECK_RET(lyd_dup_meta_single(meta, diff_match, NULL));
Michal Vaskoe6323f62020-07-09 15:49:02 +02001529
Michal Vaskoe78faec2021-04-08 17:24:43 +02001530 meta = lyd_find_meta(src_diff->meta, mod, meta_name);
Michal Vasko52afd7d2022-01-18 14:08:34 +01001531 LY_CHECK_ERR_RET(!meta, LOGERR_META(ctx, meta_name, src_diff), LY_EINVAL);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001532 LY_CHECK_RET(lyd_dup_meta_single(meta, diff_match, NULL));
Michal Vaskoe6323f62020-07-09 15:49:02 +02001533 break;
1534 default:
1535 /* delete operation is not valid */
Michal Vasko52afd7d2022-01-18 14:08:34 +01001536 LOGERR_MERGEOP(ctx, diff_match, cur_op, LYD_DIFF_OP_REPLACE);
1537 return LY_EINVAL;
Michal Vaskoe6323f62020-07-09 15:49:02 +02001538 }
1539
1540 return LY_SUCCESS;
1541}
1542
1543/**
1544 * @brief Update operations in a diff node when the new operation is CREATE.
1545 *
1546 * @param[in] diff_match Node from the diff.
Michal Vaskoe78faec2021-04-08 17:24:43 +02001547 * @param[in] cur_op Current operation of @p diff_match.
Michal Vaskoe6323f62020-07-09 15:49:02 +02001548 * @param[in] src_diff Current source diff node.
Michal Vaskoc0e58e82020-11-11 19:04:33 +01001549 * @param[in] options Diff merge options.
Michal Vaskoe6323f62020-07-09 15:49:02 +02001550 * @return LY_ERR value.
1551 */
1552static LY_ERR
Michal Vaskoc0e58e82020-11-11 19:04:33 +01001553lyd_diff_merge_create(struct lyd_node *diff_match, enum lyd_diff_op cur_op, const struct lyd_node *src_diff, uint16_t options)
Michal Vaskoe6323f62020-07-09 15:49:02 +02001554{
1555 struct lyd_node *child;
Michal Vaskoc0e58e82020-11-11 19:04:33 +01001556 const struct lysc_node_leaf *sleaf = NULL;
Michal Vasko871a0252020-11-11 18:35:24 +01001557 uint32_t trg_flags;
Michal Vaskoe78faec2021-04-08 17:24:43 +02001558 const char *meta_name, *orig_meta_name;
1559 struct lyd_meta *meta, *orig_meta;
Michal Vasko52afd7d2022-01-18 14:08:34 +01001560 const struct ly_ctx *ctx = LYD_CTX(diff_match);
Michal Vaskoe6323f62020-07-09 15:49:02 +02001561
1562 switch (cur_op) {
1563 case LYD_DIFF_OP_DELETE:
Michal Vasko871a0252020-11-11 18:35:24 +01001564 /* remember current flags */
1565 trg_flags = diff_match->flags;
1566
Michal Vaskoe78faec2021-04-08 17:24:43 +02001567 if (lysc_is_userordered(diff_match->schema)) {
1568 /* get anchor metadata */
1569 if (lysc_is_dup_inst_list(diff_match->schema)) {
1570 meta_name = "yang:position";
1571 orig_meta_name = "yang:orig-position";
1572 } else if (diff_match->schema->nodetype == LYS_LIST) {
1573 meta_name = "yang:key";
1574 orig_meta_name = "yang:orig-key";
1575 } else {
1576 meta_name = "yang:value";
1577 orig_meta_name = "yang:orig-value";
1578 }
1579 meta = lyd_find_meta(src_diff->meta, NULL, meta_name);
Michal Vasko52afd7d2022-01-18 14:08:34 +01001580 LY_CHECK_ERR_RET(!meta, LOGERR_META(ctx, meta_name, src_diff), LY_EINVAL);
Michal Vaskoe78faec2021-04-08 17:24:43 +02001581 orig_meta = lyd_find_meta(diff_match->meta, NULL, orig_meta_name);
Michal Vasko52afd7d2022-01-18 14:08:34 +01001582 LY_CHECK_ERR_RET(!orig_meta, LOGERR_META(ctx, orig_meta_name, diff_match), LY_EINVAL);
Michal Vaskoe78faec2021-04-08 17:24:43 +02001583
1584 /* the (incorrect) assumption made here is that there are no previous diff nodes that would affect
1585 * the anchors stored in the metadata */
Radek Krejci6d5ba0c2021-04-26 07:49:59 +02001586 if (strcmp(lyd_get_meta_value(meta), lyd_get_meta_value(orig_meta))) {
Michal Vaskoe78faec2021-04-08 17:24:43 +02001587 /* deleted + created at another position -> operation REPLACE */
1588 LY_CHECK_RET(lyd_diff_change_op(diff_match, LYD_DIFF_OP_REPLACE));
1589
1590 /* add anchor metadata */
1591 LY_CHECK_RET(lyd_dup_meta_single(meta, diff_match, NULL));
1592 } else {
1593 /* deleted + created at the same position -> operation NONE */
1594 LY_CHECK_RET(lyd_diff_change_op(diff_match, LYD_DIFF_OP_NONE));
1595
1596 /* delete anchor metadata */
1597 lyd_free_meta_single(orig_meta);
1598 }
1599 } else if (diff_match->schema->nodetype == LYS_LEAF) {
1600 if (options & LYD_DIFF_MERGE_DEFAULTS) {
1601 /* we are dealing with a leaf and are handling default values specially (as explicit nodes) */
1602 sleaf = (struct lysc_node_leaf *)diff_match->schema;
1603 }
1604
Radek Krejci55c4bd22021-04-26 08:09:04 +02001605 if (sleaf && sleaf->dflt && !sleaf->dflt->realtype->plugin->compare(sleaf->dflt,
1606 &((struct lyd_node_term *)src_diff)->value)) {
Michal Vaskoe78faec2021-04-08 17:24:43 +02001607 /* we deleted it, so a default value was in-use, and it matches the created value -> operation NONE */
1608 LY_CHECK_RET(lyd_diff_change_op(diff_match, LYD_DIFF_OP_NONE));
1609 } else if (!lyd_compare_single(diff_match, src_diff, 0)) {
1610 /* deleted + created -> operation NONE */
1611 LY_CHECK_RET(lyd_diff_change_op(diff_match, LYD_DIFF_OP_NONE));
1612 } else {
1613 /* we deleted it, but it was created with a different value -> operation REPLACE */
1614 LY_CHECK_RET(lyd_diff_change_op(diff_match, LYD_DIFF_OP_REPLACE));
1615
1616 /* current value is the previous one (meta) */
1617 LY_CHECK_RET(lyd_new_meta(LYD_CTX(src_diff), diff_match, NULL, "yang:orig-value",
Radek Krejci6d5ba0c2021-04-26 07:49:59 +02001618 lyd_get_value(diff_match), 0, NULL));
Michal Vaskoe78faec2021-04-08 17:24:43 +02001619
1620 /* update the value itself */
Radek Krejci6d5ba0c2021-04-26 07:49:59 +02001621 LY_CHECK_RET(lyd_change_term(diff_match, lyd_get_value(src_diff)));
Michal Vaskoe78faec2021-04-08 17:24:43 +02001622 }
1623 } else {
Michal Vaskoe6323f62020-07-09 15:49:02 +02001624 /* deleted + created -> operation NONE */
1625 LY_CHECK_RET(lyd_diff_change_op(diff_match, LYD_DIFF_OP_NONE));
Michal Vaskoe6323f62020-07-09 15:49:02 +02001626 }
1627
1628 if (diff_match->schema->nodetype & LYD_NODE_TERM) {
Michal Vasko4b715ca2020-11-11 18:39:57 +01001629 /* add orig-dflt metadata */
1630 LY_CHECK_RET(lyd_new_meta(LYD_CTX(src_diff), diff_match, NULL, "yang:orig-default",
1631 trg_flags & LYD_DEFAULT ? "true" : "false", 0, NULL));
1632
Michal Vaskoe6323f62020-07-09 15:49:02 +02001633 /* update dflt flag itself */
1634 diff_match->flags &= ~LYD_DEFAULT;
1635 diff_match->flags |= src_diff->flags & LYD_DEFAULT;
Michal Vaskoe78faec2021-04-08 17:24:43 +02001636 }
1637
1638 /* but the operation of its children should remain DELETE */
1639 LY_LIST_FOR(lyd_child_no_keys(diff_match), child) {
1640 LY_CHECK_RET(lyd_diff_change_op(child, LYD_DIFF_OP_DELETE));
Michal Vaskoe6323f62020-07-09 15:49:02 +02001641 }
1642 break;
1643 default:
1644 /* create and replace operations are not valid */
Michal Vasko52afd7d2022-01-18 14:08:34 +01001645 LOGERR_MERGEOP(LYD_CTX(src_diff), diff_match, cur_op, LYD_DIFF_OP_CREATE);
1646 return LY_EINVAL;
Michal Vaskoe6323f62020-07-09 15:49:02 +02001647 }
1648
1649 return LY_SUCCESS;
1650}
1651
1652/**
1653 * @brief Update operations on a diff node when the new operation is DELETE.
1654 *
1655 * @param[in] diff_match Node from the diff.
Michal Vaskoe78faec2021-04-08 17:24:43 +02001656 * @param[in] cur_op Current operation of @p diff_match.
Michal Vaskoe6323f62020-07-09 15:49:02 +02001657 * @param[in] src_diff Current source diff node.
1658 * @return LY_ERR value.
1659 */
1660static LY_ERR
1661lyd_diff_merge_delete(struct lyd_node *diff_match, enum lyd_diff_op cur_op, const struct lyd_node *src_diff)
1662{
Michal Vasko17d0c5c2021-11-01 11:31:11 +01001663 struct lyd_node *child;
Michal Vaskoe78faec2021-04-08 17:24:43 +02001664 struct lyd_meta *meta;
1665 const char *meta_name;
Michal Vasko52afd7d2022-01-18 14:08:34 +01001666 const struct ly_ctx *ctx = LYD_CTX(diff_match);
Michal Vaskoe6323f62020-07-09 15:49:02 +02001667
1668 /* we can delete only exact existing nodes */
Michal Vaskob7be7a82020-08-20 09:09:04 +02001669 LY_CHECK_ERR_RET(lyd_compare_single(diff_match, src_diff, 0), LOGINT(LYD_CTX(src_diff)), LY_EINT);
Michal Vaskoe6323f62020-07-09 15:49:02 +02001670
1671 switch (cur_op) {
1672 case LYD_DIFF_OP_CREATE:
1673 /* it was created, but then deleted -> set NONE operation */
1674 LY_CHECK_RET(lyd_diff_change_op(diff_match, LYD_DIFF_OP_NONE));
1675
1676 if (diff_match->schema->nodetype & LYD_NODE_TERM) {
1677 /* add orig-default meta because it is expected */
Michal Vasko871a0252020-11-11 18:35:24 +01001678 LY_CHECK_RET(lyd_new_meta(LYD_CTX(src_diff), diff_match, NULL, "yang:orig-default",
1679 diff_match->flags & LYD_DEFAULT ? "true" : "false", 0, NULL));
Michal Vaskoe78faec2021-04-08 17:24:43 +02001680 } else if (!lysc_is_dup_inst_list(diff_match->schema)) {
Michal Vaskoe6323f62020-07-09 15:49:02 +02001681 /* keep operation for all descendants (for now) */
Radek Krejcia1c1e542020-09-29 16:06:52 +02001682 LY_LIST_FOR(lyd_child_no_keys(diff_match), child) {
Michal Vaskoe6323f62020-07-09 15:49:02 +02001683 LY_CHECK_RET(lyd_diff_change_op(child, cur_op));
1684 }
Michal Vaskoe78faec2021-04-08 17:24:43 +02001685 } /* else key-less list, for which all the descendants act as keys */
Michal Vaskoe6323f62020-07-09 15:49:02 +02001686 break;
1687 case LYD_DIFF_OP_REPLACE:
Michal Vasko17d0c5c2021-11-01 11:31:11 +01001688 /* remove the redundant metadata */
Michal Vaskoe78faec2021-04-08 17:24:43 +02001689 if (lysc_is_userordered(diff_match->schema)) {
1690 if (lysc_is_dup_inst_list(diff_match->schema)) {
1691 meta_name = "position";
1692 } else if (diff_match->schema->nodetype == LYS_LIST) {
1693 meta_name = "key";
1694 } else {
1695 meta_name = "value";
1696 }
1697 } else {
1698 assert(diff_match->schema->nodetype == LYS_LEAF);
1699
1700 /* switch value for the original one */
1701 meta = lyd_find_meta(diff_match->meta, NULL, "yang:orig-value");
Michal Vasko52afd7d2022-01-18 14:08:34 +01001702 LY_CHECK_ERR_RET(!meta, LOGERR_META(ctx, "yang:orig-value", diff_match), LY_EINVAL);
Radek Krejci6d5ba0c2021-04-26 07:49:59 +02001703 if (lyd_change_term(diff_match, lyd_get_meta_value(meta))) {
Michal Vasko52afd7d2022-01-18 14:08:34 +01001704 LOGERR_UNEXPVAL(ctx, diff_match, "target diff");
1705 return LY_EINVAL;
Michal Vaskoe78faec2021-04-08 17:24:43 +02001706 }
1707
1708 /* switch default for the original one, then remove the meta */
1709 meta = lyd_find_meta(diff_match->meta, NULL, "yang:orig-default");
Michal Vasko52afd7d2022-01-18 14:08:34 +01001710 LY_CHECK_ERR_RET(!meta, LOGERR_META(ctx, "yang:orig-default", diff_match), LY_EINVAL);
Michal Vaskoe78faec2021-04-08 17:24:43 +02001711 diff_match->flags &= ~LYD_DEFAULT;
1712 if (meta->value.boolean) {
1713 diff_match->flags |= LYD_DEFAULT;
1714 }
1715 lyd_free_meta_single(meta);
1716
1717 meta_name = "orig-value";
1718 }
1719 lyd_diff_del_meta(diff_match, meta_name);
1720
Michal Vasko17d0c5c2021-11-01 11:31:11 +01001721 /* it was being changed, but should be deleted instead -> set DELETE operation */
1722 LY_CHECK_RET(lyd_diff_change_op(diff_match, LYD_DIFF_OP_DELETE));
1723 break;
Michal Vaskoe6323f62020-07-09 15:49:02 +02001724 case LYD_DIFF_OP_NONE:
1725 /* it was not modified, but should be deleted -> set DELETE operation */
1726 LY_CHECK_RET(lyd_diff_change_op(diff_match, LYD_DIFF_OP_DELETE));
Michal Vaskoe6323f62020-07-09 15:49:02 +02001727 break;
1728 default:
1729 /* delete operation is not valid */
Michal Vasko52afd7d2022-01-18 14:08:34 +01001730 LOGERR_MERGEOP(LYD_CTX(diff_match), diff_match, cur_op, LYD_DIFF_OP_DELETE);
1731 return LY_EINVAL;
Michal Vaskoe6323f62020-07-09 15:49:02 +02001732 }
1733
1734 return LY_SUCCESS;
1735}
1736
1737/**
1738 * @brief Check whether this diff node is redundant (does not change data).
1739 *
1740 * @param[in] diff Diff node.
1741 * @return 0 if not, non-zero if it is.
1742 */
1743static int
1744lyd_diff_is_redundant(struct lyd_node *diff)
1745{
1746 enum lyd_diff_op op;
1747 struct lyd_meta *meta, *orig_val_meta = NULL, *val_meta = NULL;
1748 struct lyd_node *child;
1749 const struct lys_module *mod;
Michal Vaskoe78faec2021-04-08 17:24:43 +02001750 const char *str, *orig_meta_name, *meta_name;
Michal Vaskoe6323f62020-07-09 15:49:02 +02001751
1752 assert(diff);
1753
Michal Vaskoe78faec2021-04-08 17:24:43 +02001754 if (lysc_is_dup_inst_list(diff->schema)) {
1755 /* all descendants are keys */
1756 child = NULL;
1757 } else {
1758 child = lyd_child_no_keys(diff);
1759 }
Michal Vaskob7be7a82020-08-20 09:09:04 +02001760 mod = ly_ctx_get_module_latest(LYD_CTX(diff), "yang");
Michal Vaskoe6323f62020-07-09 15:49:02 +02001761 assert(mod);
1762
1763 /* get node operation */
Michal Vasko53bf6f22020-07-14 08:23:40 +02001764 LY_CHECK_RET(lyd_diff_get_op(diff, &op), 0);
Michal Vaskoe6323f62020-07-09 15:49:02 +02001765
1766 if ((op == LYD_DIFF_OP_REPLACE) && lysc_is_userordered(diff->schema)) {
Michal Vaskoe78faec2021-04-08 17:24:43 +02001767 /* get metadata names */
1768 if (lysc_is_dup_inst_list(diff->schema)) {
1769 meta_name = "position";
1770 orig_meta_name = "orig-position";
1771 } else if (diff->schema->nodetype == LYS_LIST) {
1772 meta_name = "key";
1773 orig_meta_name = "orig-key";
1774 } else {
1775 meta_name = "value";
1776 orig_meta_name = "orig-value";
1777 }
1778
Michal Vaskoe6323f62020-07-09 15:49:02 +02001779 /* check for redundant move */
Michal Vaskoe78faec2021-04-08 17:24:43 +02001780 orig_val_meta = lyd_find_meta(diff->meta, mod, orig_meta_name);
1781 val_meta = lyd_find_meta(diff->meta, mod, meta_name);
Michal Vaskoe6323f62020-07-09 15:49:02 +02001782 assert(orig_val_meta && val_meta);
1783
1784 if (!lyd_compare_meta(orig_val_meta, val_meta)) {
1785 /* there is actually no move */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001786 lyd_free_meta_single(orig_val_meta);
1787 lyd_free_meta_single(val_meta);
Michal Vaskoe6323f62020-07-09 15:49:02 +02001788 if (child) {
1789 /* change operation to NONE, we have siblings */
1790 lyd_diff_change_op(diff, LYD_DIFF_OP_NONE);
1791 return 0;
1792 }
1793
1794 /* redundant node, BUT !!
1795 * In diff the move operation is always converted to be INSERT_AFTER, which is fine
1796 * because the data that this is applied on should not change for the diff lifetime.
1797 * However, when we are merging 2 diffs, this conversion is actually lossy because
1798 * if the data change, the move operation can also change its meaning. In this specific
1799 * case the move operation will be lost. But it can be considered a feature, it is not supported.
1800 */
1801 return 1;
1802 }
Michal Vaskodb91fc32023-05-02 14:39:40 +02001803 } else if (op == LYD_DIFF_OP_NONE) {
1804 if (!diff->schema) {
1805 /* opaque node with none must be redundant */
Michal Vaskoe6323f62020-07-09 15:49:02 +02001806 return 1;
1807 }
Michal Vaskodb91fc32023-05-02 14:39:40 +02001808
1809 if (diff->schema->nodetype & LYD_NODE_TERM) {
1810 /* check whether at least the default flags are different */
1811 meta = lyd_find_meta(diff->meta, mod, "orig-default");
1812 assert(meta);
1813 str = lyd_get_meta_value(meta);
1814
1815 /* if previous and current dflt flags are the same, this node is redundant */
1816 if ((!strcmp(str, "true") && (diff->flags & LYD_DEFAULT)) || (!strcmp(str, "false") && !(diff->flags & LYD_DEFAULT))) {
1817 return 1;
1818 }
1819 return 0;
1820 }
Michal Vaskoe6323f62020-07-09 15:49:02 +02001821 }
1822
1823 if (!child && (op == LYD_DIFF_OP_NONE)) {
1824 return 1;
1825 }
1826
1827 return 0;
1828}
1829
1830/**
Michal Vaskoe78faec2021-04-08 17:24:43 +02001831 * @brief Merge sysrepo diff subtree with another diff, recursively.
Michal Vaskoe6323f62020-07-09 15:49:02 +02001832 *
1833 * @param[in] src_diff Source diff node.
1834 * @param[in] diff_parent Current sysrepo diff parent.
1835 * @param[in] diff_cb Optional diff callback.
1836 * @param[in] cb_data User data for @p diff_cb.
Michal Vaskoe78faec2021-04-08 17:24:43 +02001837 * @param[in,out] dup_inst Duplicate instance cache for all @p src_diff siblings.
Michal Vaskoc0e58e82020-11-11 19:04:33 +01001838 * @param[in] options Diff merge options.
Michal Vaskoe6323f62020-07-09 15:49:02 +02001839 * @param[in,out] diff Diff root node.
1840 * @return LY_ERR value.
1841 */
1842static LY_ERR
1843lyd_diff_merge_r(const struct lyd_node *src_diff, struct lyd_node *diff_parent, lyd_diff_cb diff_cb, void *cb_data,
Michal Vasko8efac242023-03-30 08:24:56 +02001844 struct ly_ht **dup_inst, uint16_t options, struct lyd_node **diff)
Michal Vaskoe6323f62020-07-09 15:49:02 +02001845{
1846 LY_ERR ret = LY_SUCCESS;
1847 struct lyd_node *child, *diff_node = NULL;
1848 enum lyd_diff_op src_op, cur_op;
Michal Vasko8efac242023-03-30 08:24:56 +02001849 struct ly_ht *child_dup_inst = NULL;
Michal Vaskoe6323f62020-07-09 15:49:02 +02001850
1851 /* get source node operation */
1852 LY_CHECK_RET(lyd_diff_get_op(src_diff, &src_op));
1853
1854 /* find an equal node in the current diff */
Michal Vaskoe78faec2021-04-08 17:24:43 +02001855 LY_CHECK_RET(lyd_diff_find_match(diff_parent ? lyd_child_no_keys(diff_parent) : *diff, src_diff, 1, dup_inst, &diff_node));
Michal Vaskoe6323f62020-07-09 15:49:02 +02001856
1857 if (diff_node) {
1858 /* get target (current) operation */
1859 LY_CHECK_RET(lyd_diff_get_op(diff_node, &cur_op));
1860
1861 /* merge operations */
1862 switch (src_op) {
1863 case LYD_DIFF_OP_REPLACE:
1864 ret = lyd_diff_merge_replace(diff_node, cur_op, src_diff);
1865 break;
1866 case LYD_DIFF_OP_CREATE:
Michal Vasko1dc0a842021-02-04 11:04:57 +01001867 if ((cur_op == LYD_DIFF_OP_CREATE) && lysc_is_dup_inst_list(diff_node->schema)) {
Michal Vaskoe78faec2021-04-08 17:24:43 +02001868 /* special case of creating duplicate (leaf-)list instances */
Michal Vasko1dc0a842021-02-04 11:04:57 +01001869 goto add_diff;
1870 }
1871
Michal Vaskoc0e58e82020-11-11 19:04:33 +01001872 ret = lyd_diff_merge_create(diff_node, cur_op, src_diff, options);
Michal Vaskoe6323f62020-07-09 15:49:02 +02001873 break;
1874 case LYD_DIFF_OP_DELETE:
1875 ret = lyd_diff_merge_delete(diff_node, cur_op, src_diff);
1876 break;
1877 case LYD_DIFF_OP_NONE:
Michal Vaskoe78faec2021-04-08 17:24:43 +02001878 /* key-less list can never have "none" operation since all its descendants are acting as "keys" */
1879 assert((src_diff->schema->nodetype != LYS_LIST) || !lysc_is_dup_inst_list(src_diff->schema));
Michal Vaskoe6323f62020-07-09 15:49:02 +02001880 ret = lyd_diff_merge_none(diff_node, cur_op, src_diff);
1881 break;
1882 default:
Michal Vaskob7be7a82020-08-20 09:09:04 +02001883 LOGINT_RET(LYD_CTX(src_diff));
Michal Vaskoe6323f62020-07-09 15:49:02 +02001884 }
1885 if (ret) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001886 LOGERR(LYD_CTX(src_diff), LY_EOTHER, "Merging operation \"%s\" failed.", lyd_diff_op2str(src_op));
Michal Vaskoe6323f62020-07-09 15:49:02 +02001887 return ret;
1888 }
1889
1890 if (diff_cb) {
1891 /* call callback */
Michal Vaskobc5fba92020-08-07 12:14:39 +02001892 LY_CHECK_RET(diff_cb(src_diff, diff_node, cb_data));
Michal Vaskoe6323f62020-07-09 15:49:02 +02001893 }
1894
1895 /* update diff parent */
1896 diff_parent = diff_node;
1897
Michal Vaskoe78faec2021-04-08 17:24:43 +02001898 /* for diff purposes, all key-less list descendants actually act as keys (identifying the same instances),
1899 * so there is nothing to merge for these "keys" */
1900 if (!lysc_is_dup_inst_list(src_diff->schema)) {
1901 /* merge src_diff recursively */
1902 LY_LIST_FOR(lyd_child_no_keys(src_diff), child) {
1903 ret = lyd_diff_merge_r(child, diff_parent, diff_cb, cb_data, &child_dup_inst, options, diff);
1904 if (ret) {
1905 break;
1906 }
1907 }
Michal Vaskod7c048c2021-05-18 16:12:55 +02001908 lyd_dup_inst_free(child_dup_inst);
Michal Vaskoe78faec2021-04-08 17:24:43 +02001909 LY_CHECK_RET(ret);
Michal Vaskoe6323f62020-07-09 15:49:02 +02001910 }
1911 } else {
Michal Vasko1dc0a842021-02-04 11:04:57 +01001912add_diff:
Michal Vaskoe6323f62020-07-09 15:49:02 +02001913 /* add new diff node with all descendants */
Michal Vasko9ad76852022-07-12 10:18:03 +02001914 if ((src_diff->flags & LYD_EXT) && diff_parent) {
1915 LY_CHECK_RET(lyd_dup_single_to_ctx(src_diff, LYD_CTX(diff_parent), (struct lyd_node_inner *)diff_parent,
1916 LYD_DUP_RECURSIVE | LYD_DUP_WITH_FLAGS, &diff_node));
1917 } else {
1918 LY_CHECK_RET(lyd_dup_single(src_diff, (struct lyd_node_inner *)diff_parent,
1919 LYD_DUP_RECURSIVE | LYD_DUP_WITH_FLAGS, &diff_node));
1920 }
Michal Vaskoe6323f62020-07-09 15:49:02 +02001921
1922 /* insert node into diff if not already */
1923 if (!diff_parent) {
Michal Vaskob104f112020-07-17 09:54:54 +02001924 lyd_insert_sibling(*diff, diff_node, diff);
Michal Vaskoe6323f62020-07-09 15:49:02 +02001925 }
1926
1927 /* update operation */
1928 LY_CHECK_RET(lyd_diff_change_op(diff_node, src_op));
1929
1930 if (diff_cb) {
Michal Vaskoe2af8412020-12-03 14:11:38 +01001931 /* call callback with no source diff node since it was duplicated and just added */
1932 LY_CHECK_RET(diff_cb(NULL, diff_node, cb_data));
Michal Vaskoe6323f62020-07-09 15:49:02 +02001933 }
1934
1935 /* update diff parent */
1936 diff_parent = diff_node;
1937 }
1938
1939 /* remove any redundant nodes */
Michal Vaskob98d7082020-07-15 16:38:36 +02001940 if (lyd_diff_is_redundant(diff_parent)) {
Michal Vaskoe6323f62020-07-09 15:49:02 +02001941 if (diff_parent == *diff) {
1942 *diff = (*diff)->next;
1943 }
1944 lyd_free_tree(diff_parent);
1945 }
1946
1947 return LY_SUCCESS;
1948}
1949
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001950LIBYANG_API_DEF LY_ERR
Michal Vaskofb737aa2020-08-06 13:53:53 +02001951lyd_diff_merge_module(struct lyd_node **diff, const struct lyd_node *src_diff, const struct lys_module *mod,
Michal Vaskoc0e58e82020-11-11 19:04:33 +01001952 lyd_diff_cb diff_cb, void *cb_data, uint16_t options)
Michal Vaskoe6323f62020-07-09 15:49:02 +02001953{
1954 const struct lyd_node *src_root;
Michal Vasko8efac242023-03-30 08:24:56 +02001955 struct ly_ht *dup_inst = NULL;
Michal Vaskoe78faec2021-04-08 17:24:43 +02001956 LY_ERR ret = LY_SUCCESS;
Michal Vaskoe6323f62020-07-09 15:49:02 +02001957
1958 LY_LIST_FOR(src_diff, src_root) {
1959 if (mod && (lyd_owner_module(src_root) != mod)) {
1960 /* skip data nodes from different modules */
1961 continue;
1962 }
1963
1964 /* apply relevant nodes from the diff datatree */
Michal Vaskoe78faec2021-04-08 17:24:43 +02001965 LY_CHECK_GOTO(ret = lyd_diff_merge_r(src_root, NULL, diff_cb, cb_data, &dup_inst, options, diff), cleanup);
Michal Vaskoe6323f62020-07-09 15:49:02 +02001966 }
1967
Michal Vaskoe78faec2021-04-08 17:24:43 +02001968cleanup:
Michal Vaskod7c048c2021-05-18 16:12:55 +02001969 lyd_dup_inst_free(dup_inst);
Michal Vaskoe78faec2021-04-08 17:24:43 +02001970 return ret;
Michal Vaskoe6323f62020-07-09 15:49:02 +02001971}
1972
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001973LIBYANG_API_DEF LY_ERR
Michal Vasko04f85912020-08-07 12:14:58 +02001974lyd_diff_merge_tree(struct lyd_node **diff_first, struct lyd_node *diff_parent, const struct lyd_node *src_sibling,
Michal Vaskoc0e58e82020-11-11 19:04:33 +01001975 lyd_diff_cb diff_cb, void *cb_data, uint16_t options)
Michal Vasko04f85912020-08-07 12:14:58 +02001976{
Michal Vaskoe78faec2021-04-08 17:24:43 +02001977 LY_ERR ret;
Michal Vasko8efac242023-03-30 08:24:56 +02001978 struct ly_ht *dup_inst = NULL;
Michal Vaskoe78faec2021-04-08 17:24:43 +02001979
Michal Vasko04f85912020-08-07 12:14:58 +02001980 if (!src_sibling) {
1981 return LY_SUCCESS;
1982 }
1983
Michal Vaskoe78faec2021-04-08 17:24:43 +02001984 ret = lyd_diff_merge_r(src_sibling, diff_parent, diff_cb, cb_data, &dup_inst, options, diff_first);
Michal Vaskod7c048c2021-05-18 16:12:55 +02001985 lyd_dup_inst_free(dup_inst);
Michal Vaskoe78faec2021-04-08 17:24:43 +02001986 return ret;
Michal Vasko04f85912020-08-07 12:14:58 +02001987}
1988
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001989LIBYANG_API_DEF LY_ERR
Michal Vaskoc0e58e82020-11-11 19:04:33 +01001990lyd_diff_merge_all(struct lyd_node **diff, const struct lyd_node *src_diff, uint16_t options)
Michal Vaskoe6323f62020-07-09 15:49:02 +02001991{
Michal Vaskoc0e58e82020-11-11 19:04:33 +01001992 return lyd_diff_merge_module(diff, src_diff, NULL, NULL, NULL, options);
Michal Vaskoe6323f62020-07-09 15:49:02 +02001993}
Michal Vasko4231fb62020-07-13 13:54:47 +02001994
1995static LY_ERR
Michal Vaskobaba84e2021-02-05 16:33:30 +01001996lyd_diff_reverse_value(struct lyd_node *node, const struct lys_module *mod)
Michal Vasko4231fb62020-07-13 13:54:47 +02001997{
1998 LY_ERR ret = LY_SUCCESS;
1999 struct lyd_meta *meta;
Michal Vaskoba99a3e2020-08-18 15:50:05 +02002000 const char *val1 = NULL;
2001 char *val2;
Radek Krejci1deb5be2020-08-26 16:43:36 +02002002 uint32_t flags;
Michal Vasko4231fb62020-07-13 13:54:47 +02002003
Michal Vaskobaba84e2021-02-05 16:33:30 +01002004 assert(node->schema->nodetype & (LYS_LEAF | LYS_ANYDATA));
2005
2006 meta = lyd_find_meta(node->meta, mod, "orig-value");
Michal Vasko52afd7d2022-01-18 14:08:34 +01002007 LY_CHECK_ERR_RET(!meta, LOGERR_META(LYD_CTX(node), "orig-value", node), LY_EINVAL);
Michal Vasko4231fb62020-07-13 13:54:47 +02002008
2009 /* orig-value */
Radek Krejci6d5ba0c2021-04-26 07:49:59 +02002010 val1 = lyd_get_meta_value(meta);
Michal Vasko4231fb62020-07-13 13:54:47 +02002011
2012 /* current value */
Michal Vaskobaba84e2021-02-05 16:33:30 +01002013 if (node->schema->nodetype == LYS_LEAF) {
Radek Krejci6d5ba0c2021-04-26 07:49:59 +02002014 val2 = strdup(lyd_get_value(node));
Michal Vaskobaba84e2021-02-05 16:33:30 +01002015 } else {
2016 LY_CHECK_RET(lyd_any_value_str(node, &val2));
2017 }
Michal Vasko4231fb62020-07-13 13:54:47 +02002018
2019 /* switch values, keep default flag */
Michal Vaskobaba84e2021-02-05 16:33:30 +01002020 flags = node->flags;
2021 if (node->schema->nodetype == LYS_LEAF) {
2022 LY_CHECK_GOTO(ret = lyd_change_term(node, val1), cleanup);
2023 } else {
2024 union lyd_any_value anyval = {.str = val1};
Michal Vasko26bbb272022-08-02 14:54:33 +02002025
Michal Vaskobaba84e2021-02-05 16:33:30 +01002026 LY_CHECK_GOTO(ret = lyd_any_copy_value(node, &anyval, LYD_ANYDATA_STRING), cleanup);
2027 }
2028 node->flags = flags;
Michal Vasko4231fb62020-07-13 13:54:47 +02002029 LY_CHECK_GOTO(ret = lyd_change_meta(meta, val2), cleanup);
2030
2031cleanup:
Michal Vaskoba99a3e2020-08-18 15:50:05 +02002032 free(val2);
Michal Vasko4231fb62020-07-13 13:54:47 +02002033 return ret;
2034}
2035
2036static LY_ERR
2037lyd_diff_reverse_default(struct lyd_node *node, const struct lys_module *mod)
2038{
2039 struct lyd_meta *meta;
Radek Krejci1deb5be2020-08-26 16:43:36 +02002040 uint32_t flag1, flag2;
Michal Vasko4231fb62020-07-13 13:54:47 +02002041
2042 meta = lyd_find_meta(node->meta, mod, "orig-default");
Michal Vasko610e93b2020-11-09 20:58:32 +01002043 LY_CHECK_ERR_RET(!meta, LOGINT(mod->ctx), LY_EINT);
Michal Vasko4231fb62020-07-13 13:54:47 +02002044
2045 /* orig-default */
Michal Vaskoba99a3e2020-08-18 15:50:05 +02002046 if (meta->value.boolean) {
Michal Vasko4231fb62020-07-13 13:54:47 +02002047 flag1 = LYD_DEFAULT;
2048 } else {
2049 flag1 = 0;
2050 }
2051
2052 /* current default */
2053 flag2 = node->flags & LYD_DEFAULT;
2054
Michal Vasko610e93b2020-11-09 20:58:32 +01002055 if (flag1 == flag2) {
2056 /* no default state change so nothing to reverse */
2057 return LY_SUCCESS;
2058 }
2059
Michal Vasko4231fb62020-07-13 13:54:47 +02002060 /* switch defaults */
2061 node->flags &= ~LYD_DEFAULT;
2062 node->flags |= flag1;
2063 LY_CHECK_RET(lyd_change_meta(meta, flag2 ? "true" : "false"));
2064
2065 return LY_SUCCESS;
2066}
2067
2068static LY_ERR
2069lyd_diff_reverse_meta(struct lyd_node *node, const struct lys_module *mod, const char *name1, const char *name2)
2070{
2071 LY_ERR ret = LY_SUCCESS;
2072 struct lyd_meta *meta1, *meta2;
Michal Vaskoba99a3e2020-08-18 15:50:05 +02002073 const char *val1 = NULL;
2074 char *val2 = NULL;
Michal Vasko4231fb62020-07-13 13:54:47 +02002075
2076 meta1 = lyd_find_meta(node->meta, mod, name1);
Michal Vasko52afd7d2022-01-18 14:08:34 +01002077 LY_CHECK_ERR_RET(!meta1, LOGERR_META(LYD_CTX(node), name1, node), LY_EINVAL);
Michal Vasko4231fb62020-07-13 13:54:47 +02002078
2079 meta2 = lyd_find_meta(node->meta, mod, name2);
Michal Vasko52afd7d2022-01-18 14:08:34 +01002080 LY_CHECK_ERR_RET(!meta2, LOGERR_META(LYD_CTX(node), name2, node), LY_EINVAL);
Michal Vasko4231fb62020-07-13 13:54:47 +02002081
2082 /* value1 */
Radek Krejci6d5ba0c2021-04-26 07:49:59 +02002083 val1 = lyd_get_meta_value(meta1);
Michal Vasko4231fb62020-07-13 13:54:47 +02002084
2085 /* value2 */
Radek Krejci6d5ba0c2021-04-26 07:49:59 +02002086 val2 = strdup(lyd_get_meta_value(meta2));
Michal Vasko4231fb62020-07-13 13:54:47 +02002087
2088 /* switch values */
2089 LY_CHECK_GOTO(ret = lyd_change_meta(meta1, val2), cleanup);
2090 LY_CHECK_GOTO(ret = lyd_change_meta(meta2, val1), cleanup);
2091
2092cleanup:
Michal Vaskoba99a3e2020-08-18 15:50:05 +02002093 free(val2);
Michal Vasko4231fb62020-07-13 13:54:47 +02002094 return ret;
2095}
2096
Michal Vasko9a7e9d02021-03-09 13:52:25 +01002097/**
2098 * @brief Remove specific operation from all the nodes in a subtree.
2099 *
2100 * @param[in] diff Diff subtree to process.
2101 * @param[in] op Only expected operation.
2102 * @return LY_ERR value.
2103 */
2104static LY_ERR
2105lyd_diff_reverse_remove_op_r(struct lyd_node *diff, enum lyd_diff_op op)
2106{
2107 struct lyd_node *elem;
2108 struct lyd_meta *meta;
2109
2110 LYD_TREE_DFS_BEGIN(diff, elem) {
2111 meta = lyd_find_meta(elem->meta, NULL, "yang:operation");
2112 if (meta) {
Radek Krejci6d5ba0c2021-04-26 07:49:59 +02002113 LY_CHECK_ERR_RET(lyd_diff_str2op(lyd_get_meta_value(meta)) != op, LOGINT(LYD_CTX(diff)), LY_EINT);
Michal Vasko9a7e9d02021-03-09 13:52:25 +01002114 lyd_free_meta_single(meta);
2115 }
2116
2117 LYD_TREE_DFS_END(diff, elem);
2118 }
2119
2120 return LY_SUCCESS;
2121}
2122
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002123LIBYANG_API_DEF LY_ERR
Michal Vasko66535812020-08-11 08:44:22 +02002124lyd_diff_reverse_all(const struct lyd_node *src_diff, struct lyd_node **diff)
Michal Vasko4231fb62020-07-13 13:54:47 +02002125{
2126 LY_ERR ret = LY_SUCCESS;
2127 const struct lys_module *mod;
Michal Vasko9a7e9d02021-03-09 13:52:25 +01002128 struct lyd_node *root, *elem, *iter;
Michal Vasko4231fb62020-07-13 13:54:47 +02002129 enum lyd_diff_op op;
2130
2131 LY_CHECK_ARG_RET(NULL, diff, LY_EINVAL);
2132
2133 if (!src_diff) {
2134 *diff = NULL;
2135 return LY_SUCCESS;
2136 }
2137
2138 /* duplicate diff */
Michal Vasko3a41dff2020-07-15 14:30:28 +02002139 LY_CHECK_RET(lyd_dup_siblings(src_diff, NULL, LYD_DUP_RECURSIVE, diff));
Michal Vasko4231fb62020-07-13 13:54:47 +02002140
2141 /* find module with metadata needed for later */
Michal Vaskob7be7a82020-08-20 09:09:04 +02002142 mod = ly_ctx_get_module_latest(LYD_CTX(src_diff), "yang");
2143 LY_CHECK_ERR_GOTO(!mod, LOGINT(LYD_CTX(src_diff)); ret = LY_EINT, cleanup);
Michal Vasko4231fb62020-07-13 13:54:47 +02002144
2145 LY_LIST_FOR(*diff, root) {
Michal Vasko56daf732020-08-10 10:57:18 +02002146 LYD_TREE_DFS_BEGIN(root, elem) {
Michal Vasko0f5c6a52020-11-06 17:18:03 +01002147 /* skip all keys */
2148 if (!lysc_is_key(elem->schema)) {
2149 /* find operation attribute, if any */
2150 LY_CHECK_GOTO(ret = lyd_diff_get_op(elem, &op), cleanup);
Michal Vasko4231fb62020-07-13 13:54:47 +02002151
Michal Vasko0f5c6a52020-11-06 17:18:03 +01002152 switch (op) {
2153 case LYD_DIFF_OP_CREATE:
2154 /* reverse create to delete */
2155 LY_CHECK_GOTO(ret = lyd_diff_change_op(elem, LYD_DIFF_OP_DELETE), cleanup);
Michal Vasko9e070522021-03-05 14:00:14 +01002156
Michal Vasko9a7e9d02021-03-09 13:52:25 +01002157 /* check all the children for the same operation, nothing else is expected */
2158 LY_LIST_FOR(lyd_child(elem), iter) {
2159 lyd_diff_reverse_remove_op_r(iter, LYD_DIFF_OP_CREATE);
2160 }
2161
Michal Vasko9e070522021-03-05 14:00:14 +01002162 LYD_TREE_DFS_continue = 1;
Michal Vasko4231fb62020-07-13 13:54:47 +02002163 break;
Michal Vasko0f5c6a52020-11-06 17:18:03 +01002164 case LYD_DIFF_OP_DELETE:
2165 /* reverse delete to create */
2166 LY_CHECK_GOTO(ret = lyd_diff_change_op(elem, LYD_DIFF_OP_CREATE), cleanup);
Michal Vasko9e070522021-03-05 14:00:14 +01002167
Michal Vasko9a7e9d02021-03-09 13:52:25 +01002168 /* check all the children for the same operation, nothing else is expected */
2169 LY_LIST_FOR(lyd_child(elem), iter) {
2170 lyd_diff_reverse_remove_op_r(iter, LYD_DIFF_OP_DELETE);
2171 }
2172
Michal Vasko9e070522021-03-05 14:00:14 +01002173 LYD_TREE_DFS_continue = 1;
Michal Vasko4231fb62020-07-13 13:54:47 +02002174 break;
Michal Vasko0f5c6a52020-11-06 17:18:03 +01002175 case LYD_DIFF_OP_REPLACE:
2176 switch (elem->schema->nodetype) {
2177 case LYS_LEAF:
2178 /* leaf value change */
2179 LY_CHECK_GOTO(ret = lyd_diff_reverse_value(elem, mod), cleanup);
2180 LY_CHECK_GOTO(ret = lyd_diff_reverse_default(elem, mod), cleanup);
2181 break;
Michal Vaskobaba84e2021-02-05 16:33:30 +01002182 case LYS_ANYXML:
2183 case LYS_ANYDATA:
2184 /* any value change */
2185 LY_CHECK_GOTO(ret = lyd_diff_reverse_value(elem, mod), cleanup);
2186 break;
Michal Vasko0f5c6a52020-11-06 17:18:03 +01002187 case LYS_LEAFLIST:
2188 /* leaf-list move */
2189 LY_CHECK_GOTO(ret = lyd_diff_reverse_default(elem, mod), cleanup);
Michal Vaskoe78faec2021-04-08 17:24:43 +02002190 if (lysc_is_dup_inst_list(elem->schema)) {
2191 LY_CHECK_GOTO(ret = lyd_diff_reverse_meta(elem, mod, "orig-position", "position"), cleanup);
2192 } else {
2193 LY_CHECK_GOTO(ret = lyd_diff_reverse_meta(elem, mod, "orig-value", "value"), cleanup);
2194 }
Michal Vasko0f5c6a52020-11-06 17:18:03 +01002195 break;
2196 case LYS_LIST:
2197 /* list move */
Michal Vaskoe78faec2021-04-08 17:24:43 +02002198 if (lysc_is_dup_inst_list(elem->schema)) {
2199 LY_CHECK_GOTO(ret = lyd_diff_reverse_meta(elem, mod, "orig-position", "position"), cleanup);
2200 } else {
2201 LY_CHECK_GOTO(ret = lyd_diff_reverse_meta(elem, mod, "orig-key", "key"), cleanup);
2202 }
Michal Vasko0f5c6a52020-11-06 17:18:03 +01002203 break;
2204 default:
2205 LOGINT(LYD_CTX(src_diff));
2206 ret = LY_EINT;
2207 goto cleanup;
2208 }
Michal Vasko4231fb62020-07-13 13:54:47 +02002209 break;
Michal Vasko0f5c6a52020-11-06 17:18:03 +01002210 case LYD_DIFF_OP_NONE:
2211 switch (elem->schema->nodetype) {
2212 case LYS_LEAF:
2213 case LYS_LEAFLIST:
2214 /* default flag change */
2215 LY_CHECK_GOTO(ret = lyd_diff_reverse_default(elem, mod), cleanup);
2216 break;
2217 default:
2218 /* nothing to do */
2219 break;
2220 }
Michal Vasko4231fb62020-07-13 13:54:47 +02002221 break;
2222 }
Michal Vasko4231fb62020-07-13 13:54:47 +02002223 }
2224
Michal Vasko56daf732020-08-10 10:57:18 +02002225 LYD_TREE_DFS_END(root, elem);
Michal Vasko4231fb62020-07-13 13:54:47 +02002226 }
2227 }
2228
2229cleanup:
2230 if (ret) {
2231 lyd_free_siblings(*diff);
2232 *diff = NULL;
2233 }
2234 return ret;
2235}