blob: b0d80404e9d0c0bc52859438f4c7853387d05eaa [file] [log] [blame]
Radek Krejci1721c012015-07-08 12:52:33 +02001/**
Michal Vasko45a0ef32016-09-22 11:07:38 +02002 * @file parser_xml.c
Radek Krejci1721c012015-07-08 12:52:33 +02003 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief XML data parser for libyang
5 *
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 Krejci1721c012015-07-08 12:52:33 +020013 */
14
15#include <assert.h>
Radek Krejci3e3affe2015-07-09 15:38:40 +020016#include <ctype.h>
Radek Krejci1721c012015-07-08 12:52:33 +020017#include <errno.h>
Radek Krejci4a49bdf2016-01-12 17:17:01 +010018#include <stdarg.h>
Radek Krejci1721c012015-07-08 12:52:33 +020019#include <stdlib.h>
20#include <string.h>
Michal Vasko8bcdf292015-08-19 14:04:43 +020021#include <limits.h>
Radek Krejci1721c012015-07-08 12:52:33 +020022
Radek Krejci998a0b82015-08-17 13:14:36 +020023#include "libyang.h"
24#include "common.h"
25#include "context.h"
Michal Vaskob7982322015-10-16 13:56:12 +020026#include "parser.h"
Radek Krejci998a0b82015-08-17 13:14:36 +020027#include "tree_internal.h"
28#include "validation.h"
Michal Vaskofc5744d2015-10-22 12:09:34 +020029#include "xml_internal.h"
Radek Krejci1721c012015-07-08 12:52:33 +020030
Michal Vasko0d343d12015-08-24 14:57:36 +020031/* does not log */
Radek Krejci76512572015-08-04 09:47:08 +020032static struct lys_node *
Radek Krejci4a49bdf2016-01-12 17:17:01 +010033xml_data_search_schemanode(struct lyxml_elem *xml, struct lys_node *start, int options)
Radek Krejci1721c012015-07-08 12:52:33 +020034{
Radek Krejci76512572015-08-04 09:47:08 +020035 struct lys_node *result, *aux;
Radek Krejci1721c012015-07-08 12:52:33 +020036
37 LY_TREE_FOR(start, result) {
Radek Krejci4a49bdf2016-01-12 17:17:01 +010038 /* skip groupings ... */
Radek Krejci76512572015-08-04 09:47:08 +020039 if (result->nodetype == LYS_GROUPING) {
Radek Krejci1721c012015-07-08 12:52:33 +020040 continue;
Radek Krejci4a49bdf2016-01-12 17:17:01 +010041 /* ... and output in case of RPC ... */
42 } else if (result->nodetype == LYS_OUTPUT && (options & LYD_OPT_RPC)) {
43 continue;
44 /* ... and input in case of RPC reply */
45 } else if (result->nodetype == LYS_INPUT && (options & LYD_OPT_RPCREPLY)) {
46 continue;
Radek Krejci1721c012015-07-08 12:52:33 +020047 }
48
Radek Krejcifb54be42015-10-02 15:21:16 +020049 /* go into cases, choices, uses and in RPCs into input and output */
50 if (result->nodetype & (LYS_CHOICE | LYS_CASE | LYS_USES | LYS_INPUT | LYS_OUTPUT)) {
Radek Krejci4a49bdf2016-01-12 17:17:01 +010051 aux = xml_data_search_schemanode(xml, result->child, options);
Radek Krejci1721c012015-07-08 12:52:33 +020052 if (aux) {
53 /* we have matching result */
54 return aux;
55 }
56 /* else, continue with next schema node */
57 continue;
58 }
59
60 /* match data nodes */
Radek Krejci749190d2016-02-18 16:26:25 +010061 if (ly_strequal(result->name, xml->name, 1)) {
Radek Krejci1721c012015-07-08 12:52:33 +020062 /* names matches, what about namespaces? */
Radek Krejci1a6303d2016-11-04 12:42:46 +010063 if (ly_strequal(lys_main_module(result->module)->ns, xml->ns->value, 1)) {
Radek Krejci1721c012015-07-08 12:52:33 +020064 /* we have matching result */
65 return result;
66 }
67 /* else, continue with next schema node */
68 continue;
69 }
70 }
71
72 /* no match */
73 return NULL;
74}
75
Michal Vasko0d343d12015-08-24 14:57:36 +020076/* logs directly */
Radek Krejcie4748472015-07-08 18:00:22 +020077static int
Michal Vaskoe3886bb2017-01-02 11:33:28 +010078xml_get_value(struct lyd_node *node, struct lyxml_elem *xml, int editbits)
Michal Vasko07471a52015-07-16 11:18:48 +020079{
Michal Vasko4c183312015-09-25 10:41:47 +020080 struct lyd_node_leaf_list *leaf = (struct lyd_node_leaf_list *)node;
Michal Vasko23b61ec2015-08-19 11:19:50 +020081
Radek Krejci0b7704f2016-03-18 12:16:14 +010082 assert(node && (node->schema->nodetype & (LYS_LEAFLIST | LYS_LEAF)) && xml);
Radek Krejci5a988152015-07-15 11:16:26 +020083
Michal Vaskod27602c2016-12-20 11:11:17 +010084 leaf->value_str = lydict_insert(node->schema->module->ctx, xml->content, 0);
Radek Krejcie4748472015-07-08 18:00:22 +020085
Radek Krejci1fe9ac02016-09-23 09:38:21 +020086 if ((editbits & 0x10) && (node->schema->nodetype & LYS_LEAF) && (!leaf->value_str || !leaf->value_str[0])) {
87 /* we have edit-config leaf/leaf-list with delete operation and no (empty) value,
88 * this is not a bug since the node is just used as a kind of selection node */
89 leaf->value_type = LY_TYPE_ERR;
90 return EXIT_SUCCESS;
91 }
92
Radek Krejci1899d6a2016-11-03 13:48:07 +010093 /* the value is here converted to a JSON format if needed in case of LY_TYPE_IDENT and LY_TYPE_INST or to a
94 * canonical form of the value */
Radek Krejcia571d942017-02-24 09:26:49 +010095 if (!lyp_parse_value(&((struct lys_node_leaf *)leaf->schema)->type, &leaf->value_str, xml, leaf, NULL, 1, 0)) {
Michal Vasko493bea72015-07-16 16:08:12 +020096 return EXIT_FAILURE;
Radek Krejcie4748472015-07-08 18:00:22 +020097 }
98
99 return EXIT_SUCCESS;
100}
101
Michal Vasko0d343d12015-08-24 14:57:36 +0200102/* logs directly */
Radek Krejci3b41a6c2015-10-31 23:06:12 +0100103static int
Radek Krejcibd930122016-08-10 13:28:26 +0200104xml_parse_data(struct ly_ctx *ctx, struct lyxml_elem *xml, struct lyd_node *parent, struct lyd_node *first_sibling,
105 struct lyd_node *prev, int options, struct unres_data *unres, struct lyd_node **result,
Michal Vaskob15cae22016-09-15 09:40:56 +0200106 struct lyd_node **act_notif)
Radek Krejci1721c012015-07-08 12:52:33 +0200107{
Michal Vaskof53187d2017-01-13 13:23:14 +0100108 const struct lys_module *mod = NULL;
Radek Krejcib1ef1872017-02-23 14:33:34 +0100109 const struct lys_submodule *submod;
Radek Krejcibd930122016-08-10 13:28:26 +0200110 struct lyd_node *diter, *dlast;
Michal Vasko5e523b62016-08-26 16:23:15 +0200111 struct lys_node *schema = NULL, *target;
112 struct lys_node_augment *aug;
Radek Krejci5f9e8c92015-10-30 10:01:06 +0100113 struct lyd_attr *dattr, *dattr_iter;
Radek Krejcia5241e52015-08-19 15:09:31 +0200114 struct lyxml_attr *attr;
Michal Vaskof748dbc2016-04-05 11:27:47 +0200115 struct lyxml_elem *child, *next;
Radek Krejci532e5e92017-02-22 12:59:24 +0100116 int i, j, havechildren, r, pos, editbits = 0;
Radek Krejci3b41a6c2015-10-31 23:06:12 +0100117 int ret = 0;
Radek Krejciabb7b582016-04-20 16:15:47 +0200118 const char *str = NULL;
Radek Krejci1721c012015-07-08 12:52:33 +0200119
Radek Krejci3b41a6c2015-10-31 23:06:12 +0100120 assert(xml);
121 assert(result);
122 *result = NULL;
123
Radek Krejci1721c012015-07-08 12:52:33 +0200124 if (!xml->ns || !xml->ns->value) {
Radek Krejci2342cf62016-01-29 16:48:23 +0100125 if (options & LYD_OPT_STRICT) {
Radek Krejci48464ed2016-03-17 15:44:09 +0100126 LOGVAL(LYE_XML_MISS, LY_VLOG_XML, xml, "element's", "namespace");
Radek Krejci2342cf62016-01-29 16:48:23 +0100127 return -1;
128 } else {
129 return 0;
130 }
Radek Krejci1721c012015-07-08 12:52:33 +0200131 }
132
133 /* find schema node */
Michal Vaskob1b19442016-07-13 12:26:01 +0200134 if (!parent) {
Michal Vaskof53187d2017-01-13 13:23:14 +0100135 mod = ly_ctx_get_module_by_ns(ctx, xml->ns->value, NULL);
136 if (ctx->data_clb) {
137 if (!mod) {
138 mod = ctx->data_clb(ctx, NULL, xml->ns->value, 0, ctx->data_clb_data);
139 } else if (!mod->implemented) {
140 mod = ctx->data_clb(ctx, mod->name, mod->ns, LY_MODCLB_NOT_IMPLEMENTED, ctx->data_clb_data);
Radek Krejci27fe55e2016-09-13 17:13:35 +0200141 }
Michal Vaskof53187d2017-01-13 13:23:14 +0100142 }
143
144 /* get the proper schema node */
145 if (mod && mod->implemented && !mod->disabled) {
146 schema = xml_data_search_schemanode(xml, mod->data, options);
147 if (!schema) {
148 /* it still can be the specific case of this module containing an augment of another module
149 * top-level choice or top-level choice's case, bleh */
150 for (j = 0; j < mod->augment_size; ++j) {
151 aug = &mod->augment[j];
152 target = aug->target;
153 if (target->nodetype & (LYS_CHOICE | LYS_CASE)) {
154 /* 1) okay, the target is choice or case */
155 while (target && (target->nodetype & (LYS_CHOICE | LYS_CASE | LYS_USES))) {
156 target = lys_parent(target);
157 }
158 /* 2) now, the data node will be top-level, there are only non-data schema nodes */
159 if (!target) {
160 while ((schema = (struct lys_node *)lys_getnext(schema, (struct lys_node *)aug, NULL, 0))) {
161 /* 3) alright, even the name matches, we found our schema node */
162 if (ly_strequal(schema->name, xml->name, 1)) {
163 break;
Michal Vasko5e523b62016-08-26 16:23:15 +0200164 }
165 }
166 }
Michal Vaskof53187d2017-01-13 13:23:14 +0100167 }
Michal Vasko5e523b62016-08-26 16:23:15 +0200168
Michal Vaskof53187d2017-01-13 13:23:14 +0100169 if (schema) {
170 break;
Michal Vasko5e523b62016-08-26 16:23:15 +0200171 }
172 }
Radek Krejci1721c012015-07-08 12:52:33 +0200173 }
174 }
175 } else {
176 /* parsing some internal node, we start with parent's schema pointer */
Radek Krejci4a49bdf2016-01-12 17:17:01 +0100177 schema = xml_data_search_schemanode(xml, parent->schema->child, options);
Michal Vaskof53187d2017-01-13 13:23:14 +0100178
179 if (schema) {
180 if (!lys_node_module(schema)->implemented && ctx->data_clb) {
Michal Vaskoad43c182017-01-23 09:55:28 +0100181 ctx->data_clb(ctx, lys_node_module(schema)->name, lys_node_module(schema)->ns,
182 LY_MODCLB_NOT_IMPLEMENTED, ctx->data_clb_data);
Michal Vaskof53187d2017-01-13 13:23:14 +0100183 }
Radek Krejci25b9fd32015-08-10 15:06:07 +0200184 }
Michal Vaskof53187d2017-01-13 13:23:14 +0100185 }
186
187 mod = lys_node_module(schema);
188 if (!mod || !mod->implemented || mod->disabled) {
Radek Krejci27fe55e2016-09-13 17:13:35 +0200189 if (options & LYD_OPT_STRICT) {
Michal Vaskof53187d2017-01-13 13:23:14 +0100190 LOGVAL(LYE_INELEM, (parent ? LY_VLOG_LYD : LY_VLOG_NONE), parent, xml->name);
Radek Krejci27fe55e2016-09-13 17:13:35 +0200191 return -1;
192 } else {
193 return 0;
194 }
Radek Krejci1721c012015-07-08 12:52:33 +0200195 }
196
Radek Krejciadb57612016-02-16 13:34:34 +0100197 /* create the element structure */
Radek Krejcib9930252015-07-08 15:47:45 +0200198 switch (schema->nodetype) {
Radek Krejci76512572015-08-04 09:47:08 +0200199 case LYS_CONTAINER:
Radek Krejci27aaa732015-09-04 15:24:04 +0200200 case LYS_LIST:
Michal Vasko2f30e572015-10-01 16:00:38 +0200201 case LYS_NOTIF:
202 case LYS_RPC:
Michal Vaskob1b19442016-07-13 12:26:01 +0200203 case LYS_ACTION:
Radek Krejci3b41a6c2015-10-31 23:06:12 +0100204 *result = calloc(1, sizeof **result);
Michal Vaskoab8e4402015-07-17 12:54:28 +0200205 havechildren = 1;
Radek Krejcib9930252015-07-08 15:47:45 +0200206 break;
Radek Krejci76512572015-08-04 09:47:08 +0200207 case LYS_LEAF:
Radek Krejci76512572015-08-04 09:47:08 +0200208 case LYS_LEAFLIST:
Radek Krejci3b41a6c2015-10-31 23:06:12 +0100209 *result = calloc(1, sizeof(struct lyd_node_leaf_list));
Radek Krejcie4748472015-07-08 18:00:22 +0200210 havechildren = 0;
211 break;
Radek Krejci76512572015-08-04 09:47:08 +0200212 case LYS_ANYXML:
Radek Krejcibf2abff2016-08-23 15:51:52 +0200213 case LYS_ANYDATA:
214 *result = calloc(1, sizeof(struct lyd_node_anydata));
Michal Vaskoab8e4402015-07-17 12:54:28 +0200215 havechildren = 0;
216 break;
Radek Krejcib9930252015-07-08 15:47:45 +0200217 default:
Michal Vasko0c888fd2015-08-11 15:54:08 +0200218 LOGINT;
Radek Krejci3b41a6c2015-10-31 23:06:12 +0100219 return -1;
Radek Krejcib9930252015-07-08 15:47:45 +0200220 }
Michal Vasko253035f2015-12-17 16:58:13 +0100221 if (!(*result)) {
222 LOGMEM;
223 return -1;
224 }
225
Radek Krejci61767ca2016-09-19 14:21:55 +0200226 (*result)->prev = *result;
Radek Krejci3b41a6c2015-10-31 23:06:12 +0100227 (*result)->schema = schema;
Radek Krejci61767ca2016-09-19 14:21:55 +0200228 (*result)->parent = parent;
229 diter = NULL;
230 if (parent && parent->child && schema->nodetype == LYS_LEAF && parent->schema->nodetype == LYS_LIST &&
231 (pos = lys_is_key((struct lys_node_list *)parent->schema, (struct lys_node_leaf *)schema))) {
232 /* it is key and we need to insert it into a correct place */
233 for (i = 0, diter = parent->child;
234 diter && i < (pos - 1) && diter->schema->nodetype == LYS_LEAF &&
235 lys_is_key((struct lys_node_list *)parent->schema, (struct lys_node_leaf *)diter->schema);
236 i++, diter = diter->next);
237 if (diter) {
238 /* out of order insertion - insert list's key to the correct position, before the diter */
239 if (options & LYD_OPT_STRICT) {
240 LOGVAL(LYE_INORDER, LY_VLOG_LYD, *result, schema->name, diter->schema->name);
Michal Vasko51e5c582017-01-19 14:16:39 +0100241 LOGVAL(LYE_SPEC, LY_VLOG_PREV, NULL, "Invalid position of the key \"%s\" in a list \"%s\".",
Radek Krejci61767ca2016-09-19 14:21:55 +0200242 schema->name, parent->schema->name);
243 free(*result);
244 *result = NULL;
245 return -1;
246 } else {
247 LOGWRN("Invalid position of the key \"%s\" in a list \"%s\".", schema->name, parent->schema->name)
248 }
249 if (parent->child == diter) {
250 parent->child = *result;
251 /* update first_sibling */
252 first_sibling = *result;
253 }
254 if (diter->prev->next) {
255 diter->prev->next = *result;
256 }
257 (*result)->prev = diter->prev;
258 diter->prev = *result;
259 (*result)->next = diter;
260 }
261 }
262 if (!diter) {
263 /* simplified (faster) insert as the last node */
264 if (parent && !parent->child) {
265 parent->child = *result;
266 }
267 if (prev) {
268 (*result)->prev = prev;
269 prev->next = *result;
270
271 /* fix the "last" pointer */
272 first_sibling->prev = *result;
273 } else {
274 (*result)->prev = *result;
275 first_sibling = *result;
276 }
277 }
Michal Vaskoe3886bb2017-01-02 11:33:28 +0100278 (*result)->validity = ly_new_node_validity((*result)->schema);
Radek Krejci46165822016-08-26 14:06:27 +0200279 if (resolve_applies_when(schema, 0, NULL)) {
Radek Krejci0b7704f2016-03-18 12:16:14 +0100280 (*result)->when_status = LYD_WHEN;
281 }
Radek Krejci1721c012015-07-08 12:52:33 +0200282
Radek Krejciadb57612016-02-16 13:34:34 +0100283 /* check insert attribute and its values */
284 if (options & LYD_OPT_EDIT) {
Radek Krejci9bfcbde2016-04-07 16:30:15 +0200285 /* 0x01 - insert attribute present
286 * 0x02 - insert is relative (before or after)
287 * 0x04 - value attribute present
288 * 0x08 - key attribute present
289 * 0x10 - operation not allowing insert attribute
290 */
Radek Krejciadb57612016-02-16 13:34:34 +0100291 for (attr = xml->attr; attr; attr = attr->next) {
Radek Krejci9bfcbde2016-04-07 16:30:15 +0200292 if (attr->type != LYXML_ATTR_STD || !attr->ns) {
293 /* not interesting attribute or namespace declaration */
Radek Krejciadb57612016-02-16 13:34:34 +0100294 continue;
295 }
296
Radek Krejci9bfcbde2016-04-07 16:30:15 +0200297 if (!strcmp(attr->name, "operation") && !strcmp(attr->ns->value, LY_NSNC)) {
Radek Krejci1fe9ac02016-09-23 09:38:21 +0200298 if (editbits & 0x10) {
Radek Krejci72614bf2016-04-08 17:46:07 +0200299 LOGVAL(LYE_TOOMANY, LY_VLOG_LYD, (*result), "operation attributes", xml->name);
300 return -1;
301 }
302
Radek Krejci9bfcbde2016-04-07 16:30:15 +0200303 if (!strcmp(attr->value, "delete") || !strcmp(attr->value, "remove")) {
Radek Krejci1fe9ac02016-09-23 09:38:21 +0200304 editbits |= 0x10;
Radek Krejci9bfcbde2016-04-07 16:30:15 +0200305 } else if (strcmp(attr->value, "create") &&
306 strcmp(attr->value, "merge") &&
307 strcmp(attr->value, "replace")) {
308 /* unknown operation */
309 LOGVAL(LYE_INVALATTR, LY_VLOG_LYD, (*result), attr->value, attr->name);
310 return -1;
311 }
312 } else if (!strcmp(attr->name, "insert") && !strcmp(attr->ns->value, LY_NSYANG)) {
313 /* 'insert' attribute present */
314 if (!(schema->flags & LYS_USERORDERED)) {
315 /* ... but it is not expected */
316 LOGVAL(LYE_INATTR, LY_VLOG_LYD, (*result), "insert", schema->name);
317 return -1;
318 }
Radek Krejciadb57612016-02-16 13:34:34 +0100319
Radek Krejci1fe9ac02016-09-23 09:38:21 +0200320 if (editbits & 0x01) {
Radek Krejci9bfcbde2016-04-07 16:30:15 +0200321 LOGVAL(LYE_TOOMANY, LY_VLOG_LYD, (*result), "insert attributes", xml->name);
322 return -1;
323 }
324 if (!strcmp(attr->value, "first") || !strcmp(attr->value, "last")) {
Radek Krejci1fe9ac02016-09-23 09:38:21 +0200325 editbits |= 0x01;
Radek Krejci9bfcbde2016-04-07 16:30:15 +0200326 } else if (!strcmp(attr->value, "before") || !strcmp(attr->value, "after")) {
Radek Krejci1fe9ac02016-09-23 09:38:21 +0200327 editbits |= 0x01 | 0x02;
Radek Krejci9bfcbde2016-04-07 16:30:15 +0200328 } else {
329 LOGVAL(LYE_INVALATTR, LY_VLOG_LYD, (*result), attr->value, attr->name);
330 return -1;
331 }
332 str = attr->name;
333 } else if (!strcmp(attr->name, "value") && !strcmp(attr->ns->value, LY_NSYANG)) {
Radek Krejci1fe9ac02016-09-23 09:38:21 +0200334 if (editbits & 0x04) {
Radek Krejci9bfcbde2016-04-07 16:30:15 +0200335 LOGVAL(LYE_TOOMANY, LY_VLOG_LYD, (*result), "value attributes", xml->name);
336 return -1;
337 } else if (schema->nodetype & LYS_LIST) {
338 LOGVAL(LYE_INATTR, LY_VLOG_LYD, (*result), attr->name, schema->name);
339 return -1;
340 }
Radek Krejci1fe9ac02016-09-23 09:38:21 +0200341 editbits |= 0x04;
Radek Krejci9bfcbde2016-04-07 16:30:15 +0200342 str = attr->name;
343 } else if (!strcmp(attr->name, "key") && !strcmp(attr->ns->value, LY_NSYANG)) {
Radek Krejci1fe9ac02016-09-23 09:38:21 +0200344 if (editbits & 0x08) {
Radek Krejci9bfcbde2016-04-07 16:30:15 +0200345 LOGVAL(LYE_TOOMANY, LY_VLOG_LYD, (*result), "key attributes", xml->name);
346 return -1;
347 } else if (schema->nodetype & LYS_LEAFLIST) {
348 LOGVAL(LYE_INATTR, LY_VLOG_LYD, (*result), attr->name, schema->name);
349 return -1;
350 }
Radek Krejci1fe9ac02016-09-23 09:38:21 +0200351 editbits |= 0x08;
Radek Krejci9bfcbde2016-04-07 16:30:15 +0200352 str = attr->name;
Radek Krejciadb57612016-02-16 13:34:34 +0100353 }
Radek Krejciadb57612016-02-16 13:34:34 +0100354 }
355
Radek Krejci9bfcbde2016-04-07 16:30:15 +0200356 /* report errors */
Radek Krejci1fe9ac02016-09-23 09:38:21 +0200357 if (editbits > 0x10 || (editbits && editbits < 0x10 &&
Radek Krejcicced9382016-04-13 13:15:03 +0200358 (!(schema->nodetype & (LYS_LEAFLIST | LYS_LIST)) || !(schema->flags & LYS_USERORDERED)))) {
Radek Krejcid0df6902016-03-10 09:32:00 +0100359 /* attributes in wrong elements */
Radek Krejci48464ed2016-03-17 15:44:09 +0100360 LOGVAL(LYE_INATTR, LY_VLOG_LYD, (*result), str, xml->name);
Radek Krejcid0df6902016-03-10 09:32:00 +0100361 return -1;
Radek Krejci1fe9ac02016-09-23 09:38:21 +0200362 } else if (editbits == 3) {
Radek Krejci9bfcbde2016-04-07 16:30:15 +0200363 /* 0x01 | 0x02 - relative position, but value/key is missing */
364 if (schema->nodetype & LYS_LIST) {
365 LOGVAL(LYE_MISSATTR, LY_VLOG_LYD, (*result), "key", xml->name);
366 } else { /* LYS_LEAFLIST */
367 LOGVAL(LYE_MISSATTR, LY_VLOG_LYD, (*result), "value", xml->name);
368 }
Radek Krejciadb57612016-02-16 13:34:34 +0100369 return -1;
Radek Krejci1fe9ac02016-09-23 09:38:21 +0200370 } else if ((editbits & (0x04 | 0x08)) && !(editbits & 0x02)) {
Radek Krejci9bfcbde2016-04-07 16:30:15 +0200371 /* key/value without relative position */
Radek Krejci1fe9ac02016-09-23 09:38:21 +0200372 LOGVAL(LYE_INATTR, LY_VLOG_LYD, (*result), (editbits & 0x04) ? "value" : "key", schema->name);
Radek Krejciadb57612016-02-16 13:34:34 +0100373 return -1;
374 }
375 }
376
Radek Krejcib9930252015-07-08 15:47:45 +0200377 /* type specific processing */
Radek Krejci27aaa732015-09-04 15:24:04 +0200378 if (schema->nodetype & (LYS_LEAF | LYS_LEAFLIST)) {
Radek Krejcie4748472015-07-08 18:00:22 +0200379 /* type detection and assigning the value */
Michal Vaskoe3886bb2017-01-02 11:33:28 +0100380 if (xml_get_value(*result, xml, editbits)) {
Radek Krejci3e3affe2015-07-09 15:38:40 +0200381 goto error;
382 }
Radek Krejcibf2abff2016-08-23 15:51:52 +0200383 } else if (schema->nodetype & LYS_ANYDATA) {
Michal Vaskof748dbc2016-04-05 11:27:47 +0200384 /* store children values */
385 if (xml->child) {
386 child = xml->child;
387 /* manually unlink all siblings and correct namespaces */
388 xml->child = NULL;
389 LY_TREE_FOR(child, next) {
390 next->parent = NULL;
391 lyxml_correct_elem_ns(ctx, next, 1, 1);
392 }
393
Radek Krejci45826012016-08-24 15:07:57 +0200394 ((struct lyd_node_anydata *)*result)->value_type = LYD_ANYDATA_XML;
Radek Krejcibf2abff2016-08-23 15:51:52 +0200395 ((struct lyd_node_anydata *)*result)->value.xml = child;
Michal Vaskof748dbc2016-04-05 11:27:47 +0200396 } else {
Radek Krejci45826012016-08-24 15:07:57 +0200397 ((struct lyd_node_anydata *)*result)->value_type = LYD_ANYDATA_CONSTSTRING;
Radek Krejcibf2abff2016-08-23 15:51:52 +0200398 ((struct lyd_node_anydata *)*result)->value.str = lydict_insert(ctx, xml->content, 0);
Michal Vasko253035f2015-12-17 16:58:13 +0100399 }
Michal Vaskoafa7a642016-10-18 15:11:38 +0200400 } else if (schema->nodetype & (LYS_RPC | LYS_ACTION)) {
401 if (!(options & LYD_OPT_RPC) || *act_notif) {
402 LOGVAL(LYE_INELEM, LY_VLOG_LYD, (*result), schema->name);
Michal Vasko51e5c582017-01-19 14:16:39 +0100403 LOGVAL(LYE_SPEC, LY_VLOG_PREV, NULL, "Unexpected %s node \"%s\".",
Michal Vaskoafa7a642016-10-18 15:11:38 +0200404 (schema->nodetype == LYS_RPC ? "rpc" : "action"), schema->name);
405 goto error;
406 }
407 *act_notif = *result;
408 } else if (schema->nodetype == LYS_NOTIF) {
409 if (!(options & LYD_OPT_NOTIF) || *act_notif) {
410 LOGVAL(LYE_INELEM, LY_VLOG_LYD, (*result), schema->name);
Michal Vasko51e5c582017-01-19 14:16:39 +0100411 LOGVAL(LYE_SPEC, LY_VLOG_PREV, NULL, "Unexpected notification node \"%s\".", schema->name);
Michal Vaskoafa7a642016-10-18 15:11:38 +0200412 goto error;
413 }
414 *act_notif = *result;
Radek Krejcib9930252015-07-08 15:47:45 +0200415 }
416
Michal Vasko10e586f2016-05-18 13:25:30 +0200417 /* first part of validation checks */
Michal Vaskoe3886bb2017-01-02 11:33:28 +0100418 if (lyv_data_context(*result, options, unres)) {
Michal Vasko10e586f2016-05-18 13:25:30 +0200419 goto error;
420 }
421
Radek Krejci998a7502015-10-26 15:54:33 +0100422 for (attr = xml->attr; attr; attr = attr->next) {
Radek Krejci5f9e8c92015-10-30 10:01:06 +0100423 if (attr->type != LYXML_ATTR_STD) {
424 continue;
425 } else if (!attr->ns) {
Radek Krejcia68ddeb2017-02-24 12:49:44 +0100426 if ((*result)->schema->nodetype == LYS_ANYXML &&
427 ly_strequal((*result)->schema->name, "filter", 0) &&
428 ly_strequal((*result)->schema->module->name, "ietf-netconf", 0)) {
429 /* NETCONF filter's attributes, which we implement as non-standard annotations,
430 * they are unqualified (no namespace), but we know that we have internally defined
431 * them in the ietf-netconf module, so the same module as the filter node itself */
432 mod = (*result)->schema->module;
Radek Krejci9a5daea2016-03-02 16:49:40 +0100433 } else {
Radek Krejcia68ddeb2017-02-24 12:49:44 +0100434 /* garbage */
435 goto attr_error;
Radek Krejci532e5e92017-02-22 12:59:24 +0100436 }
Radek Krejci532e5e92017-02-22 12:59:24 +0100437 } else { /* regular annotation */
438 /* first, get module where the annotation should be defined */
439 mod = (struct lys_module*)ly_ctx_get_module_by_ns(ctx, attr->ns->value, NULL);
440 if (!mod) {
441 goto attr_error;
442 }
Radek Krejcia68ddeb2017-02-24 12:49:44 +0100443 }
444 /* then, find the appropriate annotation definition */
445 submod = NULL;
446 pos = lys_ext_instance_presence(&ctx->models.list[0]->extensions[0], mod->ext, mod->ext_size);
447 while (pos != -1 && ((unsigned int)(pos + 1) < mod->ext_size)
448 && !ly_strequal(mod->ext[pos]->arg_value, attr->name, 1)) {
449 i = lys_ext_instance_presence(&ctx->models.list[0]->extensions[0], &mod->ext[pos + 1],
450 mod->ext_size - (pos + 1));
451 pos = (i == -1) ? -1 : pos + 1 + i;
452 }
453 /* try submodules */
454 for (j = 0; pos == -1 && j < mod->inc_size; j++) {
455 submod = mod->inc[j].submodule;
456 pos = lys_ext_instance_presence(&ctx->models.list[0]->extensions[0], submod->ext, submod->ext_size);
457 while (pos != -1 && ((unsigned int)(pos + 1) < submod->ext_size)
458 && !ly_strequal(submod->ext[pos]->arg_value, attr->name, 1)) {
459 i = lys_ext_instance_presence(&ctx->models.list[0]->extensions[0], &submod->ext[pos + 1],
460 submod->ext_size - (pos + 1));
Radek Krejcib1ef1872017-02-23 14:33:34 +0100461 pos = (i == -1) ? -1 : pos + 1 + i;
462 }
Radek Krejcia68ddeb2017-02-24 12:49:44 +0100463 }
464 if (pos == -1) {
465 goto attr_error;
Radek Krejci5f9e8c92015-10-30 10:01:06 +0100466 }
467
Radek Krejci532e5e92017-02-22 12:59:24 +0100468 /* allocate and fill the data attribute structure */
Radek Krejcia571d942017-02-24 09:26:49 +0100469 dattr = calloc(1, sizeof *dattr);
Michal Vasko253035f2015-12-17 16:58:13 +0100470 if (!dattr) {
471 goto error;
472 }
Radek Krejci532e5e92017-02-22 12:59:24 +0100473 dattr->parent = (*result);
Radek Krejci5f9e8c92015-10-30 10:01:06 +0100474 dattr->next = NULL;
Radek Krejcia68ddeb2017-02-24 12:49:44 +0100475 dattr->annotation = submod ? (struct lys_ext_instance_complex *)submod->ext[pos] :
476 (struct lys_ext_instance_complex *)mod->ext[pos];
Radek Krejci5f9e8c92015-10-30 10:01:06 +0100477 dattr->name = attr->name;
Radek Krejci532e5e92017-02-22 12:59:24 +0100478 attr->name = NULL;
479
Radek Krejcia571d942017-02-24 09:26:49 +0100480 dattr->value_str = attr->value;
481 attr->value = NULL;
482
483 /* the value is here converted to a JSON format if needed in case of LY_TYPE_IDENT and LY_TYPE_INST or to a
484 * canonical form of the value */
485 if (!lyp_parse_value(*((struct lys_type **)lys_ext_complex_get_substmt(LY_STMT_TYPE, dattr->annotation, NULL)),
486 &dattr->value_str, xml, NULL, dattr, 1, 0)) {
487 attr->value = dattr->value_str;
488 free(dattr);
489 goto error;
490 }
491
Radek Krejci532e5e92017-02-22 12:59:24 +0100492 /* insert into the data node */
Radek Krejci3b41a6c2015-10-31 23:06:12 +0100493 if (!(*result)->attr) {
494 (*result)->attr = dattr;
Radek Krejci5f9e8c92015-10-30 10:01:06 +0100495 } else {
Radek Krejci3b41a6c2015-10-31 23:06:12 +0100496 for (dattr_iter = (*result)->attr; dattr_iter->next; dattr_iter = dattr_iter->next);
Radek Krejci5f9e8c92015-10-30 10:01:06 +0100497 dattr_iter->next = dattr;
Radek Krejci998a7502015-10-26 15:54:33 +0100498 }
Radek Krejci532e5e92017-02-22 12:59:24 +0100499 continue;
500
501attr_error:
502 if (options & LYD_OPT_STRICT) {
503 LOGVAL(LYE_INATTR, LY_VLOG_LYD, (*result), attr->name, xml->name);
Radek Krejcia68ddeb2017-02-24 12:49:44 +0100504 LOGVAL(LYE_SPEC, LY_VLOG_PREV, NULL, "Unknown metadata (%s%s%s).",
505 attr->ns ? attr->ns->prefix : "", attr->ns ? ":" : "", attr->name);
Radek Krejci532e5e92017-02-22 12:59:24 +0100506 goto error;
507 } else {
Radek Krejcia68ddeb2017-02-24 12:49:44 +0100508 LOGWRN("Unknown metadata (%s%s%s) - skipping.",
509 attr->ns ? attr->ns->prefix : "", attr->ns ? ":" : "", attr->name);
Radek Krejci532e5e92017-02-22 12:59:24 +0100510 continue;
511 }
Radek Krejci998a7502015-10-26 15:54:33 +0100512 }
Michal Vasko4ff7b072015-08-21 09:05:03 +0200513
Radek Krejci14c00092015-11-01 11:03:24 +0100514 /* process children */
515 if (havechildren && xml->child) {
516 diter = dlast = NULL;
517 LY_TREE_FOR_SAFE(xml->child, next, child) {
518 if (schema->nodetype & (LYS_RPC | LYS_NOTIF)) {
Michal Vaskob15cae22016-09-15 09:40:56 +0200519 r = xml_parse_data(ctx, child, *result, (*result)->child, dlast, 0, unres, &diter, act_notif);
Radek Krejci14c00092015-11-01 11:03:24 +0100520 } else {
Michal Vaskob15cae22016-09-15 09:40:56 +0200521 r = xml_parse_data(ctx, child, *result, (*result)->child, dlast, options, unres, &diter, act_notif);
Radek Krejci14c00092015-11-01 11:03:24 +0100522 }
Radek Krejci14c00092015-11-01 11:03:24 +0100523 if (r) {
524 goto error;
Radek Krejci86538212015-12-17 15:59:01 +0100525 } else if (options & LYD_OPT_DESTRUCT) {
526 lyxml_free(ctx, child);
Radek Krejci14c00092015-11-01 11:03:24 +0100527 }
Radek Krejci61767ca2016-09-19 14:21:55 +0200528 if (diter && !diter->next) {
529 /* the child was parsed/created and it was placed as the last child. The child can be inserted
530 * out of order (not as the last one) in case it is a list's key present out of the correct order */
Radek Krejci14c00092015-11-01 11:03:24 +0100531 dlast = diter;
532 }
533 }
534 }
535
Radek Krejcifb7156e2016-10-27 13:39:56 +0200536 /* if we have empty non-presence container, we keep it, but mark it as default */
Radek Krejci2537fd32016-09-07 16:22:41 +0200537 if (schema->nodetype == LYS_CONTAINER && !(*result)->child &&
Radek Krejcid3e73722016-05-23 12:24:55 +0200538 !(*result)->attr && !((struct lys_node_container *)schema)->presence) {
Radek Krejcifb7156e2016-10-27 13:39:56 +0200539 (*result)->dflt = 1;
Radek Krejci0c0086a2016-03-24 15:20:28 +0100540 }
541
Radek Krejcicf509982015-12-15 09:22:44 +0100542 /* rest of validation checks */
Radek Krejci00a0e712016-10-26 10:24:46 +0200543 ly_err_clean(1);
Michal Vaskoe3886bb2017-01-02 11:33:28 +0100544 if (lyv_data_content(*result, options, unres) ||
545 lyv_multicases(*result, NULL, prev ? &first_sibling : NULL, 0, NULL)) {
Radek Krejcieab784a2015-08-27 09:56:53 +0200546 if (ly_errno) {
Radek Krejcib1c12512015-08-11 11:22:04 +0200547 goto error;
Radek Krejci1b0d01a2015-08-19 17:00:35 +0200548 } else {
Radek Krejci3b41a6c2015-10-31 23:06:12 +0100549 goto clear;
Radek Krejcida374342015-08-19 13:33:22 +0200550 }
Radek Krejci78ce8612015-08-18 14:31:05 +0200551 }
552
Radek Krejcica7efb72016-01-18 13:06:01 +0100553 /* validation successful */
Radek Krejci63b79c82016-08-10 10:09:33 +0200554 if ((*result)->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) {
555 /* postpone checking when there will be all list/leaflist instances */
Michal Vaskoe3886bb2017-01-02 11:33:28 +0100556 (*result)->validity |= LYD_VAL_UNIQUE;
Radek Krejci63b79c82016-08-10 10:09:33 +0200557 }
Radek Krejcica7efb72016-01-18 13:06:01 +0100558
Radek Krejci3b41a6c2015-10-31 23:06:12 +0100559 return ret;
Radek Krejci3e3affe2015-07-09 15:38:40 +0200560
561error:
Radek Krejci3b41a6c2015-10-31 23:06:12 +0100562 ret--;
563
564clear:
Radek Krejcieab784a2015-08-27 09:56:53 +0200565 /* cleanup */
Radek Krejci0c0086a2016-03-24 15:20:28 +0100566 for (i = unres->count - 1; i >= 0; i--) {
567 /* remove unres items connected with the node being removed */
568 if (unres->node[i] == *result) {
569 unres_data_del(unres, i);
570 }
571 }
Radek Krejci3b41a6c2015-10-31 23:06:12 +0100572 lyd_free(*result);
573 *result = NULL;
Radek Krejci1b0d01a2015-08-19 17:00:35 +0200574
Radek Krejci3b41a6c2015-10-31 23:06:12 +0100575 return ret;
Radek Krejci1721c012015-07-08 12:52:33 +0200576}
577
Radek Krejci4a49bdf2016-01-12 17:17:01 +0100578API struct lyd_node *
579lyd_parse_xml(struct ly_ctx *ctx, struct lyxml_elem **root, int options, ...)
Radek Krejcic6704c82015-10-06 11:12:45 +0200580{
Radek Krejci4a49bdf2016-01-12 17:17:01 +0100581 va_list ap;
Radek Krejci63b79c82016-08-10 10:09:33 +0200582 int r, i;
Radek Krejci4a49bdf2016-01-12 17:17:01 +0100583 struct unres_data *unres = NULL;
Michal Vasko945b96b2016-10-18 11:49:12 +0200584 const struct lyd_node *rpc_act = NULL, *data_tree = NULL;
585 struct lyd_node *result = NULL, *iter, *last, *reply_parent = NULL, *reply_top = NULL, *act_notif = NULL;
Radek Krejci4a49bdf2016-01-12 17:17:01 +0100586 struct lyxml_elem *xmlstart, *xmlelem, *xmlaux;
Radek Krejci63b79c82016-08-10 10:09:33 +0200587 struct ly_set *set;
Radek Krejcic6704c82015-10-06 11:12:45 +0200588
Radek Krejci00a0e712016-10-26 10:24:46 +0200589 ly_err_clean(1);
Radek Krejci2342cf62016-01-29 16:48:23 +0100590
Radek Krejcic6704c82015-10-06 11:12:45 +0200591 if (!ctx || !root) {
592 LOGERR(LY_EINVAL, "%s: Invalid parameter.", __func__);
593 return NULL;
594 }
595
Radek Krejci4a49bdf2016-01-12 17:17:01 +0100596 if (lyp_check_options(options)) {
597 LOGERR(LY_EINVAL, "%s: Invalid options (multiple data type flags set).", __func__);
598 return NULL;
599 }
600
Radek Krejcia6939c32016-03-24 15:19:09 +0100601 if (!(*root)) {
602 /* empty tree - no work is needed */
603 lyd_validate(&result, options, ctx);
604 return result;
605 }
606
Michal Vasko24d982f2016-04-18 15:13:58 +0200607 unres = calloc(1, sizeof *unres);
608 if (!unres) {
609 LOGMEM;
610 return NULL;
611 }
612
Radek Krejci4a49bdf2016-01-12 17:17:01 +0100613 va_start(ap, options);
614 if (options & LYD_OPT_RPCREPLY) {
Michal Vasko945b96b2016-10-18 11:49:12 +0200615 rpc_act = va_arg(ap, const struct lyd_node *);
616 if (!rpc_act || rpc_act->parent || !(rpc_act->schema->nodetype & (LYS_RPC | LYS_LIST | LYS_CONTAINER))) {
617 LOGERR(LY_EINVAL, "%s: invalid variable parameter (const struct lyd_node *rpc_act).", __func__);
Michal Vasko24d982f2016-04-18 15:13:58 +0200618 goto error;
Radek Krejci4a49bdf2016-01-12 17:17:01 +0100619 }
Michal Vasko945b96b2016-10-18 11:49:12 +0200620 if (rpc_act->schema->nodetype == LYS_RPC) {
621 /* RPC request */
622 reply_top = reply_parent = _lyd_new(NULL, rpc_act->schema, 0);
623 } else {
624 /* action request */
625 reply_top = lyd_dup(rpc_act, 1);
626 LY_TREE_DFS_BEGIN(reply_top, iter, reply_parent) {
627 if (reply_parent->schema->nodetype == LYS_ACTION) {
628 break;
629 }
630 LY_TREE_DFS_END(reply_top, iter, reply_parent);
631 }
632 if (!reply_parent) {
633 LOGERR(LY_EINVAL, "%s: invalid variable parameter (const struct lyd_node *rpc_act).", __func__);
634 lyd_free_withsiblings(reply_top);
635 goto error;
636 }
637 lyd_free_withsiblings(reply_parent->child);
638 }
Michal Vasko45e23652016-09-21 11:24:32 +0200639 }
640 if (options & (LYD_OPT_RPC | LYD_OPT_NOTIF | LYD_OPT_RPCREPLY)) {
Michal Vasko945b96b2016-10-18 11:49:12 +0200641 data_tree = va_arg(ap, const struct lyd_node *);
Michal Vasko6b44d712016-09-12 16:25:46 +0200642 if (data_tree) {
Michal Vasko945b96b2016-10-18 11:49:12 +0200643 LY_TREE_FOR((struct lyd_node *)data_tree, iter) {
Michal Vasko6b44d712016-09-12 16:25:46 +0200644 if (iter->parent) {
645 /* a sibling is not top-level */
646 LOGERR(LY_EINVAL, "%s: invalid variable parameter (const struct lyd_node *data_tree).", __func__);
647 goto error;
648 }
649 }
650
651 /* move it to the beginning */
652 for (; data_tree->prev->next; data_tree = data_tree->prev);
653
654 /* LYD_OPT_NOSIBLINGS cannot be set in this case */
655 if (options & LYD_OPT_NOSIBLINGS) {
656 LOGERR(LY_EINVAL, "%s: invalid parameter (variable arg const struct lyd_node *data_tree with LYD_OPT_NOSIBLINGS).", __func__);
657 goto error;
658 }
659 }
Radek Krejci4a49bdf2016-01-12 17:17:01 +0100660 }
661
Radek Krejci86538212015-12-17 15:59:01 +0100662 if (!(options & LYD_OPT_NOSIBLINGS)) {
663 /* locate the first root to process */
664 if ((*root)->parent) {
665 xmlstart = (*root)->parent->child;
666 } else {
667 xmlstart = *root;
668 while(xmlstart->prev->next) {
669 xmlstart = xmlstart->prev;
670 }
Radek Krejci04b97de2015-10-31 23:09:15 +0100671 }
Radek Krejci86538212015-12-17 15:59:01 +0100672 } else {
673 xmlstart = *root;
674 }
Radek Krejci86538212015-12-17 15:59:01 +0100675
Michal Vaskob1b19442016-07-13 12:26:01 +0200676 if ((options & LYD_OPT_RPC)
677 && !strcmp(xmlstart->name, "action") && !strcmp(xmlstart->ns->value, "urn:ietf:params:xml:ns:yang:1")) {
678 /* it's an action, not a simple RPC */
679 xmlstart = xmlstart->child;
Michal Vaskob1b19442016-07-13 12:26:01 +0200680 }
681
682 iter = last = NULL;
Radek Krejci86538212015-12-17 15:59:01 +0100683 LY_TREE_FOR_SAFE(xmlstart, xmlaux, xmlelem) {
Michal Vaskob15cae22016-09-15 09:40:56 +0200684 r = xml_parse_data(ctx, xmlelem, reply_parent, result, last, options, unres, &iter, &act_notif);
Radek Krejci3b41a6c2015-10-31 23:06:12 +0100685 if (r) {
Michal Vasko945b96b2016-10-18 11:49:12 +0200686 if (reply_top) {
687 result = reply_top;
Pavol Vican8a552f62016-09-05 11:20:57 +0200688 }
Michal Vasko24d982f2016-04-18 15:13:58 +0200689 goto error;
Radek Krejci86538212015-12-17 15:59:01 +0100690 } else if (options & LYD_OPT_DESTRUCT) {
691 lyxml_free(ctx, xmlelem);
692 *root = xmlaux;
Radek Krejci3b41a6c2015-10-31 23:06:12 +0100693 }
694 if (iter) {
695 last = iter;
696 }
697 if (!result) {
698 result = iter;
699 }
Radek Krejci86538212015-12-17 15:59:01 +0100700
701 if (options & LYD_OPT_NOSIBLINGS) {
702 /* stop after the first processed root */
703 break;
704 }
Radek Krejci3b41a6c2015-10-31 23:06:12 +0100705 }
Radek Krejcic6704c82015-10-06 11:12:45 +0200706
Michal Vasko945b96b2016-10-18 11:49:12 +0200707 if (reply_top) {
708 result = reply_top;
Michal Vaskoe45aff52016-08-25 09:01:09 +0200709 }
710
Michal Vasko945b96b2016-10-18 11:49:12 +0200711 if ((options & LYD_OPT_RPCREPLY) && (rpc_act->schema->nodetype != LYS_RPC)) {
712 /* action reply */
713 act_notif = reply_parent;
Michal Vaskoafa7a642016-10-18 15:11:38 +0200714 } else if ((options & (LYD_OPT_RPC | LYD_OPT_NOTIF)) && !act_notif) {
715 ly_vecode = LYVE_INELEM;
716 LOGVAL(LYE_SPEC, LY_VLOG_LYD, result, "Missing %s node.", (options & LYD_OPT_RPC ? "action" : "notification"));
717 goto error;
Radek Krejcib45b3082016-09-09 16:08:51 +0200718 }
719
Radek Krejci63b79c82016-08-10 10:09:33 +0200720 /* check for uniquness of top-level lists/leaflists because
721 * only the inner instances were tested in lyv_data_content() */
722 set = ly_set_new();
723 LY_TREE_FOR(result, iter) {
724 if (!(iter->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !(iter->validity & LYD_VAL_UNIQUE)) {
725 continue;
726 }
727
728 /* check each list/leaflist only once */
729 i = set->number;
730 if (ly_set_add(set, iter->schema, 0) != i) {
731 /* already checked */
732 continue;
733 }
734
735 if (lyv_data_unique(iter, result)) {
736 ly_set_free(set);
737 goto error;
738 }
739 }
740 ly_set_free(set);
741
Radek Krejcib45b3082016-09-09 16:08:51 +0200742 /* add default values, resolve unres and check for mandatory nodes in final tree */
Michal Vaskob15cae22016-09-15 09:40:56 +0200743 if (lyd_defaults_add_unres(&result, options, ctx, data_tree, act_notif, unres)) {
Michal Vasko6b44d712016-09-12 16:25:46 +0200744 goto error;
745 }
Michal Vaskoad2e44a2017-01-03 10:31:35 +0100746 if (!(options & (LYD_OPT_TRUSTED | LYD_OPT_NOTIF_FILTER))
747 && lyd_check_mandatory_tree((act_notif ? act_notif : result), ctx, options)) {
Michal Vaskoafa7a642016-10-18 15:11:38 +0200748 goto error;
Radek Krejci46165822016-08-26 14:06:27 +0200749 }
750
Michal Vasko24d982f2016-04-18 15:13:58 +0200751 free(unres->node);
752 free(unres->type);
753 free(unres);
Radek Krejci4a49bdf2016-01-12 17:17:01 +0100754 va_end(ap);
Radek Krejcic6704c82015-10-06 11:12:45 +0200755
756 return result;
Michal Vasko24d982f2016-04-18 15:13:58 +0200757
758error:
759 lyd_free_withsiblings(result);
760 free(unres->node);
761 free(unres->type);
762 free(unres);
763 va_end(ap);
764
765 return NULL;
Radek Krejcic6704c82015-10-06 11:12:45 +0200766}