Radek Krejci | 1721c01 | 2015-07-08 12:52:33 +0200 | [diff] [blame] | 1 | /** |
Michal Vasko | 45a0ef3 | 2016-09-22 11:07:38 +0200 | [diff] [blame] | 2 | * @file parser_xml.c |
Radek Krejci | 1721c01 | 2015-07-08 12:52:33 +0200 | [diff] [blame] | 3 | * @author Radek Krejci <rkrejci@cesnet.cz> |
| 4 | * @brief XML data parser for libyang |
| 5 | * |
Michal Vasko | 7675c62 | 2017-03-02 10:50:07 +0100 | [diff] [blame] | 6 | * Copyright (c) 2015 - 2017 CESNET, z.s.p.o. |
Radek Krejci | 1721c01 | 2015-07-08 12:52:33 +0200 | [diff] [blame] | 7 | * |
Radek Krejci | 54f6fb3 | 2016-02-24 12:56:39 +0100 | [diff] [blame] | 8 | * This source code is licensed under BSD 3-Clause License (the "License"). |
| 9 | * You may not use this file except in compliance with the License. |
| 10 | * You may obtain a copy of the License at |
Michal Vasko | 8de098c | 2016-02-26 10:00:25 +0100 | [diff] [blame] | 11 | * |
Radek Krejci | 54f6fb3 | 2016-02-24 12:56:39 +0100 | [diff] [blame] | 12 | * https://opensource.org/licenses/BSD-3-Clause |
Radek Krejci | 1721c01 | 2015-07-08 12:52:33 +0200 | [diff] [blame] | 13 | */ |
| 14 | |
| 15 | #include <assert.h> |
Radek Krejci | 3e3affe | 2015-07-09 15:38:40 +0200 | [diff] [blame] | 16 | #include <ctype.h> |
Radek Krejci | 1721c01 | 2015-07-08 12:52:33 +0200 | [diff] [blame] | 17 | #include <errno.h> |
Radek Krejci | 4a49bdf | 2016-01-12 17:17:01 +0100 | [diff] [blame] | 18 | #include <stdarg.h> |
Radek Krejci | 1721c01 | 2015-07-08 12:52:33 +0200 | [diff] [blame] | 19 | #include <stdlib.h> |
| 20 | #include <string.h> |
Michal Vasko | 8bcdf29 | 2015-08-19 14:04:43 +0200 | [diff] [blame] | 21 | #include <limits.h> |
Radek Krejci | 1721c01 | 2015-07-08 12:52:33 +0200 | [diff] [blame] | 22 | |
Radek Krejci | 998a0b8 | 2015-08-17 13:14:36 +0200 | [diff] [blame] | 23 | #include "libyang.h" |
| 24 | #include "common.h" |
| 25 | #include "context.h" |
Michal Vasko | b798232 | 2015-10-16 13:56:12 +0200 | [diff] [blame] | 26 | #include "parser.h" |
Radek Krejci | 998a0b8 | 2015-08-17 13:14:36 +0200 | [diff] [blame] | 27 | #include "tree_internal.h" |
| 28 | #include "validation.h" |
Michal Vasko | fc5744d | 2015-10-22 12:09:34 +0200 | [diff] [blame] | 29 | #include "xml_internal.h" |
Radek Krejci | 1721c01 | 2015-07-08 12:52:33 +0200 | [diff] [blame] | 30 | |
Michal Vasko | 0d343d1 | 2015-08-24 14:57:36 +0200 | [diff] [blame] | 31 | /* does not log */ |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 32 | static struct lys_node * |
Radek Krejci | 4a49bdf | 2016-01-12 17:17:01 +0100 | [diff] [blame] | 33 | xml_data_search_schemanode(struct lyxml_elem *xml, struct lys_node *start, int options) |
Radek Krejci | 1721c01 | 2015-07-08 12:52:33 +0200 | [diff] [blame] | 34 | { |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 35 | struct lys_node *result, *aux; |
Radek Krejci | 1721c01 | 2015-07-08 12:52:33 +0200 | [diff] [blame] | 36 | |
| 37 | LY_TREE_FOR(start, result) { |
Radek Krejci | 4a49bdf | 2016-01-12 17:17:01 +0100 | [diff] [blame] | 38 | /* skip groupings ... */ |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 39 | if (result->nodetype == LYS_GROUPING) { |
Radek Krejci | 1721c01 | 2015-07-08 12:52:33 +0200 | [diff] [blame] | 40 | continue; |
Radek Krejci | 4a49bdf | 2016-01-12 17:17:01 +0100 | [diff] [blame] | 41 | /* ... 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 Krejci | 1721c01 | 2015-07-08 12:52:33 +0200 | [diff] [blame] | 47 | } |
| 48 | |
Radek Krejci | fb54be4 | 2015-10-02 15:21:16 +0200 | [diff] [blame] | 49 | /* 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 Krejci | 4a49bdf | 2016-01-12 17:17:01 +0100 | [diff] [blame] | 51 | aux = xml_data_search_schemanode(xml, result->child, options); |
Radek Krejci | 1721c01 | 2015-07-08 12:52:33 +0200 | [diff] [blame] | 52 | 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 Krejci | 749190d | 2016-02-18 16:26:25 +0100 | [diff] [blame] | 61 | if (ly_strequal(result->name, xml->name, 1)) { |
Radek Krejci | 1721c01 | 2015-07-08 12:52:33 +0200 | [diff] [blame] | 62 | /* names matches, what about namespaces? */ |
Radek Krejci | 1a6303d | 2016-11-04 12:42:46 +0100 | [diff] [blame] | 63 | if (ly_strequal(lys_main_module(result->module)->ns, xml->ns->value, 1)) { |
Radek Krejci | 1721c01 | 2015-07-08 12:52:33 +0200 | [diff] [blame] | 64 | /* 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 Vasko | 0d343d1 | 2015-08-24 14:57:36 +0200 | [diff] [blame] | 76 | /* logs directly */ |
Radek Krejci | e474847 | 2015-07-08 18:00:22 +0200 | [diff] [blame] | 77 | static int |
Michal Vasko | 35f46a8 | 2018-05-30 10:44:11 +0200 | [diff] [blame] | 78 | xml_get_value(struct lyd_node *node, struct lyxml_elem *xml, int editbits, int trusted) |
Michal Vasko | 07471a5 | 2015-07-16 11:18:48 +0200 | [diff] [blame] | 79 | { |
Michal Vasko | 4c18331 | 2015-09-25 10:41:47 +0200 | [diff] [blame] | 80 | struct lyd_node_leaf_list *leaf = (struct lyd_node_leaf_list *)node; |
Michal Vasko | 23b61ec | 2015-08-19 11:19:50 +0200 | [diff] [blame] | 81 | |
Radek Krejci | 0b7704f | 2016-03-18 12:16:14 +0100 | [diff] [blame] | 82 | assert(node && (node->schema->nodetype & (LYS_LEAFLIST | LYS_LEAF)) && xml); |
Radek Krejci | 5a98815 | 2015-07-15 11:16:26 +0200 | [diff] [blame] | 83 | |
Michal Vasko | d27602c | 2016-12-20 11:11:17 +0100 | [diff] [blame] | 84 | leaf->value_str = lydict_insert(node->schema->module->ctx, xml->content, 0); |
Radek Krejci | e474847 | 2015-07-08 18:00:22 +0200 | [diff] [blame] | 85 | |
Radek Krejci | 06b4527 | 2017-02-24 16:15:02 +0100 | [diff] [blame] | 86 | if ((editbits & 0x20) && (node->schema->nodetype & LYS_LEAF) && (!leaf->value_str || !leaf->value_str[0])) { |
Radek Krejci | 1fe9ac0 | 2016-09-23 09:38:21 +0200 | [diff] [blame] | 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 */ |
Michal Vasko | 70bf8e5 | 2018-03-26 11:32:33 +0200 | [diff] [blame] | 89 | leaf->value_type = LY_TYPE_UNKNOWN; |
Radek Krejci | 1fe9ac0 | 2016-09-23 09:38:21 +0200 | [diff] [blame] | 90 | return EXIT_SUCCESS; |
| 91 | } |
| 92 | |
Radek Krejci | 1899d6a | 2016-11-03 13:48:07 +0100 | [diff] [blame] | 93 | /* 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 Vasko | 35f46a8 | 2018-05-30 10:44:11 +0200 | [diff] [blame] | 95 | if (!lyp_parse_value(&((struct lys_node_leaf *)leaf->schema)->type, &leaf->value_str, xml, leaf, NULL, NULL, 1, 0, trusted)) { |
Michal Vasko | 493bea7 | 2015-07-16 16:08:12 +0200 | [diff] [blame] | 96 | return EXIT_FAILURE; |
Radek Krejci | e474847 | 2015-07-08 18:00:22 +0200 | [diff] [blame] | 97 | } |
| 98 | |
| 99 | return EXIT_SUCCESS; |
| 100 | } |
| 101 | |
Michal Vasko | 0d343d1 | 2015-08-24 14:57:36 +0200 | [diff] [blame] | 102 | /* logs directly */ |
Radek Krejci | 3b41a6c | 2015-10-31 23:06:12 +0100 | [diff] [blame] | 103 | static int |
Radek Krejci | bd93012 | 2016-08-10 13:28:26 +0200 | [diff] [blame] | 104 | xml_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, |
PavolVican | 832f543 | 2018-02-21 00:54:45 +0100 | [diff] [blame] | 106 | struct lyd_node **act_notif, const char *yang_data_name) |
Radek Krejci | 1721c01 | 2015-07-08 12:52:33 +0200 | [diff] [blame] | 107 | { |
Michal Vasko | f53187d | 2017-01-13 13:23:14 +0100 | [diff] [blame] | 108 | const struct lys_module *mod = NULL; |
Radek Krejci | bd93012 | 2016-08-10 13:28:26 +0200 | [diff] [blame] | 109 | struct lyd_node *diter, *dlast; |
Michal Vasko | 5e523b6 | 2016-08-26 16:23:15 +0200 | [diff] [blame] | 110 | struct lys_node *schema = NULL, *target; |
PavolVican | 832f543 | 2018-02-21 00:54:45 +0100 | [diff] [blame] | 111 | const struct lys_node *ext_node; |
Michal Vasko | 5e523b6 | 2016-08-26 16:23:15 +0200 | [diff] [blame] | 112 | struct lys_node_augment *aug; |
Radek Krejci | 5f9e8c9 | 2015-10-30 10:01:06 +0100 | [diff] [blame] | 113 | struct lyd_attr *dattr, *dattr_iter; |
Radek Krejci | a5241e5 | 2015-08-19 15:09:31 +0200 | [diff] [blame] | 114 | struct lyxml_attr *attr; |
Michal Vasko | f748dbc | 2016-04-05 11:27:47 +0200 | [diff] [blame] | 115 | struct lyxml_elem *child, *next; |
Radek Krejci | 65aca41 | 2018-01-24 11:23:06 +0100 | [diff] [blame] | 116 | int i, j, havechildren, r, editbits = 0, filterflag = 0, found; |
| 117 | uint8_t pos; |
Radek Krejci | 3b41a6c | 2015-10-31 23:06:12 +0100 | [diff] [blame] | 118 | int ret = 0; |
Radek Krejci | abb7b58 | 2016-04-20 16:15:47 +0200 | [diff] [blame] | 119 | const char *str = NULL; |
Michal Vasko | 5bf8e21 | 2018-01-19 09:04:41 +0100 | [diff] [blame] | 120 | char *msg; |
Radek Krejci | 1721c01 | 2015-07-08 12:52:33 +0200 | [diff] [blame] | 121 | |
Radek Krejci | 3b41a6c | 2015-10-31 23:06:12 +0100 | [diff] [blame] | 122 | assert(xml); |
| 123 | assert(result); |
| 124 | *result = NULL; |
| 125 | |
Radek Krejci | e1bacd7 | 2017-03-01 13:18:46 +0100 | [diff] [blame] | 126 | if (xml->flags & LYXML_ELEM_MIXED) { |
| 127 | if (options & LYD_OPT_STRICT) { |
Michal Vasko | 53b7da0 | 2018-02-13 15:28:42 +0100 | [diff] [blame] | 128 | LOGVAL(ctx, LYE_XML_INVAL, LY_VLOG_XML, xml, "XML element with mixed content"); |
Radek Krejci | e1bacd7 | 2017-03-01 13:18:46 +0100 | [diff] [blame] | 129 | return -1; |
| 130 | } else { |
| 131 | return 0; |
| 132 | } |
| 133 | } |
| 134 | |
Radek Krejci | 1721c01 | 2015-07-08 12:52:33 +0200 | [diff] [blame] | 135 | if (!xml->ns || !xml->ns->value) { |
Radek Krejci | 2342cf6 | 2016-01-29 16:48:23 +0100 | [diff] [blame] | 136 | if (options & LYD_OPT_STRICT) { |
Michal Vasko | 53b7da0 | 2018-02-13 15:28:42 +0100 | [diff] [blame] | 137 | LOGVAL(ctx, LYE_XML_MISS, LY_VLOG_XML, xml, "element's", "namespace"); |
Radek Krejci | 2342cf6 | 2016-01-29 16:48:23 +0100 | [diff] [blame] | 138 | return -1; |
| 139 | } else { |
| 140 | return 0; |
| 141 | } |
Radek Krejci | 1721c01 | 2015-07-08 12:52:33 +0200 | [diff] [blame] | 142 | } |
| 143 | |
| 144 | /* find schema node */ |
Michal Vasko | b1b1944 | 2016-07-13 12:26:01 +0200 | [diff] [blame] | 145 | if (!parent) { |
Michal Vasko | 03b0a67 | 2018-06-15 09:58:30 +0200 | [diff] [blame] | 146 | mod = ly_ctx_get_module_by_ns(ctx, xml->ns->value, NULL, 0); |
Michal Vasko | f53187d | 2017-01-13 13:23:14 +0100 | [diff] [blame] | 147 | if (ctx->data_clb) { |
| 148 | if (!mod) { |
| 149 | mod = ctx->data_clb(ctx, NULL, xml->ns->value, 0, ctx->data_clb_data); |
| 150 | } else if (!mod->implemented) { |
| 151 | mod = ctx->data_clb(ctx, mod->name, mod->ns, LY_MODCLB_NOT_IMPLEMENTED, ctx->data_clb_data); |
Radek Krejci | 27fe55e | 2016-09-13 17:13:35 +0200 | [diff] [blame] | 152 | } |
Michal Vasko | f53187d | 2017-01-13 13:23:14 +0100 | [diff] [blame] | 153 | } |
| 154 | |
| 155 | /* get the proper schema node */ |
| 156 | if (mod && mod->implemented && !mod->disabled) { |
PavolVican | 832f543 | 2018-02-21 00:54:45 +0100 | [diff] [blame] | 157 | if (options & LYD_OPT_DATA_TEMPLATE) { |
Michal Vasko | d60a1a3 | 2018-05-23 16:31:22 +0200 | [diff] [blame] | 158 | if (yang_data_name) { |
| 159 | ext_node = lyp_get_yang_data_template(mod, yang_data_name, strlen(yang_data_name)); |
| 160 | if (ext_node) { |
| 161 | schema = *((struct lys_node **) lys_ext_complex_get_substmt(LY_STMT_CONTAINER, (struct lys_ext_instance_complex *)ext_node, NULL)); |
| 162 | schema = xml_data_search_schemanode(xml, schema, options); |
| 163 | } |
PavolVican | 832f543 | 2018-02-21 00:54:45 +0100 | [diff] [blame] | 164 | } |
| 165 | } else { |
| 166 | schema = xml_data_search_schemanode(xml, mod->data, options); |
| 167 | if (!schema) { |
| 168 | /* it still can be the specific case of this module containing an augment of another module |
| 169 | * top-level choice or top-level choice's case, bleh */ |
| 170 | for (j = 0; j < mod->augment_size; ++j) { |
| 171 | aug = &mod->augment[j]; |
| 172 | target = aug->target; |
| 173 | if (target->nodetype & (LYS_CHOICE | LYS_CASE)) { |
| 174 | /* 1) okay, the target is choice or case */ |
| 175 | while (target && (target->nodetype & (LYS_CHOICE | LYS_CASE | LYS_USES))) { |
| 176 | target = lys_parent(target); |
| 177 | } |
| 178 | /* 2) now, the data node will be top-level, there are only non-data schema nodes */ |
| 179 | if (!target) { |
Michal Vasko | 8829c11 | 2018-06-15 09:59:00 +0200 | [diff] [blame] | 180 | while ((schema = (struct lys_node *) lys_getnext(schema, (struct lys_node *) aug, NULL, 0))) { |
PavolVican | 832f543 | 2018-02-21 00:54:45 +0100 | [diff] [blame] | 181 | /* 3) alright, even the name matches, we found our schema node */ |
| 182 | if (ly_strequal(schema->name, xml->name, 1)) { |
| 183 | break; |
| 184 | } |
Michal Vasko | 5e523b6 | 2016-08-26 16:23:15 +0200 | [diff] [blame] | 185 | } |
| 186 | } |
| 187 | } |
| 188 | |
PavolVican | 832f543 | 2018-02-21 00:54:45 +0100 | [diff] [blame] | 189 | if (schema) { |
| 190 | break; |
| 191 | } |
Michal Vasko | 5e523b6 | 2016-08-26 16:23:15 +0200 | [diff] [blame] | 192 | } |
| 193 | } |
Radek Krejci | 1721c01 | 2015-07-08 12:52:33 +0200 | [diff] [blame] | 194 | } |
| 195 | } |
| 196 | } else { |
| 197 | /* parsing some internal node, we start with parent's schema pointer */ |
Radek Krejci | 4a49bdf | 2016-01-12 17:17:01 +0100 | [diff] [blame] | 198 | schema = xml_data_search_schemanode(xml, parent->schema->child, options); |
Michal Vasko | f53187d | 2017-01-13 13:23:14 +0100 | [diff] [blame] | 199 | |
Michal Vasko | a358f94 | 2017-05-09 10:45:33 +0200 | [diff] [blame] | 200 | if (ctx->data_clb) { |
| 201 | if (schema && !lys_node_module(schema)->implemented) { |
Michal Vasko | ad43c18 | 2017-01-23 09:55:28 +0100 | [diff] [blame] | 202 | ctx->data_clb(ctx, lys_node_module(schema)->name, lys_node_module(schema)->ns, |
| 203 | LY_MODCLB_NOT_IMPLEMENTED, ctx->data_clb_data); |
Michal Vasko | a358f94 | 2017-05-09 10:45:33 +0200 | [diff] [blame] | 204 | } else if (!schema) { |
| 205 | if (ctx->data_clb(ctx, NULL, xml->ns->value, 0, ctx->data_clb_data)) { |
| 206 | /* context was updated, so try to find the schema node again */ |
| 207 | schema = xml_data_search_schemanode(xml, parent->schema->child, options); |
| 208 | } |
Michal Vasko | f53187d | 2017-01-13 13:23:14 +0100 | [diff] [blame] | 209 | } |
Radek Krejci | 25b9fd3 | 2015-08-10 15:06:07 +0200 | [diff] [blame] | 210 | } |
Michal Vasko | f53187d | 2017-01-13 13:23:14 +0100 | [diff] [blame] | 211 | } |
| 212 | |
| 213 | mod = lys_node_module(schema); |
| 214 | if (!mod || !mod->implemented || mod->disabled) { |
Radek Krejci | 27fe55e | 2016-09-13 17:13:35 +0200 | [diff] [blame] | 215 | if (options & LYD_OPT_STRICT) { |
Michal Vasko | af8ec36 | 2018-03-28 09:08:09 +0200 | [diff] [blame] | 216 | LOGVAL(ctx, LYE_INELEM, (parent ? LY_VLOG_LYD : LY_VLOG_STR), (parent ? (void *)parent : (void *)"/") , xml->name); |
Radek Krejci | 27fe55e | 2016-09-13 17:13:35 +0200 | [diff] [blame] | 217 | return -1; |
| 218 | } else { |
| 219 | return 0; |
| 220 | } |
Radek Krejci | 1721c01 | 2015-07-08 12:52:33 +0200 | [diff] [blame] | 221 | } |
| 222 | |
Radek Krejci | adb5761 | 2016-02-16 13:34:34 +0100 | [diff] [blame] | 223 | /* create the element structure */ |
Radek Krejci | b993025 | 2015-07-08 15:47:45 +0200 | [diff] [blame] | 224 | switch (schema->nodetype) { |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 225 | case LYS_CONTAINER: |
Radek Krejci | 27aaa73 | 2015-09-04 15:24:04 +0200 | [diff] [blame] | 226 | case LYS_LIST: |
Michal Vasko | 2f30e57 | 2015-10-01 16:00:38 +0200 | [diff] [blame] | 227 | case LYS_NOTIF: |
| 228 | case LYS_RPC: |
Michal Vasko | b1b1944 | 2016-07-13 12:26:01 +0200 | [diff] [blame] | 229 | case LYS_ACTION: |
Michal Vasko | 0fd75a2 | 2018-01-30 15:40:18 +0100 | [diff] [blame] | 230 | for (i = 0; xml->content && xml->content[i]; ++i) { |
| 231 | if (!is_xmlws(xml->content[i])) { |
| 232 | msg = malloc(22 + strlen(xml->content) + 1); |
Michal Vasko | 53b7da0 | 2018-02-13 15:28:42 +0100 | [diff] [blame] | 233 | LY_CHECK_ERR_RETURN(!msg, LOGMEM(ctx), -1); |
Michal Vasko | 0fd75a2 | 2018-01-30 15:40:18 +0100 | [diff] [blame] | 234 | sprintf(msg, "node with text data \"%s\"", xml->content); |
Michal Vasko | 53b7da0 | 2018-02-13 15:28:42 +0100 | [diff] [blame] | 235 | LOGVAL(ctx, LYE_XML_INVAL, LY_VLOG_XML, xml, msg); |
Michal Vasko | 0fd75a2 | 2018-01-30 15:40:18 +0100 | [diff] [blame] | 236 | free(msg); |
| 237 | return -1; |
| 238 | } |
Radek Krejci | 3096a80 | 2017-11-09 12:47:11 +0100 | [diff] [blame] | 239 | } |
Radek Krejci | 3b41a6c | 2015-10-31 23:06:12 +0100 | [diff] [blame] | 240 | *result = calloc(1, sizeof **result); |
Michal Vasko | ab8e440 | 2015-07-17 12:54:28 +0200 | [diff] [blame] | 241 | havechildren = 1; |
Radek Krejci | b993025 | 2015-07-08 15:47:45 +0200 | [diff] [blame] | 242 | break; |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 243 | case LYS_LEAF: |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 244 | case LYS_LEAFLIST: |
Radek Krejci | 3b41a6c | 2015-10-31 23:06:12 +0100 | [diff] [blame] | 245 | *result = calloc(1, sizeof(struct lyd_node_leaf_list)); |
Radek Krejci | e474847 | 2015-07-08 18:00:22 +0200 | [diff] [blame] | 246 | havechildren = 0; |
| 247 | break; |
Radek Krejci | 7651257 | 2015-08-04 09:47:08 +0200 | [diff] [blame] | 248 | case LYS_ANYXML: |
Radek Krejci | bf2abff | 2016-08-23 15:51:52 +0200 | [diff] [blame] | 249 | case LYS_ANYDATA: |
| 250 | *result = calloc(1, sizeof(struct lyd_node_anydata)); |
Michal Vasko | ab8e440 | 2015-07-17 12:54:28 +0200 | [diff] [blame] | 251 | havechildren = 0; |
| 252 | break; |
Radek Krejci | b993025 | 2015-07-08 15:47:45 +0200 | [diff] [blame] | 253 | default: |
Michal Vasko | 53b7da0 | 2018-02-13 15:28:42 +0100 | [diff] [blame] | 254 | LOGINT(ctx); |
Radek Krejci | 3b41a6c | 2015-10-31 23:06:12 +0100 | [diff] [blame] | 255 | return -1; |
Radek Krejci | b993025 | 2015-07-08 15:47:45 +0200 | [diff] [blame] | 256 | } |
Michal Vasko | 53b7da0 | 2018-02-13 15:28:42 +0100 | [diff] [blame] | 257 | LY_CHECK_ERR_RETURN(!(*result), LOGMEM(ctx), -1); |
Michal Vasko | 253035f | 2015-12-17 16:58:13 +0100 | [diff] [blame] | 258 | |
Radek Krejci | 61767ca | 2016-09-19 14:21:55 +0200 | [diff] [blame] | 259 | (*result)->prev = *result; |
Radek Krejci | 3b41a6c | 2015-10-31 23:06:12 +0100 | [diff] [blame] | 260 | (*result)->schema = schema; |
Radek Krejci | 61767ca | 2016-09-19 14:21:55 +0200 | [diff] [blame] | 261 | (*result)->parent = parent; |
| 262 | diter = NULL; |
Radek Krejci | 65aca41 | 2018-01-24 11:23:06 +0100 | [diff] [blame] | 263 | if (schema->nodetype == LYS_LEAF && lys_is_key((struct lys_node_leaf *)schema, &pos)) { |
Michal Vasko | 8038954 | 2018-02-08 14:35:32 +0100 | [diff] [blame] | 264 | /* it is key and we need to insert it into a correct place (a key must have a parent list) */ |
| 265 | assert(parent); |
Radek Krejci | 61767ca | 2016-09-19 14:21:55 +0200 | [diff] [blame] | 266 | for (i = 0, diter = parent->child; |
Radek Krejci | 65aca41 | 2018-01-24 11:23:06 +0100 | [diff] [blame] | 267 | diter && i < pos && diter->schema->nodetype == LYS_LEAF && lys_is_key((struct lys_node_leaf *)diter->schema, NULL); |
Radek Krejci | 61767ca | 2016-09-19 14:21:55 +0200 | [diff] [blame] | 268 | i++, diter = diter->next); |
| 269 | if (diter) { |
| 270 | /* out of order insertion - insert list's key to the correct position, before the diter */ |
| 271 | if (options & LYD_OPT_STRICT) { |
Michal Vasko | 53b7da0 | 2018-02-13 15:28:42 +0100 | [diff] [blame] | 272 | LOGVAL(ctx, LYE_INORDER, LY_VLOG_LYD, *result, schema->name, diter->schema->name); |
| 273 | LOGVAL(ctx, LYE_SPEC, LY_VLOG_PREV, NULL, "Invalid position of the key \"%s\" in a list \"%s\".", |
Radek Krejci | 61767ca | 2016-09-19 14:21:55 +0200 | [diff] [blame] | 274 | schema->name, parent->schema->name); |
| 275 | free(*result); |
| 276 | *result = NULL; |
| 277 | return -1; |
| 278 | } else { |
Michal Vasko | 53b7da0 | 2018-02-13 15:28:42 +0100 | [diff] [blame] | 279 | LOGWRN(ctx, "Invalid position of the key \"%s\" in a list \"%s\".", schema->name, parent->schema->name) |
Radek Krejci | 61767ca | 2016-09-19 14:21:55 +0200 | [diff] [blame] | 280 | } |
| 281 | if (parent->child == diter) { |
| 282 | parent->child = *result; |
| 283 | /* update first_sibling */ |
| 284 | first_sibling = *result; |
| 285 | } |
| 286 | if (diter->prev->next) { |
| 287 | diter->prev->next = *result; |
| 288 | } |
| 289 | (*result)->prev = diter->prev; |
| 290 | diter->prev = *result; |
| 291 | (*result)->next = diter; |
| 292 | } |
| 293 | } |
| 294 | if (!diter) { |
| 295 | /* simplified (faster) insert as the last node */ |
| 296 | if (parent && !parent->child) { |
| 297 | parent->child = *result; |
| 298 | } |
| 299 | if (prev) { |
| 300 | (*result)->prev = prev; |
| 301 | prev->next = *result; |
| 302 | |
| 303 | /* fix the "last" pointer */ |
| 304 | first_sibling->prev = *result; |
| 305 | } else { |
| 306 | (*result)->prev = *result; |
| 307 | first_sibling = *result; |
| 308 | } |
| 309 | } |
Michal Vasko | e3886bb | 2017-01-02 11:33:28 +0100 | [diff] [blame] | 310 | (*result)->validity = ly_new_node_validity((*result)->schema); |
Radek Krejci | 4616582 | 2016-08-26 14:06:27 +0200 | [diff] [blame] | 311 | if (resolve_applies_when(schema, 0, NULL)) { |
Radek Krejci | 0b7704f | 2016-03-18 12:16:14 +0100 | [diff] [blame] | 312 | (*result)->when_status = LYD_WHEN; |
| 313 | } |
Radek Krejci | 1721c01 | 2015-07-08 12:52:33 +0200 | [diff] [blame] | 314 | |
Radek Krejci | 146e3fc | 2017-02-24 13:41:00 +0100 | [diff] [blame] | 315 | /* process attributes */ |
Radek Krejci | 998a750 | 2015-10-26 15:54:33 +0100 | [diff] [blame] | 316 | for (attr = xml->attr; attr; attr = attr->next) { |
Radek Krejci | 5f9e8c9 | 2015-10-30 10:01:06 +0100 | [diff] [blame] | 317 | if (attr->type != LYXML_ATTR_STD) { |
| 318 | continue; |
| 319 | } else if (!attr->ns) { |
Radek Krejci | a68ddeb | 2017-02-24 12:49:44 +0100 | [diff] [blame] | 320 | if ((*result)->schema->nodetype == LYS_ANYXML && |
| 321 | ly_strequal((*result)->schema->name, "filter", 0) && |
Michal Vasko | aa98eb7 | 2017-03-24 11:23:34 +0100 | [diff] [blame] | 322 | (ly_strequal((*result)->schema->module->name, "ietf-netconf", 0) || |
| 323 | ly_strequal((*result)->schema->module->name, "notifications", 0))) { |
Radek Krejci | a68ddeb | 2017-02-24 12:49:44 +0100 | [diff] [blame] | 324 | /* NETCONF filter's attributes, which we implement as non-standard annotations, |
| 325 | * they are unqualified (no namespace), but we know that we have internally defined |
Michal Vasko | aa98eb7 | 2017-03-24 11:23:34 +0100 | [diff] [blame] | 326 | * them in the ietf-netconf module */ |
| 327 | str = "urn:ietf:params:xml:ns:netconf:base:1.0"; |
Radek Krejci | 598dbcb | 2017-02-24 15:14:15 +0100 | [diff] [blame] | 328 | filterflag = 1; |
Radek Krejci | 9a5daea | 2016-03-02 16:49:40 +0100 | [diff] [blame] | 329 | } else { |
Radek Krejci | a68ddeb | 2017-02-24 12:49:44 +0100 | [diff] [blame] | 330 | /* garbage */ |
| 331 | goto attr_error; |
Radek Krejci | 532e5e9 | 2017-02-22 12:59:24 +0100 | [diff] [blame] | 332 | } |
Michal Vasko | 7675c62 | 2017-03-02 10:50:07 +0100 | [diff] [blame] | 333 | } else { |
| 334 | str = attr->ns->value; |
Radek Krejci | 5f9e8c9 | 2015-10-30 10:01:06 +0100 | [diff] [blame] | 335 | } |
| 336 | |
Michal Vasko | 35f46a8 | 2018-05-30 10:44:11 +0200 | [diff] [blame] | 337 | r = lyp_fill_attr(ctx, *result, str, NULL, attr->name, attr->value, xml, options, &dattr); |
Michal Vasko | 7675c62 | 2017-03-02 10:50:07 +0100 | [diff] [blame] | 338 | if (r == -1) { |
Michal Vasko | a6af365 | 2018-08-29 12:15:20 +0200 | [diff] [blame] | 339 | goto unlink_node_error; |
Michal Vasko | 7675c62 | 2017-03-02 10:50:07 +0100 | [diff] [blame] | 340 | } else if (r == 1) { |
| 341 | attr_error: |
| 342 | if (options & LYD_OPT_STRICT) { |
Michal Vasko | 53b7da0 | 2018-02-13 15:28:42 +0100 | [diff] [blame] | 343 | LOGVAL(ctx, LYE_INATTR, LY_VLOG_LYD, *result, attr->name); |
Michal Vasko | a6af365 | 2018-08-29 12:15:20 +0200 | [diff] [blame] | 344 | goto unlink_node_error; |
Michal Vasko | 7675c62 | 2017-03-02 10:50:07 +0100 | [diff] [blame] | 345 | } |
| 346 | |
Michal Vasko | 53b7da0 | 2018-02-13 15:28:42 +0100 | [diff] [blame] | 347 | LOGWRN(ctx, "Unknown \"%s:%s\" metadata with value \"%s\", ignoring.", |
Michal Vasko | 7675c62 | 2017-03-02 10:50:07 +0100 | [diff] [blame] | 348 | (attr->ns ? attr->ns->prefix : "<none>"), attr->name, attr->value); |
| 349 | continue; |
Michal Vasko | 253035f | 2015-12-17 16:58:13 +0100 | [diff] [blame] | 350 | } |
Radek Krejci | 532e5e9 | 2017-02-22 12:59:24 +0100 | [diff] [blame] | 351 | |
Michal Vasko | 7675c62 | 2017-03-02 10:50:07 +0100 | [diff] [blame] | 352 | /* special case of xpath in the value, we want to convert it to JSON */ |
| 353 | if (filterflag && !strcmp(attr->name, "select")) { |
Michal Vasko | 53b7da0 | 2018-02-13 15:28:42 +0100 | [diff] [blame] | 354 | dattr->value.string = transform_xml2json(ctx, dattr->value_str, xml, 0, 0); |
Radek Krejci | 598dbcb | 2017-02-24 15:14:15 +0100 | [diff] [blame] | 355 | if (!dattr->value.string) { |
| 356 | /* problem with resolving value as xpath */ |
Michal Vasko | 7675c62 | 2017-03-02 10:50:07 +0100 | [diff] [blame] | 357 | dattr->value.string = dattr->value_str; |
Michal Vasko | a6af365 | 2018-08-29 12:15:20 +0200 | [diff] [blame] | 358 | goto unlink_node_error; |
Radek Krejci | 598dbcb | 2017-02-24 15:14:15 +0100 | [diff] [blame] | 359 | } |
| 360 | lydict_remove(ctx, dattr->value_str); |
| 361 | dattr->value_str = dattr->value.string; |
Radek Krejci | a571d94 | 2017-02-24 09:26:49 +0100 | [diff] [blame] | 362 | } |
| 363 | |
Radek Krejci | 532e5e9 | 2017-02-22 12:59:24 +0100 | [diff] [blame] | 364 | /* insert into the data node */ |
Radek Krejci | 3b41a6c | 2015-10-31 23:06:12 +0100 | [diff] [blame] | 365 | if (!(*result)->attr) { |
| 366 | (*result)->attr = dattr; |
Radek Krejci | 5f9e8c9 | 2015-10-30 10:01:06 +0100 | [diff] [blame] | 367 | } else { |
Radek Krejci | 3b41a6c | 2015-10-31 23:06:12 +0100 | [diff] [blame] | 368 | for (dattr_iter = (*result)->attr; dattr_iter->next; dattr_iter = dattr_iter->next); |
Radek Krejci | 5f9e8c9 | 2015-10-30 10:01:06 +0100 | [diff] [blame] | 369 | dattr_iter->next = dattr; |
Radek Krejci | 998a750 | 2015-10-26 15:54:33 +0100 | [diff] [blame] | 370 | } |
Radek Krejci | 532e5e9 | 2017-02-22 12:59:24 +0100 | [diff] [blame] | 371 | continue; |
Radek Krejci | 998a750 | 2015-10-26 15:54:33 +0100 | [diff] [blame] | 372 | } |
Michal Vasko | 4ff7b07 | 2015-08-21 09:05:03 +0200 | [diff] [blame] | 373 | |
Radek Krejci | 146e3fc | 2017-02-24 13:41:00 +0100 | [diff] [blame] | 374 | /* check insert attribute and its values */ |
| 375 | if (options & LYD_OPT_EDIT) { |
Michal Vasko | 7675c62 | 2017-03-02 10:50:07 +0100 | [diff] [blame] | 376 | if (lyp_check_edit_attr(ctx, (*result)->attr, *result, &editbits)) { |
Michal Vasko | a6af365 | 2018-08-29 12:15:20 +0200 | [diff] [blame] | 377 | goto unlink_node_error; |
Michal Vasko | 7675c62 | 2017-03-02 10:50:07 +0100 | [diff] [blame] | 378 | } |
Radek Krejci | 146e3fc | 2017-02-24 13:41:00 +0100 | [diff] [blame] | 379 | |
Michal Vasko | 7675c62 | 2017-03-02 10:50:07 +0100 | [diff] [blame] | 380 | /* check correct filter extension attributes */ |
| 381 | } else if (filterflag) { |
| 382 | found = 0; /* 0 - nothing, 1 - type subtree, 2 - type xpath, 3 - select, 4 - type xpath + select */ |
| 383 | LY_TREE_FOR((*result)->attr, dattr_iter) { |
| 384 | if (!strcmp(dattr_iter->name, "type")) { |
| 385 | if ((found == 1) || (found == 2) || (found == 4)) { |
Michal Vasko | 53b7da0 | 2018-02-13 15:28:42 +0100 | [diff] [blame] | 386 | LOGVAL(ctx, LYE_TOOMANY, LY_VLOG_LYD, (*result), "type", xml->name); |
Michal Vasko | a6af365 | 2018-08-29 12:15:20 +0200 | [diff] [blame] | 387 | goto unlink_node_error; |
Radek Krejci | 146e3fc | 2017-02-24 13:41:00 +0100 | [diff] [blame] | 388 | } |
Michal Vasko | 7675c62 | 2017-03-02 10:50:07 +0100 | [diff] [blame] | 389 | switch (dattr_iter->value.enm->value) { |
| 390 | case 0: |
| 391 | /* subtree */ |
| 392 | if (found == 3) { |
Michal Vasko | 53b7da0 | 2018-02-13 15:28:42 +0100 | [diff] [blame] | 393 | LOGVAL(ctx, LYE_INATTR, LY_VLOG_LYD, (*result), dattr_iter->name); |
Michal Vasko | a6af365 | 2018-08-29 12:15:20 +0200 | [diff] [blame] | 394 | goto unlink_node_error; |
Michal Vasko | 7675c62 | 2017-03-02 10:50:07 +0100 | [diff] [blame] | 395 | } |
Radek Krejci | 06b4527 | 2017-02-24 16:15:02 +0100 | [diff] [blame] | 396 | |
Michal Vasko | 7675c62 | 2017-03-02 10:50:07 +0100 | [diff] [blame] | 397 | assert(!found); |
| 398 | found = 1; |
| 399 | break; |
| 400 | case 1: |
| 401 | /* xpath */ |
| 402 | if (found == 3) { |
| 403 | found = 4; |
| 404 | } else { |
| 405 | assert(!found); |
| 406 | found = 2; |
| 407 | } |
| 408 | break; |
| 409 | default: |
Michal Vasko | 53b7da0 | 2018-02-13 15:28:42 +0100 | [diff] [blame] | 410 | LOGINT(ctx); |
Michal Vasko | a6af365 | 2018-08-29 12:15:20 +0200 | [diff] [blame] | 411 | goto unlink_node_error; |
Radek Krejci | 146e3fc | 2017-02-24 13:41:00 +0100 | [diff] [blame] | 412 | } |
Michal Vasko | 7675c62 | 2017-03-02 10:50:07 +0100 | [diff] [blame] | 413 | } else if (!strcmp(dattr_iter->name, "select")) { |
| 414 | switch (found) { |
| 415 | case 0: |
| 416 | found = 3; |
| 417 | break; |
| 418 | case 1: |
Michal Vasko | 53b7da0 | 2018-02-13 15:28:42 +0100 | [diff] [blame] | 419 | LOGVAL(ctx, LYE_INATTR, LY_VLOG_LYD, (*result), dattr_iter->name); |
Michal Vasko | a6af365 | 2018-08-29 12:15:20 +0200 | [diff] [blame] | 420 | goto unlink_node_error; |
Michal Vasko | 7675c62 | 2017-03-02 10:50:07 +0100 | [diff] [blame] | 421 | case 2: |
| 422 | found = 4; |
| 423 | break; |
| 424 | case 3: |
| 425 | case 4: |
Michal Vasko | 53b7da0 | 2018-02-13 15:28:42 +0100 | [diff] [blame] | 426 | LOGVAL(ctx, LYE_TOOMANY, LY_VLOG_LYD, (*result), "select", xml->name); |
Michal Vasko | a6af365 | 2018-08-29 12:15:20 +0200 | [diff] [blame] | 427 | goto unlink_node_error; |
Michal Vasko | 7675c62 | 2017-03-02 10:50:07 +0100 | [diff] [blame] | 428 | default: |
Michal Vasko | 53b7da0 | 2018-02-13 15:28:42 +0100 | [diff] [blame] | 429 | LOGINT(ctx); |
Michal Vasko | a6af365 | 2018-08-29 12:15:20 +0200 | [diff] [blame] | 430 | goto unlink_node_error; |
Radek Krejci | 146e3fc | 2017-02-24 13:41:00 +0100 | [diff] [blame] | 431 | } |
Radek Krejci | 146e3fc | 2017-02-24 13:41:00 +0100 | [diff] [blame] | 432 | } |
| 433 | } |
| 434 | |
Michal Vasko | 7675c62 | 2017-03-02 10:50:07 +0100 | [diff] [blame] | 435 | /* check if what we found is correct */ |
| 436 | switch (found) { |
| 437 | case 1: |
| 438 | case 4: |
| 439 | /* ok */ |
| 440 | break; |
| 441 | case 2: |
Michal Vasko | 53b7da0 | 2018-02-13 15:28:42 +0100 | [diff] [blame] | 442 | LOGVAL(ctx, LYE_MISSATTR, LY_VLOG_LYD, (*result), "select", xml->name); |
Michal Vasko | a6af365 | 2018-08-29 12:15:20 +0200 | [diff] [blame] | 443 | goto unlink_node_error; |
Michal Vasko | 7675c62 | 2017-03-02 10:50:07 +0100 | [diff] [blame] | 444 | case 3: |
Michal Vasko | 53b7da0 | 2018-02-13 15:28:42 +0100 | [diff] [blame] | 445 | LOGVAL(ctx, LYE_MISSATTR, LY_VLOG_LYD, (*result), "type", xml->name); |
Michal Vasko | a6af365 | 2018-08-29 12:15:20 +0200 | [diff] [blame] | 446 | goto unlink_node_error; |
Michal Vasko | 7675c62 | 2017-03-02 10:50:07 +0100 | [diff] [blame] | 447 | default: |
Michal Vasko | 53b7da0 | 2018-02-13 15:28:42 +0100 | [diff] [blame] | 448 | LOGINT(ctx); |
Michal Vasko | a6af365 | 2018-08-29 12:15:20 +0200 | [diff] [blame] | 449 | goto unlink_node_error; |
Radek Krejci | 146e3fc | 2017-02-24 13:41:00 +0100 | [diff] [blame] | 450 | } |
| 451 | } |
| 452 | |
Michal Vasko | e342d9f | 2018-08-07 12:22:08 +0200 | [diff] [blame] | 453 | /* type specific processing */ |
| 454 | if (schema->nodetype & (LYS_LEAF | LYS_LEAFLIST)) { |
| 455 | /* type detection and assigning the value */ |
| 456 | if (xml_get_value(*result, xml, editbits, options & LYD_OPT_TRUSTED)) { |
Michal Vasko | a6af365 | 2018-08-29 12:15:20 +0200 | [diff] [blame] | 457 | goto unlink_node_error; |
Michal Vasko | e342d9f | 2018-08-07 12:22:08 +0200 | [diff] [blame] | 458 | } |
| 459 | } else if (schema->nodetype & LYS_ANYDATA) { |
| 460 | /* store children values */ |
| 461 | if (xml->child) { |
| 462 | child = xml->child; |
| 463 | /* manually unlink all siblings and correct namespaces */ |
| 464 | xml->child = NULL; |
| 465 | LY_TREE_FOR(child, next) { |
| 466 | next->parent = NULL; |
| 467 | lyxml_correct_elem_ns(ctx, next, 1, 1); |
| 468 | } |
| 469 | |
| 470 | ((struct lyd_node_anydata *)*result)->value_type = LYD_ANYDATA_XML; |
| 471 | ((struct lyd_node_anydata *)*result)->value.xml = child; |
| 472 | } else { |
| 473 | ((struct lyd_node_anydata *)*result)->value_type = LYD_ANYDATA_CONSTSTRING; |
| 474 | ((struct lyd_node_anydata *)*result)->value.str = lydict_insert(ctx, xml->content, 0); |
| 475 | } |
| 476 | } else if (schema->nodetype & (LYS_RPC | LYS_ACTION)) { |
| 477 | if (!(options & LYD_OPT_RPC) || *act_notif) { |
| 478 | LOGVAL(ctx, LYE_INELEM, LY_VLOG_LYD, (*result), schema->name); |
| 479 | LOGVAL(ctx, LYE_SPEC, LY_VLOG_PREV, NULL, "Unexpected %s node \"%s\".", |
| 480 | (schema->nodetype == LYS_RPC ? "rpc" : "action"), schema->name); |
Michal Vasko | a6af365 | 2018-08-29 12:15:20 +0200 | [diff] [blame] | 481 | goto unlink_node_error; |
Michal Vasko | e342d9f | 2018-08-07 12:22:08 +0200 | [diff] [blame] | 482 | } |
| 483 | *act_notif = *result; |
| 484 | } else if (schema->nodetype == LYS_NOTIF) { |
| 485 | if (!(options & LYD_OPT_NOTIF) || *act_notif) { |
| 486 | LOGVAL(ctx, LYE_INELEM, LY_VLOG_LYD, (*result), schema->name); |
| 487 | LOGVAL(ctx, LYE_SPEC, LY_VLOG_PREV, NULL, "Unexpected notification node \"%s\".", schema->name); |
Michal Vasko | a6af365 | 2018-08-29 12:15:20 +0200 | [diff] [blame] | 488 | goto unlink_node_error; |
Michal Vasko | e342d9f | 2018-08-07 12:22:08 +0200 | [diff] [blame] | 489 | } |
| 490 | *act_notif = *result; |
| 491 | } |
| 492 | |
| 493 | #ifdef LY_ENABLED_CACHE |
| 494 | /* calculate the hash and insert it into parent (list with keys is handled when its keys are inserted) */ |
| 495 | if (((*result)->schema->nodetype != LYS_LIST) || !((struct lys_node_list *)(*result)->schema)->keys_size) { |
| 496 | lyd_hash(*result); |
| 497 | lyd_insert_hash(*result); |
| 498 | } |
| 499 | #endif |
| 500 | |
Radek Krejci | 146e3fc | 2017-02-24 13:41:00 +0100 | [diff] [blame] | 501 | /* first part of validation checks */ |
| 502 | if (lyv_data_context(*result, options, unres)) { |
| 503 | goto error; |
| 504 | } |
| 505 | |
Radek Krejci | 14c0009 | 2015-11-01 11:03:24 +0100 | [diff] [blame] | 506 | /* process children */ |
| 507 | if (havechildren && xml->child) { |
| 508 | diter = dlast = NULL; |
| 509 | LY_TREE_FOR_SAFE(xml->child, next, child) { |
PavolVican | 832f543 | 2018-02-21 00:54:45 +0100 | [diff] [blame] | 510 | r = xml_parse_data(ctx, child, *result, (*result)->child, dlast, options, unres, &diter, act_notif, yang_data_name); |
Radek Krejci | 14c0009 | 2015-11-01 11:03:24 +0100 | [diff] [blame] | 511 | if (r) { |
| 512 | goto error; |
Radek Krejci | 8653821 | 2015-12-17 15:59:01 +0100 | [diff] [blame] | 513 | } else if (options & LYD_OPT_DESTRUCT) { |
| 514 | lyxml_free(ctx, child); |
Radek Krejci | 14c0009 | 2015-11-01 11:03:24 +0100 | [diff] [blame] | 515 | } |
Radek Krejci | 61767ca | 2016-09-19 14:21:55 +0200 | [diff] [blame] | 516 | if (diter && !diter->next) { |
| 517 | /* the child was parsed/created and it was placed as the last child. The child can be inserted |
| 518 | * out of order (not as the last one) in case it is a list's key present out of the correct order */ |
Radek Krejci | 14c0009 | 2015-11-01 11:03:24 +0100 | [diff] [blame] | 519 | dlast = diter; |
| 520 | } |
| 521 | } |
| 522 | } |
| 523 | |
Radek Krejci | fb7156e | 2016-10-27 13:39:56 +0200 | [diff] [blame] | 524 | /* if we have empty non-presence container, we keep it, but mark it as default */ |
Radek Krejci | 2537fd3 | 2016-09-07 16:22:41 +0200 | [diff] [blame] | 525 | if (schema->nodetype == LYS_CONTAINER && !(*result)->child && |
Radek Krejci | d3e7372 | 2016-05-23 12:24:55 +0200 | [diff] [blame] | 526 | !(*result)->attr && !((struct lys_node_container *)schema)->presence) { |
Radek Krejci | fb7156e | 2016-10-27 13:39:56 +0200 | [diff] [blame] | 527 | (*result)->dflt = 1; |
Radek Krejci | 0c0086a | 2016-03-24 15:20:28 +0100 | [diff] [blame] | 528 | } |
| 529 | |
Radek Krejci | cf50998 | 2015-12-15 09:22:44 +0100 | [diff] [blame] | 530 | /* rest of validation checks */ |
Michal Vasko | e3886bb | 2017-01-02 11:33:28 +0100 | [diff] [blame] | 531 | if (lyv_data_content(*result, options, unres) || |
Michal Vasko | 53b7da0 | 2018-02-13 15:28:42 +0100 | [diff] [blame] | 532 | lyv_multicases(*result, NULL, prev ? &first_sibling : NULL, 0, NULL)) { |
| 533 | goto error; |
Radek Krejci | 78ce861 | 2015-08-18 14:31:05 +0200 | [diff] [blame] | 534 | } |
| 535 | |
Radek Krejci | ca7efb7 | 2016-01-18 13:06:01 +0100 | [diff] [blame] | 536 | /* validation successful */ |
Radek Krejci | 63b79c8 | 2016-08-10 10:09:33 +0200 | [diff] [blame] | 537 | if ((*result)->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) { |
| 538 | /* postpone checking when there will be all list/leaflist instances */ |
Michal Vasko | 185b527 | 2018-09-13 14:26:12 +0200 | [diff] [blame^] | 539 | (*result)->validity |= LYD_VAL_DUP; |
Radek Krejci | 63b79c8 | 2016-08-10 10:09:33 +0200 | [diff] [blame] | 540 | } |
Radek Krejci | ca7efb7 | 2016-01-18 13:06:01 +0100 | [diff] [blame] | 541 | |
Radek Krejci | 3b41a6c | 2015-10-31 23:06:12 +0100 | [diff] [blame] | 542 | return ret; |
Radek Krejci | 3e3affe | 2015-07-09 15:38:40 +0200 | [diff] [blame] | 543 | |
Michal Vasko | a6af365 | 2018-08-29 12:15:20 +0200 | [diff] [blame] | 544 | unlink_node_error: |
| 545 | lyd_unlink_internal(*result, 2); |
Radek Krejci | 3e3affe | 2015-07-09 15:38:40 +0200 | [diff] [blame] | 546 | error: |
Radek Krejci | eab784a | 2015-08-27 09:56:53 +0200 | [diff] [blame] | 547 | /* cleanup */ |
Radek Krejci | 0c0086a | 2016-03-24 15:20:28 +0100 | [diff] [blame] | 548 | for (i = unres->count - 1; i >= 0; i--) { |
| 549 | /* remove unres items connected with the node being removed */ |
| 550 | if (unres->node[i] == *result) { |
| 551 | unres_data_del(unres, i); |
| 552 | } |
| 553 | } |
Radek Krejci | 3b41a6c | 2015-10-31 23:06:12 +0100 | [diff] [blame] | 554 | lyd_free(*result); |
| 555 | *result = NULL; |
Michal Vasko | 53b7da0 | 2018-02-13 15:28:42 +0100 | [diff] [blame] | 556 | return -1; |
Radek Krejci | 1721c01 | 2015-07-08 12:52:33 +0200 | [diff] [blame] | 557 | } |
| 558 | |
Radek Krejci | 4a49bdf | 2016-01-12 17:17:01 +0100 | [diff] [blame] | 559 | API struct lyd_node * |
| 560 | lyd_parse_xml(struct ly_ctx *ctx, struct lyxml_elem **root, int options, ...) |
Radek Krejci | c6704c8 | 2015-10-06 11:12:45 +0200 | [diff] [blame] | 561 | { |
Radek Krejci | 4a49bdf | 2016-01-12 17:17:01 +0100 | [diff] [blame] | 562 | va_list ap; |
Michal Vasko | 185b527 | 2018-09-13 14:26:12 +0200 | [diff] [blame^] | 563 | int r; |
Radek Krejci | 4a49bdf | 2016-01-12 17:17:01 +0100 | [diff] [blame] | 564 | struct unres_data *unres = NULL; |
Michal Vasko | 945b96b | 2016-10-18 11:49:12 +0200 | [diff] [blame] | 565 | const struct lyd_node *rpc_act = NULL, *data_tree = NULL; |
| 566 | struct lyd_node *result = NULL, *iter, *last, *reply_parent = NULL, *reply_top = NULL, *act_notif = NULL; |
Michal Vasko | a875656 | 2017-05-03 14:42:23 +0200 | [diff] [blame] | 567 | struct lyxml_elem *xmlstart, *xmlelem, *xmlaux, *xmlfree = NULL; |
PavolVican | 832f543 | 2018-02-21 00:54:45 +0100 | [diff] [blame] | 568 | const char *yang_data_name = NULL; |
Radek Krejci | 2342cf6 | 2016-01-29 16:48:23 +0100 | [diff] [blame] | 569 | |
Radek Krejci | c6704c8 | 2015-10-06 11:12:45 +0200 | [diff] [blame] | 570 | if (!ctx || !root) { |
Michal Vasko | 53b7da0 | 2018-02-13 15:28:42 +0100 | [diff] [blame] | 571 | LOGARG; |
Radek Krejci | c6704c8 | 2015-10-06 11:12:45 +0200 | [diff] [blame] | 572 | return NULL; |
| 573 | } |
| 574 | |
Michal Vasko | 53b7da0 | 2018-02-13 15:28:42 +0100 | [diff] [blame] | 575 | if (lyp_data_check_options(ctx, options, __func__)) { |
Radek Krejci | 4a49bdf | 2016-01-12 17:17:01 +0100 | [diff] [blame] | 576 | return NULL; |
| 577 | } |
| 578 | |
Radek Krejci | 19dbedb | 2017-08-08 13:54:31 +0200 | [diff] [blame] | 579 | if (!(*root) && !(options & LYD_OPT_RPCREPLY)) { |
| 580 | /* empty tree */ |
| 581 | if (options & (LYD_OPT_RPC | LYD_OPT_NOTIF)) { |
| 582 | /* error, top level node identify RPC and Notification */ |
Michal Vasko | 53b7da0 | 2018-02-13 15:28:42 +0100 | [diff] [blame] | 583 | LOGERR(ctx, LY_EINVAL, "%s: *root identifies RPC/Notification so it cannot be NULL.", __func__); |
Radek Krejci | 19dbedb | 2017-08-08 13:54:31 +0200 | [diff] [blame] | 584 | return NULL; |
| 585 | } else if (!(options & LYD_OPT_RPCREPLY)) { |
| 586 | /* others - no work is needed, just check for missing mandatory nodes */ |
| 587 | lyd_validate(&result, options, ctx); |
Michal Vasko | 53b7da0 | 2018-02-13 15:28:42 +0100 | [diff] [blame] | 588 | return result; |
Radek Krejci | 19dbedb | 2017-08-08 13:54:31 +0200 | [diff] [blame] | 589 | } |
| 590 | /* continue with empty RPC reply, for which we need RPC */ |
Radek Krejci | a6939c3 | 2016-03-24 15:19:09 +0100 | [diff] [blame] | 591 | } |
| 592 | |
Michal Vasko | 24d982f | 2016-04-18 15:13:58 +0200 | [diff] [blame] | 593 | unres = calloc(1, sizeof *unres); |
Michal Vasko | 53b7da0 | 2018-02-13 15:28:42 +0100 | [diff] [blame] | 594 | LY_CHECK_ERR_RETURN(!unres, LOGMEM(ctx), NULL); |
Michal Vasko | 24d982f | 2016-04-18 15:13:58 +0200 | [diff] [blame] | 595 | |
Radek Krejci | 4a49bdf | 2016-01-12 17:17:01 +0100 | [diff] [blame] | 596 | va_start(ap, options); |
| 597 | if (options & LYD_OPT_RPCREPLY) { |
Michal Vasko | 945b96b | 2016-10-18 11:49:12 +0200 | [diff] [blame] | 598 | rpc_act = va_arg(ap, const struct lyd_node *); |
| 599 | if (!rpc_act || rpc_act->parent || !(rpc_act->schema->nodetype & (LYS_RPC | LYS_LIST | LYS_CONTAINER))) { |
Michal Vasko | 53b7da0 | 2018-02-13 15:28:42 +0100 | [diff] [blame] | 600 | LOGERR(ctx, LY_EINVAL, "%s: invalid variable parameter (const struct lyd_node *rpc_act).", __func__); |
Michal Vasko | 24d982f | 2016-04-18 15:13:58 +0200 | [diff] [blame] | 601 | goto error; |
Radek Krejci | 4a49bdf | 2016-01-12 17:17:01 +0100 | [diff] [blame] | 602 | } |
Michal Vasko | 945b96b | 2016-10-18 11:49:12 +0200 | [diff] [blame] | 603 | if (rpc_act->schema->nodetype == LYS_RPC) { |
| 604 | /* RPC request */ |
| 605 | reply_top = reply_parent = _lyd_new(NULL, rpc_act->schema, 0); |
| 606 | } else { |
| 607 | /* action request */ |
| 608 | reply_top = lyd_dup(rpc_act, 1); |
| 609 | LY_TREE_DFS_BEGIN(reply_top, iter, reply_parent) { |
| 610 | if (reply_parent->schema->nodetype == LYS_ACTION) { |
| 611 | break; |
| 612 | } |
| 613 | LY_TREE_DFS_END(reply_top, iter, reply_parent); |
| 614 | } |
| 615 | if (!reply_parent) { |
Michal Vasko | 53b7da0 | 2018-02-13 15:28:42 +0100 | [diff] [blame] | 616 | LOGERR(ctx, LY_EINVAL, "%s: invalid variable parameter (const struct lyd_node *rpc_act).", __func__); |
Michal Vasko | 945b96b | 2016-10-18 11:49:12 +0200 | [diff] [blame] | 617 | lyd_free_withsiblings(reply_top); |
| 618 | goto error; |
| 619 | } |
| 620 | lyd_free_withsiblings(reply_parent->child); |
| 621 | } |
Michal Vasko | 45e2365 | 2016-09-21 11:24:32 +0200 | [diff] [blame] | 622 | } |
| 623 | if (options & (LYD_OPT_RPC | LYD_OPT_NOTIF | LYD_OPT_RPCREPLY)) { |
Michal Vasko | 945b96b | 2016-10-18 11:49:12 +0200 | [diff] [blame] | 624 | data_tree = va_arg(ap, const struct lyd_node *); |
Michal Vasko | 6b44d71 | 2016-09-12 16:25:46 +0200 | [diff] [blame] | 625 | if (data_tree) { |
Michal Vasko | d6a4806 | 2017-08-11 14:28:56 +0200 | [diff] [blame] | 626 | if (options & LYD_OPT_NOEXTDEPS) { |
Michal Vasko | 53b7da0 | 2018-02-13 15:28:42 +0100 | [diff] [blame] | 627 | LOGERR(ctx, LY_EINVAL, "%s: invalid parameter (variable arg const struct lyd_node *data_tree and LYD_OPT_NOEXTDEPS set).", |
Michal Vasko | d6a4806 | 2017-08-11 14:28:56 +0200 | [diff] [blame] | 628 | __func__); |
Michal Vasko | dfbac23 | 2017-08-11 14:39:02 +0200 | [diff] [blame] | 629 | goto error; |
Michal Vasko | d6a4806 | 2017-08-11 14:28:56 +0200 | [diff] [blame] | 630 | } |
| 631 | |
Michal Vasko | 945b96b | 2016-10-18 11:49:12 +0200 | [diff] [blame] | 632 | LY_TREE_FOR((struct lyd_node *)data_tree, iter) { |
Michal Vasko | 6b44d71 | 2016-09-12 16:25:46 +0200 | [diff] [blame] | 633 | if (iter->parent) { |
| 634 | /* a sibling is not top-level */ |
Michal Vasko | 53b7da0 | 2018-02-13 15:28:42 +0100 | [diff] [blame] | 635 | LOGERR(ctx, LY_EINVAL, "%s: invalid variable parameter (const struct lyd_node *data_tree).", __func__); |
Michal Vasko | 6b44d71 | 2016-09-12 16:25:46 +0200 | [diff] [blame] | 636 | goto error; |
| 637 | } |
| 638 | } |
| 639 | |
| 640 | /* move it to the beginning */ |
| 641 | for (; data_tree->prev->next; data_tree = data_tree->prev); |
| 642 | |
| 643 | /* LYD_OPT_NOSIBLINGS cannot be set in this case */ |
| 644 | if (options & LYD_OPT_NOSIBLINGS) { |
Michal Vasko | 53b7da0 | 2018-02-13 15:28:42 +0100 | [diff] [blame] | 645 | LOGERR(ctx, LY_EINVAL, "%s: invalid parameter (variable arg const struct lyd_node *data_tree with LYD_OPT_NOSIBLINGS).", __func__); |
Michal Vasko | 6b44d71 | 2016-09-12 16:25:46 +0200 | [diff] [blame] | 646 | goto error; |
| 647 | } |
| 648 | } |
Radek Krejci | 4a49bdf | 2016-01-12 17:17:01 +0100 | [diff] [blame] | 649 | } |
PavolVican | 832f543 | 2018-02-21 00:54:45 +0100 | [diff] [blame] | 650 | if (options & LYD_OPT_DATA_TEMPLATE) { |
| 651 | yang_data_name = va_arg(ap, const char *); |
| 652 | } |
Radek Krejci | 4a49bdf | 2016-01-12 17:17:01 +0100 | [diff] [blame] | 653 | |
Radek Krejci | 19dbedb | 2017-08-08 13:54:31 +0200 | [diff] [blame] | 654 | if ((*root) && !(options & LYD_OPT_NOSIBLINGS)) { |
Radek Krejci | 8653821 | 2015-12-17 15:59:01 +0100 | [diff] [blame] | 655 | /* locate the first root to process */ |
| 656 | if ((*root)->parent) { |
| 657 | xmlstart = (*root)->parent->child; |
| 658 | } else { |
| 659 | xmlstart = *root; |
| 660 | while(xmlstart->prev->next) { |
| 661 | xmlstart = xmlstart->prev; |
| 662 | } |
Radek Krejci | 04b97de | 2015-10-31 23:09:15 +0100 | [diff] [blame] | 663 | } |
Radek Krejci | 8653821 | 2015-12-17 15:59:01 +0100 | [diff] [blame] | 664 | } else { |
| 665 | xmlstart = *root; |
| 666 | } |
Radek Krejci | 8653821 | 2015-12-17 15:59:01 +0100 | [diff] [blame] | 667 | |
Michal Vasko | b1b1944 | 2016-07-13 12:26:01 +0200 | [diff] [blame] | 668 | if ((options & LYD_OPT_RPC) |
| 669 | && !strcmp(xmlstart->name, "action") && !strcmp(xmlstart->ns->value, "urn:ietf:params:xml:ns:yang:1")) { |
| 670 | /* it's an action, not a simple RPC */ |
| 671 | xmlstart = xmlstart->child; |
Michal Vasko | a875656 | 2017-05-03 14:42:23 +0200 | [diff] [blame] | 672 | if (options & LYD_OPT_DESTRUCT) { |
| 673 | /* free it later */ |
| 674 | xmlfree = xmlstart->parent; |
| 675 | } |
Michal Vasko | b1b1944 | 2016-07-13 12:26:01 +0200 | [diff] [blame] | 676 | } |
| 677 | |
| 678 | iter = last = NULL; |
Radek Krejci | 8653821 | 2015-12-17 15:59:01 +0100 | [diff] [blame] | 679 | LY_TREE_FOR_SAFE(xmlstart, xmlaux, xmlelem) { |
PavolVican | 832f543 | 2018-02-21 00:54:45 +0100 | [diff] [blame] | 680 | r = xml_parse_data(ctx, xmlelem, reply_parent, result, last, options, unres, &iter, &act_notif, yang_data_name); |
Radek Krejci | 3b41a6c | 2015-10-31 23:06:12 +0100 | [diff] [blame] | 681 | if (r) { |
Michal Vasko | 945b96b | 2016-10-18 11:49:12 +0200 | [diff] [blame] | 682 | if (reply_top) { |
| 683 | result = reply_top; |
Pavol Vican | 8a552f6 | 2016-09-05 11:20:57 +0200 | [diff] [blame] | 684 | } |
Michal Vasko | 24d982f | 2016-04-18 15:13:58 +0200 | [diff] [blame] | 685 | goto error; |
Radek Krejci | 8653821 | 2015-12-17 15:59:01 +0100 | [diff] [blame] | 686 | } else if (options & LYD_OPT_DESTRUCT) { |
| 687 | lyxml_free(ctx, xmlelem); |
| 688 | *root = xmlaux; |
Radek Krejci | 3b41a6c | 2015-10-31 23:06:12 +0100 | [diff] [blame] | 689 | } |
| 690 | if (iter) { |
| 691 | last = iter; |
Radek Krejci | dfb00d6 | 2017-09-06 09:39:35 +0200 | [diff] [blame] | 692 | if ((options & LYD_OPT_DATA_ADD_YANGLIB) && iter->schema->module == ctx->models.list[ctx->internal_module_count - 1]) { |
Radek Krejci | 06f8bb9 | 2017-08-02 15:36:25 +0200 | [diff] [blame] | 693 | /* ietf-yang-library data present, so ignore the option to add them */ |
| 694 | options &= ~LYD_OPT_DATA_ADD_YANGLIB; |
| 695 | } |
Radek Krejci | 3b41a6c | 2015-10-31 23:06:12 +0100 | [diff] [blame] | 696 | } |
| 697 | if (!result) { |
| 698 | result = iter; |
| 699 | } |
Radek Krejci | 8653821 | 2015-12-17 15:59:01 +0100 | [diff] [blame] | 700 | |
| 701 | if (options & LYD_OPT_NOSIBLINGS) { |
| 702 | /* stop after the first processed root */ |
| 703 | break; |
| 704 | } |
Radek Krejci | 3b41a6c | 2015-10-31 23:06:12 +0100 | [diff] [blame] | 705 | } |
Radek Krejci | c6704c8 | 2015-10-06 11:12:45 +0200 | [diff] [blame] | 706 | |
Michal Vasko | 945b96b | 2016-10-18 11:49:12 +0200 | [diff] [blame] | 707 | if (reply_top) { |
| 708 | result = reply_top; |
Michal Vasko | e45aff5 | 2016-08-25 09:01:09 +0200 | [diff] [blame] | 709 | } |
| 710 | |
Michal Vasko | 945b96b | 2016-10-18 11:49:12 +0200 | [diff] [blame] | 711 | if ((options & LYD_OPT_RPCREPLY) && (rpc_act->schema->nodetype != LYS_RPC)) { |
| 712 | /* action reply */ |
| 713 | act_notif = reply_parent; |
Michal Vasko | afa7a64 | 2016-10-18 15:11:38 +0200 | [diff] [blame] | 714 | } else if ((options & (LYD_OPT_RPC | LYD_OPT_NOTIF)) && !act_notif) { |
Michal Vasko | d60a1a3 | 2018-05-23 16:31:22 +0200 | [diff] [blame] | 715 | LOGVAL(ctx, LYE_INELEM, (result ? LY_VLOG_LYD : LY_VLOG_NONE), result, (options & LYD_OPT_RPC ? "action" : "notification")); |
Michal Vasko | afa7a64 | 2016-10-18 15:11:38 +0200 | [diff] [blame] | 716 | goto error; |
Radek Krejci | b45b308 | 2016-09-09 16:08:51 +0200 | [diff] [blame] | 717 | } |
| 718 | |
Radek Krejci | 06f8bb9 | 2017-08-02 15:36:25 +0200 | [diff] [blame] | 719 | /* add missing ietf-yang-library if requested */ |
| 720 | if (options & LYD_OPT_DATA_ADD_YANGLIB) { |
| 721 | if (!result) { |
| 722 | result = ly_ctx_info(ctx); |
| 723 | } else if (lyd_merge(result, ly_ctx_info(ctx), LYD_OPT_DESTRUCT | LYD_OPT_EXPLICIT)) { |
Michal Vasko | 53b7da0 | 2018-02-13 15:28:42 +0100 | [diff] [blame] | 724 | LOGERR(ctx, LY_EINT, "Adding ietf-yang-library data failed."); |
Radek Krejci | 06f8bb9 | 2017-08-02 15:36:25 +0200 | [diff] [blame] | 725 | goto error; |
| 726 | } |
| 727 | } |
| 728 | |
| 729 | /* check for uniqueness of top-level lists/leaflists because |
Radek Krejci | 63b79c8 | 2016-08-10 10:09:33 +0200 | [diff] [blame] | 730 | * only the inner instances were tested in lyv_data_content() */ |
Radek Krejci | 63b79c8 | 2016-08-10 10:09:33 +0200 | [diff] [blame] | 731 | LY_TREE_FOR(result, iter) { |
Michal Vasko | 185b527 | 2018-09-13 14:26:12 +0200 | [diff] [blame^] | 732 | if (!(iter->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !(iter->validity & LYD_VAL_DUP)) { |
Radek Krejci | 63b79c8 | 2016-08-10 10:09:33 +0200 | [diff] [blame] | 733 | continue; |
| 734 | } |
| 735 | |
Michal Vasko | 185b527 | 2018-09-13 14:26:12 +0200 | [diff] [blame^] | 736 | if (lyv_data_dup(iter, result)) { |
Radek Krejci | 63b79c8 | 2016-08-10 10:09:33 +0200 | [diff] [blame] | 737 | goto error; |
| 738 | } |
| 739 | } |
Radek Krejci | 63b79c8 | 2016-08-10 10:09:33 +0200 | [diff] [blame] | 740 | |
Radek Krejci | b45b308 | 2016-09-09 16:08:51 +0200 | [diff] [blame] | 741 | /* add default values, resolve unres and check for mandatory nodes in final tree */ |
Michal Vasko | 228431e | 2018-07-10 15:47:11 +0200 | [diff] [blame] | 742 | if (lyd_defaults_add_unres(&result, options, ctx, data_tree, act_notif, unres, 1)) { |
Michal Vasko | 6b44d71 | 2016-09-12 16:25:46 +0200 | [diff] [blame] | 743 | goto error; |
| 744 | } |
Michal Vasko | ad2e44a | 2017-01-03 10:31:35 +0100 | [diff] [blame] | 745 | if (!(options & (LYD_OPT_TRUSTED | LYD_OPT_NOTIF_FILTER)) |
| 746 | && lyd_check_mandatory_tree((act_notif ? act_notif : result), ctx, options)) { |
Michal Vasko | afa7a64 | 2016-10-18 15:11:38 +0200 | [diff] [blame] | 747 | goto error; |
Radek Krejci | 4616582 | 2016-08-26 14:06:27 +0200 | [diff] [blame] | 748 | } |
| 749 | |
Michal Vasko | a875656 | 2017-05-03 14:42:23 +0200 | [diff] [blame] | 750 | if (xmlfree) { |
| 751 | lyxml_free(ctx, xmlfree); |
| 752 | } |
Michal Vasko | 24d982f | 2016-04-18 15:13:58 +0200 | [diff] [blame] | 753 | free(unres->node); |
| 754 | free(unres->type); |
| 755 | free(unres); |
Radek Krejci | 4a49bdf | 2016-01-12 17:17:01 +0100 | [diff] [blame] | 756 | va_end(ap); |
Radek Krejci | c6704c8 | 2015-10-06 11:12:45 +0200 | [diff] [blame] | 757 | return result; |
Michal Vasko | 24d982f | 2016-04-18 15:13:58 +0200 | [diff] [blame] | 758 | |
| 759 | error: |
| 760 | lyd_free_withsiblings(result); |
Michal Vasko | a875656 | 2017-05-03 14:42:23 +0200 | [diff] [blame] | 761 | if (xmlfree) { |
| 762 | lyxml_free(ctx, xmlfree); |
| 763 | } |
Michal Vasko | 24d982f | 2016-04-18 15:13:58 +0200 | [diff] [blame] | 764 | free(unres->node); |
| 765 | free(unres->type); |
| 766 | free(unres); |
| 767 | va_end(ap); |
Michal Vasko | 24d982f | 2016-04-18 15:13:58 +0200 | [diff] [blame] | 768 | return NULL; |
Radek Krejci | c6704c8 | 2015-10-06 11:12:45 +0200 | [diff] [blame] | 769 | } |