Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 1 | /** |
| 2 | * @file parser_json.c |
| 3 | * @author Radek Krejci <rkrejci@cesnet.cz> |
| 4 | * @brief JSON data parser for libyang |
| 5 | * |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 6 | * Copyright (c) 2020 CESNET, z.s.p.o. |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 7 | * |
| 8 | * This source code is licensed under BSD 3-Clause License (the "License"). |
| 9 | * You may not use this file except in compliance with the License. |
| 10 | * You may obtain a copy of the License at |
| 11 | * |
| 12 | * https://opensource.org/licenses/BSD-3-Clause |
| 13 | */ |
| 14 | |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 15 | #define _GNU_SOURCE |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 16 | |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 17 | #include <assert.h> |
Radek Krejci | 47fab89 | 2020-11-05 17:02:41 +0100 | [diff] [blame] | 18 | #include <stdint.h> |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 19 | #include <stdlib.h> |
| 20 | #include <string.h> |
| 21 | |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 22 | #include "common.h" |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 23 | #include "context.h" |
Radek Krejci | 47fab89 | 2020-11-05 17:02:41 +0100 | [diff] [blame] | 24 | #include "dict.h" |
Michal Vasko | afac782 | 2020-10-20 14:22:26 +0200 | [diff] [blame] | 25 | #include "in_internal.h" |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 26 | #include "json.h" |
Radek Krejci | 47fab89 | 2020-11-05 17:02:41 +0100 | [diff] [blame] | 27 | #include "log.h" |
Radek Krejci | 7711410 | 2021-03-10 15:21:57 +0100 | [diff] [blame] | 28 | #include "parser_data.h" |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 29 | #include "parser_internal.h" |
Radek Krejci | 47fab89 | 2020-11-05 17:02:41 +0100 | [diff] [blame] | 30 | #include "set.h" |
| 31 | #include "tree.h" |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 32 | #include "tree_data.h" |
| 33 | #include "tree_data_internal.h" |
| 34 | #include "tree_schema.h" |
Radek Krejci | 47fab89 | 2020-11-05 17:02:41 +0100 | [diff] [blame] | 35 | #include "tree_schema_internal.h" |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 36 | #include "validation.h" |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 37 | |
| 38 | /** |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 39 | * @brief Free the JSON data parser context. |
| 40 | * |
| 41 | * JSON implementation of lyd_ctx_free_clb(). |
| 42 | */ |
| 43 | static void |
| 44 | lyd_json_ctx_free(struct lyd_ctx *lydctx) |
| 45 | { |
| 46 | struct lyd_json_ctx *ctx = (struct lyd_json_ctx *)lydctx; |
| 47 | |
| 48 | if (lydctx) { |
| 49 | lyd_ctx_free(lydctx); |
| 50 | lyjson_ctx_free(ctx->jsonctx); |
| 51 | free(ctx); |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | /** |
aPiecek | d2c3937 | 2021-06-16 14:03:12 +0200 | [diff] [blame] | 56 | * @brief Submit the responsibility for releasing the dynamic values to @p dst. |
| 57 | * |
| 58 | * @param[in] jsonctx JSON context which contains the dynamic value. |
| 59 | * @param[in,out] dst Pointer to which the responsibility will be submited. |
| 60 | * If the pointer is already pointing to some allocated memory, |
| 61 | * it is released beforehand. |
| 62 | */ |
| 63 | static void |
| 64 | lyjson_ctx_submit_dynamic_value(struct lyjson_ctx *jsonctx, char **dst) |
| 65 | { |
| 66 | assert(jsonctx && dst); |
| 67 | |
| 68 | if (!jsonctx->dynamic) { |
| 69 | return; |
| 70 | } |
| 71 | |
| 72 | if (dst) { |
| 73 | free(*dst); |
| 74 | } |
| 75 | *dst = NULL; |
| 76 | |
| 77 | /* Submit the dynamic value. */ |
| 78 | *dst = (char *)jsonctx->value; |
| 79 | |
| 80 | /* Responsibility for the release is now passed to @p dst. */ |
| 81 | jsonctx->dynamic = 0; |
| 82 | } |
| 83 | |
| 84 | /** |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 85 | * @brief Parse JSON member-name as [\@][prefix:][name] |
| 86 | * |
Michal Vasko | cabe070 | 2020-08-12 10:14:36 +0200 | [diff] [blame] | 87 | * \@ - metadata flag, maps to 1 in @p is_meta_p |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 88 | * prefix - name of the module of the data node |
| 89 | * name - name of the data node |
| 90 | * |
| 91 | * All the output parameter are mandatory. Function only parse the member-name, all the appropriate checks are up to the caller. |
| 92 | * |
| 93 | * @param[in] value String to parse |
| 94 | * @param[in] value_len Length of the @p str. |
| 95 | * @param[out] name_p Pointer to the beginning of the parsed name. |
| 96 | * @param[out] name_len_p Pointer to the length of the parsed name. |
| 97 | * @param[out] prefix_p Pointer to the beginning of the parsed prefix. If the member-name does not contain prefix, result is NULL. |
| 98 | * @param[out] prefix_len_p Pointer to the length of the parsed prefix. If the member-name does not contain prefix, result is 0. |
Michal Vasko | cabe070 | 2020-08-12 10:14:36 +0200 | [diff] [blame] | 99 | * @param[out] is_meta_p Pointer to the metadata flag, set to 1 if the member-name contains \@, 0 otherwise. |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 100 | */ |
| 101 | static void |
Michal Vasko | cabe070 | 2020-08-12 10:14:36 +0200 | [diff] [blame] | 102 | lydjson_parse_name(const char *value, size_t value_len, const char **name_p, size_t *name_len_p, const char **prefix_p, |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 103 | size_t *prefix_len_p, ly_bool *is_meta_p) |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 104 | { |
| 105 | const char *name, *prefix = NULL; |
| 106 | size_t name_len, prefix_len = 0; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 107 | ly_bool is_meta = 0; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 108 | |
| 109 | name = memchr(value, ':', value_len); |
| 110 | if (name != NULL) { |
| 111 | prefix = value; |
| 112 | if (*prefix == '@') { |
Michal Vasko | cabe070 | 2020-08-12 10:14:36 +0200 | [diff] [blame] | 113 | is_meta = 1; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 114 | prefix++; |
| 115 | } |
| 116 | prefix_len = name - prefix; |
| 117 | name++; |
Michal Vasko | cabe070 | 2020-08-12 10:14:36 +0200 | [diff] [blame] | 118 | name_len = value_len - (prefix_len + 1) - is_meta; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 119 | } else { |
| 120 | name = value; |
| 121 | if (name[0] == '@') { |
Michal Vasko | cabe070 | 2020-08-12 10:14:36 +0200 | [diff] [blame] | 122 | is_meta = 1; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 123 | name++; |
| 124 | } |
Michal Vasko | cabe070 | 2020-08-12 10:14:36 +0200 | [diff] [blame] | 125 | name_len = value_len - is_meta; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 126 | } |
| 127 | |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 128 | *name_p = name; |
| 129 | *name_len_p = name_len; |
| 130 | *prefix_p = prefix; |
| 131 | *prefix_len_p = prefix_len; |
Michal Vasko | cabe070 | 2020-08-12 10:14:36 +0200 | [diff] [blame] | 132 | *is_meta_p = is_meta; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 133 | } |
| 134 | |
| 135 | /** |
| 136 | * @brief Get correct prefix (module_name) inside the @p node. |
| 137 | * |
| 138 | * @param[in] node Data node to get inherited prefix. |
| 139 | * @param[in] local_prefix Local prefix to replace the inherited prefix. |
| 140 | * @param[in] local_prefix_len Length of the @p local_prefix string. In case of 0, the inherited prefix is taken. |
| 141 | * @param[out] prefix_p Pointer to the resulting prefix string, Note that the result can be NULL in case of no local prefix |
| 142 | * and no context @p node to get inherited prefix. |
| 143 | * @param[out] prefix_len_p Pointer to the length of the resulting @p prefix_p string. Note that the result can be 0 in case |
| 144 | * of no local prefix and no context @p node to get inherited prefix. |
| 145 | * @return LY_ERR value. |
| 146 | */ |
| 147 | static LY_ERR |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 148 | lydjson_get_node_prefix(struct lyd_node *node, const char *local_prefix, size_t local_prefix_len, const char **prefix_p, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 149 | size_t *prefix_len_p) |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 150 | { |
| 151 | struct lyd_node_opaq *onode; |
| 152 | const char *module_name = NULL; |
| 153 | |
| 154 | assert(prefix_p && prefix_len_p); |
| 155 | |
| 156 | if (local_prefix_len) { |
| 157 | *prefix_p = local_prefix; |
| 158 | *prefix_len_p = local_prefix_len; |
| 159 | return LY_SUCCESS; |
| 160 | } |
| 161 | |
| 162 | *prefix_p = NULL; |
| 163 | while (node) { |
| 164 | if (node->schema) { |
| 165 | *prefix_p = node->schema->module->name; |
| 166 | break; |
| 167 | } |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 168 | onode = (struct lyd_node_opaq *)node; |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 169 | if (onode->name.module_name) { |
| 170 | *prefix_p = onode->name.module_name; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 171 | break; |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 172 | } else if (onode->name.prefix) { |
| 173 | *prefix_p = onode->name.prefix; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 174 | break; |
| 175 | } |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 176 | node = lyd_parent(node); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 177 | } |
| 178 | *prefix_len_p = ly_strlen(module_name); |
| 179 | |
| 180 | return LY_SUCCESS; |
| 181 | } |
| 182 | |
| 183 | /** |
| 184 | * @brief Get schema node corresponding to the input parameters. |
| 185 | * |
| 186 | * @param[in] lydctx JSON data parser context. |
| 187 | * @param[in] is_attr Flag if the reference to the node is an attribute, for logging only. |
| 188 | * @param[in] prefix Requested node's prefix (module name). |
| 189 | * @param[in] prefix_len Length of the @p prefix. |
| 190 | * @param[in] name Requested node's name. |
| 191 | * @param[in] name_len Length of the @p name. |
Michal Vasko | 2552ea3 | 2020-12-08 15:32:34 +0100 | [diff] [blame] | 192 | * @param[in] parent Parent of the node being processed, can be NULL in case of top-level. |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 193 | * @param[out] snode_p Pointer to the found schema node corresponding to the input parameters. |
| 194 | * @return LY_SUCCES on success, note that even in this case the returned value of @p snode_p can be NULL, so the data are expected to be parsed as opaq. |
| 195 | * @return LY_EVALID on failure, error message is logged |
| 196 | * @return LY_ENOT in case the input data are expected to be skipped |
| 197 | */ |
| 198 | static LY_ERR |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 199 | lydjson_get_snode(const struct lyd_json_ctx *lydctx, ly_bool is_attr, const char *prefix, size_t prefix_len, const char *name, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 200 | size_t name_len, const struct lyd_node_inner *parent, const struct lysc_node **snode_p) |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 201 | { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 202 | LY_ERR ret = LY_SUCCESS; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 203 | struct lys_module *mod = NULL; |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 204 | uint32_t getnext_opts = lydctx->int_opts & LYD_INTOPT_REPLY ? LYS_GETNEXT_OUTPUT : 0; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 205 | |
| 206 | /* init return value */ |
| 207 | *snode_p = NULL; |
| 208 | |
Michal Vasko | 9e54340 | 2021-06-11 13:55:30 +0200 | [diff] [blame] | 209 | LOG_LOCSET(NULL, parent ? &parent->node : NULL, NULL, NULL); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 210 | |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 211 | /* get the element module */ |
Michal Vasko | 2552ea3 | 2020-12-08 15:32:34 +0100 | [diff] [blame] | 212 | if (prefix_len) { |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 213 | mod = ly_ctx_get_module_implemented2(lydctx->jsonctx->ctx, prefix, prefix_len); |
| 214 | } else if (parent) { |
| 215 | if (parent->schema) { |
| 216 | mod = parent->schema->module; |
| 217 | } |
| 218 | } else { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 219 | LOGVAL(lydctx->jsonctx->ctx, LYVE_SYNTAX_JSON, "Top-level JSON object member \"%.*s\" must be namespace-qualified.", |
Radek Krejci | 422afb1 | 2021-03-04 16:38:16 +0100 | [diff] [blame] | 220 | (int)(is_attr ? name_len + 1 : name_len), is_attr ? name - 1 : name); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 221 | ret = LY_EVALID; |
| 222 | goto cleanup; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 223 | } |
| 224 | if (!mod) { |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 225 | if (lydctx->parse_opts & LYD_PARSE_STRICT) { |
Radek Krejci | 422afb1 | 2021-03-04 16:38:16 +0100 | [diff] [blame] | 226 | LOGVAL(lydctx->jsonctx->ctx, LYVE_REFERENCE, "No module named \"%.*s\" in the context.", (int)prefix_len, prefix); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 227 | ret = LY_EVALID; |
| 228 | goto cleanup; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 229 | } |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 230 | if (!(lydctx->parse_opts & LYD_PARSE_OPAQ)) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 231 | ret = LY_ENOT; |
| 232 | goto cleanup; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 233 | } |
| 234 | } |
| 235 | |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 236 | /* get the schema node */ |
Michal Vasko | 5d54ad7 | 2021-07-22 15:36:01 +0200 | [diff] [blame] | 237 | if (mod && (!parent || parent->schema)) { |
Radek Krejci | f16e254 | 2021-02-17 15:39:23 +0100 | [diff] [blame] | 238 | if (!parent && lydctx->ext) { |
Radek Krejci | ba05eab | 2021-03-10 13:19:29 +0100 | [diff] [blame] | 239 | *snode_p = 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] | 240 | } else { |
| 241 | *snode_p = lys_find_child(parent ? parent->schema : NULL, mod, name, name_len, 0, getnext_opts); |
| 242 | } |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 243 | if (!*snode_p) { |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 244 | if (lydctx->parse_opts & LYD_PARSE_STRICT) { |
Radek Krejci | f16e254 | 2021-02-17 15:39:23 +0100 | [diff] [blame] | 245 | if (lydctx->ext) { |
| 246 | if (lydctx->ext->argument) { |
| 247 | LOGVAL(lydctx->jsonctx->ctx, LYVE_REFERENCE, "Node \"%.*s\" not found in the \"%s\" %s extension instance.", |
Radek Krejci | 422afb1 | 2021-03-04 16:38:16 +0100 | [diff] [blame] | 248 | (int)name_len, name, lydctx->ext->argument, lydctx->ext->def->name); |
Radek Krejci | f16e254 | 2021-02-17 15:39:23 +0100 | [diff] [blame] | 249 | } else { |
| 250 | LOGVAL(lydctx->jsonctx->ctx, LYVE_REFERENCE, "Node \"%.*s\" not found in the %s extension instance.", |
Radek Krejci | 422afb1 | 2021-03-04 16:38:16 +0100 | [diff] [blame] | 251 | (int)name_len, name, lydctx->ext->def->name); |
Radek Krejci | f16e254 | 2021-02-17 15:39:23 +0100 | [diff] [blame] | 252 | } |
| 253 | } else { |
| 254 | LOGVAL(lydctx->jsonctx->ctx, LYVE_REFERENCE, "Node \"%.*s\" not found in the \"%s\" module.", |
Radek Krejci | 422afb1 | 2021-03-04 16:38:16 +0100 | [diff] [blame] | 255 | (int)name_len, name, mod->name); |
Radek Krejci | f16e254 | 2021-02-17 15:39:23 +0100 | [diff] [blame] | 256 | } |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 257 | ret = LY_EVALID; |
| 258 | goto cleanup; |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 259 | } else if (!(lydctx->parse_opts & LYD_PARSE_OPAQ)) { |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 260 | /* skip element with children */ |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 261 | ret = LY_ENOT; |
| 262 | goto cleanup; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 263 | } |
| 264 | } else { |
| 265 | /* check that schema node is valid and can be used */ |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 266 | ret = lyd_parser_check_schema((struct lyd_ctx *)lydctx, *snode_p); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 267 | } |
| 268 | } |
| 269 | |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 270 | cleanup: |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 271 | LOG_LOCBACK(0, parent ? 1 : 0, 0, 0); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 272 | return ret; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 273 | } |
| 274 | |
| 275 | /** |
| 276 | * @brief Skip the currently open JSON object/array |
| 277 | * @param[in] jsonctx JSON context with the input data to skip. |
| 278 | * @return LY_ERR value. |
| 279 | */ |
| 280 | static LY_ERR |
| 281 | lydjson_data_skip(struct lyjson_ctx *jsonctx) |
| 282 | { |
| 283 | enum LYJSON_PARSER_STATUS status, current; |
| 284 | size_t sublevels = 1; |
| 285 | |
| 286 | status = lyjson_ctx_status(jsonctx, 0); |
| 287 | |
| 288 | /* skip after the content */ |
| 289 | do { |
Juraj Vijtiuk | 2e88368 | 2021-09-20 17:00:56 +0200 | [diff] [blame] | 290 | uint32_t prev_depth = jsonctx->depth; |
| 291 | |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 292 | LY_CHECK_RET(lyjson_ctx_next(jsonctx, ¤t)); |
Juraj Vijtiuk | 2e88368 | 2021-09-20 17:00:56 +0200 | [diff] [blame] | 293 | |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 294 | if (current == status) { |
Juraj Vijtiuk | 2e88368 | 2021-09-20 17:00:56 +0200 | [diff] [blame] | 295 | /* lyjson_ctx_next() can return LYSJON_OBJECT in two cases, either when |
| 296 | * a new object is encountered, or when it finishes parsing a value from a |
| 297 | * previous key-value pair. In the latter case the sublevel shouldn't increase. |
| 298 | */ |
| 299 | if ((status == LYJSON_OBJECT) && (prev_depth == jsonctx->depth)) { |
| 300 | continue; |
| 301 | } |
| 302 | |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 303 | sublevels++; |
Juraj Vijtiuk | 2e88368 | 2021-09-20 17:00:56 +0200 | [diff] [blame] | 304 | } else if ((status == LYJSON_OBJECT) && (current == LYJSON_OBJECT_CLOSED)) { |
Juraj Vijtiuk | 46eb15e | 2021-09-06 15:38:36 +0200 | [diff] [blame] | 305 | sublevels--; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 306 | } |
Radek Krejci | 79856c4 | 2020-11-19 11:44:08 +0100 | [diff] [blame] | 307 | } while (current != status + 1 || sublevels); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 308 | /* open the next sibling */ |
| 309 | LY_CHECK_RET(lyjson_ctx_next(jsonctx, NULL)); |
| 310 | |
| 311 | return LY_SUCCESS; |
| 312 | } |
| 313 | |
| 314 | /** |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 315 | * @brief Check that the input data are parseable as the @p list. |
| 316 | * |
| 317 | * Checks for all the list's keys. Function does not revert the context state. |
| 318 | * |
| 319 | * @param[in] jsonctx JSON parser context. |
| 320 | * @param[in] list List schema node corresponding to the input data object. |
| 321 | * @return LY_SUCCESS in case the data are ok for the @p list |
| 322 | * @return LY_ENOT in case the input data are not sufficient to fully parse the list instance. |
| 323 | */ |
| 324 | static LY_ERR |
| 325 | lydjson_check_list(struct lyjson_ctx *jsonctx, const struct lysc_node *list) |
| 326 | { |
| 327 | LY_ERR ret = LY_SUCCESS; |
| 328 | enum LYJSON_PARSER_STATUS status = lyjson_ctx_status(jsonctx, 0); |
| 329 | struct ly_set key_set = {0}; |
| 330 | const struct lysc_node *snode; |
| 331 | uint32_t i, status_count; |
| 332 | |
| 333 | assert(list && (list->nodetype == LYS_LIST)); |
| 334 | assert(status == LYJSON_OBJECT); |
| 335 | |
| 336 | /* get all keys into a set (keys do not have if-features or anything) */ |
| 337 | snode = NULL; |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 338 | while ((snode = lys_getnext(snode, list, NULL, 0)) && (snode->flags & LYS_KEY)) { |
Radek Krejci | 3d92e44 | 2020-10-12 12:48:13 +0200 | [diff] [blame] | 339 | ret = ly_set_add(&key_set, (void *)snode, 1, NULL); |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 340 | LY_CHECK_GOTO(ret, cleanup); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 341 | } |
| 342 | |
| 343 | if (status != LYJSON_OBJECT_EMPTY) { |
| 344 | status_count = jsonctx->status.count; |
| 345 | |
| 346 | while (key_set.count && status != LYJSON_OBJECT_CLOSED) { |
| 347 | const char *name, *prefix; |
| 348 | size_t name_len, prefix_len; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 349 | ly_bool is_attr; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 350 | |
| 351 | /* match the key */ |
| 352 | snode = NULL; |
| 353 | lydjson_parse_name(jsonctx->value, jsonctx->value_len, &name, &name_len, &prefix, &prefix_len, &is_attr); |
| 354 | |
| 355 | if (!is_attr && !prefix) { |
| 356 | for (i = 0; i < key_set.count; ++i) { |
| 357 | snode = (const struct lysc_node *)key_set.objs[i]; |
| 358 | if (!ly_strncmp(snode->name, name, name_len)) { |
| 359 | break; |
| 360 | } |
| 361 | } |
| 362 | /* go into the item to a) process it as a key or b) start skipping it as another list child */ |
| 363 | ret = lyjson_ctx_next(jsonctx, &status); |
| 364 | LY_CHECK_GOTO(ret, cleanup); |
| 365 | |
| 366 | if (snode) { |
| 367 | /* we have the key, validate the value */ |
| 368 | if (status < LYJSON_NUMBER) { |
| 369 | /* not a terminal */ |
| 370 | ret = LY_ENOT; |
| 371 | goto cleanup; |
| 372 | } |
| 373 | |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 374 | ret = lys_value_validate(NULL, snode, jsonctx->value, jsonctx->value_len, LY_VALUE_JSON, NULL); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 375 | LY_CHECK_GOTO(ret, cleanup); |
| 376 | |
| 377 | /* key with a valid value, remove from the set */ |
| 378 | ly_set_rm_index(&key_set, i, NULL); |
| 379 | } |
| 380 | } else { |
| 381 | /* start skipping the member we are not interested in */ |
| 382 | ret = lyjson_ctx_next(jsonctx, &status); |
| 383 | LY_CHECK_GOTO(ret, cleanup); |
| 384 | } |
| 385 | /* move to the next child */ |
| 386 | while (status_count < jsonctx->status.count) { |
| 387 | ret = lyjson_ctx_next(jsonctx, &status); |
| 388 | LY_CHECK_GOTO(ret, cleanup); |
| 389 | } |
| 390 | } |
| 391 | } |
| 392 | |
| 393 | if (key_set.count) { |
| 394 | /* some keys are missing/did not validate */ |
| 395 | ret = LY_ENOT; |
| 396 | } |
| 397 | |
| 398 | cleanup: |
| 399 | ly_set_erase(&key_set, NULL); |
| 400 | return ret; |
| 401 | } |
| 402 | |
| 403 | /** |
| 404 | * @brief Get the hint for the data type parsers according to the current JSON parser context. |
| 405 | * |
| 406 | * @param[in] lydctx JSON data parser context. The context is supposed to be on a value. |
| 407 | * @param[in,out] status Pointer to the current context status, |
| 408 | * in some circumstances the function manipulates with the context so the status is updated. |
| 409 | * @param[out] type_hint_p Pointer to the variable to store the result. |
| 410 | * @return LY_SUCCESS in case of success. |
| 411 | * @return LY_EINVAL in case of invalid context status not referring to a value. |
| 412 | */ |
| 413 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 414 | lydjson_value_type_hint(struct lyd_json_ctx *lydctx, enum LYJSON_PARSER_STATUS *status_p, uint32_t *type_hint_p) |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 415 | { |
| 416 | *type_hint_p = 0; |
| 417 | |
| 418 | if (*status_p == LYJSON_ARRAY) { |
| 419 | /* only [null] */ |
| 420 | LY_CHECK_RET(lyjson_ctx_next(lydctx->jsonctx, status_p)); |
| 421 | LY_CHECK_RET(*status_p != LYJSON_NULL, LY_EINVAL); |
| 422 | |
| 423 | LY_CHECK_RET(lyjson_ctx_next(lydctx->jsonctx, NULL)); |
| 424 | LY_CHECK_RET(lyjson_ctx_status(lydctx->jsonctx, 0) != LYJSON_ARRAY_CLOSED, LY_EINVAL); |
| 425 | |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 426 | *type_hint_p = LYD_VALHINT_EMPTY; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 427 | } else if (*status_p == LYJSON_STRING) { |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 428 | *type_hint_p = LYD_VALHINT_STRING | LYD_VALHINT_NUM64; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 429 | } else if (*status_p == LYJSON_NUMBER) { |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 430 | *type_hint_p = LYD_VALHINT_DECNUM; |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 431 | } else if ((*status_p == LYJSON_FALSE) || (*status_p == LYJSON_TRUE)) { |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 432 | *type_hint_p = LYD_VALHINT_BOOLEAN; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 433 | } else if (*status_p == LYJSON_NULL) { |
| 434 | *type_hint_p = 0; |
| 435 | } else { |
| 436 | return LY_EINVAL; |
| 437 | } |
| 438 | |
| 439 | return LY_SUCCESS; |
| 440 | } |
| 441 | |
| 442 | /** |
| 443 | * @brief Check in advance if the input data are parsable according to the provided @p snode. |
| 444 | * |
| 445 | * Note that the checks are done only in case the LYD_PARSE_OPAQ is allowed. Otherwise the same checking |
| 446 | * is naturally done when the data are really parsed. |
| 447 | * |
| 448 | * @param[in] lydctx JSON data parser context. When the function returns, the context is in the same state |
| 449 | * as before calling, despite it is necessary to process input data for checking. |
| 450 | * @param[in] snode Schema node corresponding to the member currently being processed in the context. |
| 451 | * @param[out] type_hint_p Pointer to a variable to store detected value type hint in case of leaf or leaf-list. |
| 452 | * @return LY_SUCCESS in case the data are ok for the @p snode or the LYD_PARSE_OPAQ is not enabled. |
| 453 | * @return LY_ENOT in case the input data are not sufficient to fully parse the list instance |
| 454 | * @return LY_EINVAL in case of invalid leaf JSON encoding |
| 455 | * and they are expected to be parsed as opaq nodes. |
| 456 | */ |
| 457 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 458 | lydjson_data_check_opaq(struct lyd_json_ctx *lydctx, const struct lysc_node *snode, uint32_t *type_hint_p) |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 459 | { |
| 460 | LY_ERR ret = LY_SUCCESS; |
| 461 | struct lyjson_ctx *jsonctx = lydctx->jsonctx; |
| 462 | enum LYJSON_PARSER_STATUS status; |
| 463 | |
| 464 | assert(snode); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 465 | |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 466 | if (!(snode->nodetype & (LYD_NODE_TERM | LYS_LIST))) { |
| 467 | /* can always be parsed as a data node if we have the schema node */ |
| 468 | return LY_SUCCESS; |
| 469 | } |
| 470 | |
Michal Vasko | 8543070 | 2021-07-21 14:29:56 +0200 | [diff] [blame] | 471 | /* backup parser */ |
| 472 | lyjson_ctx_backup(jsonctx); |
| 473 | status = lyjson_ctx_status(jsonctx, 0); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 474 | |
Michal Vasko | 8543070 | 2021-07-21 14:29:56 +0200 | [diff] [blame] | 475 | if (lydctx->parse_opts & LYD_PARSE_OPAQ) { |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 476 | /* check if the node is parseable. if not, NULL the snode to announce that it is supposed to be parsed |
| 477 | * as an opaq node */ |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 478 | switch (snode->nodetype) { |
| 479 | case LYS_LEAFLIST: |
| 480 | case LYS_LEAF: |
| 481 | /* value may not be valid in which case we parse it as an opaque node */ |
| 482 | ret = lydjson_value_type_hint(lydctx, &status, type_hint_p); |
| 483 | if (ret) { |
| 484 | break; |
| 485 | } |
| 486 | |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 487 | if (lys_value_validate(NULL, snode, jsonctx->value, jsonctx->value_len, LY_VALUE_JSON, NULL)) { |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 488 | ret = LY_ENOT; |
| 489 | } |
| 490 | break; |
| 491 | case LYS_LIST: |
| 492 | /* lists may not have all its keys */ |
| 493 | if (lydjson_check_list(jsonctx, snode)) { |
| 494 | /* invalid list, parse as opaque if it missing/has invalid some keys */ |
| 495 | ret = LY_ENOT; |
| 496 | } |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 497 | break; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 498 | } |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 499 | } else if (snode->nodetype & LYD_NODE_TERM) { |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 500 | status = lyjson_ctx_status(jsonctx, 0); |
| 501 | ret = lydjson_value_type_hint(lydctx, &status, type_hint_p); |
| 502 | } |
| 503 | |
Michal Vasko | 8543070 | 2021-07-21 14:29:56 +0200 | [diff] [blame] | 504 | /* restore parser */ |
| 505 | lyjson_ctx_restore(jsonctx); |
| 506 | |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 507 | return ret; |
| 508 | } |
| 509 | |
| 510 | /** |
| 511 | * @brief Join the forward-referencing metadata with their target data nodes. |
| 512 | * |
| 513 | * Note that JSON encoding for YANG data allows forward-referencing metadata only for leafs/leaf-lists. |
| 514 | * |
| 515 | * @param[in] lydctx JSON data parser context. |
| 516 | * @param[in,out] first_p Pointer to the first sibling node variable (top-level or in a particular parent node) |
| 517 | * as a starting point to search for the metadata's target data node |
| 518 | * @return LY_SUCCESS on success |
| 519 | * @return LY_EVALID in case there are some metadata with unresolved target data node instance |
| 520 | */ |
| 521 | static LY_ERR |
| 522 | lydjson_metadata_finish(struct lyd_json_ctx *lydctx, struct lyd_node **first_p) |
| 523 | { |
| 524 | LY_ERR ret = LY_SUCCESS; |
aPiecek | 5057c2e | 2021-05-17 10:28:03 +0200 | [diff] [blame] | 525 | struct lyd_node *node, *attr, *next, *meta_iter; |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 526 | uint64_t instance = 0; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 527 | const char *prev = NULL; |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 528 | uint32_t log_location_items = 0; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 529 | |
| 530 | /* finish linking metadata */ |
| 531 | LY_LIST_FOR_SAFE(*first_p, next, attr) { |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 532 | struct lyd_node_opaq *meta_container = (struct lyd_node_opaq *)attr; |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 533 | uint64_t match = 0; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 534 | ly_bool is_attr; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 535 | const char *name, *prefix; |
| 536 | size_t name_len, prefix_len; |
| 537 | const struct lysc_node *snode; |
| 538 | |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 539 | if (attr->schema || (meta_container->name.name[0] != '@')) { |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 540 | /* not an opaq metadata node */ |
| 541 | continue; |
| 542 | } |
| 543 | |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 544 | LOG_LOCSET(NULL, attr, NULL, NULL); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 545 | log_location_items++; |
| 546 | |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 547 | if (prev != meta_container->name.name) { |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 548 | /* metas' names are stored in dictionary, so checking pointers must works */ |
| 549 | lydict_remove(lydctx->jsonctx->ctx, prev); |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 550 | LY_CHECK_GOTO(ret = lydict_insert(lydctx->jsonctx->ctx, meta_container->name.name, 0, &prev), cleanup); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 551 | instance = 1; |
| 552 | } else { |
| 553 | instance++; |
| 554 | } |
| 555 | |
aPiecek | 5057c2e | 2021-05-17 10:28:03 +0200 | [diff] [blame] | 556 | /* find the corresponding data node */ |
| 557 | LY_LIST_FOR(*first_p, node) { |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 558 | if (!node->schema) { |
| 559 | /* opaq node - we are going to put into it just a generic attribute. */ |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 560 | if (strcmp(&meta_container->name.name[1], ((struct lyd_node_opaq *)node)->name.name)) { |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 561 | continue; |
| 562 | } |
| 563 | |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 564 | if (((struct lyd_node_opaq *)node)->hints & LYD_NODEHINT_LIST) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 565 | LOGVAL(lydctx->jsonctx->ctx, LYVE_SYNTAX, "Metadata container references a sibling list node %s.", |
| 566 | ((struct lyd_node_opaq *)node)->name.name); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 567 | ret = LY_EVALID; |
| 568 | goto cleanup; |
| 569 | } |
| 570 | |
| 571 | /* match */ |
| 572 | match++; |
| 573 | if (match != instance) { |
| 574 | continue; |
| 575 | } |
| 576 | |
| 577 | LY_LIST_FOR(meta_container->child, meta_iter) { |
| 578 | /* convert opaq node to a attribute of the opaq node */ |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 579 | struct lyd_node_opaq *meta = (struct lyd_node_opaq *)meta_iter; |
Radek Krejci | bb27df3 | 2020-11-13 15:39:16 +0100 | [diff] [blame] | 580 | |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 581 | ret = lyd_create_attr(node, NULL, lydctx->jsonctx->ctx, meta->name.name, strlen(meta->name.name), |
| 582 | meta->name.prefix, ly_strlen(meta->name.prefix), meta->name.module_name, |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 583 | ly_strlen(meta->name.module_name), meta->value, ly_strlen(meta->value), NULL, LY_VALUE_JSON, |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 584 | NULL, meta->hints); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 585 | LY_CHECK_GOTO(ret, cleanup); |
| 586 | } |
| 587 | |
| 588 | /* done */ |
| 589 | break; |
| 590 | } else { |
| 591 | /* this is the second time we are resolving the schema node, so it must succeed, |
| 592 | * but remember that snode can be still NULL */ |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 593 | lydjson_parse_name(meta_container->name.name, strlen(meta_container->name.name), &name, &name_len, |
| 594 | &prefix, &prefix_len, &is_attr); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 595 | assert(is_attr); |
| 596 | ret = lydjson_get_snode(lydctx, is_attr, prefix, prefix_len, name, name_len, (*first_p)->parent, &snode); |
| 597 | assert(ret == LY_SUCCESS); |
| 598 | |
| 599 | if (snode != node->schema) { |
| 600 | continue; |
| 601 | } |
| 602 | |
| 603 | /* match */ |
| 604 | match++; |
| 605 | if (match != instance) { |
| 606 | continue; |
| 607 | } |
| 608 | |
| 609 | LY_LIST_FOR(meta_container->child, meta_iter) { |
| 610 | /* convert opaq node to a metadata of the node */ |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 611 | struct lyd_node_opaq *meta = (struct lyd_node_opaq *)meta_iter; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 612 | struct lys_module *mod = NULL; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 613 | |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 614 | mod = ly_ctx_get_module_implemented(lydctx->jsonctx->ctx, meta->name.prefix); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 615 | if (mod) { |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 616 | ret = lyd_parser_create_meta((struct lyd_ctx *)lydctx, node, NULL, mod, |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 617 | meta->name.name, strlen(meta->name.name), meta->value, ly_strlen(meta->value), |
Michal Vasko | 02cf266 | 2021-07-22 15:36:29 +0200 | [diff] [blame] | 618 | NULL, LY_VALUE_JSON, NULL, meta->hints); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 619 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 620 | } else if (lydctx->parse_opts & LYD_PARSE_STRICT) { |
Michal Vasko | 4eab562 | 2021-07-22 15:36:45 +0200 | [diff] [blame] | 621 | if (meta->name.prefix) { |
| 622 | LOGVAL(lydctx->jsonctx->ctx, LYVE_REFERENCE, |
| 623 | "Unknown (or not implemented) YANG module \"%s\" of metadata \"%s%s%s\".", |
| 624 | meta->name.prefix, meta->name.prefix, ly_strlen(meta->name.prefix) ? ":" : "", |
| 625 | meta->name.name); |
| 626 | } else { |
| 627 | LOGVAL(lydctx->jsonctx->ctx, LYVE_REFERENCE, "Missing YANG module of metadata \"%s\".", |
| 628 | meta->name.name); |
| 629 | } |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 630 | ret = LY_EVALID; |
| 631 | goto cleanup; |
| 632 | } |
| 633 | } |
| 634 | /* add/correct flags */ |
Radek Krejci | 4f2e3e5 | 2021-03-30 14:20:28 +0200 | [diff] [blame] | 635 | lyd_parse_set_data_flags(node, &lydctx->node_when, &lydctx->node_exts, &node->meta, lydctx->parse_opts); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 636 | |
| 637 | /* done */ |
| 638 | break; |
| 639 | } |
| 640 | } |
| 641 | |
| 642 | if (match != instance) { |
| 643 | /* there is no corresponding data node for the metadata */ |
| 644 | if (instance > 1) { |
Michal Vasko | 54ba891 | 2021-07-23 12:46:23 +0200 | [diff] [blame] | 645 | LOGVAL(lydctx->jsonctx->ctx, LYVE_REFERENCE, "Missing JSON data instance #%" PRIu64 " to be coupled with %s metadata.", |
| 646 | instance, meta_container->name.name); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 647 | } else { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 648 | LOGVAL(lydctx->jsonctx->ctx, LYVE_REFERENCE, "Missing JSON data instance to be coupled with %s metadata.", |
| 649 | meta_container->name.name); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 650 | } |
| 651 | ret = LY_EVALID; |
| 652 | } else { |
| 653 | /* remove the opaq attr */ |
| 654 | if (attr == (*first_p)) { |
aPiecek | 5057c2e | 2021-05-17 10:28:03 +0200 | [diff] [blame] | 655 | *first_p = attr->next; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 656 | } |
| 657 | lyd_free_tree(attr); |
| 658 | } |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 659 | |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 660 | LOG_LOCBACK(0, log_location_items, 0, 0); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 661 | log_location_items = 0; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 662 | } |
| 663 | |
| 664 | cleanup: |
| 665 | lydict_remove(lydctx->jsonctx->ctx, prev); |
| 666 | |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 667 | LOG_LOCBACK(0, log_location_items, 0, 0); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 668 | return ret; |
| 669 | } |
| 670 | |
| 671 | /** |
| 672 | * @brief Parse a metadata member. |
| 673 | * |
| 674 | * @param[in] lydctx JSON data parser context. |
| 675 | * @param[in] snode Schema node of the metadata parent. |
| 676 | * @param[in] node Parent node in case the metadata is not forward-referencing (only LYD_NODE_TERM) |
| 677 | * so the data node does not exists. In such a case the metadata is stored in the context for the later |
| 678 | * processing by lydjson_metadata_finish(). |
| 679 | * @return LY_SUCCESS on success |
| 680 | * @return Various LY_ERR values in case of failure. |
| 681 | */ |
| 682 | static LY_ERR |
| 683 | lydjson_metadata(struct lyd_json_ctx *lydctx, const struct lysc_node *snode, struct lyd_node *node) |
| 684 | { |
| 685 | LY_ERR ret = LY_SUCCESS; |
| 686 | enum LYJSON_PARSER_STATUS status; |
| 687 | const char *expected; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 688 | ly_bool in_parent = 0; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 689 | const char *name, *prefix = NULL; |
aPiecek | 303fb25 | 2021-06-16 11:54:26 +0200 | [diff] [blame] | 690 | char *dynamic_prefname = NULL; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 691 | size_t name_len, prefix_len = 0; |
| 692 | struct lys_module *mod; |
| 693 | struct lyd_meta *meta = NULL; |
| 694 | const struct ly_ctx *ctx = lydctx->jsonctx->ctx; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 695 | ly_bool is_attr = 0; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 696 | struct lyd_node *prev = node; |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 697 | uint32_t instance = 0; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 698 | uint16_t nodetype; |
| 699 | |
| 700 | assert(snode || node); |
| 701 | |
| 702 | nodetype = snode ? snode->nodetype : LYS_CONTAINER; |
| 703 | |
| 704 | /* move to the second item in the name/X pair */ |
| 705 | ret = lyjson_ctx_next(lydctx->jsonctx, &status); |
| 706 | LY_CHECK_GOTO(ret, cleanup); |
| 707 | |
| 708 | /* check attribute encoding */ |
| 709 | switch (nodetype) { |
| 710 | case LYS_LEAFLIST: |
| 711 | expected = "@name/array of objects/nulls"; |
| 712 | |
| 713 | LY_CHECK_GOTO(status != LYJSON_ARRAY, representation_error); |
| 714 | |
| 715 | next_entry: |
| 716 | instance++; |
| 717 | |
| 718 | /* move into array / next entry */ |
| 719 | ret = lyjson_ctx_next(lydctx->jsonctx, &status); |
| 720 | LY_CHECK_GOTO(ret, cleanup); |
| 721 | |
| 722 | if (status == LYJSON_ARRAY_CLOSED) { |
| 723 | /* we are done, move after the array */ |
| 724 | ret = lyjson_ctx_next(lydctx->jsonctx, NULL); |
| 725 | goto cleanup; |
| 726 | } |
| 727 | LY_CHECK_GOTO(status != LYJSON_OBJECT && status != LYJSON_NULL, representation_error); |
| 728 | |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 729 | if (!node || (node->schema != prev->schema)) { |
Michal Vasko | 54ba891 | 2021-07-23 12:46:23 +0200 | [diff] [blame] | 730 | LOGVAL(lydctx->jsonctx->ctx, LYVE_REFERENCE, "Missing JSON data instance #%u of %s:%s to be coupled with metadata.", |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 731 | instance, prev->schema->module->name, prev->schema->name); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 732 | ret = LY_EVALID; |
| 733 | goto cleanup; |
| 734 | } |
| 735 | |
| 736 | if (status == LYJSON_NULL) { |
| 737 | /* continue with the next entry in the leaf-list array */ |
| 738 | prev = node; |
| 739 | node = node->next; |
| 740 | goto next_entry; |
| 741 | } |
| 742 | break; |
| 743 | case LYS_LEAF: |
| 744 | case LYS_ANYXML: |
| 745 | expected = "@name/object"; |
| 746 | |
aPiecek | 5b115fc | 2021-05-24 14:32:42 +0200 | [diff] [blame] | 747 | LY_CHECK_GOTO(status != LYJSON_OBJECT, representation_error); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 748 | break; |
| 749 | case LYS_CONTAINER: |
| 750 | case LYS_LIST: |
| 751 | case LYS_ANYDATA: |
| 752 | case LYS_NOTIF: |
| 753 | case LYS_ACTION: |
| 754 | case LYS_RPC: |
| 755 | in_parent = 1; |
| 756 | expected = "@/object"; |
| 757 | LY_CHECK_GOTO(status != LYJSON_OBJECT, representation_error); |
| 758 | break; |
Radek Krejci | 8f5fad2 | 2020-09-15 16:50:54 +0200 | [diff] [blame] | 759 | default: |
| 760 | LOGINT_RET(ctx); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 761 | } |
| 762 | |
| 763 | /* process all the members inside a single metadata object */ |
| 764 | assert(status == LYJSON_OBJECT); |
| 765 | |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 766 | LOG_LOCSET(snode, NULL, NULL, NULL); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 767 | |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 768 | while (status != LYJSON_OBJECT_CLOSED) { |
aPiecek | d2c3937 | 2021-06-16 14:03:12 +0200 | [diff] [blame] | 769 | lydjson_parse_name(lydctx->jsonctx->value, lydctx->jsonctx->value_len, &name, &name_len, &prefix, &prefix_len, &is_attr); |
| 770 | lyjson_ctx_submit_dynamic_value(lydctx->jsonctx, &dynamic_prefname); |
aPiecek | 303fb25 | 2021-06-16 11:54:26 +0200 | [diff] [blame] | 771 | |
Michal Vasko | 69d0ca1 | 2021-07-23 10:22:03 +0200 | [diff] [blame] | 772 | if (!name_len) { |
| 773 | LOGVAL(ctx, LYVE_SYNTAX_JSON, "Metadata in JSON found with an empty name, followed by: %.10s", name); |
| 774 | ret = LY_EVALID; |
| 775 | goto cleanup; |
| 776 | } else if (!prefix_len) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 777 | LOGVAL(ctx, LYVE_SYNTAX_JSON, "Metadata in JSON must be namespace-qualified, missing prefix for \"%.*s\".", |
Radek Krejci | 422afb1 | 2021-03-04 16:38:16 +0100 | [diff] [blame] | 778 | (int)lydctx->jsonctx->value_len, lydctx->jsonctx->value); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 779 | ret = LY_EVALID; |
| 780 | goto cleanup; |
| 781 | } else if (is_attr) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 782 | LOGVAL(ctx, LYVE_SYNTAX_JSON, "Invalid format of the Metadata identifier in JSON, unexpected '@' in \"%.*s\"", |
Radek Krejci | 422afb1 | 2021-03-04 16:38:16 +0100 | [diff] [blame] | 783 | (int)lydctx->jsonctx->value_len, lydctx->jsonctx->value); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 784 | ret = LY_EVALID; |
| 785 | goto cleanup; |
| 786 | } |
| 787 | |
| 788 | /* get the element module */ |
| 789 | mod = ly_ctx_get_module_implemented2(ctx, prefix, prefix_len); |
| 790 | if (!mod) { |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 791 | if (lydctx->parse_opts & LYD_PARSE_STRICT) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 792 | LOGVAL(ctx, LYVE_REFERENCE, "Prefix \"%.*s\" of the metadata \"%.*s\" does not match any module in the context.", |
Radek Krejci | 422afb1 | 2021-03-04 16:38:16 +0100 | [diff] [blame] | 793 | (int)prefix_len, prefix, (int)name_len, name); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 794 | ret = LY_EVALID; |
| 795 | goto cleanup; |
| 796 | } |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 797 | if (!(lydctx->parse_opts & LYD_PARSE_OPAQ)) { |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 798 | /* skip element with children */ |
| 799 | ret = lydjson_data_skip(lydctx->jsonctx); |
| 800 | LY_CHECK_GOTO(ret, cleanup); |
| 801 | status = lyjson_ctx_status(lydctx->jsonctx, 0); |
| 802 | /* end of the item */ |
| 803 | continue; |
| 804 | } |
| 805 | } |
| 806 | |
| 807 | /* get the value */ |
| 808 | ret = lyjson_ctx_next(lydctx->jsonctx, NULL); |
| 809 | LY_CHECK_GOTO(ret, cleanup); |
| 810 | |
| 811 | if (node->schema) { |
| 812 | /* create metadata */ |
| 813 | meta = NULL; |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 814 | ret = lyd_parser_create_meta((struct lyd_ctx *)lydctx, node, &meta, mod, name, name_len, lydctx->jsonctx->value, |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 815 | lydctx->jsonctx->value_len, &lydctx->jsonctx->dynamic, LY_VALUE_JSON, NULL, |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 816 | LYD_HINT_DATA); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 817 | LY_CHECK_GOTO(ret, cleanup); |
| 818 | |
| 819 | /* add/correct flags */ |
Radek Krejci | 4f2e3e5 | 2021-03-30 14:20:28 +0200 | [diff] [blame] | 820 | lyd_parse_set_data_flags(node, &lydctx->node_when, &lydctx->node_exts, &meta, lydctx->parse_opts); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 821 | } else { |
| 822 | /* create attribute */ |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 823 | const char *module_name; |
| 824 | size_t module_name_len; |
| 825 | |
| 826 | lydjson_get_node_prefix(node, prefix, prefix_len, &module_name, &module_name_len); |
| 827 | |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 828 | /* attr2 is always changed to the created attribute */ |
Michal Vasko | 501af03 | 2020-11-11 20:27:44 +0100 | [diff] [blame] | 829 | ret = lyd_create_attr(node, NULL, lydctx->jsonctx->ctx, name, name_len, prefix, prefix_len, module_name, |
| 830 | module_name_len, lydctx->jsonctx->value, lydctx->jsonctx->value_len, &lydctx->jsonctx->dynamic, |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 831 | LY_VALUE_JSON, NULL, 0); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 832 | LY_CHECK_GOTO(ret, cleanup); |
| 833 | } |
| 834 | /* next member */ |
| 835 | ret = lyjson_ctx_next(lydctx->jsonctx, &status); |
| 836 | LY_CHECK_GOTO(ret, cleanup); |
aPiecek | de3c692 | 2021-05-24 14:42:10 +0200 | [diff] [blame] | 837 | LY_CHECK_GOTO((status != LYJSON_OBJECT) && (status != LYJSON_OBJECT_CLOSED), representation_error); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 838 | } |
| 839 | |
| 840 | if (nodetype == LYS_LEAFLIST) { |
| 841 | /* continue by processing another metadata object for the following |
| 842 | * leaf-list instance since they are allways instantiated in JSON array */ |
| 843 | prev = node; |
| 844 | node = node->next; |
| 845 | goto next_entry; |
| 846 | } |
| 847 | |
| 848 | /* move after the metadata */ |
| 849 | ret = lyjson_ctx_next(lydctx->jsonctx, NULL); |
| 850 | LY_CHECK_GOTO(ret, cleanup); |
| 851 | |
Radek Krejci | 5813c36 | 2021-01-05 10:51:57 +0100 | [diff] [blame] | 852 | /* success */ |
| 853 | goto cleanup; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 854 | |
| 855 | representation_error: |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 856 | LOGVAL(ctx, LYVE_SYNTAX_JSON, |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 857 | "The attribute(s) of %s \"%s\" is expected to be represented as JSON %s, but input data contains @%s/%s.", |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 858 | lys_nodetype2str(nodetype), node->schema ? node->schema->name : ((struct lyd_node_opaq *)node)->name.name, |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 859 | expected, lyjson_token2str(status), in_parent ? "" : "name"); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 860 | |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 861 | ret = LY_EVALID; |
Radek Krejci | 5813c36 | 2021-01-05 10:51:57 +0100 | [diff] [blame] | 862 | |
| 863 | cleanup: |
aPiecek | 303fb25 | 2021-06-16 11:54:26 +0200 | [diff] [blame] | 864 | free(dynamic_prefname); |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 865 | LOG_LOCBACK(1, 0, 0, 0); |
Radek Krejci | 5813c36 | 2021-01-05 10:51:57 +0100 | [diff] [blame] | 866 | return ret; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 867 | } |
| 868 | |
| 869 | /** |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 870 | * @brief Eat the node pointed by @p node_p by inserting it into @p parent and maintain the @p first_p pointing |
| 871 | * to the first child node. |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 872 | * |
| 873 | * @param[in] parent Parent node to insert to, can be NULL in case of top-level (or provided first_p). |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 874 | * @param[in,out] first_p Pointer to the first sibling node in case of top-level. |
| 875 | * @param[in,out] node_p pointer to the new node to insert, after the insert is done, pointer is set to NULL. |
| 876 | * @param[in] last If set, always insert at the end. |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 877 | */ |
| 878 | static void |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 879 | lydjson_maintain_children(struct lyd_node_inner *parent, struct lyd_node **first_p, struct lyd_node **node_p, ly_bool last) |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 880 | { |
| 881 | if (*node_p) { |
| 882 | /* insert, keep first pointer correct */ |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 883 | lyd_insert_node(parent ? &parent->node : NULL, first_p, *node_p, last); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 884 | if (first_p) { |
| 885 | if (parent) { |
| 886 | *first_p = parent->child; |
| 887 | } else { |
| 888 | while ((*first_p)->prev->next) { |
| 889 | *first_p = (*first_p)->prev; |
| 890 | } |
| 891 | } |
| 892 | } |
| 893 | *node_p = NULL; |
| 894 | } |
| 895 | } |
| 896 | |
aPiecek | 4bf4721 | 2021-05-27 10:55:47 +0200 | [diff] [blame] | 897 | /** |
| 898 | * @brief Wrapper for ::lyd_create_opaq(). |
| 899 | * |
| 900 | * @param[in] lydctx JSON data parser context. |
| 901 | * @param[in] name Name of the opaq node to create. |
| 902 | * @param[in] name_len Length of the @p name string. |
| 903 | * @param[in] prefix Prefix of the opaq node to create. |
| 904 | * @param[in] prefix_len Length of the @p prefx string. |
| 905 | * @param[in] parent Data parent of the opaq node to create, can be NULL in case of top level, |
| 906 | * but must be set if @p first is not. |
| 907 | * @param[in,out] status_inner_p In case of processing JSON array, this parameter points to a standalone |
| 908 | * context status of the array content. Otherwise, it is supposed to be the same as @p status_p. |
| 909 | * @param[out] node_p Pointer to the created opaq node. |
| 910 | * @return LY_ERR value. |
| 911 | */ |
| 912 | static LY_ERR |
| 913 | lydjson_create_opaq(struct lyd_json_ctx *lydctx, const char *name, size_t name_len, const char *prefix, size_t prefix_len, |
| 914 | struct lyd_node_inner *parent, enum LYJSON_PARSER_STATUS *status_inner_p, struct lyd_node **node_p) |
| 915 | { |
| 916 | LY_ERR ret = LY_SUCCESS; |
| 917 | const char *value = NULL, *module_name; |
| 918 | size_t value_len = 0, module_name_len = 0; |
| 919 | ly_bool dynamic = 0; |
| 920 | uint32_t type_hint = 0; |
| 921 | |
| 922 | if ((*status_inner_p != LYJSON_OBJECT) && (*status_inner_p != LYJSON_OBJECT_EMPTY)) { |
| 923 | /* prepare for creating opaq node with a value */ |
| 924 | value = lydctx->jsonctx->value; |
| 925 | value_len = lydctx->jsonctx->value_len; |
| 926 | dynamic = lydctx->jsonctx->dynamic; |
| 927 | lydctx->jsonctx->dynamic = 0; |
| 928 | |
| 929 | LY_CHECK_RET(lydjson_value_type_hint(lydctx, status_inner_p, &type_hint)); |
| 930 | } |
| 931 | |
| 932 | /* create node */ |
Michal Vasko | d8e774e | 2021-06-15 14:58:07 +0200 | [diff] [blame] | 933 | lydjson_get_node_prefix(parent ? &parent->node : NULL, prefix, prefix_len, &module_name, &module_name_len); |
aPiecek | 4bf4721 | 2021-05-27 10:55:47 +0200 | [diff] [blame] | 934 | ret = lyd_create_opaq(lydctx->jsonctx->ctx, name, name_len, prefix, prefix_len, module_name, module_name_len, value, |
| 935 | value_len, &dynamic, LY_VALUE_JSON, NULL, type_hint, node_p); |
| 936 | if (dynamic) { |
| 937 | free((char *)value); |
| 938 | } |
| 939 | |
| 940 | return ret; |
| 941 | } |
| 942 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 943 | static LY_ERR lydjson_subtree_r(struct lyd_json_ctx *lydctx, struct lyd_node *parent, struct lyd_node **first_p, |
| 944 | struct ly_set *parsed); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 945 | |
| 946 | /** |
| 947 | * @brief Parse opaq node from the input. |
| 948 | * |
| 949 | * In case of processing array, the whole array is being processed and the resulting @p node_p is the last item of the array. |
| 950 | * |
| 951 | * @param[in] lydctx JSON data parser context. |
| 952 | * @param[in] name Name of the opaq node to create. |
| 953 | * @param[in] name_len Length of the @p name string. |
| 954 | * @param[in] prefix Prefix of the opaq node to create. |
| 955 | * @param[in] prefix_len Length of the @p prefx string. |
| 956 | * @param[in] parent Data parent of the opaq node to create, can be NULL in case of top level, |
| 957 | * but must be set if @p first is not. |
| 958 | * @param[in,out] status_p Pointer to the current status of the parser context, |
| 959 | * since the function manipulates with the context and process the input, the status can be updated. |
| 960 | * @param[in,out] status_inner_p In case of processing JSON array, this parameter points to a standalone |
| 961 | * context status of the array content. Otherwise, it is supposed to be the same as @p status_p. |
| 962 | * @param[in,out] first_p First top-level/parent sibling, must be set if @p parent is not. |
| 963 | * @param[out] node_p Pointer to the created opaq node. |
| 964 | * @return LY_ERR value. |
| 965 | */ |
| 966 | static LY_ERR |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 967 | lydjson_parse_opaq(struct lyd_json_ctx *lydctx, const char *name, size_t name_len, const char *prefix, size_t prefix_len, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 968 | struct lyd_node_inner *parent, enum LYJSON_PARSER_STATUS *status_p, |
| 969 | enum LYJSON_PARSER_STATUS *status_inner_p, struct lyd_node **first_p, struct lyd_node **node_p) |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 970 | { |
| 971 | LY_ERR ret = LY_SUCCESS; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 972 | |
aPiecek | 4bf4721 | 2021-05-27 10:55:47 +0200 | [diff] [blame] | 973 | ret = lydjson_create_opaq(lydctx, name, name_len, prefix, prefix_len, parent, status_inner_p, node_p); |
Radek Krejci | d46e46a | 2020-09-15 14:22:42 +0200 | [diff] [blame] | 974 | LY_CHECK_RET(ret); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 975 | |
Michal Vasko | 1a85d33 | 2021-08-27 10:35:28 +0200 | [diff] [blame] | 976 | if ((*status_p == LYJSON_ARRAY) && (*status_inner_p == LYJSON_NULL)) { |
| 977 | /* special array null value */ |
| 978 | ((struct lyd_node_opaq *)*node_p)->hints |= LYD_VALHINT_EMPTY; |
| 979 | |
| 980 | /* must be the only item */ |
| 981 | LY_CHECK_RET(lyjson_ctx_next(lydctx->jsonctx, status_inner_p)); |
| 982 | if (*status_inner_p != LYJSON_ARRAY_CLOSED) { |
| 983 | LOGVAL(lydctx->jsonctx->ctx, LYVE_SYNTAX, "Array \"null\" member with another member."); |
| 984 | return LY_EVALID; |
| 985 | } |
| 986 | |
| 987 | goto finish; |
| 988 | } |
| 989 | |
aPiecek | dbb8baf | 2021-05-27 11:01:51 +0200 | [diff] [blame] | 990 | while ((*status_p == LYJSON_ARRAY) || (*status_p == LYJSON_ARRAY_EMPTY)) { |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 991 | /* process another instance of the same node */ |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 992 | |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 993 | if ((*status_inner_p == LYJSON_OBJECT) || (*status_inner_p == LYJSON_OBJECT_EMPTY)) { |
Michal Vasko | 1a85d33 | 2021-08-27 10:35:28 +0200 | [diff] [blame] | 994 | /* array with objects, list */ |
| 995 | ((struct lyd_node_opaq *)*node_p)->hints |= LYD_NODEHINT_LIST; |
| 996 | |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 997 | /* but first process children of the object in the array */ |
Michal Vasko | 1a85d33 | 2021-08-27 10:35:28 +0200 | [diff] [blame] | 998 | while ((*status_inner_p != LYJSON_OBJECT_CLOSED) && (*status_inner_p != LYJSON_OBJECT_EMPTY)) { |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 999 | LY_CHECK_RET(lydjson_subtree_r(lydctx, *node_p, lyd_node_child_p(*node_p), NULL)); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1000 | *status_inner_p = lyjson_ctx_status(lydctx->jsonctx, 0); |
| 1001 | } |
Michal Vasko | 1a85d33 | 2021-08-27 10:35:28 +0200 | [diff] [blame] | 1002 | } else { |
| 1003 | /* array with values, leaf-list */ |
| 1004 | ((struct lyd_node_opaq *)*node_p)->hints |= LYD_NODEHINT_LEAFLIST; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1005 | } |
| 1006 | |
| 1007 | LY_CHECK_RET(lyjson_ctx_next(lydctx->jsonctx, status_inner_p)); |
aPiecek | dbb8baf | 2021-05-27 11:01:51 +0200 | [diff] [blame] | 1008 | if (*status_inner_p == LYJSON_ARRAY_CLOSED) { |
| 1009 | goto finish; |
| 1010 | } |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1011 | |
| 1012 | /* continue with the next instance */ |
aPiecek | dbb8baf | 2021-05-27 11:01:51 +0200 | [diff] [blame] | 1013 | assert(node_p); |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 1014 | lydjson_maintain_children(parent, first_p, node_p, lydctx->parse_opts & LYD_PARSE_ORDERED ? 1 : 0); |
aPiecek | dbb8baf | 2021-05-27 11:01:51 +0200 | [diff] [blame] | 1015 | ret = lydjson_create_opaq(lydctx, name, name_len, prefix, prefix_len, parent, status_inner_p, node_p); |
| 1016 | LY_CHECK_RET(ret); |
| 1017 | } |
| 1018 | |
| 1019 | if ((*status_p == LYJSON_OBJECT) || (*status_p == LYJSON_OBJECT_EMPTY)) { |
| 1020 | /* process children */ |
| 1021 | while (*status_p != LYJSON_OBJECT_CLOSED && *status_p != LYJSON_OBJECT_EMPTY) { |
| 1022 | LY_CHECK_RET(lydjson_subtree_r(lydctx, *node_p, lyd_node_child_p(*node_p), NULL)); |
| 1023 | *status_p = lyjson_ctx_status(lydctx->jsonctx, 0); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1024 | } |
| 1025 | } |
| 1026 | |
aPiecek | dbb8baf | 2021-05-27 11:01:51 +0200 | [diff] [blame] | 1027 | finish: |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1028 | /* finish linking metadata */ |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1029 | LY_CHECK_RET(lydjson_metadata_finish(lydctx, lyd_node_child_p(*node_p))); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1030 | |
| 1031 | /* move after the item */ |
| 1032 | return lyjson_ctx_next(lydctx->jsonctx, status_p); |
| 1033 | } |
| 1034 | |
| 1035 | /** |
aPiecek | 6cee5d0 | 2021-05-12 10:32:00 +0200 | [diff] [blame] | 1036 | * @brief Move to the second item in the name/X pair and parse opaq node from the input. |
| 1037 | * |
| 1038 | * This function is basically the wrapper of the ::lydjson_parse_opaq(). |
| 1039 | * In addition, it calls the ::json_ctx_next() and prepares the status_inner_p parameter |
| 1040 | * for ::lydjson_parse_opaq(). |
| 1041 | * |
| 1042 | * @param[in] lydctx JSON data parser context. |
| 1043 | * @param[in] name Name of the opaq node to create. |
| 1044 | * @param[in] name_len Length of the @p name string. |
| 1045 | * @param[in] prefix Prefix of the opaq node to create. |
| 1046 | * @param[in] prefix_len Length of the @p prefx string. |
| 1047 | * @param[in] parent Data parent of the opaq node to create, can be NULL in case of top level, |
| 1048 | * but must be set if @p first is not. |
| 1049 | * @param[in,out] status_p Pointer to the current status of the parser context, |
| 1050 | * since the function manipulates with the context and process the input, the status can be updated. |
| 1051 | * @param[in,out] first_p First top-level/parent sibling, must be set if @p parent is not. |
| 1052 | * @param[out] node_p Pointer to the created opaq node. |
| 1053 | * @return LY_ERR value. |
| 1054 | */ |
| 1055 | static LY_ERR |
| 1056 | lydjson_ctx_next_parse_opaq(struct lyd_json_ctx *lydctx, const char *name, size_t name_len, |
| 1057 | const char *prefix, size_t prefix_len, struct lyd_node_inner *parent, enum LYJSON_PARSER_STATUS *status_p, |
| 1058 | struct lyd_node **first_p, struct lyd_node **node_p) |
| 1059 | { |
| 1060 | enum LYJSON_PARSER_STATUS status_inner = 0; |
| 1061 | |
| 1062 | /* move to the second item in the name/X pair */ |
| 1063 | LY_CHECK_RET(lyjson_ctx_next(lydctx->jsonctx, status_p)); |
| 1064 | |
| 1065 | if (*status_p == LYJSON_ARRAY) { |
| 1066 | /* move into the array */ |
| 1067 | LY_CHECK_RET(lyjson_ctx_next(lydctx->jsonctx, &status_inner)); |
| 1068 | } else { |
| 1069 | /* just a flag to pass correct parameters into lydjson_parse_opaq() */ |
| 1070 | status_inner = LYJSON_ERROR; |
| 1071 | } |
| 1072 | |
| 1073 | if (status_inner == LYJSON_ERROR) { |
| 1074 | status_inner = *status_p; |
| 1075 | } |
| 1076 | |
| 1077 | /* parse opaq node from the input */ |
| 1078 | LY_CHECK_RET(lydjson_parse_opaq(lydctx, name, name_len, prefix, prefix_len, parent, status_p, &status_inner, first_p, node_p)); |
| 1079 | |
| 1080 | return LY_SUCCESS; |
| 1081 | } |
| 1082 | |
| 1083 | /** |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1084 | * @brief Process the attribute container (starting by @) |
| 1085 | * |
| 1086 | * @param[in] lydctx JSON data parser context. |
| 1087 | * @param[in] attr_node The data node referenced by the attribute container, if already known. |
| 1088 | * @param[in] snode The schema node of the data node referenced by the attribute container, if known. |
| 1089 | * @param[in] name Name of the opaq node to create. |
| 1090 | * @param[in] name_len Length of the @p name string. |
| 1091 | * @param[in] prefix Prefix of the opaq node to create. |
| 1092 | * @param[in] prefix_len Length of the @p prefx string. |
| 1093 | * @param[in] parent Data parent of the opaq node to create, can be NULL in case of top level, |
| 1094 | * but must be set if @p first is not. |
| 1095 | * @param[in,out] status_p Pointer to the current status of the parser context, |
| 1096 | * since the function manipulates with the context and process the input, the status can be updated. |
| 1097 | * @param[in,out] first_p First top-level/parent sibling, must be set if @p parent is not. |
| 1098 | * @param[out] node_p Pointer to the created opaq node. |
| 1099 | * @return LY_ERR value. |
| 1100 | */ |
| 1101 | static LY_ERR |
| 1102 | lydjson_parse_attribute(struct lyd_json_ctx *lydctx, struct lyd_node *attr_node, const struct lysc_node *snode, |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1103 | const char *name, size_t name_len, const char *prefix, size_t prefix_len, struct lyd_node *parent, |
| 1104 | enum LYJSON_PARSER_STATUS *status_p, struct lyd_node **first_p, struct lyd_node **node_p) |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1105 | { |
| 1106 | LY_ERR ret = LY_SUCCESS; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1107 | |
| 1108 | /* parse as an attribute to a node */ |
| 1109 | if (!attr_node && snode) { |
| 1110 | /* try to find the instance */ |
| 1111 | for (struct lyd_node *iter = *first_p; iter; iter = iter->next) { |
| 1112 | if (iter->schema == snode) { |
| 1113 | attr_node = iter; |
| 1114 | break; |
| 1115 | } |
| 1116 | } |
| 1117 | } |
| 1118 | if (!attr_node) { |
| 1119 | /* parse just as an opaq node with the name beginning with @, |
| 1120 | * later we have to check that it belongs to a standard node |
| 1121 | * and it is supposed to be converted to a metadata */ |
| 1122 | uint32_t prev_opts; |
| 1123 | |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1124 | /* backup parser options to parse unknown metadata as opaq nodes and try to resolve them later */ |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1125 | prev_opts = lydctx->parse_opts; |
| 1126 | lydctx->parse_opts &= ~LYD_PARSE_STRICT; |
| 1127 | lydctx->parse_opts |= LYD_PARSE_OPAQ; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1128 | |
aPiecek | 6cee5d0 | 2021-05-12 10:32:00 +0200 | [diff] [blame] | 1129 | ret = lydjson_ctx_next_parse_opaq(lydctx, prefix ? prefix - 1 : name - 1, prefix ? prefix_len + name_len + 2 : name_len + 1, |
| 1130 | NULL, 0, (struct lyd_node_inner *)parent, status_p, first_p, node_p); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1131 | |
| 1132 | /* restore the parser options */ |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1133 | lydctx->parse_opts = prev_opts; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1134 | } else { |
| 1135 | ret = lydjson_metadata(lydctx, snode, attr_node); |
| 1136 | } |
| 1137 | |
| 1138 | return ret; |
| 1139 | } |
| 1140 | |
| 1141 | /** |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 1142 | * @brief Parse a single instance of a node. |
| 1143 | * |
| 1144 | * @param[in] lydctx JSON data parser context. When the function returns, the context is in the same state |
| 1145 | * as before calling, despite it is necessary to process input data for checking. |
| 1146 | * @param[in] parent Data parent of the subtree, must be set if @p first is not. |
| 1147 | * @param[in,out] first_p Pointer to the variable holding the first top-level sibling, must be set if @p parent is not. |
| 1148 | * @param[in] snode Schema node corresponding to the member currently being processed in the context. |
| 1149 | * @param[in] name Parsed JSON node name. |
| 1150 | * @param[in] name_len Lenght of @p name. |
| 1151 | * @param[in] prefix Parsed JSON node prefix. |
| 1152 | * @param[in] prefix_len Length of @p prefix. |
| 1153 | * @param[in,out] status JSON parser status, is updated. |
| 1154 | * @param[out] node Parsed data (or opaque) node. |
| 1155 | * @return LY_SUCCESS if a node was successfully parsed, |
| 1156 | * @return LY_EINVAL in case of invalid JSON encoding, |
| 1157 | * @return LY_ERR on other errors. |
| 1158 | */ |
| 1159 | static LY_ERR |
| 1160 | lydjson_parse_instance(struct lyd_json_ctx *lydctx, struct lyd_node_inner *parent, struct lyd_node **first_p, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 1161 | const struct lysc_node *snode, const char *name, size_t name_len, const char *prefix, size_t prefix_len, |
| 1162 | enum LYJSON_PARSER_STATUS *status, struct lyd_node **node) |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 1163 | { |
| 1164 | LY_ERR ret; |
Radek Krejci | 2b18bf1 | 2020-11-06 11:20:20 +0100 | [diff] [blame] | 1165 | uint32_t type_hints = 0; |
Michal Vasko | 02ed9d8 | 2021-07-15 14:58:04 +0200 | [diff] [blame] | 1166 | uint32_t prev_parse_opts, prev_int_opts; |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 1167 | struct lyd_node *tree = NULL; |
| 1168 | |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 1169 | ret = lydjson_data_check_opaq(lydctx, snode, &type_hints); |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 1170 | if (ret == LY_SUCCESS) { |
| 1171 | assert(snode->nodetype & (LYD_NODE_TERM | LYD_NODE_INNER | LYD_NODE_ANY)); |
| 1172 | if (snode->nodetype & LYD_NODE_TERM) { |
| 1173 | /* create terminal node */ |
| 1174 | ret = lyd_parser_create_term((struct lyd_ctx *)lydctx, snode, lydctx->jsonctx->value, |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 1175 | lydctx->jsonctx->value_len, &lydctx->jsonctx->dynamic, LY_VALUE_JSON, NULL, |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 1176 | type_hints, node); |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 1177 | LY_CHECK_RET(ret); |
| 1178 | |
| 1179 | /* move JSON parser */ |
Michal Vasko | 8543070 | 2021-07-21 14:29:56 +0200 | [diff] [blame] | 1180 | if (*status == LYJSON_ARRAY) { |
| 1181 | /* only [null], 2 more moves are needed */ |
| 1182 | LY_CHECK_RET(lyjson_ctx_next(lydctx->jsonctx, status)); |
| 1183 | assert(*status == LYJSON_NULL); |
| 1184 | LY_CHECK_RET(lyjson_ctx_next(lydctx->jsonctx, status)); |
| 1185 | assert(*status == LYJSON_ARRAY_CLOSED); |
| 1186 | } |
| 1187 | LY_CHECK_RET(lyjson_ctx_next(lydctx->jsonctx, status)); |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 1188 | } else if (snode->nodetype & LYD_NODE_INNER) { |
| 1189 | /* create inner node */ |
| 1190 | LY_CHECK_RET(*status != LYJSON_OBJECT && *status != LYJSON_OBJECT_EMPTY, LY_EINVAL); |
| 1191 | |
| 1192 | ret = lyd_create_inner(snode, node); |
| 1193 | LY_CHECK_RET(ret); |
| 1194 | |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 1195 | LOG_LOCSET(snode, *node, NULL, NULL); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1196 | |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 1197 | /* process children */ |
| 1198 | while (*status != LYJSON_OBJECT_CLOSED && *status != LYJSON_OBJECT_EMPTY) { |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1199 | ret = lydjson_subtree_r(lydctx, *node, lyd_node_child_p(*node), NULL); |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 1200 | LY_CHECK_ERR_RET(ret, LOG_LOCBACK(1, 1, 0, 0), ret); |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 1201 | *status = lyjson_ctx_status(lydctx->jsonctx, 0); |
| 1202 | } |
| 1203 | |
| 1204 | /* finish linking metadata */ |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1205 | ret = lydjson_metadata_finish(lydctx, lyd_node_child_p(*node)); |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 1206 | LY_CHECK_ERR_RET(ret, LOG_LOCBACK(1, 1, 0, 0), ret); |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 1207 | |
| 1208 | if (snode->nodetype == LYS_LIST) { |
| 1209 | /* check all keys exist */ |
| 1210 | ret = lyd_parse_check_keys(*node); |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 1211 | LY_CHECK_ERR_RET(ret, LOG_LOCBACK(1, 1, 0, 0), ret); |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 1212 | } |
| 1213 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1214 | if (!(lydctx->parse_opts & LYD_PARSE_ONLY)) { |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 1215 | /* new node validation, autodelete CANNOT occur, all nodes are new */ |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1216 | ret = lyd_validate_new(lyd_node_child_p(*node), snode, NULL, NULL); |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 1217 | LY_CHECK_ERR_RET(ret, LOG_LOCBACK(1, 1, 0, 0), ret); |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 1218 | |
| 1219 | /* add any missing default children */ |
Radek Krejci | 4f2e3e5 | 2021-03-30 14:20:28 +0200 | [diff] [blame] | 1220 | ret = lyd_new_implicit_r(*node, lyd_node_child_p(*node), NULL, NULL, &lydctx->node_when, &lydctx->node_exts, |
| 1221 | &lydctx->node_types, (lydctx->val_opts & LYD_VALIDATE_NO_STATE) ? LYD_IMPLICIT_NO_STATE : 0, NULL); |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 1222 | LY_CHECK_ERR_RET(ret, LOG_LOCBACK(1, 1, 0, 0), ret); |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 1223 | } |
| 1224 | |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 1225 | LOG_LOCBACK(1, 1, 0, 0); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1226 | |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 1227 | /* move JSON parser */ |
| 1228 | ret = lyjson_ctx_next(lydctx->jsonctx, status); |
| 1229 | LY_CHECK_RET(ret); |
| 1230 | } else if (snode->nodetype & LYD_NODE_ANY) { |
| 1231 | /* create any node */ |
| 1232 | LY_CHECK_RET(*status != LYJSON_OBJECT && *status != LYJSON_OBJECT_EMPTY, LY_EINVAL); |
| 1233 | |
| 1234 | /* parse any data tree with correct options */ |
| 1235 | /* first backup the current options and then make the parser to process data as opaq nodes */ |
Michal Vasko | 02ed9d8 | 2021-07-15 14:58:04 +0200 | [diff] [blame] | 1236 | prev_parse_opts = lydctx->parse_opts; |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1237 | lydctx->parse_opts &= ~LYD_PARSE_STRICT; |
| 1238 | lydctx->parse_opts |= LYD_PARSE_OPAQ; |
Michal Vasko | 02ed9d8 | 2021-07-15 14:58:04 +0200 | [diff] [blame] | 1239 | prev_int_opts = lydctx->int_opts; |
| 1240 | lydctx->int_opts |= LYD_INTOPT_ANY | LYD_INTOPT_WITH_SIBLINGS; |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 1241 | |
| 1242 | /* process the anydata content */ |
| 1243 | while (*status != LYJSON_OBJECT_CLOSED && *status != LYJSON_OBJECT_EMPTY) { |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1244 | ret = lydjson_subtree_r(lydctx, NULL, &tree, NULL); |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 1245 | LY_CHECK_RET(ret); |
| 1246 | *status = lyjson_ctx_status(lydctx->jsonctx, 0); |
| 1247 | } |
| 1248 | |
| 1249 | /* restore parser options */ |
Michal Vasko | 02ed9d8 | 2021-07-15 14:58:04 +0200 | [diff] [blame] | 1250 | lydctx->parse_opts = prev_parse_opts; |
| 1251 | lydctx->int_opts = prev_int_opts; |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 1252 | |
| 1253 | /* finish linking metadata */ |
| 1254 | ret = lydjson_metadata_finish(lydctx, &tree); |
| 1255 | LY_CHECK_RET(ret); |
| 1256 | |
Michal Vasko | 366a4a1 | 2020-12-04 16:23:57 +0100 | [diff] [blame] | 1257 | ret = lyd_create_any(snode, tree, LYD_ANYDATA_DATATREE, 1, node); |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 1258 | LY_CHECK_RET(ret); |
| 1259 | } |
Michal Vasko | caf608d | 2021-07-23 13:51:23 +0200 | [diff] [blame] | 1260 | |
| 1261 | /* add/correct flags */ |
| 1262 | lyd_parse_set_data_flags(*node, &lydctx->node_when, &lydctx->node_exts, &(*node)->meta, lydctx->parse_opts); |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 1263 | } else if (ret == LY_ENOT) { |
| 1264 | /* parse it again as an opaq node */ |
| 1265 | ret = lydjson_parse_opaq(lydctx, name, name_len, prefix, prefix_len, parent, |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 1266 | status, status, first_p, node); |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 1267 | LY_CHECK_RET(ret); |
| 1268 | |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 1269 | if (snode->nodetype == LYS_LIST) { |
| 1270 | ((struct lyd_node_opaq *)*node)->hints |= LYD_NODEHINT_LIST; |
| 1271 | } else if (snode->nodetype == LYS_LEAFLIST) { |
| 1272 | ((struct lyd_node_opaq *)*node)->hints |= LYD_NODEHINT_LEAFLIST; |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 1273 | } |
| 1274 | } |
| 1275 | |
| 1276 | return ret; |
| 1277 | } |
| 1278 | |
| 1279 | /** |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 1280 | * @brief Parse JSON subtree. All leaf-list and list instances of a node are considered one subtree. |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1281 | * |
| 1282 | * @param[in] lydctx JSON data parser context. |
| 1283 | * @param[in] parent Data parent of the subtree, must be set if @p first is not. |
| 1284 | * @param[in,out] first_p Pointer to the variable holding the first top-level sibling, must be set if @p parent is not. |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1285 | * @param[in,out] parsed Optional set to add all the parsed siblings into. |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1286 | * @return LY_ERR value. |
| 1287 | */ |
| 1288 | static LY_ERR |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1289 | lydjson_subtree_r(struct lyd_json_ctx *lydctx, struct lyd_node *parent, struct lyd_node **first_p, struct ly_set *parsed) |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1290 | { |
| 1291 | LY_ERR ret = LY_SUCCESS; |
| 1292 | enum LYJSON_PARSER_STATUS status = lyjson_ctx_status(lydctx->jsonctx, 0); |
aPiecek | 49e2a3a | 2021-05-13 10:36:46 +0200 | [diff] [blame] | 1293 | const char *name, *prefix = NULL, *expected = NULL; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1294 | size_t name_len, prefix_len = 0; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 1295 | ly_bool is_meta = 0; |
Michal Vasko | cabe070 | 2020-08-12 10:14:36 +0200 | [diff] [blame] | 1296 | const struct lysc_node *snode = NULL; |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 1297 | struct lyd_node *node = NULL, *attr_node = NULL; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1298 | const struct ly_ctx *ctx = lydctx->jsonctx->ctx; |
aPiecek | 49e2a3a | 2021-05-13 10:36:46 +0200 | [diff] [blame] | 1299 | char *value = NULL; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1300 | |
| 1301 | assert(parent || first_p); |
| 1302 | assert(status == LYJSON_OBJECT); |
| 1303 | |
| 1304 | /* process the node name */ |
aPiecek | d2c3937 | 2021-06-16 14:03:12 +0200 | [diff] [blame] | 1305 | lydjson_parse_name(lydctx->jsonctx->value, lydctx->jsonctx->value_len, &name, &name_len, &prefix, &prefix_len, &is_meta); |
| 1306 | lyjson_ctx_submit_dynamic_value(lydctx->jsonctx, &value); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1307 | |
Michal Vasko | cabe070 | 2020-08-12 10:14:36 +0200 | [diff] [blame] | 1308 | if (!is_meta || name_len || prefix_len) { |
| 1309 | /* get the schema node */ |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1310 | ret = lydjson_get_snode(lydctx, is_meta, prefix, prefix_len, name, name_len, (struct lyd_node_inner *)parent, &snode); |
Michal Vasko | cabe070 | 2020-08-12 10:14:36 +0200 | [diff] [blame] | 1311 | if (ret == LY_ENOT) { |
| 1312 | /* skip element with children */ |
| 1313 | ret = lydjson_data_skip(lydctx->jsonctx); |
| 1314 | LY_CHECK_GOTO(ret, cleanup); |
| 1315 | status = lyjson_ctx_status(lydctx->jsonctx, 0); |
| 1316 | /* nothing for now, continue with another call of lydjson_subtree_r() */ |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1317 | goto cleanup; |
| 1318 | } |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1319 | LY_CHECK_GOTO(ret, cleanup); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1320 | |
Michal Vasko | cabe070 | 2020-08-12 10:14:36 +0200 | [diff] [blame] | 1321 | if (!snode) { |
| 1322 | /* we will not be parsing it as metadata */ |
| 1323 | is_meta = 0; |
| 1324 | } |
| 1325 | } |
| 1326 | |
| 1327 | if (is_meta) { |
| 1328 | /* parse as metadata */ |
| 1329 | if (!name_len && !prefix_len) { |
| 1330 | /* parent's metadata without a name - use the schema from the parent */ |
| 1331 | if (!parent) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1332 | LOGVAL(ctx, LYVE_SYNTAX_JSON, |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 1333 | "Invalid metadata format - \"@\" can be used only inside anydata, container or list entries."); |
Michal Vasko | cabe070 | 2020-08-12 10:14:36 +0200 | [diff] [blame] | 1334 | ret = LY_EVALID; |
| 1335 | goto cleanup; |
| 1336 | } |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1337 | attr_node = parent; |
Michal Vasko | cabe070 | 2020-08-12 10:14:36 +0200 | [diff] [blame] | 1338 | snode = attr_node->schema; |
| 1339 | } |
| 1340 | ret = lydjson_parse_attribute(lydctx, attr_node, snode, name, name_len, prefix, prefix_len, parent, &status, |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 1341 | first_p, &node); |
Michal Vasko | cabe070 | 2020-08-12 10:14:36 +0200 | [diff] [blame] | 1342 | LY_CHECK_GOTO(ret, cleanup); |
| 1343 | } else if (!snode) { |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1344 | /* parse as an opaq node */ |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1345 | assert((lydctx->parse_opts & LYD_PARSE_OPAQ) || (lydctx->int_opts)); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1346 | |
aPiecek | b7b29e6 | 2021-05-11 10:02:43 +0200 | [diff] [blame] | 1347 | /* opaq node cannot have an empty string as the name. */ |
| 1348 | if (name_len == 0) { |
| 1349 | LOGVAL(lydctx->jsonctx->ctx, LYVE_SYNTAX_JSON, "A JSON object member name cannot be a zero-length string."); |
| 1350 | ret = LY_EVALID; |
| 1351 | goto cleanup; |
| 1352 | } |
| 1353 | |
aPiecek | 6cee5d0 | 2021-05-12 10:32:00 +0200 | [diff] [blame] | 1354 | /* move to the second item in the name/X pair and parse opaq */ |
| 1355 | ret = lydjson_ctx_next_parse_opaq(lydctx, name, name_len, prefix, prefix_len, |
| 1356 | (struct lyd_node_inner *)parent, &status, first_p, &node); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1357 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | cabe070 | 2020-08-12 10:14:36 +0200 | [diff] [blame] | 1358 | } else { |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 1359 | /* parse as a standard lyd_node but it can still turn out to be an opaque node */ |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1360 | |
| 1361 | /* move to the second item in the name/X pair */ |
| 1362 | ret = lyjson_ctx_next(lydctx->jsonctx, &status); |
| 1363 | LY_CHECK_GOTO(ret, cleanup); |
| 1364 | |
| 1365 | /* first check the expected representation according to the nodetype and then continue with the content */ |
| 1366 | switch (snode->nodetype) { |
| 1367 | case LYS_LEAFLIST: |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 1368 | case LYS_LIST: |
| 1369 | if (snode->nodetype == LYS_LEAFLIST) { |
| 1370 | expected = "name/array of values"; |
| 1371 | } else { |
| 1372 | expected = "name/array of objects"; |
| 1373 | } |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1374 | |
| 1375 | LY_CHECK_GOTO(status != LYJSON_ARRAY, representation_error); |
| 1376 | |
| 1377 | /* move into array */ |
| 1378 | ret = lyjson_ctx_next(lydctx->jsonctx, &status); |
| 1379 | LY_CHECK_GOTO(ret, cleanup); |
| 1380 | |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 1381 | /* process all the values/objects */ |
| 1382 | do { |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 1383 | lydjson_maintain_children((struct lyd_node_inner *)parent, first_p, &node, |
| 1384 | lydctx->parse_opts & LYD_PARSE_ORDERED ? 1 : 0); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1385 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1386 | ret = lydjson_parse_instance(lydctx, (struct lyd_node_inner *)parent, first_p, snode, name, name_len, |
| 1387 | prefix, prefix_len, &status, &node); |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 1388 | if (ret == LY_EINVAL) { |
| 1389 | goto representation_error; |
| 1390 | } else if (ret) { |
| 1391 | goto cleanup; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1392 | } |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 1393 | } while (status != LYJSON_ARRAY_CLOSED); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1394 | |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 1395 | /* move after the array */ |
| 1396 | ret = lyjson_ctx_next(lydctx->jsonctx, &status); |
| 1397 | LY_CHECK_GOTO(ret, cleanup); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1398 | |
| 1399 | break; |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 1400 | case LYS_LEAF: |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1401 | case LYS_CONTAINER: |
| 1402 | case LYS_NOTIF: |
| 1403 | case LYS_ACTION: |
| 1404 | case LYS_RPC: |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 1405 | case LYS_ANYDATA: |
| 1406 | case LYS_ANYXML: |
| 1407 | if (snode->nodetype == LYS_LEAF) { |
| 1408 | if (status == LYJSON_ARRAY) { |
| 1409 | expected = "name/[null]"; |
| 1410 | } else { |
| 1411 | expected = "name/value"; |
| 1412 | } |
| 1413 | } else { |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1414 | expected = "name/object"; |
| 1415 | } |
| 1416 | |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 1417 | /* process the value/object */ |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1418 | ret = lydjson_parse_instance(lydctx, (struct lyd_node_inner *)parent, first_p, snode, name, name_len, |
| 1419 | prefix, prefix_len, &status, &node); |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 1420 | if (ret == LY_EINVAL) { |
| 1421 | goto representation_error; |
| 1422 | } else if (ret) { |
| 1423 | goto cleanup; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1424 | } |
| 1425 | |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 1426 | if (snode->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) { |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1427 | /* rememeber the RPC/action/notification */ |
| 1428 | lydctx->op_node = node; |
| 1429 | } |
| 1430 | |
| 1431 | break; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1432 | } |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1433 | } |
| 1434 | |
Michal Vasko | 32ac994 | 2020-08-12 14:35:12 +0200 | [diff] [blame] | 1435 | /* finally connect the parsed node */ |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 1436 | lydjson_maintain_children((struct lyd_node_inner *)parent, first_p, &node, |
| 1437 | lydctx->parse_opts & LYD_PARSE_ORDERED ? 1 : 0); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1438 | |
| 1439 | /* rememeber a successfully parsed node */ |
| 1440 | if (parsed) { |
| 1441 | ly_set_add(parsed, node, 1, NULL); |
| 1442 | } |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1443 | |
Radek Krejci | 5813c36 | 2021-01-05 10:51:57 +0100 | [diff] [blame] | 1444 | /* success */ |
| 1445 | goto cleanup; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1446 | |
| 1447 | representation_error: |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1448 | LOG_LOCSET(NULL, parent, NULL, NULL); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1449 | LOGVAL(ctx, LYVE_SYNTAX_JSON, "The %s \"%s\" is expected to be represented as JSON %s, but input data contains name/%s.", |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 1450 | lys_nodetype2str(snode->nodetype), snode->name, expected, lyjson_token2str(status)); |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 1451 | LOG_LOCBACK(0, parent ? 1 : 0, 0, 0); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1452 | ret = LY_EVALID; |
Radek Krejci | 5813c36 | 2021-01-05 10:51:57 +0100 | [diff] [blame] | 1453 | |
| 1454 | cleanup: |
aPiecek | 49e2a3a | 2021-05-13 10:36:46 +0200 | [diff] [blame] | 1455 | free(value); |
Radek Krejci | 5813c36 | 2021-01-05 10:51:57 +0100 | [diff] [blame] | 1456 | lyd_free_tree(node); |
| 1457 | return ret; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1458 | } |
| 1459 | |
| 1460 | /** |
| 1461 | * @brief Common start of JSON parser processing different types of the input data. |
| 1462 | * |
| 1463 | * @param[in] ctx libyang context |
| 1464 | * @param[in] in Input structure. |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1465 | * @param[in] parse_opts Options for parser, see @ref dataparseroptions. |
| 1466 | * @param[in] val_opts Options for the validation phase, see @ref datavalidationoptions. |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1467 | * @param[out] lydctx_p Data parser context to finish validation. |
Radek Krejci | cd5f622 | 2020-11-12 08:54:13 +0100 | [diff] [blame] | 1468 | * @param[out] status Storage for the current context's status |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1469 | * @return LY_ERR value. |
| 1470 | */ |
| 1471 | static LY_ERR |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1472 | lyd_parse_json_init(const struct ly_ctx *ctx, struct ly_in *in, uint32_t parse_opts, uint32_t val_opts, |
Radek Krejci | cd5f622 | 2020-11-12 08:54:13 +0100 | [diff] [blame] | 1473 | struct lyd_json_ctx **lydctx_p, enum LYJSON_PARSER_STATUS *status) |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1474 | { |
| 1475 | LY_ERR ret = LY_SUCCESS; |
| 1476 | struct lyd_json_ctx *lydctx; |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 1477 | size_t i; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1478 | |
Radek Krejci | cd5f622 | 2020-11-12 08:54:13 +0100 | [diff] [blame] | 1479 | assert(lydctx_p); |
| 1480 | assert(status); |
| 1481 | |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1482 | /* init context */ |
| 1483 | lydctx = calloc(1, sizeof *lydctx); |
| 1484 | LY_CHECK_ERR_RET(!lydctx, LOGMEM(ctx), LY_EMEM); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1485 | lydctx->parse_opts = parse_opts; |
| 1486 | lydctx->val_opts = val_opts; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1487 | lydctx->free = lyd_json_ctx_free; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1488 | |
Radek Krejci | 284f31f | 2020-09-18 15:40:29 +0200 | [diff] [blame] | 1489 | /* starting top-level */ |
| 1490 | for (i = 0; in->current[i] != '\0' && is_jsonws(in->current[i]); i++) { |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 1491 | if (in->current[i] == '\n') { |
| 1492 | /* new line */ |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 1493 | LY_IN_NEW_LINE(in); |
Michal Vasko | 61d7636 | 2020-10-07 10:47:30 +0200 | [diff] [blame] | 1494 | } |
Radek Krejci | 284f31f | 2020-09-18 15:40:29 +0200 | [diff] [blame] | 1495 | } |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1496 | |
Radek Krejci | 284f31f | 2020-09-18 15:40:29 +0200 | [diff] [blame] | 1497 | LY_CHECK_ERR_RET(ret = lyjson_ctx_new(ctx, in, &lydctx->jsonctx), free(lydctx), ret); |
Radek Krejci | cd5f622 | 2020-11-12 08:54:13 +0100 | [diff] [blame] | 1498 | *status = lyjson_ctx_status(lydctx->jsonctx, 0); |
Radek Krejci | bb27df3 | 2020-11-13 15:39:16 +0100 | [diff] [blame] | 1499 | if ((*status == LYJSON_END) || (*status == LYJSON_OBJECT_EMPTY) || (*status == LYJSON_OBJECT)) { |
Radek Krejci | 284f31f | 2020-09-18 15:40:29 +0200 | [diff] [blame] | 1500 | *lydctx_p = lydctx; |
| 1501 | return LY_SUCCESS; |
Radek Krejci | cd5f622 | 2020-11-12 08:54:13 +0100 | [diff] [blame] | 1502 | } else { |
| 1503 | /* expecting top-level object */ |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1504 | LOGVAL(ctx, LYVE_SYNTAX_JSON, "Expected top-level JSON object, but %s found.", |
Radek Krejci | cd5f622 | 2020-11-12 08:54:13 +0100 | [diff] [blame] | 1505 | lyjson_token2str(*status)); |
| 1506 | *lydctx_p = NULL; |
Michal Vasko | 9350901 | 2020-11-13 10:26:09 +0100 | [diff] [blame] | 1507 | lyd_json_ctx_free((struct lyd_ctx *)lydctx); |
Radek Krejci | cd5f622 | 2020-11-12 08:54:13 +0100 | [diff] [blame] | 1508 | return LY_EVALID; |
Radek Krejci | 284f31f | 2020-09-18 15:40:29 +0200 | [diff] [blame] | 1509 | } |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1510 | } |
| 1511 | |
| 1512 | LY_ERR |
Radek Krejci | f16e254 | 2021-02-17 15:39:23 +0100 | [diff] [blame] | 1513 | lyd_parse_json(const struct ly_ctx *ctx, const struct lysc_ext_instance *ext, struct lyd_node *parent, |
| 1514 | struct lyd_node **first_p, struct ly_in *in, uint32_t parse_opts, uint32_t val_opts, enum lyd_type data_type, |
| 1515 | struct ly_set *parsed, struct lyd_ctx **lydctx_p) |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1516 | { |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1517 | LY_ERR rc = LY_SUCCESS; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1518 | struct lyd_json_ctx *lydctx = NULL; |
| 1519 | enum LYJSON_PARSER_STATUS status; |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1520 | uint32_t int_opts; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1521 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1522 | rc = lyd_parse_json_init(ctx, in, parse_opts, val_opts, &lydctx, &status); |
| 1523 | LY_CHECK_GOTO(rc || status == LYJSON_END || status == LYJSON_OBJECT_EMPTY, cleanup); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1524 | |
Radek Krejci | cd5f622 | 2020-11-12 08:54:13 +0100 | [diff] [blame] | 1525 | assert(status == LYJSON_OBJECT); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1526 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1527 | switch (data_type) { |
Michal Vasko | 1e4c68e | 2021-02-18 15:03:01 +0100 | [diff] [blame] | 1528 | case LYD_TYPE_DATA_YANG: |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1529 | int_opts = LYD_INTOPT_WITH_SIBLINGS; |
| 1530 | break; |
Michal Vasko | 1e4c68e | 2021-02-18 15:03:01 +0100 | [diff] [blame] | 1531 | case LYD_TYPE_RPC_YANG: |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1532 | int_opts = LYD_INTOPT_RPC | LYD_INTOPT_ACTION | LYD_INTOPT_NO_SIBLINGS; |
| 1533 | break; |
Michal Vasko | 1e4c68e | 2021-02-18 15:03:01 +0100 | [diff] [blame] | 1534 | case LYD_TYPE_NOTIF_YANG: |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1535 | int_opts = LYD_INTOPT_NOTIF | LYD_INTOPT_NO_SIBLINGS; |
| 1536 | break; |
Michal Vasko | 1e4c68e | 2021-02-18 15:03:01 +0100 | [diff] [blame] | 1537 | case LYD_TYPE_REPLY_YANG: |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1538 | int_opts = LYD_INTOPT_REPLY | LYD_INTOPT_NO_SIBLINGS; |
| 1539 | break; |
| 1540 | default: |
| 1541 | LOGINT(ctx); |
| 1542 | rc = LY_EINT; |
| 1543 | goto cleanup; |
| 1544 | } |
| 1545 | lydctx->int_opts = int_opts; |
Radek Krejci | f16e254 | 2021-02-17 15:39:23 +0100 | [diff] [blame] | 1546 | lydctx->ext = ext; |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1547 | |
| 1548 | /* find the operation node if it exists already */ |
| 1549 | LY_CHECK_GOTO(rc = lyd_parser_find_operation(parent, int_opts, &lydctx->op_node), cleanup); |
| 1550 | |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1551 | /* read subtree(s) */ |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1552 | while (lydctx->jsonctx->in->current[0] && (status != LYJSON_OBJECT_CLOSED)) { |
| 1553 | rc = lydjson_subtree_r(lydctx, parent, first_p, parsed); |
| 1554 | LY_CHECK_GOTO(rc, cleanup); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1555 | |
| 1556 | status = lyjson_ctx_status(lydctx->jsonctx, 0); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1557 | |
| 1558 | if (!(int_opts & LYD_INTOPT_WITH_SIBLINGS)) { |
| 1559 | break; |
| 1560 | } |
| 1561 | } |
| 1562 | |
| 1563 | if ((int_opts & LYD_INTOPT_NO_SIBLINGS) && lydctx->jsonctx->in->current[0] && |
| 1564 | (lyjson_ctx_status(lydctx->jsonctx, 0) != LYJSON_OBJECT_CLOSED)) { |
| 1565 | LOGVAL(ctx, LYVE_SYNTAX, "Unexpected sibling node."); |
| 1566 | rc = LY_EVALID; |
| 1567 | goto cleanup; |
| 1568 | } |
| 1569 | if ((int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_ACTION | LYD_INTOPT_NOTIF | LYD_INTOPT_REPLY)) && !lydctx->op_node) { |
| 1570 | LOGVAL(ctx, LYVE_DATA, "Missing the operation node."); |
| 1571 | rc = LY_EVALID; |
| 1572 | goto cleanup; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1573 | } |
| 1574 | |
| 1575 | /* finish linking metadata */ |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1576 | rc = lydjson_metadata_finish(lydctx, parent ? lyd_node_child_p(parent) : first_p); |
| 1577 | LY_CHECK_GOTO(rc, cleanup); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1578 | |
| 1579 | cleanup: |
| 1580 | /* there should be no unresolved types stored */ |
Michal Vasko | 58c8b56 | 2021-12-09 09:25:33 +0100 | [diff] [blame] | 1581 | assert(!(parse_opts & LYD_PARSE_ONLY) || !lydctx || (!lydctx->node_types.count && !lydctx->meta_types.count && |
Michal Vasko | 49c39d8 | 2020-11-06 17:20:27 +0100 | [diff] [blame] | 1582 | !lydctx->node_when.count)); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1583 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1584 | if (rc) { |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1585 | lyd_json_ctx_free((struct lyd_ctx *)lydctx); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1586 | } else { |
| 1587 | *lydctx_p = (struct lyd_ctx *)lydctx; |
| 1588 | } |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1589 | return rc; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 1590 | } |