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> |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 4 | * @author Michal Vasko <mvasko@cesnet.cz> |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 5 | * @brief XML data parser for libyang |
| 6 | * |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 7 | * Copyright (c) 2019 - 2022 CESNET, z.s.p.o. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 8 | * |
| 9 | * This source code is licensed under BSD 3-Clause License (the "License"). |
| 10 | * You may not use this file except in compliance with the License. |
| 11 | * You may obtain a copy of the License at |
| 12 | * |
| 13 | * https://opensource.org/licenses/BSD-3-Clause |
| 14 | */ |
| 15 | |
Michal Vasko | 742a5b1 | 2022-02-24 16:07:27 +0100 | [diff] [blame] | 16 | #define _GNU_SOURCE |
| 17 | |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 18 | #include <assert.h> |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 19 | #include <stdint.h> |
| 20 | #include <stdlib.h> |
| 21 | #include <string.h> |
| 22 | |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 23 | #include "common.h" |
Michal Vasko | 742a5b1 | 2022-02-24 16:07:27 +0100 | [diff] [blame] | 24 | #include "compat.h" |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 25 | #include "context.h" |
Radek Krejci | 7711410 | 2021-03-10 15:21:57 +0100 | [diff] [blame] | 26 | #include "dict.h" |
Michal Vasko | afac782 | 2020-10-20 14:22:26 +0200 | [diff] [blame] | 27 | #include "in_internal.h" |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 28 | #include "log.h" |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 29 | #include "parser_data.h" |
| 30 | #include "parser_internal.h" |
tadeas-vintrlik | 2aa36b4 | 2021-11-03 13:07:34 +0100 | [diff] [blame] | 31 | #include "plugins_exts.h" |
Michal Vasko | 51de7b7 | 2022-04-29 09:50:22 +0200 | [diff] [blame] | 32 | #include "plugins_internal.h" |
| 33 | #include "schema_compile_node.h" |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 34 | #include "set.h" |
Radek Krejci | 7711410 | 2021-03-10 15:21:57 +0100 | [diff] [blame] | 35 | #include "tree.h" |
Radek Krejci | 47fab89 | 2020-11-05 17:02:41 +0100 | [diff] [blame] | 36 | #include "tree_data.h" |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 37 | #include "tree_data_internal.h" |
| 38 | #include "tree_schema.h" |
Radek Krejci | 7711410 | 2021-03-10 15:21:57 +0100 | [diff] [blame] | 39 | #include "tree_schema_internal.h" |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 40 | #include "validation.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 41 | #include "xml.h" |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 42 | |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 43 | void |
| 44 | lyd_xml_ctx_free(struct lyd_ctx *lydctx) |
| 45 | { |
| 46 | struct lyd_xml_ctx *ctx = (struct lyd_xml_ctx *)lydctx; |
| 47 | |
| 48 | lyd_ctx_free(lydctx); |
| 49 | lyxml_ctx_free(ctx->xmlctx); |
| 50 | free(ctx); |
| 51 | } |
| 52 | |
Michal Vasko | 45791ad | 2021-06-17 08:45:03 +0200 | [diff] [blame] | 53 | /** |
| 54 | * @brief Parse and create XML metadata. |
| 55 | * |
| 56 | * @param[in] lydctx XML data parser context. |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 57 | * @param[in] sparent Schema node of the parent. |
Michal Vasko | 45791ad | 2021-06-17 08:45:03 +0200 | [diff] [blame] | 58 | * @param[out] meta List of created metadata instances. |
| 59 | * @return LY_ERR value. |
| 60 | */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 61 | static LY_ERR |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 62 | lydxml_metadata(struct lyd_xml_ctx *lydctx, const struct lysc_node *sparent, struct lyd_meta **meta) |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 63 | { |
aPiecek | 1c4da36 | 2021-04-29 14:26:34 +0200 | [diff] [blame] | 64 | LY_ERR ret = LY_SUCCESS; |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 65 | const struct lyxml_ns *ns; |
| 66 | struct lys_module *mod; |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 67 | const char *name; |
| 68 | size_t name_len; |
Michal Vasko | 45791ad | 2021-06-17 08:45:03 +0200 | [diff] [blame] | 69 | LY_ARRAY_COUNT_TYPE u; |
| 70 | ly_bool filter_attrs = 0; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 71 | struct lyxml_ctx *xmlctx = lydctx->xmlctx; |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 72 | |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 73 | *meta = NULL; |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 74 | |
Michal Vasko | 45791ad | 2021-06-17 08:45:03 +0200 | [diff] [blame] | 75 | /* check for NETCONF filter unqualified attributes */ |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 76 | LY_ARRAY_FOR(sparent->exts, u) { |
| 77 | if (!strcmp(sparent->exts[u].def->name, "get-filter-element-attributes") && |
| 78 | !strcmp(sparent->exts[u].def->module->name, "ietf-netconf")) { |
Michal Vasko | 45791ad | 2021-06-17 08:45:03 +0200 | [diff] [blame] | 79 | filter_attrs = 1; |
| 80 | break; |
| 81 | } |
| 82 | } |
| 83 | |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 84 | while (xmlctx->status == LYXML_ATTRIBUTE) { |
| 85 | if (!xmlctx->prefix_len) { |
Michal Vasko | 45791ad | 2021-06-17 08:45:03 +0200 | [diff] [blame] | 86 | /* in XML all attributes must be prefixed except NETCONF filter ones marked by an extension */ |
| 87 | if (filter_attrs && (!ly_strncmp("type", xmlctx->name, xmlctx->name_len) || |
| 88 | !ly_strncmp("select", xmlctx->name, xmlctx->name_len))) { |
| 89 | mod = ly_ctx_get_module_implemented(xmlctx->ctx, "ietf-netconf"); |
| 90 | if (!mod) { |
| 91 | LOGVAL(xmlctx->ctx, LYVE_REFERENCE, |
| 92 | "Missing (or not implemented) YANG module \"ietf-netconf\" for special filter attributes."); |
| 93 | ret = LY_ENOTFOUND; |
| 94 | goto cleanup; |
| 95 | } |
| 96 | goto create_meta; |
| 97 | } |
| 98 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 99 | if (lydctx->parse_opts & LYD_PARSE_STRICT) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 100 | LOGVAL(xmlctx->ctx, LYVE_REFERENCE, "Missing mandatory prefix for XML metadata \"%.*s\".", |
Radek Krejci | 422afb1 | 2021-03-04 16:38:16 +0100 | [diff] [blame] | 101 | (int)xmlctx->name_len, xmlctx->name); |
Michal Vasko | 45791ad | 2021-06-17 08:45:03 +0200 | [diff] [blame] | 102 | ret = LY_EVALID; |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 103 | goto cleanup; |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 104 | } |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 105 | |
Michal Vasko | 45791ad | 2021-06-17 08:45:03 +0200 | [diff] [blame] | 106 | /* skip attr */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 107 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), cleanup); |
| 108 | assert(xmlctx->status == LYXML_ATTR_CONTENT); |
| 109 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), cleanup); |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 110 | continue; |
| 111 | } |
| 112 | |
| 113 | /* get namespace of the attribute to find its annotation definition */ |
Michal Vasko | c8a230d | 2020-08-14 12:17:10 +0200 | [diff] [blame] | 114 | ns = lyxml_ns_get(&xmlctx->ns, xmlctx->prefix, xmlctx->prefix_len); |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 115 | if (!ns) { |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 116 | /* unknown namespace, XML error */ |
Radek Krejci | 422afb1 | 2021-03-04 16:38:16 +0100 | [diff] [blame] | 117 | LOGVAL(xmlctx->ctx, LYVE_REFERENCE, "Unknown XML prefix \"%.*s\".", (int)xmlctx->prefix_len, xmlctx->prefix); |
Michal Vasko | 45791ad | 2021-06-17 08:45:03 +0200 | [diff] [blame] | 118 | ret = LY_ENOTFOUND; |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 119 | goto cleanup; |
| 120 | } |
Michal Vasko | 45791ad | 2021-06-17 08:45:03 +0200 | [diff] [blame] | 121 | |
| 122 | /* get the module with metadata definition */ |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 123 | mod = ly_ctx_get_module_implemented_ns(xmlctx->ctx, ns->uri); |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 124 | if (!mod) { |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 125 | if (lydctx->parse_opts & LYD_PARSE_STRICT) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 126 | LOGVAL(xmlctx->ctx, LYVE_REFERENCE, |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 127 | "Unknown (or not implemented) YANG module with namespace \"%s\" for metadata \"%.*s%s%.*s\".", |
Radek Krejci | 422afb1 | 2021-03-04 16:38:16 +0100 | [diff] [blame] | 128 | ns->uri, (int)xmlctx->prefix_len, xmlctx->prefix, xmlctx->prefix_len ? ":" : "", |
| 129 | (int)xmlctx->name_len, xmlctx->name); |
Michal Vasko | 45791ad | 2021-06-17 08:45:03 +0200 | [diff] [blame] | 130 | ret = LY_ENOTFOUND; |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 131 | goto cleanup; |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 132 | } |
Michal Vasko | 45791ad | 2021-06-17 08:45:03 +0200 | [diff] [blame] | 133 | |
| 134 | /* skip attr */ |
| 135 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), cleanup); |
| 136 | assert(xmlctx->status == LYXML_ATTR_CONTENT); |
| 137 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), cleanup); |
| 138 | continue; |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 139 | } |
| 140 | |
Michal Vasko | 45791ad | 2021-06-17 08:45:03 +0200 | [diff] [blame] | 141 | create_meta: |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 142 | /* remember meta name and get its content */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 143 | name = xmlctx->name; |
| 144 | name_len = xmlctx->name_len; |
| 145 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), cleanup); |
| 146 | assert(xmlctx->status == LYXML_ATTR_CONTENT); |
| 147 | |
| 148 | /* create metadata */ |
Michal Vasko | c8a230d | 2020-08-14 12:17:10 +0200 | [diff] [blame] | 149 | ret = lyd_parser_create_meta((struct lyd_ctx *)lydctx, NULL, meta, mod, name, name_len, xmlctx->value, |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 150 | xmlctx->value_len, &xmlctx->dynamic, LY_VALUE_XML, &xmlctx->ns, LYD_HINT_DATA, sparent); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 151 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 152 | |
| 153 | /* next attribute */ |
| 154 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), cleanup); |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 155 | } |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 156 | |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 157 | cleanup: |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 158 | if (ret) { |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 159 | lyd_free_meta_siblings(*meta); |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 160 | *meta = NULL; |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 161 | } |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 162 | return ret; |
| 163 | } |
| 164 | |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 165 | static LY_ERR |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 166 | lydxml_attrs(struct lyxml_ctx *xmlctx, struct lyd_attr **attr) |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 167 | { |
| 168 | LY_ERR ret = LY_SUCCESS; |
| 169 | const struct lyxml_ns *ns; |
Michal Vasko | 6b5cb2a | 2020-11-11 19:11:21 +0100 | [diff] [blame] | 170 | void *val_prefix_data; |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 171 | LY_VALUE_FORMAT format; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 172 | struct lyd_attr *attr2; |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 173 | const char *name, *prefix; |
| 174 | size_t name_len, prefix_len; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 175 | |
| 176 | assert(attr); |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 177 | *attr = NULL; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 178 | |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 179 | while (xmlctx->status == LYXML_ATTRIBUTE) { |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 180 | if (*attr) { |
| 181 | attr2 = *attr; |
| 182 | } else { |
| 183 | attr2 = NULL; |
| 184 | } |
| 185 | |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 186 | /* remember attr prefix, name, and get its content */ |
| 187 | prefix = xmlctx->prefix; |
| 188 | prefix_len = xmlctx->prefix_len; |
| 189 | name = xmlctx->name; |
| 190 | name_len = xmlctx->name_len; |
| 191 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), cleanup); |
| 192 | assert(xmlctx->status == LYXML_ATTR_CONTENT); |
| 193 | |
Michal Vasko | e137fc4 | 2021-07-22 11:53:13 +0200 | [diff] [blame] | 194 | /* handle special "xml" attribute prefix */ |
| 195 | if ((prefix_len == 3) && !strncmp(prefix, "xml", 3)) { |
| 196 | name = prefix; |
| 197 | name_len += 1 + prefix_len; |
| 198 | prefix = NULL; |
| 199 | prefix_len = 0; |
| 200 | } |
| 201 | |
| 202 | /* find namespace of the attribute, if any */ |
| 203 | ns = NULL; |
| 204 | if (prefix_len) { |
| 205 | ns = lyxml_ns_get(&xmlctx->ns, prefix, prefix_len); |
| 206 | if (!ns) { |
| 207 | LOGVAL(xmlctx->ctx, LYVE_REFERENCE, "Unknown XML prefix \"%.*s\".", (int)prefix_len, prefix); |
| 208 | ret = LY_EVALID; |
| 209 | goto cleanup; |
| 210 | } |
| 211 | } |
| 212 | |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 213 | /* get value prefixes */ |
Michal Vasko | fc2cd07 | 2021-02-24 13:17:17 +0100 | [diff] [blame] | 214 | val_prefix_data = NULL; |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 215 | LY_CHECK_GOTO(ret = ly_store_prefix_data(xmlctx->ctx, xmlctx->value, xmlctx->value_len, LY_VALUE_XML, |
Michal Vasko | 6b5cb2a | 2020-11-11 19:11:21 +0100 | [diff] [blame] | 216 | &xmlctx->ns, &format, &val_prefix_data), cleanup); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 217 | |
| 218 | /* attr2 is always changed to the created attribute */ |
Michal Vasko | 501af03 | 2020-11-11 20:27:44 +0100 | [diff] [blame] | 219 | ret = lyd_create_attr(NULL, &attr2, xmlctx->ctx, name, name_len, prefix, prefix_len, ns ? ns->uri : NULL, |
Michal Vasko | e5e49e9 | 2022-02-01 13:15:08 +0100 | [diff] [blame] | 220 | ns ? strlen(ns->uri) : 0, xmlctx->value, xmlctx->value_len, &xmlctx->dynamic, format, val_prefix_data, |
| 221 | LYD_HINT_DATA); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 222 | LY_CHECK_GOTO(ret, cleanup); |
| 223 | |
| 224 | if (!*attr) { |
| 225 | *attr = attr2; |
| 226 | } |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 227 | |
| 228 | /* next attribute */ |
| 229 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), cleanup); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 230 | } |
| 231 | |
| 232 | cleanup: |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 233 | if (ret) { |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 234 | lyd_free_attr_siblings(xmlctx->ctx, *attr); |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 235 | *attr = NULL; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 236 | } |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 237 | return ret; |
| 238 | } |
| 239 | |
Michal Vasko | 44685da | 2020-03-17 15:38:06 +0100 | [diff] [blame] | 240 | static LY_ERR |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 241 | lydxml_check_list(struct lyxml_ctx *xmlctx, const struct lysc_node *list) |
Michal Vasko | 44685da | 2020-03-17 15:38:06 +0100 | [diff] [blame] | 242 | { |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 243 | LY_ERR ret = LY_SUCCESS, r; |
| 244 | enum LYXML_PARSER_STATUS next; |
Michal Vasko | 44685da | 2020-03-17 15:38:06 +0100 | [diff] [blame] | 245 | struct ly_set key_set = {0}; |
| 246 | const struct lysc_node *snode; |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 247 | uint32_t i, parents_count; |
Michal Vasko | 44685da | 2020-03-17 15:38:06 +0100 | [diff] [blame] | 248 | |
| 249 | assert(list && (list->nodetype == LYS_LIST)); |
| 250 | |
| 251 | /* get all keys into a set (keys do not have if-features or anything) */ |
| 252 | snode = NULL; |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 253 | while ((snode = lys_getnext(snode, list, NULL, 0)) && (snode->flags & LYS_KEY)) { |
Radek Krejci | 3d92e44 | 2020-10-12 12:48:13 +0200 | [diff] [blame] | 254 | ret = ly_set_add(&key_set, (void *)snode, 1, NULL); |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 255 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | 44685da | 2020-03-17 15:38:06 +0100 | [diff] [blame] | 256 | } |
| 257 | |
Michal Vasko | 12d809c | 2021-03-03 16:34:32 +0100 | [diff] [blame] | 258 | /* remember parent count */ |
| 259 | parents_count = xmlctx->elements.count; |
| 260 | |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 261 | while (xmlctx->status == LYXML_ELEMENT) { |
Michal Vasko | 44685da | 2020-03-17 15:38:06 +0100 | [diff] [blame] | 262 | /* find key definition */ |
| 263 | for (i = 0; i < key_set.count; ++i) { |
| 264 | snode = (const struct lysc_node *)key_set.objs[i]; |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 265 | if (!ly_strncmp(snode->name, xmlctx->name, xmlctx->name_len)) { |
Michal Vasko | 44685da | 2020-03-17 15:38:06 +0100 | [diff] [blame] | 266 | break; |
| 267 | } |
| 268 | } |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 269 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), cleanup); |
Michal Vasko | 44685da | 2020-03-17 15:38:06 +0100 | [diff] [blame] | 270 | |
| 271 | /* skip attributes */ |
| 272 | while (xmlctx->status == LYXML_ATTRIBUTE) { |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 273 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), cleanup); |
| 274 | assert(xmlctx->status == LYXML_ATTR_CONTENT); |
| 275 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), cleanup); |
Michal Vasko | 44685da | 2020-03-17 15:38:06 +0100 | [diff] [blame] | 276 | } |
| 277 | |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 278 | assert(xmlctx->status == LYXML_ELEM_CONTENT); |
| 279 | if (i < key_set.count) { |
| 280 | /* validate the value */ |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 281 | r = lys_value_validate(NULL, snode, xmlctx->value, xmlctx->value_len, LY_VALUE_XML, &xmlctx->ns); |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 282 | if (!r) { |
| 283 | /* key with a valid value, remove from the set */ |
| 284 | ly_set_rm_index(&key_set, i, NULL); |
Michal Vasko | 44685da | 2020-03-17 15:38:06 +0100 | [diff] [blame] | 285 | } |
| 286 | } |
| 287 | |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 288 | /* parser next */ |
| 289 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), cleanup); |
Michal Vasko | 44685da | 2020-03-17 15:38:06 +0100 | [diff] [blame] | 290 | |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 291 | /* skip any children, resursively */ |
Michal Vasko | 12d809c | 2021-03-03 16:34:32 +0100 | [diff] [blame] | 292 | while (xmlctx->status == LYXML_ELEMENT) { |
| 293 | while (parents_count < xmlctx->elements.count) { |
| 294 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), cleanup); |
| 295 | } |
| 296 | assert(xmlctx->status == LYXML_ELEM_CLOSE); |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 297 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), cleanup); |
| 298 | } |
| 299 | |
| 300 | /* parser next, but do not parse closing element of the list because it would remove its namespaces */ |
| 301 | assert(xmlctx->status == LYXML_ELEM_CLOSE); |
| 302 | LY_CHECK_GOTO(ret = lyxml_ctx_peek(xmlctx, &next), cleanup); |
| 303 | if (next != LYXML_ELEM_CLOSE) { |
| 304 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), cleanup); |
| 305 | } |
Michal Vasko | 44685da | 2020-03-17 15:38:06 +0100 | [diff] [blame] | 306 | } |
| 307 | |
| 308 | if (key_set.count) { |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 309 | /* some keys are missing/did not validate */ |
Michal Vasko | 44685da | 2020-03-17 15:38:06 +0100 | [diff] [blame] | 310 | ret = LY_ENOT; |
Michal Vasko | 44685da | 2020-03-17 15:38:06 +0100 | [diff] [blame] | 311 | } |
| 312 | |
| 313 | cleanup: |
| 314 | ly_set_erase(&key_set, NULL); |
| 315 | return ret; |
| 316 | } |
| 317 | |
Michal Vasko | 5c24ed1 | 2021-06-09 09:27:32 +0200 | [diff] [blame] | 318 | /** |
| 319 | * @brief Skip an element with all its descendants. |
| 320 | * |
| 321 | * @param[in] xmlctx XML parser context. |
| 322 | * @return LY_ERR value. |
| 323 | */ |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 324 | static LY_ERR |
| 325 | lydxml_data_skip(struct lyxml_ctx *xmlctx) |
| 326 | { |
| 327 | uint32_t parents_count; |
| 328 | |
| 329 | /* remember current number of parents */ |
| 330 | parents_count = xmlctx->elements.count; |
aPiecek | 9cdb9e6 | 2021-05-18 09:46:20 +0200 | [diff] [blame] | 331 | assert(parents_count); |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 332 | |
| 333 | /* skip after the content */ |
| 334 | while (xmlctx->status != LYXML_ELEM_CONTENT) { |
| 335 | LY_CHECK_RET(lyxml_ctx_next(xmlctx)); |
| 336 | } |
| 337 | LY_CHECK_RET(lyxml_ctx_next(xmlctx)); |
| 338 | |
| 339 | /* skip all children elements, recursively, if any */ |
aPiecek | 9cdb9e6 | 2021-05-18 09:46:20 +0200 | [diff] [blame] | 340 | while (parents_count <= xmlctx->elements.count) { |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 341 | LY_CHECK_RET(lyxml_ctx_next(xmlctx)); |
| 342 | } |
| 343 | |
| 344 | /* close element */ |
| 345 | assert(xmlctx->status == LYXML_ELEM_CLOSE); |
| 346 | LY_CHECK_RET(lyxml_ctx_next(xmlctx)); |
| 347 | |
| 348 | return LY_SUCCESS; |
| 349 | } |
| 350 | |
Michal Vasko | 5c24ed1 | 2021-06-09 09:27:32 +0200 | [diff] [blame] | 351 | /** |
| 352 | * @brief Check that the current element can be parsed as a data node. |
| 353 | * |
| 354 | * @param[in] lydctx XML data parser context. |
| 355 | * @param[in,out] snode Found schema node, set to NULL if data node cannot be created. |
| 356 | * @return LY_ERR value. |
| 357 | */ |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 358 | static LY_ERR |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 359 | lydxml_data_check_opaq(struct lyd_xml_ctx *lydctx, const struct lysc_node **snode) |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 360 | { |
| 361 | LY_ERR ret = LY_SUCCESS; |
Michal Vasko | da8fbbf | 2021-06-16 11:44:44 +0200 | [diff] [blame] | 362 | struct lyxml_ctx *xmlctx = lydctx->xmlctx, pxmlctx; |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 363 | |
Radek IÅ¡a | 3930fd7 | 2021-03-08 10:48:40 +0100 | [diff] [blame] | 364 | if (!(lydctx->parse_opts & LYD_PARSE_OPAQ)) { |
| 365 | /* only checks specific to opaque nodes */ |
| 366 | return LY_SUCCESS; |
| 367 | } |
| 368 | |
Michal Vasko | 1385466 | 2021-06-09 09:27:50 +0200 | [diff] [blame] | 369 | if (!((*snode)->nodetype & (LYD_NODE_TERM | LYD_NODE_INNER))) { |
| 370 | /* nothing to check */ |
| 371 | return LY_SUCCESS; |
| 372 | } |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 373 | |
Michal Vasko | da8fbbf | 2021-06-16 11:44:44 +0200 | [diff] [blame] | 374 | assert(xmlctx->elements.count); |
| 375 | |
Michal Vasko | 1385466 | 2021-06-09 09:27:50 +0200 | [diff] [blame] | 376 | /* backup parser */ |
Michal Vasko | da8fbbf | 2021-06-16 11:44:44 +0200 | [diff] [blame] | 377 | LY_CHECK_RET(lyxml_ctx_backup(xmlctx, &pxmlctx)); |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 378 | |
Michal Vasko | 1385466 | 2021-06-09 09:27:50 +0200 | [diff] [blame] | 379 | /* skip attributes */ |
| 380 | while (xmlctx->status == LYXML_ATTRIBUTE) { |
| 381 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), restore); |
| 382 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), restore); |
| 383 | } |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 384 | |
Michal Vasko | 1385466 | 2021-06-09 09:27:50 +0200 | [diff] [blame] | 385 | if ((*snode)->nodetype & LYD_NODE_TERM) { |
| 386 | /* value may not be valid in which case we parse it as an opaque node */ |
| 387 | if (lys_value_validate(NULL, *snode, xmlctx->value, xmlctx->value_len, LY_VALUE_XML, &xmlctx->ns)) { |
Michal Vasko | d0237d4 | 2021-07-12 14:49:46 +0200 | [diff] [blame] | 388 | LOGVRB("Parsing opaque term node \"%s\" with invalid value \"%.*s\".", (*snode)->name, xmlctx->value_len, |
| 389 | xmlctx->value); |
Michal Vasko | 1385466 | 2021-06-09 09:27:50 +0200 | [diff] [blame] | 390 | *snode = NULL; |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 391 | } |
Michal Vasko | 1385466 | 2021-06-09 09:27:50 +0200 | [diff] [blame] | 392 | } else if ((*snode)->nodetype == LYS_LIST) { |
| 393 | /* skip content */ |
| 394 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), restore); |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 395 | |
Michal Vasko | 1385466 | 2021-06-09 09:27:50 +0200 | [diff] [blame] | 396 | if (lydxml_check_list(xmlctx, *snode)) { |
| 397 | /* invalid list, parse as opaque if it missing/has invalid some keys */ |
Michal Vasko | d0237d4 | 2021-07-12 14:49:46 +0200 | [diff] [blame] | 398 | LOGVRB("Parsing opaque list node \"%s\" with missing/invalid keys.", (*snode)->name); |
Michal Vasko | 1385466 | 2021-06-09 09:27:50 +0200 | [diff] [blame] | 399 | *snode = NULL; |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 400 | } |
Michal Vasko | 1385466 | 2021-06-09 09:27:50 +0200 | [diff] [blame] | 401 | } else { |
Radek IÅ¡a | 3930fd7 | 2021-03-08 10:48:40 +0100 | [diff] [blame] | 402 | /* if there is a non-WS value, it cannot be parsed as an inner node */ |
| 403 | assert(xmlctx->status == LYXML_ELEM_CONTENT); |
| 404 | if (!xmlctx->ws_only) { |
| 405 | *snode = NULL; |
| 406 | } |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 407 | } |
| 408 | |
Michal Vasko | 1385466 | 2021-06-09 09:27:50 +0200 | [diff] [blame] | 409 | restore: |
| 410 | /* restore parser */ |
Michal Vasko | da8fbbf | 2021-06-16 11:44:44 +0200 | [diff] [blame] | 411 | lyxml_ctx_restore(xmlctx, &pxmlctx); |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 412 | return ret; |
| 413 | } |
| 414 | |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 415 | /** |
Michal Vasko | cea5871 | 2022-04-01 14:37:08 +0200 | [diff] [blame] | 416 | * @brief Get sensible data hints for an opaque node. |
| 417 | * |
| 418 | * @param[in] name Node name. |
| 419 | * @param[in] name_len Length of @p name. |
| 420 | * @param[in] value Node value. |
| 421 | * @param[in] value_len Length of @p value. |
| 422 | * @param[in] first Node first sibling. |
| 423 | * @param[in] ns Node module namespace. |
| 424 | * @param[out] hints Data hints to use. |
| 425 | * @param[out] anchor Anchor to insert after in case of a list. |
| 426 | */ |
| 427 | static void |
| 428 | lydxml_get_hints_opaq(const char *name, size_t name_len, const char *value, size_t value_len, struct lyd_node *first, |
| 429 | const char *ns, uint32_t *hints, struct lyd_node **anchor) |
| 430 | { |
| 431 | struct lyd_node_opaq *opaq; |
| 432 | char *ptr; |
| 433 | long num; |
| 434 | |
| 435 | *hints = 0; |
| 436 | *anchor = NULL; |
| 437 | |
| 438 | if (!value_len) { |
| 439 | /* no value */ |
| 440 | *hints |= LYD_VALHINT_EMPTY; |
| 441 | } else if (!strncmp(value, "true", value_len) || !strncmp(value, "false", value_len)) { |
| 442 | /* boolean value */ |
| 443 | *hints |= LYD_VALHINT_BOOLEAN; |
| 444 | } else { |
| 445 | num = strtol(value, &ptr, 10); |
| 446 | if ((unsigned)(ptr - value) == value_len) { |
| 447 | /* number value */ |
| 448 | *hints |= LYD_VALHINT_DECNUM; |
| 449 | if ((num < INT32_MIN) || (num > UINT32_MAX)) { |
| 450 | /* large number */ |
| 451 | *hints |= LYD_VALHINT_NUM64; |
| 452 | } |
| 453 | } else { |
| 454 | /* string value */ |
| 455 | *hints |= LYD_VALHINT_STRING; |
| 456 | } |
| 457 | } |
| 458 | |
| 459 | if (!first) { |
| 460 | return; |
| 461 | } |
| 462 | |
| 463 | /* search backwards to find the last instance */ |
| 464 | do { |
| 465 | first = first->prev; |
| 466 | if (first->schema) { |
| 467 | continue; |
| 468 | } |
| 469 | |
| 470 | opaq = (struct lyd_node_opaq *)first; |
| 471 | assert(opaq->format == LY_VALUE_XML); |
| 472 | if (!ly_strncmp(opaq->name.name, name, name_len) && !strcmp(opaq->name.module_ns, ns)) { |
| 473 | if (opaq->value && opaq->value[0]) { |
| 474 | /* leaf-list nodes */ |
| 475 | opaq->hints |= LYD_NODEHINT_LEAFLIST; |
| 476 | *hints |= LYD_NODEHINT_LEAFLIST; |
| 477 | } else { |
| 478 | /* list nodes */ |
| 479 | opaq->hints |= LYD_NODEHINT_LIST; |
| 480 | *hints |= LYD_NODEHINT_LIST; |
| 481 | } |
| 482 | *anchor = first; |
| 483 | break; |
| 484 | } |
| 485 | } while (first->prev->next); |
| 486 | } |
| 487 | |
| 488 | /** |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 489 | * @brief Get schema node for the current element. |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 490 | * |
| 491 | * @param[in] lydctx XML data parser context. |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 492 | * @param[in] parent Parsed parent data node, if any. |
| 493 | * @param[in] prefix Element prefix, if any. |
| 494 | * @param[in] prefix_len Length of @p prefix. |
| 495 | * @param[in] name Element name. |
| 496 | * @param[in] name_len Length of @p name. |
| 497 | * @param[out] snode Found schema node, NULL if no suitable was found. |
| 498 | * @param[out] ext Extension instance that provided @p snode, if any. |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 499 | * @return LY_SUCCESS on success; |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 500 | * @return LY_ERR on error. |
| 501 | */ |
| 502 | static LY_ERR |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 503 | lydxml_subtree_snode(struct lyd_xml_ctx *lydctx, const struct lyd_node *parent, const char *prefix, size_t prefix_len, |
| 504 | const char *name, size_t name_len, const struct lysc_node **snode, struct lysc_ext_instance **ext) |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 505 | { |
| 506 | LY_ERR r; |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 507 | struct lyxml_ctx *xmlctx; |
| 508 | const struct ly_ctx *ctx; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 509 | const struct lyxml_ns *ns; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 510 | struct lys_module *mod; |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 511 | uint32_t getnext_opts; |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 512 | |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 513 | xmlctx = lydctx->xmlctx; |
| 514 | ctx = xmlctx->ctx; |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 515 | getnext_opts = lydctx->int_opts & LYD_INTOPT_REPLY ? LYS_GETNEXT_OUTPUT : 0; |
Michal Vasko | 6f4cbb6 | 2020-02-28 11:15:47 +0100 | [diff] [blame] | 516 | |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 517 | *snode = NULL; |
| 518 | *ext = NULL; |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 519 | |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 520 | /* get current namespace */ |
Michal Vasko | c8a230d | 2020-08-14 12:17:10 +0200 | [diff] [blame] | 521 | ns = lyxml_ns_get(&xmlctx->ns, prefix, prefix_len); |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 522 | if (!ns) { |
Radek Krejci | 422afb1 | 2021-03-04 16:38:16 +0100 | [diff] [blame] | 523 | LOGVAL(ctx, LYVE_REFERENCE, "Unknown XML prefix \"%.*s\".", (int)prefix_len, prefix); |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 524 | return LY_EVALID; |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 525 | } |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 526 | |
| 527 | /* get the element module, use parent context if possible because of extensions */ |
| 528 | mod = ly_ctx_get_module_implemented_ns(parent ? LYD_CTX(parent) : ctx, ns->uri); |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 529 | if (!mod) { |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 530 | /* check for extension data */ |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 531 | r = ly_nested_ext_schema(parent, NULL, prefix, prefix_len, LY_VALUE_XML, &lydctx->xmlctx->ns, name, name_len, |
| 532 | snode, ext); |
| 533 | if (r != LY_ENOT) { |
| 534 | /* success or error */ |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 535 | return r; |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 536 | } |
| 537 | |
| 538 | /* unknown module */ |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 539 | if (lydctx->parse_opts & LYD_PARSE_STRICT) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 540 | LOGVAL(ctx, LYVE_REFERENCE, "No module with namespace \"%s\" in the context.", ns->uri); |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 541 | return LY_EVALID; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 542 | } |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 543 | return LY_SUCCESS; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 544 | } |
| 545 | |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 546 | /* get the schema node */ |
Michal Vasko | 81008a5 | 2021-07-21 16:06:12 +0200 | [diff] [blame] | 547 | if (mod) { |
Radek Krejci | f16e254 | 2021-02-17 15:39:23 +0100 | [diff] [blame] | 548 | if (!parent && lydctx->ext) { |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 549 | *snode = lysc_ext_find_node(lydctx->ext, mod, name, name_len, 0, getnext_opts); |
Radek Krejci | f16e254 | 2021-02-17 15:39:23 +0100 | [diff] [blame] | 550 | } else { |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 551 | *snode = lys_find_child(parent ? parent->schema : NULL, mod, name, name_len, 0, getnext_opts); |
Radek Krejci | f16e254 | 2021-02-17 15:39:23 +0100 | [diff] [blame] | 552 | } |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 553 | if (!*snode) { |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 554 | /* check for extension data */ |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 555 | r = ly_nested_ext_schema(parent, NULL, prefix, prefix_len, LY_VALUE_XML, &lydctx->xmlctx->ns, name, |
| 556 | name_len, snode, ext); |
| 557 | if (r != LY_ENOT) { |
| 558 | /* success or error */ |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 559 | return r; |
tadeas-vintrlik | 2aa36b4 | 2021-11-03 13:07:34 +0100 | [diff] [blame] | 560 | } |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 561 | |
| 562 | /* unknown data node */ |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 563 | if (lydctx->parse_opts & LYD_PARSE_STRICT) { |
| 564 | if (parent) { |
Radek Krejci | 422afb1 | 2021-03-04 16:38:16 +0100 | [diff] [blame] | 565 | LOGVAL(ctx, LYVE_REFERENCE, "Node \"%.*s\" not found as a child of \"%s\" node.", |
Michal Vasko | 61ad1ff | 2022-02-10 15:48:39 +0100 | [diff] [blame] | 566 | (int)name_len, name, LYD_NAME(parent)); |
Radek Krejci | f16e254 | 2021-02-17 15:39:23 +0100 | [diff] [blame] | 567 | } else if (lydctx->ext) { |
| 568 | if (lydctx->ext->argument) { |
Radek Krejci | 422afb1 | 2021-03-04 16:38:16 +0100 | [diff] [blame] | 569 | LOGVAL(ctx, LYVE_REFERENCE, "Node \"%.*s\" not found in the \"%s\" %s extension instance.", |
| 570 | (int)name_len, name, lydctx->ext->argument, lydctx->ext->def->name); |
Radek Krejci | f16e254 | 2021-02-17 15:39:23 +0100 | [diff] [blame] | 571 | } else { |
Radek Krejci | 422afb1 | 2021-03-04 16:38:16 +0100 | [diff] [blame] | 572 | LOGVAL(ctx, LYVE_REFERENCE, "Node \"%.*s\" not found in the %s extension instance.", |
| 573 | (int)name_len, name, lydctx->ext->def->name); |
Radek Krejci | f16e254 | 2021-02-17 15:39:23 +0100 | [diff] [blame] | 574 | } |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 575 | } else { |
Radek Krejci | 422afb1 | 2021-03-04 16:38:16 +0100 | [diff] [blame] | 576 | LOGVAL(ctx, LYVE_REFERENCE, "Node \"%.*s\" not found in the \"%s\" module.", |
| 577 | (int)name_len, name, mod->name); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 578 | } |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 579 | return LY_EVALID; |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 580 | } |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 581 | return LY_SUCCESS; |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 582 | } else { |
| 583 | /* check that schema node is valid and can be used */ |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 584 | LY_CHECK_RET(lyd_parser_check_schema((struct lyd_ctx *)lydctx, *snode)); |
| 585 | LY_CHECK_RET(lydxml_data_check_opaq(lydctx, snode)); |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 586 | } |
| 587 | } |
| 588 | |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 589 | return LY_SUCCESS; |
| 590 | } |
| 591 | |
| 592 | /** |
| 593 | * @brief Parse XML subtree. |
| 594 | * |
| 595 | * @param[in] lydctx XML YANG data parser context. |
| 596 | * @param[in,out] parent Parent node where the children are inserted. NULL in case of parsing top-level elements. |
| 597 | * @param[in,out] first_p Pointer to the first (@p parent or top-level) child. In case there were already some siblings, |
| 598 | * this may point to a previously existing node. |
| 599 | * @param[in,out] parsed Optional set to add all the parsed siblings into. |
| 600 | * @return LY_ERR value. |
| 601 | */ |
| 602 | static LY_ERR |
| 603 | lydxml_subtree_r(struct lyd_xml_ctx *lydctx, struct lyd_node *parent, struct lyd_node **first_p, struct ly_set *parsed) |
| 604 | { |
| 605 | LY_ERR ret = LY_SUCCESS; |
| 606 | const char *prefix, *name; |
| 607 | size_t prefix_len, name_len; |
| 608 | struct lyxml_ctx *xmlctx; |
| 609 | const struct ly_ctx *ctx; |
| 610 | const struct lyxml_ns *ns; |
| 611 | struct lyd_meta *meta = NULL; |
| 612 | struct lyd_attr *attr = NULL; |
| 613 | const struct lysc_node *snode; |
| 614 | struct lysc_ext_instance *ext; |
Michal Vasko | cea5871 | 2022-04-01 14:37:08 +0200 | [diff] [blame] | 615 | uint32_t prev_parse_opts, orig_parse_opts, prev_int_opts, hints; |
| 616 | struct lyd_node *node = NULL, *anchor, *insert_anchor = NULL; |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 617 | void *val_prefix_data = NULL; |
| 618 | LY_VALUE_FORMAT format; |
| 619 | ly_bool parse_subtree; |
| 620 | char *val; |
| 621 | |
| 622 | assert(parent || first_p); |
| 623 | |
| 624 | xmlctx = lydctx->xmlctx; |
| 625 | ctx = xmlctx->ctx; |
| 626 | |
| 627 | parse_subtree = lydctx->parse_opts & LYD_PARSE_SUBTREE ? 1 : 0; |
| 628 | /* all descendants should be parsed */ |
| 629 | lydctx->parse_opts &= ~LYD_PARSE_SUBTREE; |
| 630 | orig_parse_opts = lydctx->parse_opts; |
| 631 | |
| 632 | assert(xmlctx->status == LYXML_ELEMENT); |
| 633 | |
| 634 | /* remember element prefix and name */ |
| 635 | prefix = xmlctx->prefix; |
| 636 | prefix_len = xmlctx->prefix_len; |
| 637 | name = xmlctx->name; |
| 638 | name_len = xmlctx->name_len; |
| 639 | |
| 640 | /* parser next */ |
| 641 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), error); |
| 642 | |
| 643 | /* get the schema node */ |
| 644 | LY_CHECK_GOTO(ret = lydxml_subtree_snode(lydctx, parent, prefix, prefix_len, name, name_len, &snode, &ext), error); |
| 645 | |
| 646 | if (!snode && !(lydctx->parse_opts & LYD_PARSE_OPAQ)) { |
| 647 | LOGVRB("Skipping parsing of unknown node \"%.*s\".", name_len, name); |
| 648 | |
| 649 | /* skip element with children */ |
| 650 | LY_CHECK_GOTO(ret = lydxml_data_skip(xmlctx), error); |
| 651 | return LY_SUCCESS; |
| 652 | } |
| 653 | |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 654 | /* create metadata/attributes */ |
| 655 | if (xmlctx->status == LYXML_ATTRIBUTE) { |
| 656 | if (snode) { |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 657 | ret = lydxml_metadata(lydctx, snode, &meta); |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 658 | LY_CHECK_GOTO(ret, error); |
| 659 | } else { |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 660 | assert(lydctx->parse_opts & LYD_PARSE_OPAQ); |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 661 | ret = lydxml_attrs(xmlctx, &attr); |
| 662 | LY_CHECK_GOTO(ret, error); |
| 663 | } |
| 664 | } |
| 665 | |
| 666 | assert(xmlctx->status == LYXML_ELEM_CONTENT); |
| 667 | if (!snode) { |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 668 | assert(lydctx->parse_opts & LYD_PARSE_OPAQ); |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 669 | |
| 670 | if (xmlctx->ws_only) { |
| 671 | /* ignore WS-only value */ |
Radek IÅ¡a | 017270d | 2021-02-16 10:26:15 +0100 | [diff] [blame] | 672 | if (xmlctx->dynamic) { |
Michal Vasko | cea5871 | 2022-04-01 14:37:08 +0200 | [diff] [blame] | 673 | free((char *)xmlctx->value); |
Radek IÅ¡a | 017270d | 2021-02-16 10:26:15 +0100 | [diff] [blame] | 674 | } |
| 675 | xmlctx->dynamic = 0; |
| 676 | xmlctx->value = ""; |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 677 | xmlctx->value_len = 0; |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 678 | format = LY_VALUE_XML; |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 679 | } else { |
| 680 | /* get value prefixes */ |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 681 | ret = ly_store_prefix_data(xmlctx->ctx, xmlctx->value, xmlctx->value_len, LY_VALUE_XML, |
Michal Vasko | 6b5cb2a | 2020-11-11 19:11:21 +0100 | [diff] [blame] | 682 | &xmlctx->ns, &format, &val_prefix_data); |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 683 | LY_CHECK_GOTO(ret, error); |
| 684 | } |
| 685 | |
Michal Vasko | da8fbbf | 2021-06-16 11:44:44 +0200 | [diff] [blame] | 686 | /* get NS again, it may have been backed up and restored */ |
| 687 | ns = lyxml_ns_get(&xmlctx->ns, prefix, prefix_len); |
| 688 | assert(ns); |
| 689 | |
Michal Vasko | cea5871 | 2022-04-01 14:37:08 +0200 | [diff] [blame] | 690 | /* get best-effort node hints */ |
| 691 | lydxml_get_hints_opaq(name, name_len, xmlctx->value, xmlctx->value_len, parent ? lyd_child(parent) : *first_p, |
| 692 | ns->uri, &hints, &insert_anchor); |
| 693 | |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 694 | /* create node */ |
Michal Vasko | 501af03 | 2020-11-11 20:27:44 +0100 | [diff] [blame] | 695 | ret = lyd_create_opaq(ctx, name, name_len, prefix, prefix_len, ns->uri, strlen(ns->uri), xmlctx->value, |
Michal Vasko | cea5871 | 2022-04-01 14:37:08 +0200 | [diff] [blame] | 696 | xmlctx->value_len, &xmlctx->dynamic, format, val_prefix_data, hints, &node); |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 697 | LY_CHECK_GOTO(ret, error); |
| 698 | |
| 699 | /* parser next */ |
| 700 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), error); |
| 701 | |
| 702 | /* process children */ |
| 703 | while (xmlctx->status == LYXML_ELEMENT) { |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 704 | ret = lydxml_subtree_r(lydctx, node, lyd_node_child_p(node), NULL); |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 705 | LY_CHECK_GOTO(ret, error); |
| 706 | } |
| 707 | } else if (snode->nodetype & LYD_NODE_TERM) { |
| 708 | /* create node */ |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 709 | LY_CHECK_GOTO(ret = lyd_parser_create_term((struct lyd_ctx *)lydctx, snode, xmlctx->value, xmlctx->value_len, |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 710 | &xmlctx->dynamic, LY_VALUE_XML, &xmlctx->ns, LYD_HINT_DATA, &node), error); |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 711 | LOG_LOCSET(snode, node, NULL, NULL); |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 712 | |
| 713 | if (parent && (node->schema->flags & LYS_KEY)) { |
| 714 | /* check the key order, the anchor must never be a key */ |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 715 | anchor = lyd_insert_get_next_anchor(lyd_child(parent), node); |
Michal Vasko | 441e0fa | 2022-03-03 13:45:00 +0100 | [diff] [blame] | 716 | if (anchor && anchor->schema && (anchor->schema->flags & LYS_KEY)) { |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 717 | if (lydctx->parse_opts & LYD_PARSE_STRICT) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 718 | LOGVAL(ctx, LYVE_DATA, "Invalid position of the key \"%s\" in a list.", node->schema->name); |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 719 | ret = LY_EVALID; |
| 720 | goto error; |
| 721 | } else { |
| 722 | LOGWRN(ctx, "Invalid position of the key \"%s\" in a list.", node->schema->name); |
| 723 | } |
| 724 | } |
| 725 | } |
| 726 | |
| 727 | /* parser next */ |
| 728 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), error); |
| 729 | |
| 730 | /* no children expected */ |
| 731 | if (xmlctx->status == LYXML_ELEMENT) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 732 | LOGVAL(ctx, LYVE_SYNTAX, "Child element \"%.*s\" inside a terminal node \"%s\" found.", |
Radek Krejci | 422afb1 | 2021-03-04 16:38:16 +0100 | [diff] [blame] | 733 | (int)xmlctx->name_len, xmlctx->name, snode->name); |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 734 | ret = LY_EVALID; |
| 735 | goto error; |
| 736 | } |
| 737 | } else if (snode->nodetype & LYD_NODE_INNER) { |
| 738 | if (!xmlctx->ws_only) { |
| 739 | /* value in inner node */ |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 740 | LOGVAL(ctx, LYVE_SYNTAX, "Text value \"%.*s\" inside an inner node \"%s\" found.", |
Radek Krejci | 422afb1 | 2021-03-04 16:38:16 +0100 | [diff] [blame] | 741 | (int)xmlctx->value_len, xmlctx->value, snode->name); |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 742 | ret = LY_EVALID; |
| 743 | goto error; |
| 744 | } |
| 745 | |
| 746 | /* create node */ |
| 747 | ret = lyd_create_inner(snode, &node); |
| 748 | LY_CHECK_GOTO(ret, error); |
| 749 | |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 750 | LOG_LOCSET(snode, node, NULL, NULL); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 751 | |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 752 | /* parser next */ |
| 753 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), error); |
| 754 | |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 755 | prev_parse_opts = lydctx->parse_opts; |
| 756 | if (ext) { |
| 757 | /* only parse these extension data and validate afterwards */ |
| 758 | lydctx->parse_opts |= LYD_PARSE_ONLY; |
| 759 | } |
| 760 | |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 761 | /* process children */ |
| 762 | while (xmlctx->status == LYXML_ELEMENT) { |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 763 | ret = lydxml_subtree_r(lydctx, node, lyd_node_child_p(node), NULL); |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 764 | LY_CHECK_GOTO(ret, error); |
| 765 | } |
| 766 | |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 767 | /* restore options */ |
| 768 | lydctx->parse_opts = prev_parse_opts; |
| 769 | |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 770 | if (snode->nodetype == LYS_LIST) { |
| 771 | /* check all keys exist */ |
| 772 | LY_CHECK_GOTO(ret = lyd_parse_check_keys(node), error); |
| 773 | } |
| 774 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 775 | if (!(lydctx->parse_opts & LYD_PARSE_ONLY)) { |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 776 | /* new node validation, autodelete CANNOT occur, all nodes are new */ |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 777 | ret = lyd_validate_new(lyd_node_child_p(node), snode, NULL, NULL); |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 778 | LY_CHECK_GOTO(ret, error); |
| 779 | |
| 780 | /* add any missing default children */ |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 781 | ret = lyd_new_implicit_r(node, lyd_node_child_p(node), NULL, NULL, &lydctx->node_when, &lydctx->node_types, |
| 782 | (lydctx->val_opts & LYD_VALIDATE_NO_STATE) ? LYD_IMPLICIT_NO_STATE : 0, NULL); |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 783 | LY_CHECK_GOTO(ret, error); |
| 784 | } |
| 785 | |
| 786 | if (snode->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) { |
| 787 | /* rememeber the RPC/action/notification */ |
| 788 | lydctx->op_node = node; |
| 789 | } |
| 790 | } else if (snode->nodetype & LYD_NODE_ANY) { |
Michal Vasko | 27c4dce | 2021-03-04 15:50:50 +0100 | [diff] [blame] | 791 | if ((snode->nodetype == LYS_ANYDATA) && !xmlctx->ws_only) { |
| 792 | /* value in anydata node, we expect a tree */ |
| 793 | LOGVAL(ctx, LYVE_SYNTAX, "Text value \"%.*s\" inside an anydata node \"%s\" found.", |
Radek Krejci | 422afb1 | 2021-03-04 16:38:16 +0100 | [diff] [blame] | 794 | (int)xmlctx->value_len < 20 ? xmlctx->value_len : 20, xmlctx->value, snode->name); |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 795 | ret = LY_EVALID; |
| 796 | goto error; |
| 797 | } |
| 798 | |
Michal Vasko | 27c4dce | 2021-03-04 15:50:50 +0100 | [diff] [blame] | 799 | if (!xmlctx->ws_only) { |
| 800 | /* use an arbitrary text value for anyxml */ |
Michal Vasko | 742a5b1 | 2022-02-24 16:07:27 +0100 | [diff] [blame] | 801 | val = strndup(xmlctx->value, xmlctx->value_len); |
| 802 | LY_CHECK_ERR_GOTO(!val, LOGMEM(xmlctx->ctx); ret = LY_EMEM, error); |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 803 | |
Michal Vasko | 27c4dce | 2021-03-04 15:50:50 +0100 | [diff] [blame] | 804 | /* parser next */ |
Michal Vasko | a04107f | 2022-03-29 12:09:50 +0200 | [diff] [blame] | 805 | LY_CHECK_ERR_GOTO(ret = lyxml_ctx_next(xmlctx), free(val), error); |
Michal Vasko | 27c4dce | 2021-03-04 15:50:50 +0100 | [diff] [blame] | 806 | |
| 807 | /* create node */ |
| 808 | ret = lyd_create_any(snode, val, LYD_ANYDATA_STRING, 1, &node); |
Michal Vasko | 742a5b1 | 2022-02-24 16:07:27 +0100 | [diff] [blame] | 809 | LY_CHECK_ERR_GOTO(ret, free(val), error); |
Michal Vasko | 27c4dce | 2021-03-04 15:50:50 +0100 | [diff] [blame] | 810 | } else { |
| 811 | /* parser next */ |
| 812 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), error); |
| 813 | |
Michal Vasko | a98e3ea | 2021-06-03 09:13:33 +0200 | [diff] [blame] | 814 | /* update options so that generic data can be parsed */ |
| 815 | prev_parse_opts = lydctx->parse_opts; |
Michal Vasko | 27c4dce | 2021-03-04 15:50:50 +0100 | [diff] [blame] | 816 | lydctx->parse_opts &= ~LYD_PARSE_STRICT; |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 817 | lydctx->parse_opts |= LYD_PARSE_OPAQ | (ext ? LYD_PARSE_ONLY : 0); |
Michal Vasko | a98e3ea | 2021-06-03 09:13:33 +0200 | [diff] [blame] | 818 | prev_int_opts = lydctx->int_opts; |
Michal Vasko | 02ed9d8 | 2021-07-15 14:58:04 +0200 | [diff] [blame] | 819 | lydctx->int_opts |= LYD_INTOPT_ANY | LYD_INTOPT_WITH_SIBLINGS; |
Michal Vasko | a98e3ea | 2021-06-03 09:13:33 +0200 | [diff] [blame] | 820 | |
| 821 | /* parse any data tree */ |
Michal Vasko | 27c4dce | 2021-03-04 15:50:50 +0100 | [diff] [blame] | 822 | anchor = NULL; |
| 823 | while (xmlctx->status == LYXML_ELEMENT) { |
| 824 | ret = lydxml_subtree_r(lydctx, NULL, &anchor, NULL); |
Michal Vasko | a98e3ea | 2021-06-03 09:13:33 +0200 | [diff] [blame] | 825 | if (ret) { |
Michal Vasko | cc53c58 | 2022-04-01 12:07:44 +0200 | [diff] [blame] | 826 | lyd_free_siblings(anchor); |
Michal Vasko | a98e3ea | 2021-06-03 09:13:33 +0200 | [diff] [blame] | 827 | break; |
| 828 | } |
Michal Vasko | 27c4dce | 2021-03-04 15:50:50 +0100 | [diff] [blame] | 829 | } |
Michal Vasko | a98e3ea | 2021-06-03 09:13:33 +0200 | [diff] [blame] | 830 | |
| 831 | /* restore options */ |
| 832 | lydctx->parse_opts = prev_parse_opts; |
| 833 | lydctx->int_opts = prev_int_opts; |
| 834 | |
| 835 | LY_CHECK_GOTO(ret, error); |
Michal Vasko | 27c4dce | 2021-03-04 15:50:50 +0100 | [diff] [blame] | 836 | |
| 837 | /* create node */ |
| 838 | ret = lyd_create_any(snode, anchor, LYD_ANYDATA_DATATREE, 1, &node); |
| 839 | LY_CHECK_GOTO(ret, error); |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 840 | } |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 841 | } |
| 842 | assert(node); |
| 843 | |
| 844 | /* add/correct flags */ |
| 845 | if (snode) { |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 846 | LY_CHECK_GOTO(ret = lyd_parse_set_data_flags(node, &meta, (struct lyd_ctx *)lydctx, ext), error); |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 847 | } |
| 848 | |
| 849 | /* parser next */ |
| 850 | assert(xmlctx->status == LYXML_ELEM_CLOSE); |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 851 | if (!parse_subtree) { |
| 852 | LY_CHECK_GOTO(ret = lyxml_ctx_next(xmlctx), error); |
| 853 | } |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 854 | |
| 855 | /* add metadata/attributes */ |
| 856 | if (snode) { |
Michal Vasko | 871a025 | 2020-11-11 18:35:24 +0100 | [diff] [blame] | 857 | lyd_insert_meta(node, meta, 0); |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 858 | } else { |
| 859 | lyd_insert_attr(node, attr); |
| 860 | } |
| 861 | |
| 862 | /* insert, keep first pointer correct */ |
Michal Vasko | cea5871 | 2022-04-01 14:37:08 +0200 | [diff] [blame] | 863 | if (insert_anchor) { |
| 864 | lyd_insert_after(insert_anchor, node); |
| 865 | } else if (ext) { |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 866 | LY_CHECK_GOTO(ret = lyd_insert_ext(parent, node), error); |
| 867 | } else { |
| 868 | lyd_insert_node(parent, first_p, node, lydctx->parse_opts & LYD_PARSE_ORDERED ? 1 : 0); |
| 869 | } |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 870 | while (!parent && (*first_p)->prev->next) { |
| 871 | *first_p = (*first_p)->prev; |
| 872 | } |
| 873 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 874 | /* rememeber a successfully parsed node */ |
| 875 | if (parsed) { |
| 876 | ly_set_add(parsed, node, 1, NULL); |
| 877 | } |
| 878 | |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 879 | lydctx->parse_opts = orig_parse_opts; |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 880 | LOG_LOCBACK(node ? 1 : 0, node ? 1 : 0, 0, 0); |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 881 | return LY_SUCCESS; |
| 882 | |
| 883 | error: |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 884 | lydctx->parse_opts = orig_parse_opts; |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 885 | LOG_LOCBACK(node ? 1 : 0, node ? 1 : 0, 0, 0); |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 886 | lyd_free_meta_siblings(meta); |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 887 | lyd_free_attr_siblings(ctx, attr); |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 888 | lyd_free_tree(node); |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 889 | return ret; |
| 890 | } |
| 891 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 892 | /** |
| 893 | * @brief Parse a specific XML element into an opaque node. |
| 894 | * |
| 895 | * @param[in] xmlctx XML parser context. |
| 896 | * @param[in] name Name of the element. |
| 897 | * @param[in] uri URI of the element. |
| 898 | * @param[in] value Whether a value is expected in the element. |
| 899 | * @param[out] evnp Parsed envelope (opaque node). |
| 900 | * @return LY_SUCCESS on success. |
| 901 | * @return LY_ENOT if the specified element did not match. |
| 902 | * @return LY_ERR value on error. |
| 903 | */ |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 904 | static LY_ERR |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 905 | lydxml_envelope(struct lyxml_ctx *xmlctx, const char *name, const char *uri, ly_bool value, struct lyd_node **envp) |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 906 | { |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 907 | LY_ERR rc = LY_SUCCESS; |
| 908 | const struct lyxml_ns *ns; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 909 | struct lyd_attr *attr = NULL; |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 910 | const char *prefix; |
| 911 | size_t prefix_len; |
| 912 | |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 913 | assert(xmlctx->status == LYXML_ELEMENT); |
| 914 | if (ly_strncmp(name, xmlctx->name, xmlctx->name_len)) { |
| 915 | /* not the expected element */ |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 916 | return LY_ENOT; |
Michal Vasko | a8edff0 | 2020-03-27 14:47:01 +0100 | [diff] [blame] | 917 | } |
| 918 | |
| 919 | prefix = xmlctx->prefix; |
| 920 | prefix_len = xmlctx->prefix_len; |
Michal Vasko | c8a230d | 2020-08-14 12:17:10 +0200 | [diff] [blame] | 921 | ns = lyxml_ns_get(&xmlctx->ns, prefix, prefix_len); |
Michal Vasko | a8edff0 | 2020-03-27 14:47:01 +0100 | [diff] [blame] | 922 | if (!ns) { |
Radek Krejci | 422afb1 | 2021-03-04 16:38:16 +0100 | [diff] [blame] | 923 | LOGVAL(xmlctx->ctx, LYVE_REFERENCE, "Unknown XML prefix \"%.*s\".", (int)prefix_len, prefix); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 924 | return LY_EVALID; |
| 925 | } else if (strcmp(ns->uri, uri)) { |
| 926 | /* different namespace */ |
| 927 | return LY_ENOT; |
Michal Vasko | a8edff0 | 2020-03-27 14:47:01 +0100 | [diff] [blame] | 928 | } |
| 929 | |
| 930 | LY_CHECK_RET(lyxml_ctx_next(xmlctx)); |
| 931 | |
| 932 | /* create attributes */ |
| 933 | if (xmlctx->status == LYXML_ATTRIBUTE) { |
| 934 | LY_CHECK_RET(lydxml_attrs(xmlctx, &attr)); |
| 935 | } |
| 936 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 937 | assert(xmlctx->status == LYXML_ELEM_CONTENT); |
| 938 | if (!value && !xmlctx->ws_only) { |
| 939 | LOGVAL(xmlctx->ctx, LYVE_SYNTAX, "Unexpected value \"%.*s\" in the \"%s\" element.", |
Radek Krejci | 422afb1 | 2021-03-04 16:38:16 +0100 | [diff] [blame] | 940 | (int)xmlctx->value_len, xmlctx->value, name); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 941 | rc = LY_EVALID; |
Michal Vasko | a8edff0 | 2020-03-27 14:47:01 +0100 | [diff] [blame] | 942 | goto cleanup; |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 943 | } |
Michal Vasko | a8edff0 | 2020-03-27 14:47:01 +0100 | [diff] [blame] | 944 | |
| 945 | /* create node */ |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 946 | rc = lyd_create_opaq(xmlctx->ctx, name, strlen(name), prefix, prefix_len, uri, strlen(uri), xmlctx->value, |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 947 | xmlctx->ws_only ? 0 : xmlctx->value_len, NULL, LY_VALUE_XML, NULL, 0, envp); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 948 | LY_CHECK_GOTO(rc, cleanup); |
Michal Vasko | a8edff0 | 2020-03-27 14:47:01 +0100 | [diff] [blame] | 949 | |
| 950 | /* assign atributes */ |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 951 | ((struct lyd_node_opaq *)(*envp))->attr = attr; |
Michal Vasko | a8edff0 | 2020-03-27 14:47:01 +0100 | [diff] [blame] | 952 | attr = NULL; |
| 953 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 954 | /* parser next element */ |
| 955 | LY_CHECK_GOTO(rc = lyxml_ctx_next(xmlctx), cleanup); |
Michal Vasko | a8edff0 | 2020-03-27 14:47:01 +0100 | [diff] [blame] | 956 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 957 | cleanup: |
| 958 | lyd_free_attr_siblings(xmlctx->ctx, attr); |
| 959 | if (rc) { |
| 960 | lyd_free_tree(*envp); |
| 961 | *envp = NULL; |
| 962 | } |
| 963 | return rc; |
| 964 | } |
| 965 | |
| 966 | /** |
| 967 | * @brief Parse all expected non-data XML elements of a NETCONF rpc message. |
| 968 | * |
| 969 | * @param[in] xmlctx XML parser context. |
| 970 | * @param[out] evnp Parsed envelope(s) (opaque node). |
| 971 | * @param[out] int_opts Internal options for parsing the rest of YANG data. |
| 972 | * @param[out] close_elem Number of parsed opened elements that need to be closed. |
| 973 | * @return LY_SUCCESS on success. |
| 974 | * @return LY_ERR value on error. |
| 975 | */ |
| 976 | static LY_ERR |
| 977 | lydxml_env_netconf_rpc(struct lyxml_ctx *xmlctx, struct lyd_node **envp, uint32_t *int_opts, uint32_t *close_elem) |
| 978 | { |
| 979 | LY_ERR rc = LY_SUCCESS, r; |
| 980 | struct lyd_node *child; |
| 981 | |
| 982 | assert(envp && !*envp); |
| 983 | |
Michal Vasko | 5037527 | 2022-04-26 12:07:46 +0200 | [diff] [blame] | 984 | if (xmlctx->status != LYXML_ELEMENT) { |
| 985 | /* nothing to parse */ |
| 986 | assert(xmlctx->status == LYXML_END); |
| 987 | goto cleanup; |
| 988 | } |
| 989 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 990 | /* parse "rpc" */ |
| 991 | r = lydxml_envelope(xmlctx, "rpc", "urn:ietf:params:xml:ns:netconf:base:1.0", 0, envp); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 992 | LY_CHECK_ERR_GOTO(r, rc = r, cleanup); |
| 993 | |
| 994 | /* parse "action", if any */ |
| 995 | r = lydxml_envelope(xmlctx, "action", "urn:ietf:params:xml:ns:yang:1", 0, &child); |
| 996 | if (r == LY_SUCCESS) { |
| 997 | /* insert */ |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 998 | lyd_insert_node(*envp, NULL, child, 0); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 999 | |
| 1000 | /* NETCONF action */ |
| 1001 | *int_opts = LYD_INTOPT_NO_SIBLINGS | LYD_INTOPT_ACTION; |
| 1002 | *close_elem = 2; |
| 1003 | } else if (r == LY_ENOT) { |
| 1004 | /* NETCONF RPC */ |
| 1005 | *int_opts = LYD_INTOPT_NO_SIBLINGS | LYD_INTOPT_RPC; |
| 1006 | *close_elem = 1; |
| 1007 | } else { |
| 1008 | rc = r; |
| 1009 | goto cleanup; |
| 1010 | } |
| 1011 | |
| 1012 | cleanup: |
| 1013 | if (rc) { |
| 1014 | lyd_free_tree(*envp); |
| 1015 | *envp = NULL; |
| 1016 | } |
| 1017 | return rc; |
| 1018 | } |
| 1019 | |
| 1020 | /** |
Michal Vasko | 51de7b7 | 2022-04-29 09:50:22 +0200 | [diff] [blame] | 1021 | * @brief Validate eventTime date-and-time value. |
| 1022 | * |
| 1023 | * @param[in] node Opaque eventTime node. |
| 1024 | * @return LY_SUCCESS on success. |
| 1025 | * @return LY_ERR value on error. |
| 1026 | */ |
| 1027 | static LY_ERR |
| 1028 | lydxml_env_netconf_eventtime_validate(const struct lyd_node *node) |
| 1029 | { |
| 1030 | LY_ERR rc = LY_SUCCESS; |
| 1031 | struct ly_ctx *ctx = (struct ly_ctx *)LYD_CTX(node); |
| 1032 | struct lysc_ctx cctx = {.ctx = ctx}; |
| 1033 | const struct lys_module *mod; |
| 1034 | LY_ARRAY_COUNT_TYPE u; |
| 1035 | struct ly_err_item *err = NULL; |
Michal Vasko | ab36a7e | 2022-04-29 10:25:56 +0200 | [diff] [blame] | 1036 | struct lysp_type *type_p = NULL; |
Michal Vasko | 51de7b7 | 2022-04-29 09:50:22 +0200 | [diff] [blame] | 1037 | struct lysc_pattern **patterns = NULL; |
| 1038 | const char *value; |
| 1039 | |
| 1040 | /* get date-and-time parsed type */ |
| 1041 | mod = ly_ctx_get_module_latest(ctx, "ietf-yang-types"); |
Michal Vasko | ab36a7e | 2022-04-29 10:25:56 +0200 | [diff] [blame] | 1042 | assert(mod); |
Michal Vasko | 51de7b7 | 2022-04-29 09:50:22 +0200 | [diff] [blame] | 1043 | LY_ARRAY_FOR(mod->parsed->typedefs, u) { |
| 1044 | if (!strcmp(mod->parsed->typedefs[u].name, "date-and-time")) { |
| 1045 | type_p = &mod->parsed->typedefs[u].type; |
| 1046 | break; |
| 1047 | } |
| 1048 | } |
| 1049 | assert(type_p); |
| 1050 | |
| 1051 | /* compile patterns */ |
| 1052 | assert(type_p->patterns); |
| 1053 | LY_CHECK_GOTO(rc = lys_compile_type_patterns(&cctx, type_p->patterns, NULL, &patterns), cleanup); |
| 1054 | |
| 1055 | /* validate */ |
| 1056 | value = lyd_get_value(node); |
| 1057 | rc = lyplg_type_validate_patterns(patterns, value, strlen(value), &err); |
| 1058 | |
| 1059 | cleanup: |
| 1060 | FREE_ARRAY(ctx, patterns, lysc_pattern_free); |
| 1061 | if (rc && err) { |
| 1062 | LOGVAL_ERRITEM(ctx, err); |
| 1063 | ly_err_free(err); |
| 1064 | LOGVAL(ctx, LYVE_DATA, "Invalid \"eventTime\" in the notification."); |
| 1065 | } |
| 1066 | return rc; |
| 1067 | } |
| 1068 | |
| 1069 | /** |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1070 | * @brief Parse all expected non-data XML elements of a NETCONF notification message. |
| 1071 | * |
| 1072 | * @param[in] xmlctx XML parser context. |
| 1073 | * @param[out] evnp Parsed envelope(s) (opaque node). |
| 1074 | * @param[out] int_opts Internal options for parsing the rest of YANG data. |
| 1075 | * @param[out] close_elem Number of parsed opened elements that need to be closed. |
| 1076 | * @return LY_SUCCESS on success. |
| 1077 | * @return LY_ERR value on error. |
| 1078 | */ |
| 1079 | static LY_ERR |
| 1080 | lydxml_env_netconf_notif(struct lyxml_ctx *xmlctx, struct lyd_node **envp, uint32_t *int_opts, uint32_t *close_elem) |
| 1081 | { |
| 1082 | LY_ERR rc = LY_SUCCESS, r; |
| 1083 | struct lyd_node *child; |
| 1084 | |
| 1085 | assert(envp && !*envp); |
| 1086 | |
Michal Vasko | 5037527 | 2022-04-26 12:07:46 +0200 | [diff] [blame] | 1087 | if (xmlctx->status != LYXML_ELEMENT) { |
| 1088 | /* nothing to parse */ |
| 1089 | assert(xmlctx->status == LYXML_END); |
| 1090 | goto cleanup; |
| 1091 | } |
| 1092 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1093 | /* parse "notification" */ |
| 1094 | r = lydxml_envelope(xmlctx, "notification", "urn:ietf:params:xml:ns:netconf:notification:1.0", 0, envp); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1095 | LY_CHECK_ERR_GOTO(r, rc = r, cleanup); |
| 1096 | |
| 1097 | /* parse "eventTime" */ |
| 1098 | r = lydxml_envelope(xmlctx, "eventTime", "urn:ietf:params:xml:ns:netconf:notification:1.0", 1, &child); |
| 1099 | if (r == LY_ENOT) { |
Radek Krejci | 422afb1 | 2021-03-04 16:38:16 +0100 | [diff] [blame] | 1100 | LOGVAL(xmlctx->ctx, LYVE_REFERENCE, "Unexpected element \"%.*s\" instead of \"eventTime\".", |
| 1101 | (int)xmlctx->name_len, xmlctx->name); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1102 | r = LY_EVALID; |
| 1103 | } |
| 1104 | LY_CHECK_ERR_GOTO(r, rc = r, cleanup); |
| 1105 | |
| 1106 | /* insert */ |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 1107 | lyd_insert_node(*envp, NULL, child, 0); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1108 | |
| 1109 | /* validate value */ |
Michal Vasko | 51de7b7 | 2022-04-29 09:50:22 +0200 | [diff] [blame] | 1110 | r = lydxml_env_netconf_eventtime_validate(child); |
| 1111 | LY_CHECK_ERR_GOTO(r, rc = r, cleanup); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1112 | |
| 1113 | /* finish child parsing */ |
Michal Vasko | a8edff0 | 2020-03-27 14:47:01 +0100 | [diff] [blame] | 1114 | if (xmlctx->status != LYXML_ELEM_CLOSE) { |
| 1115 | assert(xmlctx->status == LYXML_ELEMENT); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1116 | LOGVAL(xmlctx->ctx, LYVE_SYNTAX, "Unexpected child element \"%.*s\" of \"eventTime\".", |
Radek Krejci | 422afb1 | 2021-03-04 16:38:16 +0100 | [diff] [blame] | 1117 | (int)xmlctx->name_len, xmlctx->name); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1118 | rc = LY_EVALID; |
Michal Vasko | a8edff0 | 2020-03-27 14:47:01 +0100 | [diff] [blame] | 1119 | goto cleanup; |
| 1120 | } |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1121 | LY_CHECK_GOTO(rc = lyxml_ctx_next(xmlctx), cleanup); |
| 1122 | |
| 1123 | /* NETCONF notification */ |
| 1124 | *int_opts = LYD_INTOPT_NO_SIBLINGS | LYD_INTOPT_NOTIF; |
| 1125 | *close_elem = 1; |
Michal Vasko | a8edff0 | 2020-03-27 14:47:01 +0100 | [diff] [blame] | 1126 | |
| 1127 | cleanup: |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1128 | if (rc) { |
Michal Vasko | a8edff0 | 2020-03-27 14:47:01 +0100 | [diff] [blame] | 1129 | lyd_free_tree(*envp); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1130 | *envp = NULL; |
Michal Vasko | a8edff0 | 2020-03-27 14:47:01 +0100 | [diff] [blame] | 1131 | } |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1132 | return rc; |
Michal Vasko | a8edff0 | 2020-03-27 14:47:01 +0100 | [diff] [blame] | 1133 | } |
Michal Vasko | 79135ae | 2020-12-16 10:08:35 +0100 | [diff] [blame] | 1134 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1135 | /** |
| 1136 | * @brief Parse an XML element as an opaque node subtree. |
| 1137 | * |
| 1138 | * @param[in] xmlctx XML parser context. |
| 1139 | * @param[in] parent Parent to append nodes to. |
| 1140 | * @return LY_ERR value. |
| 1141 | */ |
| 1142 | static LY_ERR |
| 1143 | lydxml_opaq_r(struct lyxml_ctx *xmlctx, struct lyd_node *parent) |
Michal Vasko | a8edff0 | 2020-03-27 14:47:01 +0100 | [diff] [blame] | 1144 | { |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1145 | LY_ERR rc = LY_SUCCESS; |
| 1146 | const struct lyxml_ns *ns; |
| 1147 | struct lyd_attr *attr = NULL; |
| 1148 | struct lyd_node *child = NULL; |
| 1149 | const char *name, *prefix; |
| 1150 | size_t name_len, prefix_len; |
Michal Vasko | a8edff0 | 2020-03-27 14:47:01 +0100 | [diff] [blame] | 1151 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1152 | assert(xmlctx->status == LYXML_ELEMENT); |
Michal Vasko | a8edff0 | 2020-03-27 14:47:01 +0100 | [diff] [blame] | 1153 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1154 | name = xmlctx->name; |
| 1155 | name_len = xmlctx->name_len; |
| 1156 | prefix = xmlctx->prefix; |
| 1157 | prefix_len = xmlctx->prefix_len; |
| 1158 | ns = lyxml_ns_get(&xmlctx->ns, prefix, prefix_len); |
| 1159 | if (!ns) { |
Radek Krejci | 422afb1 | 2021-03-04 16:38:16 +0100 | [diff] [blame] | 1160 | LOGVAL(xmlctx->ctx, LYVE_REFERENCE, "Unknown XML prefix \"%.*s\".", (int)prefix_len, prefix); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1161 | return LY_EVALID; |
| 1162 | } |
Michal Vasko | a8edff0 | 2020-03-27 14:47:01 +0100 | [diff] [blame] | 1163 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1164 | LY_CHECK_RET(lyxml_ctx_next(xmlctx)); |
Michal Vasko | a8edff0 | 2020-03-27 14:47:01 +0100 | [diff] [blame] | 1165 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1166 | /* create attributes */ |
| 1167 | if (xmlctx->status == LYXML_ATTRIBUTE) { |
| 1168 | LY_CHECK_RET(lydxml_attrs(xmlctx, &attr)); |
| 1169 | } |
| 1170 | |
| 1171 | /* create node */ |
| 1172 | assert(xmlctx->status == LYXML_ELEM_CONTENT); |
| 1173 | rc = lyd_create_opaq(xmlctx->ctx, name, name_len, prefix, prefix_len, ns->uri, strlen(ns->uri), xmlctx->value, |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 1174 | xmlctx->ws_only ? 0 : xmlctx->value_len, NULL, LY_VALUE_XML, NULL, 0, &child); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1175 | LY_CHECK_GOTO(rc, cleanup); |
| 1176 | |
| 1177 | /* assign atributes */ |
| 1178 | ((struct lyd_node_opaq *)child)->attr = attr; |
| 1179 | attr = NULL; |
| 1180 | |
| 1181 | /* parser next element */ |
| 1182 | LY_CHECK_GOTO(rc = lyxml_ctx_next(xmlctx), cleanup); |
| 1183 | |
| 1184 | /* parse all the descendants */ |
| 1185 | while (xmlctx->status == LYXML_ELEMENT) { |
| 1186 | rc = lydxml_opaq_r(xmlctx, child); |
| 1187 | LY_CHECK_GOTO(rc, cleanup); |
| 1188 | } |
| 1189 | |
| 1190 | /* insert */ |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 1191 | lyd_insert_node(parent, NULL, child, 1); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1192 | |
| 1193 | cleanup: |
| 1194 | lyd_free_attr_siblings(xmlctx->ctx, attr); |
| 1195 | if (rc) { |
| 1196 | lyd_free_tree(child); |
| 1197 | } |
| 1198 | return rc; |
| 1199 | } |
| 1200 | |
| 1201 | /** |
| 1202 | * @brief Parse all expected non-data XML elements of the error-info element in NETCONF rpc-reply message. |
| 1203 | * |
| 1204 | * @param[in] xmlctx XML parser context. |
| 1205 | * @param[in] parent Parent to append nodes to. |
| 1206 | * @return LY_ERR value. |
| 1207 | */ |
| 1208 | static LY_ERR |
| 1209 | lydxml_env_netconf_rpc_reply_error_info(struct lyxml_ctx *xmlctx, struct lyd_node *parent) |
| 1210 | { |
| 1211 | LY_ERR r; |
| 1212 | struct lyd_node *child, *iter; |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1213 | ly_bool no_dup; |
| 1214 | |
| 1215 | /* there must be some child */ |
| 1216 | if (xmlctx->status == LYXML_ELEM_CLOSE) { |
| 1217 | LOGVAL(xmlctx->ctx, LYVE_SYNTAX, "Missing child elements of \"error-info\"."); |
| 1218 | return LY_EVALID; |
| 1219 | } |
| 1220 | |
| 1221 | while (xmlctx->status == LYXML_ELEMENT) { |
| 1222 | child = NULL; |
| 1223 | |
| 1224 | /* |
| 1225 | * session-id |
| 1226 | */ |
| 1227 | r = lydxml_envelope(xmlctx, "session-id", "urn:ietf:params:xml:ns:netconf:base:1.0", 1, &child); |
| 1228 | if (r == LY_SUCCESS) { |
| 1229 | no_dup = 1; |
| 1230 | goto check_child; |
| 1231 | } else if (r != LY_ENOT) { |
| 1232 | goto error; |
| 1233 | } |
| 1234 | |
| 1235 | /* |
| 1236 | * bad-attribute |
| 1237 | */ |
| 1238 | r = lydxml_envelope(xmlctx, "bad-attribute", "urn:ietf:params:xml:ns:netconf:base:1.0", 1, &child); |
| 1239 | if (r == LY_SUCCESS) { |
| 1240 | no_dup = 1; |
| 1241 | goto check_child; |
| 1242 | } else if (r != LY_ENOT) { |
| 1243 | goto error; |
| 1244 | } |
| 1245 | |
| 1246 | /* |
| 1247 | * bad-element |
| 1248 | */ |
| 1249 | r = lydxml_envelope(xmlctx, "bad-element", "urn:ietf:params:xml:ns:netconf:base:1.0", 1, &child); |
| 1250 | if (r == LY_SUCCESS) { |
| 1251 | no_dup = 1; |
| 1252 | goto check_child; |
| 1253 | } else if (r != LY_ENOT) { |
| 1254 | goto error; |
| 1255 | } |
| 1256 | |
| 1257 | /* |
| 1258 | * bad-namespace |
| 1259 | */ |
| 1260 | r = lydxml_envelope(xmlctx, "bad-namespace", "urn:ietf:params:xml:ns:netconf:base:1.0", 1, &child); |
| 1261 | if (r == LY_SUCCESS) { |
| 1262 | no_dup = 1; |
| 1263 | goto check_child; |
| 1264 | } else if (r != LY_ENOT) { |
| 1265 | goto error; |
| 1266 | } |
| 1267 | |
| 1268 | if (r == LY_ENOT) { |
| 1269 | assert(xmlctx->status == LYXML_ELEMENT); |
| 1270 | |
Michal Vasko | 845ba39 | 2022-06-16 07:52:13 +0200 | [diff] [blame] | 1271 | /* custom elements, parse all the siblings */ |
| 1272 | while (xmlctx->status == LYXML_ELEMENT) { |
| 1273 | LY_CHECK_GOTO(r = lydxml_opaq_r(xmlctx, parent), error); |
| 1274 | LY_CHECK_GOTO(r = lyxml_ctx_next(xmlctx), error); |
| 1275 | } |
Michal Vasko | 6398eaf | 2022-01-10 10:12:30 +0100 | [diff] [blame] | 1276 | continue; |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1277 | } |
| 1278 | |
| 1279 | check_child: |
| 1280 | /* check for duplicates */ |
| 1281 | if (no_dup) { |
| 1282 | LY_LIST_FOR(lyd_child(parent), iter) { |
| 1283 | if ((((struct lyd_node_opaq *)iter)->name.name == ((struct lyd_node_opaq *)child)->name.name) && |
| 1284 | (((struct lyd_node_opaq *)iter)->name.module_ns == ((struct lyd_node_opaq *)child)->name.module_ns)) { |
| 1285 | LOGVAL(xmlctx->ctx, LYVE_REFERENCE, "Duplicate element \"%s\" in \"error-info\".", |
| 1286 | ((struct lyd_node_opaq *)child)->name.name); |
| 1287 | r = LY_EVALID; |
| 1288 | goto error; |
| 1289 | } |
| 1290 | } |
| 1291 | } |
| 1292 | |
| 1293 | /* finish child parsing */ |
| 1294 | if (xmlctx->status != LYXML_ELEM_CLOSE) { |
| 1295 | assert(xmlctx->status == LYXML_ELEMENT); |
| 1296 | LOGVAL(xmlctx->ctx, LYVE_SYNTAX, "Unexpected child element \"%.*s\" of \"error-info\".", |
Radek Krejci | 422afb1 | 2021-03-04 16:38:16 +0100 | [diff] [blame] | 1297 | (int)xmlctx->name_len, xmlctx->name); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1298 | r = LY_EVALID; |
| 1299 | goto error; |
| 1300 | } |
| 1301 | LY_CHECK_GOTO(r = lyxml_ctx_next(xmlctx), error); |
| 1302 | |
| 1303 | /* insert */ |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 1304 | lyd_insert_node(parent, NULL, child, 1); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1305 | } |
| 1306 | |
| 1307 | return LY_SUCCESS; |
| 1308 | |
| 1309 | error: |
| 1310 | lyd_free_tree(child); |
| 1311 | return r; |
| 1312 | } |
| 1313 | |
| 1314 | /** |
| 1315 | * @brief Parse all expected non-data XML elements of the rpc-error element in NETCONF rpc-reply message. |
| 1316 | * |
| 1317 | * @param[in] xmlctx XML parser context. |
| 1318 | * @param[in] parent Parent to append nodes to. |
| 1319 | * @return LY_ERR value. |
| 1320 | */ |
| 1321 | static LY_ERR |
| 1322 | lydxml_env_netconf_rpc_reply_error(struct lyxml_ctx *xmlctx, struct lyd_node *parent) |
| 1323 | { |
| 1324 | LY_ERR r; |
| 1325 | struct lyd_node *child, *iter; |
| 1326 | const char *val; |
| 1327 | ly_bool no_dup; |
| 1328 | |
| 1329 | /* there must be some child */ |
| 1330 | if (xmlctx->status == LYXML_ELEM_CLOSE) { |
| 1331 | LOGVAL(xmlctx->ctx, LYVE_SYNTAX, "Missing child elements of \"rpc-error\"."); |
| 1332 | return LY_EVALID; |
| 1333 | } |
| 1334 | |
| 1335 | while (xmlctx->status == LYXML_ELEMENT) { |
| 1336 | child = NULL; |
| 1337 | |
| 1338 | /* |
| 1339 | * error-type |
| 1340 | */ |
| 1341 | r = lydxml_envelope(xmlctx, "error-type", "urn:ietf:params:xml:ns:netconf:base:1.0", 1, &child); |
| 1342 | if (r == LY_SUCCESS) { |
| 1343 | val = ((struct lyd_node_opaq *)child)->value; |
| 1344 | if (strcmp(val, "transport") && strcmp(val, "rpc") && strcmp(val, "protocol") && strcmp(val, "application")) { |
| 1345 | LOGVAL(xmlctx->ctx, LYVE_REFERENCE, "Invalid value \"%s\" of element \"%s\".", val, |
| 1346 | ((struct lyd_node_opaq *)child)->name.name); |
| 1347 | r = LY_EVALID; |
| 1348 | goto error; |
| 1349 | } |
| 1350 | |
| 1351 | no_dup = 1; |
| 1352 | goto check_child; |
| 1353 | } else if (r != LY_ENOT) { |
| 1354 | goto error; |
| 1355 | } |
| 1356 | |
| 1357 | /* |
| 1358 | * error-tag |
| 1359 | */ |
| 1360 | r = lydxml_envelope(xmlctx, "error-tag", "urn:ietf:params:xml:ns:netconf:base:1.0", 1, &child); |
| 1361 | if (r == LY_SUCCESS) { |
| 1362 | val = ((struct lyd_node_opaq *)child)->value; |
| 1363 | if (strcmp(val, "in-use") && strcmp(val, "invalid-value") && strcmp(val, "too-big") && |
| 1364 | strcmp(val, "missing-attribute") && strcmp(val, "bad-attribute") && |
| 1365 | strcmp(val, "unknown-attribute") && strcmp(val, "missing-element") && strcmp(val, "bad-element") && |
| 1366 | strcmp(val, "unknown-element") && strcmp(val, "unknown-namespace") && strcmp(val, "access-denied") && |
| 1367 | strcmp(val, "lock-denied") && strcmp(val, "resource-denied") && strcmp(val, "rollback-failed") && |
| 1368 | strcmp(val, "data-exists") && strcmp(val, "data-missing") && strcmp(val, "operation-not-supported") && |
| 1369 | strcmp(val, "operation-failed") && strcmp(val, "malformed-message")) { |
| 1370 | LOGVAL(xmlctx->ctx, LYVE_REFERENCE, "Invalid value \"%s\" of element \"%s\".", val, |
| 1371 | ((struct lyd_node_opaq *)child)->name.name); |
| 1372 | r = LY_EVALID; |
| 1373 | goto error; |
| 1374 | } |
| 1375 | |
| 1376 | no_dup = 1; |
| 1377 | goto check_child; |
| 1378 | } else if (r != LY_ENOT) { |
| 1379 | goto error; |
| 1380 | } |
| 1381 | |
| 1382 | /* |
| 1383 | * error-severity |
| 1384 | */ |
| 1385 | r = lydxml_envelope(xmlctx, "error-severity", "urn:ietf:params:xml:ns:netconf:base:1.0", 1, &child); |
| 1386 | if (r == LY_SUCCESS) { |
| 1387 | val = ((struct lyd_node_opaq *)child)->value; |
| 1388 | if (strcmp(val, "error") && strcmp(val, "warning")) { |
| 1389 | LOGVAL(xmlctx->ctx, LYVE_REFERENCE, "Invalid value \"%s\" of element \"%s\".", val, |
| 1390 | ((struct lyd_node_opaq *)child)->name.name); |
| 1391 | r = LY_EVALID; |
| 1392 | goto error; |
| 1393 | } |
| 1394 | |
| 1395 | no_dup = 1; |
| 1396 | goto check_child; |
| 1397 | } else if (r != LY_ENOT) { |
| 1398 | goto error; |
| 1399 | } |
| 1400 | |
| 1401 | /* |
| 1402 | * error-app-tag |
| 1403 | */ |
| 1404 | r = lydxml_envelope(xmlctx, "error-app-tag", "urn:ietf:params:xml:ns:netconf:base:1.0", 1, &child); |
| 1405 | if (r == LY_SUCCESS) { |
| 1406 | no_dup = 1; |
| 1407 | goto check_child; |
| 1408 | } else if (r != LY_ENOT) { |
| 1409 | goto error; |
| 1410 | } |
| 1411 | |
| 1412 | /* |
| 1413 | * error-path |
| 1414 | */ |
| 1415 | r = lydxml_envelope(xmlctx, "error-path", "urn:ietf:params:xml:ns:netconf:base:1.0", 1, &child); |
| 1416 | if (r == LY_SUCCESS) { |
| 1417 | no_dup = 1; |
| 1418 | goto check_child; |
| 1419 | } else if (r != LY_ENOT) { |
| 1420 | goto error; |
| 1421 | } |
| 1422 | |
| 1423 | /* |
| 1424 | * error-message |
| 1425 | */ |
| 1426 | r = lydxml_envelope(xmlctx, "error-message", "urn:ietf:params:xml:ns:netconf:base:1.0", 1, &child); |
| 1427 | if (r == LY_SUCCESS) { |
| 1428 | no_dup = 1; |
| 1429 | goto check_child; |
| 1430 | } else if (r != LY_ENOT) { |
| 1431 | goto error; |
| 1432 | } |
| 1433 | |
| 1434 | /* error-info */ |
| 1435 | r = lydxml_envelope(xmlctx, "error-info", "urn:ietf:params:xml:ns:netconf:base:1.0", 0, &child); |
| 1436 | if (r == LY_SUCCESS) { |
| 1437 | /* parse all the descendants */ |
| 1438 | LY_CHECK_GOTO(r = lydxml_env_netconf_rpc_reply_error_info(xmlctx, child), error); |
| 1439 | |
| 1440 | no_dup = 0; |
| 1441 | goto check_child; |
| 1442 | } else if (r != LY_ENOT) { |
| 1443 | goto error; |
| 1444 | } |
| 1445 | |
| 1446 | if (r == LY_ENOT) { |
| 1447 | assert(xmlctx->status == LYXML_ELEMENT); |
| 1448 | LOGVAL(xmlctx->ctx, LYVE_SYNTAX, "Unexpected child element \"%.*s\" of \"rpc-error\".", |
Radek Krejci | 422afb1 | 2021-03-04 16:38:16 +0100 | [diff] [blame] | 1449 | (int)xmlctx->name_len, xmlctx->name); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1450 | r = LY_EVALID; |
| 1451 | goto error; |
| 1452 | } |
| 1453 | |
| 1454 | check_child: |
| 1455 | /* check for duplicates */ |
| 1456 | if (no_dup) { |
| 1457 | LY_LIST_FOR(lyd_child(parent), iter) { |
| 1458 | if ((((struct lyd_node_opaq *)iter)->name.name == ((struct lyd_node_opaq *)child)->name.name) && |
| 1459 | (((struct lyd_node_opaq *)iter)->name.module_ns == ((struct lyd_node_opaq *)child)->name.module_ns)) { |
| 1460 | LOGVAL(xmlctx->ctx, LYVE_REFERENCE, "Duplicate element \"%s\" in \"rpc-error\".", |
| 1461 | ((struct lyd_node_opaq *)child)->name.name); |
| 1462 | r = LY_EVALID; |
| 1463 | goto error; |
| 1464 | } |
| 1465 | } |
| 1466 | } |
| 1467 | |
| 1468 | /* finish child parsing */ |
| 1469 | if (xmlctx->status != LYXML_ELEM_CLOSE) { |
| 1470 | assert(xmlctx->status == LYXML_ELEMENT); |
| 1471 | LOGVAL(xmlctx->ctx, LYVE_SYNTAX, "Unexpected child element \"%.*s\" of \"rpc-error\".", |
Radek Krejci | 422afb1 | 2021-03-04 16:38:16 +0100 | [diff] [blame] | 1472 | (int)xmlctx->name_len, xmlctx->name); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1473 | r = LY_EVALID; |
| 1474 | goto error; |
| 1475 | } |
| 1476 | LY_CHECK_GOTO(r = lyxml_ctx_next(xmlctx), error); |
| 1477 | |
| 1478 | /* insert */ |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 1479 | lyd_insert_node(parent, NULL, child, 1); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1480 | } |
| 1481 | |
| 1482 | return LY_SUCCESS; |
| 1483 | |
| 1484 | error: |
| 1485 | lyd_free_tree(child); |
| 1486 | return r; |
| 1487 | } |
| 1488 | |
| 1489 | /** |
| 1490 | * @brief Parse all expected non-data XML elements of a NETCONF rpc-reply message. |
| 1491 | * |
| 1492 | * @param[in] xmlctx XML parser context. |
| 1493 | * @param[out] evnp Parsed envelope(s) (opaque node). |
| 1494 | * @param[out] int_opts Internal options for parsing the rest of YANG data. |
| 1495 | * @param[out] close_elem Number of parsed opened elements that need to be closed. |
| 1496 | * @return LY_SUCCESS on success. |
| 1497 | * @return LY_ERR value on error. |
| 1498 | */ |
| 1499 | static LY_ERR |
| 1500 | lydxml_env_netconf_reply(struct lyxml_ctx *xmlctx, struct lyd_node **envp, uint32_t *int_opts, uint32_t *close_elem) |
| 1501 | { |
| 1502 | LY_ERR rc = LY_SUCCESS, r; |
| 1503 | struct lyd_node *child = NULL; |
| 1504 | const char *parsed_elem = NULL; |
| 1505 | |
| 1506 | assert(envp && !*envp); |
| 1507 | |
Michal Vasko | 5037527 | 2022-04-26 12:07:46 +0200 | [diff] [blame] | 1508 | if (xmlctx->status != LYXML_ELEMENT) { |
| 1509 | /* nothing to parse */ |
| 1510 | assert(xmlctx->status == LYXML_END); |
| 1511 | goto cleanup; |
| 1512 | } |
| 1513 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1514 | /* parse "rpc-reply" */ |
| 1515 | r = lydxml_envelope(xmlctx, "rpc-reply", "urn:ietf:params:xml:ns:netconf:base:1.0", 0, envp); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1516 | LY_CHECK_ERR_GOTO(r, rc = r, cleanup); |
| 1517 | |
| 1518 | /* there must be some child */ |
| 1519 | if (xmlctx->status == LYXML_ELEM_CLOSE) { |
| 1520 | LOGVAL(xmlctx->ctx, LYVE_SYNTAX, "Missing child elements of \"rpc-reply\"."); |
| 1521 | rc = LY_EVALID; |
Michal Vasko | cf770e2 | 2020-08-12 13:21:43 +0200 | [diff] [blame] | 1522 | goto cleanup; |
Michal Vasko | a8edff0 | 2020-03-27 14:47:01 +0100 | [diff] [blame] | 1523 | } |
| 1524 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1525 | /* try to parse "ok" */ |
| 1526 | r = lydxml_envelope(xmlctx, "ok", "urn:ietf:params:xml:ns:netconf:base:1.0", 0, &child); |
| 1527 | if (r == LY_SUCCESS) { |
| 1528 | /* insert */ |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 1529 | lyd_insert_node(*envp, NULL, child, 1); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1530 | |
| 1531 | /* finish child parsing */ |
| 1532 | if (xmlctx->status != LYXML_ELEM_CLOSE) { |
| 1533 | assert(xmlctx->status == LYXML_ELEMENT); |
| 1534 | LOGVAL(xmlctx->ctx, LYVE_SYNTAX, "Unexpected child element \"%.*s\" of \"ok\".", |
Radek Krejci | 422afb1 | 2021-03-04 16:38:16 +0100 | [diff] [blame] | 1535 | (int)xmlctx->name_len, xmlctx->name); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1536 | rc = LY_EVALID; |
| 1537 | goto cleanup; |
| 1538 | } |
| 1539 | LY_CHECK_GOTO(rc = lyxml_ctx_next(xmlctx), cleanup); |
| 1540 | |
| 1541 | /* success */ |
| 1542 | parsed_elem = "ok"; |
| 1543 | goto finish; |
| 1544 | } else if (r != LY_ENOT) { |
| 1545 | rc = r; |
| 1546 | goto cleanup; |
Michal Vasko | 2552ea3 | 2020-12-08 15:32:34 +0100 | [diff] [blame] | 1547 | } |
| 1548 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1549 | /* try to parse all "rpc-error" elements */ |
| 1550 | while (xmlctx->status == LYXML_ELEMENT) { |
| 1551 | r = lydxml_envelope(xmlctx, "rpc-error", "urn:ietf:params:xml:ns:netconf:base:1.0", 0, &child); |
| 1552 | if (r == LY_ENOT) { |
| 1553 | break; |
| 1554 | } else if (r) { |
| 1555 | rc = r; |
| 1556 | goto cleanup; |
| 1557 | } |
| 1558 | |
| 1559 | /* insert */ |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 1560 | lyd_insert_node(*envp, NULL, child, 1); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1561 | |
| 1562 | /* parse all children of "rpc-error" */ |
| 1563 | LY_CHECK_GOTO(rc = lydxml_env_netconf_rpc_reply_error(xmlctx, child), cleanup); |
| 1564 | |
| 1565 | /* finish child parsing */ |
| 1566 | assert(xmlctx->status == LYXML_ELEM_CLOSE); |
| 1567 | LY_CHECK_GOTO(rc = lyxml_ctx_next(xmlctx), cleanup); |
| 1568 | |
| 1569 | parsed_elem = "rpc-error"; |
Michal Vasko | 2552ea3 | 2020-12-08 15:32:34 +0100 | [diff] [blame] | 1570 | } |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1571 | |
| 1572 | finish: |
| 1573 | if (parsed_elem) { |
| 1574 | /* NETCONF rpc-reply with no data */ |
| 1575 | if (xmlctx->status != LYXML_ELEM_CLOSE) { |
| 1576 | assert(xmlctx->status == LYXML_ELEMENT); |
| 1577 | LOGVAL(xmlctx->ctx, LYVE_SYNTAX, "Unexpected sibling element \"%.*s\" of \"%s\".", |
Radek Krejci | 422afb1 | 2021-03-04 16:38:16 +0100 | [diff] [blame] | 1578 | (int)xmlctx->name_len, xmlctx->name, parsed_elem); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1579 | rc = LY_EVALID; |
| 1580 | goto cleanup; |
| 1581 | } |
| 1582 | } |
| 1583 | |
| 1584 | /* NETCONF rpc-reply */ |
Michal Vasko | 1d991fd | 2021-07-09 13:14:40 +0200 | [diff] [blame] | 1585 | *int_opts = LYD_INTOPT_WITH_SIBLINGS | LYD_INTOPT_REPLY; |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1586 | *close_elem = 1; |
| 1587 | |
| 1588 | cleanup: |
| 1589 | if (rc) { |
| 1590 | lyd_free_tree(*envp); |
| 1591 | *envp = NULL; |
| 1592 | } |
| 1593 | return rc; |
| 1594 | } |
| 1595 | |
Michal Vasko | 2552ea3 | 2020-12-08 15:32:34 +0100 | [diff] [blame] | 1596 | LY_ERR |
Radek Krejci | f16e254 | 2021-02-17 15:39:23 +0100 | [diff] [blame] | 1597 | lyd_parse_xml(const struct ly_ctx *ctx, const struct lysc_ext_instance *ext, struct lyd_node *parent, |
| 1598 | struct lyd_node **first_p, struct ly_in *in, uint32_t parse_opts, uint32_t val_opts, enum lyd_type data_type, |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 1599 | struct lyd_node **envp, struct ly_set *parsed, ly_bool *subtree_sibling, struct lyd_ctx **lydctx_p) |
Michal Vasko | 2552ea3 | 2020-12-08 15:32:34 +0100 | [diff] [blame] | 1600 | { |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1601 | LY_ERR rc = LY_SUCCESS; |
| 1602 | struct lyd_xml_ctx *lydctx; |
Michal Vasko | 2ca9f9e | 2021-07-02 09:21:36 +0200 | [diff] [blame] | 1603 | uint32_t i, int_opts = 0, close_elem = 0; |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1604 | ly_bool parsed_data_nodes = 0; |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 1605 | enum LYXML_PARSER_STATUS status; |
Michal Vasko | 2552ea3 | 2020-12-08 15:32:34 +0100 | [diff] [blame] | 1606 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1607 | assert(ctx && in && lydctx_p); |
| 1608 | assert(!(parse_opts & ~LYD_PARSE_OPTS_MASK)); |
| 1609 | assert(!(val_opts & ~LYD_VALIDATE_OPTS_MASK)); |
Michal Vasko | 2552ea3 | 2020-12-08 15:32:34 +0100 | [diff] [blame] | 1610 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1611 | /* init context */ |
| 1612 | lydctx = calloc(1, sizeof *lydctx); |
| 1613 | LY_CHECK_ERR_RET(!lydctx, LOGMEM(ctx), LY_EMEM); |
| 1614 | LY_CHECK_GOTO(rc = lyxml_ctx_new(ctx, in, &lydctx->xmlctx), cleanup); |
| 1615 | lydctx->parse_opts = parse_opts; |
| 1616 | lydctx->val_opts = val_opts; |
| 1617 | lydctx->free = lyd_xml_ctx_free; |
Radek Krejci | f16e254 | 2021-02-17 15:39:23 +0100 | [diff] [blame] | 1618 | lydctx->ext = ext; |
Michal Vasko | 2552ea3 | 2020-12-08 15:32:34 +0100 | [diff] [blame] | 1619 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1620 | switch (data_type) { |
Michal Vasko | 1e4c68e | 2021-02-18 15:03:01 +0100 | [diff] [blame] | 1621 | case LYD_TYPE_DATA_YANG: |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 1622 | if (!(parse_opts & LYD_PARSE_SUBTREE)) { |
| 1623 | int_opts = LYD_INTOPT_WITH_SIBLINGS; |
| 1624 | } |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1625 | break; |
Michal Vasko | 1e4c68e | 2021-02-18 15:03:01 +0100 | [diff] [blame] | 1626 | case LYD_TYPE_RPC_YANG: |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1627 | int_opts = LYD_INTOPT_RPC | LYD_INTOPT_ACTION | LYD_INTOPT_NO_SIBLINGS; |
| 1628 | break; |
Michal Vasko | 1e4c68e | 2021-02-18 15:03:01 +0100 | [diff] [blame] | 1629 | case LYD_TYPE_NOTIF_YANG: |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1630 | int_opts = LYD_INTOPT_NOTIF | LYD_INTOPT_NO_SIBLINGS; |
| 1631 | break; |
Michal Vasko | 1e4c68e | 2021-02-18 15:03:01 +0100 | [diff] [blame] | 1632 | case LYD_TYPE_REPLY_YANG: |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1633 | int_opts = LYD_INTOPT_REPLY | LYD_INTOPT_NO_SIBLINGS; |
| 1634 | break; |
Michal Vasko | 1e4c68e | 2021-02-18 15:03:01 +0100 | [diff] [blame] | 1635 | case LYD_TYPE_RPC_NETCONF: |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1636 | assert(!parent); |
Michal Vasko | d71c2d4 | 2022-04-29 09:50:44 +0200 | [diff] [blame] | 1637 | rc = lydxml_env_netconf_rpc(lydctx->xmlctx, envp, &int_opts, &close_elem); |
| 1638 | if (rc == LY_ENOT) { |
| 1639 | LOGVAL(ctx, LYVE_DATA, "Missing NETCONF <rpc> envelope or in incorrect namespace."); |
| 1640 | } |
| 1641 | LY_CHECK_GOTO(rc, cleanup); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1642 | break; |
Michal Vasko | 1e4c68e | 2021-02-18 15:03:01 +0100 | [diff] [blame] | 1643 | case LYD_TYPE_NOTIF_NETCONF: |
| 1644 | assert(!parent); |
Michal Vasko | d71c2d4 | 2022-04-29 09:50:44 +0200 | [diff] [blame] | 1645 | rc = lydxml_env_netconf_notif(lydctx->xmlctx, envp, &int_opts, &close_elem); |
| 1646 | if (rc == LY_ENOT) { |
| 1647 | LOGVAL(ctx, LYVE_DATA, "Missing NETCONF <notification> envelope or in incorrect namespace."); |
| 1648 | } |
| 1649 | LY_CHECK_GOTO(rc, cleanup); |
Michal Vasko | 1e4c68e | 2021-02-18 15:03:01 +0100 | [diff] [blame] | 1650 | break; |
| 1651 | case LYD_TYPE_REPLY_NETCONF: |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1652 | assert(parent); |
Michal Vasko | d71c2d4 | 2022-04-29 09:50:44 +0200 | [diff] [blame] | 1653 | rc = lydxml_env_netconf_reply(lydctx->xmlctx, envp, &int_opts, &close_elem); |
| 1654 | if (rc == LY_ENOT) { |
| 1655 | LOGVAL(ctx, LYVE_DATA, "Missing NETCONF <rpc-reply> envelope or in incorrect namespace."); |
| 1656 | } |
| 1657 | LY_CHECK_GOTO(rc, cleanup); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1658 | break; |
| 1659 | } |
| 1660 | lydctx->int_opts = int_opts; |
| 1661 | |
| 1662 | /* find the operation node if it exists already */ |
| 1663 | LY_CHECK_GOTO(rc = lyd_parser_find_operation(parent, int_opts, &lydctx->op_node), cleanup); |
| 1664 | |
| 1665 | /* parse XML data */ |
| 1666 | while (lydctx->xmlctx->status == LYXML_ELEMENT) { |
| 1667 | LY_CHECK_GOTO(rc = lydxml_subtree_r(lydctx, parent, first_p, parsed), cleanup); |
| 1668 | parsed_data_nodes = 1; |
| 1669 | |
| 1670 | if (!(int_opts & LYD_INTOPT_WITH_SIBLINGS)) { |
| 1671 | break; |
| 1672 | } |
Michal Vasko | 2552ea3 | 2020-12-08 15:32:34 +0100 | [diff] [blame] | 1673 | } |
| 1674 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1675 | /* close all opened elements */ |
| 1676 | for (i = 0; i < close_elem; ++i) { |
| 1677 | if (lydctx->xmlctx->status != LYXML_ELEM_CLOSE) { |
| 1678 | assert(lydctx->xmlctx->status == LYXML_ELEMENT); |
Radek Krejci | 422afb1 | 2021-03-04 16:38:16 +0100 | [diff] [blame] | 1679 | LOGVAL(lydctx->xmlctx->ctx, LYVE_SYNTAX, "Unexpected child element \"%.*s\".", |
| 1680 | (int)lydctx->xmlctx->name_len, lydctx->xmlctx->name); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1681 | rc = LY_EVALID; |
| 1682 | goto cleanup; |
| 1683 | } |
| 1684 | |
| 1685 | LY_CHECK_GOTO(rc = lyxml_ctx_next(lydctx->xmlctx), cleanup); |
Michal Vasko | 4189c0f | 2020-08-13 09:05:22 +0200 | [diff] [blame] | 1686 | } |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1687 | |
| 1688 | /* check final state */ |
| 1689 | if ((int_opts & LYD_INTOPT_NO_SIBLINGS) && (lydctx->xmlctx->status == LYXML_ELEMENT)) { |
| 1690 | LOGVAL(ctx, LYVE_SYNTAX, "Unexpected sibling node."); |
| 1691 | rc = LY_EVALID; |
| 1692 | goto cleanup; |
| 1693 | } |
Michal Vasko | c939fdd | 2022-01-03 11:35:13 +0100 | [diff] [blame] | 1694 | if ((int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_ACTION | LYD_INTOPT_NOTIF | LYD_INTOPT_REPLY)) && !lydctx->op_node) { |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1695 | LOGVAL(ctx, LYVE_DATA, "Missing the operation node."); |
| 1696 | rc = LY_EVALID; |
| 1697 | goto cleanup; |
| 1698 | } |
| 1699 | |
| 1700 | if (!parsed_data_nodes) { |
| 1701 | /* no data nodes were parsed */ |
| 1702 | lydctx->op_node = NULL; |
Michal Vasko | a8edff0 | 2020-03-27 14:47:01 +0100 | [diff] [blame] | 1703 | } |
| 1704 | |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 1705 | if (parse_opts & LYD_PARSE_SUBTREE) { |
| 1706 | /* check for a sibling element */ |
| 1707 | assert(subtree_sibling); |
| 1708 | if (!lyxml_ctx_peek(lydctx->xmlctx, &status) && (status == LYXML_ELEMENT)) { |
| 1709 | *subtree_sibling = 1; |
| 1710 | } else { |
| 1711 | *subtree_sibling = 0; |
| 1712 | } |
| 1713 | } |
| 1714 | |
Michal Vasko | a8edff0 | 2020-03-27 14:47:01 +0100 | [diff] [blame] | 1715 | cleanup: |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1716 | /* there should be no unres stored if validation should be skipped */ |
| 1717 | assert(!(parse_opts & LYD_PARSE_ONLY) || (!lydctx->node_types.count && !lydctx->meta_types.count && |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 1718 | !lydctx->node_when.count)); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1719 | |
| 1720 | if (rc) { |
| 1721 | lyd_xml_ctx_free((struct lyd_ctx *)lydctx); |
| 1722 | } else { |
| 1723 | *lydctx_p = (struct lyd_ctx *)lydctx; |
| 1724 | |
| 1725 | /* the XML context is no more needed, freeing it also stops logging line numbers which would be confusing now */ |
| 1726 | lyxml_ctx_free(lydctx->xmlctx); |
| 1727 | lydctx->xmlctx = NULL; |
Michal Vasko | 1ce933a | 2020-03-30 12:38:22 +0200 | [diff] [blame] | 1728 | } |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1729 | return rc; |
Michal Vasko | 1ce933a | 2020-03-30 12:38:22 +0200 | [diff] [blame] | 1730 | } |