blob: 57c5d46770e21048c434fd2ff79e2f93f660cb32 [file] [log] [blame]
Radek Krejcida04f4a2015-05-21 12:54:09 +02001/**
Michal Vasko2d162e12015-09-24 14:33:29 +02002 * @file tree_schema.c
Radek Krejcida04f4a2015-05-21 12:54:09 +02003 * @author Radek Krejci <rkrejci@cesnet.cz>
Michal Vasko2d162e12015-09-24 14:33:29 +02004 * @brief Manipulation with libyang schema data structures
Radek Krejcida04f4a2015-05-21 12:54:09 +02005 *
6 * Copyright (c) 2015 CESNET, z.s.p.o.
7 *
Radek Krejci54f6fb32016-02-24 12:56:39 +01008 * 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
Michal Vasko8de098c2016-02-26 10:00:25 +010011 *
Radek Krejci54f6fb32016-02-24 12:56:39 +010012 * https://opensource.org/licenses/BSD-3-Clause
Radek Krejcida04f4a2015-05-21 12:54:09 +020013 */
Radek Krejci54f6fb32016-02-24 12:56:39 +010014
Michal Vaskoc3d9f8c2015-07-31 14:37:24 +020015#define _GNU_SOURCE
Radek Krejcida04f4a2015-05-21 12:54:09 +020016
Radek Krejci812b10a2015-05-28 16:48:25 +020017#include <assert.h>
Radek Krejci5a988152015-07-15 11:16:26 +020018#include <ctype.h>
Radek Krejcib051f722016-02-25 15:12:21 +010019#include <limits.h>
Radek Krejcida04f4a2015-05-21 12:54:09 +020020#include <stdlib.h>
21#include <sys/mman.h>
Michal Vasko662610a2015-12-07 11:25:45 +010022#include <sys/types.h>
Radek Krejcida04f4a2015-05-21 12:54:09 +020023#include <sys/stat.h>
Michal Vasko662610a2015-12-07 11:25:45 +010024#include <fcntl.h>
Radek Krejci8bc9ca02015-06-04 15:52:46 +020025#include <string.h>
Michal Vasko662610a2015-12-07 11:25:45 +010026#include <unistd.h>
27#include <errno.h>
Radek Krejcida04f4a2015-05-21 12:54:09 +020028
29#include "common.h"
30#include "context.h"
Radek Krejci3045cf32015-05-28 10:58:52 +020031#include "parser.h"
Michal Vaskoc3d9f8c2015-07-31 14:37:24 +020032#include "resolve.h"
Michal Vasko88c29542015-11-27 14:57:53 +010033#include "xml.h"
Michal Vasko5b3492c2016-07-20 09:37:40 +020034#include "xpath.h"
Michal Vaskofc5744d2015-10-22 12:09:34 +020035#include "xml_internal.h"
Radek Krejci8bc9ca02015-06-04 15:52:46 +020036#include "tree_internal.h"
Radek Krejcieab784a2015-08-27 09:56:53 +020037#include "validation.h"
Pavol Vicanf7cc2852016-03-22 23:27:35 +010038#include "parser_yang.h"
Radek Krejciefaeba32015-05-27 14:30:57 +020039
Pavol Vicanacb9d0d2016-04-04 13:57:23 +020040static int
41lys_type_dup(struct lys_module *mod, struct lys_node *parent, struct lys_type *new, struct lys_type *old,
Radek Krejci3a5501d2016-07-18 22:03:34 +020042 int tpdftype, struct unres_schema *unres);
Pavol Vicanacb9d0d2016-04-04 13:57:23 +020043
Radek Krejci9ff0a922016-07-14 13:08:05 +020044API const struct lys_node *
Michal Vasko1e62a092015-12-01 12:27:20 +010045lys_is_disabled(const struct lys_node *node, int recursive)
Radek Krejci48061fb2015-08-05 15:41:07 +020046{
Radek Krejci9ff0a922016-07-14 13:08:05 +020047 int i;
Radek Krejci48061fb2015-08-05 15:41:07 +020048
49check:
50 if (node->nodetype != LYS_INPUT && node->nodetype != LYS_OUTPUT) {
51 /* input/output does not have if-feature, so skip them */
52
53 /* check local if-features */
Michal Vaskoc5c26b02016-06-29 11:10:29 +020054 for (i = 0; i < node->iffeature_size; i++) {
Radek Krejci69b8d922016-07-27 13:13:41 +020055 if (!resolve_iffeature(&node->iffeature[i])) {
Radek Krejci9ff0a922016-07-14 13:08:05 +020056 return node;
Radek Krejci48061fb2015-08-05 15:41:07 +020057 }
58 }
59 }
60
61 if (!recursive) {
62 return NULL;
63 }
64
65 /* go through parents */
66 if (node->nodetype == LYS_AUGMENT) {
67 /* go to parent actually means go to the target node */
68 node = ((struct lys_node_augment *)node)->target;
Radek Krejci48061fb2015-08-05 15:41:07 +020069 } else if (node->parent) {
70 node = node->parent;
Radek Krejci074bf852015-08-19 14:22:16 +020071 } else {
72 return NULL;
Radek Krejci48061fb2015-08-05 15:41:07 +020073 }
74
Radek Krejci074bf852015-08-19 14:22:16 +020075 if (recursive == 2) {
76 /* continue only if the node cannot have a data instance */
77 if (node->nodetype & (LYS_CONTAINER | LYS_LEAF | LYS_LEAFLIST | LYS_LIST)) {
78 return NULL;
79 }
80 }
81 goto check;
Radek Krejci48061fb2015-08-05 15:41:07 +020082}
83
Michal Vasko1dca6882015-10-22 14:29:42 +020084int
Michal Vasko36cbaa42015-12-14 13:15:48 +010085lys_get_sibling(const struct lys_node *siblings, const char *mod_name, int mod_name_len, const char *name,
86 int nam_len, LYS_NODE type, const struct lys_node **ret)
Michal Vasko1dca6882015-10-22 14:29:42 +020087{
Radek Krejcic071c542016-01-27 14:57:51 +010088 const struct lys_node *node, *parent = NULL;
89 const struct lys_module *mod = NULL;
Michal Vasko36cbaa42015-12-14 13:15:48 +010090 const char *node_mod_name;
Michal Vasko1dca6882015-10-22 14:29:42 +020091
Michal Vasko36cbaa42015-12-14 13:15:48 +010092 assert(siblings && mod_name && name);
Michal Vasko165dc4a2015-10-23 09:44:27 +020093 assert(!(type & (LYS_USES | LYS_GROUPING)));
Michal Vasko1dca6882015-10-22 14:29:42 +020094
Michal Vasko36cbaa42015-12-14 13:15:48 +010095 /* fill the lengths in case the caller is so indifferent */
96 if (!mod_name_len) {
97 mod_name_len = strlen(mod_name);
98 }
Michal Vasko1dca6882015-10-22 14:29:42 +020099 if (!nam_len) {
100 nam_len = strlen(name);
101 }
102
Michal Vasko36cbaa42015-12-14 13:15:48 +0100103 /* set mod correctly */
Radek Krejcic071c542016-01-27 14:57:51 +0100104 parent = lys_parent(siblings);
105 if (!parent) {
Michal Vasko4f0dad02016-02-15 14:08:23 +0100106 mod = lys_node_module(siblings);
Michal Vasko1dca6882015-10-22 14:29:42 +0200107 }
108
Radek Krejcic071c542016-01-27 14:57:51 +0100109 /* try to find the node */
110 node = NULL;
111 while ((node = lys_getnext(node, parent, mod, LYS_GETNEXT_WITHCHOICE | LYS_GETNEXT_WITHCASE))) {
112 if (!type || (node->nodetype & type)) {
Michal Vasko4f0dad02016-02-15 14:08:23 +0100113 /* module name comparison */
114 node_mod_name = lys_node_module(node)->name;
Michal Vaskob42b6972016-06-06 14:21:30 +0200115 if (!ly_strequal(node_mod_name, mod_name, 1) && (strncmp(node_mod_name, mod_name, mod_name_len) || node_mod_name[mod_name_len])) {
Radek Krejcic071c542016-01-27 14:57:51 +0100116 continue;
117 }
Michal Vasko1dca6882015-10-22 14:29:42 +0200118
Radek Krejcic071c542016-01-27 14:57:51 +0100119 /* direct name check */
Michal Vaskob42b6972016-06-06 14:21:30 +0200120 if (ly_strequal(node->name, name, 1) || (!strncmp(node->name, name, nam_len) && !node->name[nam_len])) {
Radek Krejcic071c542016-01-27 14:57:51 +0100121 if (ret) {
122 *ret = node;
Michal Vasko1dca6882015-10-22 14:29:42 +0200123 }
Radek Krejcic071c542016-01-27 14:57:51 +0100124 return EXIT_SUCCESS;
Michal Vasko1dca6882015-10-22 14:29:42 +0200125 }
126 }
Michal Vasko1dca6882015-10-22 14:29:42 +0200127 }
128
129 return EXIT_FAILURE;
130}
131
Michal Vaskoa45cf2b2015-10-23 09:45:36 +0200132int
Michal Vasko1e62a092015-12-01 12:27:20 +0100133lys_get_data_sibling(const struct lys_module *mod, const struct lys_node *siblings, const char *name, LYS_NODE type,
134 const struct lys_node **ret)
Michal Vaskoa45cf2b2015-10-23 09:45:36 +0200135{
Michal Vasko1e62a092015-12-01 12:27:20 +0100136 const struct lys_node *node;
Michal Vaskoa45cf2b2015-10-23 09:45:36 +0200137
138 assert(siblings && name);
139 assert(!(type & (LYS_AUGMENT | LYS_USES | LYS_GROUPING | LYS_CHOICE | LYS_CASE | LYS_INPUT | LYS_OUTPUT)));
140
141 /* find the beginning */
142 while (siblings->prev->next) {
143 siblings = siblings->prev;
144 }
145
Michal Vaskoa45cf2b2015-10-23 09:45:36 +0200146 if (!mod) {
147 mod = siblings->module;
148 }
Michal Vaskoa45cf2b2015-10-23 09:45:36 +0200149
Michal Vasko4f0dad02016-02-15 14:08:23 +0100150 /* try to find the node */
151 node = NULL;
Michal Vaskodcf98e62016-05-05 17:53:53 +0200152 while ((node = lys_getnext(node, lys_parent(siblings), mod, 0))) {
Michal Vasko4f0dad02016-02-15 14:08:23 +0100153 if (!type || (node->nodetype & type)) {
154 /* module check */
Radek Krejcic4283442016-04-22 09:19:27 +0200155 if (lys_node_module(node) != lys_main_module(mod)) {
Radek Krejcic071c542016-01-27 14:57:51 +0100156 continue;
157 }
158
Michal Vasko4f0dad02016-02-15 14:08:23 +0100159 /* direct name check */
Radek Krejci749190d2016-02-18 16:26:25 +0100160 if (ly_strequal(node->name, name, 0)) {
Michal Vasko4f0dad02016-02-15 14:08:23 +0100161 if (ret) {
162 *ret = node;
163 }
164 return EXIT_SUCCESS;
165 }
Radek Krejcic071c542016-01-27 14:57:51 +0100166 }
Michal Vaskoa45cf2b2015-10-23 09:45:36 +0200167 }
168
169 return EXIT_FAILURE;
170}
171
Michal Vasko1e62a092015-12-01 12:27:20 +0100172API const struct lys_node *
173lys_getnext(const struct lys_node *last, const struct lys_node *parent, const struct lys_module *module, int options)
Radek Krejci7f40ce32015-08-12 20:38:46 +0200174{
Michal Vasko1e62a092015-12-01 12:27:20 +0100175 const struct lys_node *next;
Radek Krejci7f40ce32015-08-12 20:38:46 +0200176
Radek Krejci8bc87f62015-09-02 16:19:05 +0200177 if (!last) {
178 /* first call */
179
180 /* get know where to start */
181 if (parent) {
182 /* schema subtree */
183 next = last = parent->child;
184 } else {
185 /* top level data */
186 assert(module);
187 next = last = module->data;
188 }
Radek Krejci7f40ce32015-08-12 20:38:46 +0200189 } else {
Radek Krejci8bc87f62015-09-02 16:19:05 +0200190 /* continue after the last returned value */
191 next = last->next;
Radek Krejci7f40ce32015-08-12 20:38:46 +0200192 }
193
194repeat:
Michal Vasko7c386e72015-10-07 15:13:33 +0200195 while (next && (next->nodetype == LYS_GROUPING)) {
Michal Vaskob6eedf02015-10-22 16:07:03 +0200196 if (options & LYS_GETNEXT_WITHGROUPING) {
197 return next;
198 }
Radek Krejci14a11a62015-08-17 17:27:38 +0200199 next = next->next;
Radek Krejci7f40ce32015-08-12 20:38:46 +0200200 }
201
Radek Krejcic4ccbd92016-01-07 13:13:33 +0100202 if (!next) {
Radek Krejci63318e82016-02-12 09:43:12 +0100203 if (!last || lys_parent(last) == parent) {
Radek Krejci7f40ce32015-08-12 20:38:46 +0200204 /* no next element */
205 return NULL;
206 }
Michal Vasko7c386e72015-10-07 15:13:33 +0200207 last = lys_parent(last);
Radek Krejci8bc87f62015-09-02 16:19:05 +0200208 next = last->next;
Radek Krejci7f40ce32015-08-12 20:38:46 +0200209 goto repeat;
210 }
211
212 switch (next->nodetype) {
Michal Vaskob6eedf02015-10-22 16:07:03 +0200213 case LYS_INPUT:
214 case LYS_OUTPUT:
215 if (options & LYS_GETNEXT_WITHINOUT) {
216 return next;
217 } else {
218 next = next->child;
219 goto repeat;
220 }
221 break;
222
Michal Vaskoa5835e92015-10-20 15:07:39 +0200223 case LYS_CASE:
Michal Vasko1dca6882015-10-22 14:29:42 +0200224 if (options & LYS_GETNEXT_WITHCASE) {
225 return next;
Michal Vaskob6eedf02015-10-22 16:07:03 +0200226 } else {
227 next = next->child;
228 goto repeat;
Michal Vasko1dca6882015-10-22 14:29:42 +0200229 }
Michal Vaskob6eedf02015-10-22 16:07:03 +0200230 break;
231
Michal Vasko1dca6882015-10-22 14:29:42 +0200232 case LYS_USES:
Radek Krejci7f40ce32015-08-12 20:38:46 +0200233 /* go into */
234 next = next->child;
235 goto repeat;
Radek Krejci8bc87f62015-09-02 16:19:05 +0200236
Radek Krejcidfcae7d2015-10-20 17:13:01 +0200237 case LYS_RPC:
Michal Vaskob1b19442016-07-13 12:26:01 +0200238 case LYS_ACTION:
Radek Krejcidfcae7d2015-10-20 17:13:01 +0200239 case LYS_NOTIF:
Radek Krejci8bc87f62015-09-02 16:19:05 +0200240 case LYS_CONTAINER:
Radek Krejci7f40ce32015-08-12 20:38:46 +0200241 case LYS_LEAF:
Radek Krejci7f40ce32015-08-12 20:38:46 +0200242 case LYS_ANYXML:
Radek Krejci14a11a62015-08-17 17:27:38 +0200243 case LYS_LIST:
244 case LYS_LEAFLIST:
Radek Krejci7f40ce32015-08-12 20:38:46 +0200245 return next;
Radek Krejci8bc87f62015-09-02 16:19:05 +0200246
247 case LYS_CHOICE:
248 if (options & LYS_GETNEXT_WITHCHOICE) {
249 return next;
250 } else {
251 /* go into */
252 next = next->child;
253 goto repeat;
254 }
255 break;
256
Radek Krejci7f40ce32015-08-12 20:38:46 +0200257 default:
258 /* we should not be here */
259 return NULL;
260 }
Radek Krejci8bc87f62015-09-02 16:19:05 +0200261
262
263}
264
Michal Vasko1e62a092015-12-01 12:27:20 +0100265static const struct lys_node *
Radek Krejci2342cf62016-01-29 16:48:23 +0100266check_mand_getnext(const struct lys_node *last, const struct lys_node *parent, const struct lys_module *module)
Radek Krejci8bc87f62015-09-02 16:19:05 +0200267{
Michal Vasko1e62a092015-12-01 12:27:20 +0100268 const struct lys_node *next;
269
Radek Krejci2342cf62016-01-29 16:48:23 +0100270 next = lys_getnext(last, parent, module, LYS_GETNEXT_WITHCHOICE);
Radek Krejci8bc87f62015-09-02 16:19:05 +0200271
Radek Krejci4b6c2112015-10-06 12:48:34 +0200272repeat:
Radek Krejci8bc87f62015-09-02 16:19:05 +0200273 if (next && next->nodetype == LYS_CONTAINER) {
274 if (((struct lys_node_container *)next)->presence) {
275 /* mandatory elements under the non-existing presence
276 * container are not mandatory - 7.6.5, rule 1 */
277 next = next->next;
278 } else {
279 /* go into */
280 next = next->child;
281 }
282 goto repeat;
283 }
284
285 return next;
Radek Krejci7f40ce32015-08-12 20:38:46 +0200286}
287
Michal Vasko84f821a2016-04-11 11:03:42 +0200288static int
Michal Vasko1e62a092015-12-01 12:27:20 +0100289check_mand_check(const struct lys_node *node, const struct lys_node *stop, const struct lyd_node *data)
Radek Krejci7f40ce32015-08-12 20:38:46 +0200290{
Radek Krejci7531aa22016-04-12 13:52:19 +0200291 const struct lys_node *siter = NULL, *missing_parent = NULL;
Radek Krejci96e20852016-04-11 17:51:26 +0200292 struct lys_node *parent = NULL;
Radek Krejci7531aa22016-04-12 13:52:19 +0200293 const struct lyd_node *diter = NULL;
Radek Krejcidc154432016-01-21 11:10:59 +0100294 struct ly_set *set = NULL;
Michal Vaskof610fd42016-04-19 10:38:20 +0200295 unsigned int i, toplevel = (stop && stop->nodetype != LYS_OUTPUT) ? 0 : 1;
Michal Vasko84f821a2016-04-11 11:03:42 +0200296 uint32_t minmax, min, max;
Radek Krejci7f40ce32015-08-12 20:38:46 +0200297
Radek Krejci7531aa22016-04-12 13:52:19 +0200298 if (data) {
299 /* go to the correct data level */
300 for (parent = lys_parent(node); parent && parent != stop; parent = lys_parent(parent)) {
301 /* 7.6.5, rule 1 (presence container), checking presence
302 * is not needed since it is done in check_mand_getnext()
303 */
304
305 if (parent->nodetype != LYS_CONTAINER) {
306 /* not interested in LYS_USES, LYS_CASE or LYS_CHOICE,
307 * because they are not instantiated in data tree */
308 continue;
309 }
310 /* add the parent to the list for searching in data tree */
311 if (!set) {
312 set = ly_set_new();
313 }
314 /* ignore return - memory error is logged and we will
315 * check at least the rest of nodes we have */
Radek Krejci09891a22016-06-10 10:59:22 +0200316 (void)ly_set_add(set, parent, LY_SET_OPT_USEASLIST);
Radek Krejci7531aa22016-04-12 13:52:19 +0200317 }
318 if (set) {
319 for (i = set->number; i > 0; ) {
320 i--;
321 LY_TREE_FOR(toplevel ? data : data->child, diter) {
322 if (diter->schema == set->set.s[i]) {
323 break;
324 }
325 }
326 if (!diter) {
327 /* instance not found */
328 missing_parent = set->set.s[i];
329 break;
330 }
331 data = diter;
332 toplevel = 0;
333 if (data->validity == LYD_VAL_OK) {
334 /* already checked */
335 ly_set_free(set);
336 return EXIT_SUCCESS;
337 }
338 }
339 ly_set_free(set);
340 }
341 } else {
342 missing_parent = node;
343 }
344
Radek Krejci7f40ce32015-08-12 20:38:46 +0200345 if (node->flags & LYS_MAND_TRUE) {
Radek Krejci7531aa22016-04-12 13:52:19 +0200346 if (missing_parent) {
Michal Vaskob68d4b42016-05-20 11:44:45 +0200347 LOGVAL(LYE_MISSELEM, LY_VLOG_LYD, toplevel ? NULL : data, node->name,
Radek Krejci29ac4f92016-04-12 15:05:53 +0200348 (lys_parent(node) ? lys_parent(node)->name : lys_node_module(node)->name));
Michal Vasko84f821a2016-04-11 11:03:42 +0200349 return EXIT_FAILURE;
Radek Krejci2342cf62016-01-29 16:48:23 +0100350 }
Radek Krejci7531aa22016-04-12 13:52:19 +0200351
Radek Krejci2342cf62016-01-29 16:48:23 +0100352 switch (node->nodetype) {
353 case LYS_LEAF:
354 case LYS_ANYXML:
355 case LYS_CHOICE:
Michal Vasko84f821a2016-04-11 11:03:42 +0200356 if (lys_parent(node) && lys_parent(node)->nodetype == LYS_CASE) {
Radek Krejci2342cf62016-01-29 16:48:23 +0100357 /* 7.6.5, rule 2 */
358 /* 7.9.4, rule 1 */
Radek Krejci7531aa22016-04-12 13:52:19 +0200359
360 /* try to find the node's siblings in data */
361 LY_TREE_FOR(toplevel ? data : data->child, diter) {
362 LY_TREE_FOR(lys_parent(node)->child, siter) {
363 if (siter == diter->schema) {
364 /* some sibling exists, rule applies */
Radek Krejci2342cf62016-01-29 16:48:23 +0100365 break;
366 }
367 }
Radek Krejci7531aa22016-04-12 13:52:19 +0200368 if (siter) {
369 break;
370 }
Radek Krejci2342cf62016-01-29 16:48:23 +0100371 }
372 if (!siter) {
373 /* no sibling exists */
Michal Vasko84f821a2016-04-11 11:03:42 +0200374 return EXIT_SUCCESS;
Radek Krejci2342cf62016-01-29 16:48:23 +0100375 }
Radek Krejci2342cf62016-01-29 16:48:23 +0100376 }
Radek Krejci50c5b0e2015-08-21 15:43:45 +0200377
Radek Krejci96e20852016-04-11 17:51:26 +0200378 if (node->nodetype == LYS_CHOICE) {
379 siter = NULL;
Radek Krejci7531aa22016-04-12 13:52:19 +0200380 LY_TREE_FOR(toplevel ? data : data->child, diter) {
Radek Krejci96e20852016-04-11 17:51:26 +0200381 while ((siter = lys_getnext(siter, node, NULL, 0))) {
382 if (diter->schema == siter) {
383 return EXIT_SUCCESS;
384 }
385 }
386 }
387 } else {
Radek Krejci7531aa22016-04-12 13:52:19 +0200388 LY_TREE_FOR(toplevel ? data : data->child, diter) {
Radek Krejci96e20852016-04-11 17:51:26 +0200389 if (diter->schema == node) {
390 return EXIT_SUCCESS;
391 }
Radek Krejci2342cf62016-01-29 16:48:23 +0100392 }
393 }
Radek Krejci50c5b0e2015-08-21 15:43:45 +0200394
Radek Krejci2342cf62016-01-29 16:48:23 +0100395 /* instance not found */
396 /* 7.6.5, rule 3 (or 2) */
397 /* 7.9.4, rule 2 */
Michal Vasko84f821a2016-04-11 11:03:42 +0200398 if (node->nodetype == LYS_CHOICE) {
Radek Krejci29ac4f92016-04-12 15:05:53 +0200399 LOGVAL(LYE_NOMANDCHOICE, LY_VLOG_LYD, toplevel ? NULL : data, node->name);
Michal Vasko84f821a2016-04-11 11:03:42 +0200400 } else {
Radek Krejci29ac4f92016-04-12 15:05:53 +0200401 LOGVAL(LYE_MISSELEM, LY_VLOG_LYD, toplevel ? NULL : data, node->name,
Michal Vasko84f821a2016-04-11 11:03:42 +0200402 (lys_parent(node) ? lys_parent(node)->name : lys_node_module(node)->name));
403 }
Radek Krejci7531aa22016-04-12 13:52:19 +0200404 break;
Radek Krejci2342cf62016-01-29 16:48:23 +0100405 default:
406 /* error */
Radek Krejci7531aa22016-04-12 13:52:19 +0200407 LOGINT;
Radek Krejci2342cf62016-01-29 16:48:23 +0100408 break;
409 }
Radek Krejci7531aa22016-04-12 13:52:19 +0200410 return EXIT_FAILURE;
411
Radek Krejci14a11a62015-08-17 17:27:38 +0200412 } else if (node->nodetype & (LYS_LIST | LYS_LEAFLIST)) {
413 /* search for number of instances */
414 minmax = 0;
Radek Krejci7531aa22016-04-12 13:52:19 +0200415 if (!missing_parent) {
416 LY_TREE_FOR(toplevel ? data : data->child, diter) {
Radek Krejci2342cf62016-01-29 16:48:23 +0100417 if (diter->schema == node) {
418 minmax++;
Michal Vasko05ed8422016-04-12 11:38:24 +0200419 /* remember the last instance, we will use it in the log message */
420 data = diter;
Radek Krejci2342cf62016-01-29 16:48:23 +0100421 }
Radek Krejci14a11a62015-08-17 17:27:38 +0200422 }
423 }
424
425 /* check the specified constraints */
426 if (node->nodetype == LYS_LIST) {
Michal Vasko84f821a2016-04-11 11:03:42 +0200427 min = ((struct lys_node_list *)node)->min;
428 max = ((struct lys_node_list *)node)->max;
429 } else {
430 min = ((struct lys_node_leaflist *)node)->min;
431 max = ((struct lys_node_leaflist *)node)->max;
432 }
Radek Krejci14a11a62015-08-17 17:27:38 +0200433
Michal Vasko84f821a2016-04-11 11:03:42 +0200434 if (min && (minmax < min)) {
Radek Krejci29ac4f92016-04-12 15:05:53 +0200435 LOGVAL(LYE_NOMIN, LY_VLOG_LYD, toplevel ? NULL : data, node->name);
Michal Vasko84f821a2016-04-11 11:03:42 +0200436 return EXIT_FAILURE;
437 }
438 if (max && (minmax > max)) {
Radek Krejci8519de02016-07-25 14:54:19 +0200439 LOGVAL(LYE_NOMAX, LY_VLOG_LYD, data, node->name);
Michal Vasko84f821a2016-04-11 11:03:42 +0200440 return EXIT_FAILURE;
Radek Krejci14a11a62015-08-17 17:27:38 +0200441 }
Radek Krejci7f40ce32015-08-12 20:38:46 +0200442 }
443
Michal Vasko84f821a2016-04-11 11:03:42 +0200444 return EXIT_SUCCESS;
Radek Krejci7f40ce32015-08-12 20:38:46 +0200445}
446
Michal Vasko84f821a2016-04-11 11:03:42 +0200447int
Michal Vasko98a5a742016-05-11 11:02:56 +0200448ly_check_mandatory(const struct lyd_node *data, const struct lys_node *schema, int status, int rpc_output)
Radek Krejci7f40ce32015-08-12 20:38:46 +0200449{
Michal Vasko84f821a2016-04-11 11:03:42 +0200450 const struct lys_node *siter, *saux, *saux2, *parent = NULL, *parent2;
Radek Krejci264ae352016-07-26 15:32:55 +0200451 const struct lyd_node *diter, *datasearch;
Radek Krejci7f40ce32015-08-12 20:38:46 +0200452 int found;
453
Radek Krejci2342cf62016-01-29 16:48:23 +0100454 assert(data || schema);
455
Radek Krejci7531aa22016-04-12 13:52:19 +0200456 if (schema) {
457 /* schema is preferred regardless the data */
Radek Krejci2342cf62016-01-29 16:48:23 +0100458 siter = schema;
Radek Krejci264ae352016-07-26 15:32:55 +0200459 datasearch = data;
Radek Krejci7531aa22016-04-12 13:52:19 +0200460 } else {
461 /* !schema && data */
Radek Krejcie2f12212016-02-12 13:50:22 +0100462 schema = data->schema;
463 siter = data->schema->child;
Radek Krejci264ae352016-07-26 15:32:55 +0200464 datasearch = data->child;
Radek Krejci2342cf62016-01-29 16:48:23 +0100465 }
Radek Krejci7f40ce32015-08-12 20:38:46 +0200466
467repeat:
468 while (siter) {
Radek Krejci763122e2016-04-05 16:35:33 +0200469 if (lys_is_disabled(siter, 2) || (!status && (siter->flags & LYS_CONFIG_R))) {
Radek Krejci074bf852015-08-19 14:22:16 +0200470 siter = siter->next;
471 continue;
472 }
473
Radek Krejci7f40ce32015-08-12 20:38:46 +0200474 switch (siter->nodetype) {
475 case LYS_CONTAINER:
476 case LYS_LEAF:
477 case LYS_ANYXML:
Radek Krejci14a11a62015-08-17 17:27:38 +0200478 case LYS_LIST:
479 case LYS_LEAFLIST:
480 /* check if there is some mandatory node; first test the siter itself ... */
Michal Vasko84f821a2016-04-11 11:03:42 +0200481 if (check_mand_check(siter, lys_parent(siter), data)) {
482 return EXIT_FAILURE;
Radek Krejci7f40ce32015-08-12 20:38:46 +0200483 }
484 /* ... and then the subtree */
Radek Krejcicf82e932016-04-11 17:52:31 +0200485 if (siter->nodetype == LYS_CONTAINER && !((struct lys_node_container *)siter)->presence) {
Radek Krejci14a11a62015-08-17 17:27:38 +0200486 saux = NULL;
Radek Krejci2342cf62016-01-29 16:48:23 +0100487 while ((saux = check_mand_getnext(saux, siter, NULL))) {
Radek Krejcie8da2e02016-04-11 17:53:34 +0200488 if ((status || (saux->flags & LYS_CONFIG_W)) && check_mand_check(saux, lys_parent(siter), data)) {
Michal Vasko84f821a2016-04-11 11:03:42 +0200489 return EXIT_FAILURE;
Radek Krejci7f40ce32015-08-12 20:38:46 +0200490 }
491 }
492 }
493 siter = siter->next;
494 break;
495 case LYS_CHOICE:
Radek Krejci14a11a62015-08-17 17:27:38 +0200496 /* search for instance */
497 saux = siter;
498 siter = siter->child;
499 found = 0;
500 parent2 = NULL;
Radek Krejci7f40ce32015-08-12 20:38:46 +0200501repeat_choice:
Radek Krejci2342cf62016-01-29 16:48:23 +0100502 while (siter && data) {
Radek Krejci763122e2016-04-05 16:35:33 +0200503 if (lys_is_disabled(siter, 2) || (!status && (siter->flags & LYS_CONFIG_R))) {
Radek Krejci074bf852015-08-19 14:22:16 +0200504 siter = siter->next;
505 continue;
506 }
507
Radek Krejci14a11a62015-08-17 17:27:38 +0200508 switch (siter->nodetype) {
509 case LYS_CONTAINER:
510 case LYS_LEAF:
511 case LYS_LEAFLIST:
512 case LYS_LIST:
513 case LYS_ANYXML:
Radek Krejci264ae352016-07-26 15:32:55 +0200514 LY_TREE_FOR(datasearch, diter) {
Radek Krejci14a11a62015-08-17 17:27:38 +0200515 if (diter->schema == siter) {
Radek Krejci7f40ce32015-08-12 20:38:46 +0200516 break;
517 }
Radek Krejci14a11a62015-08-17 17:27:38 +0200518 }
519 if (diter) {
520 /* got instance */
521 /* check presence of mandatory siblings */
Radek Krejci65d0a652015-08-27 13:09:42 +0200522 if (parent2 && parent2->nodetype == LYS_CASE) {
Radek Krejci14a11a62015-08-17 17:27:38 +0200523 saux2 = NULL;
Radek Krejci2342cf62016-01-29 16:48:23 +0100524 while ((saux2 = check_mand_getnext(saux2, parent2, NULL))) {
Radek Krejci7531aa22016-04-12 13:52:19 +0200525 if (check_mand_check(saux2, lys_parent(saux), data)) {
Michal Vasko84f821a2016-04-11 11:03:42 +0200526 return EXIT_FAILURE;
Radek Krejci14a11a62015-08-17 17:27:38 +0200527 }
528 }
529 }
530 siter = parent2 = NULL;
531 found = 1;
Radek Krejci7f40ce32015-08-12 20:38:46 +0200532 break;
533 }
Radek Krejci14a11a62015-08-17 17:27:38 +0200534 siter = siter->next;
535 break;
536 case LYS_CASE:
537 case LYS_CHOICE:
538 case LYS_USES:
539 /* go into */
Radek Krejci37bda002015-08-27 11:23:56 +0200540 if (!parent2) {
541 parent2 = siter;
542 }
Radek Krejci14a11a62015-08-17 17:27:38 +0200543 siter = siter->child;
544 break;
545 case LYS_AUGMENT:
546 case LYS_GROUPING:
547 /* skip */
548 siter = siter->next;
549 break;
550 default:
551 /* error */
552 break;
Radek Krejci7f40ce32015-08-12 20:38:46 +0200553 }
Radek Krejci7f40ce32015-08-12 20:38:46 +0200554 }
555
Radek Krejci14a11a62015-08-17 17:27:38 +0200556 if (parent2) {
557 siter = parent2->next;
Michal Vasko84f821a2016-04-11 11:03:42 +0200558 if (lys_parent(parent2) == saux) {
Radek Krejci14a11a62015-08-17 17:27:38 +0200559 parent2 = NULL;
560 } else {
Michal Vasko84f821a2016-04-11 11:03:42 +0200561 parent2 = lys_parent(parent2);
Radek Krejci14a11a62015-08-17 17:27:38 +0200562 }
563 goto repeat_choice;
564 }
565
Radek Krejci074bf852015-08-19 14:22:16 +0200566 if (!found && (saux->flags & LYS_MAND_TRUE)) {
Radek Krejci7531aa22016-04-12 13:52:19 +0200567 LOGVAL(LYE_MISSELEM, LY_VLOG_LYD, data, saux->name,
568 (lys_parent(saux) ? lys_parent(saux)->name : lys_node_module(saux)->name));
Michal Vasko84f821a2016-04-11 11:03:42 +0200569 return EXIT_FAILURE;
Radek Krejci14a11a62015-08-17 17:27:38 +0200570 }
571
572 /* go to next */
573 siter = saux->next;
574
Radek Krejci7f40ce32015-08-12 20:38:46 +0200575 break;
Michal Vasko98a5a742016-05-11 11:02:56 +0200576 case LYS_INPUT:
577 if (rpc_output) {
578 /* skip */
579 siter = siter->next;
580 break;
581 }
582 /* fallthrough */
583 case LYS_OUTPUT:
Michal Vasko880f67d2016-06-01 16:12:18 +0200584 if ((siter->nodetype == LYS_OUTPUT) && !rpc_output) {
Michal Vasko98a5a742016-05-11 11:02:56 +0200585 /* skip */
586 siter = siter->next;
587 break;
588 }
589 /* fallthrough */
Radek Krejci7f40ce32015-08-12 20:38:46 +0200590 case LYS_USES:
591 case LYS_CASE:
592 /* go into */
593 parent = siter;
594 siter = siter->child;
595 break;
596 default:
597 /* can ignore, go to next */
598 siter = siter->next;
599 break;
600 }
601 }
602
603 if (parent) {
604 siter = parent->next;
Michal Vasko9eb6dd02016-05-02 14:52:40 +0200605 if (lys_parent(parent) == schema) {
Radek Krejci7f40ce32015-08-12 20:38:46 +0200606 parent = NULL;
607 } else {
Michal Vasko84f821a2016-04-11 11:03:42 +0200608 parent = lys_parent(parent);
Radek Krejci7f40ce32015-08-12 20:38:46 +0200609 }
610 goto repeat;
611 }
612
Michal Vasko84f821a2016-04-11 11:03:42 +0200613 return EXIT_SUCCESS;
Radek Krejci7f40ce32015-08-12 20:38:46 +0200614}
615
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200616void
Radek Krejci1d82ef62015-08-07 14:44:40 +0200617lys_node_unlink(struct lys_node *node)
Radek Krejcida04f4a2015-05-21 12:54:09 +0200618{
Radek Krejci76512572015-08-04 09:47:08 +0200619 struct lys_node *parent, *first;
Radek Krejcic071c542016-01-27 14:57:51 +0100620 struct lys_module *main_module;
Radek Krejcida04f4a2015-05-21 12:54:09 +0200621
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200622 if (!node) {
623 return;
624 }
Radek Krejcida04f4a2015-05-21 12:54:09 +0200625
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200626 /* unlink from data model if necessary */
627 if (node->module) {
Radek Krejcic071c542016-01-27 14:57:51 +0100628 /* get main module with data tree */
Michal Vasko4f0dad02016-02-15 14:08:23 +0100629 main_module = lys_node_module(node);
Radek Krejcic071c542016-01-27 14:57:51 +0100630 if (main_module->data == node) {
631 main_module->data = node->next;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200632 }
633 }
Radek Krejcida04f4a2015-05-21 12:54:09 +0200634
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200635 /* store pointers to important nodes */
636 parent = node->parent;
Michal Vasko3a9943b2015-09-23 11:33:50 +0200637 if (parent && (parent->nodetype == LYS_AUGMENT)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200638 /* handle augments - first, unlink it from the augment parent ... */
639 if (parent->child == node) {
640 parent->child = node->next;
641 }
642 /* and then continue with the target parent */
Radek Krejci76512572015-08-04 09:47:08 +0200643 parent = ((struct lys_node_augment *)parent)->target;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200644 }
Radek Krejcida04f4a2015-05-21 12:54:09 +0200645
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200646 /* unlink from parent */
647 if (parent) {
648 if (parent->child == node) {
649 parent->child = node->next;
650 }
651 node->parent = NULL;
652 }
Radek Krejcida04f4a2015-05-21 12:54:09 +0200653
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200654 /* unlink from siblings */
655 if (node->prev == node) {
656 /* there are no more siblings */
657 return;
658 }
659 if (node->next) {
660 node->next->prev = node->prev;
661 } else {
662 /* unlinking the last element */
663 if (parent) {
664 first = parent->child;
665 } else {
666 first = node;
Radek Krejci10c760e2015-08-14 14:45:43 +0200667 while (first->prev->next) {
Michal Vasko276f96b2015-09-23 11:34:28 +0200668 first = first->prev;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200669 }
670 }
671 first->prev = node->prev;
672 }
673 if (node->prev->next) {
674 node->prev->next = node->next;
675 }
Radek Krejcida04f4a2015-05-21 12:54:09 +0200676
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200677 /* clean up the unlinked element */
678 node->next = NULL;
679 node->prev = node;
Radek Krejcida04f4a2015-05-21 12:54:09 +0200680}
681
Michal Vasko563ef092015-09-04 13:17:23 +0200682struct lys_node_grp *
Radek Krejcic071c542016-01-27 14:57:51 +0100683lys_find_grouping_up(const char *name, struct lys_node *start)
Michal Vasko563ef092015-09-04 13:17:23 +0200684{
685 struct lys_node *par_iter, *iter, *stop;
Michal Vasko563ef092015-09-04 13:17:23 +0200686
687 for (par_iter = start; par_iter; par_iter = par_iter->parent) {
Michal Vaskoccbdb4e2015-10-21 15:09:02 +0200688 /* top-level augment, look into module (uses augment is handled correctly below) */
689 if (par_iter->parent && !par_iter->parent->parent && (par_iter->parent->nodetype == LYS_AUGMENT)) {
690 par_iter = par_iter->parent->module->data;
691 if (!par_iter) {
Michal Vaskoccbdb4e2015-10-21 15:09:02 +0200692 break;
693 }
694 }
695
Michal Vasko6f929da2015-10-02 16:23:25 +0200696 if (par_iter->parent && (par_iter->parent->nodetype & (LYS_CHOICE | LYS_CASE | LYS_AUGMENT | LYS_USES))) {
Michal Vasko563ef092015-09-04 13:17:23 +0200697 continue;
698 }
699
700 for (iter = par_iter, stop = NULL; iter; iter = iter->prev) {
701 if (!stop) {
702 stop = par_iter;
703 } else if (iter == stop) {
704 break;
705 }
706 if (iter->nodetype != LYS_GROUPING) {
707 continue;
708 }
709
Radek Krejcif8426a72015-10-31 23:14:03 +0100710 if (!strcmp(name, iter->name)) {
Michal Vasko563ef092015-09-04 13:17:23 +0200711 return (struct lys_node_grp *)iter;
712 }
713 }
714 }
715
Michal Vasko563ef092015-09-04 13:17:23 +0200716 return NULL;
717}
718
Radek Krejci10c760e2015-08-14 14:45:43 +0200719/*
720 * get next grouping in the root's subtree, in the
721 * first call, tha last is NULL
722 */
723static struct lys_node_grp *
Michal Vasko563ef092015-09-04 13:17:23 +0200724lys_get_next_grouping(struct lys_node_grp *lastgrp, struct lys_node *root)
Radek Krejcida04f4a2015-05-21 12:54:09 +0200725{
Radek Krejci10c760e2015-08-14 14:45:43 +0200726 struct lys_node *last = (struct lys_node *)lastgrp;
727 struct lys_node *next;
Radek Krejcida04f4a2015-05-21 12:54:09 +0200728
Radek Krejci10c760e2015-08-14 14:45:43 +0200729 assert(root);
730
731 if (!last) {
732 last = root;
733 }
734
735 while (1) {
736 if ((last->nodetype & (LYS_CONTAINER | LYS_CHOICE | LYS_LIST | LYS_GROUPING | LYS_INPUT | LYS_OUTPUT))) {
737 next = last->child;
738 } else {
739 next = NULL;
740 }
741 if (!next) {
742 if (last == root) {
743 /* we are done */
744 return NULL;
745 }
746
747 /* no children, go to siblings */
748 next = last->next;
749 }
750 while (!next) {
751 /* go back through parents */
Radek Krejcic071c542016-01-27 14:57:51 +0100752 if (lys_parent(last) == root) {
Radek Krejci10c760e2015-08-14 14:45:43 +0200753 /* we are done */
754 return NULL;
755 }
Radek Krejci10c760e2015-08-14 14:45:43 +0200756 next = last->next;
Radek Krejcic071c542016-01-27 14:57:51 +0100757 last = lys_parent(last);
Radek Krejci10c760e2015-08-14 14:45:43 +0200758 }
759
760 if (next->nodetype == LYS_GROUPING) {
761 return (struct lys_node_grp *)next;
762 }
763
764 last = next;
765 }
766}
767
Michal Vasko0d343d12015-08-24 14:57:36 +0200768/* logs directly */
Radek Krejci10c760e2015-08-14 14:45:43 +0200769int
Radek Krejci07911992015-08-14 15:13:31 +0200770lys_check_id(struct lys_node *node, struct lys_node *parent, struct lys_module *module)
771{
Michal Vasko563ef092015-09-04 13:17:23 +0200772 struct lys_node *start, *stop, *iter;
Radek Krejci07911992015-08-14 15:13:31 +0200773 struct lys_node_grp *grp;
774 int down;
775
776 assert(node);
777
778 if (!parent) {
779 assert(module);
780 } else {
781 module = parent->module;
782 }
783
784 switch (node->nodetype) {
785 case LYS_GROUPING:
786 /* 6.2.1, rule 6 */
787 if (parent) {
788 if (parent->child) {
789 down = 1;
790 start = parent->child;
791 } else {
792 down = 0;
793 start = parent;
794 }
795 } else {
796 down = 1;
797 start = module->data;
798 }
799 /* go up */
Radek Krejcic071c542016-01-27 14:57:51 +0100800 if (lys_find_grouping_up(node->name, start)) {
Radek Krejci48464ed2016-03-17 15:44:09 +0100801 LOGVAL(LYE_DUPID, LY_VLOG_LYS, node, "grouping", node->name);
Michal Vasko563ef092015-09-04 13:17:23 +0200802 return EXIT_FAILURE;
Radek Krejci07911992015-08-14 15:13:31 +0200803 }
804 /* go down, because grouping can be defined after e.g. container in which is collision */
805 if (down) {
806 for (iter = start, stop = NULL; iter; iter = iter->prev) {
807 if (!stop) {
808 stop = start;
809 } else if (iter == stop) {
810 break;
811 }
812 if (!(iter->nodetype & (LYS_CONTAINER | LYS_CHOICE | LYS_LIST | LYS_GROUPING | LYS_INPUT | LYS_OUTPUT))) {
813 continue;
814 }
815
816 grp = NULL;
817 while ((grp = lys_get_next_grouping(grp, iter))) {
Radek Krejci749190d2016-02-18 16:26:25 +0100818 if (ly_strequal(node->name, grp->name, 1)) {
Radek Krejci48464ed2016-03-17 15:44:09 +0100819 LOGVAL(LYE_DUPID,LY_VLOG_LYS, node, "grouping", node->name);
Radek Krejci07911992015-08-14 15:13:31 +0200820 return EXIT_FAILURE;
821 }
822 }
823 }
824 }
825 break;
826 case LYS_LEAF:
827 case LYS_LEAFLIST:
828 case LYS_LIST:
829 case LYS_CONTAINER:
830 case LYS_CHOICE:
831 case LYS_ANYXML:
832 /* 6.2.1, rule 7 */
833 if (parent) {
834 iter = parent;
Michal Vasko2afc1ca2016-05-03 11:38:53 +0200835 while (iter && (iter->nodetype & (LYS_USES | LYS_CASE | LYS_CHOICE | LYS_AUGMENT))) {
836 if (iter->nodetype == LYS_AUGMENT) {
837 if (((struct lys_node_augment *)iter)->target) {
838 /* augment is resolved, go up */
839 iter = ((struct lys_node_augment *)iter)->target;
840 continue;
841 }
842 /* augment is not resolved, this is the final parent */
843 break;
844 }
Radek Krejci07911992015-08-14 15:13:31 +0200845 iter = iter->parent;
846 }
Michal Vasko2afc1ca2016-05-03 11:38:53 +0200847
Radek Krejci07911992015-08-14 15:13:31 +0200848 if (!iter) {
849 stop = NULL;
850 iter = module->data;
851 } else {
852 stop = iter;
853 iter = iter->child;
854 }
855 } else {
856 stop = NULL;
857 iter = module->data;
858 }
859 while (iter) {
860 if (iter->nodetype & (LYS_USES | LYS_CASE)) {
861 iter = iter->child;
862 continue;
863 }
864
865 if (iter->nodetype & (LYS_LEAF | LYS_LEAFLIST | LYS_LIST | LYS_CONTAINER | LYS_CHOICE | LYS_ANYXML)) {
Radek Krejci749190d2016-02-18 16:26:25 +0100866 if (iter->module == node->module && ly_strequal(iter->name, node->name, 1)) {
Radek Krejci48464ed2016-03-17 15:44:09 +0100867 LOGVAL(LYE_DUPID, LY_VLOG_LYS, node, strnodetype(node->nodetype), node->name);
Radek Krejci07911992015-08-14 15:13:31 +0200868 return EXIT_FAILURE;
869 }
870 }
871
872 /* special case for choice - we must check the choice's name as
873 * well as the names of nodes under the choice
874 */
875 if (iter->nodetype == LYS_CHOICE) {
876 iter = iter->child;
877 continue;
878 }
879
880 /* go to siblings */
881 if (!iter->next) {
882 /* no sibling, go to parent's sibling */
883 do {
Michal Vasko2afc1ca2016-05-03 11:38:53 +0200884 /* for parent LYS_AUGMENT */
885 if (iter->parent == stop) {
886 iter = stop;
887 break;
888 }
889 iter = lys_parent(iter);
Radek Krejci07911992015-08-14 15:13:31 +0200890 if (iter && iter->next) {
891 break;
892 }
893 } while (iter != stop);
894
895 if (iter == stop) {
896 break;
897 }
898 }
899 iter = iter->next;
900 }
901 break;
902 case LYS_CASE:
903 /* 6.2.1, rule 8 */
Radek Krejcic071c542016-01-27 14:57:51 +0100904 if (parent) {
905 start = parent->child;
906 } else {
907 start = module->data;
908 }
909
910 LY_TREE_FOR(start, iter) {
Radek Krejci07911992015-08-14 15:13:31 +0200911 if (!(iter->nodetype & (LYS_ANYXML | LYS_CASE | LYS_CONTAINER | LYS_LEAF | LYS_LEAFLIST | LYS_LIST))) {
912 continue;
913 }
914
Radek Krejci749190d2016-02-18 16:26:25 +0100915 if (iter->module == node->module && ly_strequal(iter->name, node->name, 1)) {
Radek Krejci48464ed2016-03-17 15:44:09 +0100916 LOGVAL(LYE_DUPID, LY_VLOG_LYS, node, "case", node->name);
Radek Krejci07911992015-08-14 15:13:31 +0200917 return EXIT_FAILURE;
918 }
919 }
920 break;
921 default:
922 /* no check needed */
923 break;
924 }
925
926 return EXIT_SUCCESS;
927}
928
Michal Vasko0d343d12015-08-24 14:57:36 +0200929/* logs directly */
Radek Krejci07911992015-08-14 15:13:31 +0200930int
Radek Krejci10c760e2015-08-14 14:45:43 +0200931lys_node_addchild(struct lys_node *parent, struct lys_module *module, struct lys_node *child)
932{
Radek Krejci92720552015-10-05 15:28:27 +0200933 struct lys_node *iter;
Radek Krejci07911992015-08-14 15:13:31 +0200934 int type;
Radek Krejci10c760e2015-08-14 14:45:43 +0200935
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200936 assert(child);
Radek Krejcida04f4a2015-05-21 12:54:09 +0200937
Radek Krejci10c760e2015-08-14 14:45:43 +0200938 if (parent) {
939 type = parent->nodetype;
940 module = parent->module;
941 } else {
942 assert(module);
943 type = 0;
Radek Krejci10c760e2015-08-14 14:45:43 +0200944 }
945
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200946 /* checks */
Radek Krejci10c760e2015-08-14 14:45:43 +0200947 switch (type) {
Radek Krejci76512572015-08-04 09:47:08 +0200948 case LYS_CONTAINER:
949 case LYS_LIST:
950 case LYS_GROUPING:
Michal Vaskoca7cbc42016-07-01 11:36:53 +0200951 if (!(child->nodetype &
952 (LYS_ANYXML | LYS_CHOICE | LYS_CONTAINER | LYS_GROUPING | LYS_LEAF |
953 LYS_LEAFLIST | LYS_LIST | LYS_USES | LYS_ACTION))) {
954 LOGVAL(LYE_INCHILDSTMT, LY_VLOG_LYS, parent, strnodetype(child->nodetype), strnodetype(parent->nodetype));
955 return EXIT_FAILURE;
956 }
957 break;
Radek Krejci76512572015-08-04 09:47:08 +0200958 case LYS_USES:
959 case LYS_INPUT:
960 case LYS_OUTPUT:
961 case LYS_NOTIF:
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200962 if (!(child->nodetype &
Radek Krejci76512572015-08-04 09:47:08 +0200963 (LYS_ANYXML | LYS_CHOICE | LYS_CONTAINER | LYS_GROUPING | LYS_LEAF |
964 LYS_LEAFLIST | LYS_LIST | LYS_USES))) {
Radek Krejci48464ed2016-03-17 15:44:09 +0100965 LOGVAL(LYE_INCHILDSTMT, LY_VLOG_LYS, parent, strnodetype(child->nodetype), strnodetype(parent->nodetype));
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200966 return EXIT_FAILURE;
967 }
968 break;
Radek Krejci76512572015-08-04 09:47:08 +0200969 case LYS_CHOICE:
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200970 if (!(child->nodetype &
Radek Krejci76512572015-08-04 09:47:08 +0200971 (LYS_ANYXML | LYS_CASE | LYS_CONTAINER | LYS_LEAF | LYS_LEAFLIST | LYS_LIST))) {
Radek Krejci48464ed2016-03-17 15:44:09 +0100972 LOGVAL(LYE_INCHILDSTMT, LY_VLOG_LYS, parent, strnodetype(child->nodetype), "choice");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200973 return EXIT_FAILURE;
974 }
975 break;
Radek Krejci76512572015-08-04 09:47:08 +0200976 case LYS_CASE:
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200977 if (!(child->nodetype &
Radek Krejci76512572015-08-04 09:47:08 +0200978 (LYS_ANYXML | LYS_CHOICE | LYS_CONTAINER | LYS_LEAF | LYS_LEAFLIST | LYS_LIST | LYS_USES))) {
Radek Krejci48464ed2016-03-17 15:44:09 +0100979 LOGVAL(LYE_INCHILDSTMT, LY_VLOG_LYS, parent, strnodetype(child->nodetype), "case");
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200980 return EXIT_FAILURE;
981 }
982 break;
Radek Krejci76512572015-08-04 09:47:08 +0200983 case LYS_RPC:
Michal Vaskoca7cbc42016-07-01 11:36:53 +0200984 case LYS_ACTION:
Radek Krejci76512572015-08-04 09:47:08 +0200985 if (!(child->nodetype & (LYS_INPUT | LYS_OUTPUT | LYS_GROUPING))) {
Radek Krejci48464ed2016-03-17 15:44:09 +0100986 LOGVAL(LYE_INCHILDSTMT, LY_VLOG_LYS, parent, strnodetype(child->nodetype), "rpc");
Michal Vasko38d01f72015-06-15 09:41:06 +0200987 return EXIT_FAILURE;
988 }
989 break;
Radek Krejci76512572015-08-04 09:47:08 +0200990 case LYS_LEAF:
991 case LYS_LEAFLIST:
992 case LYS_ANYXML:
Radek Krejci48464ed2016-03-17 15:44:09 +0100993 LOGVAL(LYE_INCHILDSTMT, LY_VLOG_LYS, parent, strnodetype(child->nodetype), strnodetype(parent->nodetype));
994 LOGVAL(LYE_SPEC, LY_VLOG_LYS, NULL, "The \"%s\" statement cannot have any data substatement.",
Michal Vasko6ea3e362016-03-11 10:25:36 +0100995 strnodetype(parent->nodetype));
Radek Krejci6e4ffbb2015-06-16 10:34:41 +0200996 return EXIT_FAILURE;
Radek Krejci76512572015-08-04 09:47:08 +0200997 case LYS_AUGMENT:
Michal Vaskoc3d9f8c2015-07-31 14:37:24 +0200998 if (!(child->nodetype &
Radek Krejci76512572015-08-04 09:47:08 +0200999 (LYS_ANYXML | LYS_CASE | LYS_CHOICE | LYS_CONTAINER | LYS_LEAF
Michal Vaskoca7cbc42016-07-01 11:36:53 +02001000 | LYS_LEAFLIST | LYS_LIST | LYS_USES | LYS_ACTION))) {
Radek Krejci48464ed2016-03-17 15:44:09 +01001001 LOGVAL(LYE_INCHILDSTMT, LY_VLOG_LYS, parent, strnodetype(child->nodetype), strnodetype(parent->nodetype));
Michal Vaskoc3d9f8c2015-07-31 14:37:24 +02001002 return EXIT_FAILURE;
1003 }
Michal Vasko591e0b22015-08-13 13:53:43 +02001004 break;
1005 case LYS_UNKNOWN:
Radek Krejci10c760e2015-08-14 14:45:43 +02001006 /* top level */
1007 if (!(child->nodetype &
1008 (LYS_ANYXML | LYS_CHOICE | LYS_CONTAINER | LYS_LEAF | LYS_GROUPING
1009 | LYS_LEAFLIST | LYS_LIST | LYS_USES | LYS_RPC | LYS_NOTIF | LYS_AUGMENT))) {
Radek Krejci48464ed2016-03-17 15:44:09 +01001010 LOGVAL(LYE_INCHILDSTMT, LY_VLOG_LYS, parent, strnodetype(child->nodetype), "(sub)module");
Radek Krejci10c760e2015-08-14 14:45:43 +02001011 return EXIT_FAILURE;
1012 }
1013
Radek Krejcic071c542016-01-27 14:57:51 +01001014 break;
Radek Krejci10c760e2015-08-14 14:45:43 +02001015 }
1016
1017 /* check identifier uniqueness */
Radek Krejci07911992015-08-14 15:13:31 +02001018 if (lys_check_id(child, parent, module)) {
1019 return EXIT_FAILURE;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001020 }
Radek Krejcib7155b52015-06-10 17:03:01 +02001021
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001022 if (child->parent) {
Radek Krejci1d82ef62015-08-07 14:44:40 +02001023 lys_node_unlink(child);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001024 }
Radek Krejcida04f4a2015-05-21 12:54:09 +02001025
Radek Krejci10c760e2015-08-14 14:45:43 +02001026 if (!parent) {
Radek Krejci92720552015-10-05 15:28:27 +02001027 if (module->data) {
1028 module->data->prev->next = child;
1029 child->prev = module->data->prev;
1030 module->data->prev = child;
Radek Krejci10c760e2015-08-14 14:45:43 +02001031 } else {
Radek Krejci92720552015-10-05 15:28:27 +02001032 module->data = child;
Radek Krejci10c760e2015-08-14 14:45:43 +02001033 }
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001034 } else {
Radek Krejci10c760e2015-08-14 14:45:43 +02001035 if (!parent->child) {
1036 /* the only/first child of the parent */
1037 parent->child = child;
1038 child->parent = parent;
1039 iter = child;
1040 } else {
1041 /* add a new child at the end of parent's child list */
1042 iter = parent->child->prev;
1043 iter->next = child;
1044 child->prev = iter;
1045 }
1046 while (iter->next) {
1047 iter = iter->next;
1048 iter->parent = parent;
1049 }
1050 parent->child->prev = iter;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001051 }
Radek Krejcida04f4a2015-05-21 12:54:09 +02001052
Radek Krejci41771502016-04-14 17:52:32 +02001053 /* propagate information about status data presence */
1054 if ((child->nodetype & (LYS_CONTAINER | LYS_CHOICE | LYS_LEAF | LYS_LEAFLIST | LYS_LIST | LYS_ANYXML)) &&
1055 (child->flags & LYS_INCL_STATUS)) {
Michal Vaskodcf98e62016-05-05 17:53:53 +02001056 for(iter = parent; iter; iter = lys_parent(iter)) {
Radek Krejci41771502016-04-14 17:52:32 +02001057 /* store it only into container or list - the only data inner nodes */
1058 if (iter->nodetype & (LYS_CONTAINER | LYS_LIST)) {
1059 if (iter->flags & LYS_INCL_STATUS) {
1060 /* done, someone else set it already from here */
1061 break;
1062 }
1063 /* set flag about including status data */
1064 iter->flags |= LYS_INCL_STATUS;
1065 }
1066 }
1067 }
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001068 return EXIT_SUCCESS;
Radek Krejcida04f4a2015-05-21 12:54:09 +02001069}
1070
Radek Krejcia1df1682016-04-11 14:56:59 +02001071static const struct lys_module *
1072lys_parse_mem_(struct ly_ctx *ctx, const char *data, LYS_INFORMAT format, int internal)
Radek Krejcida04f4a2015-05-21 12:54:09 +02001073{
Radek Krejcia1df1682016-04-11 14:56:59 +02001074 char *enlarged_data = NULL;
Radek Krejci0b5805d2015-08-13 09:38:02 +02001075 struct lys_module *mod = NULL;
Radek Krejcia1df1682016-04-11 14:56:59 +02001076 unsigned int len;
Michal Vaskoc3d9f8c2015-07-31 14:37:24 +02001077
Radek Krejcif347abc2016-06-22 10:18:47 +02001078 ly_errno = LY_SUCCESS;
1079
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001080 if (!ctx || !data) {
1081 LOGERR(LY_EINVAL, "%s: Invalid parameter.", __func__);
1082 return NULL;
1083 }
Radek Krejcida04f4a2015-05-21 12:54:09 +02001084
Radek Krejcia1df1682016-04-11 14:56:59 +02001085 if (!internal && format == LYS_IN_YANG) {
1086 /* enlarge data by 2 bytes for flex */
1087 len = strlen(data);
1088 enlarged_data = malloc((len + 2) * sizeof *enlarged_data);
1089 if (!enlarged_data) {
1090 LOGMEM;
1091 return NULL;
1092 }
1093 memcpy(enlarged_data, data, len);
1094 enlarged_data[len] = enlarged_data[len + 1] = '\0';
1095 data = enlarged_data;
1096 }
1097
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001098 switch (format) {
Radek Krejcia9167ef2015-08-03 11:01:11 +02001099 case LYS_IN_YIN:
Radek Krejciff4874d2016-03-07 12:30:50 +01001100 mod = yin_read_module(ctx, data, NULL, 1);
Michal Vaskoc3d9f8c2015-07-31 14:37:24 +02001101 break;
Radek Krejcia9167ef2015-08-03 11:01:11 +02001102 case LYS_IN_YANG:
Pavol Vicanf7cc2852016-03-22 23:27:35 +01001103 mod = yang_read_module(ctx, data, 0, NULL, 1);
1104 break;
Michal Vaskoc3d9f8c2015-07-31 14:37:24 +02001105 default:
Radek Krejcia1df1682016-04-11 14:56:59 +02001106 LOGERR(LY_EINVAL, "Invalid schema input format.");
Michal Vaskoc3d9f8c2015-07-31 14:37:24 +02001107 break;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001108 }
Radek Krejcida04f4a2015-05-21 12:54:09 +02001109
Radek Krejcia1df1682016-04-11 14:56:59 +02001110 free(enlarged_data);
Michal Vaskoc3d9f8c2015-07-31 14:37:24 +02001111 return mod;
Radek Krejcida04f4a2015-05-21 12:54:09 +02001112}
1113
Radek Krejcia1df1682016-04-11 14:56:59 +02001114API const struct lys_module *
1115lys_parse_mem(struct ly_ctx *ctx, const char *data, LYS_INFORMAT format)
1116{
1117 return lys_parse_mem_(ctx, data, format, 0);
1118}
1119
Michal Vasko5a721fd2016-02-16 12:16:48 +01001120struct lys_submodule *
1121lys_submodule_parse(struct lys_module *module, const char *data, LYS_INFORMAT format, struct unres_schema *unres)
Radek Krejciefaeba32015-05-27 14:30:57 +02001122{
Michal Vasko5a721fd2016-02-16 12:16:48 +01001123 struct lys_submodule *submod = NULL;
Michal Vaskoc3d9f8c2015-07-31 14:37:24 +02001124
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001125 assert(module);
1126 assert(data);
Radek Krejciefaeba32015-05-27 14:30:57 +02001127
Radek Krejcic071c542016-01-27 14:57:51 +01001128 /* get the main module */
Radek Krejcic4283442016-04-22 09:19:27 +02001129 module = lys_main_module(module);
Michal Vaskoc3d9f8c2015-07-31 14:37:24 +02001130
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001131 switch (format) {
Radek Krejcia9167ef2015-08-03 11:01:11 +02001132 case LYS_IN_YIN:
Michal Vasko5a721fd2016-02-16 12:16:48 +01001133 submod = yin_read_submodule(module, data, unres);
Michal Vaskoc3d9f8c2015-07-31 14:37:24 +02001134 break;
Radek Krejcia9167ef2015-08-03 11:01:11 +02001135 case LYS_IN_YANG:
Pavol Vicanf7cc2852016-03-22 23:27:35 +01001136 submod = yang_read_submodule(module, data, 0, unres);
1137 break;
Michal Vaskoc3d9f8c2015-07-31 14:37:24 +02001138 default:
Radek Krejci90a550a2016-04-13 16:00:58 +02001139 assert(0);
Michal Vaskoc3d9f8c2015-07-31 14:37:24 +02001140 break;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001141 }
Radek Krejciefaeba32015-05-27 14:30:57 +02001142
Michal Vasko5a721fd2016-02-16 12:16:48 +01001143 return submod;
Radek Krejciefaeba32015-05-27 14:30:57 +02001144}
1145
Michal Vasko1e62a092015-12-01 12:27:20 +01001146API const struct lys_module *
Michal Vasko662610a2015-12-07 11:25:45 +01001147lys_parse_path(struct ly_ctx *ctx, const char *path, LYS_INFORMAT format)
1148{
1149 int fd;
1150 const struct lys_module *ret;
1151
1152 if (!ctx || !path) {
1153 LOGERR(LY_EINVAL, "%s: Invalid parameter.", __func__);
1154 return NULL;
1155 }
1156
1157 fd = open(path, O_RDONLY);
1158 if (fd == -1) {
1159 LOGERR(LY_ESYS, "Opening file \"%s\" failed (%s).", path, strerror(errno));
1160 return NULL;
1161 }
1162
1163 ret = lys_parse_fd(ctx, fd, format);
1164 close(fd);
Radek Krejci23f5de52016-02-25 15:53:17 +01001165
Radek Krejcia77904e2016-02-25 16:23:45 +01001166 if (ret && !ret->filepath) {
Radek Krejci23f5de52016-02-25 15:53:17 +01001167 /* store URI */
Radek Krejcia77904e2016-02-25 16:23:45 +01001168 ((struct lys_module *)ret)->filepath = lydict_insert(ctx, path, 0);
Radek Krejci23f5de52016-02-25 15:53:17 +01001169 }
1170
Michal Vasko662610a2015-12-07 11:25:45 +01001171 return ret;
1172}
1173
1174API const struct lys_module *
1175lys_parse_fd(struct ly_ctx *ctx, int fd, LYS_INFORMAT format)
Radek Krejci63a91a92015-07-29 13:31:04 +02001176{
Michal Vasko1e62a092015-12-01 12:27:20 +01001177 const struct lys_module *module;
Radek Krejci63a91a92015-07-29 13:31:04 +02001178 struct stat sb;
1179 char *addr;
Radek Krejcib051f722016-02-25 15:12:21 +01001180 char buf[PATH_MAX];
1181 int len;
Radek Krejci63a91a92015-07-29 13:31:04 +02001182
1183 if (!ctx || fd < 0) {
1184 LOGERR(LY_EINVAL, "%s: Invalid parameter.", __func__);
1185 return NULL;
1186 }
1187
Radek Krejci10a833c2015-12-16 15:28:37 +01001188 if (fstat(fd, &sb) == -1) {
1189 LOGERR(LY_ESYS, "Failed to stat the file descriptor (%s).", strerror(errno));
1190 return NULL;
1191 }
Radek Krejcib051f722016-02-25 15:12:21 +01001192 if (!S_ISREG(sb.st_mode)) {
1193 LOGERR(LY_EINVAL, "Invalid parameter, input file is not a regular file");
1194 return NULL;
1195 }
1196
Michal Vasko164d9012016-04-01 10:16:59 +02001197 if (!sb.st_size) {
1198 LOGERR(LY_EINVAL, "File empty.");
1199 return NULL;
1200 }
1201
Pavol Vicanf7cc2852016-03-22 23:27:35 +01001202 addr = mmap(NULL, sb.st_size + 2, PROT_READ | PROT_WRITE, MAP_PRIVATE, fd, 0);
Pavol Vicane36ea262015-11-12 11:57:47 +01001203 if (addr == MAP_FAILED) {
Michal Vasko662610a2015-12-07 11:25:45 +01001204 LOGERR(LY_EMEM, "Map file into memory failed (%s()).",__func__);
Pavol Vicane36ea262015-11-12 11:57:47 +01001205 return NULL;
1206 }
Radek Krejcia1df1682016-04-11 14:56:59 +02001207 module = lys_parse_mem_(ctx, addr, format, 1);
Pavol Vicanf7cc2852016-03-22 23:27:35 +01001208 munmap(addr, sb.st_size + 2);
Radek Krejcida04f4a2015-05-21 12:54:09 +02001209
Radek Krejcia77904e2016-02-25 16:23:45 +01001210 if (module && !module->filepath) {
Radek Krejcib051f722016-02-25 15:12:21 +01001211 /* get URI if there is /proc */
1212 addr = NULL;
Radek Krejci15412ca2016-03-03 11:16:52 +01001213 if (asprintf(&addr, "/proc/self/fd/%d", fd) != -1) {
1214 if ((len = readlink(addr, buf, PATH_MAX - 1)) > 0) {
1215 ((struct lys_module *)module)->filepath = lydict_insert(ctx, buf, len);
1216 }
1217 free(addr);
Radek Krejcib051f722016-02-25 15:12:21 +01001218 }
Radek Krejcib051f722016-02-25 15:12:21 +01001219 }
1220
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001221 return module;
Radek Krejcida04f4a2015-05-21 12:54:09 +02001222}
1223
Michal Vasko5a721fd2016-02-16 12:16:48 +01001224struct lys_submodule *
1225lys_submodule_read(struct lys_module *module, int fd, LYS_INFORMAT format, struct unres_schema *unres)
Radek Krejciefaeba32015-05-27 14:30:57 +02001226{
Michal Vasko5a721fd2016-02-16 12:16:48 +01001227 struct lys_submodule *submodule;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001228 struct stat sb;
1229 char *addr;
Radek Krejciefaeba32015-05-27 14:30:57 +02001230
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001231 assert(module);
1232 assert(fd >= 0);
Radek Krejciefaeba32015-05-27 14:30:57 +02001233
Radek Krejci10a833c2015-12-16 15:28:37 +01001234 if (fstat(fd, &sb) == -1) {
1235 LOGERR(LY_ESYS, "Failed to stat the file descriptor (%s).", strerror(errno));
Michal Vasko5a721fd2016-02-16 12:16:48 +01001236 return NULL;
Radek Krejci10a833c2015-12-16 15:28:37 +01001237 }
Michal Vasko164d9012016-04-01 10:16:59 +02001238
1239 if (!sb.st_size) {
1240 LOGERR(LY_EINVAL, "File empty.");
1241 return NULL;
1242 }
1243
Pavol Vicanf7cc2852016-03-22 23:27:35 +01001244 addr = mmap(NULL, sb.st_size + 2, PROT_READ | PROT_WRITE, MAP_PRIVATE, fd, 0);
Pavol Vicane36ea262015-11-12 11:57:47 +01001245 if (addr == MAP_FAILED) {
1246 LOGERR(LY_EMEM,"Map file into memory failed (%s()).",__func__);
Michal Vasko5a721fd2016-02-16 12:16:48 +01001247 return NULL;
Pavol Vicane36ea262015-11-12 11:57:47 +01001248 }
Michal Vasko5a721fd2016-02-16 12:16:48 +01001249 submodule = lys_submodule_parse(module, addr, format, unres);
Pavol Vicanf7cc2852016-03-22 23:27:35 +01001250 munmap(addr, sb.st_size + 2);
Radek Krejciefaeba32015-05-27 14:30:57 +02001251
Michal Vasko5a721fd2016-02-16 12:16:48 +01001252 return submodule;
1253
Radek Krejciefaeba32015-05-27 14:30:57 +02001254}
1255
Radek Krejci1d82ef62015-08-07 14:44:40 +02001256static struct lys_restr *
1257lys_restr_dup(struct ly_ctx *ctx, struct lys_restr *old, int size)
Radek Krejci8bc9ca02015-06-04 15:52:46 +02001258{
Radek Krejci1574a8d2015-08-03 14:16:52 +02001259 struct lys_restr *result;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001260 int i;
Radek Krejci8bc9ca02015-06-04 15:52:46 +02001261
Radek Krejci3733a802015-06-19 13:43:21 +02001262 if (!size) {
1263 return NULL;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001264 }
Radek Krejci3733a802015-06-19 13:43:21 +02001265
1266 result = calloc(size, sizeof *result);
Michal Vasko253035f2015-12-17 16:58:13 +01001267 if (!result) {
Radek Krejciaa2a8932016-02-17 15:03:14 +01001268 LOGMEM;
Michal Vasko253035f2015-12-17 16:58:13 +01001269 return NULL;
1270 }
Radek Krejci3733a802015-06-19 13:43:21 +02001271 for (i = 0; i < size; i++) {
1272 result[i].expr = lydict_insert(ctx, old[i].expr, 0);
1273 result[i].dsc = lydict_insert(ctx, old[i].dsc, 0);
1274 result[i].ref = lydict_insert(ctx, old[i].ref, 0);
1275 result[i].eapptag = lydict_insert(ctx, old[i].eapptag, 0);
1276 result[i].emsg = lydict_insert(ctx, old[i].emsg, 0);
1277 }
1278
1279 return result;
Radek Krejci8bc9ca02015-06-04 15:52:46 +02001280}
1281
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001282void
Radek Krejci1d82ef62015-08-07 14:44:40 +02001283lys_restr_free(struct ly_ctx *ctx, struct lys_restr *restr)
Radek Krejci0bd5db42015-06-19 13:30:07 +02001284{
1285 assert(ctx);
1286 if (!restr) {
1287 return;
1288 }
1289
1290 lydict_remove(ctx, restr->expr);
1291 lydict_remove(ctx, restr->dsc);
1292 lydict_remove(ctx, restr->ref);
1293 lydict_remove(ctx, restr->eapptag);
1294 lydict_remove(ctx, restr->emsg);
1295}
1296
Michal Vaskob84f88a2015-09-24 13:16:10 +02001297static int
Pavol Vicanacb9d0d2016-04-04 13:57:23 +02001298type_dup(struct lys_module *mod, struct lys_node *parent, struct lys_type *new, struct lys_type *old,
Radek Krejci3a5501d2016-07-18 22:03:34 +02001299 LY_DATA_TYPE base, int tpdftype, struct unres_schema *unres)
Pavol Vicanacb9d0d2016-04-04 13:57:23 +02001300{
1301 int i;
1302
1303 switch (base) {
1304 case LY_TYPE_BINARY:
1305 if (old->info.binary.length) {
1306 new->info.binary.length = lys_restr_dup(mod->ctx, old->info.binary.length, 1);
1307 }
1308 break;
1309
1310 case LY_TYPE_BITS:
1311 new->info.bits.count = old->info.bits.count;
1312 if (new->info.bits.count) {
1313 new->info.bits.bit = calloc(new->info.bits.count, sizeof *new->info.bits.bit);
1314 if (!new->info.bits.bit) {
1315 LOGMEM;
1316 return -1;
1317 }
1318 for (i = 0; i < new->info.bits.count; i++) {
1319 new->info.bits.bit[i].name = lydict_insert(mod->ctx, old->info.bits.bit[i].name, 0);
1320 new->info.bits.bit[i].dsc = lydict_insert(mod->ctx, old->info.bits.bit[i].dsc, 0);
1321 new->info.bits.bit[i].ref = lydict_insert(mod->ctx, old->info.bits.bit[i].ref, 0);
1322 new->info.bits.bit[i].flags = old->info.bits.bit[i].flags;
1323 new->info.bits.bit[i].pos = old->info.bits.bit[i].pos;
1324 }
1325 }
1326 break;
1327
1328 case LY_TYPE_DEC64:
1329 new->info.dec64.dig = old->info.dec64.dig;
Radek Krejci8c3b4b62016-06-17 14:32:12 +02001330 new->info.dec64.div = old->info.dec64.div;
Pavol Vicanacb9d0d2016-04-04 13:57:23 +02001331 if (old->info.dec64.range) {
1332 new->info.dec64.range = lys_restr_dup(mod->ctx, old->info.dec64.range, 1);
1333 }
1334 break;
1335
1336 case LY_TYPE_ENUM:
1337 new->info.enums.count = old->info.enums.count;
1338 if (new->info.enums.count) {
1339 new->info.enums.enm = calloc(new->info.enums.count, sizeof *new->info.enums.enm);
1340 if (!new->info.enums.enm) {
1341 LOGMEM;
1342 return -1;
1343 }
1344 for (i = 0; i < new->info.enums.count; i++) {
1345 new->info.enums.enm[i].name = lydict_insert(mod->ctx, old->info.enums.enm[i].name, 0);
1346 new->info.enums.enm[i].dsc = lydict_insert(mod->ctx, old->info.enums.enm[i].dsc, 0);
1347 new->info.enums.enm[i].ref = lydict_insert(mod->ctx, old->info.enums.enm[i].ref, 0);
1348 new->info.enums.enm[i].flags = old->info.enums.enm[i].flags;
1349 new->info.enums.enm[i].value = old->info.enums.enm[i].value;
1350 }
1351 }
1352 break;
1353
1354 case LY_TYPE_IDENT:
1355 if (old->info.ident.ref) {
1356 new->info.ident.ref = old->info.ident.ref;
1357 } else {
1358 i = unres_schema_find(unres, old, UNRES_TYPE_IDENTREF);
Michal Vasko3767fb22016-07-21 12:10:57 +02001359 if (i > -1 && (unres_schema_add_str(mod, unres, new, UNRES_TYPE_IDENTREF, unres->str_snode[i]) == -1)) {
Pavol Vicanacb9d0d2016-04-04 13:57:23 +02001360 return -1;
1361 }
1362 }
1363 break;
1364
1365 case LY_TYPE_INST:
1366 new->info.inst.req = old->info.inst.req;
1367 break;
1368
1369 case LY_TYPE_INT8:
1370 case LY_TYPE_INT16:
1371 case LY_TYPE_INT32:
1372 case LY_TYPE_INT64:
1373 case LY_TYPE_UINT8:
1374 case LY_TYPE_UINT16:
1375 case LY_TYPE_UINT32:
1376 case LY_TYPE_UINT64:
1377 if (old->info.num.range) {
1378 new->info.num.range = lys_restr_dup(mod->ctx, old->info.num.range, 1);
1379 }
1380 break;
1381
1382 case LY_TYPE_LEAFREF:
1383 if (old->info.lref.path) {
1384 new->info.lref.path = lydict_insert(mod->ctx, old->info.lref.path, 0);
Michal Vasko5d631402016-07-21 13:15:15 +02001385 if (!tpdftype && unres_schema_add_node(mod, unres, new, UNRES_TYPE_LEAFREF, parent) == -1) {
Pavol Vicanacb9d0d2016-04-04 13:57:23 +02001386 return -1;
1387 }
1388 }
1389 break;
1390
1391 case LY_TYPE_STRING:
1392 if (old->info.str.length) {
1393 new->info.str.length = lys_restr_dup(mod->ctx, old->info.str.length, 1);
1394 }
1395 new->info.str.patterns = lys_restr_dup(mod->ctx, old->info.str.patterns, old->info.str.pat_count);
1396 new->info.str.pat_count = old->info.str.pat_count;
1397 break;
1398
1399 case LY_TYPE_UNION:
1400 new->info.uni.count = old->info.uni.count;
1401 if (new->info.uni.count) {
1402 new->info.uni.types = calloc(new->info.uni.count, sizeof *new->info.uni.types);
1403 if (!new->info.uni.types) {
1404 LOGMEM;
1405 return -1;
1406 }
1407 for (i = 0; i < new->info.uni.count; i++) {
Radek Krejci3a5501d2016-07-18 22:03:34 +02001408 if (lys_type_dup(mod, parent, &(new->info.uni.types[i]), &(old->info.uni.types[i]), tpdftype, unres)) {
Pavol Vicanacb9d0d2016-04-04 13:57:23 +02001409 return -1;
1410 }
1411 }
1412 }
1413 break;
1414
1415 default:
1416 /* nothing to do for LY_TYPE_BOOL, LY_TYPE_EMPTY */
1417 break;
1418 }
1419 return EXIT_SUCCESS;
1420}
1421
1422struct yang_type *
Radek Krejci3a5501d2016-07-18 22:03:34 +02001423lys_yang_type_dup(struct lys_module *module, struct lys_node *parent, struct yang_type *old, struct lys_type *type,
1424 int tpdftype, struct unres_schema *unres)
Pavol Vicanacb9d0d2016-04-04 13:57:23 +02001425{
1426 struct yang_type *new;
1427
1428 new = calloc(1, sizeof *new);
1429 if (!new) {
1430 LOGMEM;
1431 return NULL;
1432 }
1433 new->flags = old->flags;
1434 new->base = old->base;
Pavol Vican66586292016-04-07 11:38:52 +02001435 new->name = lydict_insert(module->ctx, old->name, 0);
Pavol Vicanacb9d0d2016-04-04 13:57:23 +02001436 new->type = type;
1437 if (!new->name) {
1438 LOGMEM;
1439 goto error;
1440 }
Radek Krejci3a5501d2016-07-18 22:03:34 +02001441 if (type_dup(module, parent, type, old->type, new->base, tpdftype, unres)) {
Pavol Vicanacb9d0d2016-04-04 13:57:23 +02001442 new->type->base = new->base;
1443 lys_type_free(module->ctx, new->type);
1444 memset(&new->type->info, 0, sizeof new->type->info);
1445 goto error;
1446 }
1447 return new;
1448
1449 error:
1450 free(new);
1451 return NULL;
1452}
1453
1454static int
Radek Krejci1d82ef62015-08-07 14:44:40 +02001455lys_type_dup(struct lys_module *mod, struct lys_node *parent, struct lys_type *new, struct lys_type *old,
Radek Krejci3a5501d2016-07-18 22:03:34 +02001456 int tpdftype, struct unres_schema *unres)
Radek Krejci3733a802015-06-19 13:43:21 +02001457{
1458 int i;
1459
Michal Vasko1dca6882015-10-22 14:29:42 +02001460 new->module_name = lydict_insert(mod->ctx, old->module_name, 0);
Radek Krejci3733a802015-06-19 13:43:21 +02001461 new->base = old->base;
1462 new->der = old->der;
Radek Krejci3a5501d2016-07-18 22:03:34 +02001463 new->parent = (struct lys_tpdf *)parent;
Radek Krejci3733a802015-06-19 13:43:21 +02001464
Radek Krejci3a5501d2016-07-18 22:03:34 +02001465 i = unres_schema_find(unres, old, tpdftype ? UNRES_TYPE_DER_TPDF : UNRES_TYPE_DER);
Michal Vaskoc3d9f8c2015-07-31 14:37:24 +02001466 if (i != -1) {
Michal Vasko88c29542015-11-27 14:57:53 +01001467 /* HACK (serious one) for unres */
1468 /* nothing else we can do but duplicate it immediately */
Pavol Vicanacb9d0d2016-04-04 13:57:23 +02001469 if (((struct lyxml_elem *)old->der)->flags & LY_YANG_STRUCTURE_FLAG) {
Radek Krejci3a5501d2016-07-18 22:03:34 +02001470 new->der = (struct lys_tpdf *)lys_yang_type_dup(mod, parent, (struct yang_type *)old->der, new, tpdftype, unres);
Pavol Vicanacb9d0d2016-04-04 13:57:23 +02001471 } else {
1472 new->der = (struct lys_tpdf *)lyxml_dup_elem(mod->ctx, (struct lyxml_elem *)old->der, NULL, 1);
1473 }
Michal Vaskob84f88a2015-09-24 13:16:10 +02001474 /* all these unres additions can fail even though they did not before */
Radek Krejci3a5501d2016-07-18 22:03:34 +02001475 if (!new->der || unres_schema_add_node(mod, unres, new,
Michal Vasko5d631402016-07-21 13:15:15 +02001476 tpdftype ? UNRES_TYPE_DER_TPDF : UNRES_TYPE_DER, parent) == -1) {
Michal Vaskob84f88a2015-09-24 13:16:10 +02001477 return -1;
Michal Vasko49168a22015-08-17 16:35:41 +02001478 }
Michal Vaskob84f88a2015-09-24 13:16:10 +02001479 return EXIT_SUCCESS;
Michal Vaskoc3d9f8c2015-07-31 14:37:24 +02001480 }
1481
Radek Krejci3a5501d2016-07-18 22:03:34 +02001482 return type_dup(mod, parent, new, old, new->base, tpdftype, unres);
Radek Krejci3733a802015-06-19 13:43:21 +02001483}
1484
1485void
Radek Krejci1d82ef62015-08-07 14:44:40 +02001486lys_type_free(struct ly_ctx *ctx, struct lys_type *type)
Radek Krejci5a065542015-05-22 15:02:07 +02001487{
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001488 int i;
Radek Krejci5a065542015-05-22 15:02:07 +02001489
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001490 assert(ctx);
1491 if (!type) {
1492 return;
1493 }
Radek Krejci812b10a2015-05-28 16:48:25 +02001494
Michal Vasko1dca6882015-10-22 14:29:42 +02001495 lydict_remove(ctx, type->module_name);
Radek Krejci5a065542015-05-22 15:02:07 +02001496
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001497 switch (type->base) {
Radek Krejci0bd5db42015-06-19 13:30:07 +02001498 case LY_TYPE_BINARY:
Radek Krejci1d82ef62015-08-07 14:44:40 +02001499 lys_restr_free(ctx, type->info.binary.length);
Radek Krejci0bd5db42015-06-19 13:30:07 +02001500 free(type->info.binary.length);
1501 break;
Radek Krejci994b6f62015-06-18 16:47:27 +02001502 case LY_TYPE_BITS:
1503 for (i = 0; i < type->info.bits.count; i++) {
1504 lydict_remove(ctx, type->info.bits.bit[i].name);
1505 lydict_remove(ctx, type->info.bits.bit[i].dsc);
1506 lydict_remove(ctx, type->info.bits.bit[i].ref);
1507 }
1508 free(type->info.bits.bit);
1509 break;
Radek Krejcif9401c32015-06-26 16:47:36 +02001510
1511 case LY_TYPE_DEC64:
Radek Krejci1d82ef62015-08-07 14:44:40 +02001512 lys_restr_free(ctx, type->info.dec64.range);
Radek Krejcif9401c32015-06-26 16:47:36 +02001513 free(type->info.dec64.range);
1514 break;
1515
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001516 case LY_TYPE_ENUM:
1517 for (i = 0; i < type->info.enums.count; i++) {
Radek Krejci1574a8d2015-08-03 14:16:52 +02001518 lydict_remove(ctx, type->info.enums.enm[i].name);
1519 lydict_remove(ctx, type->info.enums.enm[i].dsc);
1520 lydict_remove(ctx, type->info.enums.enm[i].ref);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001521 }
Radek Krejci1574a8d2015-08-03 14:16:52 +02001522 free(type->info.enums.enm);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001523 break;
Radek Krejcidc4c1412015-06-19 15:39:54 +02001524
Radek Krejci6fcb9dd2015-06-22 10:16:37 +02001525 case LY_TYPE_INT8:
1526 case LY_TYPE_INT16:
1527 case LY_TYPE_INT32:
1528 case LY_TYPE_INT64:
1529 case LY_TYPE_UINT8:
1530 case LY_TYPE_UINT16:
1531 case LY_TYPE_UINT32:
1532 case LY_TYPE_UINT64:
Radek Krejci1d82ef62015-08-07 14:44:40 +02001533 lys_restr_free(ctx, type->info.num.range);
Radek Krejci6fcb9dd2015-06-22 10:16:37 +02001534 free(type->info.num.range);
1535 break;
1536
Radek Krejcidc4c1412015-06-19 15:39:54 +02001537 case LY_TYPE_LEAFREF:
1538 lydict_remove(ctx, type->info.lref.path);
1539 break;
1540
Radek Krejci3733a802015-06-19 13:43:21 +02001541 case LY_TYPE_STRING:
Radek Krejci1d82ef62015-08-07 14:44:40 +02001542 lys_restr_free(ctx, type->info.str.length);
Radek Krejci3733a802015-06-19 13:43:21 +02001543 free(type->info.str.length);
Radek Krejci5fbc9162015-06-19 14:11:11 +02001544 for (i = 0; i < type->info.str.pat_count; i++) {
Radek Krejci1d82ef62015-08-07 14:44:40 +02001545 lys_restr_free(ctx, &type->info.str.patterns[i]);
Radek Krejci5fbc9162015-06-19 14:11:11 +02001546 }
1547 free(type->info.str.patterns);
Radek Krejci3733a802015-06-19 13:43:21 +02001548 break;
Radek Krejci4a7b5ee2015-06-19 14:56:43 +02001549
Radek Krejcie4c366b2015-07-02 10:11:31 +02001550 case LY_TYPE_UNION:
1551 for (i = 0; i < type->info.uni.count; i++) {
Radek Krejci1d82ef62015-08-07 14:44:40 +02001552 lys_type_free(ctx, &type->info.uni.types[i]);
Radek Krejcie4c366b2015-07-02 10:11:31 +02001553 }
Radek Krejci1574a8d2015-08-03 14:16:52 +02001554 free(type->info.uni.types);
Radek Krejci4a7b5ee2015-06-19 14:56:43 +02001555 break;
1556
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001557 default:
Radek Krejcic7c85532015-07-02 10:16:54 +02001558 /* nothing to do for LY_TYPE_IDENT, LY_TYPE_INST, LY_TYPE_BOOL, LY_TYPE_EMPTY */
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001559 break;
1560 }
Radek Krejci5a065542015-05-22 15:02:07 +02001561}
1562
Radek Krejci1d82ef62015-08-07 14:44:40 +02001563static void
1564lys_tpdf_free(struct ly_ctx *ctx, struct lys_tpdf *tpdf)
Radek Krejcida04f4a2015-05-21 12:54:09 +02001565{
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001566 assert(ctx);
1567 if (!tpdf) {
1568 return;
1569 }
Radek Krejci812b10a2015-05-28 16:48:25 +02001570
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001571 lydict_remove(ctx, tpdf->name);
1572 lydict_remove(ctx, tpdf->dsc);
1573 lydict_remove(ctx, tpdf->ref);
Radek Krejcida04f4a2015-05-21 12:54:09 +02001574
Radek Krejci1d82ef62015-08-07 14:44:40 +02001575 lys_type_free(ctx, &tpdf->type);
Radek Krejci8bc9ca02015-06-04 15:52:46 +02001576
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001577 lydict_remove(ctx, tpdf->units);
1578 lydict_remove(ctx, tpdf->dflt);
Radek Krejci8bc9ca02015-06-04 15:52:46 +02001579}
1580
Michal Vaskob84f88a2015-09-24 13:16:10 +02001581static struct lys_tpdf *
1582lys_tpdf_dup(struct lys_module *mod, struct lys_node *parent, struct lys_tpdf *old, int size, struct unres_schema *unres)
1583{
1584 struct lys_tpdf *result;
1585 int i, j;
1586
1587 if (!size) {
1588 return NULL;
1589 }
1590
1591 result = calloc(size, sizeof *result);
Michal Vasko253035f2015-12-17 16:58:13 +01001592 if (!result) {
1593 LOGMEM;
1594 return NULL;
1595 }
Michal Vaskob84f88a2015-09-24 13:16:10 +02001596 for (i = 0; i < size; i++) {
1597 result[i].name = lydict_insert(mod->ctx, old[i].name, 0);
1598 result[i].dsc = lydict_insert(mod->ctx, old[i].dsc, 0);
1599 result[i].ref = lydict_insert(mod->ctx, old[i].ref, 0);
1600 result[i].flags = old[i].flags;
1601 result[i].module = old[i].module;
1602
Radek Krejci3a5501d2016-07-18 22:03:34 +02001603 if (lys_type_dup(mod, parent, &(result[i].type), &(old[i].type), 1, unres)) {
Michal Vaskob84f88a2015-09-24 13:16:10 +02001604 for (j = 0; j <= i; ++j) {
1605 lys_tpdf_free(mod->ctx, &result[j]);
1606 }
1607 free(result);
1608 return NULL;
1609 }
1610
1611 result[i].dflt = lydict_insert(mod->ctx, old[i].dflt, 0);
1612 result[i].units = lydict_insert(mod->ctx, old[i].units, 0);
1613 }
1614
1615 return result;
1616}
1617
Radek Krejci1d82ef62015-08-07 14:44:40 +02001618static struct lys_when *
1619lys_when_dup(struct ly_ctx *ctx, struct lys_when *old)
Radek Krejci00768f42015-06-18 17:04:04 +02001620{
Radek Krejci76512572015-08-04 09:47:08 +02001621 struct lys_when *new;
Radek Krejci00768f42015-06-18 17:04:04 +02001622
1623 if (!old) {
1624 return NULL;
1625 }
1626
1627 new = calloc(1, sizeof *new);
Michal Vasko253035f2015-12-17 16:58:13 +01001628 if (!new) {
1629 LOGMEM;
1630 return NULL;
1631 }
Radek Krejci00768f42015-06-18 17:04:04 +02001632 new->cond = lydict_insert(ctx, old->cond, 0);
1633 new->dsc = lydict_insert(ctx, old->dsc, 0);
1634 new->ref = lydict_insert(ctx, old->ref, 0);
1635
1636 return new;
1637}
1638
Michal Vasko0308dd62015-10-07 09:14:40 +02001639void
Radek Krejci1d82ef62015-08-07 14:44:40 +02001640lys_when_free(struct ly_ctx *ctx, struct lys_when *w)
Radek Krejcib0af6ba2015-06-18 15:01:03 +02001641{
1642 if (!w) {
1643 return;
1644 }
1645
1646 lydict_remove(ctx, w->cond);
1647 lydict_remove(ctx, w->dsc);
1648 lydict_remove(ctx, w->ref);
1649
1650 free(w);
1651}
1652
Radek Krejcib7f5e412015-08-13 10:15:51 +02001653static void
Radek Krejci9ff0a922016-07-14 13:08:05 +02001654lys_iffeature_free(struct lys_iffeature *iffeature, uint8_t iffeature_size)
Michal Vaskoc5c26b02016-06-29 11:10:29 +02001655{
1656 uint8_t i;
1657
1658 for (i = 0; i < iffeature_size; ++i) {
Radek Krejci9ff0a922016-07-14 13:08:05 +02001659 free(iffeature[i].expr);
1660 free(iffeature[i].features);
Michal Vaskoc5c26b02016-06-29 11:10:29 +02001661 }
1662 free(iffeature);
1663}
1664
1665static void
Michal Vasko9eb6dd02016-05-02 14:52:40 +02001666lys_augment_free(struct ly_ctx *ctx, struct lys_node_augment *aug, void (*private_destructor)(const struct lys_node *node, void *priv))
Radek Krejcib7f5e412015-08-13 10:15:51 +02001667{
Michal Vaskoc4c2e212015-09-23 11:34:41 +02001668 struct lys_node *next, *sub;
1669
Radek Krejcic071c542016-01-27 14:57:51 +01001670 /* children from a resolved augment are freed under the target node */
Michal Vaskod2fbade2016-05-02 17:14:00 +02001671 if (!aug->target) {
Michal Vasko9eb6dd02016-05-02 14:52:40 +02001672 LY_TREE_FOR_SAFE(aug->child, next, sub) {
Michal Vaskod51d6ad2016-02-16 13:24:31 +01001673 lys_node_free(sub, private_destructor, 0);
Radek Krejcic071c542016-01-27 14:57:51 +01001674 }
Michal Vaskoc4c2e212015-09-23 11:34:41 +02001675 }
1676
Michal Vasko9eb6dd02016-05-02 14:52:40 +02001677 lydict_remove(ctx, aug->target_name);
1678 lydict_remove(ctx, aug->dsc);
1679 lydict_remove(ctx, aug->ref);
Radek Krejcib7f5e412015-08-13 10:15:51 +02001680
Radek Krejci9ff0a922016-07-14 13:08:05 +02001681 lys_iffeature_free(aug->iffeature, aug->iffeature_size);
Radek Krejcib7f5e412015-08-13 10:15:51 +02001682
Michal Vasko9eb6dd02016-05-02 14:52:40 +02001683 lys_when_free(ctx, aug->when);
Radek Krejcib7f5e412015-08-13 10:15:51 +02001684}
1685
Radek Krejci76512572015-08-04 09:47:08 +02001686static struct lys_node_augment *
Michal Vaskoffa45cb2015-08-21 12:58:04 +02001687lys_augment_dup(struct lys_module *module, struct lys_node *parent, struct lys_node_augment *old, int size)
Radek Krejci106efc02015-06-10 14:36:27 +02001688{
Radek Krejci76512572015-08-04 09:47:08 +02001689 struct lys_node_augment *new = NULL;
Michal Vaskoffa45cb2015-08-21 12:58:04 +02001690 struct lys_node *old_child, *new_child;
1691 int i;
Radek Krejci106efc02015-06-10 14:36:27 +02001692
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001693 if (!size) {
1694 return NULL;
1695 }
Radek Krejci106efc02015-06-10 14:36:27 +02001696
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001697 new = calloc(size, sizeof *new);
Michal Vasko253035f2015-12-17 16:58:13 +01001698 if (!new) {
1699 LOGMEM;
1700 return NULL;
1701 }
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001702 for (i = 0; i < size; i++) {
1703 new[i].target_name = lydict_insert(module->ctx, old[i].target_name, 0);
1704 new[i].dsc = lydict_insert(module->ctx, old[i].dsc, 0);
1705 new[i].ref = lydict_insert(module->ctx, old[i].ref, 0);
1706 new[i].flags = old[i].flags;
Michal Vaskoffa45cb2015-08-21 12:58:04 +02001707 new[i].module = old[i].module;
Michal Vasko591e0b22015-08-13 13:53:43 +02001708 new[i].nodetype = old[i].nodetype;
Michal Vaskod51d6ad2016-02-16 13:24:31 +01001709
Michal Vaskoffa45cb2015-08-21 12:58:04 +02001710 /* this must succeed, it was already resolved once */
Michal Vasko3edeaf72016-02-11 13:17:43 +01001711 if (resolve_augment_schema_nodeid(new[i].target_name, parent->child, NULL,
1712 (const struct lys_node **)&new[i].target)) {
Michal Vaskoffa45cb2015-08-21 12:58:04 +02001713 LOGINT;
1714 free(new);
1715 return NULL;
1716 }
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001717 new[i].parent = parent;
Radek Krejci106efc02015-06-10 14:36:27 +02001718
Michal Vaskoffa45cb2015-08-21 12:58:04 +02001719 /* Correct the augment nodes.
1720 * This function can only be called from lys_node_dup() with uses
1721 * being the node duplicated, so we must have a case of grouping
1722 * with a uses with augments. The augmented nodes have already been
1723 * copied and everything is almost fine except their parent is wrong
Michal Vaskoa5900c52015-09-24 13:17:11 +02001724 * (it was set to their actual data parent, not an augment), and
1725 * the new augment does not have child pointer to its augment nodes,
1726 * so we just correct it.
Michal Vaskoffa45cb2015-08-21 12:58:04 +02001727 */
1728 LY_TREE_FOR(new[i].target->child, new_child) {
Radek Krejci749190d2016-02-18 16:26:25 +01001729 if (ly_strequal(new_child->name, old[i].child->name, 1)) {
Michal Vaskoffa45cb2015-08-21 12:58:04 +02001730 break;
Radek Krejcib7f5e412015-08-13 10:15:51 +02001731 }
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001732 }
Michal Vaskoffa45cb2015-08-21 12:58:04 +02001733 assert(new_child);
Michal Vaskoa5900c52015-09-24 13:17:11 +02001734 new[i].child = new_child;
Michal Vaskoffa45cb2015-08-21 12:58:04 +02001735 LY_TREE_FOR(old[i].child, old_child) {
1736 /* all augment nodes were connected as siblings, there can be no more after this */
1737 if (old_child->parent != (struct lys_node *)&old[i]) {
1738 break;
1739 }
1740
Radek Krejci749190d2016-02-18 16:26:25 +01001741 assert(ly_strequal(old_child->name, new_child->name, 1));
Michal Vaskoffa45cb2015-08-21 12:58:04 +02001742
1743 new_child->parent = (struct lys_node *)&new[i];
1744 new_child = new_child->next;
1745 }
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001746 }
Radek Krejci106efc02015-06-10 14:36:27 +02001747
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001748 return new;
Radek Krejci106efc02015-06-10 14:36:27 +02001749}
1750
Radek Krejci76512572015-08-04 09:47:08 +02001751static struct lys_refine *
Michal Vasko0d204592015-10-07 09:50:04 +02001752lys_refine_dup(struct lys_module *mod, struct lys_refine *old, int size)
Michal Vasko1982cad2015-06-08 15:49:30 +02001753{
Radek Krejci76512572015-08-04 09:47:08 +02001754 struct lys_refine *result;
Michal Vasko0d204592015-10-07 09:50:04 +02001755 int i;
Michal Vasko1982cad2015-06-08 15:49:30 +02001756
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001757 if (!size) {
1758 return NULL;
1759 }
Michal Vasko1982cad2015-06-08 15:49:30 +02001760
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001761 result = calloc(size, sizeof *result);
Michal Vasko253035f2015-12-17 16:58:13 +01001762 if (!result) {
1763 LOGMEM;
1764 return NULL;
1765 }
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001766 for (i = 0; i < size; i++) {
Radek Krejci76512572015-08-04 09:47:08 +02001767 result[i].target_name = lydict_insert(mod->ctx, old[i].target_name, 0);
Michal Vaskoc3d9f8c2015-07-31 14:37:24 +02001768 result[i].dsc = lydict_insert(mod->ctx, old[i].dsc, 0);
1769 result[i].ref = lydict_insert(mod->ctx, old[i].ref, 0);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001770 result[i].flags = old[i].flags;
1771 result[i].target_type = old[i].target_type;
Michal Vaskoc3d9f8c2015-07-31 14:37:24 +02001772
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001773 result[i].must_size = old[i].must_size;
Radek Krejci1d82ef62015-08-07 14:44:40 +02001774 result[i].must = lys_restr_dup(mod->ctx, old[i].must, old[i].must_size);
Michal Vaskoc3d9f8c2015-07-31 14:37:24 +02001775
Radek Krejci76512572015-08-04 09:47:08 +02001776 if (result[i].target_type & (LYS_LEAF | LYS_CHOICE)) {
Michal Vaskoc3d9f8c2015-07-31 14:37:24 +02001777 result[i].mod.dflt = lydict_insert(mod->ctx, old[i].mod.dflt, 0);
Radek Krejci76512572015-08-04 09:47:08 +02001778 } else if (result[i].target_type == LYS_CONTAINER) {
Michal Vaskoc3d9f8c2015-07-31 14:37:24 +02001779 result[i].mod.presence = lydict_insert(mod->ctx, old[i].mod.presence, 0);
Radek Krejci76512572015-08-04 09:47:08 +02001780 } else if (result[i].target_type & (LYS_LIST | LYS_LEAFLIST)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001781 result[i].mod.list = old[i].mod.list;
1782 }
1783 }
Michal Vasko1982cad2015-06-08 15:49:30 +02001784
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001785 return result;
Michal Vasko1982cad2015-06-08 15:49:30 +02001786}
1787
Radek Krejci1d82ef62015-08-07 14:44:40 +02001788static void
1789lys_ident_free(struct ly_ctx *ctx, struct lys_ident *ident)
Radek Krejci6793db02015-05-22 17:49:54 +02001790{
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001791 assert(ctx);
1792 if (!ident) {
1793 return;
1794 }
Radek Krejci812b10a2015-05-28 16:48:25 +02001795
Radek Krejci1b61d0e2016-04-15 13:55:44 +02001796 free(ident->der);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001797 lydict_remove(ctx, ident->name);
1798 lydict_remove(ctx, ident->dsc);
1799 lydict_remove(ctx, ident->ref);
Radek Krejci6793db02015-05-22 17:49:54 +02001800
1801}
1802
Radek Krejci1d82ef62015-08-07 14:44:40 +02001803static void
1804lys_grp_free(struct ly_ctx *ctx, struct lys_node_grp *grp)
Radek Krejcida04f4a2015-05-21 12:54:09 +02001805{
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001806 int i;
Radek Krejcida04f4a2015-05-21 12:54:09 +02001807
Radek Krejcid12f57b2015-08-06 10:43:39 +02001808 /* handle only specific parts for LYS_GROUPING */
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001809 for (i = 0; i < grp->tpdf_size; i++) {
Radek Krejci1d82ef62015-08-07 14:44:40 +02001810 lys_tpdf_free(ctx, &grp->tpdf[i]);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001811 }
1812 free(grp->tpdf);
Radek Krejci537cf382015-06-04 11:07:01 +02001813}
1814
Radek Krejci1d82ef62015-08-07 14:44:40 +02001815static void
Michal Vasko44fb6382016-06-29 11:12:27 +02001816lys_inout_free(struct ly_ctx *ctx, struct lys_node_inout *io)
Radek Krejcid12f57b2015-08-06 10:43:39 +02001817{
1818 int i;
1819
1820 /* handle only specific parts for LYS_INPUT and LYS_OUTPUT */
1821 for (i = 0; i < io->tpdf_size; i++) {
Radek Krejci1d82ef62015-08-07 14:44:40 +02001822 lys_tpdf_free(ctx, &io->tpdf[i]);
Radek Krejcid12f57b2015-08-06 10:43:39 +02001823 }
1824 free(io->tpdf);
1825}
1826
Radek Krejci1d82ef62015-08-07 14:44:40 +02001827static void
1828lys_anyxml_free(struct ly_ctx *ctx, struct lys_node_anyxml *anyxml)
Radek Krejci537cf382015-06-04 11:07:01 +02001829{
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001830 int i;
Radek Krejci537cf382015-06-04 11:07:01 +02001831
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001832 for (i = 0; i < anyxml->must_size; i++) {
Radek Krejci1d82ef62015-08-07 14:44:40 +02001833 lys_restr_free(ctx, &anyxml->must[i]);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001834 }
1835 free(anyxml->must);
Radek Krejcib0af6ba2015-06-18 15:01:03 +02001836
Radek Krejci1d82ef62015-08-07 14:44:40 +02001837 lys_when_free(ctx, anyxml->when);
Radek Krejcida04f4a2015-05-21 12:54:09 +02001838}
1839
Radek Krejci1d82ef62015-08-07 14:44:40 +02001840static void
1841lys_leaf_free(struct ly_ctx *ctx, struct lys_node_leaf *leaf)
Radek Krejci5a065542015-05-22 15:02:07 +02001842{
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001843 int i;
Radek Krejci537cf382015-06-04 11:07:01 +02001844
Radek Krejci46c4cd72016-01-21 15:13:52 +01001845 if (leaf->child) {
1846 /* leafref backlinks */
1847 ly_set_free((struct ly_set *)leaf->child);
1848 }
1849
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001850 for (i = 0; i < leaf->must_size; i++) {
Radek Krejci1d82ef62015-08-07 14:44:40 +02001851 lys_restr_free(ctx, &leaf->must[i]);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001852 }
1853 free(leaf->must);
Radek Krejci537cf382015-06-04 11:07:01 +02001854
Radek Krejci1d82ef62015-08-07 14:44:40 +02001855 lys_when_free(ctx, leaf->when);
Radek Krejcib0af6ba2015-06-18 15:01:03 +02001856
Radek Krejci1d82ef62015-08-07 14:44:40 +02001857 lys_type_free(ctx, &leaf->type);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001858 lydict_remove(ctx, leaf->units);
1859 lydict_remove(ctx, leaf->dflt);
Radek Krejci5a065542015-05-22 15:02:07 +02001860}
1861
Radek Krejci1d82ef62015-08-07 14:44:40 +02001862static void
1863lys_leaflist_free(struct ly_ctx *ctx, struct lys_node_leaflist *llist)
Radek Krejci5a065542015-05-22 15:02:07 +02001864{
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001865 int i;
Radek Krejci537cf382015-06-04 11:07:01 +02001866
Radek Krejci46c4cd72016-01-21 15:13:52 +01001867 if (llist->child) {
1868 /* leafref backlinks */
1869 ly_set_free((struct ly_set *)llist->child);
1870 }
1871
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001872 for (i = 0; i < llist->must_size; i++) {
Radek Krejci1d82ef62015-08-07 14:44:40 +02001873 lys_restr_free(ctx, &llist->must[i]);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001874 }
1875 free(llist->must);
Radek Krejci537cf382015-06-04 11:07:01 +02001876
Radek Krejci1d82ef62015-08-07 14:44:40 +02001877 lys_when_free(ctx, llist->when);
Radek Krejcib0af6ba2015-06-18 15:01:03 +02001878
Radek Krejci1d82ef62015-08-07 14:44:40 +02001879 lys_type_free(ctx, &llist->type);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001880 lydict_remove(ctx, llist->units);
Radek Krejci5a065542015-05-22 15:02:07 +02001881}
1882
Radek Krejci1d82ef62015-08-07 14:44:40 +02001883static void
1884lys_list_free(struct ly_ctx *ctx, struct lys_node_list *list)
Radek Krejcida04f4a2015-05-21 12:54:09 +02001885{
Radek Krejci581ce772015-11-10 17:22:40 +01001886 int i, j;
Radek Krejcida04f4a2015-05-21 12:54:09 +02001887
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001888 /* handle only specific parts for LY_NODE_LIST */
1889 for (i = 0; i < list->tpdf_size; i++) {
Radek Krejci1d82ef62015-08-07 14:44:40 +02001890 lys_tpdf_free(ctx, &list->tpdf[i]);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001891 }
1892 free(list->tpdf);
Radek Krejci537cf382015-06-04 11:07:01 +02001893
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001894 for (i = 0; i < list->must_size; i++) {
Radek Krejci1d82ef62015-08-07 14:44:40 +02001895 lys_restr_free(ctx, &list->must[i]);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001896 }
1897 free(list->must);
Radek Krejci537cf382015-06-04 11:07:01 +02001898
Radek Krejci1d82ef62015-08-07 14:44:40 +02001899 lys_when_free(ctx, list->when);
Radek Krejcib0af6ba2015-06-18 15:01:03 +02001900
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001901 for (i = 0; i < list->unique_size; i++) {
Michal Vaskof5e940a2016-06-07 09:39:26 +02001902 for (j = 0; j < list->unique[i].expr_size; j++) {
Radek Krejci581ce772015-11-10 17:22:40 +01001903 lydict_remove(ctx, list->unique[i].expr[j]);
1904 }
1905 free(list->unique[i].expr);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001906 }
1907 free(list->unique);
Radek Krejcid7f0d012015-05-25 15:04:52 +02001908
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001909 free(list->keys);
Radek Krejcida04f4a2015-05-21 12:54:09 +02001910}
1911
Radek Krejci1d82ef62015-08-07 14:44:40 +02001912static void
1913lys_container_free(struct ly_ctx *ctx, struct lys_node_container *cont)
Radek Krejcida04f4a2015-05-21 12:54:09 +02001914{
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001915 int i;
Radek Krejcida04f4a2015-05-21 12:54:09 +02001916
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001917 /* handle only specific parts for LY_NODE_CONTAINER */
1918 lydict_remove(ctx, cont->presence);
Radek Krejci800af702015-06-02 13:46:01 +02001919
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001920 for (i = 0; i < cont->tpdf_size; i++) {
Radek Krejci1d82ef62015-08-07 14:44:40 +02001921 lys_tpdf_free(ctx, &cont->tpdf[i]);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001922 }
1923 free(cont->tpdf);
Radek Krejci800af702015-06-02 13:46:01 +02001924
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001925 for (i = 0; i < cont->must_size; i++) {
Radek Krejci1d82ef62015-08-07 14:44:40 +02001926 lys_restr_free(ctx, &cont->must[i]);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001927 }
1928 free(cont->must);
Radek Krejcib0af6ba2015-06-18 15:01:03 +02001929
Radek Krejci1d82ef62015-08-07 14:44:40 +02001930 lys_when_free(ctx, cont->when);
Radek Krejcida04f4a2015-05-21 12:54:09 +02001931}
1932
Radek Krejci1d82ef62015-08-07 14:44:40 +02001933static void
1934lys_feature_free(struct ly_ctx *ctx, struct lys_feature *f)
Radek Krejci3cf9e222015-06-18 11:37:50 +02001935{
1936 lydict_remove(ctx, f->name);
1937 lydict_remove(ctx, f->dsc);
1938 lydict_remove(ctx, f->ref);
Radek Krejci9ff0a922016-07-14 13:08:05 +02001939 lys_iffeature_free(f->iffeature, f->iffeature_size);
Radek Krejci3cf9e222015-06-18 11:37:50 +02001940}
1941
Radek Krejci1d82ef62015-08-07 14:44:40 +02001942static void
Michal Vaskoff006c12016-02-17 11:15:19 +01001943lys_deviation_free(struct lys_module *module, struct lys_deviation *dev)
Radek Krejcieb00f512015-07-01 16:44:58 +02001944{
Radek Krejci581ce772015-11-10 17:22:40 +01001945 int i, j, k;
Michal Vaskoff006c12016-02-17 11:15:19 +01001946 struct ly_ctx *ctx;
1947 struct lys_node *next, *elem;
1948
1949 ctx = module->ctx;
Radek Krejcieb00f512015-07-01 16:44:58 +02001950
1951 lydict_remove(ctx, dev->target_name);
1952 lydict_remove(ctx, dev->dsc);
1953 lydict_remove(ctx, dev->ref);
1954
Michal Vaskoff006c12016-02-17 11:15:19 +01001955 /* the module was freed, but we only need the context from orig_node, use ours */
1956 if (dev->deviate[0].mod == LY_DEVIATE_NO) {
1957 /* it's actually a node subtree, we need to update modules on all the nodes :-/ */
1958 LY_TREE_DFS_BEGIN(dev->orig_node, next, elem) {
1959 elem->module = module;
1960
1961 LY_TREE_DFS_END(dev->orig_node, next, elem);
1962 }
1963 lys_node_free(dev->orig_node, NULL, 0);
1964 } else {
1965 /* it's just a shallow copy, freeing one node */
1966 dev->orig_node->module = module;
1967 lys_node_free(dev->orig_node, NULL, 1);
1968 }
1969
Radek Krejcieb00f512015-07-01 16:44:58 +02001970 for (i = 0; i < dev->deviate_size; i++) {
1971 lydict_remove(ctx, dev->deviate[i].dflt);
1972 lydict_remove(ctx, dev->deviate[i].units);
1973
1974 if (dev->deviate[i].mod == LY_DEVIATE_DEL) {
1975 for (j = 0; j < dev->deviate[i].must_size; j++) {
Radek Krejci1d82ef62015-08-07 14:44:40 +02001976 lys_restr_free(ctx, &dev->deviate[i].must[j]);
Radek Krejcieb00f512015-07-01 16:44:58 +02001977 }
1978 free(dev->deviate[i].must);
1979
1980 for (j = 0; j < dev->deviate[i].unique_size; j++) {
Radek Krejci581ce772015-11-10 17:22:40 +01001981 for (k = 0; k < dev->deviate[i].unique[j].expr_size; k++) {
1982 lydict_remove(ctx, dev->deviate[i].unique[j].expr[k]);
1983 }
Michal Vasko0238ccf2016-03-07 15:02:18 +01001984 free(dev->deviate[i].unique[j].expr);
Radek Krejcieb00f512015-07-01 16:44:58 +02001985 }
1986 free(dev->deviate[i].unique);
1987 }
1988 }
1989 free(dev->deviate);
1990}
1991
Radek Krejci1d82ef62015-08-07 14:44:40 +02001992static void
Radek Krejcifa0b5e02016-02-04 13:57:03 +01001993lys_uses_free(struct ly_ctx *ctx, struct lys_node_uses *uses, void (*private_destructor)(const struct lys_node *node, void *priv))
Radek Krejcie1fa8582015-06-08 09:46:45 +02001994{
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001995 int i, j;
Radek Krejcie1fa8582015-06-08 09:46:45 +02001996
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001997 for (i = 0; i < uses->refine_size; i++) {
Radek Krejci76512572015-08-04 09:47:08 +02001998 lydict_remove(ctx, uses->refine[i].target_name);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001999 lydict_remove(ctx, uses->refine[i].dsc);
2000 lydict_remove(ctx, uses->refine[i].ref);
Radek Krejcie1fa8582015-06-08 09:46:45 +02002001
Michal Vaskoa275c0a2015-09-24 09:55:42 +02002002 for (j = 0; j < uses->refine[i].must_size; j++) {
Radek Krejci1d82ef62015-08-07 14:44:40 +02002003 lys_restr_free(ctx, &uses->refine[i].must[j]);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002004 }
2005 free(uses->refine[i].must);
Radek Krejcie1fa8582015-06-08 09:46:45 +02002006
Radek Krejci76512572015-08-04 09:47:08 +02002007 if (uses->refine[i].target_type & (LYS_LEAF | LYS_CHOICE)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002008 lydict_remove(ctx, uses->refine[i].mod.dflt);
Radek Krejci76512572015-08-04 09:47:08 +02002009 } else if (uses->refine[i].target_type & LYS_CONTAINER) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002010 lydict_remove(ctx, uses->refine[i].mod.presence);
2011 }
2012 }
2013 free(uses->refine);
Radek Krejcie1fa8582015-06-08 09:46:45 +02002014
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002015 for (i = 0; i < uses->augment_size; i++) {
Michal Vasko9eb6dd02016-05-02 14:52:40 +02002016 lys_augment_free(ctx, &uses->augment[i], private_destructor);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002017 }
2018 free(uses->augment);
Radek Krejcie1fa8582015-06-08 09:46:45 +02002019
Radek Krejci1d82ef62015-08-07 14:44:40 +02002020 lys_when_free(ctx, uses->when);
Radek Krejcie1fa8582015-06-08 09:46:45 +02002021}
2022
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002023void
Michal Vaskod51d6ad2016-02-16 13:24:31 +01002024lys_node_free(struct lys_node *node, void (*private_destructor)(const struct lys_node *node, void *priv), int shallow)
Radek Krejcida04f4a2015-05-21 12:54:09 +02002025{
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002026 struct ly_ctx *ctx;
Radek Krejci76512572015-08-04 09:47:08 +02002027 struct lys_node *sub, *next;
Radek Krejcida04f4a2015-05-21 12:54:09 +02002028
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002029 if (!node) {
2030 return;
2031 }
Radek Krejcida04f4a2015-05-21 12:54:09 +02002032
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002033 assert(node->module);
2034 assert(node->module->ctx);
Radek Krejci812b10a2015-05-28 16:48:25 +02002035
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002036 ctx = node->module->ctx;
Radek Krejcida04f4a2015-05-21 12:54:09 +02002037
Radek Krejcifa0b5e02016-02-04 13:57:03 +01002038 /* remove private object */
Mislav Novakovicb5529e52016-02-29 11:42:43 +01002039 if (node->priv && private_destructor) {
2040 private_destructor(node, node->priv);
Radek Krejcifa0b5e02016-02-04 13:57:03 +01002041 }
2042
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002043 /* common part */
Michal Vasko0a1aaa42016-04-19 09:48:25 +02002044 lydict_remove(ctx, node->name);
Radek Krejcid12f57b2015-08-06 10:43:39 +02002045 if (!(node->nodetype & (LYS_INPUT | LYS_OUTPUT))) {
Radek Krejci9ff0a922016-07-14 13:08:05 +02002046 lys_iffeature_free(node->iffeature, node->iffeature_size);
Radek Krejcid12f57b2015-08-06 10:43:39 +02002047 lydict_remove(ctx, node->dsc);
2048 lydict_remove(ctx, node->ref);
2049 }
Radek Krejcida04f4a2015-05-21 12:54:09 +02002050
Michal Vaskod51d6ad2016-02-16 13:24:31 +01002051 if (!shallow && !(node->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
Radek Krejci46c4cd72016-01-21 15:13:52 +01002052 LY_TREE_FOR_SAFE(node->child, next, sub) {
Michal Vaskod51d6ad2016-02-16 13:24:31 +01002053 lys_node_free(sub, private_destructor, 0);
Radek Krejci46c4cd72016-01-21 15:13:52 +01002054 }
2055 }
2056
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002057 /* specific part */
2058 switch (node->nodetype) {
Radek Krejci76512572015-08-04 09:47:08 +02002059 case LYS_CONTAINER:
Radek Krejci1d82ef62015-08-07 14:44:40 +02002060 lys_container_free(ctx, (struct lys_node_container *)node);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002061 break;
Radek Krejci76512572015-08-04 09:47:08 +02002062 case LYS_CHOICE:
Radek Krejci1d82ef62015-08-07 14:44:40 +02002063 lys_when_free(ctx, ((struct lys_node_choice *)node)->when);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002064 break;
Radek Krejci76512572015-08-04 09:47:08 +02002065 case LYS_LEAF:
Radek Krejci1d82ef62015-08-07 14:44:40 +02002066 lys_leaf_free(ctx, (struct lys_node_leaf *)node);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002067 break;
Radek Krejci76512572015-08-04 09:47:08 +02002068 case LYS_LEAFLIST:
Radek Krejci1d82ef62015-08-07 14:44:40 +02002069 lys_leaflist_free(ctx, (struct lys_node_leaflist *)node);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002070 break;
Radek Krejci76512572015-08-04 09:47:08 +02002071 case LYS_LIST:
Radek Krejci1d82ef62015-08-07 14:44:40 +02002072 lys_list_free(ctx, (struct lys_node_list *)node);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002073 break;
Radek Krejci76512572015-08-04 09:47:08 +02002074 case LYS_ANYXML:
Radek Krejci1d82ef62015-08-07 14:44:40 +02002075 lys_anyxml_free(ctx, (struct lys_node_anyxml *)node);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002076 break;
Radek Krejci76512572015-08-04 09:47:08 +02002077 case LYS_USES:
Radek Krejcifa0b5e02016-02-04 13:57:03 +01002078 lys_uses_free(ctx, (struct lys_node_uses *)node, private_destructor);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002079 break;
Radek Krejci76512572015-08-04 09:47:08 +02002080 case LYS_CASE:
Radek Krejci1d82ef62015-08-07 14:44:40 +02002081 lys_when_free(ctx, ((struct lys_node_case *)node)->when);
Radek Krejcib0af6ba2015-06-18 15:01:03 +02002082 break;
Radek Krejci76512572015-08-04 09:47:08 +02002083 case LYS_AUGMENT:
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002084 /* do nothing */
2085 break;
Radek Krejci76512572015-08-04 09:47:08 +02002086 case LYS_GROUPING:
2087 case LYS_RPC:
Michal Vasko44fb6382016-06-29 11:12:27 +02002088 case LYS_ACTION:
Radek Krejci76512572015-08-04 09:47:08 +02002089 case LYS_NOTIF:
Radek Krejci1d82ef62015-08-07 14:44:40 +02002090 lys_grp_free(ctx, (struct lys_node_grp *)node);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002091 break;
Radek Krejcid12f57b2015-08-06 10:43:39 +02002092
2093 case LYS_INPUT:
2094 case LYS_OUTPUT:
Michal Vasko44fb6382016-06-29 11:12:27 +02002095 lys_inout_free(ctx, (struct lys_node_inout *)node);
Radek Krejcid12f57b2015-08-06 10:43:39 +02002096 break;
Michal Vasko591e0b22015-08-13 13:53:43 +02002097 case LYS_UNKNOWN:
2098 LOGINT;
2099 break;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002100 }
Radek Krejci5a065542015-05-22 15:02:07 +02002101
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002102 /* again common part */
Radek Krejci1d82ef62015-08-07 14:44:40 +02002103 lys_node_unlink(node);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002104 free(node);
Radek Krejcida04f4a2015-05-21 12:54:09 +02002105}
2106
Michal Vasko1e62a092015-12-01 12:27:20 +01002107const struct lys_module *
2108lys_get_import_module(const struct lys_module *module, const char *prefix, int pref_len, const char *name, int name_len)
Michal Vasko8ce24d72015-10-21 11:27:26 +02002109{
Radek Krejcic071c542016-01-27 14:57:51 +01002110 const struct lys_module *main_module;
Michal Vasko3edeaf72016-02-11 13:17:43 +01002111 int i;
Michal Vaskob6729c62015-10-21 12:09:47 +02002112
Michal Vaskoa7789a82016-02-11 15:42:55 +01002113 assert(!prefix || !name);
2114
Michal Vaskob6729c62015-10-21 12:09:47 +02002115 if (prefix && !pref_len) {
2116 pref_len = strlen(prefix);
2117 }
2118 if (name && !name_len) {
2119 name_len = strlen(name);
2120 }
Michal Vasko8ce24d72015-10-21 11:27:26 +02002121
Radek Krejcic4283442016-04-22 09:19:27 +02002122 main_module = lys_main_module(module);
Michal Vaskoa7789a82016-02-11 15:42:55 +01002123
2124 /* module own prefix, submodule own prefix, (sub)module own name */
2125 if ((!prefix || (!module->type && !strncmp(main_module->prefix, prefix, pref_len) && !main_module->prefix[pref_len])
2126 || (module->type && !strncmp(module->prefix, prefix, pref_len) && !module->prefix[pref_len]))
Michal Vasko3edeaf72016-02-11 13:17:43 +01002127 && (!name || (!strncmp(main_module->name, name, name_len) && !main_module->name[name_len]))) {
Radek Krejcic071c542016-01-27 14:57:51 +01002128 return main_module;
Michal Vaskod8da86b2015-10-21 13:35:37 +02002129 }
2130
Michal Vasko8ce24d72015-10-21 11:27:26 +02002131 for (i = 0; i < module->imp_size; ++i) {
Michal Vasko3edeaf72016-02-11 13:17:43 +01002132 if ((!prefix || (!strncmp(module->imp[i].prefix, prefix, pref_len) && !module->imp[i].prefix[pref_len]))
2133 && (!name || (!strncmp(module->imp[i].module->name, name, name_len) && !module->imp[i].module->name[name_len]))) {
Michal Vasko8ce24d72015-10-21 11:27:26 +02002134 return module->imp[i].module;
2135 }
2136 }
2137
2138 return NULL;
2139}
2140
Michal Vasko13b15832015-08-19 11:04:48 +02002141/* free_int_mods - flag whether to free the internal modules as well */
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002142static void
Michal Vaskob746fff2016-02-11 11:37:50 +01002143module_free_common(struct lys_module *module, void (*private_destructor)(const struct lys_node *node, void *priv))
Radek Krejcida04f4a2015-05-21 12:54:09 +02002144{
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002145 struct ly_ctx *ctx;
Radek Krejcic071c542016-01-27 14:57:51 +01002146 struct lys_node *next, *iter;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002147 unsigned int i;
Radek Krejcida04f4a2015-05-21 12:54:09 +02002148
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002149 assert(module->ctx);
2150 ctx = module->ctx;
Radek Krejcida04f4a2015-05-21 12:54:09 +02002151
Michal Vaskob746fff2016-02-11 11:37:50 +01002152 /* just free the import array, imported modules will stay in the context */
Radek Krejci225376f2016-02-16 17:36:22 +01002153 for (i = 0; i < module->imp_size; i++) {
Michal Vaskoa99c1632016-06-06 16:23:52 +02002154 lydict_remove(ctx, module->imp[i].prefix);
Radek Krejci225376f2016-02-16 17:36:22 +01002155 }
Radek Krejcidce51452015-06-16 15:20:08 +02002156 free(module->imp);
2157
Radek Krejcic071c542016-01-27 14:57:51 +01002158 /* submodules don't have data tree, the data nodes
2159 * are placed in the main module altogether */
2160 if (!module->type) {
2161 LY_TREE_FOR_SAFE(module->data, next, iter) {
Michal Vaskod51d6ad2016-02-16 13:24:31 +01002162 lys_node_free(iter, private_destructor, 0);
Radek Krejcic071c542016-01-27 14:57:51 +01002163 }
Radek Krejci21181962015-06-30 14:11:00 +02002164 }
Radek Krejci5a065542015-05-22 15:02:07 +02002165
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002166 lydict_remove(ctx, module->dsc);
2167 lydict_remove(ctx, module->ref);
2168 lydict_remove(ctx, module->org);
2169 lydict_remove(ctx, module->contact);
Radek Krejcia77904e2016-02-25 16:23:45 +01002170 lydict_remove(ctx, module->filepath);
Radek Krejcida04f4a2015-05-21 12:54:09 +02002171
Radek Krejcieb00f512015-07-01 16:44:58 +02002172 /* revisions */
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002173 for (i = 0; i < module->rev_size; i++) {
2174 lydict_remove(ctx, module->rev[i].dsc);
2175 lydict_remove(ctx, module->rev[i].ref);
2176 }
2177 free(module->rev);
Radek Krejcida04f4a2015-05-21 12:54:09 +02002178
Radek Krejcieb00f512015-07-01 16:44:58 +02002179 /* identities */
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002180 for (i = 0; i < module->ident_size; i++) {
Radek Krejci1d82ef62015-08-07 14:44:40 +02002181 lys_ident_free(ctx, &module->ident[i]);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002182 }
2183 module->ident_size = 0;
2184 free(module->ident);
Radek Krejcida04f4a2015-05-21 12:54:09 +02002185
Radek Krejcieb00f512015-07-01 16:44:58 +02002186 /* typedefs */
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002187 for (i = 0; i < module->tpdf_size; i++) {
Radek Krejci1d82ef62015-08-07 14:44:40 +02002188 lys_tpdf_free(ctx, &module->tpdf[i]);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002189 }
2190 free(module->tpdf);
Radek Krejcida04f4a2015-05-21 12:54:09 +02002191
Radek Krejcieb00f512015-07-01 16:44:58 +02002192 /* include */
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002193 for (i = 0; i < module->inc_size; i++) {
Radek Krejcic071c542016-01-27 14:57:51 +01002194 /* complete submodule free is done only from main module since
2195 * submodules propagate their includes to the main module */
2196 if (!module->type) {
Michal Vaskob746fff2016-02-11 11:37:50 +01002197 lys_submodule_free(module->inc[i].submodule, private_destructor);
Radek Krejcic071c542016-01-27 14:57:51 +01002198 }
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002199 }
2200 free(module->inc);
Radek Krejciefaeba32015-05-27 14:30:57 +02002201
Radek Krejcieb00f512015-07-01 16:44:58 +02002202 /* augment */
Radek Krejcif5be10f2015-06-16 13:29:36 +02002203 for (i = 0; i < module->augment_size; i++) {
Michal Vasko9eb6dd02016-05-02 14:52:40 +02002204 lys_augment_free(ctx, &module->augment[i], private_destructor);
Radek Krejcif5be10f2015-06-16 13:29:36 +02002205 }
2206 free(module->augment);
2207
Radek Krejcieb00f512015-07-01 16:44:58 +02002208 /* features */
Radek Krejci3cf9e222015-06-18 11:37:50 +02002209 for (i = 0; i < module->features_size; i++) {
Radek Krejci1d82ef62015-08-07 14:44:40 +02002210 lys_feature_free(ctx, &module->features[i]);
Radek Krejci3cf9e222015-06-18 11:37:50 +02002211 }
2212 free(module->features);
2213
Radek Krejcieb00f512015-07-01 16:44:58 +02002214 /* deviations */
2215 for (i = 0; i < module->deviation_size; i++) {
Michal Vaskoff006c12016-02-17 11:15:19 +01002216 lys_deviation_free(module, &module->deviation[i]);
Radek Krejcieb00f512015-07-01 16:44:58 +02002217 }
2218 free(module->deviation);
2219
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002220 lydict_remove(ctx, module->name);
Radek Krejci4f78b532016-02-17 13:43:00 +01002221 lydict_remove(ctx, module->prefix);
Radek Krejciefaeba32015-05-27 14:30:57 +02002222}
2223
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002224void
Michal Vaskob746fff2016-02-11 11:37:50 +01002225lys_submodule_free(struct lys_submodule *submodule, void (*private_destructor)(const struct lys_node *node, void *priv))
Radek Krejciefaeba32015-05-27 14:30:57 +02002226{
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002227 if (!submodule) {
2228 return;
2229 }
Radek Krejciefaeba32015-05-27 14:30:57 +02002230
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002231 /* common part with struct ly_module */
Michal Vaskob746fff2016-02-11 11:37:50 +01002232 module_free_common((struct lys_module *)submodule, private_destructor);
Radek Krejciefaeba32015-05-27 14:30:57 +02002233
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002234 /* no specific items to free */
Radek Krejciefaeba32015-05-27 14:30:57 +02002235
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002236 free(submodule);
Radek Krejciefaeba32015-05-27 14:30:57 +02002237}
2238
Radek Krejci3a5501d2016-07-18 22:03:34 +02002239static int
2240ingrouping(const struct lys_node *node)
2241{
2242 const struct lys_node *iter = node;
2243 assert(node);
2244
2245 for(iter = node; iter && iter->nodetype != LYS_GROUPING; iter = lys_parent(iter));
2246 if (!iter) {
2247 return 0;
2248 } else {
2249 return 1;
2250 }
2251}
2252
Radek Krejci76512572015-08-04 09:47:08 +02002253struct lys_node *
Radek Krejcic071c542016-01-27 14:57:51 +01002254lys_node_dup(struct lys_module *module, struct lys_node *parent, const struct lys_node *node, uint8_t flags,
Michal Vaskod51d6ad2016-02-16 13:24:31 +01002255 uint8_t nacm, struct unres_schema *unres, int shallow)
Radek Krejci8bc9ca02015-06-04 15:52:46 +02002256{
Radek Krejcic071c542016-01-27 14:57:51 +01002257 struct lys_node *retval = NULL, *child;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002258 struct ly_ctx *ctx = module->ctx;
Michal Vasko3ab70fc2015-08-17 14:06:23 +02002259 int i, j, rc;
Radek Krejci9ff0a922016-07-14 13:08:05 +02002260 unsigned int size, size1, size2;
Radek Krejci8bc9ca02015-06-04 15:52:46 +02002261
Michal Vaskoc07187d2015-08-13 15:20:57 +02002262 struct lys_node_container *cont = NULL;
Radek Krejci1d82ef62015-08-07 14:44:40 +02002263 struct lys_node_container *cont_orig = (struct lys_node_container *)node;
Michal Vaskoc07187d2015-08-13 15:20:57 +02002264 struct lys_node_choice *choice = NULL;
Radek Krejci1d82ef62015-08-07 14:44:40 +02002265 struct lys_node_choice *choice_orig = (struct lys_node_choice *)node;
Michal Vaskoc07187d2015-08-13 15:20:57 +02002266 struct lys_node_leaf *leaf = NULL;
Radek Krejci1d82ef62015-08-07 14:44:40 +02002267 struct lys_node_leaf *leaf_orig = (struct lys_node_leaf *)node;
Michal Vaskoc07187d2015-08-13 15:20:57 +02002268 struct lys_node_leaflist *llist = NULL;
Radek Krejci1d82ef62015-08-07 14:44:40 +02002269 struct lys_node_leaflist *llist_orig = (struct lys_node_leaflist *)node;
Michal Vaskoc07187d2015-08-13 15:20:57 +02002270 struct lys_node_list *list = NULL;
Radek Krejci1d82ef62015-08-07 14:44:40 +02002271 struct lys_node_list *list_orig = (struct lys_node_list *)node;
Michal Vaskoc07187d2015-08-13 15:20:57 +02002272 struct lys_node_anyxml *anyxml = NULL;
Radek Krejci1d82ef62015-08-07 14:44:40 +02002273 struct lys_node_anyxml *anyxml_orig = (struct lys_node_anyxml *)node;
Michal Vaskoc07187d2015-08-13 15:20:57 +02002274 struct lys_node_uses *uses = NULL;
Radek Krejci1d82ef62015-08-07 14:44:40 +02002275 struct lys_node_uses *uses_orig = (struct lys_node_uses *)node;
Michal Vaskoc07187d2015-08-13 15:20:57 +02002276 struct lys_node_grp *grp = NULL;
Radek Krejci1d82ef62015-08-07 14:44:40 +02002277 struct lys_node_grp *grp_orig = (struct lys_node_grp *)node;
Michal Vasko44fb6382016-06-29 11:12:27 +02002278 struct lys_node_rpc_action *rpc = NULL;
2279 struct lys_node_rpc_action *rpc_orig = (struct lys_node_rpc_action *)node;
2280 struct lys_node_inout *io = NULL;
2281 struct lys_node_inout *io_orig = (struct lys_node_inout *)node;
2282 struct lys_node_rpc_action *ntf = NULL;
2283 struct lys_node_rpc_action *ntf_orig = (struct lys_node_rpc_action *)node;
Michal Vaskoc07187d2015-08-13 15:20:57 +02002284 struct lys_node_case *cs = NULL;
Radek Krejci1d82ef62015-08-07 14:44:40 +02002285 struct lys_node_case *cs_orig = (struct lys_node_case *)node;
Radek Krejci8bc9ca02015-06-04 15:52:46 +02002286
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002287 /* we cannot just duplicate memory since the strings are stored in
2288 * dictionary and we need to update dictionary counters.
2289 */
Radek Krejci8bc9ca02015-06-04 15:52:46 +02002290
Radek Krejci1d82ef62015-08-07 14:44:40 +02002291 switch (node->nodetype) {
Radek Krejci76512572015-08-04 09:47:08 +02002292 case LYS_CONTAINER:
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002293 cont = calloc(1, sizeof *cont);
Radek Krejci76512572015-08-04 09:47:08 +02002294 retval = (struct lys_node *)cont;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002295 break;
2296
Radek Krejci76512572015-08-04 09:47:08 +02002297 case LYS_CHOICE:
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002298 choice = calloc(1, sizeof *choice);
Radek Krejci76512572015-08-04 09:47:08 +02002299 retval = (struct lys_node *)choice;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002300 break;
2301
Radek Krejci76512572015-08-04 09:47:08 +02002302 case LYS_LEAF:
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002303 leaf = calloc(1, sizeof *leaf);
Radek Krejci76512572015-08-04 09:47:08 +02002304 retval = (struct lys_node *)leaf;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002305 break;
2306
Radek Krejci76512572015-08-04 09:47:08 +02002307 case LYS_LEAFLIST:
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002308 llist = calloc(1, sizeof *llist);
Radek Krejci76512572015-08-04 09:47:08 +02002309 retval = (struct lys_node *)llist;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002310 break;
2311
Radek Krejci76512572015-08-04 09:47:08 +02002312 case LYS_LIST:
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002313 list = calloc(1, sizeof *list);
Radek Krejci76512572015-08-04 09:47:08 +02002314 retval = (struct lys_node *)list;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002315 break;
2316
Radek Krejci76512572015-08-04 09:47:08 +02002317 case LYS_ANYXML:
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002318 anyxml = calloc(1, sizeof *anyxml);
Radek Krejci76512572015-08-04 09:47:08 +02002319 retval = (struct lys_node *)anyxml;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002320 break;
2321
Radek Krejci76512572015-08-04 09:47:08 +02002322 case LYS_USES:
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002323 uses = calloc(1, sizeof *uses);
Radek Krejci76512572015-08-04 09:47:08 +02002324 retval = (struct lys_node *)uses;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002325 break;
2326
Radek Krejci76512572015-08-04 09:47:08 +02002327 case LYS_CASE:
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002328 cs = calloc(1, sizeof *cs);
Radek Krejci76512572015-08-04 09:47:08 +02002329 retval = (struct lys_node *)cs;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002330 break;
2331
Radek Krejci76512572015-08-04 09:47:08 +02002332 case LYS_GROUPING:
Radek Krejcid12f57b2015-08-06 10:43:39 +02002333 grp = calloc(1, sizeof *grp);
2334 retval = (struct lys_node *)grp;
2335 break;
2336
Radek Krejci76512572015-08-04 09:47:08 +02002337 case LYS_RPC:
Michal Vasko44fb6382016-06-29 11:12:27 +02002338 case LYS_ACTION:
Radek Krejcid12f57b2015-08-06 10:43:39 +02002339 rpc = calloc(1, sizeof *rpc);
2340 retval = (struct lys_node *)rpc;
2341 break;
2342
Radek Krejci76512572015-08-04 09:47:08 +02002343 case LYS_INPUT:
2344 case LYS_OUTPUT:
Radek Krejcid12f57b2015-08-06 10:43:39 +02002345 io = calloc(1, sizeof *io);
2346 retval = (struct lys_node *)io;
2347 break;
2348
Radek Krejci76512572015-08-04 09:47:08 +02002349 case LYS_NOTIF:
Radek Krejcid12f57b2015-08-06 10:43:39 +02002350 ntf = calloc(1, sizeof *ntf);
2351 retval = (struct lys_node *)ntf;
Michal Vasko38d01f72015-06-15 09:41:06 +02002352 break;
Radek Krejci8bc9ca02015-06-04 15:52:46 +02002353
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002354 default:
Michal Vaskod23ce592015-08-06 09:55:37 +02002355 LOGINT;
Michal Vasko49168a22015-08-17 16:35:41 +02002356 goto error;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002357 }
Radek Krejcib388c152015-06-04 17:03:03 +02002358
Michal Vasko253035f2015-12-17 16:58:13 +01002359 if (!retval) {
2360 LOGMEM;
2361 return NULL;
2362 }
2363
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002364 /*
2365 * duplicate generic part of the structure
2366 */
Radek Krejci1d82ef62015-08-07 14:44:40 +02002367 retval->name = lydict_insert(ctx, node->name, 0);
2368 retval->dsc = lydict_insert(ctx, node->dsc, 0);
2369 retval->ref = lydict_insert(ctx, node->ref, 0);
Michal Vasko71e1aa82015-08-12 12:17:51 +02002370 retval->nacm = nacm;
Radek Krejci1d82ef62015-08-07 14:44:40 +02002371 retval->flags = node->flags;
Radek Krejci1574a8d2015-08-03 14:16:52 +02002372 if (!(retval->flags & LYS_CONFIG_MASK)) {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002373 /* set parent's config flag */
Radek Krejci1574a8d2015-08-03 14:16:52 +02002374 retval->flags |= flags & LYS_CONFIG_MASK;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002375 }
Radek Krejci8bc9ca02015-06-04 15:52:46 +02002376
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002377 retval->module = module;
Radek Krejci1d82ef62015-08-07 14:44:40 +02002378 retval->nodetype = node->nodetype;
Radek Krejci8bc9ca02015-06-04 15:52:46 +02002379
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002380 retval->prev = retval;
Radek Krejci8bc9ca02015-06-04 15:52:46 +02002381
Michal Vaskoc5c26b02016-06-29 11:10:29 +02002382 retval->iffeature_size = node->iffeature_size;
2383 retval->iffeature = calloc(retval->iffeature_size, sizeof *retval->iffeature);
2384 if (!retval->iffeature) {
Michal Vasko253035f2015-12-17 16:58:13 +01002385 LOGMEM;
2386 goto error;
2387 }
Radek Krejci8bc9ca02015-06-04 15:52:46 +02002388
Michal Vaskod51d6ad2016-02-16 13:24:31 +01002389 if (!shallow) {
Michal Vaskoc5c26b02016-06-29 11:10:29 +02002390 for (i = 0; i < node->iffeature_size; ++i) {
Radek Krejci9ff0a922016-07-14 13:08:05 +02002391 resolve_iffeature_getsizes(&node->iffeature[i], &size1, &size2);
2392 if (size1) {
2393 /* there is something to duplicate */
2394
2395 /* duplicate compiled expression */
2396 size = (size1 / 4) + (size1 % 4) ? 1 : 0;
2397 retval->iffeature[i].expr = malloc(size * sizeof *retval->iffeature[i].expr);
2398 memcpy(retval->iffeature[i].expr, node->iffeature[i].expr, size * sizeof *retval->iffeature[i].expr);
2399
2400 /* list of feature pointer must be updated to point to the resulting tree */
2401 retval->iffeature[i].features = malloc(size2 * sizeof *retval->iffeature[i].features);
2402 for (j = 0; (unsigned int)j < size2; j++) {
2403 rc = unres_schema_dup(module, unres, &node->iffeature[i].features[j], UNRES_IFFEAT,
2404 &retval->iffeature[i].features[j]);
2405 if (rc == EXIT_SUCCESS) {
2406 /* feature is not resolved, duplicate the expression string */
2407 retval->iffeature[i].features[j] = (void *)strdup((char *)node->iffeature[i].features[j]);
2408 } else if (rc == EXIT_FAILURE) {
2409 /* feature is resolved in origin, so copy it
2410 * - duplication is used for instantiating groupings
2411 * and if-feature inside grouping is supposed to be
2412 * resolved inside the original grouping, so we want
2413 * to keep pointers to features from the grouping
2414 * context */
2415 retval->iffeature[i].features[j] = node->iffeature[i].features[j];
2416 } else if (rc == -1) {
2417 goto error;
2418 }
2419 }
2420 }
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002421 }
Michal Vaskoff006c12016-02-17 11:15:19 +01002422
Michal Vaskod51d6ad2016-02-16 13:24:31 +01002423 /* connect it to the parent */
2424 if (lys_node_addchild(parent, retval->module, retval)) {
2425 goto error;
2426 }
Radek Krejcidce51452015-06-16 15:20:08 +02002427
Michal Vaskod51d6ad2016-02-16 13:24:31 +01002428 /* go recursively */
2429 if (!(node->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
2430 LY_TREE_FOR(node->child, child) {
2431 if (!lys_node_dup(module, retval, child, retval->flags, retval->nacm, unres, 0)) {
2432 goto error;
2433 }
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002434 }
2435 }
Michal Vaskoff006c12016-02-17 11:15:19 +01002436 } else {
Michal Vaskoc5c26b02016-06-29 11:10:29 +02002437 memcpy(retval->iffeature, node->iffeature, retval->iffeature_size * sizeof *retval->iffeature);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002438 }
2439
Radek Krejci8bc9ca02015-06-04 15:52:46 +02002440 /*
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002441 * duplicate specific part of the structure
2442 */
2443 switch (node->nodetype) {
2444 case LYS_CONTAINER:
2445 if (cont_orig->when) {
2446 cont->when = lys_when_dup(ctx, cont_orig->when);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002447 }
2448 cont->presence = lydict_insert(ctx, cont_orig->presence, 0);
Radek Krejci8bc9ca02015-06-04 15:52:46 +02002449
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002450 cont->must_size = cont_orig->must_size;
2451 cont->tpdf_size = cont_orig->tpdf_size;
2452
Radek Krejci8bc9ca02015-06-04 15:52:46 +02002453 cont->must = lys_restr_dup(ctx, cont_orig->must, cont->must_size);
Michal Vaskodcf98e62016-05-05 17:53:53 +02002454 cont->tpdf = lys_tpdf_dup(module, lys_parent(node), cont_orig->tpdf, cont->tpdf_size, unres);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002455 break;
2456
2457 case LYS_CHOICE:
2458 if (choice_orig->when) {
2459 choice->when = lys_when_dup(ctx, choice_orig->when);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002460 }
2461
Michal Vaskod51d6ad2016-02-16 13:24:31 +01002462 if (!shallow) {
2463 if (choice_orig->dflt) {
2464 rc = lys_get_sibling(choice->child, lys_node_module(retval)->name, 0, choice_orig->dflt->name, 0, LYS_ANYXML
2465 | LYS_CASE | LYS_CONTAINER | LYS_LEAF | LYS_LEAFLIST
2466 | LYS_LIST, (const struct lys_node **)&choice->dflt);
2467 if (rc) {
2468 if (rc == EXIT_FAILURE) {
2469 LOGINT;
2470 }
2471 goto error;
Michal Vasko49168a22015-08-17 16:35:41 +02002472 }
Michal Vaskod51d6ad2016-02-16 13:24:31 +01002473 } else {
2474 /* useless to check return value, we don't know whether
2475 * there really wasn't any default defined or it just hasn't
2476 * been resolved, we just hope for the best :)
2477 */
2478 unres_schema_dup(module, unres, choice_orig, UNRES_CHOICE_DFLT, choice);
Michal Vasko49168a22015-08-17 16:35:41 +02002479 }
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002480 } else {
Michal Vaskod51d6ad2016-02-16 13:24:31 +01002481 choice->dflt = choice_orig->dflt;
Radek Krejci8bc9ca02015-06-04 15:52:46 +02002482 }
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002483 break;
2484
2485 case LYS_LEAF:
Radek Krejci3a5501d2016-07-18 22:03:34 +02002486 if (lys_type_dup(module, retval, &(leaf->type), &(leaf_orig->type), ingrouping(retval), unres)) {
Michal Vaskob84f88a2015-09-24 13:16:10 +02002487 goto error;
2488 }
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002489 leaf->units = lydict_insert(module->ctx, leaf_orig->units, 0);
2490
2491 if (leaf_orig->dflt) {
2492 leaf->dflt = lydict_insert(ctx, leaf_orig->dflt, 0);
Radek Krejci48464ed2016-03-17 15:44:09 +01002493 if (unres_schema_add_str(module, unres, &leaf->type, UNRES_TYPE_DFLT, leaf->dflt) == -1) {
Michal Vasko49168a22015-08-17 16:35:41 +02002494 goto error;
2495 }
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002496 }
2497
2498 leaf->must_size = leaf_orig->must_size;
2499 leaf->must = lys_restr_dup(ctx, leaf_orig->must, leaf->must_size);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002500
2501 if (leaf_orig->when) {
2502 leaf->when = lys_when_dup(ctx, leaf_orig->when);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002503 }
2504 break;
2505
2506 case LYS_LEAFLIST:
Radek Krejci3a5501d2016-07-18 22:03:34 +02002507 if (lys_type_dup(module, retval, &(llist->type), &(llist_orig->type), ingrouping(retval), unres)) {
Michal Vaskob84f88a2015-09-24 13:16:10 +02002508 goto error;
2509 }
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002510 llist->units = lydict_insert(module->ctx, llist_orig->units, 0);
2511
2512 llist->min = llist_orig->min;
2513 llist->max = llist_orig->max;
2514
2515 llist->must_size = llist_orig->must_size;
2516 llist->must = lys_restr_dup(ctx, llist_orig->must, llist->must_size);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002517
2518 if (llist_orig->when) {
2519 llist->when = lys_when_dup(ctx, llist_orig->when);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002520 }
2521 break;
2522
2523 case LYS_LIST:
2524 list->min = list_orig->min;
2525 list->max = list_orig->max;
2526
2527 list->must_size = list_orig->must_size;
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002528 list->must = lys_restr_dup(ctx, list_orig->must, list->must_size);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002529
Radek Krejci581ce772015-11-10 17:22:40 +01002530 list->tpdf_size = list_orig->tpdf_size;
Michal Vaskodcf98e62016-05-05 17:53:53 +02002531 list->tpdf = lys_tpdf_dup(module, lys_parent(node), list_orig->tpdf, list->tpdf_size, unres);
Michal Vasko38d01f72015-06-15 09:41:06 +02002532
Radek Krejci581ce772015-11-10 17:22:40 +01002533 list->keys_size = list_orig->keys_size;
Michal Vasko38d01f72015-06-15 09:41:06 +02002534 if (list->keys_size) {
2535 list->keys = calloc(list->keys_size, sizeof *list->keys);
Michal Vasko253035f2015-12-17 16:58:13 +01002536 if (!list->keys) {
2537 LOGMEM;
2538 goto error;
2539 }
Michal Vasko0ea41032015-06-16 08:53:55 +02002540
Michal Vaskod51d6ad2016-02-16 13:24:31 +01002541 if (!shallow) {
2542 /* we managed to resolve it before, resolve it again manually */
2543 if (list_orig->keys[0]) {
2544 for (i = 0; i < list->keys_size; ++i) {
2545 rc = lys_get_sibling(list->child, lys_node_module(retval)->name, 0, list_orig->keys[i]->name, 0, LYS_LEAF,
2546 (const struct lys_node **)&list->keys[i]);
2547 if (rc) {
2548 if (rc == EXIT_FAILURE) {
2549 LOGINT;
2550 }
2551 goto error;
Michal Vasko49168a22015-08-17 16:35:41 +02002552 }
Michal Vaskod51d6ad2016-02-16 13:24:31 +01002553 }
2554 /* it was not resolved yet, add unres copy */
2555 } else {
2556 if (unres_schema_dup(module, unres, list_orig, UNRES_LIST_KEYS, list)) {
2557 LOGINT;
Michal Vasko49168a22015-08-17 16:35:41 +02002558 goto error;
2559 }
Michal Vasko38d01f72015-06-15 09:41:06 +02002560 }
Michal Vasko0ea41032015-06-16 08:53:55 +02002561 } else {
Michal Vaskod51d6ad2016-02-16 13:24:31 +01002562 memcpy(list->keys, list_orig->keys, list->keys_size * sizeof *list->keys);
Radek Krejcia01e5432015-06-16 10:35:25 +02002563 }
Radek Krejci8bc9ca02015-06-04 15:52:46 +02002564 }
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002565
Radek Krejci581ce772015-11-10 17:22:40 +01002566 list->unique_size = list_orig->unique_size;
2567 list->unique = malloc(list->unique_size * sizeof *list->unique);
Michal Vasko253035f2015-12-17 16:58:13 +01002568 if (!list->unique) {
2569 LOGMEM;
2570 goto error;
2571 }
Radek Krejci581ce772015-11-10 17:22:40 +01002572 for (i = 0; i < list->unique_size; ++i) {
2573 list->unique[i].expr_size = list_orig->unique[i].expr_size;
2574 list->unique[i].expr = malloc(list->unique[i].expr_size * sizeof *list->unique[i].expr);
Michal Vasko253035f2015-12-17 16:58:13 +01002575 if (!list->unique[i].expr) {
2576 LOGMEM;
2577 goto error;
2578 }
Radek Krejci581ce772015-11-10 17:22:40 +01002579 for (j = 0; j < list->unique[i].expr_size; j++) {
2580 list->unique[i].expr[j] = lydict_insert(ctx, list_orig->unique[i].expr[j], 0);
2581
2582 /* if it stays in unres list, duplicate it also there */
Michal Vasko0bd29d12015-08-19 11:45:49 +02002583 unres_schema_dup(module, unres, &list_orig->unique[i], UNRES_LIST_UNIQ, &list->unique[i]);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002584 }
2585 }
Radek Krejciefaeba32015-05-27 14:30:57 +02002586
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002587 if (list_orig->when) {
2588 list->when = lys_when_dup(ctx, list_orig->when);
Radek Krejciefaeba32015-05-27 14:30:57 +02002589 }
Radek Krejcidce51452015-06-16 15:20:08 +02002590 break;
2591
2592 case LYS_ANYXML:
2593 anyxml->must_size = anyxml_orig->must_size;
2594 anyxml->must = lys_restr_dup(ctx, anyxml_orig->must, anyxml->must_size);
Radek Krejcida04f4a2015-05-21 12:54:09 +02002595
2596 if (anyxml_orig->when) {
2597 anyxml->when = lys_when_dup(ctx, anyxml_orig->when);
Radek Krejcida04f4a2015-05-21 12:54:09 +02002598 }
2599 break;
2600
2601 case LYS_USES:
2602 uses->grp = uses_orig->grp;
2603
2604 if (uses_orig->when) {
2605 uses->when = lys_when_dup(ctx, uses_orig->when);
Radek Krejcida04f4a2015-05-21 12:54:09 +02002606 }
2607
2608 uses->refine_size = uses_orig->refine_size;
Michal Vasko0d204592015-10-07 09:50:04 +02002609 uses->refine = lys_refine_dup(module, uses_orig->refine, uses_orig->refine_size);
Radek Krejcida04f4a2015-05-21 12:54:09 +02002610 uses->augment_size = uses_orig->augment_size;
Michal Vaskod51d6ad2016-02-16 13:24:31 +01002611 if (!shallow) {
2612 uses->augment = lys_augment_dup(module, (struct lys_node *)uses, uses_orig->augment, uses_orig->augment_size);
Michal Vaskocda51712016-05-19 15:22:11 +02002613 if (!uses->grp || uses->grp->nacm) {
2614 assert(!uses->child);
Radek Krejci48464ed2016-03-17 15:44:09 +01002615 if (unres_schema_add_node(module, unres, uses, UNRES_USES, NULL) == -1) {
Michal Vaskod51d6ad2016-02-16 13:24:31 +01002616 goto error;
2617 }
Michal Vasko49168a22015-08-17 16:35:41 +02002618 }
Michal Vaskod51d6ad2016-02-16 13:24:31 +01002619 } else {
2620 memcpy(uses->augment, uses_orig->augment, uses->augment_size * sizeof *uses->augment);
Radek Krejcida04f4a2015-05-21 12:54:09 +02002621 }
2622 break;
2623
Radek Krejcidce51452015-06-16 15:20:08 +02002624 case LYS_CASE:
2625 if (cs_orig->when) {
2626 cs->when = lys_when_dup(ctx, cs_orig->when);
Radek Krejcidce51452015-06-16 15:20:08 +02002627 }
2628 break;
2629
2630 case LYS_GROUPING:
2631 grp->tpdf_size = grp_orig->tpdf_size;
Michal Vaskodcf98e62016-05-05 17:53:53 +02002632 grp->tpdf = lys_tpdf_dup(module, lys_parent(node), grp_orig->tpdf, grp->tpdf_size, unres);
Radek Krejcidce51452015-06-16 15:20:08 +02002633 break;
2634
2635 case LYS_RPC:
2636 rpc->tpdf_size = rpc_orig->tpdf_size;
Michal Vaskodcf98e62016-05-05 17:53:53 +02002637 rpc->tpdf = lys_tpdf_dup(module, lys_parent(node), rpc_orig->tpdf, rpc->tpdf_size, unres);
Radek Krejcidce51452015-06-16 15:20:08 +02002638 break;
2639
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002640 case LYS_INPUT:
2641 case LYS_OUTPUT:
Radek Krejcida04f4a2015-05-21 12:54:09 +02002642 io->tpdf_size = io_orig->tpdf_size;
Michal Vaskodcf98e62016-05-05 17:53:53 +02002643 io->tpdf = lys_tpdf_dup(module, lys_parent(node), io_orig->tpdf, io->tpdf_size, unres);
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002644 break;
2645
Radek Krejcida04f4a2015-05-21 12:54:09 +02002646 case LYS_NOTIF:
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02002647 ntf->tpdf_size = ntf_orig->tpdf_size;
Michal Vaskodcf98e62016-05-05 17:53:53 +02002648 ntf->tpdf = lys_tpdf_dup(module, lys_parent(node), ntf_orig->tpdf, ntf->tpdf_size, unres);
Radek Krejcida04f4a2015-05-21 12:54:09 +02002649 break;
2650
2651 default:
2652 /* LY_NODE_AUGMENT */
2653 LOGINT;
Michal Vasko49168a22015-08-17 16:35:41 +02002654 goto error;
Radek Krejcida04f4a2015-05-21 12:54:09 +02002655 }
Radek Krejcida04f4a2015-05-21 12:54:09 +02002656
2657 return retval;
Michal Vasko49168a22015-08-17 16:35:41 +02002658
2659error:
2660
Michal Vaskod51d6ad2016-02-16 13:24:31 +01002661 lys_node_free(retval, NULL, 0);
Michal Vasko49168a22015-08-17 16:35:41 +02002662 return NULL;
Radek Krejcida04f4a2015-05-21 12:54:09 +02002663}
2664
Michal Vasko13b15832015-08-19 11:04:48 +02002665void
Michal Vaskoff006c12016-02-17 11:15:19 +01002666lys_node_switch(struct lys_node *dst, struct lys_node *src)
2667{
2668 struct lys_node *child;
2669
Michal Vaskob42b6972016-06-06 14:21:30 +02002670 assert((dst->module == src->module) && ly_strequal(dst->name, src->name, 1) && (dst->nodetype == src->nodetype));
Michal Vaskoff006c12016-02-17 11:15:19 +01002671
2672 /* sibling next */
2673 if (dst->prev != dst) {
2674 dst->prev->next = src;
2675 }
2676
2677 /* sibling prev */
2678 if (dst->next) {
2679 dst->next->prev = src;
2680 }
2681
2682 /* parent child prev */
2683 if (!dst->next && dst->parent) {
2684 dst->parent->child->prev = src;
2685 }
2686
2687 /* next */
2688 src->next = dst->next;
2689 dst->next = NULL;
2690
2691 /* prev */
2692 if (dst->prev != dst) {
2693 src->prev = dst->prev;
2694 }
2695 dst->prev = dst;
2696
2697 /* parent child */
2698 if (dst->parent && (dst->parent->child == dst)) {
2699 dst->parent->child = src;
2700 }
2701
2702 /* parent */
2703 src->parent = dst->parent;
2704 dst->parent = NULL;
2705
2706 /* child parent */
2707 LY_TREE_FOR(dst->child, child) {
2708 if (child->parent == dst) {
2709 child->parent = src;
2710 }
2711 }
2712
2713 /* child */
2714 src->child = dst->child;
2715 dst->child = NULL;
2716}
2717
2718void
Michal Vasko627975a2016-02-11 11:39:03 +01002719lys_free(struct lys_module *module, void (*private_destructor)(const struct lys_node *node, void *priv), int remove_from_ctx)
Radek Krejcida04f4a2015-05-21 12:54:09 +02002720{
2721 struct ly_ctx *ctx;
2722 int i;
2723
2724 if (!module) {
2725 return;
2726 }
2727
2728 /* remove schema from the context */
2729 ctx = module->ctx;
Michal Vasko627975a2016-02-11 11:39:03 +01002730 if (remove_from_ctx && ctx->models.used) {
Radek Krejcida04f4a2015-05-21 12:54:09 +02002731 for (i = 0; i < ctx->models.used; i++) {
2732 if (ctx->models.list[i] == module) {
Michal Vasko627975a2016-02-11 11:39:03 +01002733 /* move all the models to not change the order in the list */
Radek Krejcida04f4a2015-05-21 12:54:09 +02002734 ctx->models.used--;
Michal Vasko627975a2016-02-11 11:39:03 +01002735 memmove(&ctx->models.list[i], ctx->models.list[i + 1], (ctx->models.used - i) * sizeof *ctx->models.list);
Radek Krejcida04f4a2015-05-21 12:54:09 +02002736 ctx->models.list[ctx->models.used] = NULL;
2737 /* we are done */
2738 break;
2739 }
2740 }
2741 }
2742
2743 /* common part with struct ly_submodule */
Michal Vaskob746fff2016-02-11 11:37:50 +01002744 module_free_common(module, private_destructor);
Radek Krejcida04f4a2015-05-21 12:54:09 +02002745
2746 /* specific items to free */
Michal Vaskob746fff2016-02-11 11:37:50 +01002747 lydict_remove(ctx, module->ns);
Radek Krejcida04f4a2015-05-21 12:54:09 +02002748
2749 free(module);
2750}
Radek Krejci7e97c352015-06-19 16:26:34 +02002751
2752/*
2753 * op: 1 - enable, 0 - disable
2754 */
2755static int
Michal Vasko1e62a092015-12-01 12:27:20 +01002756lys_features_change(const struct lys_module *module, const char *name, int op)
Radek Krejci7e97c352015-06-19 16:26:34 +02002757{
2758 int all = 0;
Radek Krejci9ff0a922016-07-14 13:08:05 +02002759 int i, j, k;
Radek Krejci7e97c352015-06-19 16:26:34 +02002760
2761 if (!module || !name || !strlen(name)) {
2762 return EXIT_FAILURE;
2763 }
2764
2765 if (!strcmp(name, "*")) {
2766 /* enable all */
2767 all = 1;
2768 }
2769
2770 /* module itself */
2771 for (i = 0; i < module->features_size; i++) {
2772 if (all || !strcmp(module->features[i].name, name)) {
2773 if (op) {
Radek Krejci9ff0a922016-07-14 13:08:05 +02002774 /* check referenced features if they are enabled */
2775 for (j = 0; j < module->features[i].iffeature_size; j++) {
Radek Krejci69b8d922016-07-27 13:13:41 +02002776 if (!resolve_iffeature(&module->features[i].iffeature[j])) {
Radek Krejci9ff0a922016-07-14 13:08:05 +02002777 LOGERR(LY_EINVAL, "Feature \"%s\" is disabled by its %d. if-feature condition.",
2778 module->features[i].name, j + 1);
2779 return EXIT_FAILURE;
2780 }
2781 }
2782
Radek Krejci1574a8d2015-08-03 14:16:52 +02002783 module->features[i].flags |= LYS_FENABLED;
Radek Krejci7e97c352015-06-19 16:26:34 +02002784 } else {
Radek Krejci1574a8d2015-08-03 14:16:52 +02002785 module->features[i].flags &= ~LYS_FENABLED;
Radek Krejci7e97c352015-06-19 16:26:34 +02002786 }
2787 if (!all) {
2788 return EXIT_SUCCESS;
2789 }
2790 }
2791 }
2792
2793 /* submodules */
Michal Vaskoc5c26b02016-06-29 11:10:29 +02002794 for (i = 0; i < module->inc_size; i++) {
2795 for (j = 0; j < module->inc[i].submodule->features_size; j++) {
2796 if (all || !strcmp(module->inc[i].submodule->features[j].name, name)) {
Radek Krejci7e97c352015-06-19 16:26:34 +02002797 if (op) {
Radek Krejci9ff0a922016-07-14 13:08:05 +02002798 /* check referenced features if they are enabled */
2799 for (k = 0; k < module->inc[i].submodule->features[j].iffeature_size; k++) {
Radek Krejci69b8d922016-07-27 13:13:41 +02002800 if (!resolve_iffeature(&module->inc[i].submodule->features[j].iffeature[k])) {
Radek Krejci9ff0a922016-07-14 13:08:05 +02002801 LOGERR(LY_EINVAL, "Feature \"%s\" is disabled by its %d. if-feature condition.",
2802 module->inc[i].submodule->features[j].name, k + 1);
2803 return EXIT_FAILURE;
2804 }
2805 }
2806
Michal Vaskoc5c26b02016-06-29 11:10:29 +02002807 module->inc[i].submodule->features[j].flags |= LYS_FENABLED;
Radek Krejci7e97c352015-06-19 16:26:34 +02002808 } else {
Michal Vaskoc5c26b02016-06-29 11:10:29 +02002809 module->inc[i].submodule->features[j].flags &= ~LYS_FENABLED;
Radek Krejci7e97c352015-06-19 16:26:34 +02002810 }
2811 if (!all) {
2812 return EXIT_SUCCESS;
2813 }
2814 }
2815 }
2816 }
2817
2818 if (all) {
2819 return EXIT_SUCCESS;
2820 } else {
2821 return EXIT_FAILURE;
2822 }
2823}
2824
2825API int
Michal Vasko1e62a092015-12-01 12:27:20 +01002826lys_features_enable(const struct lys_module *module, const char *feature)
Radek Krejci7e97c352015-06-19 16:26:34 +02002827{
Radek Krejci1d82ef62015-08-07 14:44:40 +02002828 return lys_features_change(module, feature, 1);
Radek Krejci7e97c352015-06-19 16:26:34 +02002829}
2830
2831API int
Michal Vasko1e62a092015-12-01 12:27:20 +01002832lys_features_disable(const struct lys_module *module, const char *feature)
Radek Krejci7e97c352015-06-19 16:26:34 +02002833{
Radek Krejci1d82ef62015-08-07 14:44:40 +02002834 return lys_features_change(module, feature, 0);
Radek Krejcie98bb4b2015-07-30 14:21:41 +02002835}
2836
2837API int
Michal Vasko1e62a092015-12-01 12:27:20 +01002838lys_features_state(const struct lys_module *module, const char *feature)
Radek Krejcie98bb4b2015-07-30 14:21:41 +02002839{
2840 int i, j;
2841
2842 if (!module || !feature) {
2843 return -1;
2844 }
2845
2846 /* search for the specified feature */
2847 /* module itself */
2848 for (i = 0; i < module->features_size; i++) {
2849 if (!strcmp(feature, module->features[i].name)) {
Radek Krejci1574a8d2015-08-03 14:16:52 +02002850 if (module->features[i].flags & LYS_FENABLED) {
Radek Krejcie98bb4b2015-07-30 14:21:41 +02002851 return 1;
2852 } else {
2853 return 0;
2854 }
2855 }
2856 }
2857
2858 /* submodules */
2859 for (j = 0; j < module->inc_size; j++) {
2860 for (i = 0; i < module->inc[j].submodule->features_size; i++) {
2861 if (!strcmp(feature, module->inc[j].submodule->features[i].name)) {
Radek Krejci1574a8d2015-08-03 14:16:52 +02002862 if (module->inc[j].submodule->features[i].flags & LYS_FENABLED) {
Radek Krejcie98bb4b2015-07-30 14:21:41 +02002863 return 1;
2864 } else {
2865 return 0;
2866 }
2867 }
2868 }
2869 }
2870
Radek Krejcie98bb4b2015-07-30 14:21:41 +02002871 /* feature definition not found */
2872 return -1;
Radek Krejci7e97c352015-06-19 16:26:34 +02002873}
Michal Vasko2367e7c2015-07-07 11:33:44 +02002874
Radek Krejci96a10da2015-07-30 11:00:14 +02002875API const char **
Michal Vasko1e62a092015-12-01 12:27:20 +01002876lys_features_list(const struct lys_module *module, uint8_t **states)
Michal Vasko2367e7c2015-07-07 11:33:44 +02002877{
Radek Krejci96a10da2015-07-30 11:00:14 +02002878 const char **result = NULL;
Radek Krejcie98bb4b2015-07-30 14:21:41 +02002879 int i, j;
Michal Vasko2367e7c2015-07-07 11:33:44 +02002880 unsigned int count;
2881
2882 if (!module) {
2883 return NULL;
2884 }
2885
2886 count = module->features_size;
2887 for (i = 0; i < module->inc_size; i++) {
2888 count += module->inc[i].submodule->features_size;
2889 }
Radek Krejcie98bb4b2015-07-30 14:21:41 +02002890 result = malloc((count + 1) * sizeof *result);
Michal Vasko253035f2015-12-17 16:58:13 +01002891 if (!result) {
2892 LOGMEM;
2893 return NULL;
2894 }
Radek Krejcie98bb4b2015-07-30 14:21:41 +02002895 if (states) {
2896 *states = malloc((count + 1) * sizeof **states);
Michal Vasko253035f2015-12-17 16:58:13 +01002897 if (!(*states)) {
2898 LOGMEM;
2899 free(result);
2900 return NULL;
2901 }
Michal Vasko2367e7c2015-07-07 11:33:44 +02002902 }
Michal Vasko2367e7c2015-07-07 11:33:44 +02002903 count = 0;
2904
2905 /* module itself */
2906 for (i = 0; i < module->features_size; i++) {
Radek Krejci96a10da2015-07-30 11:00:14 +02002907 result[count] = module->features[i].name;
Radek Krejcie98bb4b2015-07-30 14:21:41 +02002908 if (states) {
Radek Krejci1574a8d2015-08-03 14:16:52 +02002909 if (module->features[i].flags & LYS_FENABLED) {
Radek Krejcie98bb4b2015-07-30 14:21:41 +02002910 (*states)[count] = 1;
Michal Vasko2367e7c2015-07-07 11:33:44 +02002911 } else {
Radek Krejcie98bb4b2015-07-30 14:21:41 +02002912 (*states)[count] = 0;
Michal Vasko2367e7c2015-07-07 11:33:44 +02002913 }
2914 }
Radek Krejcie98bb4b2015-07-30 14:21:41 +02002915 count++;
Michal Vasko2367e7c2015-07-07 11:33:44 +02002916 }
2917
2918 /* submodules */
2919 for (j = 0; j < module->inc_size; j++) {
2920 for (i = 0; i < module->inc[j].submodule->features_size; i++) {
Radek Krejci96a10da2015-07-30 11:00:14 +02002921 result[count] = module->inc[j].submodule->features[i].name;
Radek Krejci374b94e2015-08-13 09:44:22 +02002922 if (states) {
2923 if (module->inc[j].submodule->features[i].flags & LYS_FENABLED) {
2924 (*states)[count] = 1;
2925 } else {
2926 (*states)[count] = 0;
2927 }
Michal Vasko2367e7c2015-07-07 11:33:44 +02002928 }
Radek Krejcie98bb4b2015-07-30 14:21:41 +02002929 count++;
Michal Vasko2367e7c2015-07-07 11:33:44 +02002930 }
2931 }
2932
Radek Krejcie98bb4b2015-07-30 14:21:41 +02002933 /* terminating NULL byte */
Michal Vasko2367e7c2015-07-07 11:33:44 +02002934 result[count] = NULL;
Michal Vasko2367e7c2015-07-07 11:33:44 +02002935
2936 return result;
2937}
Michal Vaskobaefb032015-09-24 14:52:10 +02002938
Radek Krejci6910a032016-04-13 10:06:21 +02002939API struct lys_module *
Michal Vasko320e8532016-02-15 13:11:57 +01002940lys_node_module(const struct lys_node *node)
Radek Krejcic071c542016-01-27 14:57:51 +01002941{
2942 return node->module->type ? ((struct lys_submodule *)node->module)->belongsto : node->module;
2943}
2944
Radek Krejci6910a032016-04-13 10:06:21 +02002945API struct lys_module *
Radek Krejcic4283442016-04-22 09:19:27 +02002946lys_main_module(const struct lys_module *module)
Michal Vasko320e8532016-02-15 13:11:57 +01002947{
2948 return (module->type ? ((struct lys_submodule *)module)->belongsto : (struct lys_module *)module);
2949}
2950
Michal Vaskobaefb032015-09-24 14:52:10 +02002951API struct lys_node *
Michal Vasko1e62a092015-12-01 12:27:20 +01002952lys_parent(const struct lys_node *node)
Michal Vaskobaefb032015-09-24 14:52:10 +02002953{
2954 if (!node || !node->parent) {
2955 return NULL;
2956 }
2957
2958 if (node->parent->nodetype == LYS_AUGMENT) {
2959 return ((struct lys_node_augment *)node->parent)->target;
2960 }
2961
2962 return node->parent;
2963}
Michal Vasko1b229152016-01-13 11:28:38 +01002964
Radek Krejcifa0b5e02016-02-04 13:57:03 +01002965API void *
Michal Vasko1b229152016-01-13 11:28:38 +01002966lys_set_private(const struct lys_node *node, void *priv)
2967{
Radek Krejcifa0b5e02016-02-04 13:57:03 +01002968 void *prev;
2969
Michal Vasko1b229152016-01-13 11:28:38 +01002970 if (!node) {
Radek Krejcifa0b5e02016-02-04 13:57:03 +01002971 LOGERR(LY_EINVAL, "%s: Invalid parameter.", __func__);
2972 return NULL;
Michal Vasko1b229152016-01-13 11:28:38 +01002973 }
2974
Mislav Novakovicb5529e52016-02-29 11:42:43 +01002975 prev = node->priv;
2976 ((struct lys_node *)node)->priv = priv;
Radek Krejcifa0b5e02016-02-04 13:57:03 +01002977
2978 return prev;
Michal Vasko1b229152016-01-13 11:28:38 +01002979}
Michal Vasko9eb6dd02016-05-02 14:52:40 +02002980
Michal Vasko01c6fd22016-05-20 11:43:05 +02002981int
2982lys_leaf_add_leafref_target(struct lys_node_leaf *leafref_target, struct lys_node *leafref)
2983{
Radek Krejcid8fb03c2016-06-13 15:52:22 +02002984 struct lys_node_leaf *iter = leafref_target;
2985
Michal Vasko48a573d2016-07-01 11:46:02 +02002986 if (!(leafref_target->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
Michal Vasko01c6fd22016-05-20 11:43:05 +02002987 LOGINT;
2988 return -1;
2989 }
2990
Radek Krejcid8fb03c2016-06-13 15:52:22 +02002991 /* check for cycles */
2992 while (iter && iter->type.base == LY_TYPE_LEAFREF) {
2993 if ((void *)iter == (void *)leafref) {
2994 /* cycle detected */
2995 LOGVAL(LYE_CIRC_LEAFREFS, LY_VLOG_LYS, leafref);
2996 return -1;
2997 }
2998 iter = iter->type.info.lref.target;
2999 }
3000
3001 /* create fake child - the ly_set structure to hold the list of
Michal Vasko48a573d2016-07-01 11:46:02 +02003002 * leafrefs referencing the leaf(-list) */
Michal Vasko01c6fd22016-05-20 11:43:05 +02003003 if (!leafref_target->child) {
3004 leafref_target->child = (void*)ly_set_new();
3005 if (!leafref_target->child) {
3006 LOGMEM;
3007 return -1;
3008 }
3009 }
Radek Krejci09891a22016-06-10 10:59:22 +02003010 ly_set_add((struct ly_set *)leafref_target->child, leafref, 0);
Michal Vasko01c6fd22016-05-20 11:43:05 +02003011
3012 return 0;
3013}
3014
Michal Vasko8548e082016-07-22 12:00:18 +02003015/* not needed currently */
3016#if 0
3017
Michal Vasko5b3492c2016-07-20 09:37:40 +02003018static const char *
3019lys_data_path_reverse(const struct lys_node *node, char * const buf, uint32_t buf_len)
3020{
3021 struct lys_module *prev_mod;
3022 uint32_t str_len, mod_len, buf_idx;
3023
3024 if (!(node->nodetype & (LYS_CONTAINER | LYS_LIST | LYS_LEAF | LYS_LEAFLIST | LYS_ANYXML))) {
3025 LOGINT;
3026 return NULL;
3027 }
3028
3029 buf_idx = buf_len - 1;
3030 buf[buf_idx] = '\0';
3031
3032 while (node) {
3033 if (lys_parent(node)) {
3034 prev_mod = lys_node_module(lys_parent(node));
3035 } else {
3036 prev_mod = NULL;
3037 }
3038
3039 if (node->nodetype & (LYS_CONTAINER | LYS_LIST | LYS_LEAF | LYS_LEAFLIST | LYS_ANYXML)) {
3040 str_len = strlen(node->name);
3041
3042 if (prev_mod != node->module) {
3043 mod_len = strlen(node->module->name);
3044 } else {
3045 mod_len = 0;
3046 }
3047
3048 if (buf_idx < 1 + (mod_len ? mod_len + 1 : 0) + str_len) {
3049 LOGINT;
3050 return NULL;
3051 }
3052
3053 buf_idx -= 1 + (mod_len ? mod_len + 1 : 0) + str_len;
3054
3055 buf[buf_idx] = '/';
3056 if (mod_len) {
3057 memcpy(buf + buf_idx + 1, node->module->name, mod_len);
3058 buf[buf_idx + 1 + mod_len] = ':';
3059 }
3060 memcpy(buf + buf_idx + 1 + (mod_len ? mod_len + 1 : 0), node->name, str_len);
3061 }
3062
3063 node = lys_parent(node);
3064 }
3065
3066 return buf + buf_idx;
3067}
3068
Michal Vasko8548e082016-07-22 12:00:18 +02003069#endif
3070
3071API struct ly_set *
3072lys_xpath_atomize(const struct lys_node *cur_snode, const char *expr, int options)
Michal Vasko5b3492c2016-07-20 09:37:40 +02003073{
Michal Vasko5b3492c2016-07-20 09:37:40 +02003074 struct lyxp_set *set;
Michal Vasko8548e082016-07-22 12:00:18 +02003075 struct ly_set *ret_set;
Michal Vasko5b3492c2016-07-20 09:37:40 +02003076 uint32_t i;
3077
Michal Vasko8548e082016-07-22 12:00:18 +02003078 if (!cur_snode || !expr) {
3079 return NULL;
Michal Vasko5b3492c2016-07-20 09:37:40 +02003080 }
3081
3082 set = calloc(1, sizeof *set);
3083 if (!set) {
3084 LOGMEM;
Michal Vasko8548e082016-07-22 12:00:18 +02003085 return NULL;
Michal Vasko5b3492c2016-07-20 09:37:40 +02003086 }
3087
3088 if (options & LYXP_MUST) {
3089 options &= ~LYXP_MUST;
3090 options |= LYXP_SNODE_MUST;
3091 } else if (options & LYXP_WHEN) {
3092 options &= ~LYXP_WHEN;
3093 options |= LYXP_SNODE_WHEN;
3094 } else {
3095 options |= LYXP_SNODE;
3096 }
3097
3098 if (lyxp_atomize(expr, cur_snode, set, options)) {
3099 free(set->val.snodes);
3100 free(set);
Michal Vasko8548e082016-07-22 12:00:18 +02003101 return NULL;
Michal Vasko5b3492c2016-07-20 09:37:40 +02003102 }
3103
Michal Vasko8548e082016-07-22 12:00:18 +02003104 ret_set = ly_set_new();
Michal Vasko5b3492c2016-07-20 09:37:40 +02003105
Michal Vasko5b3492c2016-07-20 09:37:40 +02003106 for (i = 0; i < set->used; ++i) {
3107 switch (set->val.snodes[i].type) {
3108 case LYXP_NODE_ELEM:
Michal Vasko8548e082016-07-22 12:00:18 +02003109 if (ly_set_add(ret_set, set->val.snodes[i].snode, LY_SET_OPT_USEASLIST)) {
3110 ly_set_free(ret_set);
3111 free(set->val.snodes);
3112 free(set);
3113 return NULL;
3114 }
Michal Vasko5b3492c2016-07-20 09:37:40 +02003115 break;
3116 default:
Michal Vasko8548e082016-07-22 12:00:18 +02003117 /* ignore roots, text and attr should not appear ever */
Michal Vasko5b3492c2016-07-20 09:37:40 +02003118 break;
3119 }
3120 }
3121
Michal Vasko5b3492c2016-07-20 09:37:40 +02003122 free(set->val.snodes);
3123 free(set);
Michal Vasko8548e082016-07-22 12:00:18 +02003124 return ret_set;
Michal Vasko5b3492c2016-07-20 09:37:40 +02003125}
3126
Michal Vasko9eb6dd02016-05-02 14:52:40 +02003127static void
3128lys_switch_deviation(struct lys_deviation *dev, struct lys_module *dev_module)
3129{
3130 int ret;
3131 char *parent_path;
3132 struct lys_node *target;
3133 const struct lys_module *target_module;
3134
3135 target_module = lys_get_import_module(dev_module, NULL, 0, dev->target_name + 1,
3136 strcspn(dev->target_name, ":") - 1);
3137
3138 if (dev->deviate[0].mod == LY_DEVIATE_NO) {
3139 if (dev->orig_node) {
3140 /* removing not-supported deviation ... */
3141 if (strrchr(dev->target_name, '/') != dev->target_name) {
3142 /* ... from a parent */
3143 parent_path = strndup(dev->target_name, strrchr(dev->target_name, '/') - dev->target_name);
3144
3145 target = NULL;
3146 ret = resolve_augment_schema_nodeid(parent_path, NULL, target_module, (const struct lys_node **)&target);
3147 free(parent_path);
3148 if (ret || !target) {
3149 LOGINT;
3150 return;
3151 }
3152
3153 lys_node_addchild(target, NULL, dev->orig_node);
3154 } else {
3155 /* ... from top-level data */
3156 lys_node_addchild(NULL, (struct lys_module *)target_module, dev->orig_node);
3157 }
3158
3159 dev->orig_node = NULL;
3160 } else {
3161 /* adding not-supported deviation */
3162 target = NULL;
3163 ret = resolve_augment_schema_nodeid(dev->target_name, NULL, target_module, (const struct lys_node **)&target);
3164 if (ret || !target) {
3165 LOGINT;
3166 return;
3167 }
3168
3169 lys_node_unlink(target);
3170 dev->orig_node = target;
3171 }
3172 } else {
3173 target = NULL;
3174 ret = resolve_augment_schema_nodeid(dev->target_name, NULL, target_module, (const struct lys_node **)&target);
3175 if (ret || !target) {
3176 LOGINT;
3177 return;
3178 }
3179
3180 lys_node_switch(target, dev->orig_node);
3181 dev->orig_node = target;
3182 }
3183}
3184
3185void
3186lys_deviation_add_ext_imports(struct lys_module *dev_target_module, struct lys_module *dev_module)
3187{
3188 int i, j;
3189
3190 /* mark the target module as deviated */
3191 dev_target_module->deviated = 1;
3192
3193 /* copy our imports to the deviated module (deviations may need them to work) */
3194 for (i = 0; i < dev_module->imp_size; ++i) {
3195 for (j = 0; j < dev_target_module->imp_size; ++j) {
3196 if (dev_module->imp[i].module == dev_target_module->imp[j].module) {
3197 break;
3198 }
3199 }
3200
3201 if (j < dev_target_module->imp_size) {
3202 /* import is already there */
3203 continue;
3204 }
3205
3206 /* copy the import, mark it as external */
3207 ++dev_target_module->imp_size;
3208 dev_target_module->imp = ly_realloc(dev_target_module->imp, dev_target_module->imp_size * sizeof *dev_target_module->imp);
3209 if (!dev_target_module->imp) {
3210 LOGMEM;
3211 return;
3212 }
3213 dev_target_module->imp[dev_target_module->imp_size - 1].module = dev_module->imp[i].module;
3214 dev_target_module->imp[dev_target_module->imp_size - 1].prefix = lydict_insert(dev_module->ctx, dev_module->imp[i].prefix, 0);
3215 memcpy(dev_target_module->imp[dev_target_module->imp_size - 1].rev, dev_module->imp[i].rev, LY_REV_SIZE);
3216 dev_target_module->imp[dev_target_module->imp_size - 1].external = 1;
3217 }
3218
3219 /* copy ourselves to the deviated module as a special import (if we haven't yet, there could be more deviations of the same module) */
3220 for (i = 0; i < dev_target_module->imp_size; ++i) {
3221 if (dev_target_module->imp[i].module == dev_module) {
3222 break;
3223 }
3224 }
3225
3226 if (i == dev_target_module->imp_size) {
3227 ++dev_target_module->imp_size;
3228 dev_target_module->imp = ly_realloc(dev_target_module->imp, dev_target_module->imp_size * sizeof *dev_target_module->imp);
3229 if (!dev_target_module->imp) {
3230 LOGMEM;
3231 return;
3232 }
3233 dev_target_module->imp[dev_target_module->imp_size - 1].module = dev_module;
3234 dev_target_module->imp[dev_target_module->imp_size - 1].prefix = lydict_insert(dev_module->ctx, dev_module->prefix, 0);
3235 if (dev_module->rev_size) {
3236 memcpy(dev_target_module->imp[dev_target_module->imp_size - 1].rev, dev_module->rev[0].date, LY_REV_SIZE);
3237 } else {
3238 memset(dev_target_module->imp[dev_target_module->imp_size - 1].rev, 0, LY_REV_SIZE);
3239 }
3240 dev_target_module->imp[dev_target_module->imp_size - 1].external = 2;
3241 } else {
3242 /* it could have been added by another deviating module that imported this deviating module */
3243 dev_target_module->imp[i].external = 2;
3244 }
3245}
3246
3247/* temporarily removes or applies deviations, updates module deviation flag accordingly */
3248void
3249lys_switch_deviations(struct lys_module *module)
3250{
3251 uint8_t i, j, changes = 0;
3252
3253 for (i = 0; i < module->imp_size; ++i) {
3254 if (module->imp[i].external == 2) {
3255 for (j = 0; j < module->imp[i].module->deviation_size; ++j) {
3256 lys_switch_deviation(&module->imp[i].module->deviation[j], module->imp[i].module);
3257 }
3258
3259 changes = 1;
3260 }
3261 }
3262
3263 if (changes) {
3264 if (module->deviated) {
3265 module->deviated = 0;
3266 } else {
3267 module->deviated = 1;
3268 }
3269 }
3270}
3271
3272/* not needed currently, but tested and working */
3273#if 0
3274
3275void
3276lys_sub_module_apply_devs_augs(struct lys_module *module)
3277{
3278 int i;
3279 struct lys_node_augment *aug;
3280 struct lys_node *last;
3281
3282 /* re-apply deviations */
3283 for (i = 0; i < module->deviation_size; ++i) {
3284 lys_switch_deviation(&module->deviation[i], module);
3285 assert(module->deviation[i].orig_node);
3286 lys_deviation_add_ext_imports(lys_node_module(module->deviation[i].orig_node), module);
3287 }
3288
3289 /* re-apply augments */
3290 for (i = 0; i < module->augment_size; ++i) {
3291 aug = &module->augment[i];
3292 assert(aug->target);
3293
3294 /* reconnect augmenting data into the target - add them to the target child list */
3295 if (aug->target->child) {
3296 last = aug->target->child->prev;
3297 last->next = aug->child;
3298 aug->target->child->prev = aug->child->prev;
3299 aug->child->prev = last;
3300 } else {
3301 aug->target->child = aug->child;
3302 }
3303 }
3304}
3305
3306#endif
3307
3308void
3309lys_sub_module_remove_devs_augs(struct lys_module *module)
3310{
3311 int i, j, flag;
3312 struct lys_node *last, *elem;
3313 struct lys_module *orig_mod;
3314
3315 /* remove applied deviations */
3316 for (i = 0; i < module->deviation_size; ++i) {
3317 lys_switch_deviation(&module->deviation[i], module);
3318
3319 /* remove our deviation import, clear deviated flag is possible */
3320 orig_mod = lys_node_module(module->deviation[i].orig_node);
3321 flag = 0;
3322 for (j = 0; j < orig_mod->imp_size; ++j) {
3323 if (orig_mod->imp[j].external == 2) {
3324 if (orig_mod->imp[j].module == lys_main_module(module)) {
3325 /* our deviation import, remove it */
3326 --orig_mod->imp_size;
3327 if (j < orig_mod->imp_size) {
3328 memcpy(&orig_mod->imp[j], &orig_mod->imp[j + 1], (orig_mod->imp_size - j) * sizeof *orig_mod->imp);
3329 }
3330 --j;
3331 } else {
3332 /* some other deviation, we cannot clear the deviated flag */
3333 flag = 1;
3334 }
3335 }
3336 }
3337 if (!flag) {
3338 /* it's safe to clear the deviated flag */
3339 orig_mod->deviated = 0;
3340 }
3341 }
3342
3343 /* remove applied augments */
3344 for (i = 0; i < module->augment_size; ++i) {
Radek Krejcidbc15262016-06-16 14:58:29 +02003345 if (!module->augment[i].target) {
3346 /* skip not resolved augments */
3347 continue;
3348 }
Michal Vasko9eb6dd02016-05-02 14:52:40 +02003349
3350 elem = module->augment[i].child;
3351 if (elem) {
3352 LY_TREE_FOR(elem, last) {
3353 if (!last->next || (last->next->parent != (struct lys_node *)&module->augment[i])) {
3354 break;
3355 }
3356 }
3357 /* elem is first augment child, last is the last child */
3358
3359 /* parent child ptr */
3360 if (module->augment[i].target->child == elem) {
3361 module->augment[i].target->child = last->next;
3362 }
3363
3364 /* parent child next ptr */
3365 if (elem->prev->next) {
3366 elem->prev->next = last->next;
3367 }
3368
3369 /* parent child prev ptr */
3370 if (last->next) {
3371 last->next->prev = elem->prev;
3372 } else if (module->augment[i].target->child) {
3373 module->augment[i].target->child->prev = elem->prev;
3374 }
3375
3376 /* update augment children themselves */
3377 elem->prev = last;
3378 last->next = NULL;
3379 }
Michal Vaskob8f71322016-05-03 11:39:56 +02003380
3381 /* needs to be NULL for lys_augment_free() to free the children */
3382 module->augment[i].target = NULL;
Michal Vasko9eb6dd02016-05-02 14:52:40 +02003383 }
3384}
3385
Michal Vasko26055752016-05-03 11:36:31 +02003386int
3387lys_module_set_implement(struct lys_module *module)
3388{
3389 struct ly_ctx *ctx;
3390 int i;
3391
3392 if (module->implemented) {
3393 return EXIT_SUCCESS;
3394 }
3395
3396 ctx = module->ctx;
3397
3398 for (i = 0; i < ctx->models.used; ++i) {
3399 if (module == ctx->models.list[i]) {
3400 continue;
3401 }
3402
3403 if (!strcmp(module->name, ctx->models.list[i]->name) && ctx->models.list[i]->implemented) {
3404 LOGERR(LY_EINVAL, "Module \"%s\" in another revision already implemented.", module->name);
3405 return EXIT_FAILURE;
3406 }
3407 }
3408
3409 module->implemented = 1;
3410 return EXIT_SUCCESS;
3411}
3412
3413int
Michal Vasko9eb6dd02016-05-02 14:52:40 +02003414lys_sub_module_set_dev_aug_target_implement(struct lys_module *module)
3415{
3416 int i;
3417 struct lys_module *trg_mod;
3418
3419 for (i = 0; i < module->deviation_size; ++i) {
3420 assert(module->deviation[i].orig_node);
3421 trg_mod = lys_node_module(module->deviation[i].orig_node);
Michal Vasko26055752016-05-03 11:36:31 +02003422 if (lys_module_set_implement(trg_mod)) {
3423 return EXIT_FAILURE;
Michal Vasko9eb6dd02016-05-02 14:52:40 +02003424 }
3425 }
3426
3427 for (i = 0; i < module->augment_size; ++i) {
3428 assert(module->augment[i].target);
3429 trg_mod = lys_node_module(module->augment[i].target);
Michal Vasko26055752016-05-03 11:36:31 +02003430 if (lys_module_set_implement(trg_mod)) {
3431 return EXIT_FAILURE;
Michal Vasko9eb6dd02016-05-02 14:52:40 +02003432 }
3433 }
Michal Vasko26055752016-05-03 11:36:31 +02003434
3435 return EXIT_SUCCESS;
Michal Vasko9eb6dd02016-05-02 14:52:40 +02003436}
3437
3438void
3439lys_submodule_module_data_free(struct lys_submodule *submodule)
3440{
3441 struct lys_node *next, *elem;
3442
3443 /* remove parsed data */
3444 LY_TREE_FOR_SAFE(submodule->belongsto->data, next, elem) {
3445 if (elem->module == (struct lys_module *)submodule) {
3446 lys_node_free(elem, NULL, 0);
3447 }
3448 }
3449}