blob: d17adc49828a33cea43b8ed1cb39fece5a0ead6e [file] [log] [blame]
Michal Vasko90932a92020-02-12 14:33:03 +01001/**
2 * @file parser_json.c
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief JSON data parser for libyang
5 *
Radek Krejci1798aae2020-07-14 13:26:06 +02006 * Copyright (c) 2020 CESNET, z.s.p.o.
Michal Vasko90932a92020-02-12 14:33:03 +01007 *
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 Krejci535ea9f2020-05-29 16:01:05 +020015#define _GNU_SOURCE
Michal Vasko90932a92020-02-12 14:33:03 +010016
Radek Krejci1798aae2020-07-14 13:26:06 +020017#include <assert.h>
Radek Krejci47fab892020-11-05 17:02:41 +010018#include <stdint.h>
Michal Vasko90932a92020-02-12 14:33:03 +010019#include <stdlib.h>
20#include <string.h>
21
Radek Krejci535ea9f2020-05-29 16:01:05 +020022#include "common.h"
Michal Vasko90932a92020-02-12 14:33:03 +010023#include "context.h"
Radek Krejci47fab892020-11-05 17:02:41 +010024#include "dict.h"
Michal Vaskoafac7822020-10-20 14:22:26 +020025#include "in_internal.h"
Radek Krejci1798aae2020-07-14 13:26:06 +020026#include "json.h"
Radek Krejci47fab892020-11-05 17:02:41 +010027#include "log.h"
Radek Krejci1798aae2020-07-14 13:26:06 +020028#include "parser_internal.h"
Radek Krejci47fab892020-11-05 17:02:41 +010029#include "set.h"
30#include "tree.h"
Radek Krejci1798aae2020-07-14 13:26:06 +020031#include "tree_data.h"
32#include "tree_data_internal.h"
33#include "tree_schema.h"
Radek Krejci47fab892020-11-05 17:02:41 +010034#include "tree_schema_internal.h"
Radek Krejci1798aae2020-07-14 13:26:06 +020035#include "validation.h"
Michal Vasko90932a92020-02-12 14:33:03 +010036
37/**
Radek Krejci1798aae2020-07-14 13:26:06 +020038 * @brief Internal context for JSON YANG data parser.
39 *
40 * Note that the structure maps to the lyd_ctx which is common for all the data parsers
41 */
42struct lyd_json_ctx {
43 uint32_t parse_options; /**< various @ref dataparseroptions. */
44 uint32_t validate_options; /**< various @ref datavalidationoptions. */
45 uint32_t int_opts; /**< internal data parser options */
46 uint32_t path_len; /**< used bytes in the path buffer */
47 char path[LYD_PARSER_BUFSIZE]; /**< buffer for the generated path */
Michal Vasko49c39d82020-11-06 17:20:27 +010048 struct ly_set node_types; /**< set of nodes validated with LY_EINCOMPLETE result */
49 struct ly_set meta_types; /**< set of metadata validated with LY_EINCOMPLETE result */
50 struct ly_set node_when; /**< set of nodes with "when" conditions */
Radek Krejci1798aae2020-07-14 13:26:06 +020051 struct lyd_node *op_node; /**< if an RPC/action/notification is being parsed, store the pointer to it */
52
53 /* callbacks */
54 lyd_ctx_free_clb free; /* destructor */
Radek Krejci1798aae2020-07-14 13:26:06 +020055
56 struct lyjson_ctx *jsonctx; /**< JSON context */
57};
58
59/**
60 * @brief Free the JSON data parser context.
61 *
62 * JSON implementation of lyd_ctx_free_clb().
63 */
64static void
65lyd_json_ctx_free(struct lyd_ctx *lydctx)
66{
67 struct lyd_json_ctx *ctx = (struct lyd_json_ctx *)lydctx;
68
69 if (lydctx) {
70 lyd_ctx_free(lydctx);
71 lyjson_ctx_free(ctx->jsonctx);
72 free(ctx);
73 }
74}
75
76/**
Radek Krejci1798aae2020-07-14 13:26:06 +020077 * @brief Parse JSON member-name as [\@][prefix:][name]
78 *
Michal Vaskocabe0702020-08-12 10:14:36 +020079 * \@ - metadata flag, maps to 1 in @p is_meta_p
Radek Krejci1798aae2020-07-14 13:26:06 +020080 * prefix - name of the module of the data node
81 * name - name of the data node
82 *
83 * All the output parameter are mandatory. Function only parse the member-name, all the appropriate checks are up to the caller.
84 *
85 * @param[in] value String to parse
86 * @param[in] value_len Length of the @p str.
87 * @param[out] name_p Pointer to the beginning of the parsed name.
88 * @param[out] name_len_p Pointer to the length of the parsed name.
89 * @param[out] prefix_p Pointer to the beginning of the parsed prefix. If the member-name does not contain prefix, result is NULL.
90 * @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 Vaskocabe0702020-08-12 10:14:36 +020091 * @param[out] is_meta_p Pointer to the metadata flag, set to 1 if the member-name contains \@, 0 otherwise.
Radek Krejci1798aae2020-07-14 13:26:06 +020092 */
93static void
Michal Vaskocabe0702020-08-12 10:14:36 +020094lydjson_parse_name(const char *value, size_t value_len, const char **name_p, size_t *name_len_p, const char **prefix_p,
Radek Krejci857189e2020-09-01 13:26:36 +020095 size_t *prefix_len_p, ly_bool *is_meta_p)
Radek Krejci1798aae2020-07-14 13:26:06 +020096{
97 const char *name, *prefix = NULL;
98 size_t name_len, prefix_len = 0;
Radek Krejci857189e2020-09-01 13:26:36 +020099 ly_bool is_meta = 0;
Radek Krejci1798aae2020-07-14 13:26:06 +0200100
101 name = memchr(value, ':', value_len);
102 if (name != NULL) {
103 prefix = value;
104 if (*prefix == '@') {
Michal Vaskocabe0702020-08-12 10:14:36 +0200105 is_meta = 1;
Radek Krejci1798aae2020-07-14 13:26:06 +0200106 prefix++;
107 }
108 prefix_len = name - prefix;
109 name++;
Michal Vaskocabe0702020-08-12 10:14:36 +0200110 name_len = value_len - (prefix_len + 1) - is_meta;
Radek Krejci1798aae2020-07-14 13:26:06 +0200111 } else {
112 name = value;
113 if (name[0] == '@') {
Michal Vaskocabe0702020-08-12 10:14:36 +0200114 is_meta = 1;
Radek Krejci1798aae2020-07-14 13:26:06 +0200115 name++;
116 }
Michal Vaskocabe0702020-08-12 10:14:36 +0200117 name_len = value_len - is_meta;
Michal Vasko90932a92020-02-12 14:33:03 +0100118 }
119
Radek Krejci1798aae2020-07-14 13:26:06 +0200120 *name_p = name;
121 *name_len_p = name_len;
122 *prefix_p = prefix;
123 *prefix_len_p = prefix_len;
Michal Vaskocabe0702020-08-12 10:14:36 +0200124 *is_meta_p = is_meta;
Radek Krejci1798aae2020-07-14 13:26:06 +0200125}
126
127/**
128 * @brief Get correct prefix (module_name) inside the @p node.
129 *
130 * @param[in] node Data node to get inherited prefix.
131 * @param[in] local_prefix Local prefix to replace the inherited prefix.
132 * @param[in] local_prefix_len Length of the @p local_prefix string. In case of 0, the inherited prefix is taken.
133 * @param[out] prefix_p Pointer to the resulting prefix string, Note that the result can be NULL in case of no local prefix
134 * and no context @p node to get inherited prefix.
135 * @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
136 * of no local prefix and no context @p node to get inherited prefix.
137 * @return LY_ERR value.
138 */
139static LY_ERR
Michal Vaskoa5da3292020-08-12 13:10:50 +0200140lydjson_get_node_prefix(struct lyd_node *node, const char *local_prefix, size_t local_prefix_len, const char **prefix_p,
Radek Krejci0f969882020-08-21 16:56:47 +0200141 size_t *prefix_len_p)
Radek Krejci1798aae2020-07-14 13:26:06 +0200142{
143 struct lyd_node_opaq *onode;
144 const char *module_name = NULL;
145
146 assert(prefix_p && prefix_len_p);
147
148 if (local_prefix_len) {
149 *prefix_p = local_prefix;
150 *prefix_len_p = local_prefix_len;
151 return LY_SUCCESS;
152 }
153
154 *prefix_p = NULL;
155 while (node) {
156 if (node->schema) {
157 *prefix_p = node->schema->module->name;
158 break;
159 }
Michal Vasko22df3f02020-08-24 13:29:22 +0200160 onode = (struct lyd_node_opaq *)node;
Michal Vaskoad92b672020-11-12 13:11:31 +0100161 if (onode->name.module_name) {
162 *prefix_p = onode->name.module_name;
Radek Krejci1798aae2020-07-14 13:26:06 +0200163 break;
Michal Vaskoad92b672020-11-12 13:11:31 +0100164 } else if (onode->name.prefix) {
165 *prefix_p = onode->name.prefix;
Radek Krejci1798aae2020-07-14 13:26:06 +0200166 break;
167 }
Michal Vasko22df3f02020-08-24 13:29:22 +0200168 node = (struct lyd_node *)node->parent;
Radek Krejci1798aae2020-07-14 13:26:06 +0200169 }
170 *prefix_len_p = ly_strlen(module_name);
171
172 return LY_SUCCESS;
173}
174
175/**
176 * @brief Get schema node corresponding to the input parameters.
177 *
178 * @param[in] lydctx JSON data parser context.
179 * @param[in] is_attr Flag if the reference to the node is an attribute, for logging only.
180 * @param[in] prefix Requested node's prefix (module name).
181 * @param[in] prefix_len Length of the @p prefix.
182 * @param[in] name Requested node's name.
183 * @param[in] name_len Length of the @p name.
Michal Vasko2552ea32020-12-08 15:32:34 +0100184 * @param[in] parent Parent of the node being processed, can be NULL in case of top-level.
Radek Krejci1798aae2020-07-14 13:26:06 +0200185 * @param[out] snode_p Pointer to the found schema node corresponding to the input parameters.
186 * @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.
187 * @return LY_EVALID on failure, error message is logged
188 * @return LY_ENOT in case the input data are expected to be skipped
189 */
190static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +0200191lydjson_get_snode(const struct lyd_json_ctx *lydctx, ly_bool is_attr, const char *prefix, size_t prefix_len, const char *name,
Radek Krejci0f969882020-08-21 16:56:47 +0200192 size_t name_len, const struct lyd_node_inner *parent, const struct lysc_node **snode_p)
Radek Krejci1798aae2020-07-14 13:26:06 +0200193{
Radek Krejci2efc45b2020-12-22 16:25:44 +0100194 LY_ERR ret = LY_SUCCESS;
Radek Krejci1798aae2020-07-14 13:26:06 +0200195 struct lys_module *mod = NULL;
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100196 uint32_t getnext_opts = lydctx->int_opts & LYD_INTOPT_REPLY ? LYS_GETNEXT_OUTPUT : 0;
Radek Krejci1798aae2020-07-14 13:26:06 +0200197
198 /* init return value */
199 *snode_p = NULL;
200
Radek Krejci2efc45b2020-12-22 16:25:44 +0100201 LOG_LOCSET(lydctx->jsonctx->ctx, NULL, (const struct lyd_node *)parent, NULL, NULL);
202
Radek Krejci1798aae2020-07-14 13:26:06 +0200203 /* get the element module */
Michal Vasko2552ea32020-12-08 15:32:34 +0100204 if (prefix_len) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200205 mod = ly_ctx_get_module_implemented2(lydctx->jsonctx->ctx, prefix, prefix_len);
206 } else if (parent) {
207 if (parent->schema) {
208 mod = parent->schema->module;
209 }
210 } else {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100211 LOGVAL(lydctx->jsonctx->ctx, LYVE_SYNTAX_JSON, "Top-level JSON object member \"%.*s\" must be namespace-qualified.",
Michal Vasko69730152020-10-09 16:30:07 +0200212 is_attr ? name_len + 1 : name_len, is_attr ? name - 1 : name);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100213 ret = LY_EVALID;
214 goto cleanup;
Radek Krejci1798aae2020-07-14 13:26:06 +0200215 }
216 if (!mod) {
217 if (lydctx->parse_options & LYD_PARSE_STRICT) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100218 LOGVAL(lydctx->jsonctx->ctx, LYVE_REFERENCE, "No module named \"%.*s\" in the context.", prefix_len, prefix);
219 ret = LY_EVALID;
220 goto cleanup;
Radek Krejci1798aae2020-07-14 13:26:06 +0200221 }
222 if (!(lydctx->parse_options & LYD_PARSE_OPAQ)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100223 ret = LY_ENOT;
224 goto cleanup;
Radek Krejci1798aae2020-07-14 13:26:06 +0200225 }
226 }
227
Radek Krejci1798aae2020-07-14 13:26:06 +0200228 /* get the schema node */
229 if (mod && (!parent || parent->schema)) {
230 *snode_p = lys_find_child(parent ? parent->schema : NULL, mod, name, name_len, 0, getnext_opts);
231 if (!*snode_p) {
232 if (lydctx->parse_options & LYD_PARSE_STRICT) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100233 LOGVAL(lydctx->jsonctx->ctx, LYVE_REFERENCE, "Node \"%.*s\" not found in the \"%s\" module.",
Michal Vasko69730152020-10-09 16:30:07 +0200234 name_len, name, mod->name);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100235 ret = LY_EVALID;
236 goto cleanup;
Radek Krejci1798aae2020-07-14 13:26:06 +0200237 } else if (!(lydctx->parse_options & LYD_PARSE_OPAQ)) {
238 /* skip element with children */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100239 ret = LY_ENOT;
240 goto cleanup;
Radek Krejci1798aae2020-07-14 13:26:06 +0200241 }
242 } else {
243 /* check that schema node is valid and can be used */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100244 ret = lyd_parser_check_schema((struct lyd_ctx *)lydctx, *snode_p);
Radek Krejci1798aae2020-07-14 13:26:06 +0200245 }
246 }
247
Radek Krejci2efc45b2020-12-22 16:25:44 +0100248cleanup:
249 LOG_LOCBACK(lydctx->jsonctx->ctx, 0, parent ? 1 : 0, 0, 0);
250 return ret;
Radek Krejci1798aae2020-07-14 13:26:06 +0200251}
252
253/**
254 * @brief Skip the currently open JSON object/array
255 * @param[in] jsonctx JSON context with the input data to skip.
256 * @return LY_ERR value.
257 */
258static LY_ERR
259lydjson_data_skip(struct lyjson_ctx *jsonctx)
260{
261 enum LYJSON_PARSER_STATUS status, current;
262 size_t sublevels = 1;
263
264 status = lyjson_ctx_status(jsonctx, 0);
265
266 /* skip after the content */
267 do {
268 LY_CHECK_RET(lyjson_ctx_next(jsonctx, &current));
269 if (current == status) {
270 sublevels++;
271 } else if (current == status + 1) {
272 sublevels--;
273 }
Radek Krejci79856c42020-11-19 11:44:08 +0100274 } while (current != status + 1 || sublevels);
Radek Krejci1798aae2020-07-14 13:26:06 +0200275 /* open the next sibling */
276 LY_CHECK_RET(lyjson_ctx_next(jsonctx, NULL));
277
278 return LY_SUCCESS;
279}
280
281/**
Radek Krejci1798aae2020-07-14 13:26:06 +0200282 * @brief Check that the input data are parseable as the @p list.
283 *
284 * Checks for all the list's keys. Function does not revert the context state.
285 *
286 * @param[in] jsonctx JSON parser context.
287 * @param[in] list List schema node corresponding to the input data object.
288 * @return LY_SUCCESS in case the data are ok for the @p list
289 * @return LY_ENOT in case the input data are not sufficient to fully parse the list instance.
290 */
291static LY_ERR
292lydjson_check_list(struct lyjson_ctx *jsonctx, const struct lysc_node *list)
293{
294 LY_ERR ret = LY_SUCCESS;
295 enum LYJSON_PARSER_STATUS status = lyjson_ctx_status(jsonctx, 0);
296 struct ly_set key_set = {0};
297 const struct lysc_node *snode;
298 uint32_t i, status_count;
299
300 assert(list && (list->nodetype == LYS_LIST));
301 assert(status == LYJSON_OBJECT);
302
303 /* get all keys into a set (keys do not have if-features or anything) */
304 snode = NULL;
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100305 while ((snode = lys_getnext(snode, list, NULL, 0)) && (snode->flags & LYS_KEY)) {
Radek Krejci3d92e442020-10-12 12:48:13 +0200306 ret = ly_set_add(&key_set, (void *)snode, 1, NULL);
Radek Krejciba03a5a2020-08-27 14:40:41 +0200307 LY_CHECK_GOTO(ret, cleanup);
Radek Krejci1798aae2020-07-14 13:26:06 +0200308 }
309
310 if (status != LYJSON_OBJECT_EMPTY) {
311 status_count = jsonctx->status.count;
312
313 while (key_set.count && status != LYJSON_OBJECT_CLOSED) {
314 const char *name, *prefix;
315 size_t name_len, prefix_len;
Radek Krejci857189e2020-09-01 13:26:36 +0200316 ly_bool is_attr;
Radek Krejci1798aae2020-07-14 13:26:06 +0200317
318 /* match the key */
319 snode = NULL;
320 lydjson_parse_name(jsonctx->value, jsonctx->value_len, &name, &name_len, &prefix, &prefix_len, &is_attr);
321
322 if (!is_attr && !prefix) {
323 for (i = 0; i < key_set.count; ++i) {
324 snode = (const struct lysc_node *)key_set.objs[i];
325 if (!ly_strncmp(snode->name, name, name_len)) {
326 break;
327 }
328 }
329 /* go into the item to a) process it as a key or b) start skipping it as another list child */
330 ret = lyjson_ctx_next(jsonctx, &status);
331 LY_CHECK_GOTO(ret, cleanup);
332
333 if (snode) {
334 /* we have the key, validate the value */
335 if (status < LYJSON_NUMBER) {
336 /* not a terminal */
337 ret = LY_ENOT;
338 goto cleanup;
339 }
340
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200341 ret = _lys_value_validate(NULL, snode, jsonctx->value, jsonctx->value_len, LY_PREF_JSON, NULL);
Radek Krejci1798aae2020-07-14 13:26:06 +0200342 LY_CHECK_GOTO(ret, cleanup);
343
344 /* key with a valid value, remove from the set */
345 ly_set_rm_index(&key_set, i, NULL);
346 }
347 } else {
348 /* start skipping the member we are not interested in */
349 ret = lyjson_ctx_next(jsonctx, &status);
350 LY_CHECK_GOTO(ret, cleanup);
351 }
352 /* move to the next child */
353 while (status_count < jsonctx->status.count) {
354 ret = lyjson_ctx_next(jsonctx, &status);
355 LY_CHECK_GOTO(ret, cleanup);
356 }
357 }
358 }
359
360 if (key_set.count) {
361 /* some keys are missing/did not validate */
362 ret = LY_ENOT;
363 }
364
365cleanup:
366 ly_set_erase(&key_set, NULL);
367 return ret;
368}
369
370/**
371 * @brief Get the hint for the data type parsers according to the current JSON parser context.
372 *
373 * @param[in] lydctx JSON data parser context. The context is supposed to be on a value.
374 * @param[in,out] status Pointer to the current context status,
375 * in some circumstances the function manipulates with the context so the status is updated.
376 * @param[out] type_hint_p Pointer to the variable to store the result.
377 * @return LY_SUCCESS in case of success.
378 * @return LY_EINVAL in case of invalid context status not referring to a value.
379 */
380static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200381lydjson_value_type_hint(struct lyd_json_ctx *lydctx, enum LYJSON_PARSER_STATUS *status_p, uint32_t *type_hint_p)
Radek Krejci1798aae2020-07-14 13:26:06 +0200382{
383 *type_hint_p = 0;
384
385 if (*status_p == LYJSON_ARRAY) {
386 /* only [null] */
387 LY_CHECK_RET(lyjson_ctx_next(lydctx->jsonctx, status_p));
388 LY_CHECK_RET(*status_p != LYJSON_NULL, LY_EINVAL);
389
390 LY_CHECK_RET(lyjson_ctx_next(lydctx->jsonctx, NULL));
391 LY_CHECK_RET(lyjson_ctx_status(lydctx->jsonctx, 0) != LYJSON_ARRAY_CLOSED, LY_EINVAL);
392
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200393 *type_hint_p = LYD_VALHINT_EMPTY;
Radek Krejci1798aae2020-07-14 13:26:06 +0200394 } else if (*status_p == LYJSON_STRING) {
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200395 *type_hint_p = LYD_VALHINT_STRING | LYD_VALHINT_NUM64;
Radek Krejci1798aae2020-07-14 13:26:06 +0200396 } else if (*status_p == LYJSON_NUMBER) {
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200397 *type_hint_p = LYD_VALHINT_DECNUM;
Michal Vasko69730152020-10-09 16:30:07 +0200398 } else if ((*status_p == LYJSON_FALSE) || (*status_p == LYJSON_TRUE)) {
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200399 *type_hint_p = LYD_VALHINT_BOOLEAN;
Radek Krejci1798aae2020-07-14 13:26:06 +0200400 } else if (*status_p == LYJSON_NULL) {
401 *type_hint_p = 0;
402 } else {
403 return LY_EINVAL;
404 }
405
406 return LY_SUCCESS;
407}
408
409/**
410 * @brief Check in advance if the input data are parsable according to the provided @p snode.
411 *
412 * Note that the checks are done only in case the LYD_PARSE_OPAQ is allowed. Otherwise the same checking
413 * is naturally done when the data are really parsed.
414 *
415 * @param[in] lydctx JSON data parser context. When the function returns, the context is in the same state
416 * as before calling, despite it is necessary to process input data for checking.
417 * @param[in] snode Schema node corresponding to the member currently being processed in the context.
418 * @param[out] type_hint_p Pointer to a variable to store detected value type hint in case of leaf or leaf-list.
419 * @return LY_SUCCESS in case the data are ok for the @p snode or the LYD_PARSE_OPAQ is not enabled.
420 * @return LY_ENOT in case the input data are not sufficient to fully parse the list instance
421 * @return LY_EINVAL in case of invalid leaf JSON encoding
422 * and they are expected to be parsed as opaq nodes.
423 */
424static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200425lydjson_data_check_opaq(struct lyd_json_ctx *lydctx, const struct lysc_node *snode, uint32_t *type_hint_p)
Radek Krejci1798aae2020-07-14 13:26:06 +0200426{
427 LY_ERR ret = LY_SUCCESS;
428 struct lyjson_ctx *jsonctx = lydctx->jsonctx;
429 enum LYJSON_PARSER_STATUS status;
430
431 assert(snode);
Radek Krejci1798aae2020-07-14 13:26:06 +0200432
Michal Vasko32ac9942020-08-12 14:35:12 +0200433 if (!(snode->nodetype & (LYD_NODE_TERM | LYS_LIST))) {
434 /* can always be parsed as a data node if we have the schema node */
435 return LY_SUCCESS;
436 }
437
438 if (lydctx->parse_options & LYD_PARSE_OPAQ) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200439 /* backup parser */
440 lyjson_ctx_backup(jsonctx);
441 status = lyjson_ctx_status(jsonctx, 0);
442
Michal Vasko32ac9942020-08-12 14:35:12 +0200443 /* check if the node is parseable. if not, NULL the snode to announce that it is supposed to be parsed
444 * as an opaq node */
Radek Krejci1798aae2020-07-14 13:26:06 +0200445 switch (snode->nodetype) {
446 case LYS_LEAFLIST:
447 case LYS_LEAF:
448 /* value may not be valid in which case we parse it as an opaque node */
449 ret = lydjson_value_type_hint(lydctx, &status, type_hint_p);
450 if (ret) {
451 break;
452 }
453
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200454 if (_lys_value_validate(NULL, snode, jsonctx->value, jsonctx->value_len, LY_PREF_JSON, NULL)) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200455 ret = LY_ENOT;
456 }
457 break;
458 case LYS_LIST:
459 /* lists may not have all its keys */
460 if (lydjson_check_list(jsonctx, snode)) {
461 /* invalid list, parse as opaque if it missing/has invalid some keys */
462 ret = LY_ENOT;
463 }
Michal Vasko32ac9942020-08-12 14:35:12 +0200464 break;
Radek Krejci1798aae2020-07-14 13:26:06 +0200465 }
466
467 /* restore parser */
468 lyjson_ctx_restore(jsonctx);
Michal Vasko32ac9942020-08-12 14:35:12 +0200469 } else if (snode->nodetype & LYD_NODE_TERM) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200470 status = lyjson_ctx_status(jsonctx, 0);
471 ret = lydjson_value_type_hint(lydctx, &status, type_hint_p);
472 }
473
474 return ret;
475}
476
477/**
478 * @brief Join the forward-referencing metadata with their target data nodes.
479 *
480 * Note that JSON encoding for YANG data allows forward-referencing metadata only for leafs/leaf-lists.
481 *
482 * @param[in] lydctx JSON data parser context.
483 * @param[in,out] first_p Pointer to the first sibling node variable (top-level or in a particular parent node)
484 * as a starting point to search for the metadata's target data node
485 * @return LY_SUCCESS on success
486 * @return LY_EVALID in case there are some metadata with unresolved target data node instance
487 */
488static LY_ERR
489lydjson_metadata_finish(struct lyd_json_ctx *lydctx, struct lyd_node **first_p)
490{
491 LY_ERR ret = LY_SUCCESS;
492 struct lyd_node *node, *attr, *next, *start = *first_p, *meta_iter;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200493 uint64_t instance = 0;
Radek Krejci1798aae2020-07-14 13:26:06 +0200494 const char *prev = NULL;
Radek Krejci2efc45b2020-12-22 16:25:44 +0100495 uint32_t log_location_items = 0;
Radek Krejci1798aae2020-07-14 13:26:06 +0200496
497 /* finish linking metadata */
498 LY_LIST_FOR_SAFE(*first_p, next, attr) {
Michal Vasko22df3f02020-08-24 13:29:22 +0200499 struct lyd_node_opaq *meta_container = (struct lyd_node_opaq *)attr;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200500 uint64_t match = 0;
Radek Krejci857189e2020-09-01 13:26:36 +0200501 ly_bool is_attr;
Radek Krejci1798aae2020-07-14 13:26:06 +0200502 const char *name, *prefix;
503 size_t name_len, prefix_len;
504 const struct lysc_node *snode;
505
Michal Vaskoad92b672020-11-12 13:11:31 +0100506 if (attr->schema || (meta_container->name.name[0] != '@')) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200507 /* not an opaq metadata node */
508 continue;
509 }
510
Radek Krejci2efc45b2020-12-22 16:25:44 +0100511 LOG_LOCSET(lydctx->jsonctx->ctx, NULL, attr, NULL, NULL);
512 log_location_items++;
513
Michal Vaskoad92b672020-11-12 13:11:31 +0100514 if (prev != meta_container->name.name) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200515 /* metas' names are stored in dictionary, so checking pointers must works */
516 lydict_remove(lydctx->jsonctx->ctx, prev);
Michal Vaskoad92b672020-11-12 13:11:31 +0100517 LY_CHECK_GOTO(ret = lydict_insert(lydctx->jsonctx->ctx, meta_container->name.name, 0, &prev), cleanup);
Radek Krejci1798aae2020-07-14 13:26:06 +0200518 instance = 1;
519 } else {
520 instance++;
521 }
522
523 /* find the correspnding data node */
524 LY_LIST_FOR(start, node) {
525 if (!node->schema) {
526 /* opaq node - we are going to put into it just a generic attribute. */
Michal Vaskoad92b672020-11-12 13:11:31 +0100527 if (strcmp(&meta_container->name.name[1], ((struct lyd_node_opaq *)node)->name.name)) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200528 continue;
529 }
530
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200531 if (((struct lyd_node_opaq *)node)->hints & LYD_NODEHINT_LIST) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100532 LOGVAL(lydctx->jsonctx->ctx, LYVE_SYNTAX, "Metadata container references a sibling list node %s.",
533 ((struct lyd_node_opaq *)node)->name.name);
Radek Krejci1798aae2020-07-14 13:26:06 +0200534 ret = LY_EVALID;
535 goto cleanup;
536 }
537
538 /* match */
539 match++;
540 if (match != instance) {
541 continue;
542 }
543
544 LY_LIST_FOR(meta_container->child, meta_iter) {
545 /* convert opaq node to a attribute of the opaq node */
Michal Vasko22df3f02020-08-24 13:29:22 +0200546 struct lyd_node_opaq *meta = (struct lyd_node_opaq *)meta_iter;
Radek Krejcibb27df32020-11-13 15:39:16 +0100547
Michal Vaskoad92b672020-11-12 13:11:31 +0100548 ret = lyd_create_attr(node, NULL, lydctx->jsonctx->ctx, meta->name.name, strlen(meta->name.name),
549 meta->name.prefix, ly_strlen(meta->name.prefix), meta->name.module_name,
550 ly_strlen(meta->name.module_name), meta->value, ly_strlen(meta->value), NULL, LY_PREF_JSON,
551 NULL, meta->hints);
Radek Krejci1798aae2020-07-14 13:26:06 +0200552 LY_CHECK_GOTO(ret, cleanup);
553 }
554
555 /* done */
556 break;
557 } else {
558 /* this is the second time we are resolving the schema node, so it must succeed,
559 * but remember that snode can be still NULL */
Michal Vaskoad92b672020-11-12 13:11:31 +0100560 lydjson_parse_name(meta_container->name.name, strlen(meta_container->name.name), &name, &name_len,
561 &prefix, &prefix_len, &is_attr);
Radek Krejci1798aae2020-07-14 13:26:06 +0200562 assert(is_attr);
563 ret = lydjson_get_snode(lydctx, is_attr, prefix, prefix_len, name, name_len, (*first_p)->parent, &snode);
564 assert(ret == LY_SUCCESS);
565
566 if (snode != node->schema) {
567 continue;
568 }
569
570 /* match */
571 match++;
572 if (match != instance) {
573 continue;
574 }
575
576 LY_LIST_FOR(meta_container->child, meta_iter) {
577 /* convert opaq node to a metadata of the node */
Michal Vasko22df3f02020-08-24 13:29:22 +0200578 struct lyd_node_opaq *meta = (struct lyd_node_opaq *)meta_iter;
Radek Krejci1798aae2020-07-14 13:26:06 +0200579 struct lys_module *mod = NULL;
Radek Krejci857189e2020-09-01 13:26:36 +0200580 ly_bool dynamic = 0;
Radek Krejci1798aae2020-07-14 13:26:06 +0200581
Michal Vaskoad92b672020-11-12 13:11:31 +0100582 mod = ly_ctx_get_module_implemented(lydctx->jsonctx->ctx, meta->name.prefix);
Radek Krejci1798aae2020-07-14 13:26:06 +0200583 if (mod) {
Michal Vasko22df3f02020-08-24 13:29:22 +0200584 ret = lyd_parser_create_meta((struct lyd_ctx *)lydctx, node, NULL, mod,
Michal Vaskoad92b672020-11-12 13:11:31 +0100585 meta->name.name, strlen(meta->name.name), meta->value, ly_strlen(meta->value),
Michal Vasko69730152020-10-09 16:30:07 +0200586 &dynamic, LY_PREF_JSON, NULL, meta->hints);
Radek Krejci1798aae2020-07-14 13:26:06 +0200587 LY_CHECK_GOTO(ret, cleanup);
588 } else if (lydctx->parse_options & LYD_PARSE_STRICT) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100589 LOGVAL(lydctx->jsonctx->ctx, LYVE_REFERENCE,
Michal Vasko69730152020-10-09 16:30:07 +0200590 "Unknown (or not implemented) YANG module \"%s\" for metadata \"%s%s%s\".",
Michal Vaskoad92b672020-11-12 13:11:31 +0100591 meta->name.prefix, meta->name.prefix, ly_strlen(meta->name.prefix) ? ":" : "", meta->name.name);
Radek Krejci1798aae2020-07-14 13:26:06 +0200592 ret = LY_EVALID;
593 goto cleanup;
594 }
595 }
596 /* add/correct flags */
Michal Vasko49c39d82020-11-06 17:20:27 +0100597 lyd_parse_set_data_flags(node, &lydctx->node_when, &node->meta, lydctx->parse_options);
Radek Krejci1798aae2020-07-14 13:26:06 +0200598
599 /* done */
600 break;
601 }
602 }
603
604 if (match != instance) {
605 /* there is no corresponding data node for the metadata */
606 if (instance > 1) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100607 LOGVAL(lydctx->jsonctx->ctx, LYVE_REFERENCE, "Missing %d%s JSON data instance to be coupled with %s metadata.",
608 instance, instance == 2 ? "nd" : (instance == 3 ? "rd" : "th"), meta_container->name.name);
Radek Krejci1798aae2020-07-14 13:26:06 +0200609 } else {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100610 LOGVAL(lydctx->jsonctx->ctx, LYVE_REFERENCE, "Missing JSON data instance to be coupled with %s metadata.",
611 meta_container->name.name);
Radek Krejci1798aae2020-07-14 13:26:06 +0200612 }
613 ret = LY_EVALID;
614 } else {
615 /* remove the opaq attr */
616 if (attr == (*first_p)) {
617 *first_p = attr->next;
618 }
619 lyd_free_tree(attr);
620 }
Radek Krejci2efc45b2020-12-22 16:25:44 +0100621
622 LOG_LOCBACK(lydctx->jsonctx->ctx, 0, log_location_items, 0, 0);
623 log_location_items = 0;
Radek Krejci1798aae2020-07-14 13:26:06 +0200624 }
625
626cleanup:
627 lydict_remove(lydctx->jsonctx->ctx, prev);
628
Radek Krejci2efc45b2020-12-22 16:25:44 +0100629 LOG_LOCBACK(lydctx->jsonctx->ctx, 0, log_location_items, 0, 0);
Radek Krejci1798aae2020-07-14 13:26:06 +0200630 return ret;
631}
632
633/**
634 * @brief Parse a metadata member.
635 *
636 * @param[in] lydctx JSON data parser context.
637 * @param[in] snode Schema node of the metadata parent.
638 * @param[in] node Parent node in case the metadata is not forward-referencing (only LYD_NODE_TERM)
639 * so the data node does not exists. In such a case the metadata is stored in the context for the later
640 * processing by lydjson_metadata_finish().
641 * @return LY_SUCCESS on success
642 * @return Various LY_ERR values in case of failure.
643 */
644static LY_ERR
645lydjson_metadata(struct lyd_json_ctx *lydctx, const struct lysc_node *snode, struct lyd_node *node)
646{
647 LY_ERR ret = LY_SUCCESS;
648 enum LYJSON_PARSER_STATUS status;
649 const char *expected;
Radek Krejci857189e2020-09-01 13:26:36 +0200650 ly_bool in_parent = 0;
Radek Krejci1798aae2020-07-14 13:26:06 +0200651 const char *name, *prefix = NULL;
652 size_t name_len, prefix_len = 0;
653 struct lys_module *mod;
654 struct lyd_meta *meta = NULL;
655 const struct ly_ctx *ctx = lydctx->jsonctx->ctx;
Radek Krejci857189e2020-09-01 13:26:36 +0200656 ly_bool is_attr = 0;
Radek Krejci1798aae2020-07-14 13:26:06 +0200657 struct lyd_node *prev = node;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200658 uint32_t instance = 0;
Radek Krejci1798aae2020-07-14 13:26:06 +0200659 uint16_t nodetype;
660
661 assert(snode || node);
662
663 nodetype = snode ? snode->nodetype : LYS_CONTAINER;
664
665 /* move to the second item in the name/X pair */
666 ret = lyjson_ctx_next(lydctx->jsonctx, &status);
667 LY_CHECK_GOTO(ret, cleanup);
668
669 /* check attribute encoding */
670 switch (nodetype) {
671 case LYS_LEAFLIST:
672 expected = "@name/array of objects/nulls";
673
674 LY_CHECK_GOTO(status != LYJSON_ARRAY, representation_error);
675
676next_entry:
677 instance++;
678
679 /* move into array / next entry */
680 ret = lyjson_ctx_next(lydctx->jsonctx, &status);
681 LY_CHECK_GOTO(ret, cleanup);
682
683 if (status == LYJSON_ARRAY_CLOSED) {
684 /* we are done, move after the array */
685 ret = lyjson_ctx_next(lydctx->jsonctx, NULL);
686 goto cleanup;
687 }
688 LY_CHECK_GOTO(status != LYJSON_OBJECT && status != LYJSON_NULL, representation_error);
689
Michal Vasko69730152020-10-09 16:30:07 +0200690 if (!node || (node->schema != prev->schema)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100691 LOGVAL(lydctx->jsonctx->ctx, LYVE_REFERENCE, "Missing JSON data instance no. %u of %s:%s to be coupled with metadata.",
Michal Vasko69730152020-10-09 16:30:07 +0200692 instance, prev->schema->module->name, prev->schema->name);
Radek Krejci1798aae2020-07-14 13:26:06 +0200693 ret = LY_EVALID;
694 goto cleanup;
695 }
696
697 if (status == LYJSON_NULL) {
698 /* continue with the next entry in the leaf-list array */
699 prev = node;
700 node = node->next;
701 goto next_entry;
702 }
703 break;
704 case LYS_LEAF:
705 case LYS_ANYXML:
706 expected = "@name/object";
707
708 LY_CHECK_GOTO(status != LYJSON_OBJECT && (nodetype != LYS_LEAFLIST || status != LYJSON_NULL), representation_error);
709 break;
710 case LYS_CONTAINER:
711 case LYS_LIST:
712 case LYS_ANYDATA:
713 case LYS_NOTIF:
714 case LYS_ACTION:
715 case LYS_RPC:
716 in_parent = 1;
717 expected = "@/object";
718 LY_CHECK_GOTO(status != LYJSON_OBJECT, representation_error);
719 break;
Radek Krejci8f5fad22020-09-15 16:50:54 +0200720 default:
721 LOGINT_RET(ctx);
Radek Krejci1798aae2020-07-14 13:26:06 +0200722 }
723
724 /* process all the members inside a single metadata object */
725 assert(status == LYJSON_OBJECT);
726
Radek Krejci2efc45b2020-12-22 16:25:44 +0100727 LOG_LOCSET(ctx, snode, NULL, NULL, NULL);
728
Radek Krejci1798aae2020-07-14 13:26:06 +0200729 while (status != LYJSON_OBJECT_CLOSED) {
730 lydjson_parse_name(lydctx->jsonctx->value, lydctx->jsonctx->value_len, &name, &name_len, &prefix, &prefix_len, &is_attr);
731 if (!prefix) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100732 LOGVAL(ctx, LYVE_SYNTAX_JSON, "Metadata in JSON must be namespace-qualified, missing prefix for \"%.*s\".",
Michal Vasko69730152020-10-09 16:30:07 +0200733 lydctx->jsonctx->value_len, lydctx->jsonctx->value);
Radek Krejci1798aae2020-07-14 13:26:06 +0200734 ret = LY_EVALID;
735 goto cleanup;
736 } else if (is_attr) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100737 LOGVAL(ctx, LYVE_SYNTAX_JSON, "Invalid format of the Metadata identifier in JSON, unexpected '@' in \"%.*s\"",
Michal Vasko69730152020-10-09 16:30:07 +0200738 lydctx->jsonctx->value_len, lydctx->jsonctx->value);
Radek Krejci1798aae2020-07-14 13:26:06 +0200739 ret = LY_EVALID;
740 goto cleanup;
741 }
742
743 /* get the element module */
744 mod = ly_ctx_get_module_implemented2(ctx, prefix, prefix_len);
745 if (!mod) {
746 if (lydctx->parse_options & LYD_PARSE_STRICT) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100747 LOGVAL(ctx, LYVE_REFERENCE, "Prefix \"%.*s\" of the metadata \"%.*s\" does not match any module in the context.",
Michal Vasko69730152020-10-09 16:30:07 +0200748 prefix_len, prefix, name_len, name);
Radek Krejci1798aae2020-07-14 13:26:06 +0200749 ret = LY_EVALID;
750 goto cleanup;
751 }
752 if (!(lydctx->parse_options & LYD_PARSE_OPAQ)) {
753 /* skip element with children */
754 ret = lydjson_data_skip(lydctx->jsonctx);
755 LY_CHECK_GOTO(ret, cleanup);
756 status = lyjson_ctx_status(lydctx->jsonctx, 0);
757 /* end of the item */
758 continue;
759 }
760 }
761
762 /* get the value */
763 ret = lyjson_ctx_next(lydctx->jsonctx, NULL);
764 LY_CHECK_GOTO(ret, cleanup);
765
766 if (node->schema) {
767 /* create metadata */
768 meta = NULL;
Michal Vasko22df3f02020-08-24 13:29:22 +0200769 ret = lyd_parser_create_meta((struct lyd_ctx *)lydctx, node, &meta, mod, name, name_len, lydctx->jsonctx->value,
Michal Vasko69730152020-10-09 16:30:07 +0200770 lydctx->jsonctx->value_len, &lydctx->jsonctx->dynamic, LY_PREF_JSON, NULL,
771 LYD_HINT_DATA);
Radek Krejci1798aae2020-07-14 13:26:06 +0200772 LY_CHECK_GOTO(ret, cleanup);
773
774 /* add/correct flags */
Michal Vasko49c39d82020-11-06 17:20:27 +0100775 lyd_parse_set_data_flags(node, &lydctx->node_when, &meta, lydctx->parse_options);
Radek Krejci1798aae2020-07-14 13:26:06 +0200776 } else {
777 /* create attribute */
Radek Krejci1798aae2020-07-14 13:26:06 +0200778 const char *module_name;
779 size_t module_name_len;
780
781 lydjson_get_node_prefix(node, prefix, prefix_len, &module_name, &module_name_len);
782
Radek Krejci1798aae2020-07-14 13:26:06 +0200783 /* attr2 is always changed to the created attribute */
Michal Vasko501af032020-11-11 20:27:44 +0100784 ret = lyd_create_attr(node, NULL, lydctx->jsonctx->ctx, name, name_len, prefix, prefix_len, module_name,
785 module_name_len, lydctx->jsonctx->value, lydctx->jsonctx->value_len, &lydctx->jsonctx->dynamic,
786 LY_PREF_JSON, NULL, 0);
Radek Krejci1798aae2020-07-14 13:26:06 +0200787 LY_CHECK_GOTO(ret, cleanup);
788 }
789 /* next member */
790 ret = lyjson_ctx_next(lydctx->jsonctx, &status);
791 LY_CHECK_GOTO(ret, cleanup);
792 }
793
794 if (nodetype == LYS_LEAFLIST) {
795 /* continue by processing another metadata object for the following
796 * leaf-list instance since they are allways instantiated in JSON array */
797 prev = node;
798 node = node->next;
799 goto next_entry;
800 }
801
802 /* move after the metadata */
803 ret = lyjson_ctx_next(lydctx->jsonctx, NULL);
804 LY_CHECK_GOTO(ret, cleanup);
805
Radek Krejci5813c362021-01-05 10:51:57 +0100806 /* success */
807 goto cleanup;
Radek Krejci1798aae2020-07-14 13:26:06 +0200808
809representation_error:
Radek Krejci2efc45b2020-12-22 16:25:44 +0100810 LOGVAL(ctx, LYVE_SYNTAX_JSON,
Michal Vasko69730152020-10-09 16:30:07 +0200811 "The attribute(s) of %s \"%s\" is expected to be represented as JSON %s, but input data contains @%s/%s.",
Michal Vaskoad92b672020-11-12 13:11:31 +0100812 lys_nodetype2str(nodetype), node->schema ? node->schema->name : ((struct lyd_node_opaq *)node)->name.name,
Michal Vasko69730152020-10-09 16:30:07 +0200813 expected, lyjson_token2str(status), in_parent ? "" : "name");
Radek Krejci1798aae2020-07-14 13:26:06 +0200814
Radek Krejci2efc45b2020-12-22 16:25:44 +0100815 ret = LY_EVALID;
Radek Krejci5813c362021-01-05 10:51:57 +0100816
817cleanup:
818 LOG_LOCBACK(ctx, 1, 0, 0, 0);
819 return ret;
Radek Krejci1798aae2020-07-14 13:26:06 +0200820}
821
822/**
823 * @brief Eat the node pointed by @p node_p by inserting it into @p parent and maintain the @p first_p pointing to the first child node.
824 *
825 * @param[in] parent Parent node to insert to, can be NULL in case of top-level (or provided first_p).
826 * @param[in, out] first_p Pointer to the first sibling node in case of top-level.
827 * @param[in, out] node_p pointer to the new node to insert, after the insert is done, pointer is set to NULL.
828 */
829static void
830lydjson_maintain_children(struct lyd_node_inner *parent, struct lyd_node **first_p, struct lyd_node **node_p)
831{
832 if (*node_p) {
833 /* insert, keep first pointer correct */
834 lyd_insert_node((struct lyd_node *)parent, first_p, *node_p);
835 if (first_p) {
836 if (parent) {
837 *first_p = parent->child;
838 } else {
839 while ((*first_p)->prev->next) {
840 *first_p = (*first_p)->prev;
841 }
842 }
843 }
844 *node_p = NULL;
845 }
846}
847
848static LY_ERR lydjson_subtree_r(struct lyd_json_ctx *lydctx, struct lyd_node_inner *parent, struct lyd_node **first_p);
849
850/**
851 * @brief Parse opaq node from the input.
852 *
853 * In case of processing array, the whole array is being processed and the resulting @p node_p is the last item of the array.
854 *
855 * @param[in] lydctx JSON data parser context.
856 * @param[in] name Name of the opaq node to create.
857 * @param[in] name_len Length of the @p name string.
858 * @param[in] prefix Prefix of the opaq node to create.
859 * @param[in] prefix_len Length of the @p prefx string.
860 * @param[in] parent Data parent of the opaq node to create, can be NULL in case of top level,
861 * but must be set if @p first is not.
862 * @param[in,out] status_p Pointer to the current status of the parser context,
863 * since the function manipulates with the context and process the input, the status can be updated.
864 * @param[in,out] status_inner_p In case of processing JSON array, this parameter points to a standalone
865 * context status of the array content. Otherwise, it is supposed to be the same as @p status_p.
866 * @param[in,out] first_p First top-level/parent sibling, must be set if @p parent is not.
867 * @param[out] node_p Pointer to the created opaq node.
868 * @return LY_ERR value.
869 */
870static LY_ERR
Michal Vaskoa5da3292020-08-12 13:10:50 +0200871lydjson_parse_opaq(struct lyd_json_ctx *lydctx, const char *name, size_t name_len, const char *prefix, size_t prefix_len,
Radek Krejci0f969882020-08-21 16:56:47 +0200872 struct lyd_node_inner *parent, enum LYJSON_PARSER_STATUS *status_p,
873 enum LYJSON_PARSER_STATUS *status_inner_p, struct lyd_node **first_p, struct lyd_node **node_p)
Radek Krejci1798aae2020-07-14 13:26:06 +0200874{
875 LY_ERR ret = LY_SUCCESS;
876 const char *value = NULL, *module_name;
877 size_t value_len = 0, module_name_len = 0;
Radek Krejci857189e2020-09-01 13:26:36 +0200878 ly_bool dynamic = 0;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200879 uint32_t type_hint = 0;
Radek Krejci1798aae2020-07-14 13:26:06 +0200880
Michal Vasko69730152020-10-09 16:30:07 +0200881 if ((*status_inner_p != LYJSON_OBJECT) && (*status_inner_p != LYJSON_OBJECT_EMPTY)) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200882 /* prepare for creating opaq node with a value */
883 value = lydctx->jsonctx->value;
884 value_len = lydctx->jsonctx->value_len;
885 dynamic = lydctx->jsonctx->dynamic;
886 lydctx->jsonctx->dynamic = 0;
887
888 LY_CHECK_RET(lydjson_value_type_hint(lydctx, status_inner_p, &type_hint));
Radek Krejci1798aae2020-07-14 13:26:06 +0200889 }
890
891 /* create node */
Michal Vasko22df3f02020-08-24 13:29:22 +0200892 lydjson_get_node_prefix((struct lyd_node *)parent, prefix, prefix_len, &module_name, &module_name_len);
Michal Vasko501af032020-11-11 20:27:44 +0100893 ret = lyd_create_opaq(lydctx->jsonctx->ctx, name, name_len, prefix, prefix_len, module_name, module_name_len, value,
894 value_len, &dynamic, LY_PREF_JSON, NULL, type_hint, node_p);
Radek Krejci1798aae2020-07-14 13:26:06 +0200895 if (dynamic) {
Michal Vasko22df3f02020-08-24 13:29:22 +0200896 free((char *)value);
Radek Krejci1798aae2020-07-14 13:26:06 +0200897 }
Radek Krejcid46e46a2020-09-15 14:22:42 +0200898 LY_CHECK_RET(ret);
Radek Krejci1798aae2020-07-14 13:26:06 +0200899
Michal Vasko69730152020-10-09 16:30:07 +0200900 if ((*status_p == LYJSON_OBJECT) || (*status_p == LYJSON_OBJECT_EMPTY)) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200901 /* process children */
902 while (*status_p != LYJSON_OBJECT_CLOSED && *status_p != LYJSON_OBJECT_EMPTY) {
903 LY_CHECK_RET(lydjson_subtree_r(lydctx, (struct lyd_node_inner *)(*node_p), lyd_node_children_p(*node_p)));
904 *status_p = lyjson_ctx_status(lydctx->jsonctx, 0);
905 }
Michal Vasko69730152020-10-09 16:30:07 +0200906 } else if ((*status_p == LYJSON_ARRAY) || (*status_p == LYJSON_ARRAY_EMPTY)) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200907 /* process another instance of the same node */
908 /* but first mark the node to be expected a list or a leaf-list */
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200909 ((struct lyd_node_opaq *)*node_p)->hints |= LYD_NODEHINT_LIST | LYD_NODEHINT_LEAFLIST;
Radek Krejci1798aae2020-07-14 13:26:06 +0200910
Michal Vasko69730152020-10-09 16:30:07 +0200911 if ((*status_inner_p == LYJSON_OBJECT) || (*status_inner_p == LYJSON_OBJECT_EMPTY)) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200912 /* but first process children of the object in the array */
913 while (*status_inner_p != LYJSON_OBJECT_CLOSED && *status_inner_p != LYJSON_OBJECT_EMPTY) {
914 LY_CHECK_RET(lydjson_subtree_r(lydctx, (struct lyd_node_inner *)(*node_p), lyd_node_children_p(*node_p)));
915 *status_inner_p = lyjson_ctx_status(lydctx->jsonctx, 0);
916 }
917 }
918
919 LY_CHECK_RET(lyjson_ctx_next(lydctx->jsonctx, status_inner_p));
920
921 /* continue with the next instance */
922 if (*status_inner_p != LYJSON_ARRAY_CLOSED) {
923 assert(node_p);
924 lydjson_maintain_children(parent, first_p, node_p);
925 return lydjson_parse_opaq(lydctx, name, name_len, prefix, prefix_len, parent, status_p, status_inner_p, first_p, node_p);
926 }
927 }
928
929 /* finish linking metadata */
930 LY_CHECK_RET(lydjson_metadata_finish(lydctx, lyd_node_children_p(*node_p)));
931
932 /* move after the item */
933 return lyjson_ctx_next(lydctx->jsonctx, status_p);
934}
935
936/**
937 * @brief Process the attribute container (starting by @)
938 *
939 * @param[in] lydctx JSON data parser context.
940 * @param[in] attr_node The data node referenced by the attribute container, if already known.
941 * @param[in] snode The schema node of the data node referenced by the attribute container, if known.
942 * @param[in] name Name of the opaq node to create.
943 * @param[in] name_len Length of the @p name string.
944 * @param[in] prefix Prefix of the opaq node to create.
945 * @param[in] prefix_len Length of the @p prefx string.
946 * @param[in] parent Data parent of the opaq node to create, can be NULL in case of top level,
947 * but must be set if @p first is not.
948 * @param[in,out] status_p Pointer to the current status of the parser context,
949 * since the function manipulates with the context and process the input, the status can be updated.
950 * @param[in,out] first_p First top-level/parent sibling, must be set if @p parent is not.
951 * @param[out] node_p Pointer to the created opaq node.
952 * @return LY_ERR value.
953 */
954static LY_ERR
955lydjson_parse_attribute(struct lyd_json_ctx *lydctx, struct lyd_node *attr_node, const struct lysc_node *snode,
Radek Krejci0f969882020-08-21 16:56:47 +0200956 const char *name, size_t name_len, const char *prefix, size_t prefix_len,
957 struct lyd_node_inner *parent, enum LYJSON_PARSER_STATUS *status_p, struct lyd_node **first_p,
958 struct lyd_node **node_p)
Radek Krejci1798aae2020-07-14 13:26:06 +0200959{
960 LY_ERR ret = LY_SUCCESS;
961 enum LYJSON_PARSER_STATUS status_inner;
962
963 /* parse as an attribute to a node */
964 if (!attr_node && snode) {
965 /* try to find the instance */
966 for (struct lyd_node *iter = *first_p; iter; iter = iter->next) {
967 if (iter->schema == snode) {
968 attr_node = iter;
969 break;
970 }
971 }
972 }
973 if (!attr_node) {
974 /* parse just as an opaq node with the name beginning with @,
975 * later we have to check that it belongs to a standard node
976 * and it is supposed to be converted to a metadata */
977 uint32_t prev_opts;
978
979 /* move into metadata */
980 LY_CHECK_RET(lyjson_ctx_next(lydctx->jsonctx, status_p));
981
982 if (*status_p == LYJSON_ARRAY) {
983 /* move into the array */
984 LY_CHECK_RET(lyjson_ctx_next(lydctx->jsonctx, &status_inner));
985 } else {
986 /* just a flag to pass correct parameters into lydjson_parse_opaq() */
987 status_inner = LYJSON_ERROR;
988 }
989
990 /* backup parser options to parse unknown metadata as opaq nodes and try to resolve them later */
991 prev_opts = lydctx->parse_options;
992 lydctx->parse_options &= ~LYD_PARSE_STRICT;
993 lydctx->parse_options |= LYD_PARSE_OPAQ;
994
995 ret = lydjson_parse_opaq(lydctx, prefix ? prefix - 1 : name - 1, prefix ? prefix_len + name_len + 2 : name_len + 1,
Michal Vasko69730152020-10-09 16:30:07 +0200996 NULL, 0, parent, status_p, status_inner == LYJSON_ERROR ? status_p : &status_inner, first_p, node_p);
Radek Krejci1798aae2020-07-14 13:26:06 +0200997
998 /* restore the parser options */
999 lydctx->parse_options = prev_opts;
1000 } else {
1001 ret = lydjson_metadata(lydctx, snode, attr_node);
1002 }
1003
1004 return ret;
1005}
1006
1007/**
Michal Vasko32ac9942020-08-12 14:35:12 +02001008 * @brief Parse a single instance of a node.
1009 *
1010 * @param[in] lydctx JSON data parser context. When the function returns, the context is in the same state
1011 * as before calling, despite it is necessary to process input data for checking.
1012 * @param[in] parent Data parent of the subtree, must be set if @p first is not.
1013 * @param[in,out] first_p Pointer to the variable holding the first top-level sibling, must be set if @p parent is not.
1014 * @param[in] snode Schema node corresponding to the member currently being processed in the context.
1015 * @param[in] name Parsed JSON node name.
1016 * @param[in] name_len Lenght of @p name.
1017 * @param[in] prefix Parsed JSON node prefix.
1018 * @param[in] prefix_len Length of @p prefix.
1019 * @param[in,out] status JSON parser status, is updated.
1020 * @param[out] node Parsed data (or opaque) node.
1021 * @return LY_SUCCESS if a node was successfully parsed,
1022 * @return LY_EINVAL in case of invalid JSON encoding,
1023 * @return LY_ERR on other errors.
1024 */
1025static LY_ERR
1026lydjson_parse_instance(struct lyd_json_ctx *lydctx, struct lyd_node_inner *parent, struct lyd_node **first_p,
Radek Krejci0f969882020-08-21 16:56:47 +02001027 const struct lysc_node *snode, const char *name, size_t name_len, const char *prefix, size_t prefix_len,
1028 enum LYJSON_PARSER_STATUS *status, struct lyd_node **node)
Michal Vasko32ac9942020-08-12 14:35:12 +02001029{
1030 LY_ERR ret;
Radek Krejci2b18bf12020-11-06 11:20:20 +01001031 uint32_t type_hints = 0;
Michal Vasko32ac9942020-08-12 14:35:12 +02001032 uint32_t prev_opts;
1033 struct lyd_node *tree = NULL;
1034
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001035 ret = lydjson_data_check_opaq(lydctx, snode, &type_hints);
Michal Vasko32ac9942020-08-12 14:35:12 +02001036 if (ret == LY_SUCCESS) {
1037 assert(snode->nodetype & (LYD_NODE_TERM | LYD_NODE_INNER | LYD_NODE_ANY));
1038 if (snode->nodetype & LYD_NODE_TERM) {
1039 /* create terminal node */
1040 ret = lyd_parser_create_term((struct lyd_ctx *)lydctx, snode, lydctx->jsonctx->value,
Michal Vasko69730152020-10-09 16:30:07 +02001041 lydctx->jsonctx->value_len, &lydctx->jsonctx->dynamic, LY_PREF_JSON, NULL,
1042 type_hints, node);
Michal Vasko32ac9942020-08-12 14:35:12 +02001043 LY_CHECK_RET(ret);
1044
1045 /* move JSON parser */
1046 ret = lyjson_ctx_next(lydctx->jsonctx, status);
1047 LY_CHECK_RET(ret);
1048 } else if (snode->nodetype & LYD_NODE_INNER) {
1049 /* create inner node */
1050 LY_CHECK_RET(*status != LYJSON_OBJECT && *status != LYJSON_OBJECT_EMPTY, LY_EINVAL);
1051
1052 ret = lyd_create_inner(snode, node);
1053 LY_CHECK_RET(ret);
1054
Radek Krejci2efc45b2020-12-22 16:25:44 +01001055 LOG_LOCSET(lydctx->jsonctx->ctx, snode, *node, NULL, NULL);
1056
Michal Vasko32ac9942020-08-12 14:35:12 +02001057 /* process children */
1058 while (*status != LYJSON_OBJECT_CLOSED && *status != LYJSON_OBJECT_EMPTY) {
1059 ret = lydjson_subtree_r(lydctx, (struct lyd_node_inner *)*node, lyd_node_children_p(*node));
Radek Krejci2efc45b2020-12-22 16:25:44 +01001060 LY_CHECK_ERR_RET(ret, LOG_LOCBACK(lydctx->jsonctx->ctx, 1, 1, 0, 0), ret);
Michal Vasko32ac9942020-08-12 14:35:12 +02001061 *status = lyjson_ctx_status(lydctx->jsonctx, 0);
1062 }
1063
1064 /* finish linking metadata */
1065 ret = lydjson_metadata_finish(lydctx, lyd_node_children_p(*node));
Radek Krejci2efc45b2020-12-22 16:25:44 +01001066 LY_CHECK_ERR_RET(ret, LOG_LOCBACK(lydctx->jsonctx->ctx, 1, 1, 0, 0), ret);
Michal Vasko32ac9942020-08-12 14:35:12 +02001067
1068 if (snode->nodetype == LYS_LIST) {
1069 /* check all keys exist */
1070 ret = lyd_parse_check_keys(*node);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001071 LY_CHECK_ERR_RET(ret, LOG_LOCBACK(lydctx->jsonctx->ctx, 1, 1, 0, 0), ret);
Michal Vasko32ac9942020-08-12 14:35:12 +02001072 }
1073
1074 if (!(lydctx->parse_options & LYD_PARSE_ONLY)) {
1075 /* new node validation, autodelete CANNOT occur, all nodes are new */
1076 ret = lyd_validate_new(lyd_node_children_p(*node), snode, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001077 LY_CHECK_ERR_RET(ret, LOG_LOCBACK(lydctx->jsonctx->ctx, 1, 1, 0, 0), ret);
Michal Vasko32ac9942020-08-12 14:35:12 +02001078
1079 /* add any missing default children */
Michal Vasko49c39d82020-11-06 17:20:27 +01001080 ret = lyd_new_implicit_r(*node, lyd_node_children_p(*node), NULL, NULL, &lydctx->node_types,
1081 &lydctx->node_when, (lydctx->validate_options & LYD_VALIDATE_NO_STATE) ?
Michal Vasko69730152020-10-09 16:30:07 +02001082 LYD_IMPLICIT_NO_STATE : 0, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001083 LY_CHECK_ERR_RET(ret, LOG_LOCBACK(lydctx->jsonctx->ctx, 1, 1, 0, 0), ret);
Michal Vasko32ac9942020-08-12 14:35:12 +02001084 }
1085
Radek Krejci2efc45b2020-12-22 16:25:44 +01001086 LOG_LOCBACK(lydctx->jsonctx->ctx, 1, 1, 0, 0);
1087
Michal Vasko32ac9942020-08-12 14:35:12 +02001088 /* move JSON parser */
1089 ret = lyjson_ctx_next(lydctx->jsonctx, status);
1090 LY_CHECK_RET(ret);
1091 } else if (snode->nodetype & LYD_NODE_ANY) {
1092 /* create any node */
1093 LY_CHECK_RET(*status != LYJSON_OBJECT && *status != LYJSON_OBJECT_EMPTY, LY_EINVAL);
1094
1095 /* parse any data tree with correct options */
1096 /* first backup the current options and then make the parser to process data as opaq nodes */
1097 prev_opts = lydctx->parse_options;
1098 lydctx->parse_options &= ~LYD_PARSE_STRICT;
1099 lydctx->parse_options |= LYD_PARSE_OPAQ;
1100
1101 /* process the anydata content */
1102 while (*status != LYJSON_OBJECT_CLOSED && *status != LYJSON_OBJECT_EMPTY) {
1103 ret = lydjson_subtree_r(lydctx, NULL, &tree);
1104 LY_CHECK_RET(ret);
1105 *status = lyjson_ctx_status(lydctx->jsonctx, 0);
1106 }
1107
1108 /* restore parser options */
1109 lydctx->parse_options = prev_opts;
1110
1111 /* finish linking metadata */
1112 ret = lydjson_metadata_finish(lydctx, &tree);
1113 LY_CHECK_RET(ret);
1114
Michal Vasko366a4a12020-12-04 16:23:57 +01001115 ret = lyd_create_any(snode, tree, LYD_ANYDATA_DATATREE, 1, node);
Michal Vasko32ac9942020-08-12 14:35:12 +02001116 LY_CHECK_RET(ret);
1117 }
1118 } else if (ret == LY_ENOT) {
1119 /* parse it again as an opaq node */
1120 ret = lydjson_parse_opaq(lydctx, name, name_len, prefix, prefix_len, parent,
Michal Vasko69730152020-10-09 16:30:07 +02001121 status, status, first_p, node);
Michal Vasko32ac9942020-08-12 14:35:12 +02001122 LY_CHECK_RET(ret);
1123
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001124 if (snode->nodetype == LYS_LIST) {
1125 ((struct lyd_node_opaq *)*node)->hints |= LYD_NODEHINT_LIST;
1126 } else if (snode->nodetype == LYS_LEAFLIST) {
1127 ((struct lyd_node_opaq *)*node)->hints |= LYD_NODEHINT_LEAFLIST;
Michal Vasko32ac9942020-08-12 14:35:12 +02001128 }
1129 }
1130
1131 return ret;
1132}
1133
1134/**
Michal Vaskoa5da3292020-08-12 13:10:50 +02001135 * @brief Parse JSON subtree. All leaf-list and list instances of a node are considered one subtree.
Radek Krejci1798aae2020-07-14 13:26:06 +02001136 *
1137 * @param[in] lydctx JSON data parser context.
1138 * @param[in] parent Data parent of the subtree, must be set if @p first is not.
1139 * @param[in,out] first_p Pointer to the variable holding the first top-level sibling, must be set if @p parent is not.
1140 * @return LY_ERR value.
1141 */
1142static LY_ERR
1143lydjson_subtree_r(struct lyd_json_ctx *lydctx, struct lyd_node_inner *parent, struct lyd_node **first_p)
1144{
1145 LY_ERR ret = LY_SUCCESS;
1146 enum LYJSON_PARSER_STATUS status = lyjson_ctx_status(lydctx->jsonctx, 0);
1147 enum LYJSON_PARSER_STATUS status_inner = 0;
1148 const char *name, *prefix = NULL;
1149 size_t name_len, prefix_len = 0;
Radek Krejci857189e2020-09-01 13:26:36 +02001150 ly_bool is_meta = 0;
Michal Vaskocabe0702020-08-12 10:14:36 +02001151 const struct lysc_node *snode = NULL;
Michal Vasko32ac9942020-08-12 14:35:12 +02001152 struct lyd_node *node = NULL, *attr_node = NULL;
Radek Krejci1798aae2020-07-14 13:26:06 +02001153 const struct ly_ctx *ctx = lydctx->jsonctx->ctx;
1154 const char *expected = NULL;
Radek Krejci1798aae2020-07-14 13:26:06 +02001155
1156 assert(parent || first_p);
1157 assert(status == LYJSON_OBJECT);
1158
1159 /* process the node name */
Michal Vaskocabe0702020-08-12 10:14:36 +02001160 lydjson_parse_name(lydctx->jsonctx->value, lydctx->jsonctx->value_len, &name, &name_len, &prefix, &prefix_len, &is_meta);
Radek Krejci1798aae2020-07-14 13:26:06 +02001161
Michal Vaskocabe0702020-08-12 10:14:36 +02001162 if (!is_meta || name_len || prefix_len) {
1163 /* get the schema node */
1164 ret = lydjson_get_snode(lydctx, is_meta, prefix, prefix_len, name, name_len, parent, &snode);
1165 if (ret == LY_ENOT) {
1166 /* skip element with children */
1167 ret = lydjson_data_skip(lydctx->jsonctx);
1168 LY_CHECK_GOTO(ret, cleanup);
1169 status = lyjson_ctx_status(lydctx->jsonctx, 0);
1170 /* nothing for now, continue with another call of lydjson_subtree_r() */
Radek Krejci1798aae2020-07-14 13:26:06 +02001171 goto cleanup;
1172 }
Radek Krejci1798aae2020-07-14 13:26:06 +02001173 LY_CHECK_GOTO(ret, cleanup);
Radek Krejci1798aae2020-07-14 13:26:06 +02001174
Michal Vaskocabe0702020-08-12 10:14:36 +02001175 if (!snode) {
1176 /* we will not be parsing it as metadata */
1177 is_meta = 0;
1178 }
1179 }
1180
1181 if (is_meta) {
1182 /* parse as metadata */
1183 if (!name_len && !prefix_len) {
1184 /* parent's metadata without a name - use the schema from the parent */
1185 if (!parent) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001186 LOGVAL(ctx, LYVE_SYNTAX_JSON,
Michal Vasko69730152020-10-09 16:30:07 +02001187 "Invalid metadata format - \"@\" can be used only inside anydata, container or list entries.");
Michal Vaskocabe0702020-08-12 10:14:36 +02001188 ret = LY_EVALID;
1189 goto cleanup;
1190 }
1191 attr_node = (struct lyd_node *)parent;
1192 snode = attr_node->schema;
1193 }
1194 ret = lydjson_parse_attribute(lydctx, attr_node, snode, name, name_len, prefix, prefix_len, parent, &status,
Michal Vasko69730152020-10-09 16:30:07 +02001195 first_p, &node);
Michal Vaskocabe0702020-08-12 10:14:36 +02001196 LY_CHECK_GOTO(ret, cleanup);
1197 } else if (!snode) {
Radek Krejci1798aae2020-07-14 13:26:06 +02001198 /* parse as an opaq node */
1199 assert((lydctx->parse_options & LYD_PARSE_OPAQ) || (lydctx->int_opts));
1200
1201 /* move to the second item in the name/X pair */
1202 ret = lyjson_ctx_next(lydctx->jsonctx, &status);
1203 LY_CHECK_GOTO(ret, cleanup);
1204
1205 if (status == LYJSON_ARRAY) {
1206 /* move into the array */
1207 ret = lyjson_ctx_next(lydctx->jsonctx, &status_inner);
1208 LY_CHECK_GOTO(ret, cleanup);
1209 } else {
1210 /* just a flag to pass correct parameters into lydjson_parse_opaq() */
1211 status_inner = LYJSON_ERROR;
1212 }
1213
1214 ret = lydjson_parse_opaq(lydctx, name, name_len, prefix, prefix_len,
Michal Vasko69730152020-10-09 16:30:07 +02001215 parent, &status, status_inner == LYJSON_ERROR ? &status : &status_inner, first_p, &node);
Radek Krejci1798aae2020-07-14 13:26:06 +02001216 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskocabe0702020-08-12 10:14:36 +02001217 } else {
Michal Vasko32ac9942020-08-12 14:35:12 +02001218 /* parse as a standard lyd_node but it can still turn out to be an opaque node */
Radek Krejci1798aae2020-07-14 13:26:06 +02001219
1220 /* move to the second item in the name/X pair */
1221 ret = lyjson_ctx_next(lydctx->jsonctx, &status);
1222 LY_CHECK_GOTO(ret, cleanup);
1223
1224 /* first check the expected representation according to the nodetype and then continue with the content */
1225 switch (snode->nodetype) {
1226 case LYS_LEAFLIST:
Michal Vasko32ac9942020-08-12 14:35:12 +02001227 case LYS_LIST:
1228 if (snode->nodetype == LYS_LEAFLIST) {
1229 expected = "name/array of values";
1230 } else {
1231 expected = "name/array of objects";
1232 }
Radek Krejci1798aae2020-07-14 13:26:06 +02001233
1234 LY_CHECK_GOTO(status != LYJSON_ARRAY, representation_error);
1235
1236 /* move into array */
1237 ret = lyjson_ctx_next(lydctx->jsonctx, &status);
1238 LY_CHECK_GOTO(ret, cleanup);
1239
Michal Vasko32ac9942020-08-12 14:35:12 +02001240 /* process all the values/objects */
1241 do {
1242 lydjson_maintain_children(parent, first_p, &node);
Radek Krejci1798aae2020-07-14 13:26:06 +02001243
Michal Vasko32ac9942020-08-12 14:35:12 +02001244 ret = lydjson_parse_instance(lydctx, parent, first_p, snode, name, name_len, prefix, prefix_len,
Michal Vasko69730152020-10-09 16:30:07 +02001245 &status, &node);
Michal Vasko32ac9942020-08-12 14:35:12 +02001246 if (ret == LY_EINVAL) {
1247 goto representation_error;
1248 } else if (ret) {
1249 goto cleanup;
Radek Krejci1798aae2020-07-14 13:26:06 +02001250 }
Michal Vasko32ac9942020-08-12 14:35:12 +02001251 } while (status != LYJSON_ARRAY_CLOSED);
Radek Krejci1798aae2020-07-14 13:26:06 +02001252
Michal Vasko32ac9942020-08-12 14:35:12 +02001253 /* move after the array */
1254 ret = lyjson_ctx_next(lydctx->jsonctx, &status);
1255 LY_CHECK_GOTO(ret, cleanup);
Radek Krejci1798aae2020-07-14 13:26:06 +02001256
1257 break;
Michal Vasko32ac9942020-08-12 14:35:12 +02001258 case LYS_LEAF:
Radek Krejci1798aae2020-07-14 13:26:06 +02001259 case LYS_CONTAINER:
1260 case LYS_NOTIF:
1261 case LYS_ACTION:
1262 case LYS_RPC:
Michal Vasko32ac9942020-08-12 14:35:12 +02001263 case LYS_ANYDATA:
1264 case LYS_ANYXML:
1265 if (snode->nodetype == LYS_LEAF) {
1266 if (status == LYJSON_ARRAY) {
1267 expected = "name/[null]";
1268 } else {
1269 expected = "name/value";
1270 }
1271 } else {
Radek Krejci1798aae2020-07-14 13:26:06 +02001272 expected = "name/object";
1273 }
1274
Michal Vasko32ac9942020-08-12 14:35:12 +02001275 /* process the value/object */
1276 ret = lydjson_parse_instance(lydctx, parent, first_p, snode, name, name_len, prefix, prefix_len, &status, &node);
1277 if (ret == LY_EINVAL) {
1278 goto representation_error;
1279 } else if (ret) {
1280 goto cleanup;
Radek Krejci1798aae2020-07-14 13:26:06 +02001281 }
1282
Michal Vasko32ac9942020-08-12 14:35:12 +02001283 if (snode->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) {
Radek Krejci1798aae2020-07-14 13:26:06 +02001284 /* rememeber the RPC/action/notification */
1285 lydctx->op_node = node;
1286 }
1287
1288 break;
Radek Krejci1798aae2020-07-14 13:26:06 +02001289 }
Radek Krejci1798aae2020-07-14 13:26:06 +02001290 }
1291
Michal Vasko32ac9942020-08-12 14:35:12 +02001292 /* finally connect the parsed node */
Radek Krejci1798aae2020-07-14 13:26:06 +02001293 lydjson_maintain_children(parent, first_p, &node);
1294
Radek Krejci5813c362021-01-05 10:51:57 +01001295 /* success */
1296 goto cleanup;
Radek Krejci1798aae2020-07-14 13:26:06 +02001297
1298representation_error:
Radek Krejci2efc45b2020-12-22 16:25:44 +01001299 LOG_LOCSET(ctx, NULL, (const struct lyd_node *)parent, NULL, NULL);
1300 LOGVAL(ctx, LYVE_SYNTAX_JSON, "The %s \"%s\" is expected to be represented as JSON %s, but input data contains name/%s.",
Michal Vasko69730152020-10-09 16:30:07 +02001301 lys_nodetype2str(snode->nodetype), snode->name, expected, lyjson_token2str(status));
Radek Krejci2efc45b2020-12-22 16:25:44 +01001302 LOG_LOCBACK(ctx, 0, parent ? 1 : 0, 0, 0);
Radek Krejci1798aae2020-07-14 13:26:06 +02001303 ret = LY_EVALID;
Radek Krejci5813c362021-01-05 10:51:57 +01001304
1305cleanup:
1306 lyd_free_tree(node);
1307 return ret;
Radek Krejci1798aae2020-07-14 13:26:06 +02001308}
1309
1310/**
1311 * @brief Common start of JSON parser processing different types of the input data.
1312 *
1313 * @param[in] ctx libyang context
1314 * @param[in] in Input structure.
1315 * @param[in] parse_options Options for parser, see @ref dataparseroptions.
1316 * @param[in] validate_options Options for the validation phase, see @ref datavalidationoptions.
1317 * @param[out] lydctx_p Data parser context to finish validation.
Radek Krejcicd5f6222020-11-12 08:54:13 +01001318 * @param[out] status Storage for the current context's status
Radek Krejci1798aae2020-07-14 13:26:06 +02001319 * @return LY_ERR value.
1320 */
1321static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001322lyd_parse_json_init(const struct ly_ctx *ctx, struct ly_in *in, uint32_t parse_options, uint32_t validate_options,
Radek Krejcicd5f6222020-11-12 08:54:13 +01001323 struct lyd_json_ctx **lydctx_p, enum LYJSON_PARSER_STATUS *status)
Radek Krejci1798aae2020-07-14 13:26:06 +02001324{
1325 LY_ERR ret = LY_SUCCESS;
1326 struct lyd_json_ctx *lydctx;
Radek Krejcid54412f2020-12-17 20:25:35 +01001327 size_t i;
Radek Krejci1798aae2020-07-14 13:26:06 +02001328
Radek Krejcicd5f6222020-11-12 08:54:13 +01001329 assert(lydctx_p);
1330 assert(status);
1331
Radek Krejci1798aae2020-07-14 13:26:06 +02001332 /* init context */
1333 lydctx = calloc(1, sizeof *lydctx);
1334 LY_CHECK_ERR_RET(!lydctx, LOGMEM(ctx), LY_EMEM);
1335 lydctx->parse_options = parse_options;
1336 lydctx->validate_options = validate_options;
1337 lydctx->free = lyd_json_ctx_free;
Radek Krejci1798aae2020-07-14 13:26:06 +02001338
Radek Krejci284f31f2020-09-18 15:40:29 +02001339 /* starting top-level */
1340 for (i = 0; in->current[i] != '\0' && is_jsonws(in->current[i]); i++) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01001341 if (in->current[i] == '\n') {
1342 /* new line */
Radek Krejcid54412f2020-12-17 20:25:35 +01001343 LY_IN_NEW_LINE(in);
Michal Vasko61d76362020-10-07 10:47:30 +02001344 }
Radek Krejci284f31f2020-09-18 15:40:29 +02001345 }
Radek Krejci1798aae2020-07-14 13:26:06 +02001346
Radek Krejci284f31f2020-09-18 15:40:29 +02001347 LY_CHECK_ERR_RET(ret = lyjson_ctx_new(ctx, in, &lydctx->jsonctx), free(lydctx), ret);
Radek Krejcicd5f6222020-11-12 08:54:13 +01001348 *status = lyjson_ctx_status(lydctx->jsonctx, 0);
Radek Krejcibb27df32020-11-13 15:39:16 +01001349 if ((*status == LYJSON_END) || (*status == LYJSON_OBJECT_EMPTY) || (*status == LYJSON_OBJECT)) {
Radek Krejci284f31f2020-09-18 15:40:29 +02001350 *lydctx_p = lydctx;
1351 return LY_SUCCESS;
Radek Krejcicd5f6222020-11-12 08:54:13 +01001352 } else {
1353 /* expecting top-level object */
Radek Krejci2efc45b2020-12-22 16:25:44 +01001354 LOGVAL(ctx, LYVE_SYNTAX_JSON, "Expected top-level JSON object, but %s found.",
Radek Krejcicd5f6222020-11-12 08:54:13 +01001355 lyjson_token2str(*status));
1356 *lydctx_p = NULL;
Michal Vasko93509012020-11-13 10:26:09 +01001357 lyd_json_ctx_free((struct lyd_ctx *)lydctx);
Radek Krejcicd5f6222020-11-12 08:54:13 +01001358 return LY_EVALID;
Radek Krejci284f31f2020-09-18 15:40:29 +02001359 }
Radek Krejci1798aae2020-07-14 13:26:06 +02001360}
1361
1362LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001363lyd_parse_json_data(const struct ly_ctx *ctx, struct ly_in *in, uint32_t parse_options, uint32_t validate_options,
Radek Krejci0f969882020-08-21 16:56:47 +02001364 struct lyd_node **tree_p, struct lyd_ctx **lydctx_p)
Radek Krejci1798aae2020-07-14 13:26:06 +02001365{
1366 LY_ERR ret = LY_SUCCESS;
1367 struct lyd_json_ctx *lydctx = NULL;
1368 enum LYJSON_PARSER_STATUS status;
1369
1370 assert(tree_p);
1371 *tree_p = NULL;
1372
Radek Krejcicd5f6222020-11-12 08:54:13 +01001373 ret = lyd_parse_json_init(ctx, in, parse_options, validate_options, &lydctx, &status);
1374 LY_CHECK_GOTO(ret || status == LYJSON_END || status == LYJSON_OBJECT_EMPTY, cleanup);
Radek Krejci1798aae2020-07-14 13:26:06 +02001375
Radek Krejcicd5f6222020-11-12 08:54:13 +01001376 assert(status == LYJSON_OBJECT);
Radek Krejci1798aae2020-07-14 13:26:06 +02001377
1378 /* read subtree(s) */
1379 while (lydctx->jsonctx->in->current[0] && status != LYJSON_OBJECT_CLOSED) {
1380 ret = lydjson_subtree_r(lydctx, NULL, tree_p);
1381 LY_CHECK_GOTO(ret, cleanup);
1382
1383 status = lyjson_ctx_status(lydctx->jsonctx, 0);
1384 }
1385
1386 /* finish linking metadata */
1387 ret = lydjson_metadata_finish(lydctx, tree_p);
1388 LY_CHECK_GOTO(ret, cleanup);
1389
1390cleanup:
1391 /* there should be no unresolved types stored */
Michal Vasko49c39d82020-11-06 17:20:27 +01001392 assert(!(parse_options & LYD_PARSE_ONLY) || (!lydctx->node_types.count && !lydctx->meta_types.count &&
1393 !lydctx->node_when.count));
Radek Krejci1798aae2020-07-14 13:26:06 +02001394
1395 if (ret) {
1396 lyd_json_ctx_free((struct lyd_ctx *)lydctx);
1397 lyd_free_all(*tree_p);
1398 *tree_p = NULL;
1399 } else {
1400 *lydctx_p = (struct lyd_ctx *)lydctx;
1401 }
1402
1403 return ret;
1404}
1405
Michal Vasko2552ea32020-12-08 15:32:34 +01001406#if 0
Radek Krejci1798aae2020-07-14 13:26:06 +02001407/**
1408 * @brief Parse optional JSON envelope around the Notification data, including the eventTime data.
1409 *
1410 * @param[in] jsonctx JSON parser context
1411 * @param[out] envp_p Pointer to the created envelope opaq container.
Radek Krejcicd5f6222020-11-12 08:54:13 +01001412 * @param[out] status Storage for the current context's status
Radek Krejci1798aae2020-07-14 13:26:06 +02001413 * @return LY_SUCCESS if the envelope present and successfully parsed.
1414 * @return LY_ENOT in case there is not the expected envelope.
1415 * @return LY_ERR in case of parsing failure.
1416 */
1417static LY_ERR
Radek Krejcicd5f6222020-11-12 08:54:13 +01001418lydjson_notif_envelope(struct lyjson_ctx *jsonctx, struct lyd_node **envp_p, enum LYJSON_PARSER_STATUS *status_p)
Radek Krejci1798aae2020-07-14 13:26:06 +02001419{
1420 LY_ERR ret = LY_ENOT, r;
1421 const char *name, *prefix, *value = NULL;
1422 size_t name_len, prefix_len, value_len;
Radek Krejci857189e2020-09-01 13:26:36 +02001423 ly_bool is_attr, dynamic = 0;
Radek Krejci1798aae2020-07-14 13:26:06 +02001424 enum LYJSON_PARSER_STATUS status;
1425 struct lyd_node *et;
1426
1427 *envp_p = NULL;
1428
1429 /* backup the context */
1430 lyjson_ctx_backup(jsonctx);
1431
1432 /* "notification" envelope */
1433 lydjson_parse_name(jsonctx->value, jsonctx->value_len, &name, &name_len, &prefix, &prefix_len, &is_attr);
1434 LY_CHECK_GOTO(is_attr, cleanup);
1435 LY_CHECK_GOTO(prefix_len != 13 || strncmp(prefix, "ietf-restconf", 13), cleanup);
1436 LY_CHECK_GOTO(name_len != 12 || strncmp(name, "notification", name_len), cleanup);
1437
1438 r = lyjson_ctx_next(jsonctx, &status);
1439 LY_CHECK_ERR_GOTO(r, ret = r, cleanup);
1440 LY_CHECK_GOTO(status != LYJSON_OBJECT, cleanup);
1441
1442 /* "eventTime" child */
1443 lydjson_parse_name(jsonctx->value, jsonctx->value_len, &name, &name_len, &prefix, &prefix_len, &is_attr);
1444 LY_CHECK_GOTO(prefix_len || is_attr, cleanup);
1445 LY_CHECK_GOTO(name_len != 9 || strncmp(name, "eventTime", name_len), cleanup);
1446
1447 /* go for the data */
1448 r = lyjson_ctx_next(jsonctx, &status);
1449 LY_CHECK_ERR_GOTO(r, ret = r, cleanup);
1450 LY_CHECK_GOTO(status != LYJSON_STRING, cleanup);
1451
1452 value = jsonctx->value;
1453 value_len = jsonctx->value_len;
1454 dynamic = jsonctx->dynamic;
1455 jsonctx->dynamic = 0;
1456
1457 r = lyjson_ctx_next(jsonctx, &status);
1458 LY_CHECK_ERR_GOTO(r, ret = r, cleanup);
1459 LY_CHECK_GOTO(status != LYJSON_OBJECT, cleanup);
1460 /* now the notificationContent is expected, which will be parsed by the caller */
1461
1462 /* create notification envelope */
Radek Krejcif13b87b2020-12-01 22:02:17 +01001463 ret = lyd_create_opaq(jsonctx->ctx, "notification", ly_strlen_const("notification"), NULL, 0,
1464 "ietf-restconf", ly_strlen_const("ietf-restconf"), "", ly_strlen_const(""), NULL, LY_PREF_JSON, NULL,
1465 LYD_NODEHINT_ENVELOPE, envp_p);
Radek Krejci1798aae2020-07-14 13:26:06 +02001466 LY_CHECK_GOTO(ret, cleanup);
1467 /* create notification envelope */
Radek Krejcif13b87b2020-12-01 22:02:17 +01001468 ret = lyd_create_opaq(jsonctx->ctx, "eventTime", ly_strlen_const("eventTime"), NULL, 0,
1469 "ietf-restconf", ly_strlen_const("ietf-restconf"), value, value_len, &dynamic, LY_PREF_JSON, NULL,
1470 LYD_VALHINT_STRING, &et);
Radek Krejci1798aae2020-07-14 13:26:06 +02001471 LY_CHECK_GOTO(ret, cleanup);
1472 /* insert eventTime into notification */
1473 lyd_insert_node(*envp_p, NULL, et);
1474
1475 ret = LY_SUCCESS;
Radek Krejcicd5f6222020-11-12 08:54:13 +01001476 *status_p = status;
Radek Krejci1798aae2020-07-14 13:26:06 +02001477cleanup:
1478 if (ret) {
1479 /* restore the context */
1480 lyjson_ctx_restore(jsonctx);
1481 if (dynamic) {
Michal Vasko22df3f02020-08-24 13:29:22 +02001482 free((char *)value);
Radek Krejci1798aae2020-07-14 13:26:06 +02001483 }
1484 }
1485 return ret;
1486}
Michal Vasko79135ae2020-12-16 10:08:35 +01001487
Michal Vasko2552ea32020-12-08 15:32:34 +01001488#endif
Radek Krejci1798aae2020-07-14 13:26:06 +02001489
1490LY_ERR
1491lyd_parse_json_notif(const struct ly_ctx *ctx, struct ly_in *in, struct lyd_node **tree_p, struct lyd_node **ntf_p)
1492{
1493 LY_ERR ret = LY_SUCCESS;
1494 struct lyd_json_ctx *lydctx = NULL;
Radek Krejci1798aae2020-07-14 13:26:06 +02001495 struct lyd_node *tree = NULL;
1496 enum LYJSON_PARSER_STATUS status;
1497
1498 /* init */
Radek Krejcicd5f6222020-11-12 08:54:13 +01001499 ret = lyd_parse_json_init(ctx, in, LYD_PARSE_ONLY | LYD_PARSE_STRICT, 0, &lydctx, &status);
1500 LY_CHECK_GOTO(ret || status == LYJSON_END || status == LYJSON_OBJECT_EMPTY, cleanup);
1501
Radek Krejci1798aae2020-07-14 13:26:06 +02001502 lydctx->int_opts = LYD_INTOPT_NOTIF;
1503
Michal Vasko2552ea32020-12-08 15:32:34 +01001504#if 0
Radek Krejci1798aae2020-07-14 13:26:06 +02001505 /* parse "notification" and "eventTime", if present */
Radek Krejcicd5f6222020-11-12 08:54:13 +01001506 ret = lydjson_notif_envelope(lydctx->jsonctx, &ntf_e, &status);
Radek Krejci1798aae2020-07-14 13:26:06 +02001507 if (ret == LY_ENOT) {
1508 ret = LY_SUCCESS;
1509 } else if (ret) {
1510 goto cleanup;
1511 }
Michal Vasko2552ea32020-12-08 15:32:34 +01001512#endif
Radek Krejci1798aae2020-07-14 13:26:06 +02001513
Radek Krejcicd5f6222020-11-12 08:54:13 +01001514 assert(status == LYJSON_OBJECT);
1515
Michal Vaskocf770e22020-08-12 13:21:43 +02001516 /* read subtree */
1517 ret = lydjson_subtree_r(lydctx, NULL, &tree);
1518 LY_CHECK_GOTO(ret, cleanup);
Radek Krejci1798aae2020-07-14 13:26:06 +02001519
1520 /* finish linking metadata */
1521 ret = lydjson_metadata_finish(lydctx, &tree);
1522 LY_CHECK_GOTO(ret, cleanup);
1523
1524 /* make sure we have parsed some notification */
1525 if (!lydctx->op_node) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001526 LOGVAL(ctx, LYVE_DATA, "Missing the \"notification\" node.");
Radek Krejci1798aae2020-07-14 13:26:06 +02001527 ret = LY_EVALID;
1528 goto cleanup;
Michal Vasko69730152020-10-09 16:30:07 +02001529 } else if (lydctx->jsonctx->in->current[0] && (lyjson_ctx_status(lydctx->jsonctx, 0) != LYJSON_OBJECT_CLOSED)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001530 LOGVAL(ctx, LYVE_SYNTAX, "Unexpected sibling element of \"%s\".",
Michal Vasko69730152020-10-09 16:30:07 +02001531 tree->schema->name);
Michal Vaskocf770e22020-08-12 13:21:43 +02001532 ret = LY_EVALID;
1533 goto cleanup;
Radek Krejci1798aae2020-07-14 13:26:06 +02001534 }
1535
Radek Krejci1798aae2020-07-14 13:26:06 +02001536 if (ntf_p) {
1537 *ntf_p = lydctx->op_node;
1538 }
1539 assert(tree);
Michal Vasko4189c0f2020-08-13 09:05:22 +02001540 if (tree_p) {
1541 *tree_p = tree;
Radek Krejci1798aae2020-07-14 13:26:06 +02001542 }
1543
1544cleanup:
1545 /* we have used parse_only flag */
Michal Vasko49c39d82020-11-06 17:20:27 +01001546 assert(!lydctx || (!lydctx->node_types.count && !lydctx->meta_types.count && !lydctx->node_when.count));
Radek Krejci1798aae2020-07-14 13:26:06 +02001547
1548 lyd_json_ctx_free((struct lyd_ctx *)lydctx);
1549 if (ret) {
1550 lyd_free_all(tree);
Radek Krejci1798aae2020-07-14 13:26:06 +02001551 }
1552 return ret;
1553}
1554
Michal Vasko2552ea32020-12-08 15:32:34 +01001555#if 0
Radek Krejci1798aae2020-07-14 13:26:06 +02001556/**
1557 * @brief Parse optional JSON envelope around the processed content.
1558 *
1559 * @param[in] jsonctx JSON parser context
1560 * @param[in] parent Parent node (some other envelope).
1561 * @param[in] module_key Name of the module where the envelope element is expected.
1562 * @param[in] object_id Name of the envelope object.
1563 * @param[out] envp_p Pointer to the created envelope opaq container.
Radek Krejcicd5f6222020-11-12 08:54:13 +01001564 * @param[out] status Storage for the current context's status
Radek Krejci1798aae2020-07-14 13:26:06 +02001565 * @return LY_SUCCESS if the envelope present and successfully parsed.
1566 * @return LY_ENOT in case there is not the expected envelope.
1567 * @return LY_ERR in case of parsing failure.
1568 */
1569static LY_ERR
Michal Vaskoa5da3292020-08-12 13:10:50 +02001570lydjson_object_envelope(struct lyjson_ctx *jsonctx, struct lyd_node *parent, const char *module_key,
Radek Krejcicd5f6222020-11-12 08:54:13 +01001571 const char *object_id, struct lyd_node **envp_p, enum LYJSON_PARSER_STATUS *status)
Radek Krejci1798aae2020-07-14 13:26:06 +02001572{
1573 LY_ERR ret = LY_ENOT, r;
1574 const char *name, *prefix;
1575 size_t name_len, prefix_len;
Radek Krejci857189e2020-09-01 13:26:36 +02001576 ly_bool is_attr;
Radek Krejci1798aae2020-07-14 13:26:06 +02001577
1578 *envp_p = NULL;
1579
1580 /* "id" envelope */
1581 lydjson_parse_name(jsonctx->value, jsonctx->value_len, &name, &name_len, &prefix, &prefix_len, &is_attr);
1582 LY_CHECK_GOTO(is_attr, cleanup);
1583 LY_CHECK_GOTO(lydjson_get_node_prefix(parent, prefix, prefix_len, &prefix, &prefix_len), cleanup);
1584 LY_CHECK_GOTO(prefix_len != strlen(module_key) || strncmp(prefix, module_key, prefix_len), cleanup);
1585 LY_CHECK_GOTO(name_len != strlen(object_id) || strncmp(name, object_id, name_len), cleanup);
1586
Radek Krejcicd5f6222020-11-12 08:54:13 +01001587 r = lyjson_ctx_next(jsonctx, status);
Radek Krejci1798aae2020-07-14 13:26:06 +02001588 LY_CHECK_ERR_GOTO(r, ret = r, cleanup);
Radek Krejcicd5f6222020-11-12 08:54:13 +01001589 LY_CHECK_GOTO(*status != LYJSON_OBJECT, cleanup);
Radek Krejci1798aae2020-07-14 13:26:06 +02001590
1591 /* create the object envelope */
Michal Vasko501af032020-11-11 20:27:44 +01001592 ret = lyd_create_opaq(jsonctx->ctx, object_id, strlen(object_id), NULL, 0, module_key, ly_strlen(module_key), "", 0,
1593 NULL, LY_PREF_JSON, NULL, LYD_NODEHINT_ENVELOPE, envp_p);
Radek Krejci1798aae2020-07-14 13:26:06 +02001594 LY_CHECK_GOTO(ret, cleanup);
1595
1596 if (parent) {
1597 lyd_insert_node(parent, NULL, *envp_p);
1598 }
1599
1600 ret = LY_SUCCESS;
1601cleanup:
1602 return ret;
1603}
1604
1605static LY_ERR
Radek Krejcicd5f6222020-11-12 08:54:13 +01001606lydjson_object_envelope_close(struct lyjson_ctx *jsonctx, const char *object_id, enum LYJSON_PARSER_STATUS *status)
Radek Krejci1798aae2020-07-14 13:26:06 +02001607{
Radek Krejcicd5f6222020-11-12 08:54:13 +01001608 LY_CHECK_RET(lyjson_ctx_next(jsonctx, status));
1609 if (*status == LYJSON_END) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001610 LOGVAL(jsonctx->ctx, LY_VCODE_EOF);
Radek Krejci1798aae2020-07-14 13:26:06 +02001611 return LY_EVALID;
Radek Krejcicd5f6222020-11-12 08:54:13 +01001612 } else if (*status != LYJSON_OBJECT_CLOSED) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001613 LOGVAL(jsonctx->ctx, LYVE_SYNTAX, "Unexpected sibling member \"%.*s\" of \"%s\".",
Michal Vasko69730152020-10-09 16:30:07 +02001614 jsonctx->value_len, jsonctx->value, object_id);
Radek Krejci1798aae2020-07-14 13:26:06 +02001615 return LY_EVALID;
1616 }
1617 return LY_SUCCESS;
1618}
Michal Vasko79135ae2020-12-16 10:08:35 +01001619
Michal Vasko2552ea32020-12-08 15:32:34 +01001620#endif
Radek Krejci1798aae2020-07-14 13:26:06 +02001621
1622LY_ERR
1623lyd_parse_json_rpc(const struct ly_ctx *ctx, struct ly_in *in, struct lyd_node **tree_p, struct lyd_node **op_p)
1624{
1625 LY_ERR ret = LY_SUCCESS;
1626 struct lyd_json_ctx *lydctx = NULL;
Radek Krejci1798aae2020-07-14 13:26:06 +02001627 struct lyd_node *tree = NULL;
Radek Krejcicd5f6222020-11-12 08:54:13 +01001628 enum LYJSON_PARSER_STATUS status;
Radek Krejci1798aae2020-07-14 13:26:06 +02001629
1630 /* init */
Radek Krejcicd5f6222020-11-12 08:54:13 +01001631 ret = lyd_parse_json_init(ctx, in, LYD_PARSE_ONLY | LYD_PARSE_STRICT, 0, &lydctx, &status);
1632 LY_CHECK_GOTO(ret || status == LYJSON_END || status == LYJSON_OBJECT_EMPTY, cleanup);
1633
Radek Krejci1798aae2020-07-14 13:26:06 +02001634 lydctx->int_opts = LYD_INTOPT_RPC;
1635
Michal Vasko2552ea32020-12-08 15:32:34 +01001636#if 0
Radek Krejci1798aae2020-07-14 13:26:06 +02001637 /* process envelope(s), if present */
1638
1639 /* process rpc */
Radek Krejcicd5f6222020-11-12 08:54:13 +01001640 ret = lydjson_object_envelope(lydctx->jsonctx, NULL, "ietf-netconf", "rpc", &rpc_e, &status);
Radek Krejci1798aae2020-07-14 13:26:06 +02001641 if (ret == LY_ENOT) {
1642 ret = LY_SUCCESS;
1643 goto parse_content;
1644 } else if (ret) {
1645 goto cleanup;
1646 }
1647 /* process action */
Radek Krejcicd5f6222020-11-12 08:54:13 +01001648 ret = lydjson_object_envelope(lydctx->jsonctx, rpc_e, "yang", "action", &act_e, &status);
Radek Krejci1798aae2020-07-14 13:26:06 +02001649 if (ret == LY_ENOT) {
1650 ret = LY_SUCCESS;
1651 goto parse_content;
1652 } else if (ret) {
1653 goto cleanup;
1654 }
1655
1656parse_content:
Michal Vasko2552ea32020-12-08 15:32:34 +01001657#endif
Radek Krejcicd5f6222020-11-12 08:54:13 +01001658 assert(status == LYJSON_OBJECT);
Radek Krejci1798aae2020-07-14 13:26:06 +02001659
1660 /* read subtree(s) */
Michal Vasko2552ea32020-12-08 15:32:34 +01001661 ret = lydjson_subtree_r(lydctx, NULL, &tree);
Michal Vaskocf770e22020-08-12 13:21:43 +02001662 LY_CHECK_GOTO(ret, cleanup);
Radek Krejci1798aae2020-07-14 13:26:06 +02001663
1664 /* finish linking metadata */
1665 ret = lydjson_metadata_finish(lydctx, &tree);
1666 LY_CHECK_GOTO(ret, cleanup);
1667
1668 /* make sure we have parsed some operation */
1669 if (!lydctx->op_node) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001670 LOGVAL(ctx, LYVE_DATA, "Missing the rpc/action node.");
Radek Krejci1798aae2020-07-14 13:26:06 +02001671 ret = LY_EVALID;
1672 goto cleanup;
Michal Vasko69730152020-10-09 16:30:07 +02001673 } else if (lydctx->jsonctx->in->current[0] && (lyjson_ctx_status(lydctx->jsonctx, 0) != LYJSON_OBJECT_CLOSED)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001674 LOGVAL(ctx, LYVE_SYNTAX, "Unexpected sibling element of \"%s\".",
Michal Vasko69730152020-10-09 16:30:07 +02001675 tree->schema->name);
Michal Vaskocf770e22020-08-12 13:21:43 +02001676 ret = LY_EVALID;
1677 goto cleanup;
Radek Krejci1798aae2020-07-14 13:26:06 +02001678 }
1679
Radek Krejci1798aae2020-07-14 13:26:06 +02001680 if (op_p) {
1681 *op_p = lydctx->op_node;
1682 }
1683 assert(tree);
1684 if (tree_p) {
Michal Vasko2552ea32020-12-08 15:32:34 +01001685 *tree_p = tree;
Radek Krejci1798aae2020-07-14 13:26:06 +02001686 }
1687
1688cleanup:
1689 /* we have used parse_only flag */
Michal Vasko49c39d82020-11-06 17:20:27 +01001690 assert(!lydctx || (!lydctx->node_types.count && !lydctx->meta_types.count && !lydctx->node_when.count));
Radek Krejci1798aae2020-07-14 13:26:06 +02001691
1692 lyd_json_ctx_free((struct lyd_ctx *)lydctx);
1693 if (ret) {
1694 lyd_free_all(tree);
Radek Krejci1798aae2020-07-14 13:26:06 +02001695 }
1696 return ret;
1697}
1698
1699LY_ERR
Michal Vasko2552ea32020-12-08 15:32:34 +01001700lyd_parse_json_reply(const struct ly_ctx *ctx, struct ly_in *in, struct lyd_node **tree_p, struct lyd_node **op_p)
Radek Krejci1798aae2020-07-14 13:26:06 +02001701{
1702 LY_ERR ret = LY_SUCCESS;
1703 struct lyd_json_ctx *lydctx = NULL;
Michal Vasko2552ea32020-12-08 15:32:34 +01001704 struct lyd_node *tree = NULL;
Radek Krejci1798aae2020-07-14 13:26:06 +02001705 enum LYJSON_PARSER_STATUS status;
1706
1707 /* init */
Michal Vasko2552ea32020-12-08 15:32:34 +01001708 ret = lyd_parse_json_init(ctx, in, LYD_PARSE_ONLY | LYD_PARSE_STRICT, 0, &lydctx, &status);
Radek Krejcicd5f6222020-11-12 08:54:13 +01001709 LY_CHECK_GOTO(ret || status == LYJSON_END || status == LYJSON_OBJECT_EMPTY, cleanup);
1710
Radek Krejci1798aae2020-07-14 13:26:06 +02001711 lydctx->int_opts = LYD_INTOPT_REPLY;
1712
Michal Vasko2552ea32020-12-08 15:32:34 +01001713#if 0
Radek Krejci1798aae2020-07-14 13:26:06 +02001714 /* parse "rpc-reply", if any */
Radek Krejcicd5f6222020-11-12 08:54:13 +01001715 ret = lydjson_object_envelope(lydctx->jsonctx, NULL, "ietf-netconf", "rpc-reply", &rpcr_e, &status);
Radek Krejci1798aae2020-07-14 13:26:06 +02001716 if (ret == LY_ENOT) {
1717 ret = LY_SUCCESS;
1718 } else if (ret) {
1719 goto cleanup;
1720 }
Michal Vasko2552ea32020-12-08 15:32:34 +01001721#endif
Radek Krejci1798aae2020-07-14 13:26:06 +02001722
Radek Krejci1798aae2020-07-14 13:26:06 +02001723 assert(status == LYJSON_OBJECT);
1724
1725 /* read subtree(s) */
1726 while (lydctx->jsonctx->in->current[0] && status != LYJSON_OBJECT_CLOSED) {
Michal Vasko2552ea32020-12-08 15:32:34 +01001727 ret = lydjson_subtree_r(lydctx, NULL, &tree);
Radek Krejci1798aae2020-07-14 13:26:06 +02001728 LY_CHECK_GOTO(ret, cleanup);
1729
1730 status = lyjson_ctx_status(lydctx->jsonctx, 0);
1731 }
1732
1733 /* finish linking metadata */
Michal Vasko2552ea32020-12-08 15:32:34 +01001734 ret = lydjson_metadata_finish(lydctx, &tree);
Radek Krejci1798aae2020-07-14 13:26:06 +02001735 LY_CHECK_GOTO(ret, cleanup);
1736
Radek Krejci1798aae2020-07-14 13:26:06 +02001737 if (op_p) {
Michal Vasko79135ae2020-12-16 10:08:35 +01001738 *op_p = lydctx->op_node;
Michal Vasko4189c0f2020-08-13 09:05:22 +02001739 }
1740 if (tree_p) {
1741 *tree_p = tree;
Radek Krejci1798aae2020-07-14 13:26:06 +02001742 }
1743
1744cleanup:
1745 /* we have used parse_only flag */
Michal Vasko49c39d82020-11-06 17:20:27 +01001746 assert(!lydctx || (!lydctx->node_types.count && !lydctx->meta_types.count && !lydctx->node_when.count));
Radek Krejci1798aae2020-07-14 13:26:06 +02001747
1748 lyd_json_ctx_free((struct lyd_ctx *)lydctx);
1749 if (ret) {
Michal Vasko2552ea32020-12-08 15:32:34 +01001750 lyd_free_all(tree);
Radek Krejci1798aae2020-07-14 13:26:06 +02001751 }
1752 return ret;
Michal Vasko90932a92020-02-12 14:33:03 +01001753}