blob: f6c437adaf13d9e4d5e368fd730ac69a283ba6cb [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 *
Michal Vasko7675c622017-03-02 10:50:07 +01006 * Copyright (c) 2015 - 2017 CESNET, z.s.p.o.
Radek Krejci1721c012015-07-08 12:52:33 +02007 *
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 Krejci06b45272017-02-24 16:15:02 +010086 if ((editbits & 0x20) && (node->schema->nodetype & LYS_LEAF) && (!leaf->value_str || !leaf->value_str[0])) {
Radek Krejci1fe9ac02016-09-23 09:38:21 +020087 /* 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 */
Michal Vasko31a2d322018-01-12 13:36:12 +010095 if (!lyp_parse_value(&((struct lys_node_leaf *)leaf->schema)->type, &leaf->value_str, xml, leaf, NULL, 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 Krejcibd930122016-08-10 13:28:26 +0200109 struct lyd_node *diter, *dlast;
Michal Vasko5e523b62016-08-26 16:23:15 +0200110 struct lys_node *schema = NULL, *target;
111 struct lys_node_augment *aug;
Radek Krejci5f9e8c92015-10-30 10:01:06 +0100112 struct lyd_attr *dattr, *dattr_iter;
Radek Krejcia5241e52015-08-19 15:09:31 +0200113 struct lyxml_attr *attr;
Michal Vaskof748dbc2016-04-05 11:27:47 +0200114 struct lyxml_elem *child, *next;
Radek Krejci65aca412018-01-24 11:23:06 +0100115 int i, j, havechildren, r, editbits = 0, filterflag = 0, found;
116 uint8_t pos;
Radek Krejci3b41a6c2015-10-31 23:06:12 +0100117 int ret = 0;
Radek Krejciabb7b582016-04-20 16:15:47 +0200118 const char *str = NULL;
Michal Vasko5bf8e212018-01-19 09:04:41 +0100119 char *msg;
Radek Krejci1721c012015-07-08 12:52:33 +0200120
Radek Krejci3b41a6c2015-10-31 23:06:12 +0100121 assert(xml);
122 assert(result);
123 *result = NULL;
124
Radek Krejcie1bacd72017-03-01 13:18:46 +0100125 if (xml->flags & LYXML_ELEM_MIXED) {
126 if (options & LYD_OPT_STRICT) {
Michal Vasko53b7da02018-02-13 15:28:42 +0100127 LOGVAL(ctx, LYE_XML_INVAL, LY_VLOG_XML, xml, "XML element with mixed content");
Radek Krejcie1bacd72017-03-01 13:18:46 +0100128 return -1;
129 } else {
130 return 0;
131 }
132 }
133
Radek Krejci1721c012015-07-08 12:52:33 +0200134 if (!xml->ns || !xml->ns->value) {
Radek Krejci2342cf62016-01-29 16:48:23 +0100135 if (options & LYD_OPT_STRICT) {
Michal Vasko53b7da02018-02-13 15:28:42 +0100136 LOGVAL(ctx, LYE_XML_MISS, LY_VLOG_XML, xml, "element's", "namespace");
Radek Krejci2342cf62016-01-29 16:48:23 +0100137 return -1;
138 } else {
139 return 0;
140 }
Radek Krejci1721c012015-07-08 12:52:33 +0200141 }
142
143 /* find schema node */
Michal Vaskob1b19442016-07-13 12:26:01 +0200144 if (!parent) {
Radek Krejcidfb00d62017-09-06 09:39:35 +0200145 mod = ly_ctx_get_module_by_ns(ctx, xml->ns->value, NULL, 1);
Michal Vaskof53187d2017-01-13 13:23:14 +0100146 if (ctx->data_clb) {
147 if (!mod) {
148 mod = ctx->data_clb(ctx, NULL, xml->ns->value, 0, ctx->data_clb_data);
149 } else if (!mod->implemented) {
150 mod = ctx->data_clb(ctx, mod->name, mod->ns, LY_MODCLB_NOT_IMPLEMENTED, ctx->data_clb_data);
Radek Krejci27fe55e2016-09-13 17:13:35 +0200151 }
Michal Vaskof53187d2017-01-13 13:23:14 +0100152 }
153
154 /* get the proper schema node */
155 if (mod && mod->implemented && !mod->disabled) {
156 schema = xml_data_search_schemanode(xml, mod->data, options);
157 if (!schema) {
158 /* it still can be the specific case of this module containing an augment of another module
159 * top-level choice or top-level choice's case, bleh */
160 for (j = 0; j < mod->augment_size; ++j) {
161 aug = &mod->augment[j];
162 target = aug->target;
163 if (target->nodetype & (LYS_CHOICE | LYS_CASE)) {
164 /* 1) okay, the target is choice or case */
165 while (target && (target->nodetype & (LYS_CHOICE | LYS_CASE | LYS_USES))) {
166 target = lys_parent(target);
167 }
168 /* 2) now, the data node will be top-level, there are only non-data schema nodes */
169 if (!target) {
170 while ((schema = (struct lys_node *)lys_getnext(schema, (struct lys_node *)aug, NULL, 0))) {
171 /* 3) alright, even the name matches, we found our schema node */
172 if (ly_strequal(schema->name, xml->name, 1)) {
173 break;
Michal Vasko5e523b62016-08-26 16:23:15 +0200174 }
175 }
176 }
Michal Vaskof53187d2017-01-13 13:23:14 +0100177 }
Michal Vasko5e523b62016-08-26 16:23:15 +0200178
Michal Vaskof53187d2017-01-13 13:23:14 +0100179 if (schema) {
180 break;
Michal Vasko5e523b62016-08-26 16:23:15 +0200181 }
182 }
Radek Krejci1721c012015-07-08 12:52:33 +0200183 }
184 }
185 } else {
186 /* parsing some internal node, we start with parent's schema pointer */
Radek Krejci4a49bdf2016-01-12 17:17:01 +0100187 schema = xml_data_search_schemanode(xml, parent->schema->child, options);
Michal Vaskof53187d2017-01-13 13:23:14 +0100188
Michal Vaskoa358f942017-05-09 10:45:33 +0200189 if (ctx->data_clb) {
190 if (schema && !lys_node_module(schema)->implemented) {
Michal Vaskoad43c182017-01-23 09:55:28 +0100191 ctx->data_clb(ctx, lys_node_module(schema)->name, lys_node_module(schema)->ns,
192 LY_MODCLB_NOT_IMPLEMENTED, ctx->data_clb_data);
Michal Vaskoa358f942017-05-09 10:45:33 +0200193 } else if (!schema) {
194 if (ctx->data_clb(ctx, NULL, xml->ns->value, 0, ctx->data_clb_data)) {
195 /* context was updated, so try to find the schema node again */
196 schema = xml_data_search_schemanode(xml, parent->schema->child, options);
197 }
Michal Vaskof53187d2017-01-13 13:23:14 +0100198 }
Radek Krejci25b9fd32015-08-10 15:06:07 +0200199 }
Michal Vaskof53187d2017-01-13 13:23:14 +0100200 }
201
202 mod = lys_node_module(schema);
203 if (!mod || !mod->implemented || mod->disabled) {
Radek Krejci27fe55e2016-09-13 17:13:35 +0200204 if (options & LYD_OPT_STRICT) {
Michal Vasko53b7da02018-02-13 15:28:42 +0100205 LOGVAL(ctx, LYE_INELEM, (parent ? LY_VLOG_LYD : LY_VLOG_NONE), parent, xml->name);
Radek Krejci27fe55e2016-09-13 17:13:35 +0200206 return -1;
207 } else {
208 return 0;
209 }
Radek Krejci1721c012015-07-08 12:52:33 +0200210 }
211
Radek Krejciadb57612016-02-16 13:34:34 +0100212 /* create the element structure */
Radek Krejcib9930252015-07-08 15:47:45 +0200213 switch (schema->nodetype) {
Radek Krejci76512572015-08-04 09:47:08 +0200214 case LYS_CONTAINER:
Radek Krejci27aaa732015-09-04 15:24:04 +0200215 case LYS_LIST:
Michal Vasko2f30e572015-10-01 16:00:38 +0200216 case LYS_NOTIF:
217 case LYS_RPC:
Michal Vaskob1b19442016-07-13 12:26:01 +0200218 case LYS_ACTION:
Michal Vasko0fd75a22018-01-30 15:40:18 +0100219 for (i = 0; xml->content && xml->content[i]; ++i) {
220 if (!is_xmlws(xml->content[i])) {
221 msg = malloc(22 + strlen(xml->content) + 1);
Michal Vasko53b7da02018-02-13 15:28:42 +0100222 LY_CHECK_ERR_RETURN(!msg, LOGMEM(ctx), -1);
Michal Vasko0fd75a22018-01-30 15:40:18 +0100223 sprintf(msg, "node with text data \"%s\"", xml->content);
Michal Vasko53b7da02018-02-13 15:28:42 +0100224 LOGVAL(ctx, LYE_XML_INVAL, LY_VLOG_XML, xml, msg);
Michal Vasko0fd75a22018-01-30 15:40:18 +0100225 free(msg);
226 return -1;
227 }
Radek Krejci3096a802017-11-09 12:47:11 +0100228 }
Radek Krejci3b41a6c2015-10-31 23:06:12 +0100229 *result = calloc(1, sizeof **result);
Michal Vaskoab8e4402015-07-17 12:54:28 +0200230 havechildren = 1;
Radek Krejcib9930252015-07-08 15:47:45 +0200231 break;
Radek Krejci76512572015-08-04 09:47:08 +0200232 case LYS_LEAF:
Radek Krejci76512572015-08-04 09:47:08 +0200233 case LYS_LEAFLIST:
Radek Krejci3b41a6c2015-10-31 23:06:12 +0100234 *result = calloc(1, sizeof(struct lyd_node_leaf_list));
Radek Krejcie4748472015-07-08 18:00:22 +0200235 havechildren = 0;
236 break;
Radek Krejci76512572015-08-04 09:47:08 +0200237 case LYS_ANYXML:
Radek Krejcibf2abff2016-08-23 15:51:52 +0200238 case LYS_ANYDATA:
239 *result = calloc(1, sizeof(struct lyd_node_anydata));
Michal Vaskoab8e4402015-07-17 12:54:28 +0200240 havechildren = 0;
241 break;
Radek Krejcib9930252015-07-08 15:47:45 +0200242 default:
Michal Vasko53b7da02018-02-13 15:28:42 +0100243 LOGINT(ctx);
Radek Krejci3b41a6c2015-10-31 23:06:12 +0100244 return -1;
Radek Krejcib9930252015-07-08 15:47:45 +0200245 }
Michal Vasko53b7da02018-02-13 15:28:42 +0100246 LY_CHECK_ERR_RETURN(!(*result), LOGMEM(ctx), -1);
Michal Vasko253035f2015-12-17 16:58:13 +0100247
Radek Krejci61767ca2016-09-19 14:21:55 +0200248 (*result)->prev = *result;
Radek Krejci3b41a6c2015-10-31 23:06:12 +0100249 (*result)->schema = schema;
Radek Krejci61767ca2016-09-19 14:21:55 +0200250 (*result)->parent = parent;
251 diter = NULL;
Radek Krejci65aca412018-01-24 11:23:06 +0100252 if (schema->nodetype == LYS_LEAF && lys_is_key((struct lys_node_leaf *)schema, &pos)) {
Michal Vasko80389542018-02-08 14:35:32 +0100253 /* it is key and we need to insert it into a correct place (a key must have a parent list) */
254 assert(parent);
Radek Krejci61767ca2016-09-19 14:21:55 +0200255 for (i = 0, diter = parent->child;
Radek Krejci65aca412018-01-24 11:23:06 +0100256 diter && i < pos && diter->schema->nodetype == LYS_LEAF && lys_is_key((struct lys_node_leaf *)diter->schema, NULL);
Radek Krejci61767ca2016-09-19 14:21:55 +0200257 i++, diter = diter->next);
258 if (diter) {
259 /* out of order insertion - insert list's key to the correct position, before the diter */
260 if (options & LYD_OPT_STRICT) {
Michal Vasko53b7da02018-02-13 15:28:42 +0100261 LOGVAL(ctx, LYE_INORDER, LY_VLOG_LYD, *result, schema->name, diter->schema->name);
262 LOGVAL(ctx, LYE_SPEC, LY_VLOG_PREV, NULL, "Invalid position of the key \"%s\" in a list \"%s\".",
Radek Krejci61767ca2016-09-19 14:21:55 +0200263 schema->name, parent->schema->name);
264 free(*result);
265 *result = NULL;
266 return -1;
267 } else {
Michal Vasko53b7da02018-02-13 15:28:42 +0100268 LOGWRN(ctx, "Invalid position of the key \"%s\" in a list \"%s\".", schema->name, parent->schema->name)
Radek Krejci61767ca2016-09-19 14:21:55 +0200269 }
270 if (parent->child == diter) {
271 parent->child = *result;
272 /* update first_sibling */
273 first_sibling = *result;
274 }
275 if (diter->prev->next) {
276 diter->prev->next = *result;
277 }
278 (*result)->prev = diter->prev;
279 diter->prev = *result;
280 (*result)->next = diter;
281 }
282 }
283 if (!diter) {
284 /* simplified (faster) insert as the last node */
285 if (parent && !parent->child) {
286 parent->child = *result;
287 }
288 if (prev) {
289 (*result)->prev = prev;
290 prev->next = *result;
291
292 /* fix the "last" pointer */
293 first_sibling->prev = *result;
294 } else {
295 (*result)->prev = *result;
296 first_sibling = *result;
297 }
298 }
Michal Vaskoe3886bb2017-01-02 11:33:28 +0100299 (*result)->validity = ly_new_node_validity((*result)->schema);
Radek Krejci46165822016-08-26 14:06:27 +0200300 if (resolve_applies_when(schema, 0, NULL)) {
Radek Krejci0b7704f2016-03-18 12:16:14 +0100301 (*result)->when_status = LYD_WHEN;
302 }
Radek Krejci1721c012015-07-08 12:52:33 +0200303
Radek Krejci146e3fc2017-02-24 13:41:00 +0100304 /* process attributes */
Radek Krejci998a7502015-10-26 15:54:33 +0100305 for (attr = xml->attr; attr; attr = attr->next) {
Radek Krejci5f9e8c92015-10-30 10:01:06 +0100306 if (attr->type != LYXML_ATTR_STD) {
307 continue;
308 } else if (!attr->ns) {
Radek Krejcia68ddeb2017-02-24 12:49:44 +0100309 if ((*result)->schema->nodetype == LYS_ANYXML &&
310 ly_strequal((*result)->schema->name, "filter", 0) &&
Michal Vaskoaa98eb72017-03-24 11:23:34 +0100311 (ly_strequal((*result)->schema->module->name, "ietf-netconf", 0) ||
312 ly_strequal((*result)->schema->module->name, "notifications", 0))) {
Radek Krejcia68ddeb2017-02-24 12:49:44 +0100313 /* NETCONF filter's attributes, which we implement as non-standard annotations,
314 * they are unqualified (no namespace), but we know that we have internally defined
Michal Vaskoaa98eb72017-03-24 11:23:34 +0100315 * them in the ietf-netconf module */
316 str = "urn:ietf:params:xml:ns:netconf:base:1.0";
Radek Krejci598dbcb2017-02-24 15:14:15 +0100317 filterflag = 1;
Radek Krejci9a5daea2016-03-02 16:49:40 +0100318 } else {
Radek Krejcia68ddeb2017-02-24 12:49:44 +0100319 /* garbage */
320 goto attr_error;
Radek Krejci532e5e92017-02-22 12:59:24 +0100321 }
Michal Vasko7675c622017-03-02 10:50:07 +0100322 } else {
323 str = attr->ns->value;
Radek Krejci5f9e8c92015-10-30 10:01:06 +0100324 }
325
Michal Vasko7675c622017-03-02 10:50:07 +0100326 r = lyp_fill_attr(ctx, *result, str, NULL, attr->name, attr->value, xml, &dattr);
327 if (r == -1) {
Michal Vasko253035f2015-12-17 16:58:13 +0100328 goto error;
Michal Vasko7675c622017-03-02 10:50:07 +0100329 } else if (r == 1) {
330attr_error:
331 if (options & LYD_OPT_STRICT) {
Michal Vasko53b7da02018-02-13 15:28:42 +0100332 LOGVAL(ctx, LYE_INATTR, LY_VLOG_LYD, *result, attr->name);
Michal Vasko7675c622017-03-02 10:50:07 +0100333 goto error;
334 }
335
Michal Vasko53b7da02018-02-13 15:28:42 +0100336 LOGWRN(ctx, "Unknown \"%s:%s\" metadata with value \"%s\", ignoring.",
Michal Vasko7675c622017-03-02 10:50:07 +0100337 (attr->ns ? attr->ns->prefix : "<none>"), attr->name, attr->value);
338 continue;
Michal Vasko253035f2015-12-17 16:58:13 +0100339 }
Radek Krejci532e5e92017-02-22 12:59:24 +0100340
Michal Vasko7675c622017-03-02 10:50:07 +0100341 /* special case of xpath in the value, we want to convert it to JSON */
342 if (filterflag && !strcmp(attr->name, "select")) {
Michal Vasko53b7da02018-02-13 15:28:42 +0100343 dattr->value.string = transform_xml2json(ctx, dattr->value_str, xml, 0, 0);
Radek Krejci598dbcb2017-02-24 15:14:15 +0100344 if (!dattr->value.string) {
345 /* problem with resolving value as xpath */
Michal Vasko7675c622017-03-02 10:50:07 +0100346 dattr->value.string = dattr->value_str;
Radek Krejci598dbcb2017-02-24 15:14:15 +0100347 goto error;
348 }
349 lydict_remove(ctx, dattr->value_str);
350 dattr->value_str = dattr->value.string;
Radek Krejcia571d942017-02-24 09:26:49 +0100351 }
352
Radek Krejci532e5e92017-02-22 12:59:24 +0100353 /* insert into the data node */
Radek Krejci3b41a6c2015-10-31 23:06:12 +0100354 if (!(*result)->attr) {
355 (*result)->attr = dattr;
Radek Krejci5f9e8c92015-10-30 10:01:06 +0100356 } else {
Radek Krejci3b41a6c2015-10-31 23:06:12 +0100357 for (dattr_iter = (*result)->attr; dattr_iter->next; dattr_iter = dattr_iter->next);
Radek Krejci5f9e8c92015-10-30 10:01:06 +0100358 dattr_iter->next = dattr;
Radek Krejci998a7502015-10-26 15:54:33 +0100359 }
Radek Krejci532e5e92017-02-22 12:59:24 +0100360 continue;
Radek Krejci998a7502015-10-26 15:54:33 +0100361 }
Michal Vasko4ff7b072015-08-21 09:05:03 +0200362
Radek Krejci146e3fc2017-02-24 13:41:00 +0100363 /* check insert attribute and its values */
364 if (options & LYD_OPT_EDIT) {
Michal Vasko7675c622017-03-02 10:50:07 +0100365 if (lyp_check_edit_attr(ctx, (*result)->attr, *result, &editbits)) {
366 goto error;
367 }
Radek Krejci146e3fc2017-02-24 13:41:00 +0100368
Michal Vasko7675c622017-03-02 10:50:07 +0100369 /* check correct filter extension attributes */
370 } else if (filterflag) {
371 found = 0; /* 0 - nothing, 1 - type subtree, 2 - type xpath, 3 - select, 4 - type xpath + select */
372 LY_TREE_FOR((*result)->attr, dattr_iter) {
373 if (!strcmp(dattr_iter->name, "type")) {
374 if ((found == 1) || (found == 2) || (found == 4)) {
Michal Vasko53b7da02018-02-13 15:28:42 +0100375 LOGVAL(ctx, LYE_TOOMANY, LY_VLOG_LYD, (*result), "type", xml->name);
Radek Krejcib3d905d2017-02-24 16:15:44 +0100376 goto error;
Radek Krejci146e3fc2017-02-24 13:41:00 +0100377 }
Michal Vasko7675c622017-03-02 10:50:07 +0100378 switch (dattr_iter->value.enm->value) {
379 case 0:
380 /* subtree */
381 if (found == 3) {
Michal Vasko53b7da02018-02-13 15:28:42 +0100382 LOGVAL(ctx, LYE_INATTR, LY_VLOG_LYD, (*result), dattr_iter->name);
Michal Vasko7675c622017-03-02 10:50:07 +0100383 goto error;
384 }
Radek Krejci06b45272017-02-24 16:15:02 +0100385
Michal Vasko7675c622017-03-02 10:50:07 +0100386 assert(!found);
387 found = 1;
388 break;
389 case 1:
390 /* xpath */
391 if (found == 3) {
392 found = 4;
393 } else {
394 assert(!found);
395 found = 2;
396 }
397 break;
398 default:
Michal Vasko53b7da02018-02-13 15:28:42 +0100399 LOGINT(ctx);
Radek Krejcib3d905d2017-02-24 16:15:44 +0100400 goto error;
Radek Krejci146e3fc2017-02-24 13:41:00 +0100401 }
Michal Vasko7675c622017-03-02 10:50:07 +0100402 } else if (!strcmp(dattr_iter->name, "select")) {
403 switch (found) {
404 case 0:
405 found = 3;
406 break;
407 case 1:
Michal Vasko53b7da02018-02-13 15:28:42 +0100408 LOGVAL(ctx, LYE_INATTR, LY_VLOG_LYD, (*result), dattr_iter->name);
Radek Krejcib3d905d2017-02-24 16:15:44 +0100409 goto error;
Michal Vasko7675c622017-03-02 10:50:07 +0100410 case 2:
411 found = 4;
412 break;
413 case 3:
414 case 4:
Michal Vasko53b7da02018-02-13 15:28:42 +0100415 LOGVAL(ctx, LYE_TOOMANY, LY_VLOG_LYD, (*result), "select", xml->name);
Michal Vasko7675c622017-03-02 10:50:07 +0100416 goto error;
417 default:
Michal Vasko53b7da02018-02-13 15:28:42 +0100418 LOGINT(ctx);
Radek Krejcib3d905d2017-02-24 16:15:44 +0100419 goto error;
Radek Krejci146e3fc2017-02-24 13:41:00 +0100420 }
Radek Krejci146e3fc2017-02-24 13:41:00 +0100421 }
422 }
423
Michal Vasko7675c622017-03-02 10:50:07 +0100424 /* check if what we found is correct */
425 switch (found) {
426 case 1:
427 case 4:
428 /* ok */
429 break;
430 case 2:
Michal Vasko53b7da02018-02-13 15:28:42 +0100431 LOGVAL(ctx, LYE_MISSATTR, LY_VLOG_LYD, (*result), "select", xml->name);
Radek Krejcib3d905d2017-02-24 16:15:44 +0100432 goto error;
Michal Vasko7675c622017-03-02 10:50:07 +0100433 case 3:
Michal Vasko53b7da02018-02-13 15:28:42 +0100434 LOGVAL(ctx, LYE_MISSATTR, LY_VLOG_LYD, (*result), "type", xml->name);
Radek Krejcib3d905d2017-02-24 16:15:44 +0100435 goto error;
Michal Vasko7675c622017-03-02 10:50:07 +0100436 default:
Michal Vasko53b7da02018-02-13 15:28:42 +0100437 LOGINT(ctx);
Radek Krejcib3d905d2017-02-24 16:15:44 +0100438 goto error;
Radek Krejci146e3fc2017-02-24 13:41:00 +0100439 }
440 }
441
442 /* type specific processing */
443 if (schema->nodetype & (LYS_LEAF | LYS_LEAFLIST)) {
444 /* type detection and assigning the value */
445 if (xml_get_value(*result, xml, editbits)) {
446 goto error;
447 }
448 } else if (schema->nodetype & LYS_ANYDATA) {
449 /* store children values */
450 if (xml->child) {
451 child = xml->child;
452 /* manually unlink all siblings and correct namespaces */
453 xml->child = NULL;
454 LY_TREE_FOR(child, next) {
455 next->parent = NULL;
456 lyxml_correct_elem_ns(ctx, next, 1, 1);
457 }
458
459 ((struct lyd_node_anydata *)*result)->value_type = LYD_ANYDATA_XML;
460 ((struct lyd_node_anydata *)*result)->value.xml = child;
461 } else {
462 ((struct lyd_node_anydata *)*result)->value_type = LYD_ANYDATA_CONSTSTRING;
463 ((struct lyd_node_anydata *)*result)->value.str = lydict_insert(ctx, xml->content, 0);
464 }
465 } else if (schema->nodetype & (LYS_RPC | LYS_ACTION)) {
466 if (!(options & LYD_OPT_RPC) || *act_notif) {
Michal Vasko53b7da02018-02-13 15:28:42 +0100467 LOGVAL(ctx, LYE_INELEM, LY_VLOG_LYD, (*result), schema->name);
468 LOGVAL(ctx, LYE_SPEC, LY_VLOG_PREV, NULL, "Unexpected %s node \"%s\".",
Radek Krejci146e3fc2017-02-24 13:41:00 +0100469 (schema->nodetype == LYS_RPC ? "rpc" : "action"), schema->name);
470 goto error;
471 }
472 *act_notif = *result;
473 } else if (schema->nodetype == LYS_NOTIF) {
474 if (!(options & LYD_OPT_NOTIF) || *act_notif) {
Michal Vasko53b7da02018-02-13 15:28:42 +0100475 LOGVAL(ctx, LYE_INELEM, LY_VLOG_LYD, (*result), schema->name);
476 LOGVAL(ctx, LYE_SPEC, LY_VLOG_PREV, NULL, "Unexpected notification node \"%s\".", schema->name);
Radek Krejci146e3fc2017-02-24 13:41:00 +0100477 goto error;
478 }
479 *act_notif = *result;
480 }
481
482 /* first part of validation checks */
483 if (lyv_data_context(*result, options, unres)) {
484 goto error;
485 }
486
Radek Krejci14c00092015-11-01 11:03:24 +0100487 /* process children */
488 if (havechildren && xml->child) {
489 diter = dlast = NULL;
490 LY_TREE_FOR_SAFE(xml->child, next, child) {
Michal Vaskoa51c2002017-03-01 10:14:06 +0100491 r = xml_parse_data(ctx, child, *result, (*result)->child, dlast, options, unres, &diter, act_notif);
Radek Krejci14c00092015-11-01 11:03:24 +0100492 if (r) {
493 goto error;
Radek Krejci86538212015-12-17 15:59:01 +0100494 } else if (options & LYD_OPT_DESTRUCT) {
495 lyxml_free(ctx, child);
Radek Krejci14c00092015-11-01 11:03:24 +0100496 }
Radek Krejci61767ca2016-09-19 14:21:55 +0200497 if (diter && !diter->next) {
498 /* the child was parsed/created and it was placed as the last child. The child can be inserted
499 * 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 +0100500 dlast = diter;
501 }
502 }
503 }
504
Radek Krejcifb7156e2016-10-27 13:39:56 +0200505 /* if we have empty non-presence container, we keep it, but mark it as default */
Radek Krejci2537fd32016-09-07 16:22:41 +0200506 if (schema->nodetype == LYS_CONTAINER && !(*result)->child &&
Radek Krejcid3e73722016-05-23 12:24:55 +0200507 !(*result)->attr && !((struct lys_node_container *)schema)->presence) {
Radek Krejcifb7156e2016-10-27 13:39:56 +0200508 (*result)->dflt = 1;
Radek Krejci0c0086a2016-03-24 15:20:28 +0100509 }
510
Radek Krejcicf509982015-12-15 09:22:44 +0100511 /* rest of validation checks */
Michal Vaskoe3886bb2017-01-02 11:33:28 +0100512 if (lyv_data_content(*result, options, unres) ||
Michal Vasko53b7da02018-02-13 15:28:42 +0100513 lyv_multicases(*result, NULL, prev ? &first_sibling : NULL, 0, NULL)) {
514 goto error;
Radek Krejci78ce8612015-08-18 14:31:05 +0200515 }
516
Radek Krejcica7efb72016-01-18 13:06:01 +0100517 /* validation successful */
Radek Krejci63b79c82016-08-10 10:09:33 +0200518 if ((*result)->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) {
519 /* postpone checking when there will be all list/leaflist instances */
Michal Vaskoe3886bb2017-01-02 11:33:28 +0100520 (*result)->validity |= LYD_VAL_UNIQUE;
Radek Krejci63b79c82016-08-10 10:09:33 +0200521 }
Radek Krejcica7efb72016-01-18 13:06:01 +0100522
Radek Krejci3b41a6c2015-10-31 23:06:12 +0100523 return ret;
Radek Krejci3e3affe2015-07-09 15:38:40 +0200524
525error:
Radek Krejcieab784a2015-08-27 09:56:53 +0200526 /* cleanup */
Radek Krejci0c0086a2016-03-24 15:20:28 +0100527 for (i = unres->count - 1; i >= 0; i--) {
528 /* remove unres items connected with the node being removed */
529 if (unres->node[i] == *result) {
530 unres_data_del(unres, i);
531 }
532 }
Radek Krejci3b41a6c2015-10-31 23:06:12 +0100533 lyd_free(*result);
534 *result = NULL;
Michal Vasko53b7da02018-02-13 15:28:42 +0100535 return -1;
Radek Krejci1721c012015-07-08 12:52:33 +0200536}
537
Radek Krejci4a49bdf2016-01-12 17:17:01 +0100538API struct lyd_node *
539lyd_parse_xml(struct ly_ctx *ctx, struct lyxml_elem **root, int options, ...)
Radek Krejcic6704c82015-10-06 11:12:45 +0200540{
Radek Krejci4a49bdf2016-01-12 17:17:01 +0100541 va_list ap;
Radek Krejci63b79c82016-08-10 10:09:33 +0200542 int r, i;
Radek Krejci4a49bdf2016-01-12 17:17:01 +0100543 struct unres_data *unres = NULL;
Michal Vasko945b96b2016-10-18 11:49:12 +0200544 const struct lyd_node *rpc_act = NULL, *data_tree = NULL;
545 struct lyd_node *result = NULL, *iter, *last, *reply_parent = NULL, *reply_top = NULL, *act_notif = NULL;
Michal Vaskoa8756562017-05-03 14:42:23 +0200546 struct lyxml_elem *xmlstart, *xmlelem, *xmlaux, *xmlfree = NULL;
Radek Krejci63b79c82016-08-10 10:09:33 +0200547 struct ly_set *set;
Radek Krejci2342cf62016-01-29 16:48:23 +0100548
Radek Krejcic6704c82015-10-06 11:12:45 +0200549 if (!ctx || !root) {
Michal Vasko53b7da02018-02-13 15:28:42 +0100550 LOGARG;
Radek Krejcic6704c82015-10-06 11:12:45 +0200551 return NULL;
552 }
553
Michal Vasko53b7da02018-02-13 15:28:42 +0100554 if (lyp_data_check_options(ctx, options, __func__)) {
Radek Krejci4a49bdf2016-01-12 17:17:01 +0100555 return NULL;
556 }
557
Radek Krejci19dbedb2017-08-08 13:54:31 +0200558 if (!(*root) && !(options & LYD_OPT_RPCREPLY)) {
559 /* empty tree */
560 if (options & (LYD_OPT_RPC | LYD_OPT_NOTIF)) {
561 /* error, top level node identify RPC and Notification */
Michal Vasko53b7da02018-02-13 15:28:42 +0100562 LOGERR(ctx, LY_EINVAL, "%s: *root identifies RPC/Notification so it cannot be NULL.", __func__);
Radek Krejci19dbedb2017-08-08 13:54:31 +0200563 return NULL;
564 } else if (!(options & LYD_OPT_RPCREPLY)) {
565 /* others - no work is needed, just check for missing mandatory nodes */
566 lyd_validate(&result, options, ctx);
Michal Vasko53b7da02018-02-13 15:28:42 +0100567 return result;
Radek Krejci19dbedb2017-08-08 13:54:31 +0200568 }
569 /* continue with empty RPC reply, for which we need RPC */
Radek Krejcia6939c32016-03-24 15:19:09 +0100570 }
571
Michal Vasko24d982f2016-04-18 15:13:58 +0200572 unres = calloc(1, sizeof *unres);
Michal Vasko53b7da02018-02-13 15:28:42 +0100573 LY_CHECK_ERR_RETURN(!unres, LOGMEM(ctx), NULL);
Michal Vasko24d982f2016-04-18 15:13:58 +0200574
Radek Krejci4a49bdf2016-01-12 17:17:01 +0100575 va_start(ap, options);
576 if (options & LYD_OPT_RPCREPLY) {
Michal Vasko945b96b2016-10-18 11:49:12 +0200577 rpc_act = va_arg(ap, const struct lyd_node *);
578 if (!rpc_act || rpc_act->parent || !(rpc_act->schema->nodetype & (LYS_RPC | LYS_LIST | LYS_CONTAINER))) {
Michal Vasko53b7da02018-02-13 15:28:42 +0100579 LOGERR(ctx, LY_EINVAL, "%s: invalid variable parameter (const struct lyd_node *rpc_act).", __func__);
Michal Vasko24d982f2016-04-18 15:13:58 +0200580 goto error;
Radek Krejci4a49bdf2016-01-12 17:17:01 +0100581 }
Michal Vasko945b96b2016-10-18 11:49:12 +0200582 if (rpc_act->schema->nodetype == LYS_RPC) {
583 /* RPC request */
584 reply_top = reply_parent = _lyd_new(NULL, rpc_act->schema, 0);
585 } else {
586 /* action request */
587 reply_top = lyd_dup(rpc_act, 1);
588 LY_TREE_DFS_BEGIN(reply_top, iter, reply_parent) {
589 if (reply_parent->schema->nodetype == LYS_ACTION) {
590 break;
591 }
592 LY_TREE_DFS_END(reply_top, iter, reply_parent);
593 }
594 if (!reply_parent) {
Michal Vasko53b7da02018-02-13 15:28:42 +0100595 LOGERR(ctx, LY_EINVAL, "%s: invalid variable parameter (const struct lyd_node *rpc_act).", __func__);
Michal Vasko945b96b2016-10-18 11:49:12 +0200596 lyd_free_withsiblings(reply_top);
597 goto error;
598 }
599 lyd_free_withsiblings(reply_parent->child);
600 }
Michal Vasko45e23652016-09-21 11:24:32 +0200601 }
602 if (options & (LYD_OPT_RPC | LYD_OPT_NOTIF | LYD_OPT_RPCREPLY)) {
Michal Vasko945b96b2016-10-18 11:49:12 +0200603 data_tree = va_arg(ap, const struct lyd_node *);
Michal Vasko6b44d712016-09-12 16:25:46 +0200604 if (data_tree) {
Michal Vaskod6a48062017-08-11 14:28:56 +0200605 if (options & LYD_OPT_NOEXTDEPS) {
Michal Vasko53b7da02018-02-13 15:28:42 +0100606 LOGERR(ctx, LY_EINVAL, "%s: invalid parameter (variable arg const struct lyd_node *data_tree and LYD_OPT_NOEXTDEPS set).",
Michal Vaskod6a48062017-08-11 14:28:56 +0200607 __func__);
Michal Vaskodfbac232017-08-11 14:39:02 +0200608 goto error;
Michal Vaskod6a48062017-08-11 14:28:56 +0200609 }
610
Michal Vasko945b96b2016-10-18 11:49:12 +0200611 LY_TREE_FOR((struct lyd_node *)data_tree, iter) {
Michal Vasko6b44d712016-09-12 16:25:46 +0200612 if (iter->parent) {
613 /* a sibling is not top-level */
Michal Vasko53b7da02018-02-13 15:28:42 +0100614 LOGERR(ctx, LY_EINVAL, "%s: invalid variable parameter (const struct lyd_node *data_tree).", __func__);
Michal Vasko6b44d712016-09-12 16:25:46 +0200615 goto error;
616 }
617 }
618
619 /* move it to the beginning */
620 for (; data_tree->prev->next; data_tree = data_tree->prev);
621
622 /* LYD_OPT_NOSIBLINGS cannot be set in this case */
623 if (options & LYD_OPT_NOSIBLINGS) {
Michal Vasko53b7da02018-02-13 15:28:42 +0100624 LOGERR(ctx, LY_EINVAL, "%s: invalid parameter (variable arg const struct lyd_node *data_tree with LYD_OPT_NOSIBLINGS).", __func__);
Michal Vasko6b44d712016-09-12 16:25:46 +0200625 goto error;
626 }
627 }
Radek Krejci4a49bdf2016-01-12 17:17:01 +0100628 }
629
Radek Krejci19dbedb2017-08-08 13:54:31 +0200630 if ((*root) && !(options & LYD_OPT_NOSIBLINGS)) {
Radek Krejci86538212015-12-17 15:59:01 +0100631 /* locate the first root to process */
632 if ((*root)->parent) {
633 xmlstart = (*root)->parent->child;
634 } else {
635 xmlstart = *root;
636 while(xmlstart->prev->next) {
637 xmlstart = xmlstart->prev;
638 }
Radek Krejci04b97de2015-10-31 23:09:15 +0100639 }
Radek Krejci86538212015-12-17 15:59:01 +0100640 } else {
641 xmlstart = *root;
642 }
Radek Krejci86538212015-12-17 15:59:01 +0100643
Michal Vaskob1b19442016-07-13 12:26:01 +0200644 if ((options & LYD_OPT_RPC)
645 && !strcmp(xmlstart->name, "action") && !strcmp(xmlstart->ns->value, "urn:ietf:params:xml:ns:yang:1")) {
646 /* it's an action, not a simple RPC */
647 xmlstart = xmlstart->child;
Michal Vaskoa8756562017-05-03 14:42:23 +0200648 if (options & LYD_OPT_DESTRUCT) {
649 /* free it later */
650 xmlfree = xmlstart->parent;
651 }
Michal Vaskob1b19442016-07-13 12:26:01 +0200652 }
653
654 iter = last = NULL;
Radek Krejci86538212015-12-17 15:59:01 +0100655 LY_TREE_FOR_SAFE(xmlstart, xmlaux, xmlelem) {
Michal Vaskob15cae22016-09-15 09:40:56 +0200656 r = xml_parse_data(ctx, xmlelem, reply_parent, result, last, options, unres, &iter, &act_notif);
Radek Krejci3b41a6c2015-10-31 23:06:12 +0100657 if (r) {
Michal Vasko945b96b2016-10-18 11:49:12 +0200658 if (reply_top) {
659 result = reply_top;
Pavol Vican8a552f62016-09-05 11:20:57 +0200660 }
Michal Vasko24d982f2016-04-18 15:13:58 +0200661 goto error;
Radek Krejci86538212015-12-17 15:59:01 +0100662 } else if (options & LYD_OPT_DESTRUCT) {
663 lyxml_free(ctx, xmlelem);
664 *root = xmlaux;
Radek Krejci3b41a6c2015-10-31 23:06:12 +0100665 }
666 if (iter) {
667 last = iter;
Radek Krejcidfb00d62017-09-06 09:39:35 +0200668 if ((options & LYD_OPT_DATA_ADD_YANGLIB) && iter->schema->module == ctx->models.list[ctx->internal_module_count - 1]) {
Radek Krejci06f8bb92017-08-02 15:36:25 +0200669 /* ietf-yang-library data present, so ignore the option to add them */
670 options &= ~LYD_OPT_DATA_ADD_YANGLIB;
671 }
Radek Krejci3b41a6c2015-10-31 23:06:12 +0100672 }
673 if (!result) {
674 result = iter;
675 }
Radek Krejci86538212015-12-17 15:59:01 +0100676
677 if (options & LYD_OPT_NOSIBLINGS) {
678 /* stop after the first processed root */
679 break;
680 }
Radek Krejci3b41a6c2015-10-31 23:06:12 +0100681 }
Radek Krejcic6704c82015-10-06 11:12:45 +0200682
Michal Vasko945b96b2016-10-18 11:49:12 +0200683 if (reply_top) {
684 result = reply_top;
Michal Vaskoe45aff52016-08-25 09:01:09 +0200685 }
686
Michal Vasko945b96b2016-10-18 11:49:12 +0200687 if ((options & LYD_OPT_RPCREPLY) && (rpc_act->schema->nodetype != LYS_RPC)) {
688 /* action reply */
689 act_notif = reply_parent;
Michal Vaskoafa7a642016-10-18 15:11:38 +0200690 } else if ((options & (LYD_OPT_RPC | LYD_OPT_NOTIF)) && !act_notif) {
Michal Vasko53b7da02018-02-13 15:28:42 +0100691 LOGVAL(ctx, LYE_INELEM, LY_VLOG_LYD, result, (options & LYD_OPT_RPC ? "action" : "notification"), result->schema->name);
Michal Vaskoafa7a642016-10-18 15:11:38 +0200692 goto error;
Radek Krejcib45b3082016-09-09 16:08:51 +0200693 }
694
Radek Krejci06f8bb92017-08-02 15:36:25 +0200695 /* add missing ietf-yang-library if requested */
696 if (options & LYD_OPT_DATA_ADD_YANGLIB) {
697 if (!result) {
698 result = ly_ctx_info(ctx);
699 } else if (lyd_merge(result, ly_ctx_info(ctx), LYD_OPT_DESTRUCT | LYD_OPT_EXPLICIT)) {
Michal Vasko53b7da02018-02-13 15:28:42 +0100700 LOGERR(ctx, LY_EINT, "Adding ietf-yang-library data failed.");
Radek Krejci06f8bb92017-08-02 15:36:25 +0200701 goto error;
702 }
703 }
704
705 /* check for uniqueness of top-level lists/leaflists because
Radek Krejci63b79c82016-08-10 10:09:33 +0200706 * only the inner instances were tested in lyv_data_content() */
707 set = ly_set_new();
708 LY_TREE_FOR(result, iter) {
709 if (!(iter->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !(iter->validity & LYD_VAL_UNIQUE)) {
710 continue;
711 }
712
713 /* check each list/leaflist only once */
714 i = set->number;
715 if (ly_set_add(set, iter->schema, 0) != i) {
716 /* already checked */
717 continue;
718 }
719
720 if (lyv_data_unique(iter, result)) {
721 ly_set_free(set);
722 goto error;
723 }
724 }
725 ly_set_free(set);
726
Radek Krejcib45b3082016-09-09 16:08:51 +0200727 /* add default values, resolve unres and check for mandatory nodes in final tree */
Michal Vaskob15cae22016-09-15 09:40:56 +0200728 if (lyd_defaults_add_unres(&result, options, ctx, data_tree, act_notif, unres)) {
Michal Vasko6b44d712016-09-12 16:25:46 +0200729 goto error;
730 }
Michal Vaskoad2e44a2017-01-03 10:31:35 +0100731 if (!(options & (LYD_OPT_TRUSTED | LYD_OPT_NOTIF_FILTER))
732 && lyd_check_mandatory_tree((act_notif ? act_notif : result), ctx, options)) {
Michal Vaskoafa7a642016-10-18 15:11:38 +0200733 goto error;
Radek Krejci46165822016-08-26 14:06:27 +0200734 }
735
Michal Vaskoa8756562017-05-03 14:42:23 +0200736 if (xmlfree) {
737 lyxml_free(ctx, xmlfree);
738 }
Michal Vasko24d982f2016-04-18 15:13:58 +0200739 free(unres->node);
740 free(unres->type);
741 free(unres);
Radek Krejci4a49bdf2016-01-12 17:17:01 +0100742 va_end(ap);
Radek Krejcic6704c82015-10-06 11:12:45 +0200743 return result;
Michal Vasko24d982f2016-04-18 15:13:58 +0200744
745error:
746 lyd_free_withsiblings(result);
Michal Vaskoa8756562017-05-03 14:42:23 +0200747 if (xmlfree) {
748 lyxml_free(ctx, xmlfree);
749 }
Michal Vasko24d982f2016-04-18 15:13:58 +0200750 free(unres->node);
751 free(unres->type);
752 free(unres);
753 va_end(ap);
Michal Vasko24d982f2016-04-18 15:13:58 +0200754 return NULL;
Radek Krejcic6704c82015-10-06 11:12:45 +0200755}