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 | |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 15 | #include <stdint.h> |
| 16 | #include <stdlib.h> |
| 17 | #include <string.h> |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 18 | #include <assert.h> |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 19 | |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 20 | #include "common.h" |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 21 | #include "context.h" |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 22 | #include "log.h" |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 23 | #include "parser_data.h" |
| 24 | #include "parser_internal.h" |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 25 | #include "set.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 26 | #include "tree.h" |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 27 | #include "tree_data_internal.h" |
| 28 | #include "tree_schema.h" |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 29 | #include "validation.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 30 | #include "xml.h" |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 31 | |
| 32 | /** |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 33 | * @brief Internal context for XML YANG data parser. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 34 | */ |
| 35 | struct lyd_xml_ctx { |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 36 | struct lyxml_ctx *xmlctx; /**< XML context */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 37 | |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 38 | uint32_t options; /**< various @ref dataparseroptions. */ |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 39 | uint32_t int_opts; /**< internal data parser options */ |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 40 | uint32_t path_len; /**< used bytes in the path buffer */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 41 | #define LYD_PARSER_BUFSIZE 4078 |
| 42 | char path[LYD_PARSER_BUFSIZE]; /**< buffer for the generated path */ |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 43 | struct ly_set unres_node_type; /**< set of nodes validated with LY_EINCOMPLETE result */ |
| 44 | struct ly_set unres_meta_type; /**< set of metadata validated with LY_EINCOMPLETE result */ |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 45 | struct ly_set when_check; /**< set of nodes with "when" conditions */ |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 46 | struct lyd_node *op_ntf; /**< if an RPC/action/notification is being parsed, store the pointer to it */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 47 | }; |
| 48 | |
| 49 | /** |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 50 | * @brief XML-parser's implementation of ly_type_resolve_prefix() callback to provide mapping between prefixes used |
| 51 | * in the values to the schema via XML namespaces. |
Radek Krejci | aca7403 | 2019-06-04 08:53:06 +0200 | [diff] [blame] | 52 | */ |
| 53 | static const struct lys_module * |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 54 | lydxml_resolve_prefix(const struct ly_ctx *ctx, const char *prefix, size_t prefix_len, void *parser) |
Radek Krejci | aca7403 | 2019-06-04 08:53:06 +0200 | [diff] [blame] | 55 | { |
| 56 | const struct lyxml_ns *ns; |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 57 | struct lyxml_ctx *xmlctx = (struct lyxml_ctx *)parser; |
Radek Krejci | aca7403 | 2019-06-04 08:53:06 +0200 | [diff] [blame] | 58 | |
| 59 | ns = lyxml_ns_get(xmlctx, prefix, prefix_len); |
| 60 | if (!ns) { |
| 61 | return NULL; |
| 62 | } |
| 63 | |
| 64 | return ly_ctx_get_module_implemented_ns(ctx, ns->uri); |
| 65 | } |
| 66 | |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 67 | static LY_ERR |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 68 | lydxml_metadata(struct lyxml_ctx *xmlctx, const struct lysc_node *sparent, int strict, struct ly_set *unres_meta_type, |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 69 | struct lyd_meta **meta) |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 70 | { |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 71 | LY_ERR ret = LY_EVALID; |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 72 | const struct lyxml_ns *ns; |
| 73 | struct lys_module *mod; |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 74 | const char *name; |
| 75 | size_t name_len; |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 76 | |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 77 | *meta = NULL; |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 78 | |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 79 | while (xmlctx->status == LYXML_ATTRIBUTE) { |
| 80 | if (!xmlctx->prefix_len) { |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 81 | /* in XML, all attributes must be prefixed |
| 82 | * TODO exception for NETCONF filters which are supposed to map to the ietf-netconf without prefix */ |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 83 | if (strict) { |
| 84 | LOGVAL(xmlctx->ctx, LY_VLOG_LINE, &xmlctx->line, LYVE_REFERENCE, "Missing mandatory prefix for XML metadata \"%.*s\".", |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 85 | xmlctx->name_len, xmlctx->name); |
| 86 | goto cleanup; |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 87 | } |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 88 | |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 89 | skip_attr: |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 90 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), cleanup); |
| 91 | assert(xmlctx->status == LYXML_ATTR_CONTENT); |
| 92 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), cleanup); |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 93 | continue; |
| 94 | } |
| 95 | |
| 96 | /* get namespace of the attribute to find its annotation definition */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 97 | ns = lyxml_ns_get(xmlctx, xmlctx->prefix, xmlctx->prefix_len); |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 98 | if (!ns) { |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 99 | /* unknown namespace, XML error */ |
| 100 | LOGVAL(xmlctx->ctx, LY_VLOG_LINE, &xmlctx->line, LYVE_REFERENCE, "Unknown XML prefix \"%.*s\".", |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 101 | xmlctx->prefix_len, xmlctx->prefix); |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 102 | goto cleanup; |
| 103 | } |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 104 | mod = ly_ctx_get_module_implemented_ns(xmlctx->ctx, ns->uri); |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 105 | if (!mod) { |
| 106 | /* module is not implemented or not present in the schema */ |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 107 | if (strict) { |
| 108 | LOGVAL(xmlctx->ctx, LY_VLOG_LINE, &xmlctx->line, LYVE_REFERENCE, |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 109 | "Unknown (or not implemented) YANG module with namespace \"%s\" for metadata \"%.*s%s%.*s\".", |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 110 | ns->uri, xmlctx->prefix_len, xmlctx->prefix, xmlctx->prefix_len ? ":" : "", xmlctx->name_len, |
| 111 | xmlctx->name); |
| 112 | goto cleanup; |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 113 | } |
| 114 | goto skip_attr; |
| 115 | } |
| 116 | |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 117 | /* remember meta name and get its content */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 118 | name = xmlctx->name; |
| 119 | name_len = xmlctx->name_len; |
| 120 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), cleanup); |
| 121 | assert(xmlctx->status == LYXML_ATTR_CONTENT); |
| 122 | |
| 123 | /* create metadata */ |
| 124 | ret = lyd_create_meta(NULL, meta, mod, name, name_len, xmlctx->value, xmlctx->value_len, &xmlctx->dynamic, |
| 125 | lydxml_resolve_prefix, xmlctx, LYD_XML, sparent); |
| 126 | if (ret == LY_EINCOMPLETE) { |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 127 | if (unres_meta_type) { |
| 128 | ly_set_add(unres_meta_type, *meta, LY_SET_OPT_USEASLIST); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 129 | } |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 130 | } else if (ret) { |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 131 | goto cleanup; |
| 132 | } |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 133 | |
| 134 | /* next attribute */ |
| 135 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), cleanup); |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 136 | } |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 137 | |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 138 | ret = LY_SUCCESS; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 139 | |
| 140 | cleanup: |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 141 | if (ret) { |
| 142 | lyd_free_meta(xmlctx->ctx, *meta, 1); |
| 143 | *meta = NULL; |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 144 | } |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 145 | return ret; |
| 146 | } |
| 147 | |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 148 | static LY_ERR |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 149 | lydxml_attrs(struct lyxml_ctx *xmlctx, struct ly_attr **attr) |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 150 | { |
| 151 | LY_ERR ret = LY_SUCCESS; |
| 152 | const struct lyxml_ns *ns; |
| 153 | struct ly_prefix *val_prefs; |
| 154 | struct ly_attr *attr2; |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 155 | const char *name, *prefix; |
| 156 | size_t name_len, prefix_len; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 157 | |
| 158 | assert(attr); |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 159 | *attr = NULL; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 160 | |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 161 | while (xmlctx->status == LYXML_ATTRIBUTE) { |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 162 | ns = NULL; |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 163 | if (xmlctx->prefix_len) { |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 164 | /* get namespace of the attribute */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 165 | ns = lyxml_ns_get(xmlctx, xmlctx->prefix, xmlctx->prefix_len); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 166 | if (!ns) { |
| 167 | LOGVAL(xmlctx->ctx, LY_VLOG_LINE, &xmlctx->line, LYVE_REFERENCE, "Unknown XML prefix \"%.*s\".", |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 168 | xmlctx->prefix_len, xmlctx->prefix); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 169 | ret = LY_EVALID; |
| 170 | goto cleanup; |
| 171 | } |
| 172 | } |
| 173 | |
| 174 | if (*attr) { |
| 175 | attr2 = *attr; |
| 176 | } else { |
| 177 | attr2 = NULL; |
| 178 | } |
| 179 | |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 180 | /* remember attr prefix, name, and get its content */ |
| 181 | prefix = xmlctx->prefix; |
| 182 | prefix_len = xmlctx->prefix_len; |
| 183 | name = xmlctx->name; |
| 184 | name_len = xmlctx->name_len; |
| 185 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), cleanup); |
| 186 | assert(xmlctx->status == LYXML_ATTR_CONTENT); |
| 187 | |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 188 | /* get value prefixes */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 189 | LY_CHECK_GOTO(ret = lyxml_get_prefixes(xmlctx, xmlctx->value, xmlctx->value_len, &val_prefs), cleanup); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 190 | |
| 191 | /* attr2 is always changed to the created attribute */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 192 | ret = ly_create_attr(NULL, &attr2, xmlctx->ctx, name, name_len, xmlctx->value, xmlctx->value_len, |
| 193 | &xmlctx->dynamic, LYD_XML, val_prefs, prefix, prefix_len, ns ? ns->uri : NULL); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 194 | LY_CHECK_GOTO(ret, cleanup); |
| 195 | |
| 196 | if (!*attr) { |
| 197 | *attr = attr2; |
| 198 | } |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 199 | |
| 200 | /* next attribute */ |
| 201 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), cleanup); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 202 | } |
| 203 | |
| 204 | cleanup: |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 205 | if (ret) { |
| 206 | ly_free_attr(xmlctx->ctx, *attr, 1); |
| 207 | *attr = NULL; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 208 | } |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 209 | return ret; |
| 210 | } |
| 211 | |
Michal Vasko | 44685da | 2020-03-17 15:38:06 +0100 | [diff] [blame] | 212 | static LY_ERR |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 213 | lydxml_check_list(struct lyxml_ctx *xmlctx, const struct lysc_node *list) |
Michal Vasko | 44685da | 2020-03-17 15:38:06 +0100 | [diff] [blame] | 214 | { |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 215 | LY_ERR ret = LY_SUCCESS, r; |
| 216 | enum LYXML_PARSER_STATUS next; |
Michal Vasko | 44685da | 2020-03-17 15:38:06 +0100 | [diff] [blame] | 217 | struct ly_set key_set = {0}; |
| 218 | const struct lysc_node *snode; |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 219 | uint32_t i, parents_count; |
Michal Vasko | 44685da | 2020-03-17 15:38:06 +0100 | [diff] [blame] | 220 | |
| 221 | assert(list && (list->nodetype == LYS_LIST)); |
| 222 | |
| 223 | /* get all keys into a set (keys do not have if-features or anything) */ |
| 224 | snode = NULL; |
| 225 | while ((snode = lys_getnext(snode, list, NULL, LYS_GETNEXT_NOSTATECHECK)) && (snode->flags & LYS_KEY)) { |
| 226 | ly_set_add(&key_set, (void *)snode, LY_SET_OPT_USEASLIST); |
| 227 | } |
| 228 | |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 229 | while (xmlctx->status == LYXML_ELEMENT) { |
Michal Vasko | 44685da | 2020-03-17 15:38:06 +0100 | [diff] [blame] | 230 | /* find key definition */ |
| 231 | for (i = 0; i < key_set.count; ++i) { |
| 232 | snode = (const struct lysc_node *)key_set.objs[i]; |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 233 | if (!ly_strncmp(snode->name, xmlctx->name, xmlctx->name_len)) { |
Michal Vasko | 44685da | 2020-03-17 15:38:06 +0100 | [diff] [blame] | 234 | break; |
| 235 | } |
| 236 | } |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 237 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), cleanup); |
Michal Vasko | 44685da | 2020-03-17 15:38:06 +0100 | [diff] [blame] | 238 | |
| 239 | /* skip attributes */ |
| 240 | while (xmlctx->status == LYXML_ATTRIBUTE) { |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 241 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), cleanup); |
| 242 | assert(xmlctx->status == LYXML_ATTR_CONTENT); |
| 243 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), cleanup); |
Michal Vasko | 44685da | 2020-03-17 15:38:06 +0100 | [diff] [blame] | 244 | } |
| 245 | |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 246 | assert(xmlctx->status == LYXML_ELEM_CONTENT); |
| 247 | if (i < key_set.count) { |
| 248 | /* validate the value */ |
| 249 | r = lys_value_validate(NULL, snode, xmlctx->value, xmlctx->value_len, lydxml_resolve_prefix, xmlctx, LYD_XML); |
| 250 | if (!r) { |
| 251 | /* key with a valid value, remove from the set */ |
| 252 | ly_set_rm_index(&key_set, i, NULL); |
Michal Vasko | 44685da | 2020-03-17 15:38:06 +0100 | [diff] [blame] | 253 | } |
| 254 | } |
| 255 | |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 256 | /* parser next */ |
| 257 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), cleanup); |
Michal Vasko | 44685da | 2020-03-17 15:38:06 +0100 | [diff] [blame] | 258 | |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 259 | /* skip any children, resursively */ |
| 260 | parents_count = xmlctx->elements.count; |
| 261 | while ((parents_count < xmlctx->elements.count) || (xmlctx->status == LYXML_ELEMENT)) { |
| 262 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), cleanup); |
| 263 | } |
| 264 | |
| 265 | /* parser next, but do not parse closing element of the list because it would remove its namespaces */ |
| 266 | assert(xmlctx->status == LYXML_ELEM_CLOSE); |
| 267 | LY_CHECK_GOTO(ret = lyxml_ctx_peek(xmlctx, &next), cleanup); |
| 268 | if (next != LYXML_ELEM_CLOSE) { |
| 269 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), cleanup); |
| 270 | } |
Michal Vasko | 44685da | 2020-03-17 15:38:06 +0100 | [diff] [blame] | 271 | } |
| 272 | |
| 273 | if (key_set.count) { |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 274 | /* some keys are missing/did not validate */ |
Michal Vasko | 44685da | 2020-03-17 15:38:06 +0100 | [diff] [blame] | 275 | ret = LY_ENOT; |
Michal Vasko | 44685da | 2020-03-17 15:38:06 +0100 | [diff] [blame] | 276 | } |
| 277 | |
| 278 | cleanup: |
| 279 | ly_set_erase(&key_set, NULL); |
| 280 | return ret; |
| 281 | } |
| 282 | |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 283 | static LY_ERR |
| 284 | lydxml_data_skip(struct lyxml_ctx *xmlctx) |
| 285 | { |
| 286 | uint32_t parents_count; |
| 287 | |
| 288 | /* remember current number of parents */ |
| 289 | parents_count = xmlctx->elements.count; |
| 290 | |
| 291 | /* skip after the content */ |
| 292 | while (xmlctx->status != LYXML_ELEM_CONTENT) { |
| 293 | LY_CHECK_RET(lyxml_ctx_next(xmlctx)); |
| 294 | } |
| 295 | LY_CHECK_RET(lyxml_ctx_next(xmlctx)); |
| 296 | |
| 297 | /* skip all children elements, recursively, if any */ |
| 298 | while (parents_count < xmlctx->elements.count) { |
| 299 | LY_CHECK_RET(lyxml_ctx_next(xmlctx)); |
| 300 | } |
| 301 | |
| 302 | /* close element */ |
| 303 | assert(xmlctx->status == LYXML_ELEM_CLOSE); |
| 304 | LY_CHECK_RET(lyxml_ctx_next(xmlctx)); |
| 305 | |
| 306 | return LY_SUCCESS; |
| 307 | } |
| 308 | |
| 309 | static LY_ERR |
| 310 | lydxml_data_check_schema(struct lyd_xml_ctx *lydctx, const struct lysc_node **snode) |
| 311 | { |
| 312 | LY_ERR ret = LY_SUCCESS; |
| 313 | enum LYXML_PARSER_STATUS prev_status; |
| 314 | const char *prev_input, *pname, *pprefix; |
| 315 | size_t pprefix_len, pname_len; |
| 316 | struct lyxml_ctx *xmlctx = lydctx->xmlctx; |
| 317 | |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 318 | if ((lydctx->options & LYD_PARSE_NO_STATE) && ((*snode)->flags & LYS_CONFIG_R)) { |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 319 | LOGVAL(xmlctx->ctx, LY_VLOG_LINE, &xmlctx->line, LY_VCODE_INNODE, "state", (*snode)->name); |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 320 | return LY_EVALID; |
| 321 | } |
| 322 | |
| 323 | if ((*snode)->nodetype & (LYS_RPC | LYS_ACTION)) { |
| 324 | if (lydctx->int_opts & LYD_INTOPT_RPC) { |
| 325 | if (lydctx->op_ntf) { |
| 326 | LOGVAL(xmlctx->ctx, LY_VLOG_LINE, &xmlctx->line, LYVE_DATA, "Unexpected %s element \"%s\", %s \"%s\" already parsed.", |
| 327 | lys_nodetype2str((*snode)->nodetype), (*snode)->name, |
| 328 | lys_nodetype2str(lydctx->op_ntf->schema->nodetype), lydctx->op_ntf->schema->name); |
| 329 | return LY_EVALID; |
| 330 | } |
| 331 | } else { |
| 332 | LOGVAL(xmlctx->ctx, LY_VLOG_LINE, &xmlctx->line, LYVE_DATA, "Unexpected %s element \"%s\".", |
| 333 | lys_nodetype2str((*snode)->nodetype), (*snode)->name); |
| 334 | return LY_EVALID; |
| 335 | } |
| 336 | } else if ((*snode)->nodetype == LYS_NOTIF) { |
| 337 | if (lydctx->int_opts & LYD_INTOPT_NOTIF) { |
| 338 | if (lydctx->op_ntf) { |
| 339 | LOGVAL(xmlctx->ctx, LY_VLOG_LINE, &xmlctx->line, LYVE_DATA, "Unexpected %s element \"%s\", %s \"%s\" already parsed.", |
| 340 | lys_nodetype2str((*snode)->nodetype), (*snode)->name, |
| 341 | lys_nodetype2str(lydctx->op_ntf->schema->nodetype), lydctx->op_ntf->schema->name); |
| 342 | return LY_EVALID; |
| 343 | } |
| 344 | } else { |
| 345 | LOGVAL(xmlctx->ctx, LY_VLOG_LINE, &xmlctx->line, LYVE_DATA, "Unexpected %s element \"%s\".", |
| 346 | lys_nodetype2str((*snode)->nodetype), (*snode)->name); |
| 347 | return LY_EVALID; |
| 348 | } |
| 349 | } |
| 350 | |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 351 | if ((lydctx->options & LYD_PARSE_OPAQ) && ((*snode)->nodetype & (LYD_NODE_TERM | LYS_LIST))) { |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 352 | /* backup parser */ |
| 353 | prev_status = xmlctx->status; |
| 354 | pprefix = xmlctx->prefix; |
| 355 | pprefix_len = xmlctx->prefix_len; |
| 356 | pname = xmlctx->name; |
| 357 | pname_len = xmlctx->name_len; |
| 358 | prev_input = xmlctx->input; |
| 359 | if ((xmlctx->status == LYXML_ELEM_CONTENT) && xmlctx->dynamic) { |
| 360 | /* it was backed up, do not free */ |
| 361 | xmlctx->dynamic = 0; |
| 362 | } |
| 363 | |
| 364 | /* skip attributes */ |
| 365 | while (xmlctx->status == LYXML_ATTRIBUTE) { |
| 366 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), restore); |
| 367 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), restore); |
| 368 | } |
| 369 | |
| 370 | if ((*snode)->nodetype & LYD_NODE_TERM) { |
| 371 | /* value may not be valid in which case we parse it as an opaque node */ |
| 372 | if (lys_value_validate(NULL, *snode, xmlctx->value, xmlctx->value_len, lydxml_resolve_prefix, xmlctx, LYD_XML)) { |
| 373 | *snode = NULL; |
| 374 | } |
| 375 | } else { |
| 376 | /* skip content */ |
| 377 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), restore); |
| 378 | |
| 379 | if (lydxml_check_list(xmlctx, *snode)) { |
| 380 | /* invalid list, parse as opaque if it missing/has invalid some keys */ |
| 381 | *snode = NULL; |
| 382 | } |
| 383 | } |
| 384 | |
| 385 | restore: |
| 386 | /* restore parser */ |
| 387 | if (xmlctx->dynamic) { |
| 388 | free((char *)xmlctx->value); |
| 389 | } |
| 390 | xmlctx->status = prev_status; |
| 391 | xmlctx->prefix = pprefix; |
| 392 | xmlctx->prefix_len = pprefix_len; |
| 393 | xmlctx->name = pname; |
| 394 | xmlctx->name_len = pname_len; |
| 395 | xmlctx->input = prev_input; |
| 396 | } |
| 397 | |
| 398 | return ret; |
| 399 | } |
| 400 | |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 401 | /** |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 402 | * @brief Parse XML elements as YANG data node children the specified parent node. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 403 | * |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 404 | * @param[in] lydctx XML YANG data parser context. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 405 | * @param[in] parent Parent node where the children are inserted. NULL in case of parsing top-level elements. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 406 | * @param[out] node Resulting list of the parsed nodes. |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 407 | * @return LY_ERR value. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 408 | */ |
| 409 | static LY_ERR |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 410 | lydxml_data_r(struct lyd_xml_ctx *lydctx, struct lyd_node_inner *parent, struct lyd_node **first) |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 411 | { |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 412 | LY_ERR ret = LY_SUCCESS; |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 413 | const char *prefix, *name; |
| 414 | size_t prefix_len, name_len; |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 415 | struct lyxml_ctx *xmlctx; |
| 416 | const struct ly_ctx *ctx; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 417 | const struct lyxml_ns *ns; |
Michal Vasko | 5ab0d5c | 2020-06-29 11:48:05 +0200 | [diff] [blame] | 418 | struct lyd_meta *meta = NULL, *m; |
| 419 | struct ly_attr *attr = NULL, *a; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 420 | const struct lysc_node *snode; |
| 421 | struct lys_module *mod; |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 422 | uint32_t prev_opts; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 423 | struct lyd_node *cur = NULL, *anchor; |
| 424 | struct ly_prefix *val_prefs; |
Michal Vasko | 1ce933a | 2020-03-30 12:38:22 +0200 | [diff] [blame] | 425 | int getnext_opts; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 426 | |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 427 | xmlctx = lydctx->xmlctx; |
| 428 | ctx = xmlctx->ctx; |
Michal Vasko | 1ce933a | 2020-03-30 12:38:22 +0200 | [diff] [blame] | 429 | /* leave if-feature check for validation */ |
| 430 | getnext_opts = LYS_GETNEXT_NOSTATECHECK | (lydctx->int_opts & LYD_INTOPT_REPLY ? LYS_GETNEXT_OUTPUT : 0); |
Michal Vasko | 6f4cbb6 | 2020-02-28 11:15:47 +0100 | [diff] [blame] | 431 | |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 432 | while (xmlctx->status == LYXML_ELEMENT) { |
| 433 | /* remember element prefix and name */ |
| 434 | prefix = xmlctx->prefix; |
| 435 | prefix_len = xmlctx->prefix_len; |
| 436 | name = xmlctx->name; |
| 437 | name_len = xmlctx->name_len; |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 438 | |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 439 | /* get the element module */ |
| 440 | ns = lyxml_ns_get(xmlctx, prefix, prefix_len); |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 441 | if (!ns) { |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 442 | LOGVAL(ctx, LY_VLOG_LINE, &xmlctx->line, LYVE_REFERENCE, "Unknown XML prefix \"%.*s\".", |
| 443 | prefix_len, prefix); |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 444 | ret = LY_EVALID; |
| 445 | goto cleanup; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 446 | } |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 447 | mod = ly_ctx_get_module_implemented_ns(ctx, ns->uri); |
Michal Vasko | aa7f4fa | 2020-06-22 10:03:53 +0200 | [diff] [blame] | 448 | if (!mod) { |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 449 | if (lydctx->options & LYD_PARSE_STRICT) { |
Michal Vasko | aa7f4fa | 2020-06-22 10:03:53 +0200 | [diff] [blame] | 450 | LOGVAL(ctx, LY_VLOG_LINE, &xmlctx->line, LYVE_REFERENCE, "No module with namespace \"%s\" in the context.", |
| 451 | ns->uri); |
| 452 | ret = LY_EVALID; |
| 453 | goto cleanup; |
| 454 | } |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 455 | if (!(lydctx->options & LYD_PARSE_OPAQ)) { |
Michal Vasko | 2acb5a6 | 2020-06-23 13:23:53 +0200 | [diff] [blame] | 456 | /* skip element with children */ |
| 457 | LY_CHECK_GOTO(ret = lydxml_data_skip(xmlctx), cleanup); |
| 458 | continue; |
| 459 | } |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 460 | } |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 461 | |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 462 | /* parser next */ |
| 463 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), cleanup); |
| 464 | |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 465 | /* get the schema node */ |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 466 | snode = NULL; |
| 467 | if (mod && (!parent || parent->schema)) { |
Michal Vasko | 1ce933a | 2020-03-30 12:38:22 +0200 | [diff] [blame] | 468 | snode = lys_find_child(parent ? parent->schema : NULL, mod, name, name_len, 0, getnext_opts); |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 469 | if (!snode) { |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 470 | if (lydctx->options & LYD_PARSE_STRICT) { |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 471 | LOGVAL(ctx, LY_VLOG_LINE, &xmlctx->line, LYVE_REFERENCE, "Element \"%.*s\" not found in the \"%s\" module.", |
| 472 | name_len, name, mod->name); |
| 473 | ret = LY_EVALID; |
| 474 | goto cleanup; |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 475 | } else if (!(lydctx->options & LYD_PARSE_OPAQ)) { |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 476 | /* skip element with children */ |
| 477 | LY_CHECK_GOTO(ret = lydxml_data_skip(xmlctx), cleanup); |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 478 | continue; |
| 479 | } |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 480 | } else { |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 481 | /* check that schema node is valid and can be used */ |
| 482 | LY_CHECK_GOTO(ret = lydxml_data_check_schema(lydctx, &snode), cleanup); |
Michal Vasko | 44685da | 2020-03-17 15:38:06 +0100 | [diff] [blame] | 483 | } |
| 484 | } |
| 485 | |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 486 | /* create metadata/attributes */ |
| 487 | if (xmlctx->status == LYXML_ATTRIBUTE) { |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 488 | if (snode) { |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 489 | ret = lydxml_metadata(xmlctx, snode, lydctx->options & LYD_PARSE_STRICT, &lydctx->unres_meta_type, &meta); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 490 | LY_CHECK_GOTO(ret, cleanup); |
| 491 | } else { |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 492 | assert(lydctx->options & LYD_PARSE_OPAQ); |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 493 | ret = lydxml_attrs(xmlctx, &attr); |
| 494 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 495 | } |
Michal Vasko | 8d54425 | 2020-03-02 10:19:52 +0100 | [diff] [blame] | 496 | } |
| 497 | |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 498 | assert(xmlctx->status == LYXML_ELEM_CONTENT); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 499 | if (!snode) { |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 500 | assert(lydctx->options & LYD_PARSE_OPAQ); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 501 | |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 502 | if (xmlctx->ws_only) { |
| 503 | /* ignore WS-only value */ |
| 504 | xmlctx->value_len = 0; |
| 505 | val_prefs = NULL; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 506 | } else { |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 507 | /* get value prefixes */ |
| 508 | ret = lyxml_get_prefixes(xmlctx, xmlctx->value, xmlctx->value_len, &val_prefs); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 509 | LY_CHECK_GOTO(ret, cleanup); |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 510 | } |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 511 | |
| 512 | /* create node */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 513 | ret = lyd_create_opaq(ctx, name, name_len, xmlctx->value, xmlctx->value_len, &xmlctx->dynamic, LYD_XML, |
| 514 | val_prefs, prefix, prefix_len, ns->uri, &cur); |
| 515 | LY_CHECK_GOTO(ret, cleanup); |
| 516 | |
| 517 | /* parser next */ |
| 518 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), cleanup); |
| 519 | |
| 520 | /* process children */ |
| 521 | if (xmlctx->status == LYXML_ELEMENT) { |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 522 | ret = lydxml_data_r(lydctx, (struct lyd_node_inner *)cur, lyd_node_children_p(cur)); |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 523 | LY_CHECK_GOTO(ret, cleanup); |
| 524 | } |
| 525 | } else if (snode->nodetype & LYD_NODE_TERM) { |
| 526 | /* create node */ |
| 527 | ret = lyd_create_term(snode, xmlctx->value, xmlctx->value_len, &xmlctx->dynamic, lydxml_resolve_prefix, |
| 528 | xmlctx, LYD_XML, &cur); |
Radek Krejci | e553e6d | 2019-06-07 15:33:18 +0200 | [diff] [blame] | 529 | if (ret == LY_EINCOMPLETE) { |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 530 | if (!(lydctx->options & LYD_PARSE_ONLY)) { |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 531 | ly_set_add(&lydctx->unres_node_type, cur, LY_SET_OPT_USEASLIST); |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 532 | } |
Radek Krejci | e553e6d | 2019-06-07 15:33:18 +0200 | [diff] [blame] | 533 | } else if (ret) { |
Radek Krejci | e553e6d | 2019-06-07 15:33:18 +0200 | [diff] [blame] | 534 | goto cleanup; |
| 535 | } |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 536 | |
| 537 | if (parent && (cur->schema->flags & LYS_KEY)) { |
| 538 | /* check the key order, the anchor must always be the last child */ |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 539 | anchor = lyd_get_prev_key_anchor(parent->child, cur->schema); |
| 540 | if ((!anchor && parent->child) || (anchor && anchor->next)) { |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 541 | if (lydctx->options & LYD_PARSE_STRICT) { |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 542 | LOGVAL(ctx, LY_VLOG_LINE, &xmlctx->line, LYVE_DATA, "Invalid position of the key \"%s\" in a list.", |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 543 | cur->schema->name); |
| 544 | ret = LY_EVALID; |
| 545 | goto cleanup; |
| 546 | } else { |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 547 | LOGWRN(ctx, "Invalid position of the key \"%s\" in a list.", cur->schema->name); |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 548 | } |
| 549 | } |
| 550 | } |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 551 | |
| 552 | /* parser next */ |
| 553 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), cleanup); |
| 554 | |
| 555 | /* no children expected */ |
| 556 | if (xmlctx->status == LYXML_ELEMENT) { |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 557 | LOGVAL(ctx, LY_VLOG_LINE, &xmlctx->line, LYVE_SYNTAX, "Child element \"%.*s\" inside a terminal node \"%s\" found.", |
| 558 | xmlctx->name_len, xmlctx->name, snode->name); |
Michal Vasko | 44685da | 2020-03-17 15:38:06 +0100 | [diff] [blame] | 559 | ret = LY_EVALID; |
| 560 | goto cleanup; |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 561 | } |
| 562 | } else if (snode->nodetype & LYD_NODE_INNER) { |
| 563 | if (!xmlctx->ws_only) { |
| 564 | /* value in inner node */ |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 565 | LOGVAL(ctx, LY_VLOG_LINE, &xmlctx->line, LYVE_SYNTAX, "Text value \"%.*s\" inside an inner node \"%s\" found.", |
| 566 | xmlctx->value_len, xmlctx->value, snode->name); |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 567 | ret = LY_EVALID; |
| 568 | goto cleanup; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 569 | } |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 570 | |
| 571 | /* create node */ |
| 572 | ret = lyd_create_inner(snode, &cur); |
| 573 | LY_CHECK_GOTO(ret, cleanup); |
| 574 | |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 575 | /* parser next */ |
| 576 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), cleanup); |
| 577 | |
Radek Krejci | ee4cab2 | 2019-07-17 17:07:47 +0200 | [diff] [blame] | 578 | /* process children */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 579 | if (xmlctx->status == LYXML_ELEMENT) { |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 580 | ret = lydxml_data_r(lydctx, (struct lyd_node_inner *)cur, lyd_node_children_p(cur)); |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 581 | LY_CHECK_GOTO(ret, cleanup); |
| 582 | } |
| 583 | |
| 584 | if (snode->nodetype == LYS_LIST) { |
| 585 | /* check all keys exist */ |
Michal Vasko | 44685da | 2020-03-17 15:38:06 +0100 | [diff] [blame] | 586 | LY_CHECK_GOTO(ret = lyd_parse_check_keys(cur), cleanup); |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 587 | } |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 588 | |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 589 | if (!(lydctx->options & LYD_PARSE_ONLY)) { |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 590 | /* new node validation, autodelete CANNOT occur, all nodes are new */ |
| 591 | ret = lyd_validate_new(lyd_node_children_p(cur), snode, NULL); |
| 592 | LY_CHECK_GOTO(ret, cleanup); |
| 593 | |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 594 | /* add any missing default children */ |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 595 | ret = lyd_validate_defaults_r((struct lyd_node_inner *)cur, lyd_node_children_p(cur), NULL, NULL, |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 596 | &lydctx->unres_node_type, &lydctx->when_check, lydctx->options); |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 597 | LY_CHECK_GOTO(ret, cleanup); |
| 598 | } |
| 599 | |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 600 | if (snode->nodetype == LYS_LIST) { |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 601 | /* hash now that all keys should be parsed, rehash for key-less list */ |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 602 | lyd_hash(cur); |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 603 | } else if (snode->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) { |
| 604 | /* rememeber the RPC/action/notification */ |
| 605 | lydctx->op_ntf = cur; |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 606 | } |
Radek Krejci | ee4cab2 | 2019-07-17 17:07:47 +0200 | [diff] [blame] | 607 | } else if (snode->nodetype & LYD_NODE_ANY) { |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 608 | if (!xmlctx->ws_only) { |
| 609 | /* value in inner node */ |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 610 | LOGVAL(ctx, LY_VLOG_LINE, &xmlctx->line, LYVE_SYNTAX, "Text value \"%.*s\" inside an any node \"%s\" found.", |
| 611 | xmlctx->value_len, xmlctx->value, snode->name); |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 612 | ret = LY_EVALID; |
| 613 | goto cleanup; |
Radek Krejci | ee4cab2 | 2019-07-17 17:07:47 +0200 | [diff] [blame] | 614 | } |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 615 | |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 616 | /* parser next */ |
| 617 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), cleanup); |
| 618 | |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 619 | /* parse any data tree with correct options */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 620 | prev_opts = lydctx->options; |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 621 | lydctx->options &= ~LYD_PARSE_STRICT; |
| 622 | lydctx->options |= LYD_PARSE_OPAQ; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 623 | anchor = NULL; |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 624 | ret = lydxml_data_r(lydctx, NULL, &anchor); |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 625 | lydctx->options = prev_opts; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 626 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 627 | |
| 628 | /* create node */ |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 629 | ret = lyd_create_any(snode, anchor, LYD_ANYDATA_DATATREE, &cur); |
| 630 | LY_CHECK_GOTO(ret, cleanup); |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 631 | } |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 632 | assert(cur); |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 633 | |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 634 | /* add/correct flags */ |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 635 | if (snode) { |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 636 | lyd_parse_set_data_flags(cur, &lydctx->when_check, &meta, lydctx->options); |
Michal Vasko | 8d54425 | 2020-03-02 10:19:52 +0100 | [diff] [blame] | 637 | } |
| 638 | |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 639 | /* add metadata/attributes */ |
| 640 | if (snode) { |
Michal Vasko | 5ab0d5c | 2020-06-29 11:48:05 +0200 | [diff] [blame] | 641 | LY_LIST_FOR(meta, m) { |
| 642 | m->parent = cur; |
| 643 | } |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 644 | cur->meta = meta; |
| 645 | meta = NULL; |
| 646 | } else { |
| 647 | assert(!cur->schema); |
Michal Vasko | 5ab0d5c | 2020-06-29 11:48:05 +0200 | [diff] [blame] | 648 | LY_LIST_FOR(attr, a) { |
| 649 | a->parent = (struct lyd_node_opaq *)cur; |
| 650 | } |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 651 | ((struct lyd_node_opaq *)cur)->attr = attr; |
| 652 | attr = NULL; |
| 653 | } |
Radek Krejci | b6f7ae5 | 2019-07-19 10:31:42 +0200 | [diff] [blame] | 654 | |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 655 | /* insert */ |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 656 | lyd_insert_node((struct lyd_node *)parent, first, cur); |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 657 | cur = NULL; |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 658 | |
| 659 | /* parser next */ |
| 660 | assert(xmlctx->status == LYXML_ELEM_CLOSE); |
| 661 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), cleanup); |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 662 | } |
| 663 | |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 664 | /* success */ |
| 665 | ret = LY_SUCCESS; |
| 666 | |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 667 | cleanup: |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 668 | lyd_free_meta(ctx, meta, 1); |
| 669 | ly_free_attr(ctx, attr, 1); |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 670 | lyd_free_tree(cur); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 671 | if (ret && *first) { |
| 672 | lyd_free_siblings(*first); |
| 673 | *first = NULL; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 674 | } |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 675 | return ret; |
| 676 | } |
| 677 | |
| 678 | LY_ERR |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 679 | lyd_parse_xml_data(const struct ly_ctx *ctx, const char *data, int parse_options, int validate_options, struct lyd_node **tree) |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 680 | { |
Radek Krejci | 18a57d9 | 2019-07-25 14:01:42 +0200 | [diff] [blame] | 681 | LY_ERR ret = LY_SUCCESS; |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 682 | struct lyd_xml_ctx lydctx = {0}; |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 683 | uint32_t i = 0; |
| 684 | const struct lys_module *mod; |
| 685 | struct lyd_node *first, *next, **first2; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 686 | |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 687 | assert(!(parse_options & ~LYD_PARSE_OPTS_MASK)); |
| 688 | assert(!(validate_options & ~LYD_VALIDATE_OPTS_MASK)); |
| 689 | |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 690 | /* init context and tree */ |
| 691 | LY_CHECK_GOTO(ret = lyxml_ctx_new(ctx, data, &lydctx.xmlctx), cleanup); |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 692 | lydctx.options = parse_options; |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 693 | *tree = NULL; |
Radek Krejci | f3b6fec | 2019-07-24 15:53:11 +0200 | [diff] [blame] | 694 | |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 695 | /* parse XML data */ |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 696 | LY_CHECK_GOTO(ret = lydxml_data_r(&lydctx, NULL, tree), cleanup); |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 697 | |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 698 | if (!(parse_options & LYD_PARSE_ONLY)) { |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 699 | next = *tree; |
| 700 | while (1) { |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 701 | if (validate_options & LYD_VALIDATE_PRESENT) { |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 702 | mod = lyd_data_next_module(&next, &first); |
| 703 | } else { |
| 704 | mod = lyd_mod_next_module(next, NULL, 0, ctx, &i, &first); |
| 705 | } |
| 706 | if (!mod) { |
| 707 | break; |
| 708 | } |
| 709 | if (first == *tree) { |
| 710 | /* make sure first2 changes are carried to tree */ |
| 711 | first2 = tree; |
| 712 | } else { |
| 713 | first2 = &first; |
| 714 | } |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 715 | |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 716 | /* validate new top-level nodes, autodelete CANNOT occur, all nodes are new */ |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 717 | LY_CHECK_GOTO(ret = lyd_validate_new(first2, NULL, mod), cleanup); |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 718 | |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 719 | /* add all top-level defaults for this module */ |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 720 | ret = lyd_validate_defaults_r(NULL, first2, NULL, mod, &lydctx.unres_node_type, &lydctx.when_check, validate_options); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 721 | LY_CHECK_GOTO(ret, cleanup); |
| 722 | |
| 723 | /* finish incompletely validated terminal values/attributes and when conditions */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 724 | ret = lyd_validate_unres(tree, &lydctx.when_check, &lydctx.unres_node_type, &lydctx.unres_meta_type, LYD_XML, |
| 725 | lydxml_resolve_prefix, lydctx.xmlctx); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 726 | LY_CHECK_GOTO(ret, cleanup); |
| 727 | |
| 728 | /* perform final validation that assumes the data tree is final */ |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 729 | LY_CHECK_GOTO(ret = lyd_validate_final_r(*first2, NULL, mod, validate_options, 0), cleanup); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 730 | } |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 731 | } |
| 732 | |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 733 | cleanup: |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 734 | /* there should be no unresolved types stored */ |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 735 | assert(!(parse_options & LYD_PARSE_ONLY) || (!lydctx.unres_node_type.count && !lydctx.unres_meta_type.count |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 736 | && !lydctx.when_check.count)); |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 737 | |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 738 | ly_set_erase(&lydctx.unres_node_type, NULL); |
| 739 | ly_set_erase(&lydctx.unres_meta_type, NULL); |
| 740 | ly_set_erase(&lydctx.when_check, NULL); |
| 741 | lyxml_ctx_free(lydctx.xmlctx); |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 742 | if (ret) { |
| 743 | lyd_free_all(*tree); |
| 744 | *tree = NULL; |
| 745 | } |
| 746 | return ret; |
| 747 | } |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 748 | |
| 749 | static LY_ERR |
| 750 | lydxml_envelope(struct lyxml_ctx *xmlctx, const char *name, const char *uri, struct lyd_node **envp) |
| 751 | { |
| 752 | LY_ERR ret = LY_SUCCESS; |
| 753 | const struct lyxml_ns *ns = NULL; |
| 754 | struct ly_attr *attr = NULL; |
| 755 | const char *prefix; |
| 756 | size_t prefix_len; |
| 757 | |
| 758 | *envp = NULL; |
| 759 | |
| 760 | assert(xmlctx->status == LYXML_ELEMENT); |
| 761 | if (ly_strncmp(name, xmlctx->name, xmlctx->name_len)) { |
| 762 | /* not the expected element */ |
| 763 | return LY_SUCCESS; |
| 764 | } |
| 765 | |
| 766 | prefix = xmlctx->prefix; |
| 767 | prefix_len = xmlctx->prefix_len; |
| 768 | ns = lyxml_ns_get(xmlctx, prefix, prefix_len); |
| 769 | if (!ns) { |
| 770 | LOGVAL(xmlctx->ctx, LY_VLOG_LINE, &xmlctx->line, LYVE_REFERENCE, "Unknown XML prefix \"%.*s\".", |
| 771 | prefix_len, prefix); |
| 772 | return LY_EVALID; |
| 773 | } else if (strcmp(ns->uri, uri)) { |
| 774 | /* different namespace */ |
| 775 | return LY_SUCCESS; |
| 776 | } |
| 777 | |
| 778 | LY_CHECK_RET(lyxml_ctx_next(xmlctx)); |
| 779 | |
| 780 | /* create attributes */ |
| 781 | if (xmlctx->status == LYXML_ATTRIBUTE) { |
| 782 | LY_CHECK_RET(lydxml_attrs(xmlctx, &attr)); |
| 783 | } |
| 784 | |
| 785 | if (!xmlctx->ws_only) { |
| 786 | LOGVAL(xmlctx->ctx, LY_VLOG_LINE, &xmlctx->line, LYVE_SYNTAX, "Unexpected value \"%.*s\" in the \"%s\" element.", |
| 787 | xmlctx->value_len, xmlctx->value, name); |
| 788 | ret = LY_EVALID; |
| 789 | goto cleanup; |
| 790 | } |
| 791 | |
| 792 | /* parser next element */ |
| 793 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), cleanup); |
| 794 | |
| 795 | /* create node */ |
| 796 | ret = lyd_create_opaq(xmlctx->ctx, name, strlen(name), "", 0, NULL, LYD_XML, NULL, prefix, prefix_len, uri, envp); |
| 797 | LY_CHECK_GOTO(ret, cleanup); |
| 798 | |
| 799 | /* assign atributes */ |
| 800 | ((struct lyd_node_opaq *)(*envp))->attr = attr; |
| 801 | attr = NULL; |
| 802 | |
| 803 | cleanup: |
| 804 | ly_free_attr(xmlctx->ctx, attr, 1); |
| 805 | return ret; |
| 806 | } |
| 807 | |
| 808 | LY_ERR |
| 809 | lyd_parse_xml_rpc(const struct ly_ctx *ctx, const char *data, struct lyd_node **tree, struct lyd_node **op) |
| 810 | { |
| 811 | LY_ERR ret = LY_SUCCESS; |
| 812 | struct lyd_xml_ctx lydctx = {0}; |
| 813 | struct lyd_node *rpc_e = NULL, *act_e = NULL; |
| 814 | |
| 815 | /* init */ |
| 816 | LY_CHECK_GOTO(ret = lyxml_ctx_new(ctx, data, &lydctx.xmlctx), cleanup); |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 817 | lydctx.options = LYD_PARSE_ONLY | LYD_PARSE_STRICT; |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 818 | lydctx.int_opts = LYD_INTOPT_RPC; |
| 819 | *tree = NULL; |
Michal Vasko | cc048b2 | 2020-03-27 15:52:38 +0100 | [diff] [blame] | 820 | if (op) { |
| 821 | *op = NULL; |
| 822 | } |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 823 | |
| 824 | /* parse "rpc", if any */ |
| 825 | LY_CHECK_GOTO(ret = lydxml_envelope(lydctx.xmlctx, "rpc", "urn:ietf:params:xml:ns:netconf:base:1.0", &rpc_e), cleanup); |
| 826 | |
| 827 | if (rpc_e) { |
| 828 | /* parse "action", if any */ |
| 829 | LY_CHECK_GOTO(ret = lydxml_envelope(lydctx.xmlctx, "action", "urn:ietf:params:xml:ns:yang:1", &act_e), cleanup); |
| 830 | } |
| 831 | |
| 832 | /* parse the rest of data normally */ |
| 833 | LY_CHECK_GOTO(ret = lydxml_data_r(&lydctx, NULL, tree), cleanup); |
| 834 | |
| 835 | /* make sure we have parsed some operation */ |
| 836 | if (!lydctx.op_ntf) { |
| 837 | LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_DATA, "Missing the \"rpc\"/\"action\" node."); |
| 838 | ret = LY_EVALID; |
| 839 | goto cleanup; |
| 840 | } |
| 841 | |
| 842 | /* finish XML parsing and check operation type */ |
| 843 | if (act_e) { |
| 844 | if (lydctx.xmlctx->status != LYXML_ELEM_CLOSE) { |
| 845 | assert(lydctx.xmlctx->status == LYXML_ELEMENT); |
| 846 | LOGVAL(ctx, LY_VLOG_LINE, &lydctx.xmlctx->line, LYVE_SYNTAX, "Unexpected sibling element \"%.*s\" of \"action\".", |
| 847 | lydctx.xmlctx->name_len, lydctx.xmlctx->name); |
| 848 | ret = LY_EVALID; |
| 849 | goto cleanup; |
| 850 | } else if (lydctx.op_ntf->schema->nodetype != LYS_ACTION) { |
| 851 | LOGVAL(ctx, LY_VLOG_LYD, lydctx.op_ntf, LYVE_DATA, "Unexpected %s element, an \"action\" expected.", |
| 852 | lys_nodetype2str(lydctx.op_ntf->schema->nodetype)); |
| 853 | ret = LY_EVALID; |
| 854 | goto cleanup; |
| 855 | } |
| 856 | LY_CHECK_GOTO(ret = lyxml_ctx_next(lydctx.xmlctx), cleanup); |
| 857 | } |
| 858 | if (rpc_e) { |
| 859 | if (lydctx.xmlctx->status != LYXML_ELEM_CLOSE) { |
| 860 | assert(lydctx.xmlctx->status == LYXML_ELEMENT); |
| 861 | LOGVAL(ctx, LY_VLOG_LINE, &lydctx.xmlctx->line, LYVE_SYNTAX, "Unexpected sibling element \"%.*s\" of \"rpc\".", |
| 862 | lydctx.xmlctx->name_len, lydctx.xmlctx->name); |
| 863 | ret = LY_EVALID; |
| 864 | goto cleanup; |
| 865 | } else if (!act_e && (lydctx.op_ntf->schema->nodetype != LYS_RPC)) { |
| 866 | LOGVAL(ctx, LY_VLOG_LYD, lydctx.op_ntf, LYVE_DATA, "Unexpected %s element, an \"rpc\" expected.", |
| 867 | lys_nodetype2str(lydctx.op_ntf->schema->nodetype)); |
| 868 | ret = LY_EVALID; |
| 869 | goto cleanup; |
| 870 | } |
| 871 | LY_CHECK_GOTO(ret = lyxml_ctx_next(lydctx.xmlctx), cleanup); |
| 872 | } |
| 873 | |
Michal Vasko | cc048b2 | 2020-03-27 15:52:38 +0100 | [diff] [blame] | 874 | if (op) { |
| 875 | *op = lydctx.op_ntf; |
| 876 | } |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 877 | assert(*tree); |
| 878 | if (act_e) { |
| 879 | /* connect to the action */ |
| 880 | lyd_insert_node(act_e, NULL, *tree); |
| 881 | *tree = act_e; |
| 882 | } |
| 883 | if (rpc_e) { |
| 884 | /* connect to the rpc */ |
| 885 | lyd_insert_node(rpc_e, NULL, *tree); |
| 886 | *tree = rpc_e; |
| 887 | } |
| 888 | |
| 889 | cleanup: |
| 890 | /* we have used parse_only flag */ |
| 891 | assert(!lydctx.unres_node_type.count && !lydctx.unres_meta_type.count && !lydctx.when_check.count); |
| 892 | lyxml_ctx_free(lydctx.xmlctx); |
| 893 | if (ret) { |
| 894 | lyd_free_all(*tree); |
| 895 | lyd_free_tree(act_e); |
| 896 | lyd_free_tree(rpc_e); |
| 897 | *tree = NULL; |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 898 | } |
| 899 | return ret; |
| 900 | } |
Michal Vasko | a8edff0 | 2020-03-27 14:47:01 +0100 | [diff] [blame] | 901 | |
| 902 | static LY_ERR |
| 903 | lydxml_notif_envelope(struct lyxml_ctx *xmlctx, struct lyd_node **envp) |
| 904 | { |
| 905 | LY_ERR ret = LY_SUCCESS; |
| 906 | const struct lyxml_ns *ns = NULL; |
| 907 | struct ly_attr *attr = NULL; |
| 908 | struct lyd_node *et; |
| 909 | const char *prefix; |
| 910 | size_t prefix_len; |
| 911 | |
| 912 | *envp = NULL; |
| 913 | |
| 914 | /* container envelope */ |
| 915 | LY_CHECK_GOTO(ret = lydxml_envelope(xmlctx, "notification", "urn:ietf:params:xml:ns:netconf:notification:1.0", |
| 916 | envp), cleanup); |
| 917 | |
| 918 | /* no envelope, fine */ |
| 919 | if (!*envp) { |
| 920 | goto cleanup; |
| 921 | } |
| 922 | |
| 923 | /* child "eventTime" */ |
| 924 | if ((xmlctx->status != LYXML_ELEMENT) || ly_strncmp("eventTime", xmlctx->name, xmlctx->name_len)) { |
| 925 | LOGVAL(xmlctx->ctx, LY_VLOG_LINE, &xmlctx->line, LYVE_REFERENCE, "Missing the \"eventTime\" element."); |
| 926 | ret = LY_EVALID; |
| 927 | goto cleanup; |
| 928 | } |
| 929 | |
| 930 | prefix = xmlctx->prefix; |
| 931 | prefix_len = xmlctx->prefix_len; |
| 932 | ns = lyxml_ns_get(xmlctx, prefix, prefix_len); |
| 933 | if (!ns) { |
| 934 | LOGVAL(xmlctx->ctx, LY_VLOG_LINE, &xmlctx->line, LYVE_REFERENCE, "Unknown XML prefix \"%.*s\".", |
| 935 | prefix_len, prefix); |
| 936 | ret = LY_EVALID; |
| 937 | goto cleanup; |
| 938 | } else if (strcmp(ns->uri, "urn:ietf:params:xml:ns:netconf:notification:1.0")) { |
| 939 | LOGVAL(xmlctx->ctx, LY_VLOG_LINE, &xmlctx->line, LYVE_REFERENCE, "Invalid namespace \"%s\" of \"eventTime\".", |
| 940 | ns->uri); |
| 941 | ret = LY_EVALID; |
| 942 | goto cleanup; |
| 943 | } |
| 944 | |
| 945 | LY_CHECK_RET(lyxml_ctx_next(xmlctx)); |
| 946 | |
| 947 | /* create attributes */ |
| 948 | if (xmlctx->status == LYXML_ATTRIBUTE) { |
| 949 | LY_CHECK_RET(lydxml_attrs(xmlctx, &attr)); |
| 950 | } |
| 951 | |
| 952 | /* validate value */ |
| 953 | /* TODO */ |
| 954 | /*if (!xmlctx->ws_only) { |
| 955 | LOGVAL(xmlctx->ctx, LY_VLOG_LINE, &xmlctx->line, LYVE_SYNTAX, "Unexpected value \"%.*s\" in the \"%s\" element.", |
| 956 | xmlctx->value_len, xmlctx->value, name); |
| 957 | ret = LY_EVALID; |
| 958 | goto cleanup; |
| 959 | }*/ |
| 960 | |
| 961 | /* create node */ |
| 962 | ret = lyd_create_opaq(xmlctx->ctx, "eventTime", 9, xmlctx->value, xmlctx->value_len, NULL, LYD_XML, NULL, |
| 963 | prefix, prefix_len, ns->uri, &et); |
| 964 | LY_CHECK_GOTO(ret, cleanup); |
| 965 | |
| 966 | /* assign atributes */ |
| 967 | ((struct lyd_node_opaq *)et)->attr = attr; |
| 968 | attr = NULL; |
| 969 | |
| 970 | /* insert */ |
| 971 | lyd_insert_node(*envp, NULL, et); |
| 972 | |
| 973 | /* finish parsing */ |
| 974 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), cleanup); |
| 975 | if (xmlctx->status != LYXML_ELEM_CLOSE) { |
| 976 | assert(xmlctx->status == LYXML_ELEMENT); |
| 977 | LOGVAL(xmlctx->ctx, LY_VLOG_LINE, &xmlctx->line, LYVE_SYNTAX, "Unexpected sibling element \"%.*s\" of \"eventTime\".", |
| 978 | xmlctx->name_len, xmlctx->name); |
| 979 | ret = LY_EVALID; |
| 980 | goto cleanup; |
| 981 | } |
| 982 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), cleanup); |
| 983 | |
| 984 | cleanup: |
| 985 | if (ret) { |
| 986 | lyd_free_tree(*envp); |
| 987 | ly_free_attr(xmlctx->ctx, attr, 1); |
| 988 | } |
| 989 | return ret; |
| 990 | } |
| 991 | |
| 992 | LY_ERR |
| 993 | lyd_parse_xml_notif(const struct ly_ctx *ctx, const char *data, struct lyd_node **tree, struct lyd_node **ntf) |
| 994 | { |
| 995 | LY_ERR ret = LY_SUCCESS; |
| 996 | struct lyd_xml_ctx lydctx = {0}; |
| 997 | struct lyd_node *ntf_e = NULL; |
| 998 | |
| 999 | /* init */ |
| 1000 | LY_CHECK_GOTO(ret = lyxml_ctx_new(ctx, data, &lydctx.xmlctx), cleanup); |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 1001 | lydctx.options = LYD_PARSE_ONLY | LYD_PARSE_STRICT; |
Michal Vasko | a8edff0 | 2020-03-27 14:47:01 +0100 | [diff] [blame] | 1002 | lydctx.int_opts = LYD_INTOPT_NOTIF; |
| 1003 | *tree = NULL; |
Michal Vasko | cc048b2 | 2020-03-27 15:52:38 +0100 | [diff] [blame] | 1004 | if (ntf) { |
| 1005 | *ntf = NULL; |
| 1006 | } |
Michal Vasko | a8edff0 | 2020-03-27 14:47:01 +0100 | [diff] [blame] | 1007 | |
| 1008 | /* parse "notification" and "eventTime", if present */ |
| 1009 | LY_CHECK_GOTO(ret = lydxml_notif_envelope(lydctx.xmlctx, &ntf_e), cleanup); |
| 1010 | |
| 1011 | /* parse the rest of data normally */ |
| 1012 | LY_CHECK_GOTO(ret = lydxml_data_r(&lydctx, NULL, tree), cleanup); |
| 1013 | |
| 1014 | /* make sure we have parsed some notification */ |
| 1015 | if (!lydctx.op_ntf) { |
| 1016 | LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_DATA, "Missing the \"notification\" node."); |
| 1017 | ret = LY_EVALID; |
| 1018 | goto cleanup; |
| 1019 | } |
| 1020 | |
| 1021 | /* finish XML parsing */ |
| 1022 | if (ntf_e) { |
| 1023 | if (lydctx.xmlctx->status != LYXML_ELEM_CLOSE) { |
| 1024 | assert(lydctx.xmlctx->status == LYXML_ELEMENT); |
| 1025 | LOGVAL(ctx, LY_VLOG_LINE, &lydctx.xmlctx->line, LYVE_SYNTAX, "Unexpected sibling element \"%.*s\" of \"notification\".", |
| 1026 | lydctx.xmlctx->name_len, lydctx.xmlctx->name); |
| 1027 | ret = LY_EVALID; |
| 1028 | goto cleanup; |
| 1029 | } |
| 1030 | LY_CHECK_GOTO(ret = lyxml_ctx_next(lydctx.xmlctx), cleanup); |
| 1031 | } |
| 1032 | |
Michal Vasko | cc048b2 | 2020-03-27 15:52:38 +0100 | [diff] [blame] | 1033 | if (ntf) { |
| 1034 | *ntf = lydctx.op_ntf; |
| 1035 | } |
Michal Vasko | a8edff0 | 2020-03-27 14:47:01 +0100 | [diff] [blame] | 1036 | assert(*tree); |
| 1037 | if (ntf_e) { |
| 1038 | /* connect to the notification */ |
| 1039 | lyd_insert_node(ntf_e, NULL, *tree); |
| 1040 | *tree = ntf_e; |
| 1041 | } |
| 1042 | |
| 1043 | cleanup: |
| 1044 | /* we have used parse_only flag */ |
| 1045 | assert(!lydctx.unres_node_type.count && !lydctx.unres_meta_type.count && !lydctx.when_check.count); |
| 1046 | lyxml_ctx_free(lydctx.xmlctx); |
| 1047 | if (ret) { |
| 1048 | lyd_free_all(*tree); |
| 1049 | lyd_free_tree(ntf_e); |
| 1050 | *tree = NULL; |
Michal Vasko | a8edff0 | 2020-03-27 14:47:01 +0100 | [diff] [blame] | 1051 | } |
| 1052 | return ret; |
| 1053 | } |
Michal Vasko | 1ce933a | 2020-03-30 12:38:22 +0200 | [diff] [blame] | 1054 | |
| 1055 | LY_ERR |
| 1056 | lyd_parse_xml_reply(const struct lyd_node *request, const char *data, struct lyd_node **tree, struct lyd_node **op) |
| 1057 | { |
| 1058 | LY_ERR ret = LY_SUCCESS; |
| 1059 | struct lyd_xml_ctx lydctx = {0}; |
Radek Krejci | b124784 | 2020-07-02 16:22:38 +0200 | [diff] [blame] | 1060 | struct lyd_node *rpcr_e = NULL, *iter, *req_op, *rep_op = NULL; |
Michal Vasko | 1ce933a | 2020-03-30 12:38:22 +0200 | [diff] [blame] | 1061 | |
| 1062 | /* init */ |
| 1063 | LY_CHECK_GOTO(ret = lyxml_ctx_new(LYD_NODE_CTX(request), data, &lydctx.xmlctx), cleanup); |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 1064 | lydctx.options = LYD_PARSE_ONLY | LYD_PARSE_STRICT; |
Michal Vasko | 1ce933a | 2020-03-30 12:38:22 +0200 | [diff] [blame] | 1065 | lydctx.int_opts = LYD_INTOPT_REPLY; |
| 1066 | *tree = NULL; |
| 1067 | if (op) { |
| 1068 | *op = NULL; |
| 1069 | } |
| 1070 | |
| 1071 | /* find request OP */ |
| 1072 | LYD_TREE_DFS_BEGIN((struct lyd_node *)request, iter, req_op) { |
| 1073 | if (req_op->schema->nodetype & (LYS_RPC | LYS_ACTION)) { |
| 1074 | break; |
| 1075 | } |
| 1076 | LYD_TREE_DFS_END(request, iter, req_op); |
| 1077 | } |
| 1078 | if (!(req_op->schema->nodetype & (LYS_RPC | LYS_ACTION))) { |
| 1079 | LOGERR(LYD_NODE_CTX(request), LY_EINVAL, "No RPC/action in the request found."); |
| 1080 | ret = LY_EINVAL; |
| 1081 | goto cleanup; |
| 1082 | } |
| 1083 | |
| 1084 | /* duplicate request OP with parents */ |
| 1085 | rep_op = lyd_dup(req_op, NULL, LYD_DUP_WITH_PARENTS); |
| 1086 | LY_CHECK_ERR_GOTO(!rep_op, ret = LY_EMEM, cleanup); |
| 1087 | |
| 1088 | /* parse "rpc-reply", if any */ |
| 1089 | LY_CHECK_GOTO(ret = lydxml_envelope(lydctx.xmlctx, "rpc-reply", "urn:ietf:params:xml:ns:netconf:base:1.0", &rpcr_e), cleanup); |
| 1090 | |
| 1091 | /* parse the rest of data normally but connect them to the duplicated operation */ |
| 1092 | LY_CHECK_GOTO(ret = lydxml_data_r(&lydctx, (struct lyd_node_inner *)rep_op, lyd_node_children_p(rep_op)), cleanup); |
| 1093 | |
| 1094 | /* finish XML parsing and check operation type */ |
| 1095 | if (rpcr_e) { |
| 1096 | if (lydctx.xmlctx->status != LYXML_ELEM_CLOSE) { |
| 1097 | assert(lydctx.xmlctx->status == LYXML_ELEMENT); |
| 1098 | LOGVAL(LYD_NODE_CTX(request), LY_VLOG_LINE, &lydctx.xmlctx->line, LYVE_SYNTAX, |
| 1099 | "Unexpected sibling element \"%.*s\" of \"rpc-reply\".", lydctx.xmlctx->name_len, lydctx.xmlctx->name); |
| 1100 | ret = LY_EVALID; |
| 1101 | goto cleanup; |
| 1102 | } |
| 1103 | LY_CHECK_GOTO(ret = lyxml_ctx_next(lydctx.xmlctx), cleanup); |
| 1104 | } |
| 1105 | |
| 1106 | if (op) { |
| 1107 | *op = rep_op; |
| 1108 | } |
| 1109 | for (iter = rep_op; iter->parent; iter = (struct lyd_node *)iter->parent); |
| 1110 | *tree = iter; |
| 1111 | if (rpcr_e) { |
| 1112 | /* connect to the operation */ |
| 1113 | lyd_insert_node(rpcr_e, NULL, *tree); |
| 1114 | *tree = rpcr_e; |
| 1115 | } |
| 1116 | |
| 1117 | cleanup: |
| 1118 | /* we have used parse_only flag */ |
| 1119 | assert(!lydctx.unres_node_type.count && !lydctx.unres_meta_type.count && !lydctx.when_check.count); |
| 1120 | lyxml_ctx_free(lydctx.xmlctx); |
| 1121 | if (ret) { |
| 1122 | lyd_free_all(rep_op); |
| 1123 | lyd_free_tree(rpcr_e); |
| 1124 | } |
| 1125 | return ret; |
| 1126 | } |