Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 1 | /** |
| 2 | * @file parser_xml.c |
| 3 | * @author Radek Krejci <rkrejci@cesnet.cz> |
| 4 | * @brief XML data parser for libyang |
| 5 | * |
| 6 | * Copyright (c) 2019 CESNET, z.s.p.o. |
| 7 | * |
| 8 | * This source code is licensed under BSD 3-Clause License (the "License"). |
| 9 | * You may not use this file except in compliance with the License. |
| 10 | * You may obtain a copy of the License at |
| 11 | * |
| 12 | * https://opensource.org/licenses/BSD-3-Clause |
| 13 | */ |
| 14 | |
| 15 | #include "common.h" |
| 16 | |
| 17 | #include <stdint.h> |
| 18 | #include <stdlib.h> |
| 19 | #include <string.h> |
| 20 | |
| 21 | #include "context.h" |
| 22 | #include "dict.h" |
| 23 | #include "log.h" |
| 24 | #include "plugins_types.h" |
| 25 | #include "set.h" |
| 26 | #include "tree_data.h" |
| 27 | #include "tree_data_internal.h" |
| 28 | #include "tree_schema.h" |
| 29 | #include "xml.h" |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 30 | #include "plugins_exts_internal.h" |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 31 | #include "validation.h" |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 32 | |
| 33 | /** |
| 34 | * @brief internal context for XML YANG data parser. |
| 35 | * |
| 36 | * The leading part is compatible with the struct lyxml_context |
| 37 | */ |
| 38 | struct lyd_xml_ctx { |
| 39 | struct ly_ctx *ctx; /**< libyang context */ |
| 40 | uint64_t line; /**< number of the line being currently processed */ |
| 41 | enum LYXML_PARSER_STATUS status; /**< status providing information about the next expected object in input data */ |
| 42 | struct ly_set elements; /**< list of not-yet-closed elements */ |
| 43 | struct ly_set ns; /**< handled with LY_SET_OPT_USEASLIST */ |
| 44 | |
| 45 | uint16_t options; /**< various @ref dataparseroptions. */ |
| 46 | uint16_t path_len; /**< used bytes in the path buffer */ |
| 47 | #define LYD_PARSER_BUFSIZE 4078 |
| 48 | char path[LYD_PARSER_BUFSIZE]; /**< buffer for the generated path */ |
Radek Krejci | e553e6d | 2019-06-07 15:33:18 +0200 | [diff] [blame] | 49 | struct ly_set incomplete_type_validation; /**< set of nodes validated with LY_EINCOMPLETE result */ |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 50 | struct ly_set incomplete_type_validation_attrs; /**< set of attributes validated with LY_EINCOMPLETE result */ |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 51 | struct ly_set when_check; /**< set of nodes with "when" conditions */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 52 | }; |
| 53 | |
| 54 | /** |
Radek Krejci | aca7403 | 2019-06-04 08:53:06 +0200 | [diff] [blame] | 55 | * @brief XML-parser's implementation of ly_type_resolve_prefix() callback to provide mapping between prefixes used in the values to the schema |
| 56 | * via XML namespaces. |
| 57 | */ |
| 58 | static const struct lys_module * |
| 59 | lydxml_resolve_prefix(struct ly_ctx *ctx, const char *prefix, size_t prefix_len, void *parser) |
| 60 | { |
| 61 | const struct lyxml_ns *ns; |
| 62 | struct lyxml_context *xmlctx = (struct lyxml_context*)parser; |
| 63 | |
| 64 | ns = lyxml_ns_get(xmlctx, prefix, prefix_len); |
| 65 | if (!ns) { |
| 66 | return NULL; |
| 67 | } |
| 68 | |
| 69 | return ly_ctx_get_module_implemented_ns(ctx, ns->uri); |
| 70 | } |
| 71 | |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 72 | struct attr_data_s { |
| 73 | const char *prefix; |
| 74 | const char *name; |
| 75 | char *value; |
| 76 | size_t prefix_len; |
| 77 | size_t name_len; |
| 78 | size_t value_len; |
| 79 | int dynamic; |
| 80 | }; |
| 81 | |
Radek Krejci | aca7403 | 2019-06-04 08:53:06 +0200 | [diff] [blame] | 82 | /** |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 83 | * @brief Parse XML attributes of the XML element of YANG data. |
| 84 | * |
| 85 | * @param[in] ctx XML YANG data parser context. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 86 | * @param[in,out] data Pointer to the XML string representation of the YANG data to parse. |
| 87 | * @param[out] attributes Resulting list of the parsed attributes. XML namespace definitions are not parsed |
| 88 | * as attributes, they are stored internally in the parser context. |
| 89 | * @reutn LY_ERR value. |
| 90 | */ |
| 91 | static LY_ERR |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 92 | lydxml_attributes_parse(struct lyd_xml_ctx *ctx, const char **data, struct ly_set *attrs_data) |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 93 | { |
| 94 | LY_ERR ret = LY_SUCCESS; |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 95 | unsigned int u; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 96 | const char *prefix, *name; |
| 97 | size_t prefix_len, name_len; |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 98 | struct attr_data_s *attr_data; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 99 | |
| 100 | while(ctx->status == LYXML_ATTRIBUTE && |
| 101 | lyxml_get_attribute((struct lyxml_context*)ctx, data, &prefix, &prefix_len, &name, &name_len) == LY_SUCCESS) { |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 102 | char *buffer = NULL; |
| 103 | size_t buffer_size = 0; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 104 | |
Radek Krejci | 17a78d8 | 2019-05-15 15:49:55 +0200 | [diff] [blame] | 105 | if (!name) { |
| 106 | /* seems like all the attrributes were internally processed as namespace definitions */ |
| 107 | continue; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 108 | } |
Radek Krejci | 17a78d8 | 2019-05-15 15:49:55 +0200 | [diff] [blame] | 109 | |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 110 | /* auxiliary store the prefix information and value string, because we have to wait with resolving prefix |
| 111 | * to the time when all the namespaces, defined in this element, are parsed. With the prefix we can find the |
| 112 | * annotation definition for the attribute and correctly process the value */ |
| 113 | attr_data = malloc(sizeof *attr_data); |
| 114 | attr_data->prefix = prefix; |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 115 | attr_data->name = name; |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 116 | attr_data->prefix_len = prefix_len; |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 117 | attr_data->name_len = name_len; |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 118 | ret = lyxml_get_string((struct lyxml_context *)ctx, data, &buffer, &buffer_size, &attr_data->value, &attr_data->value_len, &attr_data->dynamic); |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 119 | LY_CHECK_ERR_GOTO(ret, free(attr_data), error); |
| 120 | ly_set_add(attrs_data, attr_data, LY_SET_OPT_USEASLIST); |
| 121 | } |
| 122 | |
| 123 | return LY_SUCCESS; |
| 124 | |
| 125 | error: |
| 126 | for (u = 0; u < attrs_data->count; ++u) { |
| 127 | if (((struct attr_data_s*)attrs_data->objs[u])->dynamic) { |
| 128 | free(((struct attr_data_s*)attrs_data->objs[u])->value); |
| 129 | } |
| 130 | } |
| 131 | ly_set_erase(attrs_data, free); |
| 132 | return ret; |
| 133 | } |
| 134 | |
| 135 | static LY_ERR |
| 136 | lydxml_attributes(struct lyd_xml_ctx *ctx, struct ly_set *attrs_data, struct lyd_node *parent) |
| 137 | { |
| 138 | LY_ERR ret = LY_EVALID, rc; |
| 139 | struct lyd_attr *attr = NULL, *last = NULL; |
| 140 | const struct lyxml_ns *ns; |
| 141 | struct lys_module *mod; |
| 142 | |
| 143 | for (unsigned int u = 0; u < attrs_data->count; ++u) { |
| 144 | unsigned int v; |
| 145 | struct lysc_ext_instance *ant = NULL; |
| 146 | struct attr_data_s *attr_data = (struct attr_data_s*)attrs_data->objs[u]; |
| 147 | |
| 148 | if (!attr_data->prefix_len) { |
| 149 | /* in XML, all attributes must be prefixed |
| 150 | * TODO exception for NETCONF filters which are supposed to map to the ietf-netconf without prefix */ |
| 151 | if (ctx->options & LYD_OPT_STRICT) { |
| 152 | LOGVAL(ctx->ctx, LY_VLOG_LINE, &ctx->line, LYVE_REFERENCE, "Missing mandatory prefix for XML attribute \"%.*s\".", |
| 153 | attr_data->name_len, attr_data->name); |
| 154 | } |
| 155 | skip_attr: |
| 156 | if (attr_data->dynamic) { |
| 157 | free(attr_data->value); |
| 158 | attr_data->dynamic = 0; |
| 159 | } |
| 160 | continue; |
| 161 | } |
| 162 | |
| 163 | /* get namespace of the attribute to find its annotation definition */ |
| 164 | ns = lyxml_ns_get((struct lyxml_context *)ctx, attr_data->prefix, attr_data->prefix_len); |
| 165 | if (!ns) { |
| 166 | /* unknown namespace, ignore the attribute */ |
| 167 | LOGVAL(ctx->ctx, LY_VLOG_LINE, &ctx->line, LYVE_REFERENCE, "Unknown XML prefix \"%.*s\".", attr_data->prefix_len, attr_data->prefix); |
| 168 | goto cleanup; |
| 169 | } |
| 170 | mod = ly_ctx_get_module_implemented_ns(ctx->ctx, ns->uri); |
| 171 | if (!mod) { |
| 172 | /* module is not implemented or not present in the schema */ |
| 173 | if (ctx->options & LYD_OPT_STRICT) { |
| 174 | LOGVAL(ctx->ctx, LY_VLOG_LINE, &ctx->line, LYVE_REFERENCE, |
| 175 | "Unknown (or not implemented) YANG module with namespace \"%s\" for attribute \"%.*s%s%.*s\".", |
| 176 | ns, attr_data->prefix_len, attr_data->prefix, attr_data->prefix_len ? ":" : "", attr_data->name_len, attr_data->name); |
| 177 | } |
| 178 | goto skip_attr; |
| 179 | } |
| 180 | |
| 181 | LY_ARRAY_FOR(mod->compiled->exts, v) { |
| 182 | if (mod->compiled->exts[v].def->plugin == lyext_plugins_internal[LYEXT_PLUGIN_INTERNAL_ANNOTATION].plugin && |
Radek Krejci | 7f9b651 | 2019-09-18 13:11:09 +0200 | [diff] [blame] | 183 | !ly_strncmp(mod->compiled->exts[v].argument, attr_data->name, attr_data->name_len)) { |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 184 | /* we have the annotation definition */ |
| 185 | ant = &mod->compiled->exts[v]; |
| 186 | break; |
| 187 | } |
| 188 | } |
| 189 | if (!ant) { |
| 190 | /* attribute is not defined as a metadata annotation (RFC 7952) */ |
| 191 | if (ctx->options & LYD_OPT_STRICT) { |
| 192 | LOGVAL(ctx->ctx, LY_VLOG_LINE, &ctx->line, LYVE_REFERENCE, "Annotation definition for attribute \"%s:%.*s\" not found.", |
| 193 | mod->name, attr_data->name_len, attr_data->name); |
| 194 | } |
| 195 | goto skip_attr; |
| 196 | } |
Radek Krejci | 17a78d8 | 2019-05-15 15:49:55 +0200 | [diff] [blame] | 197 | |
| 198 | attr = calloc(1, sizeof *attr); |
| 199 | LY_CHECK_ERR_GOTO(!attr, LOGMEM(ctx->ctx); ret = LY_EMEM, cleanup); |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 200 | attr->parent = parent; |
| 201 | attr->annotation = ant; |
| 202 | rc = lyd_value_parse_attr(attr, attr_data->value, attr_data->value_len, attr_data->dynamic, 0, lydxml_resolve_prefix, ctx, LYD_XML, NULL); |
| 203 | if (rc == LY_EINCOMPLETE) { |
| 204 | ly_set_add(&ctx->incomplete_type_validation_attrs, attr, LY_SET_OPT_USEASLIST); |
| 205 | } else if (rc) { |
| 206 | ret = rc; |
| 207 | free(attr); |
| 208 | goto cleanup; |
| 209 | } |
| 210 | attr_data->dynamic = 0; /* value eaten by lyd_value_parse_attr() */ |
| 211 | attr->name = lydict_insert(ctx->ctx, attr_data->name, attr_data->name_len); |
Radek Krejci | 17a78d8 | 2019-05-15 15:49:55 +0200 | [diff] [blame] | 212 | |
| 213 | if (last) { |
| 214 | last->next = attr; |
| 215 | } else { |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 216 | parent->attr = attr; |
Radek Krejci | 17a78d8 | 2019-05-15 15:49:55 +0200 | [diff] [blame] | 217 | } |
| 218 | last = attr; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 219 | } |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 220 | ret = LY_SUCCESS; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 221 | |
| 222 | cleanup: |
| 223 | |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 224 | for (unsigned int u = 0; u < attrs_data->count; ++u) { |
| 225 | if (((struct attr_data_s*)attrs_data->objs[u])->dynamic) { |
| 226 | free(((struct attr_data_s*)attrs_data->objs[u])->value); |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 227 | } |
| 228 | } |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 229 | ly_set_erase(attrs_data, free); |
| 230 | |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 231 | return ret; |
| 232 | } |
| 233 | |
| 234 | /** |
| 235 | * @brief Parse XML elements as children YANG data node of the specified parent node. |
| 236 | * |
| 237 | * @param[in] ctx XML YANG data parser context. |
| 238 | * @param[in] parent Parent node where the children are inserted. NULL in case of parsing top-level elements. |
| 239 | * @param[in,out] data Pointer to the XML string representation of the YANG data to parse. |
| 240 | * @param[out] node Resulting list of the parsed nodes. |
| 241 | * @reutn LY_ERR value. |
| 242 | */ |
| 243 | static LY_ERR |
| 244 | lydxml_nodes(struct lyd_xml_ctx *ctx, struct lyd_node_inner *parent, const char **data, struct lyd_node **node) |
| 245 | { |
| 246 | LY_ERR ret = LY_SUCCESS; |
| 247 | const char *prefix, *name; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 248 | size_t prefix_len, name_len; |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 249 | struct ly_set attrs_data = {0}; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 250 | const struct lyxml_ns *ns; |
| 251 | const struct lysc_node *snode; |
| 252 | struct lys_module *mod; |
| 253 | unsigned int parents_count = ctx->elements.count; |
Radek Krejci | 710226d | 2019-07-24 17:24:59 +0200 | [diff] [blame] | 254 | struct lyd_node *cur = NULL, *prev = NULL, *last = NULL; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 255 | |
| 256 | (*node) = NULL; |
| 257 | |
| 258 | while(ctx->status == LYXML_ELEMENT) { |
| 259 | ret = lyxml_get_element((struct lyxml_context *)ctx, data, &prefix, &prefix_len, &name, &name_len); |
| 260 | LY_CHECK_GOTO(ret, cleanup); |
| 261 | if (!name) { |
| 262 | /* closing previous element */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 263 | if (ctx->elements.count < parents_count) { |
| 264 | /* all siblings parsed */ |
| 265 | break; |
| 266 | } else { |
| 267 | continue; |
| 268 | } |
| 269 | } |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 270 | if (ctx->status == LYXML_ATTRIBUTE) { |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 271 | LY_CHECK_GOTO(lydxml_attributes_parse(ctx, data, &attrs_data), error); |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 272 | } |
| 273 | |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 274 | ns = lyxml_ns_get((struct lyxml_context *)ctx, prefix, prefix_len); |
| 275 | if (!ns) { |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 276 | LOGVAL(ctx->ctx, LY_VLOG_LINE, &ctx->line, LYVE_REFERENCE, "Unknown XML prefix \"%.*s\".", prefix_len, prefix); |
Radek Krejci | 1170214 | 2019-07-24 17:46:04 +0200 | [diff] [blame] | 277 | goto error; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 278 | } |
| 279 | mod = ly_ctx_get_module_implemented_ns(ctx->ctx, ns->uri); |
| 280 | if (!mod) { |
| 281 | LOGVAL(ctx->ctx, LY_VLOG_LINE, &ctx->line, LYVE_REFERENCE, "No module with namespace \"%s\" in the context.", ns->uri); |
Radek Krejci | 1170214 | 2019-07-24 17:46:04 +0200 | [diff] [blame] | 282 | goto error; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 283 | } |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame^] | 284 | snode = lys_child(parent ? parent->schema : NULL, mod, name, name_len, 0, 0); |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 285 | if (!snode) { |
| 286 | LOGVAL(ctx->ctx, LY_VLOG_LINE, &ctx->line, LYVE_REFERENCE, "Element \"%.*s\" not found in the \"%s\" module.", name_len, name, mod->name); |
Radek Krejci | 1170214 | 2019-07-24 17:46:04 +0200 | [diff] [blame] | 287 | goto error; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 288 | } |
| 289 | |
| 290 | /* allocate new node */ |
| 291 | switch (snode->nodetype) { |
Radek Krejci | f3b6fec | 2019-07-24 15:53:11 +0200 | [diff] [blame] | 292 | case LYS_ACTION: |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame^] | 293 | LOGVAL(ctx->ctx, LY_VLOG_LINE, &ctx->line, LYVE_DATA, "Unexpected RPC/action element \"%.*s\".", |
| 294 | name_len, name); |
| 295 | goto error; |
| 296 | /*cur = calloc(1, sizeof(struct lyd_node_inner)); |
| 297 | break;*/ |
Radek Krejci | f3b6fec | 2019-07-24 15:53:11 +0200 | [diff] [blame] | 298 | case LYS_NOTIF: |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame^] | 299 | LOGVAL(ctx->ctx, LY_VLOG_LINE, &ctx->line, LYVE_DATA, "Unexpected notification element \"%.*s\".", |
| 300 | name_len, name); |
| 301 | goto error; |
| 302 | /*cur = calloc(1, sizeof(struct lyd_node_inner)); |
| 303 | break;*/ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 304 | case LYS_CONTAINER: |
| 305 | case LYS_LIST: |
| 306 | cur = calloc(1, sizeof(struct lyd_node_inner)); |
| 307 | break; |
| 308 | case LYS_LEAF: |
| 309 | case LYS_LEAFLIST: |
| 310 | cur = calloc(1, sizeof(struct lyd_node_term)); |
| 311 | break; |
| 312 | case LYS_ANYDATA: |
| 313 | case LYS_ANYXML: |
| 314 | cur = calloc(1, sizeof(struct lyd_node_any)); |
| 315 | break; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 316 | default: |
| 317 | LOGINT(ctx->ctx); |
Radek Krejci | 1170214 | 2019-07-24 17:46:04 +0200 | [diff] [blame] | 318 | ret = LY_EINT; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 319 | goto cleanup; |
| 320 | } |
| 321 | if (!(*node)) { |
| 322 | (*node) = cur; |
| 323 | } |
Radek Krejci | 710226d | 2019-07-24 17:24:59 +0200 | [diff] [blame] | 324 | last = cur; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 325 | cur->schema = snode; |
Radek Krejci | 710226d | 2019-07-24 17:24:59 +0200 | [diff] [blame] | 326 | cur->prev = cur; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 327 | cur->parent = parent; |
Radek Krejci | e92210c | 2019-05-17 15:53:35 +0200 | [diff] [blame] | 328 | if (parent) { |
Radek Krejci | 710226d | 2019-07-24 17:24:59 +0200 | [diff] [blame] | 329 | if (prev && cur->schema->nodetype == LYS_LEAF && (cur->schema->flags & LYS_KEY)) { |
| 330 | /* it is key and we need to insert it into a correct place */ |
Radek Krejci | 0fe9b51 | 2019-07-26 17:51:05 +0200 | [diff] [blame] | 331 | struct lysc_node *key_s; |
Radek Krejci | 710226d | 2019-07-24 17:24:59 +0200 | [diff] [blame] | 332 | unsigned int cur_index, key_index; |
| 333 | struct lyd_node *key; |
| 334 | |
Radek Krejci | 0fe9b51 | 2019-07-26 17:51:05 +0200 | [diff] [blame] | 335 | for (cur_index = 0, key_s = ((struct lysc_node_list*)parent->schema)->child; |
| 336 | key_s && key_s != cur->schema; |
| 337 | ++cur_index, key_s = key_s->next); |
| 338 | for (key = prev; |
| 339 | !(key->schema->flags & LYS_KEY) && key->prev != prev; |
| 340 | key = key->prev); |
Radek Krejci | 710226d | 2019-07-24 17:24:59 +0200 | [diff] [blame] | 341 | for (; key->schema->flags & LYS_KEY; key = key->prev) { |
Radek Krejci | 0fe9b51 | 2019-07-26 17:51:05 +0200 | [diff] [blame] | 342 | for (key_index = 0, key_s = ((struct lysc_node_list*)parent->schema)->child; |
| 343 | key_s && key_s != key->schema; |
| 344 | ++key_index, key_s = key_s->next); |
Radek Krejci | 710226d | 2019-07-24 17:24:59 +0200 | [diff] [blame] | 345 | if (key_index < cur_index) { |
| 346 | /* cur key is supposed to be placed after the key */ |
| 347 | cur->next = key->next; |
| 348 | cur->prev = key; |
| 349 | key->next = cur; |
| 350 | if (cur->next) { |
| 351 | cur->next->prev = cur; |
| 352 | } else { |
| 353 | parent->child->prev = cur; |
| 354 | } |
| 355 | break; |
| 356 | } |
| 357 | if (key->prev == prev) { |
| 358 | /* current key is supposed to be the first child from the current children */ |
| 359 | key = NULL; |
| 360 | break; |
| 361 | } |
| 362 | } |
| 363 | if (!key || !(key->schema->flags & LYS_KEY)) { |
| 364 | /* current key is supposed to be the first child from the current children */ |
| 365 | cur->next = parent->child; |
| 366 | cur->prev = parent->child->prev; |
| 367 | parent->child->prev = cur; |
| 368 | parent->child = cur; |
| 369 | } |
| 370 | if (cur->next) { |
| 371 | last = prev; |
| 372 | if (ctx->options & LYD_OPT_STRICT) { |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 373 | LOGVAL(ctx->ctx, LY_VLOG_LINE, &ctx->line, LYVE_DATA, "Invalid position of the key \"%.*s\" in a list.", |
Radek Krejci | 710226d | 2019-07-24 17:24:59 +0200 | [diff] [blame] | 374 | name_len, name); |
Radek Krejci | 1170214 | 2019-07-24 17:46:04 +0200 | [diff] [blame] | 375 | goto error; |
Radek Krejci | 710226d | 2019-07-24 17:24:59 +0200 | [diff] [blame] | 376 | } else { |
| 377 | LOGWRN(ctx->ctx, "Invalid position of the key \"%.*s\" in a list.", name_len, name); |
| 378 | } |
| 379 | } |
| 380 | } else { |
| 381 | /* last child of the parent */ |
| 382 | if (prev) { |
| 383 | parent->child->prev = cur; |
| 384 | prev->next = cur; |
| 385 | cur->prev = prev; |
| 386 | } |
| 387 | } |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 388 | } else { |
Radek Krejci | 710226d | 2019-07-24 17:24:59 +0200 | [diff] [blame] | 389 | /* top level */ |
| 390 | if (prev) { |
| 391 | /* last top level node */ |
| 392 | struct lyd_node *iter; |
| 393 | for (iter = prev; iter->prev->next; iter = iter->prev); |
| 394 | iter->prev = cur; |
| 395 | prev->next = cur; |
| 396 | cur->prev = prev; |
| 397 | } /* first top level node - nothing more to do */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 398 | } |
Radek Krejci | 710226d | 2019-07-24 17:24:59 +0200 | [diff] [blame] | 399 | prev = last; |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 400 | LY_CHECK_GOTO(ret = lydxml_attributes(ctx, &attrs_data, cur), cleanup); |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 401 | |
| 402 | if (snode->nodetype & LYD_NODE_TERM) { |
| 403 | int dynamic = 0; |
| 404 | char *buffer = NULL, *value; |
| 405 | size_t buffer_size = 0, value_len; |
| 406 | |
| 407 | if (ctx->status == LYXML_ELEM_CONTENT) { |
| 408 | /* get the value */ |
Radek Krejci | 1170214 | 2019-07-24 17:46:04 +0200 | [diff] [blame] | 409 | ret = lyxml_get_string((struct lyxml_context *)ctx, data, &buffer, &buffer_size, &value, &value_len, &dynamic); |
| 410 | if (ret == LY_EINVAL) { |
Radek Krejci | 339e2de | 2019-05-17 14:28:24 +0200 | [diff] [blame] | 411 | /* just indentation of a child element found */ |
| 412 | LOGVAL(ctx->ctx, LY_VLOG_LINE, &ctx->line, LYVE_SYNTAX, "Child element inside terminal node \"%s\" found.", cur->schema->name); |
| 413 | goto cleanup; |
| 414 | } |
Radek Krejci | 1170214 | 2019-07-24 17:46:04 +0200 | [diff] [blame] | 415 | ret = LY_SUCCESS; |
Radek Krejci | e92210c | 2019-05-17 15:53:35 +0200 | [diff] [blame] | 416 | } else { |
| 417 | /* no content - validate empty value */ |
| 418 | value = ""; |
| 419 | value_len = 0; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 420 | } |
Radek Krejci | 3c9758d | 2019-07-11 16:49:10 +0200 | [diff] [blame] | 421 | ret = lyd_value_parse((struct lyd_node_term*)cur, value, value_len, dynamic, 0, lydxml_resolve_prefix, ctx, LYD_XML, NULL); |
Radek Krejci | e553e6d | 2019-06-07 15:33:18 +0200 | [diff] [blame] | 422 | if (ret == LY_EINCOMPLETE) { |
| 423 | ly_set_add(&ctx->incomplete_type_validation, cur, LY_SET_OPT_USEASLIST); |
| 424 | } else if (ret) { |
| 425 | if (dynamic){ |
| 426 | free(value); |
| 427 | } |
| 428 | goto cleanup; |
| 429 | } |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 430 | } else if (snode->nodetype & LYD_NODE_INNER) { |
| 431 | int dynamic = 0; |
| 432 | char *buffer = NULL, *value; |
| 433 | size_t buffer_size = 0, value_len; |
| 434 | |
| 435 | if (ctx->status == LYXML_ELEM_CONTENT) { |
| 436 | LY_ERR r = lyxml_get_string((struct lyxml_context *)ctx, data, &buffer, &buffer_size, &value, &value_len, &dynamic); |
Radek Krejci | e553e6d | 2019-06-07 15:33:18 +0200 | [diff] [blame] | 437 | if (r != LY_EINVAL && (r != LY_SUCCESS || value_len != 0)) { |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 438 | LOGINT(ctx->ctx); |
Radek Krejci | 1170214 | 2019-07-24 17:46:04 +0200 | [diff] [blame] | 439 | ret = LY_EINT; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 440 | goto cleanup; |
| 441 | } |
| 442 | } |
Radek Krejci | ee4cab2 | 2019-07-17 17:07:47 +0200 | [diff] [blame] | 443 | /* process children */ |
Radek Krejci | e553e6d | 2019-06-07 15:33:18 +0200 | [diff] [blame] | 444 | if (ctx->status == LYXML_ELEMENT && parents_count != ctx->elements.count) { |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 445 | ret = lydxml_nodes(ctx, (struct lyd_node_inner*)cur, data, lyd_node_children_p(cur)); |
Radek Krejci | e92210c | 2019-05-17 15:53:35 +0200 | [diff] [blame] | 446 | LY_CHECK_GOTO(ret, cleanup); |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 447 | } |
Radek Krejci | ee4cab2 | 2019-07-17 17:07:47 +0200 | [diff] [blame] | 448 | } else if (snode->nodetype & LYD_NODE_ANY) { |
| 449 | unsigned int cur_element_index = ctx->elements.count; |
| 450 | const char *start = *data, *stop; |
| 451 | const char *p, *n; |
| 452 | size_t p_len, n_len; |
| 453 | |
| 454 | /* skip children data and store them as a string */ |
Radek Krejci | 26a5dfb | 2019-07-26 14:51:06 +0200 | [diff] [blame] | 455 | while (ctx->status != LYXML_END && cur_element_index <= ctx->elements.count) { |
Radek Krejci | ee4cab2 | 2019-07-17 17:07:47 +0200 | [diff] [blame] | 456 | switch (ctx->status) { |
| 457 | case LYXML_ELEMENT: |
| 458 | ret = lyxml_get_element((struct lyxml_context *)ctx, data, &p, &p_len, &n, &n_len); |
| 459 | break; |
| 460 | case LYXML_ATTRIBUTE: |
| 461 | lyxml_get_attribute((struct lyxml_context*)ctx, data, &p, &p_len, &n, &n_len); |
| 462 | break; |
| 463 | case LYXML_ELEM_CONTENT: |
| 464 | case LYXML_ATTR_CONTENT: |
| 465 | ret = lyxml_get_string((struct lyxml_context *)ctx, data, NULL, NULL, NULL, NULL, NULL); |
| 466 | if (ret == LY_EINVAL) { |
| 467 | /* not an error, just incorrect XML parser status */ |
| 468 | ret = LY_SUCCESS; |
| 469 | } |
| 470 | break; |
| 471 | case LYXML_END: |
Radek Krejci | 26a5dfb | 2019-07-26 14:51:06 +0200 | [diff] [blame] | 472 | /* end of data */ |
Radek Krejci | ee4cab2 | 2019-07-17 17:07:47 +0200 | [diff] [blame] | 473 | LOGINT(ctx->ctx); |
Radek Krejci | 1170214 | 2019-07-24 17:46:04 +0200 | [diff] [blame] | 474 | ret = LY_EINT; |
Radek Krejci | ee4cab2 | 2019-07-17 17:07:47 +0200 | [diff] [blame] | 475 | goto cleanup; |
| 476 | } |
| 477 | LY_CHECK_GOTO(ret, cleanup); |
| 478 | } |
Radek Krejci | ee4cab2 | 2019-07-17 17:07:47 +0200 | [diff] [blame] | 479 | ((struct lyd_node_any*)cur)->value_type = LYD_ANYDATA_XML; |
Radek Krejci | 26a5dfb | 2019-07-26 14:51:06 +0200 | [diff] [blame] | 480 | if (start != *data) { |
| 481 | /* data now points after the anydata's closing element tag, we need just end of its content */ |
| 482 | for (stop = *data - 1; *stop != '<'; --stop); |
| 483 | ((struct lyd_node_any*)cur)->value.xml = lydict_insert(ctx->ctx, start, stop - start); |
| 484 | } |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 485 | } |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 486 | |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 487 | /* remember we need to evaluate this node's when */ |
| 488 | if (!(snode->nodetype & (LYS_ACTION | LYS_NOTIF)) && snode->when) { |
| 489 | ly_set_add(&ctx->when_check, cur, LY_SET_OPT_USEASLIST); |
| 490 | } |
| 491 | |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 492 | /* calculate the hash and insert it into parent (list with keys is handled when its keys are inserted) */ |
| 493 | lyd_hash(cur); |
| 494 | lyd_insert_hash(cur); |
Radek Krejci | b6f7ae5 | 2019-07-19 10:31:42 +0200 | [diff] [blame] | 495 | |
| 496 | /* if we have empty non-presence container, we keep it, but mark it as default */ |
| 497 | if (cur->schema->nodetype == LYS_CONTAINER && !((struct lyd_node_inner*)cur)->child && |
| 498 | !cur->attr && !(((struct lysc_node_container*)cur->schema)->flags & LYS_PRESENCE)) { |
| 499 | cur->flags |= LYD_DEFAULT; |
| 500 | } |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 501 | } |
| 502 | |
Radek Krejci | f3b6fec | 2019-07-24 15:53:11 +0200 | [diff] [blame] | 503 | /* TODO add missing siblings default elements */ |
| 504 | |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 505 | cleanup: |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 506 | for (unsigned int u = 0; u < attrs_data.count; ++u) { |
| 507 | if (((struct attr_data_s*)attrs_data.objs[u])->dynamic) { |
| 508 | free(((struct attr_data_s*)attrs_data.objs[u])->value); |
| 509 | } |
| 510 | } |
| 511 | ly_set_erase(&attrs_data, free); |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 512 | return ret; |
Radek Krejci | 1170214 | 2019-07-24 17:46:04 +0200 | [diff] [blame] | 513 | |
| 514 | error: |
| 515 | ret = LY_EVALID; |
| 516 | goto cleanup; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 517 | } |
| 518 | |
| 519 | LY_ERR |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame^] | 520 | lyd_parse_xml(struct ly_ctx *ctx, const char *data, int options, struct lyd_node **result) |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 521 | { |
Radek Krejci | 18a57d9 | 2019-07-25 14:01:42 +0200 | [diff] [blame] | 522 | LY_ERR ret = LY_SUCCESS; |
Radek Krejci | f3b6fec | 2019-07-24 15:53:11 +0200 | [diff] [blame] | 523 | struct lyd_node_inner *parent = NULL; |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 524 | const struct lyd_node **result_trees = NULL; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 525 | struct lyd_xml_ctx xmlctx = {0}; |
| 526 | |
| 527 | xmlctx.options = options; |
| 528 | xmlctx.ctx = ctx; |
| 529 | xmlctx.line = 1; |
| 530 | |
Radek Krejci | f3b6fec | 2019-07-24 15:53:11 +0200 | [diff] [blame] | 531 | /* init */ |
| 532 | *result = NULL; |
| 533 | |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame^] | 534 | #if 0 |
Radek Krejci | f3b6fec | 2019-07-24 15:53:11 +0200 | [diff] [blame] | 535 | if (options & LYD_OPT_RPCREPLY) { |
Radek Krejci | 3c1046e | 2019-07-26 13:06:53 +0200 | [diff] [blame] | 536 | /* prepare container for RPC reply, for which we need RPC |
Radek Krejci | f3b6fec | 2019-07-24 15:53:11 +0200 | [diff] [blame] | 537 | * - prepare *result as top-level node |
| 538 | * - prepare parent as the RPC/action node */ |
Radek Krejci | 3c1046e | 2019-07-26 13:06:53 +0200 | [diff] [blame] | 539 | const struct lyd_node *action; |
| 540 | for (action = trees[0]; action && action->schema->nodetype != LYS_ACTION; action = lyd_node_children(action)) { |
| 541 | /* skip list's keys */ |
Radek Krejci | 26a5dfb | 2019-07-26 14:51:06 +0200 | [diff] [blame] | 542 | for ( ;action && action->schema->nodetype == LYS_LEAF; action = action->next); |
| 543 | if (action && action->schema->nodetype == LYS_ACTION) { |
| 544 | break; |
| 545 | } |
Radek Krejci | 3c1046e | 2019-07-26 13:06:53 +0200 | [diff] [blame] | 546 | } |
| 547 | if (!action) { |
| 548 | LOGERR(ctx, LY_EINVAL, "Data parser invalid argument trees - the first item in the array must be the RPC/action request when parsing %s.", |
| 549 | lyd_parse_options_type2str(options)); |
| 550 | return LY_EINVAL; |
| 551 | } |
| 552 | parent = (struct lyd_node_inner*)lyd_dup(action, NULL, LYD_DUP_WITH_PARENTS); |
| 553 | LY_CHECK_ERR_RET(!parent, LOGERR(ctx, ly_errcode(ctx), "Unable to duplicate RPC/action container for RPC/action reply."), ly_errcode(ctx)); |
| 554 | for (*result = (struct lyd_node*)parent; (*result)->parent; *result = (struct lyd_node*)(*result)->parent); |
Radek Krejci | f3b6fec | 2019-07-24 15:53:11 +0200 | [diff] [blame] | 555 | } |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame^] | 556 | #endif |
Radek Krejci | f3b6fec | 2019-07-24 15:53:11 +0200 | [diff] [blame] | 557 | |
Radek Krejci | 26a5dfb | 2019-07-26 14:51:06 +0200 | [diff] [blame] | 558 | if (!data || !data[0]) { |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 559 | /* no data - just check for missing mandatory nodes */ |
| 560 | goto validation; |
Radek Krejci | 26a5dfb | 2019-07-26 14:51:06 +0200 | [diff] [blame] | 561 | } |
| 562 | |
Radek Krejci | f3b6fec | 2019-07-24 15:53:11 +0200 | [diff] [blame] | 563 | ret = lydxml_nodes(&xmlctx, parent, &data, *result ? &parent->child : result); |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 564 | LY_CHECK_GOTO(ret, cleanup); |
| 565 | |
| 566 | /* prepare sized array for validator */ |
| 567 | if (*result) { |
| 568 | result_trees = lyd_trees_new(1, *result); |
| 569 | } |
| 570 | |
| 571 | /* finish incompletely validated terminal values/attributes and when conditions */ |
| 572 | ret = lyd_validate_unres(&xmlctx.incomplete_type_validation, &xmlctx.incomplete_type_validation_attrs, |
| 573 | &xmlctx.when_check, LYD_XML, lydxml_resolve_prefix, ctx, result_trees); |
| 574 | LY_CHECK_GOTO(ret, cleanup); |
| 575 | |
| 576 | validation: |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame^] | 577 | #if 0 |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 578 | if ((!(*result) || (parent && !parent->child)) && (options & (LYD_OPT_RPC | LYD_OPT_NOTIF))) { |
| 579 | /* error, missing top level node identify RPC and Notification */ |
| 580 | LOGERR(ctx, LY_EINVAL, "Invalid input data of data parser - expected %s which cannot be empty.", |
| 581 | lyd_parse_options_type2str(options)); |
| 582 | ret = LY_EINVAL; |
| 583 | goto cleanup; |
| 584 | } |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame^] | 585 | #endif |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 586 | |
| 587 | /* context node and other validation tasks that depend on other data nodes */ |
| 588 | ret = lyd_validate_modules(result_trees, NULL, 0, ctx, options); |
| 589 | LY_CHECK_GOTO(result, cleanup); |
| 590 | |
| 591 | cleanup: |
| 592 | ly_set_erase(&xmlctx.incomplete_type_validation, NULL); |
| 593 | ly_set_erase(&xmlctx.incomplete_type_validation_attrs, NULL); |
| 594 | ly_set_erase(&xmlctx.when_check, NULL); |
| 595 | lyxml_context_clear((struct lyxml_context*)&xmlctx); |
| 596 | lyd_trees_free(result_trees, 0); |
Radek Krejci | e92210c | 2019-05-17 15:53:35 +0200 | [diff] [blame] | 597 | if (ret) { |
| 598 | lyd_free_all(*result); |
| 599 | *result = NULL; |
| 600 | } |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 601 | return ret; |
| 602 | } |