blob: 79b62a9fd2a4a2bafc3587422ee2fbaca3971805 [file] [log] [blame]
Michal Vasko90932a92020-02-12 14:33:03 +01001/**
2 * @file parser_json.c
3 * @author Radek Krejci <rkrejci@cesnet.cz>
Michal Vasko61ad1ff2022-02-10 15:48:39 +01004 * @author Michal Vasko <mvasko@cesnet.cz>
Michal Vasko90932a92020-02-12 14:33:03 +01005 * @brief JSON data parser for libyang
6 *
Michal Vasko61ad1ff2022-02-10 15:48:39 +01007 * Copyright (c) 2020 - 2022 CESNET, z.s.p.o.
Michal Vasko90932a92020-02-12 14:33:03 +01008 *
9 * This source code is licensed under BSD 3-Clause License (the "License").
10 * You may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
12 *
13 * https://opensource.org/licenses/BSD-3-Clause
14 */
15
Radek Krejci535ea9f2020-05-29 16:01:05 +020016#define _GNU_SOURCE
Michal Vasko90932a92020-02-12 14:33:03 +010017
Radek Krejci1798aae2020-07-14 13:26:06 +020018#include <assert.h>
Radek Krejci47fab892020-11-05 17:02:41 +010019#include <stdint.h>
Michal Vasko90932a92020-02-12 14:33:03 +010020#include <stdlib.h>
21#include <string.h>
22
Radek Krejci535ea9f2020-05-29 16:01:05 +020023#include "common.h"
Michal Vaskobbdadda2022-01-06 11:40:10 +010024#include "compat.h"
Michal Vasko90932a92020-02-12 14:33:03 +010025#include "context.h"
Radek Krejci47fab892020-11-05 17:02:41 +010026#include "dict.h"
Michal Vaskoafac7822020-10-20 14:22:26 +020027#include "in_internal.h"
Radek Krejci1798aae2020-07-14 13:26:06 +020028#include "json.h"
Radek Krejci47fab892020-11-05 17:02:41 +010029#include "log.h"
Radek Krejci77114102021-03-10 15:21:57 +010030#include "parser_data.h"
Radek Krejci1798aae2020-07-14 13:26:06 +020031#include "parser_internal.h"
Michal Vasko61ad1ff2022-02-10 15:48:39 +010032#include "plugins_exts.h"
Radek Krejci47fab892020-11-05 17:02:41 +010033#include "set.h"
34#include "tree.h"
Radek Krejci1798aae2020-07-14 13:26:06 +020035#include "tree_data.h"
36#include "tree_data_internal.h"
37#include "tree_schema.h"
Radek Krejci47fab892020-11-05 17:02:41 +010038#include "tree_schema_internal.h"
Radek Krejci1798aae2020-07-14 13:26:06 +020039#include "validation.h"
Michal Vasko90932a92020-02-12 14:33:03 +010040
41/**
Radek Krejci1798aae2020-07-14 13:26:06 +020042 * @brief Free the JSON data parser context.
43 *
44 * JSON implementation of lyd_ctx_free_clb().
45 */
46static void
47lyd_json_ctx_free(struct lyd_ctx *lydctx)
48{
49 struct lyd_json_ctx *ctx = (struct lyd_json_ctx *)lydctx;
50
51 if (lydctx) {
52 lyd_ctx_free(lydctx);
53 lyjson_ctx_free(ctx->jsonctx);
54 free(ctx);
55 }
56}
57
58/**
Michal Vasko61ad1ff2022-02-10 15:48:39 +010059 * @brief Pass the responsibility for releasing the dynamic values to @p dst.
aPiecekd2c39372021-06-16 14:03:12 +020060 *
61 * @param[in] jsonctx JSON context which contains the dynamic value.
62 * @param[in,out] dst Pointer to which the responsibility will be submited.
Michal Vasko61ad1ff2022-02-10 15:48:39 +010063 * If the pointer is already pointing to some allocated memory, it is released beforehand.
aPiecekd2c39372021-06-16 14:03:12 +020064 */
65static void
Michal Vasko61ad1ff2022-02-10 15:48:39 +010066lyjson_ctx_give_dynamic_value(struct lyjson_ctx *jsonctx, char **dst)
aPiecekd2c39372021-06-16 14:03:12 +020067{
68 assert(jsonctx && dst);
69
70 if (!jsonctx->dynamic) {
71 return;
72 }
73
74 if (dst) {
75 free(*dst);
76 }
77 *dst = NULL;
78
Michal Vasko61ad1ff2022-02-10 15:48:39 +010079 /* give the dynamic value */
aPiecekd2c39372021-06-16 14:03:12 +020080 *dst = (char *)jsonctx->value;
81
Michal Vasko61ad1ff2022-02-10 15:48:39 +010082 /* responsibility for the release is now passed to dst */
aPiecekd2c39372021-06-16 14:03:12 +020083 jsonctx->dynamic = 0;
84}
85
86/**
Radek Krejci1798aae2020-07-14 13:26:06 +020087 * @brief Parse JSON member-name as [\@][prefix:][name]
88 *
Michal Vaskocabe0702020-08-12 10:14:36 +020089 * \@ - metadata flag, maps to 1 in @p is_meta_p
Radek Krejci1798aae2020-07-14 13:26:06 +020090 * prefix - name of the module of the data node
91 * name - name of the data node
92 *
93 * All the output parameter are mandatory. Function only parse the member-name, all the appropriate checks are up to the caller.
94 *
95 * @param[in] value String to parse
96 * @param[in] value_len Length of the @p str.
97 * @param[out] name_p Pointer to the beginning of the parsed name.
98 * @param[out] name_len_p Pointer to the length of the parsed name.
99 * @param[out] prefix_p Pointer to the beginning of the parsed prefix. If the member-name does not contain prefix, result is NULL.
100 * @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 +0200101 * @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 +0200102 */
103static void
Michal Vaskocabe0702020-08-12 10:14:36 +0200104lydjson_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 +0200105 size_t *prefix_len_p, ly_bool *is_meta_p)
Radek Krejci1798aae2020-07-14 13:26:06 +0200106{
107 const char *name, *prefix = NULL;
108 size_t name_len, prefix_len = 0;
Radek Krejci857189e2020-09-01 13:26:36 +0200109 ly_bool is_meta = 0;
Radek Krejci1798aae2020-07-14 13:26:06 +0200110
111 name = memchr(value, ':', value_len);
112 if (name != NULL) {
113 prefix = value;
114 if (*prefix == '@') {
Michal Vaskocabe0702020-08-12 10:14:36 +0200115 is_meta = 1;
Radek Krejci1798aae2020-07-14 13:26:06 +0200116 prefix++;
117 }
118 prefix_len = name - prefix;
119 name++;
Michal Vaskocabe0702020-08-12 10:14:36 +0200120 name_len = value_len - (prefix_len + 1) - is_meta;
Radek Krejci1798aae2020-07-14 13:26:06 +0200121 } else {
122 name = value;
123 if (name[0] == '@') {
Michal Vaskocabe0702020-08-12 10:14:36 +0200124 is_meta = 1;
Radek Krejci1798aae2020-07-14 13:26:06 +0200125 name++;
126 }
Michal Vaskocabe0702020-08-12 10:14:36 +0200127 name_len = value_len - is_meta;
Michal Vasko90932a92020-02-12 14:33:03 +0100128 }
129
Radek Krejci1798aae2020-07-14 13:26:06 +0200130 *name_p = name;
131 *name_len_p = name_len;
132 *prefix_p = prefix;
133 *prefix_len_p = prefix_len;
Michal Vaskocabe0702020-08-12 10:14:36 +0200134 *is_meta_p = is_meta;
Radek Krejci1798aae2020-07-14 13:26:06 +0200135}
136
137/**
138 * @brief Get correct prefix (module_name) inside the @p node.
139 *
140 * @param[in] node Data node to get inherited prefix.
141 * @param[in] local_prefix Local prefix to replace the inherited prefix.
142 * @param[in] local_prefix_len Length of the @p local_prefix string. In case of 0, the inherited prefix is taken.
143 * @param[out] prefix_p Pointer to the resulting prefix string, Note that the result can be NULL in case of no local prefix
144 * and no context @p node to get inherited prefix.
145 * @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
146 * of no local prefix and no context @p node to get inherited prefix.
147 * @return LY_ERR value.
148 */
149static LY_ERR
Michal Vaskoa5da3292020-08-12 13:10:50 +0200150lydjson_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 +0200151 size_t *prefix_len_p)
Radek Krejci1798aae2020-07-14 13:26:06 +0200152{
153 struct lyd_node_opaq *onode;
154 const char *module_name = NULL;
155
156 assert(prefix_p && prefix_len_p);
157
158 if (local_prefix_len) {
159 *prefix_p = local_prefix;
160 *prefix_len_p = local_prefix_len;
161 return LY_SUCCESS;
162 }
163
164 *prefix_p = NULL;
165 while (node) {
166 if (node->schema) {
167 *prefix_p = node->schema->module->name;
168 break;
169 }
Michal Vasko22df3f02020-08-24 13:29:22 +0200170 onode = (struct lyd_node_opaq *)node;
Michal Vaskoad92b672020-11-12 13:11:31 +0100171 if (onode->name.module_name) {
172 *prefix_p = onode->name.module_name;
Radek Krejci1798aae2020-07-14 13:26:06 +0200173 break;
Michal Vaskoad92b672020-11-12 13:11:31 +0100174 } else if (onode->name.prefix) {
175 *prefix_p = onode->name.prefix;
Radek Krejci1798aae2020-07-14 13:26:06 +0200176 break;
177 }
Michal Vasko9e685082021-01-29 14:49:09 +0100178 node = lyd_parent(node);
Radek Krejci1798aae2020-07-14 13:26:06 +0200179 }
180 *prefix_len_p = ly_strlen(module_name);
181
182 return LY_SUCCESS;
183}
184
185/**
Michal Vaskoa4af6252022-05-20 10:38:54 +0200186 * @brief Skip the current JSON object/array.
187 *
Radek Krejci1798aae2020-07-14 13:26:06 +0200188 * @param[in] jsonctx JSON context with the input data to skip.
189 * @return LY_ERR value.
190 */
191static LY_ERR
192lydjson_data_skip(struct lyjson_ctx *jsonctx)
193{
194 enum LYJSON_PARSER_STATUS status, current;
Michal Vaskoa4af6252022-05-20 10:38:54 +0200195 uint32_t orig_depth;
Radek Krejci1798aae2020-07-14 13:26:06 +0200196
197 status = lyjson_ctx_status(jsonctx, 0);
Michal Vaskoa4af6252022-05-20 10:38:54 +0200198 assert((status == LYJSON_OBJECT) || (status == LYJSON_ARRAY));
199 orig_depth = jsonctx->depth;
200
201 /* next */
202 LY_CHECK_RET(lyjson_ctx_next(jsonctx, &current));
203
Michal Vaskoa09e8662022-06-15 07:58:24 +0200204 if ((status == LYJSON_OBJECT) && (current != LYJSON_OBJECT) && (current != LYJSON_ARRAY)) {
Michal Vaskoa4af6252022-05-20 10:38:54 +0200205 /* no nested objects */
206 LY_CHECK_RET(lyjson_ctx_next(jsonctx, NULL));
207 return LY_SUCCESS;
Michal Vasko76096ec2022-02-24 16:06:16 +0100208 }
Radek Krejci1798aae2020-07-14 13:26:06 +0200209
210 /* skip after the content */
Michal Vaskoa4af6252022-05-20 10:38:54 +0200211 while ((jsonctx->depth > orig_depth) || (current != status + 1)) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200212 LY_CHECK_RET(lyjson_ctx_next(jsonctx, &current));
Juraj Vijtiuk2e883682021-09-20 17:00:56 +0200213
Michal Vaskoa4af6252022-05-20 10:38:54 +0200214 if (current == LYJSON_END) {
215 break;
Radek Krejci1798aae2020-07-14 13:26:06 +0200216 }
Michal Vaskoa4af6252022-05-20 10:38:54 +0200217 }
Radek Krejci1798aae2020-07-14 13:26:06 +0200218
219 return LY_SUCCESS;
220}
221
222/**
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100223 * @brief Get schema node corresponding to the input parameters.
224 *
225 * @param[in] lydctx JSON data parser context.
226 * @param[in] is_attr Flag if the reference to the node is an attribute, for logging only.
227 * @param[in] prefix Requested node's prefix (module name).
228 * @param[in] prefix_len Length of the @p prefix.
229 * @param[in] name Requested node's name.
230 * @param[in] name_len Length of the @p name.
231 * @param[in] parent Parent of the node being processed, can be NULL in case of top-level.
Michal Vasko8cc3f662022-03-29 11:25:51 +0200232 * @param[out] snode Found schema node corresponding to the input parameters. If NULL, parse as an opaque node.
233 * @param[out] ext Extension instance that provided @p snode, if any.
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100234 * @return LY_SUCCES on success.
235 * @return LY_ENOT if the whole object was parsed (skipped or as an extension).
236 * @return LY_ERR on error.
237 */
238static LY_ERR
239lydjson_get_snode(struct lyd_json_ctx *lydctx, ly_bool is_attr, const char *prefix, size_t prefix_len, const char *name,
Michal Vasko8cc3f662022-03-29 11:25:51 +0200240 size_t name_len, struct lyd_node *parent, const struct lysc_node **snode, struct lysc_ext_instance **ext)
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100241{
242 LY_ERR ret = LY_SUCCESS, r;
243 struct lys_module *mod = NULL;
244 uint32_t getnext_opts = lydctx->int_opts & LYD_INTOPT_REPLY ? LYS_GETNEXT_OUTPUT : 0;
245
Michal Vasko8cc3f662022-03-29 11:25:51 +0200246 *snode = NULL;
247 *ext = NULL;
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100248
249 LOG_LOCSET(NULL, parent, NULL, NULL);
250
Michal Vasko8cc3f662022-03-29 11:25:51 +0200251 /* get the element module, prefer parent context because of extensions */
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100252 if (prefix_len) {
Michal Vasko8cc3f662022-03-29 11:25:51 +0200253 mod = ly_ctx_get_module_implemented2(parent ? LYD_CTX(parent) : lydctx->jsonctx->ctx, prefix, prefix_len);
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100254 } else if (parent) {
255 if (parent->schema) {
256 mod = parent->schema->module;
257 }
258 } else {
259 LOGVAL(lydctx->jsonctx->ctx, LYVE_SYNTAX_JSON, "Top-level JSON object member \"%.*s\" must be namespace-qualified.",
260 (int)(is_attr ? name_len + 1 : name_len), is_attr ? name - 1 : name);
261 ret = LY_EVALID;
262 goto cleanup;
263 }
264 if (!mod) {
265 /* check for extension data */
Michal Vasko8cc3f662022-03-29 11:25:51 +0200266 r = ly_nested_ext_schema(parent, NULL, prefix, prefix_len, LY_VALUE_JSON, NULL, name, name_len, snode, ext);
267 if (r != LY_ENOT) {
268 /* success or error */
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100269 ret = r;
270 goto cleanup;
271 }
272
273 /* unknown module */
274 if (lydctx->parse_opts & LYD_PARSE_STRICT) {
275 LOGVAL(lydctx->jsonctx->ctx, LYVE_REFERENCE, "No module named \"%.*s\" in the context.", (int)prefix_len, prefix);
276 ret = LY_EVALID;
277 goto cleanup;
278 }
279 if (!(lydctx->parse_opts & LYD_PARSE_OPAQ)) {
280 /* skip element with children */
281 ret = lydjson_data_skip(lydctx->jsonctx);
282 LY_CHECK_GOTO(ret, cleanup);
283
284 ret = LY_ENOT;
285 goto cleanup;
286 }
287 }
288
289 /* get the schema node */
290 if (mod && (!parent || parent->schema)) {
291 if (!parent && lydctx->ext) {
Michal Vasko8cc3f662022-03-29 11:25:51 +0200292 *snode = lysc_ext_find_node(lydctx->ext, mod, name, name_len, 0, getnext_opts);
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100293 } else {
Michal Vasko8cc3f662022-03-29 11:25:51 +0200294 *snode = lys_find_child(parent ? parent->schema : NULL, mod, name, name_len, 0, getnext_opts);
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100295 }
Michal Vasko8cc3f662022-03-29 11:25:51 +0200296 if (!*snode) {
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100297 /* check for extension data */
Michal Vasko8cc3f662022-03-29 11:25:51 +0200298 r = ly_nested_ext_schema(parent, NULL, prefix, prefix_len, LY_VALUE_JSON, NULL, name, name_len, snode, ext);
299 if (r != LY_ENOT) {
300 /* success or error */
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100301 ret = r;
302 goto cleanup;
303 }
304
305 /* unknown data node */
306 if (lydctx->parse_opts & LYD_PARSE_STRICT) {
307 if (parent) {
308 LOGVAL(lydctx->jsonctx->ctx, LYVE_REFERENCE, "Node \"%.*s\" not found as a child of \"%s\" node.",
309 (int)name_len, name, LYD_NAME(parent));
310 } else if (lydctx->ext) {
311 if (lydctx->ext->argument) {
312 LOGVAL(lydctx->jsonctx->ctx, LYVE_REFERENCE,
313 "Node \"%.*s\" not found in the \"%s\" %s extension instance.",
314 (int)name_len, name, lydctx->ext->argument, lydctx->ext->def->name);
315 } else {
316 LOGVAL(lydctx->jsonctx->ctx, LYVE_REFERENCE, "Node \"%.*s\" not found in the %s extension instance.",
317 (int)name_len, name, lydctx->ext->def->name);
318 }
319 } else {
320 LOGVAL(lydctx->jsonctx->ctx, LYVE_REFERENCE, "Node \"%.*s\" not found in the \"%s\" module.",
321 (int)name_len, name, mod->name);
322 }
323 ret = LY_EVALID;
324 goto cleanup;
325 } else if (!(lydctx->parse_opts & LYD_PARSE_OPAQ)) {
326 /* skip element with children */
327 ret = lydjson_data_skip(lydctx->jsonctx);
328 LY_CHECK_GOTO(ret, cleanup);
329
330 ret = LY_ENOT;
331 goto cleanup;
332 }
333 } else {
334 /* check that schema node is valid and can be used */
Michal Vasko8cc3f662022-03-29 11:25:51 +0200335 ret = lyd_parser_check_schema((struct lyd_ctx *)lydctx, *snode);
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100336 }
337 }
338
339cleanup:
340 LOG_LOCBACK(0, parent ? 1 : 0, 0, 0);
341 return ret;
342}
343
344/**
Radek Krejci1798aae2020-07-14 13:26:06 +0200345 * @brief Check that the input data are parseable as the @p list.
346 *
347 * Checks for all the list's keys. Function does not revert the context state.
348 *
349 * @param[in] jsonctx JSON parser context.
350 * @param[in] list List schema node corresponding to the input data object.
351 * @return LY_SUCCESS in case the data are ok for the @p list
352 * @return LY_ENOT in case the input data are not sufficient to fully parse the list instance.
353 */
354static LY_ERR
355lydjson_check_list(struct lyjson_ctx *jsonctx, const struct lysc_node *list)
356{
357 LY_ERR ret = LY_SUCCESS;
358 enum LYJSON_PARSER_STATUS status = lyjson_ctx_status(jsonctx, 0);
359 struct ly_set key_set = {0};
360 const struct lysc_node *snode;
361 uint32_t i, status_count;
362
363 assert(list && (list->nodetype == LYS_LIST));
364 assert(status == LYJSON_OBJECT);
365
366 /* get all keys into a set (keys do not have if-features or anything) */
367 snode = NULL;
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100368 while ((snode = lys_getnext(snode, list, NULL, 0)) && (snode->flags & LYS_KEY)) {
Radek Krejci3d92e442020-10-12 12:48:13 +0200369 ret = ly_set_add(&key_set, (void *)snode, 1, NULL);
Radek Krejciba03a5a2020-08-27 14:40:41 +0200370 LY_CHECK_GOTO(ret, cleanup);
Radek Krejci1798aae2020-07-14 13:26:06 +0200371 }
372
373 if (status != LYJSON_OBJECT_EMPTY) {
374 status_count = jsonctx->status.count;
375
376 while (key_set.count && status != LYJSON_OBJECT_CLOSED) {
377 const char *name, *prefix;
378 size_t name_len, prefix_len;
Radek Krejci857189e2020-09-01 13:26:36 +0200379 ly_bool is_attr;
Radek Krejci1798aae2020-07-14 13:26:06 +0200380
381 /* match the key */
382 snode = NULL;
383 lydjson_parse_name(jsonctx->value, jsonctx->value_len, &name, &name_len, &prefix, &prefix_len, &is_attr);
384
385 if (!is_attr && !prefix) {
386 for (i = 0; i < key_set.count; ++i) {
387 snode = (const struct lysc_node *)key_set.objs[i];
388 if (!ly_strncmp(snode->name, name, name_len)) {
389 break;
390 }
391 }
392 /* go into the item to a) process it as a key or b) start skipping it as another list child */
393 ret = lyjson_ctx_next(jsonctx, &status);
394 LY_CHECK_GOTO(ret, cleanup);
395
396 if (snode) {
397 /* we have the key, validate the value */
398 if (status < LYJSON_NUMBER) {
399 /* not a terminal */
400 ret = LY_ENOT;
401 goto cleanup;
402 }
403
Radek Krejci8df109d2021-04-23 12:19:08 +0200404 ret = lys_value_validate(NULL, snode, jsonctx->value, jsonctx->value_len, LY_VALUE_JSON, NULL);
Radek Krejci1798aae2020-07-14 13:26:06 +0200405 LY_CHECK_GOTO(ret, cleanup);
406
407 /* key with a valid value, remove from the set */
408 ly_set_rm_index(&key_set, i, NULL);
409 }
410 } else {
411 /* start skipping the member we are not interested in */
412 ret = lyjson_ctx_next(jsonctx, &status);
413 LY_CHECK_GOTO(ret, cleanup);
414 }
415 /* move to the next child */
416 while (status_count < jsonctx->status.count) {
417 ret = lyjson_ctx_next(jsonctx, &status);
418 LY_CHECK_GOTO(ret, cleanup);
419 }
420 }
421 }
422
423 if (key_set.count) {
424 /* some keys are missing/did not validate */
425 ret = LY_ENOT;
426 }
427
428cleanup:
429 ly_set_erase(&key_set, NULL);
430 return ret;
431}
432
433/**
434 * @brief Get the hint for the data type parsers according to the current JSON parser context.
435 *
436 * @param[in] lydctx JSON data parser context. The context is supposed to be on a value.
437 * @param[in,out] status Pointer to the current context status,
438 * in some circumstances the function manipulates with the context so the status is updated.
439 * @param[out] type_hint_p Pointer to the variable to store the result.
440 * @return LY_SUCCESS in case of success.
441 * @return LY_EINVAL in case of invalid context status not referring to a value.
442 */
443static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200444lydjson_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 +0200445{
446 *type_hint_p = 0;
447
448 if (*status_p == LYJSON_ARRAY) {
449 /* only [null] */
450 LY_CHECK_RET(lyjson_ctx_next(lydctx->jsonctx, status_p));
Michal Vasko0ebc95f2022-07-11 15:55:38 +0200451 if (*status_p != LYJSON_NULL) {
452 LOGVAL(lydctx->jsonctx->ctx, LYVE_SYNTAX_JSON, "Expected JSON name/[null], but input data contains name/%s.",
453 lyjson_token2str(*status_p));
454 return LY_EINVAL;
455 }
Radek Krejci1798aae2020-07-14 13:26:06 +0200456
457 LY_CHECK_RET(lyjson_ctx_next(lydctx->jsonctx, NULL));
Michal Vasko0ebc95f2022-07-11 15:55:38 +0200458 if (lyjson_ctx_status(lydctx->jsonctx, 0) != LYJSON_ARRAY_CLOSED) {
459 LOGVAL(lydctx->jsonctx->ctx, LYVE_SYNTAX_JSON, "Expected array end, but input data contains %s.",
460 lyjson_token2str(*status_p));
461 return LY_EINVAL;
462 }
Radek Krejci1798aae2020-07-14 13:26:06 +0200463
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200464 *type_hint_p = LYD_VALHINT_EMPTY;
Radek Krejci1798aae2020-07-14 13:26:06 +0200465 } else if (*status_p == LYJSON_STRING) {
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200466 *type_hint_p = LYD_VALHINT_STRING | LYD_VALHINT_NUM64;
Radek Krejci1798aae2020-07-14 13:26:06 +0200467 } else if (*status_p == LYJSON_NUMBER) {
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200468 *type_hint_p = LYD_VALHINT_DECNUM;
Michal Vasko69730152020-10-09 16:30:07 +0200469 } else if ((*status_p == LYJSON_FALSE) || (*status_p == LYJSON_TRUE)) {
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200470 *type_hint_p = LYD_VALHINT_BOOLEAN;
Radek Krejci1798aae2020-07-14 13:26:06 +0200471 } else if (*status_p == LYJSON_NULL) {
472 *type_hint_p = 0;
473 } else {
Michal Vasko0ebc95f2022-07-11 15:55:38 +0200474 LOGVAL(lydctx->jsonctx->ctx, LYVE_SYNTAX_JSON, "Unexpected input data %s.", lyjson_token2str(*status_p));
Radek Krejci1798aae2020-07-14 13:26:06 +0200475 return LY_EINVAL;
476 }
477
478 return LY_SUCCESS;
479}
480
481/**
482 * @brief Check in advance if the input data are parsable according to the provided @p snode.
483 *
484 * Note that the checks are done only in case the LYD_PARSE_OPAQ is allowed. Otherwise the same checking
485 * is naturally done when the data are really parsed.
486 *
487 * @param[in] lydctx JSON data parser context. When the function returns, the context is in the same state
488 * as before calling, despite it is necessary to process input data for checking.
489 * @param[in] snode Schema node corresponding to the member currently being processed in the context.
490 * @param[out] type_hint_p Pointer to a variable to store detected value type hint in case of leaf or leaf-list.
491 * @return LY_SUCCESS in case the data are ok for the @p snode or the LYD_PARSE_OPAQ is not enabled.
492 * @return LY_ENOT in case the input data are not sufficient to fully parse the list instance
493 * @return LY_EINVAL in case of invalid leaf JSON encoding
494 * and they are expected to be parsed as opaq nodes.
495 */
496static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200497lydjson_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 +0200498{
499 LY_ERR ret = LY_SUCCESS;
500 struct lyjson_ctx *jsonctx = lydctx->jsonctx;
501 enum LYJSON_PARSER_STATUS status;
502
503 assert(snode);
Radek Krejci1798aae2020-07-14 13:26:06 +0200504
Michal Vasko32ac9942020-08-12 14:35:12 +0200505 if (!(snode->nodetype & (LYD_NODE_TERM | LYS_LIST))) {
506 /* can always be parsed as a data node if we have the schema node */
507 return LY_SUCCESS;
508 }
509
Michal Vasko85430702021-07-21 14:29:56 +0200510 /* backup parser */
511 lyjson_ctx_backup(jsonctx);
512 status = lyjson_ctx_status(jsonctx, 0);
Radek Krejci1798aae2020-07-14 13:26:06 +0200513
Michal Vasko85430702021-07-21 14:29:56 +0200514 if (lydctx->parse_opts & LYD_PARSE_OPAQ) {
Michal Vasko32ac9942020-08-12 14:35:12 +0200515 /* check if the node is parseable. if not, NULL the snode to announce that it is supposed to be parsed
516 * as an opaq node */
Radek Krejci1798aae2020-07-14 13:26:06 +0200517 switch (snode->nodetype) {
518 case LYS_LEAFLIST:
519 case LYS_LEAF:
520 /* value may not be valid in which case we parse it as an opaque node */
521 ret = lydjson_value_type_hint(lydctx, &status, type_hint_p);
522 if (ret) {
523 break;
524 }
525
Radek Krejci8df109d2021-04-23 12:19:08 +0200526 if (lys_value_validate(NULL, snode, jsonctx->value, jsonctx->value_len, LY_VALUE_JSON, NULL)) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200527 ret = LY_ENOT;
528 }
529 break;
530 case LYS_LIST:
531 /* lists may not have all its keys */
532 if (lydjson_check_list(jsonctx, snode)) {
533 /* invalid list, parse as opaque if it missing/has invalid some keys */
534 ret = LY_ENOT;
535 }
Michal Vasko32ac9942020-08-12 14:35:12 +0200536 break;
Radek Krejci1798aae2020-07-14 13:26:06 +0200537 }
Michal Vasko32ac9942020-08-12 14:35:12 +0200538 } else if (snode->nodetype & LYD_NODE_TERM) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200539 status = lyjson_ctx_status(jsonctx, 0);
540 ret = lydjson_value_type_hint(lydctx, &status, type_hint_p);
541 }
542
Michal Vasko85430702021-07-21 14:29:56 +0200543 /* restore parser */
544 lyjson_ctx_restore(jsonctx);
545
Radek Krejci1798aae2020-07-14 13:26:06 +0200546 return ret;
547}
548
549/**
550 * @brief Join the forward-referencing metadata with their target data nodes.
551 *
552 * Note that JSON encoding for YANG data allows forward-referencing metadata only for leafs/leaf-lists.
553 *
554 * @param[in] lydctx JSON data parser context.
555 * @param[in,out] first_p Pointer to the first sibling node variable (top-level or in a particular parent node)
556 * as a starting point to search for the metadata's target data node
557 * @return LY_SUCCESS on success
558 * @return LY_EVALID in case there are some metadata with unresolved target data node instance
559 */
560static LY_ERR
561lydjson_metadata_finish(struct lyd_json_ctx *lydctx, struct lyd_node **first_p)
562{
563 LY_ERR ret = LY_SUCCESS;
aPiecek5057c2e2021-05-17 10:28:03 +0200564 struct lyd_node *node, *attr, *next, *meta_iter;
Michal Vasko8cc3f662022-03-29 11:25:51 +0200565 struct lysc_ext_instance *ext;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200566 uint64_t instance = 0;
Radek Krejci1798aae2020-07-14 13:26:06 +0200567 const char *prev = NULL;
Radek Krejci2efc45b2020-12-22 16:25:44 +0100568 uint32_t log_location_items = 0;
Radek Krejci1798aae2020-07-14 13:26:06 +0200569
570 /* finish linking metadata */
571 LY_LIST_FOR_SAFE(*first_p, next, attr) {
Michal Vasko22df3f02020-08-24 13:29:22 +0200572 struct lyd_node_opaq *meta_container = (struct lyd_node_opaq *)attr;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200573 uint64_t match = 0;
Radek Krejci857189e2020-09-01 13:26:36 +0200574 ly_bool is_attr;
Radek Krejci1798aae2020-07-14 13:26:06 +0200575 const char *name, *prefix;
576 size_t name_len, prefix_len;
577 const struct lysc_node *snode;
578
Michal Vaskoad92b672020-11-12 13:11:31 +0100579 if (attr->schema || (meta_container->name.name[0] != '@')) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200580 /* not an opaq metadata node */
581 continue;
582 }
583
Radek Krejciddace2c2021-01-08 11:30:56 +0100584 LOG_LOCSET(NULL, attr, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100585 log_location_items++;
586
Michal Vaskoad92b672020-11-12 13:11:31 +0100587 if (prev != meta_container->name.name) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200588 /* metas' names are stored in dictionary, so checking pointers must works */
589 lydict_remove(lydctx->jsonctx->ctx, prev);
Michal Vaskoad92b672020-11-12 13:11:31 +0100590 LY_CHECK_GOTO(ret = lydict_insert(lydctx->jsonctx->ctx, meta_container->name.name, 0, &prev), cleanup);
Radek Krejci1798aae2020-07-14 13:26:06 +0200591 instance = 1;
592 } else {
593 instance++;
594 }
595
aPiecek5057c2e2021-05-17 10:28:03 +0200596 /* find the corresponding data node */
597 LY_LIST_FOR(*first_p, node) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200598 if (!node->schema) {
599 /* opaq node - we are going to put into it just a generic attribute. */
Michal Vaskoad92b672020-11-12 13:11:31 +0100600 if (strcmp(&meta_container->name.name[1], ((struct lyd_node_opaq *)node)->name.name)) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200601 continue;
602 }
603
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200604 if (((struct lyd_node_opaq *)node)->hints & LYD_NODEHINT_LIST) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100605 LOGVAL(lydctx->jsonctx->ctx, LYVE_SYNTAX, "Metadata container references a sibling list node %s.",
606 ((struct lyd_node_opaq *)node)->name.name);
Radek Krejci1798aae2020-07-14 13:26:06 +0200607 ret = LY_EVALID;
608 goto cleanup;
609 }
610
611 /* match */
612 match++;
613 if (match != instance) {
614 continue;
615 }
616
617 LY_LIST_FOR(meta_container->child, meta_iter) {
618 /* convert opaq node to a attribute of the opaq node */
Michal Vasko22df3f02020-08-24 13:29:22 +0200619 struct lyd_node_opaq *meta = (struct lyd_node_opaq *)meta_iter;
Radek Krejcibb27df32020-11-13 15:39:16 +0100620
Michal Vaskoad92b672020-11-12 13:11:31 +0100621 ret = lyd_create_attr(node, NULL, lydctx->jsonctx->ctx, meta->name.name, strlen(meta->name.name),
622 meta->name.prefix, ly_strlen(meta->name.prefix), meta->name.module_name,
Radek Krejci8df109d2021-04-23 12:19:08 +0200623 ly_strlen(meta->name.module_name), meta->value, ly_strlen(meta->value), NULL, LY_VALUE_JSON,
Michal Vaskoad92b672020-11-12 13:11:31 +0100624 NULL, meta->hints);
Radek Krejci1798aae2020-07-14 13:26:06 +0200625 LY_CHECK_GOTO(ret, cleanup);
626 }
627
628 /* done */
629 break;
630 } else {
631 /* this is the second time we are resolving the schema node, so it must succeed,
632 * but remember that snode can be still NULL */
Michal Vaskoad92b672020-11-12 13:11:31 +0100633 lydjson_parse_name(meta_container->name.name, strlen(meta_container->name.name), &name, &name_len,
634 &prefix, &prefix_len, &is_attr);
Radek Krejci1798aae2020-07-14 13:26:06 +0200635 assert(is_attr);
Michal Vasko8cc3f662022-03-29 11:25:51 +0200636 lydjson_get_snode(lydctx, is_attr, prefix, prefix_len, name, name_len, lyd_parent(*first_p), &snode, &ext);
Radek Krejci1798aae2020-07-14 13:26:06 +0200637
638 if (snode != node->schema) {
639 continue;
640 }
641
642 /* match */
643 match++;
644 if (match != instance) {
645 continue;
646 }
647
648 LY_LIST_FOR(meta_container->child, meta_iter) {
649 /* convert opaq node to a metadata of the node */
Michal Vasko22df3f02020-08-24 13:29:22 +0200650 struct lyd_node_opaq *meta = (struct lyd_node_opaq *)meta_iter;
Radek Krejci1798aae2020-07-14 13:26:06 +0200651 struct lys_module *mod = NULL;
Radek Krejci1798aae2020-07-14 13:26:06 +0200652
Michal Vaskoad92b672020-11-12 13:11:31 +0100653 mod = ly_ctx_get_module_implemented(lydctx->jsonctx->ctx, meta->name.prefix);
Radek Krejci1798aae2020-07-14 13:26:06 +0200654 if (mod) {
Michal Vasko22df3f02020-08-24 13:29:22 +0200655 ret = lyd_parser_create_meta((struct lyd_ctx *)lydctx, node, NULL, mod,
Michal Vaskoad92b672020-11-12 13:11:31 +0100656 meta->name.name, strlen(meta->name.name), meta->value, ly_strlen(meta->value),
Michal Vaskoddd76592022-01-17 13:34:48 +0100657 NULL, LY_VALUE_JSON, NULL, meta->hints, node->schema);
Radek Krejci1798aae2020-07-14 13:26:06 +0200658 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoe0665742021-02-11 11:08:44 +0100659 } else if (lydctx->parse_opts & LYD_PARSE_STRICT) {
Michal Vasko4eab5622021-07-22 15:36:45 +0200660 if (meta->name.prefix) {
661 LOGVAL(lydctx->jsonctx->ctx, LYVE_REFERENCE,
662 "Unknown (or not implemented) YANG module \"%s\" of metadata \"%s%s%s\".",
663 meta->name.prefix, meta->name.prefix, ly_strlen(meta->name.prefix) ? ":" : "",
664 meta->name.name);
665 } else {
666 LOGVAL(lydctx->jsonctx->ctx, LYVE_REFERENCE, "Missing YANG module of metadata \"%s\".",
667 meta->name.name);
668 }
Radek Krejci1798aae2020-07-14 13:26:06 +0200669 ret = LY_EVALID;
670 goto cleanup;
671 }
672 }
Radek Krejci1798aae2020-07-14 13:26:06 +0200673
Michal Vasko8cc3f662022-03-29 11:25:51 +0200674 /* add/correct flags */
675 ret = lyd_parse_set_data_flags(node, &node->meta, (struct lyd_ctx *)lydctx, ext);
676 LY_CHECK_GOTO(ret, cleanup);
Radek Krejci1798aae2020-07-14 13:26:06 +0200677 break;
678 }
679 }
680
681 if (match != instance) {
682 /* there is no corresponding data node for the metadata */
683 if (instance > 1) {
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100684 LOGVAL(lydctx->jsonctx->ctx, LYVE_REFERENCE,
685 "Missing JSON data instance #%" PRIu64 " to be coupled with %s metadata.",
Michal Vasko54ba8912021-07-23 12:46:23 +0200686 instance, meta_container->name.name);
Radek Krejci1798aae2020-07-14 13:26:06 +0200687 } else {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100688 LOGVAL(lydctx->jsonctx->ctx, LYVE_REFERENCE, "Missing JSON data instance to be coupled with %s metadata.",
689 meta_container->name.name);
Radek Krejci1798aae2020-07-14 13:26:06 +0200690 }
691 ret = LY_EVALID;
692 } else {
693 /* remove the opaq attr */
694 if (attr == (*first_p)) {
aPiecek5057c2e2021-05-17 10:28:03 +0200695 *first_p = attr->next;
Radek Krejci1798aae2020-07-14 13:26:06 +0200696 }
697 lyd_free_tree(attr);
698 }
Radek Krejci2efc45b2020-12-22 16:25:44 +0100699
Radek Krejciddace2c2021-01-08 11:30:56 +0100700 LOG_LOCBACK(0, log_location_items, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100701 log_location_items = 0;
Radek Krejci1798aae2020-07-14 13:26:06 +0200702 }
703
704cleanup:
705 lydict_remove(lydctx->jsonctx->ctx, prev);
706
Radek Krejciddace2c2021-01-08 11:30:56 +0100707 LOG_LOCBACK(0, log_location_items, 0, 0);
Radek Krejci1798aae2020-07-14 13:26:06 +0200708 return ret;
709}
710
711/**
712 * @brief Parse a metadata member.
713 *
714 * @param[in] lydctx JSON data parser context.
715 * @param[in] snode Schema node of the metadata parent.
716 * @param[in] node Parent node in case the metadata is not forward-referencing (only LYD_NODE_TERM)
717 * so the data node does not exists. In such a case the metadata is stored in the context for the later
718 * processing by lydjson_metadata_finish().
719 * @return LY_SUCCESS on success
720 * @return Various LY_ERR values in case of failure.
721 */
722static LY_ERR
723lydjson_metadata(struct lyd_json_ctx *lydctx, const struct lysc_node *snode, struct lyd_node *node)
724{
725 LY_ERR ret = LY_SUCCESS;
726 enum LYJSON_PARSER_STATUS status;
727 const char *expected;
Radek Krejci857189e2020-09-01 13:26:36 +0200728 ly_bool in_parent = 0;
Radek Krejci1798aae2020-07-14 13:26:06 +0200729 const char *name, *prefix = NULL;
aPiecek303fb252021-06-16 11:54:26 +0200730 char *dynamic_prefname = NULL;
Radek Krejci1798aae2020-07-14 13:26:06 +0200731 size_t name_len, prefix_len = 0;
732 struct lys_module *mod;
733 struct lyd_meta *meta = NULL;
734 const struct ly_ctx *ctx = lydctx->jsonctx->ctx;
Radek Krejci857189e2020-09-01 13:26:36 +0200735 ly_bool is_attr = 0;
Radek Krejci1798aae2020-07-14 13:26:06 +0200736 struct lyd_node *prev = node;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200737 uint32_t instance = 0;
Radek Krejci1798aae2020-07-14 13:26:06 +0200738 uint16_t nodetype;
739
740 assert(snode || node);
741
742 nodetype = snode ? snode->nodetype : LYS_CONTAINER;
743
744 /* move to the second item in the name/X pair */
745 ret = lyjson_ctx_next(lydctx->jsonctx, &status);
746 LY_CHECK_GOTO(ret, cleanup);
747
748 /* check attribute encoding */
749 switch (nodetype) {
750 case LYS_LEAFLIST:
751 expected = "@name/array of objects/nulls";
752
753 LY_CHECK_GOTO(status != LYJSON_ARRAY, representation_error);
754
755next_entry:
756 instance++;
757
758 /* move into array / next entry */
759 ret = lyjson_ctx_next(lydctx->jsonctx, &status);
760 LY_CHECK_GOTO(ret, cleanup);
761
762 if (status == LYJSON_ARRAY_CLOSED) {
763 /* we are done, move after the array */
764 ret = lyjson_ctx_next(lydctx->jsonctx, NULL);
765 goto cleanup;
766 }
767 LY_CHECK_GOTO(status != LYJSON_OBJECT && status != LYJSON_NULL, representation_error);
768
Michal Vasko69730152020-10-09 16:30:07 +0200769 if (!node || (node->schema != prev->schema)) {
Michal Vasko54ba8912021-07-23 12:46:23 +0200770 LOGVAL(lydctx->jsonctx->ctx, LYVE_REFERENCE, "Missing JSON data instance #%u of %s:%s to be coupled with metadata.",
Michal Vasko69730152020-10-09 16:30:07 +0200771 instance, prev->schema->module->name, prev->schema->name);
Radek Krejci1798aae2020-07-14 13:26:06 +0200772 ret = LY_EVALID;
773 goto cleanup;
774 }
775
776 if (status == LYJSON_NULL) {
777 /* continue with the next entry in the leaf-list array */
778 prev = node;
779 node = node->next;
780 goto next_entry;
781 }
782 break;
783 case LYS_LEAF:
784 case LYS_ANYXML:
785 expected = "@name/object";
786
aPiecek5b115fc2021-05-24 14:32:42 +0200787 LY_CHECK_GOTO(status != LYJSON_OBJECT, representation_error);
Radek Krejci1798aae2020-07-14 13:26:06 +0200788 break;
789 case LYS_CONTAINER:
790 case LYS_LIST:
791 case LYS_ANYDATA:
792 case LYS_NOTIF:
793 case LYS_ACTION:
794 case LYS_RPC:
795 in_parent = 1;
796 expected = "@/object";
797 LY_CHECK_GOTO(status != LYJSON_OBJECT, representation_error);
798 break;
Radek Krejci8f5fad22020-09-15 16:50:54 +0200799 default:
800 LOGINT_RET(ctx);
Radek Krejci1798aae2020-07-14 13:26:06 +0200801 }
802
803 /* process all the members inside a single metadata object */
804 assert(status == LYJSON_OBJECT);
805
Radek Krejciddace2c2021-01-08 11:30:56 +0100806 LOG_LOCSET(snode, NULL, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100807
Radek Krejci1798aae2020-07-14 13:26:06 +0200808 while (status != LYJSON_OBJECT_CLOSED) {
Michal Vaskoebcd9a92022-05-23 08:06:34 +0200809 LY_CHECK_GOTO(status != LYJSON_OBJECT, representation_error);
810
aPiecekd2c39372021-06-16 14:03:12 +0200811 lydjson_parse_name(lydctx->jsonctx->value, lydctx->jsonctx->value_len, &name, &name_len, &prefix, &prefix_len, &is_attr);
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100812 lyjson_ctx_give_dynamic_value(lydctx->jsonctx, &dynamic_prefname);
aPiecek303fb252021-06-16 11:54:26 +0200813
Michal Vasko69d0ca12021-07-23 10:22:03 +0200814 if (!name_len) {
815 LOGVAL(ctx, LYVE_SYNTAX_JSON, "Metadata in JSON found with an empty name, followed by: %.10s", name);
816 ret = LY_EVALID;
817 goto cleanup;
818 } else if (!prefix_len) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100819 LOGVAL(ctx, LYVE_SYNTAX_JSON, "Metadata in JSON must be namespace-qualified, missing prefix for \"%.*s\".",
Radek Krejci422afb12021-03-04 16:38:16 +0100820 (int)lydctx->jsonctx->value_len, lydctx->jsonctx->value);
Radek Krejci1798aae2020-07-14 13:26:06 +0200821 ret = LY_EVALID;
822 goto cleanup;
823 } else if (is_attr) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100824 LOGVAL(ctx, LYVE_SYNTAX_JSON, "Invalid format of the Metadata identifier in JSON, unexpected '@' in \"%.*s\"",
Radek Krejci422afb12021-03-04 16:38:16 +0100825 (int)lydctx->jsonctx->value_len, lydctx->jsonctx->value);
Radek Krejci1798aae2020-07-14 13:26:06 +0200826 ret = LY_EVALID;
827 goto cleanup;
828 }
829
830 /* get the element module */
831 mod = ly_ctx_get_module_implemented2(ctx, prefix, prefix_len);
832 if (!mod) {
Michal Vaskoe0665742021-02-11 11:08:44 +0100833 if (lydctx->parse_opts & LYD_PARSE_STRICT) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100834 LOGVAL(ctx, LYVE_REFERENCE, "Prefix \"%.*s\" of the metadata \"%.*s\" does not match any module in the context.",
Radek Krejci422afb12021-03-04 16:38:16 +0100835 (int)prefix_len, prefix, (int)name_len, name);
Radek Krejci1798aae2020-07-14 13:26:06 +0200836 ret = LY_EVALID;
837 goto cleanup;
838 }
Michal Vaskoa556f162022-01-17 14:08:30 +0100839 if (node->schema) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200840 /* skip element with children */
841 ret = lydjson_data_skip(lydctx->jsonctx);
842 LY_CHECK_GOTO(ret, cleanup);
843 status = lyjson_ctx_status(lydctx->jsonctx, 0);
844 /* end of the item */
845 continue;
846 }
Michal Vaskoa556f162022-01-17 14:08:30 +0100847 assert(lydctx->parse_opts & LYD_PARSE_OPAQ);
Radek Krejci1798aae2020-07-14 13:26:06 +0200848 }
849
850 /* get the value */
851 ret = lyjson_ctx_next(lydctx->jsonctx, NULL);
852 LY_CHECK_GOTO(ret, cleanup);
853
854 if (node->schema) {
855 /* create metadata */
856 meta = NULL;
Michal Vasko22df3f02020-08-24 13:29:22 +0200857 ret = lyd_parser_create_meta((struct lyd_ctx *)lydctx, node, &meta, mod, name, name_len, lydctx->jsonctx->value,
Michal Vaskoddd76592022-01-17 13:34:48 +0100858 lydctx->jsonctx->value_len, &lydctx->jsonctx->dynamic, LY_VALUE_JSON, NULL, LYD_HINT_DATA, node->schema);
Radek Krejci1798aae2020-07-14 13:26:06 +0200859 LY_CHECK_GOTO(ret, cleanup);
860
861 /* add/correct flags */
Michal Vasko8cc3f662022-03-29 11:25:51 +0200862 ret = lyd_parse_set_data_flags(node, &meta, (struct lyd_ctx *)lydctx, NULL);
863 LY_CHECK_GOTO(ret, cleanup);
Radek Krejci1798aae2020-07-14 13:26:06 +0200864 } else {
865 /* create attribute */
Radek Krejci1798aae2020-07-14 13:26:06 +0200866 const char *module_name;
867 size_t module_name_len;
868
869 lydjson_get_node_prefix(node, prefix, prefix_len, &module_name, &module_name_len);
870
Radek Krejci1798aae2020-07-14 13:26:06 +0200871 /* attr2 is always changed to the created attribute */
Michal Vasko501af032020-11-11 20:27:44 +0100872 ret = lyd_create_attr(node, NULL, lydctx->jsonctx->ctx, name, name_len, prefix, prefix_len, module_name,
873 module_name_len, lydctx->jsonctx->value, lydctx->jsonctx->value_len, &lydctx->jsonctx->dynamic,
Radek Krejci8df109d2021-04-23 12:19:08 +0200874 LY_VALUE_JSON, NULL, 0);
Radek Krejci1798aae2020-07-14 13:26:06 +0200875 LY_CHECK_GOTO(ret, cleanup);
876 }
877 /* next member */
878 ret = lyjson_ctx_next(lydctx->jsonctx, &status);
879 LY_CHECK_GOTO(ret, cleanup);
aPiecekde3c6922021-05-24 14:42:10 +0200880 LY_CHECK_GOTO((status != LYJSON_OBJECT) && (status != LYJSON_OBJECT_CLOSED), representation_error);
Radek Krejci1798aae2020-07-14 13:26:06 +0200881 }
882
883 if (nodetype == LYS_LEAFLIST) {
884 /* continue by processing another metadata object for the following
885 * leaf-list instance since they are allways instantiated in JSON array */
886 prev = node;
887 node = node->next;
888 goto next_entry;
889 }
890
Radek Krejci5813c362021-01-05 10:51:57 +0100891 /* success */
892 goto cleanup;
Radek Krejci1798aae2020-07-14 13:26:06 +0200893
894representation_error:
Radek Krejci2efc45b2020-12-22 16:25:44 +0100895 LOGVAL(ctx, LYVE_SYNTAX_JSON,
Michal Vasko69730152020-10-09 16:30:07 +0200896 "The attribute(s) of %s \"%s\" is expected to be represented as JSON %s, but input data contains @%s/%s.",
Michal Vasko5722c1b2022-01-24 07:47:49 +0100897 lys_nodetype2str(nodetype), node ? LYD_NAME(node) : LYD_NAME(prev), expected, lyjson_token2str(status),
898 in_parent ? "" : "name");
Radek Krejci1798aae2020-07-14 13:26:06 +0200899
Radek Krejci2efc45b2020-12-22 16:25:44 +0100900 ret = LY_EVALID;
Radek Krejci5813c362021-01-05 10:51:57 +0100901
902cleanup:
aPiecek303fb252021-06-16 11:54:26 +0200903 free(dynamic_prefname);
Radek Krejciddace2c2021-01-08 11:30:56 +0100904 LOG_LOCBACK(1, 0, 0, 0);
Radek Krejci5813c362021-01-05 10:51:57 +0100905 return ret;
Radek Krejci1798aae2020-07-14 13:26:06 +0200906}
907
908/**
Michal Vasko6ee6f432021-07-16 09:49:14 +0200909 * @brief Eat the node pointed by @p node_p by inserting it into @p parent and maintain the @p first_p pointing
910 * to the first child node.
Radek Krejci1798aae2020-07-14 13:26:06 +0200911 *
912 * @param[in] parent Parent node to insert to, can be NULL in case of top-level (or provided first_p).
Michal Vasko6ee6f432021-07-16 09:49:14 +0200913 * @param[in,out] first_p Pointer to the first sibling node in case of top-level.
914 * @param[in,out] node_p pointer to the new node to insert, after the insert is done, pointer is set to NULL.
915 * @param[in] last If set, always insert at the end.
Michal Vasko8cc3f662022-03-29 11:25:51 +0200916 * @param[in] ext Extension instance of @p node_p, if any.
Radek Krejci1798aae2020-07-14 13:26:06 +0200917 */
918static void
Michal Vasko8cc3f662022-03-29 11:25:51 +0200919lydjson_maintain_children(struct lyd_node *parent, struct lyd_node **first_p, struct lyd_node **node_p, ly_bool last,
920 struct lysc_ext_instance *ext)
Radek Krejci1798aae2020-07-14 13:26:06 +0200921{
922 if (*node_p) {
923 /* insert, keep first pointer correct */
Michal Vasko8cc3f662022-03-29 11:25:51 +0200924 if (ext) {
925 lyd_insert_ext(parent, *node_p);
926 } else {
927 lyd_insert_node(parent, first_p, *node_p, last);
928 }
Radek Krejci1798aae2020-07-14 13:26:06 +0200929 if (first_p) {
930 if (parent) {
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100931 *first_p = lyd_child(parent);
Radek Krejci1798aae2020-07-14 13:26:06 +0200932 } else {
933 while ((*first_p)->prev->next) {
934 *first_p = (*first_p)->prev;
935 }
936 }
937 }
938 *node_p = NULL;
939 }
940}
941
aPiecek4bf47212021-05-27 10:55:47 +0200942/**
943 * @brief Wrapper for ::lyd_create_opaq().
944 *
945 * @param[in] lydctx JSON data parser context.
946 * @param[in] name Name of the opaq node to create.
947 * @param[in] name_len Length of the @p name string.
948 * @param[in] prefix Prefix of the opaq node to create.
949 * @param[in] prefix_len Length of the @p prefx string.
950 * @param[in] parent Data parent of the opaq node to create, can be NULL in case of top level,
951 * but must be set if @p first is not.
952 * @param[in,out] status_inner_p In case of processing JSON array, this parameter points to a standalone
953 * context status of the array content. Otherwise, it is supposed to be the same as @p status_p.
954 * @param[out] node_p Pointer to the created opaq node.
955 * @return LY_ERR value.
956 */
957static LY_ERR
958lydjson_create_opaq(struct lyd_json_ctx *lydctx, const char *name, size_t name_len, const char *prefix, size_t prefix_len,
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100959 struct lyd_node *parent, enum LYJSON_PARSER_STATUS *status_inner_p, struct lyd_node **node_p)
aPiecek4bf47212021-05-27 10:55:47 +0200960{
961 LY_ERR ret = LY_SUCCESS;
962 const char *value = NULL, *module_name;
963 size_t value_len = 0, module_name_len = 0;
964 ly_bool dynamic = 0;
965 uint32_t type_hint = 0;
966
967 if ((*status_inner_p != LYJSON_OBJECT) && (*status_inner_p != LYJSON_OBJECT_EMPTY)) {
968 /* prepare for creating opaq node with a value */
969 value = lydctx->jsonctx->value;
970 value_len = lydctx->jsonctx->value_len;
971 dynamic = lydctx->jsonctx->dynamic;
972 lydctx->jsonctx->dynamic = 0;
973
974 LY_CHECK_RET(lydjson_value_type_hint(lydctx, status_inner_p, &type_hint));
975 }
976
977 /* create node */
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100978 lydjson_get_node_prefix(parent, prefix, prefix_len, &module_name, &module_name_len);
aPiecek4bf47212021-05-27 10:55:47 +0200979 ret = lyd_create_opaq(lydctx->jsonctx->ctx, name, name_len, prefix, prefix_len, module_name, module_name_len, value,
980 value_len, &dynamic, LY_VALUE_JSON, NULL, type_hint, node_p);
981 if (dynamic) {
982 free((char *)value);
983 }
984
985 return ret;
986}
987
Michal Vaskoe0665742021-02-11 11:08:44 +0100988static LY_ERR lydjson_subtree_r(struct lyd_json_ctx *lydctx, struct lyd_node *parent, struct lyd_node **first_p,
989 struct ly_set *parsed);
Radek Krejci1798aae2020-07-14 13:26:06 +0200990
991/**
992 * @brief Parse opaq node from the input.
993 *
994 * In case of processing array, the whole array is being processed and the resulting @p node_p is the last item of the array.
995 *
996 * @param[in] lydctx JSON data parser context.
997 * @param[in] name Name of the opaq node to create.
998 * @param[in] name_len Length of the @p name string.
999 * @param[in] prefix Prefix of the opaq node to create.
1000 * @param[in] prefix_len Length of the @p prefx string.
1001 * @param[in] parent Data parent of the opaq node to create, can be NULL in case of top level,
1002 * but must be set if @p first is not.
1003 * @param[in,out] status_p Pointer to the current status of the parser context,
1004 * since the function manipulates with the context and process the input, the status can be updated.
1005 * @param[in,out] status_inner_p In case of processing JSON array, this parameter points to a standalone
1006 * context status of the array content. Otherwise, it is supposed to be the same as @p status_p.
1007 * @param[in,out] first_p First top-level/parent sibling, must be set if @p parent is not.
1008 * @param[out] node_p Pointer to the created opaq node.
1009 * @return LY_ERR value.
1010 */
1011static LY_ERR
Michal Vaskoa5da3292020-08-12 13:10:50 +02001012lydjson_parse_opaq(struct lyd_json_ctx *lydctx, const char *name, size_t name_len, const char *prefix, size_t prefix_len,
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001013 struct lyd_node *parent, enum LYJSON_PARSER_STATUS *status_p, enum LYJSON_PARSER_STATUS *status_inner_p,
1014 struct lyd_node **first_p, struct lyd_node **node_p)
Radek Krejci1798aae2020-07-14 13:26:06 +02001015{
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001016 LY_CHECK_RET(lydjson_create_opaq(lydctx, name, name_len, prefix, prefix_len, parent, status_inner_p, node_p));
Radek Krejci1798aae2020-07-14 13:26:06 +02001017
Michal Vasko1a85d332021-08-27 10:35:28 +02001018 if ((*status_p == LYJSON_ARRAY) && (*status_inner_p == LYJSON_NULL)) {
1019 /* special array null value */
1020 ((struct lyd_node_opaq *)*node_p)->hints |= LYD_VALHINT_EMPTY;
1021
1022 /* must be the only item */
1023 LY_CHECK_RET(lyjson_ctx_next(lydctx->jsonctx, status_inner_p));
1024 if (*status_inner_p != LYJSON_ARRAY_CLOSED) {
1025 LOGVAL(lydctx->jsonctx->ctx, LYVE_SYNTAX, "Array \"null\" member with another member.");
1026 return LY_EVALID;
1027 }
1028
1029 goto finish;
1030 }
1031
aPiecekdbb8baf2021-05-27 11:01:51 +02001032 while ((*status_p == LYJSON_ARRAY) || (*status_p == LYJSON_ARRAY_EMPTY)) {
Radek Krejci1798aae2020-07-14 13:26:06 +02001033 /* process another instance of the same node */
Radek Krejci1798aae2020-07-14 13:26:06 +02001034
Michal Vasko69730152020-10-09 16:30:07 +02001035 if ((*status_inner_p == LYJSON_OBJECT) || (*status_inner_p == LYJSON_OBJECT_EMPTY)) {
Michal Vasko1a85d332021-08-27 10:35:28 +02001036 /* array with objects, list */
1037 ((struct lyd_node_opaq *)*node_p)->hints |= LYD_NODEHINT_LIST;
1038
Radek Krejci1798aae2020-07-14 13:26:06 +02001039 /* but first process children of the object in the array */
Michal Vasko1a85d332021-08-27 10:35:28 +02001040 while ((*status_inner_p != LYJSON_OBJECT_CLOSED) && (*status_inner_p != LYJSON_OBJECT_EMPTY)) {
Michal Vaskoe0665742021-02-11 11:08:44 +01001041 LY_CHECK_RET(lydjson_subtree_r(lydctx, *node_p, lyd_node_child_p(*node_p), NULL));
Radek Krejci1798aae2020-07-14 13:26:06 +02001042 *status_inner_p = lyjson_ctx_status(lydctx->jsonctx, 0);
1043 }
Michal Vasko1a85d332021-08-27 10:35:28 +02001044 } else {
1045 /* array with values, leaf-list */
1046 ((struct lyd_node_opaq *)*node_p)->hints |= LYD_NODEHINT_LEAFLIST;
Radek Krejci1798aae2020-07-14 13:26:06 +02001047 }
1048
1049 LY_CHECK_RET(lyjson_ctx_next(lydctx->jsonctx, status_inner_p));
aPiecekdbb8baf2021-05-27 11:01:51 +02001050 if (*status_inner_p == LYJSON_ARRAY_CLOSED) {
1051 goto finish;
1052 }
Radek Krejci1798aae2020-07-14 13:26:06 +02001053
1054 /* continue with the next instance */
aPiecekdbb8baf2021-05-27 11:01:51 +02001055 assert(node_p);
Michal Vasko8cc3f662022-03-29 11:25:51 +02001056 lydjson_maintain_children(parent, first_p, node_p, lydctx->parse_opts & LYD_PARSE_ORDERED ? 1 : 0, NULL);
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001057 LY_CHECK_RET(lydjson_create_opaq(lydctx, name, name_len, prefix, prefix_len, parent, status_inner_p, node_p));
aPiecekdbb8baf2021-05-27 11:01:51 +02001058 }
1059
1060 if ((*status_p == LYJSON_OBJECT) || (*status_p == LYJSON_OBJECT_EMPTY)) {
1061 /* process children */
1062 while (*status_p != LYJSON_OBJECT_CLOSED && *status_p != LYJSON_OBJECT_EMPTY) {
1063 LY_CHECK_RET(lydjson_subtree_r(lydctx, *node_p, lyd_node_child_p(*node_p), NULL));
1064 *status_p = lyjson_ctx_status(lydctx->jsonctx, 0);
Radek Krejci1798aae2020-07-14 13:26:06 +02001065 }
1066 }
1067
aPiecekdbb8baf2021-05-27 11:01:51 +02001068finish:
Radek Krejci1798aae2020-07-14 13:26:06 +02001069 /* finish linking metadata */
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001070 return lydjson_metadata_finish(lydctx, lyd_node_child_p(*node_p));
Radek Krejci1798aae2020-07-14 13:26:06 +02001071}
1072
1073/**
aPiecek6cee5d02021-05-12 10:32:00 +02001074 * @brief Move to the second item in the name/X pair and parse opaq node from the input.
1075 *
1076 * This function is basically the wrapper of the ::lydjson_parse_opaq().
1077 * In addition, it calls the ::json_ctx_next() and prepares the status_inner_p parameter
1078 * for ::lydjson_parse_opaq().
1079 *
1080 * @param[in] lydctx JSON data parser context.
1081 * @param[in] name Name of the opaq node to create.
1082 * @param[in] name_len Length of the @p name string.
1083 * @param[in] prefix Prefix of the opaq node to create.
1084 * @param[in] prefix_len Length of the @p prefx string.
1085 * @param[in] parent Data parent of the opaq node to create, can be NULL in case of top level,
1086 * but must be set if @p first is not.
1087 * @param[in,out] status_p Pointer to the current status of the parser context,
1088 * since the function manipulates with the context and process the input, the status can be updated.
1089 * @param[in,out] first_p First top-level/parent sibling, must be set if @p parent is not.
1090 * @param[out] node_p Pointer to the created opaq node.
1091 * @return LY_ERR value.
1092 */
1093static LY_ERR
1094lydjson_ctx_next_parse_opaq(struct lyd_json_ctx *lydctx, const char *name, size_t name_len,
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001095 const char *prefix, size_t prefix_len, struct lyd_node *parent, enum LYJSON_PARSER_STATUS *status_p,
aPiecek6cee5d02021-05-12 10:32:00 +02001096 struct lyd_node **first_p, struct lyd_node **node_p)
1097{
1098 enum LYJSON_PARSER_STATUS status_inner = 0;
1099
1100 /* move to the second item in the name/X pair */
1101 LY_CHECK_RET(lyjson_ctx_next(lydctx->jsonctx, status_p));
1102
1103 if (*status_p == LYJSON_ARRAY) {
1104 /* move into the array */
1105 LY_CHECK_RET(lyjson_ctx_next(lydctx->jsonctx, &status_inner));
1106 } else {
1107 /* just a flag to pass correct parameters into lydjson_parse_opaq() */
1108 status_inner = LYJSON_ERROR;
1109 }
1110
1111 if (status_inner == LYJSON_ERROR) {
1112 status_inner = *status_p;
1113 }
1114
1115 /* parse opaq node from the input */
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001116 LY_CHECK_RET(lydjson_parse_opaq(lydctx, name, name_len, prefix, prefix_len, parent, status_p, &status_inner,
1117 first_p, node_p));
aPiecek6cee5d02021-05-12 10:32:00 +02001118
1119 return LY_SUCCESS;
1120}
1121
1122/**
Radek Krejci1798aae2020-07-14 13:26:06 +02001123 * @brief Process the attribute container (starting by @)
1124 *
1125 * @param[in] lydctx JSON data parser context.
1126 * @param[in] attr_node The data node referenced by the attribute container, if already known.
1127 * @param[in] snode The schema node of the data node referenced by the attribute container, if known.
1128 * @param[in] name Name of the opaq node to create.
1129 * @param[in] name_len Length of the @p name string.
1130 * @param[in] prefix Prefix of the opaq node to create.
1131 * @param[in] prefix_len Length of the @p prefx string.
1132 * @param[in] parent Data parent of the opaq node to create, can be NULL in case of top level,
1133 * but must be set if @p first is not.
1134 * @param[in,out] status_p Pointer to the current status of the parser context,
1135 * since the function manipulates with the context and process the input, the status can be updated.
1136 * @param[in,out] first_p First top-level/parent sibling, must be set if @p parent is not.
1137 * @param[out] node_p Pointer to the created opaq node.
1138 * @return LY_ERR value.
1139 */
1140static LY_ERR
1141lydjson_parse_attribute(struct lyd_json_ctx *lydctx, struct lyd_node *attr_node, const struct lysc_node *snode,
Michal Vaskoe0665742021-02-11 11:08:44 +01001142 const char *name, size_t name_len, const char *prefix, size_t prefix_len, struct lyd_node *parent,
1143 enum LYJSON_PARSER_STATUS *status_p, struct lyd_node **first_p, struct lyd_node **node_p)
Radek Krejci1798aae2020-07-14 13:26:06 +02001144{
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001145 LY_ERR r;
1146 const char *opaq_name;
1147 size_t opaq_name_len;
Radek Krejci1798aae2020-07-14 13:26:06 +02001148
1149 /* parse as an attribute to a node */
1150 if (!attr_node && snode) {
1151 /* try to find the instance */
1152 for (struct lyd_node *iter = *first_p; iter; iter = iter->next) {
1153 if (iter->schema == snode) {
1154 attr_node = iter;
1155 break;
1156 }
1157 }
1158 }
1159 if (!attr_node) {
1160 /* parse just as an opaq node with the name beginning with @,
1161 * later we have to check that it belongs to a standard node
1162 * and it is supposed to be converted to a metadata */
1163 uint32_t prev_opts;
1164
Radek Krejci1798aae2020-07-14 13:26:06 +02001165 /* backup parser options to parse unknown metadata as opaq nodes and try to resolve them later */
Michal Vaskoe0665742021-02-11 11:08:44 +01001166 prev_opts = lydctx->parse_opts;
1167 lydctx->parse_opts &= ~LYD_PARSE_STRICT;
1168 lydctx->parse_opts |= LYD_PARSE_OPAQ;
Radek Krejci1798aae2020-07-14 13:26:06 +02001169
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001170 opaq_name = prefix ? prefix - 1 : name - 1;
1171 opaq_name_len = prefix ? prefix_len + name_len + 2 : name_len + 1;
1172 r = lydjson_ctx_next_parse_opaq(lydctx, opaq_name, opaq_name_len, NULL, 0, parent, status_p, first_p, node_p);
Radek Krejci1798aae2020-07-14 13:26:06 +02001173
1174 /* restore the parser options */
Michal Vaskoe0665742021-02-11 11:08:44 +01001175 lydctx->parse_opts = prev_opts;
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001176 LY_CHECK_RET(r);
Radek Krejci1798aae2020-07-14 13:26:06 +02001177 } else {
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001178 LY_CHECK_RET(lydjson_metadata(lydctx, snode, attr_node));
Radek Krejci1798aae2020-07-14 13:26:06 +02001179 }
1180
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001181 return LY_SUCCESS;
Radek Krejci1798aae2020-07-14 13:26:06 +02001182}
1183
1184/**
Michal Vasko76096ec2022-02-24 16:06:16 +01001185 * @brief Parse a single anydata/anyxml node.
1186 *
1187 * @param[in] lydctx JSON data parser context. When the function returns, the context is in the same state
1188 * as before calling, despite it is necessary to process input data for checking.
1189 * @param[in] snode Schema node corresponding to the member currently being processed in the context.
Michal Vasko8cc3f662022-03-29 11:25:51 +02001190 * @param[in] ext Extension instance of @p snode, if any.
Michal Vasko76096ec2022-02-24 16:06:16 +01001191 * @param[in,out] status JSON parser status, is updated.
1192 * @param[out] node Parsed data (or opaque) node.
1193 * @return LY_SUCCESS if a node was successfully parsed,
1194 * @return LY_ENOT in case of invalid JSON encoding,
1195 * @return LY_ERR on other errors.
1196 */
1197static LY_ERR
Michal Vasko8cc3f662022-03-29 11:25:51 +02001198lydjson_parse_any(struct lyd_json_ctx *lydctx, const struct lysc_node *snode, struct lysc_ext_instance *ext,
1199 enum LYJSON_PARSER_STATUS *status, struct lyd_node **node)
Michal Vasko76096ec2022-02-24 16:06:16 +01001200{
1201 LY_ERR r;
1202 uint32_t prev_parse_opts, prev_int_opts;
1203 struct ly_in in_start;
1204 char *val;
1205 struct lyd_node *tree = NULL;
1206
1207 assert(snode->nodetype & LYD_NODE_ANY);
1208
1209 /* status check according to allowed JSON types */
1210 if (snode->nodetype == LYS_ANYXML) {
1211 LY_CHECK_RET((*status != LYJSON_OBJECT) && (*status != LYJSON_OBJECT_EMPTY) && (*status != LYJSON_ARRAY) &&
1212 (*status != LYJSON_NUMBER) && (*status != LYJSON_STRING) && (*status != LYJSON_FALSE) &&
1213 (*status != LYJSON_TRUE) && (*status != LYJSON_NULL), LY_ENOT);
1214 } else {
1215 LY_CHECK_RET((*status != LYJSON_OBJECT) && (*status != LYJSON_OBJECT_EMPTY) && (*status != LYJSON_ARRAY), LY_ENOT);
1216 }
1217
1218 if ((snode->nodetype == LYS_ANYDATA) && (*status == LYJSON_ARRAY)) {
1219 /* only special anydata [null] allowed, 2 more moves are needed */
1220 LY_CHECK_RET(lyjson_ctx_next(lydctx->jsonctx, status));
1221 LY_CHECK_RET(*status != LYJSON_NULL, LY_ENOT);
1222 LY_CHECK_RET(lyjson_ctx_next(lydctx->jsonctx, status));
1223 LY_CHECK_RET(*status != LYJSON_ARRAY_CLOSED, LY_ENOT);
1224
1225 return lyd_create_any(snode, "[null]", LYD_ANYDATA_JSON, 0, node);
1226 }
1227
1228 /* create any node */
1229 switch (*status) {
1230 case LYJSON_OBJECT:
1231 /* parse any data tree with correct options, first backup the current options and then make the parser
1232 * process data as opaq nodes */
1233 prev_parse_opts = lydctx->parse_opts;
1234 lydctx->parse_opts &= ~LYD_PARSE_STRICT;
Michal Vasko8cc3f662022-03-29 11:25:51 +02001235 lydctx->parse_opts |= LYD_PARSE_OPAQ | (ext ? LYD_PARSE_ONLY : 0);
Michal Vasko76096ec2022-02-24 16:06:16 +01001236 prev_int_opts = lydctx->int_opts;
1237 lydctx->int_opts |= LYD_INTOPT_ANY | LYD_INTOPT_WITH_SIBLINGS;
1238
1239 /* process the anydata content */
1240 while (*status != LYJSON_OBJECT_CLOSED) {
1241 LY_CHECK_RET(lydjson_subtree_r(lydctx, NULL, &tree, NULL));
1242 *status = lyjson_ctx_status(lydctx->jsonctx, 0);
1243 }
1244
1245 /* restore parser options */
1246 lydctx->parse_opts = prev_parse_opts;
1247 lydctx->int_opts = prev_int_opts;
1248
1249 /* finish linking metadata */
1250 LY_CHECK_RET(lydjson_metadata_finish(lydctx, &tree));
1251
1252 LY_CHECK_RET(lyd_create_any(snode, tree, LYD_ANYDATA_DATATREE, 1, node));
1253 break;
1254 case LYJSON_ARRAY:
1255 /* skip until the array end */
1256 in_start = *lydctx->jsonctx->in;
1257 LY_CHECK_RET(lydjson_data_skip(lydctx->jsonctx));
1258
1259 /* make a copy of the whole array and store it */
1260 if (asprintf(&val, "[%.*s", (int)(lydctx->jsonctx->in->current - in_start.current), in_start.current) == -1) {
1261 LOGMEM(lydctx->jsonctx->ctx);
1262 return LY_EMEM;
1263 }
1264 r = lyd_create_any(snode, val, LYD_ANYDATA_JSON, 1, node);
1265 if (r) {
1266 free(val);
1267 return r;
1268 }
1269 break;
1270 case LYJSON_STRING:
1271 /* string value */
1272 if (lydctx->jsonctx->dynamic) {
1273 LY_CHECK_RET(lyd_create_any(snode, lydctx->jsonctx->value, LYD_ANYDATA_STRING, 1, node));
1274 lydctx->jsonctx->dynamic = 0;
1275 } else {
1276 val = strndup(lydctx->jsonctx->value, lydctx->jsonctx->value_len);
1277 LY_CHECK_ERR_RET(!val, LOGMEM(lydctx->jsonctx->ctx), LY_EMEM);
1278
1279 r = lyd_create_any(snode, val, LYD_ANYDATA_STRING, 1, node);
1280 if (r) {
1281 free(val);
1282 return r;
1283 }
1284 }
1285 break;
1286 case LYJSON_NUMBER:
1287 case LYJSON_FALSE:
1288 case LYJSON_TRUE:
1289 /* JSON value */
1290 assert(!lydctx->jsonctx->dynamic);
1291 val = strndup(lydctx->jsonctx->value, lydctx->jsonctx->value_len);
1292 LY_CHECK_ERR_RET(!val, LOGMEM(lydctx->jsonctx->ctx), LY_EMEM);
1293
1294 r = lyd_create_any(snode, val, LYD_ANYDATA_JSON, 1, node);
1295 if (r) {
1296 free(val);
1297 return r;
1298 }
1299 break;
1300 case LYJSON_NULL:
1301 /* no value */
1302 LY_CHECK_RET(lyd_create_any(snode, NULL, LYD_ANYDATA_JSON, 1, node));
1303 break;
1304 case LYJSON_OBJECT_EMPTY:
1305 /* empty object */
1306 LY_CHECK_RET(lyd_create_any(snode, NULL, LYD_ANYDATA_DATATREE, 1, node));
1307 break;
1308 default:
1309 LOGINT_RET(lydctx->jsonctx->ctx);
1310 }
1311
1312 return LY_SUCCESS;
1313}
1314
1315/**
Michal Vasko32ac9942020-08-12 14:35:12 +02001316 * @brief Parse a single instance of a node.
1317 *
1318 * @param[in] lydctx JSON data parser context. When the function returns, the context is in the same state
1319 * as before calling, despite it is necessary to process input data for checking.
1320 * @param[in] parent Data parent of the subtree, must be set if @p first is not.
1321 * @param[in,out] first_p Pointer to the variable holding the first top-level sibling, must be set if @p parent is not.
1322 * @param[in] snode Schema node corresponding to the member currently being processed in the context.
Michal Vasko8cc3f662022-03-29 11:25:51 +02001323 * @param[in] ext Extension instance of @p snode, if any.
Michal Vasko32ac9942020-08-12 14:35:12 +02001324 * @param[in] name Parsed JSON node name.
1325 * @param[in] name_len Lenght of @p name.
1326 * @param[in] prefix Parsed JSON node prefix.
1327 * @param[in] prefix_len Length of @p prefix.
1328 * @param[in,out] status JSON parser status, is updated.
1329 * @param[out] node Parsed data (or opaque) node.
1330 * @return LY_SUCCESS if a node was successfully parsed,
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001331 * @return LY_ENOT in case of invalid JSON encoding,
Michal Vasko32ac9942020-08-12 14:35:12 +02001332 * @return LY_ERR on other errors.
1333 */
1334static LY_ERR
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001335lydjson_parse_instance(struct lyd_json_ctx *lydctx, struct lyd_node *parent, struct lyd_node **first_p,
Michal Vasko8cc3f662022-03-29 11:25:51 +02001336 const struct lysc_node *snode, struct lysc_ext_instance *ext, const char *name, size_t name_len,
1337 const char *prefix, size_t prefix_len, enum LYJSON_PARSER_STATUS *status, struct lyd_node **node)
Michal Vasko32ac9942020-08-12 14:35:12 +02001338{
1339 LY_ERR ret;
Michal Vasko76096ec2022-02-24 16:06:16 +01001340 uint32_t type_hints = 0;
Michal Vasko8cc3f662022-03-29 11:25:51 +02001341 uint32_t prev_parse_opts;
Michal Vasko32ac9942020-08-12 14:35:12 +02001342
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001343 ret = lydjson_data_check_opaq(lydctx, snode, &type_hints);
Michal Vasko32ac9942020-08-12 14:35:12 +02001344 if (ret == LY_SUCCESS) {
1345 assert(snode->nodetype & (LYD_NODE_TERM | LYD_NODE_INNER | LYD_NODE_ANY));
1346 if (snode->nodetype & LYD_NODE_TERM) {
Michal Vaskobbdadda2022-01-06 11:40:10 +01001347 LY_CHECK_RET((*status != LYJSON_ARRAY) && (*status != LYJSON_NUMBER) && (*status != LYJSON_STRING) &&
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001348 (*status != LYJSON_FALSE) && (*status != LYJSON_TRUE) && (*status != LYJSON_NULL), LY_ENOT);
Michal Vaskobbdadda2022-01-06 11:40:10 +01001349
Michal Vasko32ac9942020-08-12 14:35:12 +02001350 /* create terminal node */
1351 ret = lyd_parser_create_term((struct lyd_ctx *)lydctx, snode, lydctx->jsonctx->value,
Radek Krejci8df109d2021-04-23 12:19:08 +02001352 lydctx->jsonctx->value_len, &lydctx->jsonctx->dynamic, LY_VALUE_JSON, NULL,
Michal Vasko69730152020-10-09 16:30:07 +02001353 type_hints, node);
Michal Vasko32ac9942020-08-12 14:35:12 +02001354 LY_CHECK_RET(ret);
1355
1356 /* move JSON parser */
Michal Vasko85430702021-07-21 14:29:56 +02001357 if (*status == LYJSON_ARRAY) {
1358 /* only [null], 2 more moves are needed */
1359 LY_CHECK_RET(lyjson_ctx_next(lydctx->jsonctx, status));
1360 assert(*status == LYJSON_NULL);
1361 LY_CHECK_RET(lyjson_ctx_next(lydctx->jsonctx, status));
1362 assert(*status == LYJSON_ARRAY_CLOSED);
1363 }
Michal Vasko32ac9942020-08-12 14:35:12 +02001364 } else if (snode->nodetype & LYD_NODE_INNER) {
1365 /* create inner node */
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001366 LY_CHECK_RET((*status != LYJSON_OBJECT) && (*status != LYJSON_OBJECT_EMPTY), LY_ENOT);
Michal Vasko32ac9942020-08-12 14:35:12 +02001367
Michal Vasko76096ec2022-02-24 16:06:16 +01001368 LY_CHECK_RET(lyd_create_inner(snode, node));
Michal Vasko32ac9942020-08-12 14:35:12 +02001369
Radek Krejciddace2c2021-01-08 11:30:56 +01001370 LOG_LOCSET(snode, *node, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001371
Michal Vasko8cc3f662022-03-29 11:25:51 +02001372 prev_parse_opts = lydctx->parse_opts;
1373 if (ext) {
1374 /* only parse these extension data and validate afterwards */
1375 lydctx->parse_opts |= LYD_PARSE_ONLY;
1376 }
1377
Michal Vasko32ac9942020-08-12 14:35:12 +02001378 /* process children */
Michal Vaskobbdadda2022-01-06 11:40:10 +01001379 while ((*status != LYJSON_OBJECT_CLOSED) && (*status != LYJSON_OBJECT_EMPTY)) {
Michal Vaskoe0665742021-02-11 11:08:44 +01001380 ret = lydjson_subtree_r(lydctx, *node, lyd_node_child_p(*node), NULL);
Radek Krejciddace2c2021-01-08 11:30:56 +01001381 LY_CHECK_ERR_RET(ret, LOG_LOCBACK(1, 1, 0, 0), ret);
Michal Vasko32ac9942020-08-12 14:35:12 +02001382 *status = lyjson_ctx_status(lydctx->jsonctx, 0);
1383 }
1384
Michal Vasko8cc3f662022-03-29 11:25:51 +02001385 /* restore options */
1386 lydctx->parse_opts = prev_parse_opts;
1387
Michal Vasko32ac9942020-08-12 14:35:12 +02001388 /* finish linking metadata */
Michal Vaskoe0665742021-02-11 11:08:44 +01001389 ret = lydjson_metadata_finish(lydctx, lyd_node_child_p(*node));
Radek Krejciddace2c2021-01-08 11:30:56 +01001390 LY_CHECK_ERR_RET(ret, LOG_LOCBACK(1, 1, 0, 0), ret);
Michal Vasko32ac9942020-08-12 14:35:12 +02001391
1392 if (snode->nodetype == LYS_LIST) {
1393 /* check all keys exist */
1394 ret = lyd_parse_check_keys(*node);
Radek Krejciddace2c2021-01-08 11:30:56 +01001395 LY_CHECK_ERR_RET(ret, LOG_LOCBACK(1, 1, 0, 0), ret);
Michal Vasko32ac9942020-08-12 14:35:12 +02001396 }
1397
Michal Vaskoe0665742021-02-11 11:08:44 +01001398 if (!(lydctx->parse_opts & LYD_PARSE_ONLY)) {
Michal Vasko32ac9942020-08-12 14:35:12 +02001399 /* new node validation, autodelete CANNOT occur, all nodes are new */
Michal Vaskoe0665742021-02-11 11:08:44 +01001400 ret = lyd_validate_new(lyd_node_child_p(*node), snode, NULL, NULL);
Radek Krejciddace2c2021-01-08 11:30:56 +01001401 LY_CHECK_ERR_RET(ret, LOG_LOCBACK(1, 1, 0, 0), ret);
Michal Vasko32ac9942020-08-12 14:35:12 +02001402
1403 /* add any missing default children */
Michal Vaskoddd76592022-01-17 13:34:48 +01001404 ret = lyd_new_implicit_r(*node, lyd_node_child_p(*node), NULL, NULL, &lydctx->node_when,
Michal Vaskofcbd78f2022-08-26 08:34:15 +02001405 &lydctx->node_types, &lydctx->ext_node,
1406 (lydctx->val_opts & LYD_VALIDATE_NO_STATE) ? LYD_IMPLICIT_NO_STATE : 0, NULL);
Radek Krejciddace2c2021-01-08 11:30:56 +01001407 LY_CHECK_ERR_RET(ret, LOG_LOCBACK(1, 1, 0, 0), ret);
Michal Vasko32ac9942020-08-12 14:35:12 +02001408 }
1409
Radek Krejciddace2c2021-01-08 11:30:56 +01001410 LOG_LOCBACK(1, 1, 0, 0);
Michal Vasko76096ec2022-02-24 16:06:16 +01001411 } else {
Michal Vasko32ac9942020-08-12 14:35:12 +02001412 /* create any node */
Michal Vasko8cc3f662022-03-29 11:25:51 +02001413 LY_CHECK_RET(lydjson_parse_any(lydctx, snode, ext, status, node));
Michal Vasko32ac9942020-08-12 14:35:12 +02001414 }
Michal Vaskocaf608d2021-07-23 13:51:23 +02001415
1416 /* add/correct flags */
Michal Vasko135719f2022-08-25 12:18:17 +02001417 LY_CHECK_RET(lyd_parse_set_data_flags(*node, &(*node)->meta, (struct lyd_ctx *)lydctx, ext));
1418
1419 /* store for ext instance node validation, if needed */
1420 LY_CHECK_RET(lyd_validate_node_ext(*node, &lydctx->ext_node));
Michal Vasko32ac9942020-08-12 14:35:12 +02001421 } else if (ret == LY_ENOT) {
1422 /* parse it again as an opaq node */
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001423 ret = lydjson_parse_opaq(lydctx, name, name_len, prefix, prefix_len, parent, status, status, first_p, node);
Michal Vasko32ac9942020-08-12 14:35:12 +02001424 LY_CHECK_RET(ret);
1425
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001426 if (snode->nodetype == LYS_LIST) {
1427 ((struct lyd_node_opaq *)*node)->hints |= LYD_NODEHINT_LIST;
1428 } else if (snode->nodetype == LYS_LEAFLIST) {
1429 ((struct lyd_node_opaq *)*node)->hints |= LYD_NODEHINT_LEAFLIST;
Michal Vasko32ac9942020-08-12 14:35:12 +02001430 }
Michal Vaskoa32b6b72022-07-11 15:55:56 +02001431 } else {
1432 /* error */
1433 return ret;
Michal Vasko32ac9942020-08-12 14:35:12 +02001434 }
1435
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001436 return LY_SUCCESS;
Michal Vasko32ac9942020-08-12 14:35:12 +02001437}
1438
1439/**
Michal Vaskoa5da3292020-08-12 13:10:50 +02001440 * @brief Parse JSON subtree. All leaf-list and list instances of a node are considered one subtree.
Radek Krejci1798aae2020-07-14 13:26:06 +02001441 *
1442 * @param[in] lydctx JSON data parser context.
1443 * @param[in] parent Data parent of the subtree, must be set if @p first is not.
1444 * @param[in,out] first_p Pointer to the variable holding the first top-level sibling, must be set if @p parent is not.
Michal Vaskoe0665742021-02-11 11:08:44 +01001445 * @param[in,out] parsed Optional set to add all the parsed siblings into.
Radek Krejci1798aae2020-07-14 13:26:06 +02001446 * @return LY_ERR value.
1447 */
1448static LY_ERR
Michal Vaskoe0665742021-02-11 11:08:44 +01001449lydjson_subtree_r(struct lyd_json_ctx *lydctx, struct lyd_node *parent, struct lyd_node **first_p, struct ly_set *parsed)
Radek Krejci1798aae2020-07-14 13:26:06 +02001450{
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001451 LY_ERR ret = LY_SUCCESS, r;
Radek Krejci1798aae2020-07-14 13:26:06 +02001452 enum LYJSON_PARSER_STATUS status = lyjson_ctx_status(lydctx->jsonctx, 0);
aPiecek49e2a3a2021-05-13 10:36:46 +02001453 const char *name, *prefix = NULL, *expected = NULL;
Radek Krejci1798aae2020-07-14 13:26:06 +02001454 size_t name_len, prefix_len = 0;
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001455 ly_bool is_meta = 0, parse_subtree;
Michal Vaskocabe0702020-08-12 10:14:36 +02001456 const struct lysc_node *snode = NULL;
Michal Vasko8cc3f662022-03-29 11:25:51 +02001457 struct lysc_ext_instance *ext;
Michal Vasko32ac9942020-08-12 14:35:12 +02001458 struct lyd_node *node = NULL, *attr_node = NULL;
Radek Krejci1798aae2020-07-14 13:26:06 +02001459 const struct ly_ctx *ctx = lydctx->jsonctx->ctx;
aPiecek49e2a3a2021-05-13 10:36:46 +02001460 char *value = NULL;
Radek Krejci1798aae2020-07-14 13:26:06 +02001461
1462 assert(parent || first_p);
1463 assert(status == LYJSON_OBJECT);
1464
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001465 parse_subtree = lydctx->parse_opts & LYD_PARSE_SUBTREE ? 1 : 0;
1466 /* all descendants should be parsed */
1467 lydctx->parse_opts &= ~LYD_PARSE_SUBTREE;
1468
Radek Krejci1798aae2020-07-14 13:26:06 +02001469 /* process the node name */
aPiecekd2c39372021-06-16 14:03:12 +02001470 lydjson_parse_name(lydctx->jsonctx->value, lydctx->jsonctx->value_len, &name, &name_len, &prefix, &prefix_len, &is_meta);
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001471 lyjson_ctx_give_dynamic_value(lydctx->jsonctx, &value);
Radek Krejci1798aae2020-07-14 13:26:06 +02001472
Michal Vaskocabe0702020-08-12 10:14:36 +02001473 if (!is_meta || name_len || prefix_len) {
1474 /* get the schema node */
Michal Vasko8cc3f662022-03-29 11:25:51 +02001475 r = lydjson_get_snode(lydctx, is_meta, prefix, prefix_len, name, name_len, parent, &snode, &ext);
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001476 if (r == LY_ENOT) {
1477 /* data parsed */
Radek Krejci1798aae2020-07-14 13:26:06 +02001478 goto cleanup;
1479 }
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001480 LY_CHECK_ERR_GOTO(r, ret = r, cleanup);
Radek Krejci1798aae2020-07-14 13:26:06 +02001481
Michal Vaskocabe0702020-08-12 10:14:36 +02001482 if (!snode) {
1483 /* we will not be parsing it as metadata */
1484 is_meta = 0;
1485 }
1486 }
1487
1488 if (is_meta) {
1489 /* parse as metadata */
1490 if (!name_len && !prefix_len) {
1491 /* parent's metadata without a name - use the schema from the parent */
1492 if (!parent) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001493 LOGVAL(ctx, LYVE_SYNTAX_JSON,
Michal Vasko69730152020-10-09 16:30:07 +02001494 "Invalid metadata format - \"@\" can be used only inside anydata, container or list entries.");
Michal Vaskocabe0702020-08-12 10:14:36 +02001495 ret = LY_EVALID;
1496 goto cleanup;
1497 }
Michal Vaskoe0665742021-02-11 11:08:44 +01001498 attr_node = parent;
Michal Vaskocabe0702020-08-12 10:14:36 +02001499 snode = attr_node->schema;
1500 }
1501 ret = lydjson_parse_attribute(lydctx, attr_node, snode, name, name_len, prefix, prefix_len, parent, &status,
Michal Vasko69730152020-10-09 16:30:07 +02001502 first_p, &node);
Michal Vaskocabe0702020-08-12 10:14:36 +02001503 LY_CHECK_GOTO(ret, cleanup);
1504 } else if (!snode) {
Radek Krejci1798aae2020-07-14 13:26:06 +02001505 /* parse as an opaq node */
Michal Vaskoe0665742021-02-11 11:08:44 +01001506 assert((lydctx->parse_opts & LYD_PARSE_OPAQ) || (lydctx->int_opts));
Radek Krejci1798aae2020-07-14 13:26:06 +02001507
aPiecekb7b29e62021-05-11 10:02:43 +02001508 /* opaq node cannot have an empty string as the name. */
1509 if (name_len == 0) {
1510 LOGVAL(lydctx->jsonctx->ctx, LYVE_SYNTAX_JSON, "A JSON object member name cannot be a zero-length string.");
1511 ret = LY_EVALID;
1512 goto cleanup;
1513 }
1514
aPiecek6cee5d02021-05-12 10:32:00 +02001515 /* move to the second item in the name/X pair and parse opaq */
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001516 ret = lydjson_ctx_next_parse_opaq(lydctx, name, name_len, prefix, prefix_len, parent, &status, first_p, &node);
Radek Krejci1798aae2020-07-14 13:26:06 +02001517 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskocabe0702020-08-12 10:14:36 +02001518 } else {
Michal Vasko32ac9942020-08-12 14:35:12 +02001519 /* parse as a standard lyd_node but it can still turn out to be an opaque node */
Radek Krejci1798aae2020-07-14 13:26:06 +02001520
1521 /* move to the second item in the name/X pair */
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001522 LY_CHECK_GOTO(ret = lyjson_ctx_next(lydctx->jsonctx, &status), cleanup);
Radek Krejci1798aae2020-07-14 13:26:06 +02001523
1524 /* first check the expected representation according to the nodetype and then continue with the content */
1525 switch (snode->nodetype) {
1526 case LYS_LEAFLIST:
Michal Vasko32ac9942020-08-12 14:35:12 +02001527 case LYS_LIST:
1528 if (snode->nodetype == LYS_LEAFLIST) {
1529 expected = "name/array of values";
1530 } else {
1531 expected = "name/array of objects";
1532 }
Radek Krejci1798aae2020-07-14 13:26:06 +02001533
Michal Vasko4e26adc2022-03-30 11:01:16 +02001534 if (status == LYJSON_ARRAY_EMPTY) {
1535 /* no instances, skip */
1536 break;
1537 }
Radek Krejci1798aae2020-07-14 13:26:06 +02001538 LY_CHECK_GOTO(status != LYJSON_ARRAY, representation_error);
1539
1540 /* move into array */
1541 ret = lyjson_ctx_next(lydctx->jsonctx, &status);
1542 LY_CHECK_GOTO(ret, cleanup);
1543
Michal Vasko32ac9942020-08-12 14:35:12 +02001544 /* process all the values/objects */
1545 do {
Michal Vasko8cc3f662022-03-29 11:25:51 +02001546 ret = lydjson_parse_instance(lydctx, parent, first_p, snode, ext, name, name_len, prefix, prefix_len,
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001547 &status, &node);
1548 if (ret == LY_ENOT) {
Michal Vasko32ac9942020-08-12 14:35:12 +02001549 goto representation_error;
1550 } else if (ret) {
1551 goto cleanup;
Radek Krejci1798aae2020-07-14 13:26:06 +02001552 }
Michal Vasko8cc3f662022-03-29 11:25:51 +02001553 lydjson_maintain_children(parent, first_p, &node, lydctx->parse_opts & LYD_PARSE_ORDERED ? 1 : 0, ext);
Radek Krejci1798aae2020-07-14 13:26:06 +02001554
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001555 /* move after the item(s) */
1556 LY_CHECK_GOTO(ret = lyjson_ctx_next(lydctx->jsonctx, &status), cleanup);
1557 } while (status != LYJSON_ARRAY_CLOSED);
Radek Krejci1798aae2020-07-14 13:26:06 +02001558
1559 break;
Michal Vasko32ac9942020-08-12 14:35:12 +02001560 case LYS_LEAF:
Radek Krejci1798aae2020-07-14 13:26:06 +02001561 case LYS_CONTAINER:
1562 case LYS_NOTIF:
1563 case LYS_ACTION:
1564 case LYS_RPC:
Michal Vasko32ac9942020-08-12 14:35:12 +02001565 case LYS_ANYDATA:
1566 case LYS_ANYXML:
Michal Vaskobbdadda2022-01-06 11:40:10 +01001567 if (snode->nodetype & (LYS_LEAF | LYS_ANYXML)) {
Michal Vasko32ac9942020-08-12 14:35:12 +02001568 if (status == LYJSON_ARRAY) {
1569 expected = "name/[null]";
1570 } else {
1571 expected = "name/value";
1572 }
1573 } else {
Radek Krejci1798aae2020-07-14 13:26:06 +02001574 expected = "name/object";
1575 }
1576
Michal Vasko32ac9942020-08-12 14:35:12 +02001577 /* process the value/object */
Michal Vasko8cc3f662022-03-29 11:25:51 +02001578 ret = lydjson_parse_instance(lydctx, parent, first_p, snode, ext, name, name_len, prefix, prefix_len,
1579 &status, &node);
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001580 if (ret == LY_ENOT) {
Michal Vasko32ac9942020-08-12 14:35:12 +02001581 goto representation_error;
1582 } else if (ret) {
1583 goto cleanup;
Radek Krejci1798aae2020-07-14 13:26:06 +02001584 }
1585
Michal Vasko32ac9942020-08-12 14:35:12 +02001586 if (snode->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) {
Radek Krejci1798aae2020-07-14 13:26:06 +02001587 /* rememeber the RPC/action/notification */
1588 lydctx->op_node = node;
1589 }
Radek Krejci1798aae2020-07-14 13:26:06 +02001590 break;
Radek Krejci1798aae2020-07-14 13:26:06 +02001591 }
Radek Krejci1798aae2020-07-14 13:26:06 +02001592 }
1593
Michal Vasko32ac9942020-08-12 14:35:12 +02001594 /* finally connect the parsed node */
Michal Vasko8cc3f662022-03-29 11:25:51 +02001595 lydjson_maintain_children(parent, first_p, &node, lydctx->parse_opts & LYD_PARSE_ORDERED ? 1 : 0, ext);
Michal Vaskoe0665742021-02-11 11:08:44 +01001596
1597 /* rememeber a successfully parsed node */
Michal Vasko4e26adc2022-03-30 11:01:16 +02001598 if (parsed && node) {
Michal Vaskoe0665742021-02-11 11:08:44 +01001599 ly_set_add(parsed, node, 1, NULL);
1600 }
Radek Krejci1798aae2020-07-14 13:26:06 +02001601
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001602 if (!parse_subtree) {
1603 /* move after the item(s) */
1604 LY_CHECK_GOTO(ret = lyjson_ctx_next(lydctx->jsonctx, &status), cleanup);
1605 }
1606
Radek Krejci5813c362021-01-05 10:51:57 +01001607 /* success */
1608 goto cleanup;
Radek Krejci1798aae2020-07-14 13:26:06 +02001609
1610representation_error:
Michal Vaskoe0665742021-02-11 11:08:44 +01001611 LOG_LOCSET(NULL, parent, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001612 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 +02001613 lys_nodetype2str(snode->nodetype), snode->name, expected, lyjson_token2str(status));
Radek Krejciddace2c2021-01-08 11:30:56 +01001614 LOG_LOCBACK(0, parent ? 1 : 0, 0, 0);
Radek Krejci1798aae2020-07-14 13:26:06 +02001615 ret = LY_EVALID;
Radek Krejci5813c362021-01-05 10:51:57 +01001616
1617cleanup:
aPiecek49e2a3a2021-05-13 10:36:46 +02001618 free(value);
Radek Krejci5813c362021-01-05 10:51:57 +01001619 lyd_free_tree(node);
1620 return ret;
Radek Krejci1798aae2020-07-14 13:26:06 +02001621}
1622
1623/**
1624 * @brief Common start of JSON parser processing different types of the input data.
1625 *
1626 * @param[in] ctx libyang context
1627 * @param[in] in Input structure.
Michal Vaskoe0665742021-02-11 11:08:44 +01001628 * @param[in] parse_opts Options for parser, see @ref dataparseroptions.
1629 * @param[in] val_opts Options for the validation phase, see @ref datavalidationoptions.
Radek Krejci1798aae2020-07-14 13:26:06 +02001630 * @param[out] lydctx_p Data parser context to finish validation.
Radek Krejcicd5f6222020-11-12 08:54:13 +01001631 * @param[out] status Storage for the current context's status
Radek Krejci1798aae2020-07-14 13:26:06 +02001632 * @return LY_ERR value.
1633 */
1634static LY_ERR
Michal Vaskoe0665742021-02-11 11:08:44 +01001635lyd_parse_json_init(const struct ly_ctx *ctx, struct ly_in *in, uint32_t parse_opts, uint32_t val_opts,
Radek Krejcicd5f6222020-11-12 08:54:13 +01001636 struct lyd_json_ctx **lydctx_p, enum LYJSON_PARSER_STATUS *status)
Radek Krejci1798aae2020-07-14 13:26:06 +02001637{
1638 LY_ERR ret = LY_SUCCESS;
1639 struct lyd_json_ctx *lydctx;
Radek Krejcid54412f2020-12-17 20:25:35 +01001640 size_t i;
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001641 ly_bool subtree;
Radek Krejci1798aae2020-07-14 13:26:06 +02001642
Radek Krejcicd5f6222020-11-12 08:54:13 +01001643 assert(lydctx_p);
1644 assert(status);
1645
Radek Krejci1798aae2020-07-14 13:26:06 +02001646 /* init context */
1647 lydctx = calloc(1, sizeof *lydctx);
1648 LY_CHECK_ERR_RET(!lydctx, LOGMEM(ctx), LY_EMEM);
Michal Vaskoe0665742021-02-11 11:08:44 +01001649 lydctx->parse_opts = parse_opts;
1650 lydctx->val_opts = val_opts;
Radek Krejci1798aae2020-07-14 13:26:06 +02001651 lydctx->free = lyd_json_ctx_free;
Radek Krejci1798aae2020-07-14 13:26:06 +02001652
Radek Krejci284f31f2020-09-18 15:40:29 +02001653 /* starting top-level */
1654 for (i = 0; in->current[i] != '\0' && is_jsonws(in->current[i]); i++) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01001655 if (in->current[i] == '\n') {
1656 /* new line */
Radek Krejcid54412f2020-12-17 20:25:35 +01001657 LY_IN_NEW_LINE(in);
Michal Vasko61d76362020-10-07 10:47:30 +02001658 }
Radek Krejci284f31f2020-09-18 15:40:29 +02001659 }
Radek Krejci1798aae2020-07-14 13:26:06 +02001660
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001661 subtree = (parse_opts & LYD_PARSE_SUBTREE) ? 1 : 0;
1662 LY_CHECK_ERR_RET(ret = lyjson_ctx_new(ctx, in, subtree, &lydctx->jsonctx), free(lydctx), ret);
Radek Krejcicd5f6222020-11-12 08:54:13 +01001663 *status = lyjson_ctx_status(lydctx->jsonctx, 0);
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001664
Radek Krejcibb27df32020-11-13 15:39:16 +01001665 if ((*status == LYJSON_END) || (*status == LYJSON_OBJECT_EMPTY) || (*status == LYJSON_OBJECT)) {
Radek Krejci284f31f2020-09-18 15:40:29 +02001666 *lydctx_p = lydctx;
1667 return LY_SUCCESS;
Radek Krejcicd5f6222020-11-12 08:54:13 +01001668 } else {
1669 /* expecting top-level object */
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001670 LOGVAL(ctx, LYVE_SYNTAX_JSON, "Expected top-level JSON object, but %s found.", lyjson_token2str(*status));
Radek Krejcicd5f6222020-11-12 08:54:13 +01001671 *lydctx_p = NULL;
Michal Vasko93509012020-11-13 10:26:09 +01001672 lyd_json_ctx_free((struct lyd_ctx *)lydctx);
Radek Krejcicd5f6222020-11-12 08:54:13 +01001673 return LY_EVALID;
Radek Krejci284f31f2020-09-18 15:40:29 +02001674 }
Radek Krejci1798aae2020-07-14 13:26:06 +02001675}
1676
1677LY_ERR
Radek Krejcif16e2542021-02-17 15:39:23 +01001678lyd_parse_json(const struct ly_ctx *ctx, const struct lysc_ext_instance *ext, struct lyd_node *parent,
1679 struct lyd_node **first_p, struct ly_in *in, uint32_t parse_opts, uint32_t val_opts, enum lyd_type data_type,
Michal Vaskoddd76592022-01-17 13:34:48 +01001680 struct ly_set *parsed, ly_bool *subtree_sibling, struct lyd_ctx **lydctx_p)
Radek Krejci1798aae2020-07-14 13:26:06 +02001681{
Michal Vaskoe0665742021-02-11 11:08:44 +01001682 LY_ERR rc = LY_SUCCESS;
Radek Krejci1798aae2020-07-14 13:26:06 +02001683 struct lyd_json_ctx *lydctx = NULL;
1684 enum LYJSON_PARSER_STATUS status;
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001685 uint32_t int_opts = 0;
Radek Krejci1798aae2020-07-14 13:26:06 +02001686
Michal Vaskoe0665742021-02-11 11:08:44 +01001687 rc = lyd_parse_json_init(ctx, in, parse_opts, val_opts, &lydctx, &status);
1688 LY_CHECK_GOTO(rc || status == LYJSON_END || status == LYJSON_OBJECT_EMPTY, cleanup);
Radek Krejci1798aae2020-07-14 13:26:06 +02001689
Radek Krejcicd5f6222020-11-12 08:54:13 +01001690 assert(status == LYJSON_OBJECT);
Radek Krejci1798aae2020-07-14 13:26:06 +02001691
Michal Vaskoe0665742021-02-11 11:08:44 +01001692 switch (data_type) {
Michal Vasko1e4c68e2021-02-18 15:03:01 +01001693 case LYD_TYPE_DATA_YANG:
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001694 if (!(parse_opts & LYD_PARSE_SUBTREE)) {
1695 int_opts = LYD_INTOPT_WITH_SIBLINGS;
1696 }
Michal Vaskoe0665742021-02-11 11:08:44 +01001697 break;
Michal Vasko1e4c68e2021-02-18 15:03:01 +01001698 case LYD_TYPE_RPC_YANG:
Michal Vaskoe0665742021-02-11 11:08:44 +01001699 int_opts = LYD_INTOPT_RPC | LYD_INTOPT_ACTION | LYD_INTOPT_NO_SIBLINGS;
1700 break;
Michal Vasko1e4c68e2021-02-18 15:03:01 +01001701 case LYD_TYPE_NOTIF_YANG:
Michal Vaskoe0665742021-02-11 11:08:44 +01001702 int_opts = LYD_INTOPT_NOTIF | LYD_INTOPT_NO_SIBLINGS;
1703 break;
Michal Vasko1e4c68e2021-02-18 15:03:01 +01001704 case LYD_TYPE_REPLY_YANG:
Michal Vaskoe0665742021-02-11 11:08:44 +01001705 int_opts = LYD_INTOPT_REPLY | LYD_INTOPT_NO_SIBLINGS;
1706 break;
1707 default:
1708 LOGINT(ctx);
1709 rc = LY_EINT;
1710 goto cleanup;
1711 }
1712 lydctx->int_opts = int_opts;
Radek Krejcif16e2542021-02-17 15:39:23 +01001713 lydctx->ext = ext;
Michal Vaskoe0665742021-02-11 11:08:44 +01001714
1715 /* find the operation node if it exists already */
1716 LY_CHECK_GOTO(rc = lyd_parser_find_operation(parent, int_opts, &lydctx->op_node), cleanup);
1717
Radek Krejci1798aae2020-07-14 13:26:06 +02001718 /* read subtree(s) */
Michal Vaskoe0665742021-02-11 11:08:44 +01001719 while (lydctx->jsonctx->in->current[0] && (status != LYJSON_OBJECT_CLOSED)) {
1720 rc = lydjson_subtree_r(lydctx, parent, first_p, parsed);
1721 LY_CHECK_GOTO(rc, cleanup);
Radek Krejci1798aae2020-07-14 13:26:06 +02001722
1723 status = lyjson_ctx_status(lydctx->jsonctx, 0);
Michal Vaskoe0665742021-02-11 11:08:44 +01001724
1725 if (!(int_opts & LYD_INTOPT_WITH_SIBLINGS)) {
1726 break;
1727 }
1728 }
1729
1730 if ((int_opts & LYD_INTOPT_NO_SIBLINGS) && lydctx->jsonctx->in->current[0] &&
1731 (lyjson_ctx_status(lydctx->jsonctx, 0) != LYJSON_OBJECT_CLOSED)) {
1732 LOGVAL(ctx, LYVE_SYNTAX, "Unexpected sibling node.");
1733 rc = LY_EVALID;
1734 goto cleanup;
1735 }
1736 if ((int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_ACTION | LYD_INTOPT_NOTIF | LYD_INTOPT_REPLY)) && !lydctx->op_node) {
1737 LOGVAL(ctx, LYVE_DATA, "Missing the operation node.");
1738 rc = LY_EVALID;
1739 goto cleanup;
Radek Krejci1798aae2020-07-14 13:26:06 +02001740 }
1741
1742 /* finish linking metadata */
Michal Vaskoe0665742021-02-11 11:08:44 +01001743 rc = lydjson_metadata_finish(lydctx, parent ? lyd_node_child_p(parent) : first_p);
1744 LY_CHECK_GOTO(rc, cleanup);
Radek Krejci1798aae2020-07-14 13:26:06 +02001745
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001746 if (parse_opts & LYD_PARSE_SUBTREE) {
1747 /* check for a sibling object */
1748 assert(subtree_sibling);
1749 if (lydctx->jsonctx->in->current[0] == ',') {
1750 *subtree_sibling = 1;
1751
1752 /* move to the next object */
1753 ly_in_skip(lydctx->jsonctx->in, 1);
1754 } else {
1755 *subtree_sibling = 0;
1756 }
1757 }
1758
Radek Krejci1798aae2020-07-14 13:26:06 +02001759cleanup:
1760 /* there should be no unresolved types stored */
Michal Vasko58c8b562021-12-09 09:25:33 +01001761 assert(!(parse_opts & LYD_PARSE_ONLY) || !lydctx || (!lydctx->node_types.count && !lydctx->meta_types.count &&
Michal Vasko49c39d82020-11-06 17:20:27 +01001762 !lydctx->node_when.count));
Radek Krejci1798aae2020-07-14 13:26:06 +02001763
Michal Vaskoe0665742021-02-11 11:08:44 +01001764 if (rc) {
Radek Krejci1798aae2020-07-14 13:26:06 +02001765 lyd_json_ctx_free((struct lyd_ctx *)lydctx);
Radek Krejci1798aae2020-07-14 13:26:06 +02001766 } else {
1767 *lydctx_p = (struct lyd_ctx *)lydctx;
1768 }
Michal Vaskoe0665742021-02-11 11:08:44 +01001769 return rc;
Michal Vasko90932a92020-02-12 14:33:03 +01001770}