blob: 5e84cc1051ebf753a8ce64a7d16a2517ba057539 [file] [log] [blame]
Michal Vasko60ea6352020-06-29 13:39:39 +02001/**
2 * @file parser_lyb.c
3 * @author Michal Vasko <mvasko@cesnet.cz>
4 * @brief LYB data parser for libyang
5 *
6 * Copyright (c) 2020 CESNET, z.s.p.o.
7 *
8 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
13 */
14
15#include "lyb.h"
16
17#include <assert.h>
Radek Krejciad97c5f2020-06-30 09:19:28 +020018#include <stdint.h>
Michal Vasko60ea6352020-06-29 13:39:39 +020019#include <stdio.h>
20#include <stdlib.h>
21#include <string.h>
22
23#include "common.h"
24#include "compat.h"
Radek Krejciad97c5f2020-06-30 09:19:28 +020025#include "context.h"
26#include "dict.h"
Radek Krejci47fab892020-11-05 17:02:41 +010027#include "hash_table.h"
28#include "in.h"
Michal Vaskoafac7822020-10-20 14:22:26 +020029#include "in_internal.h"
Radek Krejciad97c5f2020-06-30 09:19:28 +020030#include "log.h"
Radek Krejci7931b192020-06-25 17:05:03 +020031#include "parser_data.h"
32#include "parser_internal.h"
Radek Krejci77114102021-03-10 15:21:57 +010033#include "set.h"
Radek Krejciad97c5f2020-06-30 09:19:28 +020034#include "tree.h"
Radek Krejci47fab892020-11-05 17:02:41 +010035#include "tree_data.h"
Michal Vasko60ea6352020-06-29 13:39:39 +020036#include "tree_data_internal.h"
Radek Krejci859a15a2021-03-05 20:56:59 +010037#include "tree_edit.h"
Michal Vasko60ea6352020-06-29 13:39:39 +020038#include "tree_schema.h"
39#include "validation.h"
Michal Vasko6b5cb2a2020-11-11 19:11:21 +010040#include "xml.h"
Michal Vasko60ea6352020-06-29 13:39:39 +020041
Michal Vasko02ed9d82021-07-15 14:58:04 +020042static LY_ERR _lyd_parse_lyb(const struct ly_ctx *ctx, const struct lysc_ext_instance *ext, struct lyd_node *parent,
43 struct lyd_node **first_p, struct ly_in *in, uint32_t parse_opts, uint32_t val_opts, uint32_t int_opts,
44 struct ly_set *parsed, struct lyd_ctx **lydctx_p);
45
aPiecek570d7ed2021-09-10 07:15:35 +020046static LY_ERR lyb_parse_siblings(struct lyd_lyb_ctx *lybctx, struct lyd_node *parent, struct lyd_node **first_p, struct ly_set *parsed);
aPiecek821cf732021-09-09 15:37:28 +020047
Radek Krejci1798aae2020-07-14 13:26:06 +020048void
49lylyb_ctx_free(struct lylyb_ctx *ctx)
50{
51 LY_ARRAY_COUNT_TYPE u;
52
aPiecek570d7ed2021-09-10 07:15:35 +020053 LY_ARRAY_FREE(ctx->siblings);
Radek Krejci1798aae2020-07-14 13:26:06 +020054 LY_ARRAY_FREE(ctx->models);
55
56 LY_ARRAY_FOR(ctx->sib_hts, u) {
57 lyht_free(ctx->sib_hts[u].ht);
58 }
59 LY_ARRAY_FREE(ctx->sib_hts);
60
61 free(ctx);
62}
63
64void
65lyd_lyb_ctx_free(struct lyd_ctx *lydctx)
66{
67 struct lyd_lyb_ctx *ctx = (struct lyd_lyb_ctx *)lydctx;
68
69 lyd_ctx_free(lydctx);
70 lylyb_ctx_free(ctx->lybctx);
71 free(ctx);
72}
73
Michal Vasko60ea6352020-06-29 13:39:39 +020074/**
aPiecek6828a312021-09-17 15:53:18 +020075 * @brief Read metadata about siblings.
76 *
77 * @param[out] sib Structure in which the metadata will be stored.
78 * @param[in] lybctx LYB context.
79 */
80static void
81lyb_read_sibling_meta(struct lyd_lyb_sibling *sib, struct lylyb_ctx *lybctx)
82{
83 uint8_t meta_buf[LYB_META_BYTES];
84 uint64_t num = 0;
85
86 ly_in_read(lybctx->in, meta_buf, LYB_META_BYTES);
87
88 memcpy(&num, meta_buf, LYB_SIZE_BYTES);
89 sib->written = le64toh(num);
90 memcpy(&num, meta_buf + LYB_SIZE_BYTES, LYB_INCHUNK_BYTES);
91 sib->inner_chunks = le64toh(num);
92
93 /* remember whether there is a following chunk or not */
94 sib->position = (sib->written == LYB_SIZE_MAX ? 1 : 0);
95}
96
97/**
Michal Vasko60ea6352020-06-29 13:39:39 +020098 * @brief Read YANG data from LYB input. Metadata are handled transparently and not returned.
99 *
100 * @param[in] buf Destination buffer.
101 * @param[in] count Number of bytes to read.
102 * @param[in] lybctx LYB context.
103 */
104static void
Radek Krejci1798aae2020-07-14 13:26:06 +0200105lyb_read(uint8_t *buf, size_t count, struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200106{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200107 LY_ARRAY_COUNT_TYPE u;
aPiecek570d7ed2021-09-10 07:15:35 +0200108 struct lyd_lyb_sibling *empty;
Michal Vasko60ea6352020-06-29 13:39:39 +0200109 size_t to_read;
Michal Vasko60ea6352020-06-29 13:39:39 +0200110
111 assert(lybctx);
112
113 while (1) {
114 /* check for fully-read (empty) data chunks */
115 to_read = count;
116 empty = NULL;
aPiecek570d7ed2021-09-10 07:15:35 +0200117 LY_ARRAY_FOR(lybctx->siblings, u) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200118 /* we want the innermost chunks resolved first, so replace previous empty chunks,
119 * also ignore chunks that are completely finished, there is nothing for us to do */
aPiecek570d7ed2021-09-10 07:15:35 +0200120 if ((lybctx->siblings[u].written <= to_read) && lybctx->siblings[u].position) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200121 /* empty chunk, do not read more */
aPiecek570d7ed2021-09-10 07:15:35 +0200122 to_read = lybctx->siblings[u].written;
123 empty = &lybctx->siblings[u];
Michal Vasko60ea6352020-06-29 13:39:39 +0200124 }
125 }
126
127 if (!empty && !count) {
128 break;
129 }
130
131 /* we are actually reading some data, not just finishing another chunk */
132 if (to_read) {
133 if (buf) {
Michal Vasko63f3d842020-07-08 10:10:14 +0200134 ly_in_read(lybctx->in, buf, to_read);
135 } else {
136 ly_in_skip(lybctx->in, to_read);
Michal Vasko60ea6352020-06-29 13:39:39 +0200137 }
138
aPiecek570d7ed2021-09-10 07:15:35 +0200139 LY_ARRAY_FOR(lybctx->siblings, u) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200140 /* decrease all written counters */
aPiecek570d7ed2021-09-10 07:15:35 +0200141 lybctx->siblings[u].written -= to_read;
142 assert(lybctx->siblings[u].written <= LYB_SIZE_MAX);
Michal Vasko60ea6352020-06-29 13:39:39 +0200143 }
144 /* decrease count/buf */
145 count -= to_read;
146 if (buf) {
147 buf += to_read;
148 }
Michal Vasko60ea6352020-06-29 13:39:39 +0200149 }
150
151 if (empty) {
152 /* read the next chunk meta information */
aPiecek6828a312021-09-17 15:53:18 +0200153 lyb_read_sibling_meta(empty, lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +0200154 }
155 }
Michal Vasko60ea6352020-06-29 13:39:39 +0200156}
157
158/**
159 * @brief Read a number.
160 *
161 * @param[in] num Destination buffer.
162 * @param[in] num_size Size of @p num.
163 * @param[in] bytes Number of bytes to read.
164 * @param[in] lybctx LYB context.
165 */
166static void
Radek Krejci1798aae2020-07-14 13:26:06 +0200167lyb_read_number(void *num, size_t num_size, size_t bytes, struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200168{
169 uint64_t buf = 0;
170
171 lyb_read((uint8_t *)&buf, bytes, lybctx);
172
173 /* correct byte order */
174 buf = le64toh(buf);
175
176 switch (num_size) {
Radek Krejcif13b87b2020-12-01 22:02:17 +0100177 case sizeof(uint8_t):
Michal Vasko60ea6352020-06-29 13:39:39 +0200178 *((uint8_t *)num) = buf;
179 break;
Radek Krejcif13b87b2020-12-01 22:02:17 +0100180 case sizeof(uint16_t):
Michal Vasko60ea6352020-06-29 13:39:39 +0200181 *((uint16_t *)num) = buf;
182 break;
Radek Krejcif13b87b2020-12-01 22:02:17 +0100183 case sizeof(uint32_t):
Michal Vasko60ea6352020-06-29 13:39:39 +0200184 *((uint32_t *)num) = buf;
185 break;
Radek Krejcif13b87b2020-12-01 22:02:17 +0100186 case sizeof(uint64_t):
Michal Vasko60ea6352020-06-29 13:39:39 +0200187 *((uint64_t *)num) = buf;
188 break;
189 default:
190 LOGINT(lybctx->ctx);
191 }
192}
193
194/**
195 * @brief Read a string.
196 *
197 * @param[in] str Destination buffer, is allocated.
aPiecek570d7ed2021-09-10 07:15:35 +0200198 * @param[in] with_length Whether the string is preceded with its length or it ends at the end of this "sibling".
Michal Vasko60ea6352020-06-29 13:39:39 +0200199 * @param[in] lybctx LYB context.
200 * @return LY_ERR value.
201 */
202static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +0200203lyb_read_string(char **str, ly_bool with_length, struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200204{
Radek Krejci857189e2020-09-01 13:26:36 +0200205 ly_bool next_chunk = 0;
Michal Vasko60ea6352020-06-29 13:39:39 +0200206 size_t len = 0, cur_len;
207
208 *str = NULL;
209
210 if (with_length) {
211 lyb_read_number(&len, sizeof len, 2, lybctx);
212 } else {
aPiecek570d7ed2021-09-10 07:15:35 +0200213 /* read until the end of this "sibling" */
214 len = LYB_LAST_SIBLING(lybctx).written;
215 if (LYB_LAST_SIBLING(lybctx).position) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200216 next_chunk = 1;
217 }
218 }
219
220 *str = malloc((len + 1) * sizeof **str);
221 LY_CHECK_ERR_RET(!*str, LOGMEM(lybctx->ctx), LY_EMEM);
222
223 lyb_read((uint8_t *)*str, len, lybctx);
224
225 while (next_chunk) {
aPiecek570d7ed2021-09-10 07:15:35 +0200226 cur_len = LYB_LAST_SIBLING(lybctx).written;
227 if (LYB_LAST_SIBLING(lybctx).position) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200228 next_chunk = 1;
229 } else {
230 next_chunk = 0;
231 }
232
233 *str = ly_realloc(*str, (len + cur_len + 1) * sizeof **str);
234 LY_CHECK_ERR_RET(!*str, LOGMEM(lybctx->ctx), LY_EMEM);
235
236 lyb_read(((uint8_t *)*str) + len, cur_len, lybctx);
237
238 len += cur_len;
239 }
240
Michal Vaskocebbae52021-05-31 11:11:36 +0200241 (*str)[len] = '\0';
Michal Vasko60ea6352020-06-29 13:39:39 +0200242 return LY_SUCCESS;
243}
244
245/**
aPiecek91eec232021-09-09 15:42:37 +0200246 * @brief Read value of term node.
aPiecekea304e32021-08-18 09:13:47 +0200247 *
aPiecekaa5b70a2021-08-30 08:33:25 +0200248 * @param[in] term Compiled term node.
aPiecekea304e32021-08-18 09:13:47 +0200249 * @param[out] term_value Set to term node value in dynamically
250 * allocated memory. The caller must release it.
251 * @param[out] term_value_len Value length in bytes. The zero byte is
252 * always included and is not counted.
253 * @param[in,out] lybctx LYB context.
254 * @return LY_ERR value.
255 */
256static LY_ERR
aPiecek91eec232021-09-09 15:42:37 +0200257lyb_read_term_value(const struct lysc_node_leaf *term, uint8_t **term_value, uint32_t *term_value_len,
258 struct lylyb_ctx *lybctx)
aPiecekea304e32021-08-18 09:13:47 +0200259{
260 uint32_t allocated_size;
aPiecekaa5b70a2021-08-30 08:33:25 +0200261 int32_t lyb_data_len;
262 struct lysc_type_leafref *type_lf;
aPiecekea304e32021-08-18 09:13:47 +0200263
aPiecekaa5b70a2021-08-30 08:33:25 +0200264 assert(term && term_value && term_value_len && lybctx);
aPiecekea304e32021-08-18 09:13:47 +0200265
aPiecekaa5b70a2021-08-30 08:33:25 +0200266 /* Find out the size from @ref howtoDataLYB. */
267 if (term->type->basetype == LY_TYPE_LEAFREF) {
268 /* Leafref itself is ignored, the target is loaded directly. */
269 type_lf = (struct lysc_type_leafref *)term->type;
270 lyb_data_len = type_lf->realtype->plugin->lyb_data_len;
271 } else {
272 lyb_data_len = term->type->plugin->lyb_data_len;
273 }
274
275 if (lyb_data_len < 0) {
276 /* Parse value size. */
277 lyb_read_number(term_value_len, sizeof *term_value_len,
278 sizeof *term_value_len, lybctx);
279 } else {
280 /* Data size is fixed. */
281 *term_value_len = lyb_data_len;
282 }
aPiecekea304e32021-08-18 09:13:47 +0200283
284 /* Allocate memory. */
285 allocated_size = *term_value_len + 1;
286 *term_value = malloc(allocated_size * sizeof **term_value);
287 LY_CHECK_ERR_RET(!*term_value, LOGMEM(lybctx->ctx), LY_EMEM);
288
289 if (*term_value_len > 0) {
290 /* Parse value. */
291 lyb_read(*term_value, *term_value_len, lybctx);
292 }
293
294 /* Add extra zero byte regardless of whether it is string or not. */
295 (*term_value)[allocated_size - 1] = 0;
296
297 return LY_SUCCESS;
298}
299
300/**
aPiecek570d7ed2021-09-10 07:15:35 +0200301 * @brief Stop the current "siblings" - change LYB context state.
Michal Vasko60ea6352020-06-29 13:39:39 +0200302 *
303 * @param[in] lybctx LYB context.
304 * @return LY_ERR value.
305 */
306static LY_ERR
aPiecek570d7ed2021-09-10 07:15:35 +0200307lyb_read_stop_siblings(struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200308{
aPiecek570d7ed2021-09-10 07:15:35 +0200309 if (LYB_LAST_SIBLING(lybctx).written) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200310 LOGINT_RET(lybctx->ctx);
311 }
312
aPiecek570d7ed2021-09-10 07:15:35 +0200313 LY_ARRAY_DECREMENT(lybctx->siblings);
Michal Vasko60ea6352020-06-29 13:39:39 +0200314 return LY_SUCCESS;
315}
316
317/**
aPiecek570d7ed2021-09-10 07:15:35 +0200318 * @brief Start a new "siblings" - change LYB context state but also read the expected metadata.
Michal Vasko60ea6352020-06-29 13:39:39 +0200319 *
320 * @param[in] lybctx LYB context.
321 * @return LY_ERR value.
322 */
323static LY_ERR
aPiecek570d7ed2021-09-10 07:15:35 +0200324lyb_read_start_siblings(struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200325{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200326 LY_ARRAY_COUNT_TYPE u;
Michal Vasko60ea6352020-06-29 13:39:39 +0200327
aPiecek570d7ed2021-09-10 07:15:35 +0200328 u = LY_ARRAY_COUNT(lybctx->siblings);
329 if (u == lybctx->sibling_size) {
330 LY_ARRAY_CREATE_RET(lybctx->ctx, lybctx->siblings, u + LYB_SIBLING_STEP, LY_EMEM);
331 lybctx->sibling_size = u + LYB_SIBLING_STEP;
Michal Vasko60ea6352020-06-29 13:39:39 +0200332 }
333
aPiecek570d7ed2021-09-10 07:15:35 +0200334 LY_ARRAY_INCREMENT(lybctx->siblings);
aPiecek6828a312021-09-17 15:53:18 +0200335 lyb_read_sibling_meta(&LYB_LAST_SIBLING(lybctx), lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +0200336
Michal Vasko60ea6352020-06-29 13:39:39 +0200337 return LY_SUCCESS;
338}
339
340/**
341 * @brief Parse YANG model info.
342 *
343 * @param[in] lybctx LYB context.
aPiecekfc7cf7e2021-09-09 11:20:27 +0200344 * @param[in] parse_options Flag with options for parsing.
aPiecek339bdc32021-09-10 08:42:36 +0200345 * @param[out] model Parsed module.
Michal Vasko60ea6352020-06-29 13:39:39 +0200346 * @return LY_ERR value.
347 */
348static LY_ERR
aPiecek339bdc32021-09-10 08:42:36 +0200349lyb_parse_model(struct lylyb_ctx *lybctx, uint32_t parse_options, const struct lys_module **model)
Michal Vasko60ea6352020-06-29 13:39:39 +0200350{
351 LY_ERR ret = LY_SUCCESS;
aPiecek570d7ed2021-09-10 07:15:35 +0200352 const struct lys_module *mod = NULL;
Radek Krejcif13b87b2020-12-01 22:02:17 +0100353 char *mod_name = NULL, mod_rev[LY_REV_SIZE];
aPiecek570d7ed2021-09-10 07:15:35 +0200354 uint16_t rev, length;
Michal Vasko60ea6352020-06-29 13:39:39 +0200355
aPiecek570d7ed2021-09-10 07:15:35 +0200356 lyb_read_number(&length, 2, 2, lybctx);
aPiecek339bdc32021-09-10 08:42:36 +0200357
aPiecek570d7ed2021-09-10 07:15:35 +0200358 if (length) {
359 mod_name = malloc((length + 1) * sizeof *mod_name);
360 LY_CHECK_ERR_RET(!mod_name, LOGMEM(lybctx->ctx), LY_EMEM);
361 lyb_read(((uint8_t *)mod_name), length, lybctx);
362 mod_name[length] = '\0';
363 } else {
364 goto cleanup;
365 }
Michal Vasko60ea6352020-06-29 13:39:39 +0200366
367 /* revision */
368 lyb_read_number(&rev, sizeof rev, 2, lybctx);
369
Michal Vasko60ea6352020-06-29 13:39:39 +0200370 if (rev) {
Radek Krejcif13b87b2020-12-01 22:02:17 +0100371 sprintf(mod_rev, "%04u-%02u-%02u", ((rev & LYB_REV_YEAR_MASK) >> LYB_REV_YEAR_SHIFT) + LYB_REV_YEAR_OFFSET,
372 (rev & LYB_REV_MONTH_MASK) >> LYB_REV_MONTH_SHIFT, rev & LYB_REV_DAY_MASK);
aPiecek339bdc32021-09-10 08:42:36 +0200373 mod = ly_ctx_get_module(lybctx->ctx, mod_name, mod_rev);
374 if ((parse_options & LYD_PARSE_LYB_MOD_UPDATE) && !mod) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200375 /* try to use an updated module */
aPiecek339bdc32021-09-10 08:42:36 +0200376 mod = ly_ctx_get_module_implemented(lybctx->ctx, mod_name);
377 if (mod && (!mod->revision || (strcmp(mod->revision, mod_rev) < 0))) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200378 /* not an implemented module in a newer revision */
aPiecek339bdc32021-09-10 08:42:36 +0200379 mod = NULL;
Michal Vasko60ea6352020-06-29 13:39:39 +0200380 }
381 }
382 } else {
aPiecek339bdc32021-09-10 08:42:36 +0200383 mod = ly_ctx_get_module_latest(lybctx->ctx, mod_name);
Michal Vasko60ea6352020-06-29 13:39:39 +0200384 }
385 /* TODO data_clb supported?
386 if (lybctx->ctx->data_clb) {
387 if (!*mod) {
388 *mod = lybctx->ctx->data_clb(lybctx->ctx, mod_name, NULL, 0, lybctx->ctx->data_clb_data);
389 } else if (!(*mod)->implemented) {
390 *mod = lybctx->ctx->data_clb(lybctx->ctx, mod_name, (*mod)->ns, LY_MODCLB_NOT_IMPLEMENTED, lybctx->ctx->data_clb_data);
391 }
392 }*/
393
aPiecek339bdc32021-09-10 08:42:36 +0200394 if (!mod || !mod->implemented) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200395 if (parse_options & LYD_PARSE_STRICT) {
aPiecek339bdc32021-09-10 08:42:36 +0200396 if (!mod) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200397 LOGERR(lybctx->ctx, LY_EINVAL, "Invalid context for LYB data parsing, missing module \"%s%s%s\".",
Michal Vasko69730152020-10-09 16:30:07 +0200398 mod_name, rev ? "@" : "", rev ? mod_rev : "");
aPiecek339bdc32021-09-10 08:42:36 +0200399 } else if (!mod->implemented) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200400 LOGERR(lybctx->ctx, LY_EINVAL, "Invalid context for LYB data parsing, module \"%s%s%s\" not implemented.",
Michal Vasko69730152020-10-09 16:30:07 +0200401 mod_name, rev ? "@" : "", rev ? mod_rev : "");
Michal Vasko60ea6352020-06-29 13:39:39 +0200402 }
403 ret = LY_EINVAL;
404 goto cleanup;
405 }
406
407 }
408
aPiecek339bdc32021-09-10 08:42:36 +0200409 if (mod) {
Michal Vasko85d9edc2021-04-22 09:15:05 +0200410 /* fill cached hashes, if not already */
aPiecek339bdc32021-09-10 08:42:36 +0200411 lyb_cache_module_hash(mod);
Michal Vasko85d9edc2021-04-22 09:15:05 +0200412 }
Michal Vasko11f76c82021-04-15 14:36:14 +0200413
Michal Vasko60ea6352020-06-29 13:39:39 +0200414cleanup:
aPiecek570d7ed2021-09-10 07:15:35 +0200415 *model = mod;
Michal Vasko60ea6352020-06-29 13:39:39 +0200416 free(mod_name);
417 return ret;
418}
419
420/**
421 * @brief Parse YANG node metadata.
422 *
423 * @param[in] lybctx LYB context.
Michal Vasko60ea6352020-06-29 13:39:39 +0200424 * @param[out] meta Parsed metadata.
425 * @return LY_ERR value.
426 */
427static LY_ERR
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200428lyb_parse_metadata(struct lyd_lyb_ctx *lybctx, struct lyd_meta **meta)
Michal Vasko60ea6352020-06-29 13:39:39 +0200429{
430 LY_ERR ret = LY_SUCCESS;
Radek Krejci857189e2020-09-01 13:26:36 +0200431 ly_bool dynamic;
Michal Vasko60ea6352020-06-29 13:39:39 +0200432 uint8_t i, count = 0;
Michal Vasko1e5d5612020-07-03 13:29:26 +0200433 char *meta_name = NULL, *meta_value;
Michal Vasko60ea6352020-06-29 13:39:39 +0200434 const struct lys_module *mod;
435
436 /* read number of attributes stored */
Radek Krejci1798aae2020-07-14 13:26:06 +0200437 lyb_read(&count, 1, lybctx->lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +0200438
439 /* read attributes */
440 for (i = 0; i < count; ++i) {
aPiecek570d7ed2021-09-10 07:15:35 +0200441 ret = lyb_read_start_siblings(lybctx->lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +0200442 LY_CHECK_GOTO(ret, cleanup);
443
444 /* find model */
Michal Vaskoe0665742021-02-11 11:08:44 +0100445 ret = lyb_parse_model(lybctx->lybctx, lybctx->parse_opts, &mod);
Michal Vasko60ea6352020-06-29 13:39:39 +0200446 LY_CHECK_GOTO(ret, cleanup);
447
448 if (!mod) {
449 /* skip it */
450 do {
aPiecek570d7ed2021-09-10 07:15:35 +0200451 lyb_read(NULL, LYB_LAST_SIBLING(lybctx->lybctx).written, lybctx->lybctx);
452 } while (LYB_LAST_SIBLING(lybctx->lybctx).written);
453 goto stop_sibling;
Michal Vasko60ea6352020-06-29 13:39:39 +0200454 }
455
456 /* meta name */
Radek Krejci1798aae2020-07-14 13:26:06 +0200457 ret = lyb_read_string(&meta_name, 1, lybctx->lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +0200458 LY_CHECK_GOTO(ret, cleanup);
459
460 /* meta value */
Radek Krejci1798aae2020-07-14 13:26:06 +0200461 ret = lyb_read_string(&meta_value, 0, lybctx->lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +0200462 LY_CHECK_GOTO(ret, cleanup);
463 dynamic = 1;
464
465 /* create metadata */
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200466 ret = lyd_parser_create_meta((struct lyd_ctx *)lybctx, NULL, meta, mod, meta_name, strlen(meta_name), meta_value,
Radek Krejci8df109d2021-04-23 12:19:08 +0200467 ly_strlen(meta_value), &dynamic, LY_VALUE_JSON, NULL, LYD_HINT_DATA);
Michal Vasko60ea6352020-06-29 13:39:39 +0200468
469 /* free strings */
470 free(meta_name);
471 meta_name = NULL;
472 if (dynamic) {
473 free(meta_value);
474 dynamic = 0;
475 }
Michal Vasko60ea6352020-06-29 13:39:39 +0200476
Radek Krejci1798aae2020-07-14 13:26:06 +0200477 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko60ea6352020-06-29 13:39:39 +0200478
aPiecek570d7ed2021-09-10 07:15:35 +0200479stop_sibling:
480 ret = lyb_read_stop_siblings(lybctx->lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +0200481 LY_CHECK_GOTO(ret, cleanup);
482 }
483
484cleanup:
485 free(meta_name);
Michal Vasko60ea6352020-06-29 13:39:39 +0200486 if (ret) {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200487 lyd_free_meta_siblings(*meta);
Michal Vasko60ea6352020-06-29 13:39:39 +0200488 *meta = NULL;
489 }
490 return ret;
491}
492
493/**
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100494 * @brief Parse format-specific prefix data.
Michal Vasko60ea6352020-06-29 13:39:39 +0200495 *
496 * @param[in] lybctx LYB context.
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100497 * @param[in] format Prefix data format.
498 * @param[out] prefix_data Parsed prefix data.
Michal Vasko60ea6352020-06-29 13:39:39 +0200499 * @return LY_ERR value.
500 */
501static LY_ERR
Radek Krejci8df109d2021-04-23 12:19:08 +0200502lyb_parse_prefix_data(struct lylyb_ctx *lybctx, LY_VALUE_FORMAT format, void **prefix_data)
Michal Vasko60ea6352020-06-29 13:39:39 +0200503{
504 LY_ERR ret = LY_SUCCESS;
505 uint8_t count, i;
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100506 struct ly_set *set = NULL;
507 struct lyxml_ns *ns = NULL;
Michal Vasko60ea6352020-06-29 13:39:39 +0200508
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100509 switch (format) {
Radek Krejci8df109d2021-04-23 12:19:08 +0200510 case LY_VALUE_XML:
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100511 /* read count */
512 lyb_read(&count, 1, lybctx);
513 if (!count) {
514 return LY_SUCCESS;
515 }
Michal Vasko60ea6352020-06-29 13:39:39 +0200516
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100517 /* read all NS elements */
518 LY_CHECK_GOTO(ret = ly_set_new(&set), cleanup);
Michal Vasko60ea6352020-06-29 13:39:39 +0200519
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100520 for (i = 0; i < count; ++i) {
521 ns = calloc(1, sizeof *ns);
Michal Vasko60ea6352020-06-29 13:39:39 +0200522
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100523 /* prefix */
524 LY_CHECK_GOTO(ret = lyb_read_string(&ns->prefix, 1, lybctx), cleanup);
525
526 /* namespace */
527 LY_CHECK_GOTO(ret = lyb_read_string(&ns->uri, 1, lybctx), cleanup);
528
529 LY_CHECK_GOTO(ret = ly_set_add(set, ns, 1, NULL), cleanup);
530 ns = NULL;
531 }
532
533 *prefix_data = set;
534 break;
Radek Krejci8df109d2021-04-23 12:19:08 +0200535 case LY_VALUE_JSON:
Radek Krejcif9943642021-04-26 10:18:21 +0200536 case LY_VALUE_LYB:
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100537 /* nothing stored */
538 break;
539 default:
540 LOGINT(lybctx->ctx);
541 ret = LY_EINT;
542 break;
Michal Vasko60ea6352020-06-29 13:39:39 +0200543 }
544
545cleanup:
546 if (ret) {
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100547 ly_free_prefix_data(format, set);
548 if (ns) {
549 free(ns->prefix);
550 free(ns->uri);
551 free(ns);
552 }
Michal Vasko60ea6352020-06-29 13:39:39 +0200553 }
554 return ret;
555}
556
557/**
558 * @brief Parse opaque attributes.
559 *
560 * @param[in] lybctx LYB context.
561 * @param[out] attr Parsed attributes.
562 * @return LY_ERR value.
563 */
564static LY_ERR
Radek Krejci1798aae2020-07-14 13:26:06 +0200565lyb_parse_attributes(struct lylyb_ctx *lybctx, struct lyd_attr **attr)
Michal Vasko60ea6352020-06-29 13:39:39 +0200566{
567 LY_ERR ret = LY_SUCCESS;
568 uint8_t count, i;
Michal Vasko486e4f92021-07-01 13:12:32 +0200569 struct lyd_attr *attr2 = NULL;
Radek Krejci1798aae2020-07-14 13:26:06 +0200570 char *prefix = NULL, *module_name = NULL, *name = NULL, *value = NULL;
Radek Krejci857189e2020-09-01 13:26:36 +0200571 ly_bool dynamic = 0;
Radek Krejci8df109d2021-04-23 12:19:08 +0200572 LY_VALUE_FORMAT format = 0;
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100573 void *val_prefix_data = NULL;
Michal Vasko60ea6352020-06-29 13:39:39 +0200574
575 /* read count */
576 lyb_read(&count, 1, lybctx);
577
578 /* read attributes */
579 for (i = 0; i < count; ++i) {
aPiecek570d7ed2021-09-10 07:15:35 +0200580 ret = lyb_read_start_siblings(lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +0200581 LY_CHECK_GOTO(ret, cleanup);
582
Michal Vasko0fdcd242020-11-11 19:12:30 +0100583 /* prefix, may be empty */
Michal Vasko60ea6352020-06-29 13:39:39 +0200584 ret = lyb_read_string(&prefix, 1, lybctx);
585 LY_CHECK_GOTO(ret, cleanup);
586 if (!prefix[0]) {
587 free(prefix);
588 prefix = NULL;
589 }
590
591 /* namespace, may be empty */
Radek Krejci1798aae2020-07-14 13:26:06 +0200592 ret = lyb_read_string(&module_name, 1, lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +0200593 LY_CHECK_GOTO(ret, cleanup);
Radek Krejci1798aae2020-07-14 13:26:06 +0200594 if (!module_name[0]) {
595 free(module_name);
596 module_name = NULL;
Michal Vasko60ea6352020-06-29 13:39:39 +0200597 }
598
599 /* name */
600 ret = lyb_read_string(&name, 1, lybctx);
601 LY_CHECK_GOTO(ret, cleanup);
602
Michal Vasko60ea6352020-06-29 13:39:39 +0200603 /* format */
Michal Vasko403beac2021-08-24 08:27:52 +0200604 lyb_read_number(&format, sizeof format, 1, lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +0200605
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100606 /* value prefixes */
607 ret = lyb_parse_prefix_data(lybctx, format, &val_prefix_data);
608 LY_CHECK_GOTO(ret, cleanup);
609
Michal Vasko60ea6352020-06-29 13:39:39 +0200610 /* value */
611 ret = lyb_read_string(&value, 0, lybctx);
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100612 LY_CHECK_ERR_GOTO(ret, ly_free_prefix_data(format, val_prefix_data), cleanup);
Michal Vasko60ea6352020-06-29 13:39:39 +0200613 dynamic = 1;
614
615 /* attr2 is always changed to the created attribute */
Michal Vasko501af032020-11-11 20:27:44 +0100616 ret = lyd_create_attr(NULL, &attr2, lybctx->ctx, name, strlen(name), prefix, ly_strlen(prefix), module_name,
Michal Vaskobb512792021-07-01 13:12:49 +0200617 ly_strlen(module_name), value, ly_strlen(value), &dynamic, format, val_prefix_data, LYD_HINT_DATA);
Michal Vasko60ea6352020-06-29 13:39:39 +0200618 LY_CHECK_GOTO(ret, cleanup);
619
620 free(prefix);
621 prefix = NULL;
Radek Krejci1798aae2020-07-14 13:26:06 +0200622 free(module_name);
623 module_name = NULL;
Michal Vasko60ea6352020-06-29 13:39:39 +0200624 free(name);
625 name = NULL;
Michal Vasko60ea6352020-06-29 13:39:39 +0200626 assert(!dynamic);
627 value = NULL;
628
629 if (!*attr) {
630 *attr = attr2;
631 }
632
aPiecek570d7ed2021-09-10 07:15:35 +0200633 ret = lyb_read_stop_siblings(lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +0200634 LY_CHECK_GOTO(ret, cleanup);
635 }
636
637cleanup:
638 free(prefix);
Radek Krejci1798aae2020-07-14 13:26:06 +0200639 free(module_name);
Michal Vasko60ea6352020-06-29 13:39:39 +0200640 free(name);
641 if (dynamic) {
642 free(value);
643 }
Michal Vasko60ea6352020-06-29 13:39:39 +0200644 if (ret) {
Radek Krejci011e4aa2020-09-04 15:22:31 +0200645 lyd_free_attr_siblings(lybctx->ctx, *attr);
Michal Vasko60ea6352020-06-29 13:39:39 +0200646 *attr = NULL;
647 }
648 return ret;
649}
650
651/**
aPiecek619350d2021-09-09 16:06:59 +0200652 * @brief Fill @p hash with hash values.
653 *
654 * @param[in] lybctx LYB context.
655 * @param[in,out] hash Pointer to the array in which the hash values are to be written.
656 * @param[out] hash_count Number of hashes in @p hash.
657 * @return LY_ERR value.
658 */
659static LY_ERR
660lyb_read_hashes(struct lylyb_ctx *lybctx, LYB_HASH *hash, uint8_t *hash_count)
661{
662 uint8_t i = 0, j;
663
664 /* read the first hash */
665 lyb_read(&hash[0], sizeof *hash, lybctx);
666
667 if (!hash[0]) {
668 *hash_count = i + 1;
669 return LY_SUCCESS;
670 }
671
672 /* based on the first hash read all the other ones, if any */
673 for (i = 0; !(hash[0] & (LYB_HASH_COLLISION_ID >> i)); ++i) {
674 if (i > LYB_HASH_BITS) {
675 LOGINT_RET(lybctx->ctx);
676 }
677 }
678
679 /* move the first hash on its accurate position */
680 hash[i] = hash[0];
681
682 /* read the rest of hashes */
683 for (j = i; j; --j) {
684 lyb_read(&hash[j - 1], sizeof *hash, lybctx);
685
686 /* correct collision ID */
687 assert(hash[j - 1] & (LYB_HASH_COLLISION_ID >> (j - 1)));
688 /* preceded with zeros */
689 assert(!(hash[j - 1] & (LYB_HASH_MASK << (LYB_HASH_BITS - (j - 1)))));
690 }
691
692 *hash_count = i + 1;
693
694 return LY_SUCCESS;
695}
696
697/**
Michal Vasko60ea6352020-06-29 13:39:39 +0200698 * @brief Check whether a schema node matches a hash(es).
699 *
700 * @param[in] sibling Schema node to check.
701 * @param[in] hash Hash array to check.
702 * @param[in] hash_count Number of hashes in @p hash.
703 * @return non-zero if matches,
704 * @return 0 if not.
705 */
706static int
707lyb_is_schema_hash_match(struct lysc_node *sibling, LYB_HASH *hash, uint8_t hash_count)
708{
709 LYB_HASH sibling_hash;
710 uint8_t i;
711
712 /* compare all the hashes starting from collision ID 0 */
713 for (i = 0; i < hash_count; ++i) {
Michal Vasko11f76c82021-04-15 14:36:14 +0200714 sibling_hash = lyb_get_hash(sibling, i);
Michal Vasko60ea6352020-06-29 13:39:39 +0200715 if (sibling_hash != hash[i]) {
716 return 0;
717 }
718 }
719
720 return 1;
721}
722
723/**
Michal Vasko60ea6352020-06-29 13:39:39 +0200724 * @brief Parse schema node hash.
725 *
726 * @param[in] lybctx LYB context.
727 * @param[in] sparent Schema parent, must be set if @p mod is not.
728 * @param[in] mod Module of the top-level node, must be set if @p sparent is not.
729 * @param[out] snode Parsed found schema node, may be NULL if opaque.
730 * @return LY_ERR value.
731 */
732static LY_ERR
733lyb_parse_schema_hash(struct lyd_lyb_ctx *lybctx, const struct lysc_node *sparent, const struct lys_module *mod,
Radek Krejci0f969882020-08-21 16:56:47 +0200734 const struct lysc_node **snode)
Michal Vasko60ea6352020-06-29 13:39:39 +0200735{
736 LY_ERR ret;
Michal Vasko60ea6352020-06-29 13:39:39 +0200737 const struct lysc_node *sibling;
738 LYB_HASH hash[LYB_HASH_BITS - 1];
Radek Krejci1deb5be2020-08-26 16:43:36 +0200739 uint32_t getnext_opts;
aPiecek619350d2021-09-09 16:06:59 +0200740 uint8_t hash_count;
Michal Vasko60ea6352020-06-29 13:39:39 +0200741
aPiecek570d7ed2021-09-10 07:15:35 +0200742 *snode = NULL;
743
aPiecek619350d2021-09-09 16:06:59 +0200744 ret = lyb_read_hashes(lybctx->lybctx, hash, &hash_count);
745 LY_CHECK_RET(ret);
Michal Vasko60ea6352020-06-29 13:39:39 +0200746
747 if (!hash[0]) {
748 /* opaque node */
749 return LY_SUCCESS;
750 }
751
aPiecek619350d2021-09-09 16:06:59 +0200752 getnext_opts = lybctx->int_opts & LYD_INTOPT_REPLY ? LYS_GETNEXT_OUTPUT : 0;
Michal Vasko60ea6352020-06-29 13:39:39 +0200753
754 /* find our node with matching hashes */
755 sibling = NULL;
Radek Krejcif16e2542021-02-17 15:39:23 +0100756 while (1) {
757 if (!sparent && lybctx->ext) {
758 sibling = lys_getnext_ext(sibling, sparent, lybctx->ext, getnext_opts);
759 } else {
760 sibling = lys_getnext(sibling, sparent, mod ? mod->compiled : NULL, getnext_opts);
761 }
762 if (!sibling) {
763 break;
764 }
Michal Vasko60ea6352020-06-29 13:39:39 +0200765 /* skip schema nodes from models not present during printing */
Michal Vasko69730152020-10-09 16:30:07 +0200766 if (lyb_has_schema_model(sibling, lybctx->lybctx->models) &&
aPiecek619350d2021-09-09 16:06:59 +0200767 lyb_is_schema_hash_match((struct lysc_node *)sibling, hash, hash_count)) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200768 /* match found */
769 break;
770 }
771 }
772
Michal Vaskoe0665742021-02-11 11:08:44 +0100773 if (!sibling && (lybctx->parse_opts & LYD_PARSE_STRICT)) {
Radek Krejcif16e2542021-02-17 15:39:23 +0100774 if (lybctx->ext) {
775 LOGVAL(lybctx->lybctx->ctx, LYVE_REFERENCE, "Failed to find matching hash for a node from \"%s\" extension instance node.",
776 lybctx->ext->def->name);
777 } else if (mod) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100778 LOGVAL(lybctx->lybctx->ctx, LYVE_REFERENCE, "Failed to find matching hash for a top-level node"
Michal Vasko69730152020-10-09 16:30:07 +0200779 " from \"%s\".", mod->name);
Michal Vasko60ea6352020-06-29 13:39:39 +0200780 } else {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100781 LOGVAL(lybctx->lybctx->ctx, LYVE_REFERENCE, "Failed to find matching hash for a child node"
Michal Vasko69730152020-10-09 16:30:07 +0200782 " of \"%s\".", sparent->name);
Michal Vasko60ea6352020-06-29 13:39:39 +0200783 }
784 return LY_EVALID;
Radek Krejci1798aae2020-07-14 13:26:06 +0200785 } else if (sibling && (ret = lyd_parser_check_schema((struct lyd_ctx *)lybctx, sibling))) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200786 return ret;
787 }
788
789 *snode = sibling;
790 return LY_SUCCESS;
791}
792
793/**
aPiecek570d7ed2021-09-10 07:15:35 +0200794 * @brief Read until the end of the current siblings.
Michal Vasko60ea6352020-06-29 13:39:39 +0200795 *
796 * @param[in] lybctx LYB context.
797 */
798static void
aPiecek570d7ed2021-09-10 07:15:35 +0200799lyb_skip_siblings(struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200800{
Michal Vasko60ea6352020-06-29 13:39:39 +0200801 do {
802 /* first skip any meta information inside */
aPiecek570d7ed2021-09-10 07:15:35 +0200803 ly_in_skip(lybctx->in, LYB_LAST_SIBLING(lybctx).inner_chunks * LYB_META_BYTES);
Michal Vasko60ea6352020-06-29 13:39:39 +0200804
805 /* then read data */
aPiecek570d7ed2021-09-10 07:15:35 +0200806 lyb_read(NULL, LYB_LAST_SIBLING(lybctx).written, lybctx);
807 } while (LYB_LAST_SIBLING(lybctx).written);
Michal Vasko60ea6352020-06-29 13:39:39 +0200808}
809
810/**
Michal Vasko02ed9d82021-07-15 14:58:04 +0200811 * @brief Parse the context of anydata/anyxml node.
812 *
813 * @param[in] ctx libyang context.
814 * @param[in] data LYB data to parse.
815 * @param[out] tree Parsed tree.
816 * @return LY_ERR value.
817 */
818static LY_ERR
819lyb_parse_any_content(const struct ly_ctx *ctx, const char *data, struct lyd_node **tree)
820{
821 LY_ERR ret;
822 uint32_t prev_lo;
823 struct ly_in *in;
824 struct lyd_ctx *lydctx = NULL;
825
826 *tree = NULL;
827
828 LY_CHECK_RET(ly_in_new_memory(data, &in));
829
830 /* turn logging off */
831 prev_lo = ly_log_options(0);
832
Michal Vasko56d88602021-07-15 16:37:59 +0200833 ret = _lyd_parse_lyb(ctx, NULL, NULL, tree, in, LYD_PARSE_ONLY | LYD_PARSE_OPAQ | LYD_PARSE_STRICT, 0,
Michal Vasko02ed9d82021-07-15 14:58:04 +0200834 LYD_INTOPT_ANY | LYD_INTOPT_WITH_SIBLINGS, NULL, &lydctx);
835
836 /* turn logging on again */
837 ly_log_options(prev_lo);
838
839 ly_in_free(in, 0);
Michal Vasko1391e792021-08-23 12:15:44 +0200840 if (lydctx) {
841 lydctx->free(lydctx);
842 }
Michal Vasko02ed9d82021-07-15 14:58:04 +0200843 if (ret) {
844 lyd_free_siblings(*tree);
845 *tree = NULL;
846 }
847 return ret;
848}
849
850/**
aPiecek37c493b2021-09-09 12:52:30 +0200851 * @brief Insert new node to @p parsed set.
852 *
853 * Also if needed, correct @p first_p.
854 *
855 * @param[in] lybctx LYB context.
aPiecek570d7ed2021-09-10 07:15:35 +0200856 * @param[in] parent Data parent of the sibling, must be set if @p first_p is not.
aPiecek37c493b2021-09-09 12:52:30 +0200857 * @param[in,out] node Parsed node to insertion.
858 * @param[in,out] first_p First top-level sibling, must be set if @p parent is not.
859 * @param[out] parsed Set of all successfully parsed nodes.
860 * @return LY_ERR value.
861 */
862static void
863lyb_insert_node(struct lyd_lyb_ctx *lybctx, struct lyd_node *parent, struct lyd_node *node, struct lyd_node **first_p,
864 struct ly_set *parsed)
865{
866 /* insert, keep first pointer correct */
867 lyd_insert_node(parent, first_p, node, lybctx->parse_opts & LYD_PARSE_ORDERED ? 1 : 0);
868 while (!parent && (*first_p)->prev->next) {
869 *first_p = (*first_p)->prev;
870 }
871
872 /* rememeber a successfully parsed node */
873 if (parsed) {
874 ly_set_add(parsed, node, 1, NULL);
875 }
876}
877
878/**
879 * @brief Finish parsing the opaq node.
880 *
881 * @param[in] lybctx LYB context.
aPiecek570d7ed2021-09-10 07:15:35 +0200882 * @param[in] parent Data parent of the sibling, must be set if @p first_p is not.
aPiecek37c493b2021-09-09 12:52:30 +0200883 * @param[in] flags Node flags to set.
884 * @param[in,out] attr Attributes to be attached. Finally set to NULL.
885 * @param[in,out] node Parsed opaq node to finish.
886 * @param[in,out] first_p First top-level sibling, must be set if @p parent is not.
887 * @param[out] parsed Set of all successfully parsed nodes.
888 * @return LY_ERR value.
889 */
890static void
891lyb_finish_opaq(struct lyd_lyb_ctx *lybctx, struct lyd_node *parent, uint32_t flags, struct lyd_attr **attr,
892 struct lyd_node **node, struct lyd_node **first_p, struct ly_set *parsed)
893{
894 struct lyd_attr *iter;
895
896 /* set flags */
897 (*node)->flags = flags;
898
899 /* add attributes */
900 assert(!(*node)->schema);
901 LY_LIST_FOR(*attr, iter) {
902 iter->parent = (struct lyd_node_opaq *)*node;
903 }
904 ((struct lyd_node_opaq *)*node)->attr = *attr;
905 *attr = NULL;
906
907 lyb_insert_node(lybctx, parent, *node, first_p, parsed);
908 *node = NULL;
909}
910
911/**
912 * @brief Finish parsing the node.
913 *
914 * @param[in] lybctx LYB context.
aPiecek570d7ed2021-09-10 07:15:35 +0200915 * @param[in] parent Data parent of the sibling, must be set if @p first_p is not.
aPiecek37c493b2021-09-09 12:52:30 +0200916 * @param[in] flags Node flags to set.
917 * @param[in,out] meta Metadata to be attached. Finally set to NULL.
918 * @param[in,out] node Parsed node to finish.
919 * @param[in,out] first_p First top-level sibling, must be set if @p parent is not.
920 * @param[out] parsed Set of all successfully parsed nodes.
921 * @return LY_ERR value.
922 */
923static void
924lyb_finish_node(struct lyd_lyb_ctx *lybctx, struct lyd_node *parent, uint32_t flags, struct lyd_meta **meta,
925 struct lyd_node **node, struct lyd_node **first_p, struct ly_set *parsed)
926{
927 struct lyd_meta *m;
928
929 /* set flags */
930 (*node)->flags = flags;
931
932 /* add metadata */
933 LY_LIST_FOR(*meta, m) {
934 m->parent = *node;
935 }
936 (*node)->meta = *meta;
937 *meta = NULL;
938
939 lyb_insert_node(lybctx, parent, *node, first_p, parsed);
940 *node = NULL;
941}
942
943/**
aPiecek6fdac2f2021-09-10 11:21:10 +0200944 * @brief Parse header for non-opaq node.
945 *
946 * @param[in] lybctx LYB context.
947 * @param[out] flags Parsed node flags.
948 * @param[out] meta Parsed metadata of the node.
949 * @return LY_ERR value.
950 */
951static LY_ERR
952lyb_parse_node_header(struct lyd_lyb_ctx *lybctx, uint32_t *flags, struct lyd_meta **meta)
953{
954 LY_ERR ret;
955
956 /* create and read metadata */
957 ret = lyb_parse_metadata(lybctx, meta);
958 LY_CHECK_RET(ret);
959
960 /* read flags */
961 lyb_read_number(flags, sizeof *flags, sizeof *flags, lybctx->lybctx);
962
963 return ret;
964}
965
966/**
aPiecek33fc6b02021-09-09 15:45:37 +0200967 * @brief Create term node and fill it with value.
968 *
969 * @param[in] lybctx LYB context.
970 * @param[in] snode Schema of the term node.
971 * @param[out] node Created term node.
972 * @return LY_ERR value.
973 */
974static LY_ERR
975lyb_create_term(struct lyd_lyb_ctx *lybctx, const struct lysc_node *snode, struct lyd_node **node)
976{
977 LY_ERR ret;
978 ly_bool dynamic;
979 uint8_t *term_value;
980 uint32_t term_value_len;
981
982 ret = lyb_read_term_value((struct lysc_node_leaf *)snode, &term_value, &term_value_len, lybctx->lybctx);
983 LY_CHECK_RET(ret);
984
985 dynamic = 1;
986 /* create node */
987 ret = lyd_parser_create_term((struct lyd_ctx *)lybctx, snode,
988 term_value, term_value_len, &dynamic, LY_VALUE_LYB,
989 NULL, LYD_HINT_DATA, node);
990 if (dynamic) {
991 free(term_value);
992 }
993 if (ret) {
994 lyd_free_tree(*node);
995 *node = NULL;
996 }
997
998 return ret;
999}
1000
1001/**
aPiecek0e2e1052021-09-09 15:48:27 +02001002 * @brief Validate inner node, autodelete default values nad create implicit nodes.
1003 *
1004 * @param[in,out] lybctx LYB context.
1005 * @param[in] snode Schema of the inner node.
1006 * @param[in] node Parsed inner node.
1007 * @return LY_ERR value.
1008 */
1009static LY_ERR
1010lyb_validate_node_inner(struct lyd_lyb_ctx *lybctx, const struct lysc_node *snode, struct lyd_node *node)
1011{
1012 LY_ERR ret = LY_SUCCESS;
1013 uint32_t impl_opts;
1014
1015 if (!(lybctx->parse_opts & LYD_PARSE_ONLY)) {
1016 /* new node validation, autodelete CANNOT occur, all nodes are new */
1017 ret = lyd_validate_new(lyd_node_child_p(node), snode, NULL, NULL);
1018 LY_CHECK_RET(ret);
1019
1020 /* add any missing default children */
1021 impl_opts = (lybctx->val_opts & LYD_VALIDATE_NO_STATE) ? LYD_IMPLICIT_NO_STATE : 0;
1022 ret = lyd_new_implicit_r(node, lyd_node_child_p(node), NULL,
1023 NULL, &lybctx->node_when, &lybctx->node_exts,
1024 &lybctx->node_types, impl_opts, NULL);
1025 LY_CHECK_RET(ret);
1026 }
1027
1028 return ret;
1029}
1030
1031/**
aPiecek821cf732021-09-09 15:37:28 +02001032 * @brief Parse opaq node.
1033 *
1034 * @param[in] lybctx LYB context.
aPiecek570d7ed2021-09-10 07:15:35 +02001035 * @param[in] parent Data parent of the sibling.
aPiecek821cf732021-09-09 15:37:28 +02001036 * @param[in,out] first_p First top-level sibling.
1037 * @param[out] parsed Set of all successfully parsed nodes.
1038 * @return LY_ERR value.
1039 */
1040static LY_ERR
1041lyb_parse_node_opaq(struct lyd_lyb_ctx *lybctx, struct lyd_node *parent, struct lyd_node **first_p, struct ly_set *parsed)
1042{
1043 LY_ERR ret;
1044 struct lyd_node *node = NULL;
1045 struct lyd_attr *attr = NULL;
1046 char *value = NULL, *name = NULL, *prefix = NULL, *module_key = NULL;
1047 ly_bool dynamic = 0;
1048 LY_VALUE_FORMAT format = 0;
1049 void *val_prefix_data = NULL;
1050 const struct ly_ctx *ctx = lybctx->lybctx->ctx;
1051 uint32_t flags;
aPiecek6828a312021-09-17 15:53:18 +02001052 uint8_t zero[LYB_SIZE_BYTES] = {0};
aPiecek821cf732021-09-09 15:37:28 +02001053
aPiecek821cf732021-09-09 15:37:28 +02001054 /* parse opaq node attributes */
1055 ret = lyb_parse_attributes(lybctx->lybctx, &attr);
1056 LY_CHECK_GOTO(ret, cleanup);
1057
1058 /* read flags */
1059 lyb_read_number(&flags, sizeof flags, sizeof flags, lybctx->lybctx);
1060
1061 /* parse prefix */
1062 ret = lyb_read_string(&prefix, 1, lybctx->lybctx);
1063 LY_CHECK_GOTO(ret, cleanup);
1064
1065 /* parse module key */
1066 ret = lyb_read_string(&module_key, 1, lybctx->lybctx);
1067 LY_CHECK_GOTO(ret, cleanup);
1068
1069 /* parse name */
1070 ret = lyb_read_string(&name, 1, lybctx->lybctx);
1071 LY_CHECK_GOTO(ret, cleanup);
1072
1073 /* parse value */
1074 ret = lyb_read_string(&value, 1, lybctx->lybctx);
1075 LY_CHECK_ERR_GOTO(ret, ly_free_prefix_data(format, val_prefix_data), cleanup);
1076 dynamic = 1;
1077
1078 /* parse format */
1079 lyb_read_number(&format, sizeof format, 1, lybctx->lybctx);
1080
1081 /* parse value prefixes */
1082 ret = lyb_parse_prefix_data(lybctx->lybctx, format, &val_prefix_data);
1083 LY_CHECK_GOTO(ret, cleanup);
1084
aPiecek570d7ed2021-09-10 07:15:35 +02001085 if (!(lybctx->parse_opts & LYD_PARSE_OPAQ)) {
aPiecek6828a312021-09-17 15:53:18 +02001086 if (memcmp(zero, lybctx->lybctx->in->current, LYB_SIZE_BYTES)) {
aPiecek570d7ed2021-09-10 07:15:35 +02001087 /* skip children */
1088 ret = lyb_read_start_siblings(lybctx->lybctx);
1089 LY_CHECK_RET(ret);
1090 lyb_skip_siblings(lybctx->lybctx);
1091 ret = lyb_read_stop_siblings(lybctx->lybctx);
1092 LY_CHECK_RET(ret);
aPiecek6828a312021-09-17 15:53:18 +02001093 } else {
1094 /* opaq node has no children */
1095 lyb_read(NULL, LYB_SIZE_BYTES, lybctx->lybctx);
aPiecek570d7ed2021-09-10 07:15:35 +02001096 }
1097
1098 goto cleanup;
1099 }
1100
aPiecek821cf732021-09-09 15:37:28 +02001101 /* create node */
1102 ret = lyd_create_opaq(ctx, name, strlen(name), prefix, ly_strlen(prefix), module_key, ly_strlen(module_key),
1103 value, strlen(value), &dynamic, format, val_prefix_data, 0, &node);
1104 LY_CHECK_GOTO(ret, cleanup);
1105
1106 /* process children */
aPiecek570d7ed2021-09-10 07:15:35 +02001107 ret = lyb_parse_siblings(lybctx, node, NULL, NULL);
1108 LY_CHECK_GOTO(ret, cleanup);
aPiecek821cf732021-09-09 15:37:28 +02001109
1110 /* register parsed opaq node */
1111 lyb_finish_opaq(lybctx, parent, flags, &attr, &node, first_p, parsed);
1112 assert(!attr && !node);
1113
1114cleanup:
1115 free(prefix);
1116 free(module_key);
1117 free(name);
1118 if (dynamic) {
1119 free(value);
1120 }
1121 lyd_free_attr_siblings(ctx, attr);
1122 lyd_free_tree(node);
1123
1124 return ret;
1125}
1126
aPiecek18457d72021-09-09 15:52:20 +02001127/**
1128 * @brief Parse anydata or anyxml node.
1129 *
1130 * @param[in] lybctx LYB context.
aPiecek570d7ed2021-09-10 07:15:35 +02001131 * @param[in] parent Data parent of the sibling.
aPiecek18457d72021-09-09 15:52:20 +02001132 * @param[in] snode Schema of the node to be parsed.
1133 * @param[in,out] first_p First top-level sibling.
1134 * @param[out] parsed Set of all successfully parsed nodes.
1135 * @return LY_ERR value.
1136 */
1137static LY_ERR
1138lyb_parse_node_any(struct lyd_lyb_ctx *lybctx, struct lyd_node *parent, const struct lysc_node *snode,
1139 struct lyd_node **first_p, struct ly_set *parsed)
1140{
1141 LY_ERR ret;
1142 struct lyd_node *node = NULL, *tree;
1143 struct lyd_meta *meta = NULL;
1144 LYD_ANYDATA_VALUETYPE value_type;
1145 char *value = NULL;
1146 const char *val_dict;
1147 uint32_t flags;
1148 const struct ly_ctx *ctx = lybctx->lybctx->ctx;
1149
1150 /* read necessary basic data */
Michal Vaskoedd4f252021-09-23 08:37:40 +02001151 ret = lyb_parse_node_header(lybctx, &flags, &meta);
1152 LY_CHECK_GOTO(ret, error);
aPiecek18457d72021-09-09 15:52:20 +02001153
1154 /* parse value type */
1155 lyb_read_number(&value_type, sizeof value_type, sizeof value_type, lybctx->lybctx);
1156 if (value_type == LYD_ANYDATA_DATATREE) {
1157 /* invalid situation */
1158 LOGINT(ctx);
1159 ret = LY_EINT;
1160 goto error;
1161 }
1162
1163 /* read anydata content */
aPiecek570d7ed2021-09-10 07:15:35 +02001164 ret = lyb_read_string(&value, 1, lybctx->lybctx);
aPiecek18457d72021-09-09 15:52:20 +02001165 LY_CHECK_GOTO(ret, error);
1166
1167 if (value_type == LYD_ANYDATA_LYB) {
1168 /* try to parse LYB into a data tree */
1169 if (!lyb_parse_any_content(ctx, value, &tree)) {
1170 /* successfully parsed */
1171 free(value);
1172 value = (char *)tree;
1173 value_type = LYD_ANYDATA_DATATREE;
1174 }
1175 }
1176
1177 /* create the node */
1178 switch (value_type) {
1179 case LYD_ANYDATA_LYB:
1180 case LYD_ANYDATA_DATATREE:
1181 /* use the value directly */
1182 ret = lyd_create_any(snode, value, value_type, 1, &node);
1183 LY_CHECK_GOTO(ret, error);
1184
1185 break;
1186 case LYD_ANYDATA_STRING:
1187 case LYD_ANYDATA_XML:
1188 case LYD_ANYDATA_JSON:
1189 /* value is expected to be in the dictionary */
1190 ret = lydict_insert_zc(ctx, value, &val_dict);
1191 LY_CHECK_GOTO(ret, error);
1192
1193 /* use the value in the dictionary */
1194 ret = lyd_create_any(snode, val_dict, value_type, 1, &node);
1195 if (ret) {
1196 lydict_remove(ctx, val_dict);
1197 goto error;
1198 }
1199 break;
1200 default:
1201 LOGINT(ctx);
1202 ret = LY_EINT;
1203 goto error;
1204 }
1205
1206 /* register parsed anydata node */
1207 lyb_finish_node(lybctx, parent, flags, &meta, &node, first_p, parsed);
1208
1209 return LY_SUCCESS;
1210
1211error:
1212 free(value);
1213 lyd_free_meta_siblings(meta);
1214 lyd_free_tree(node);
1215 return ret;
1216}
aPiecek821cf732021-09-09 15:37:28 +02001217
1218/**
aPiecek5777f122021-09-10 10:26:23 +02001219 * @brief Parse inner node.
aPiecek37c493b2021-09-09 12:52:30 +02001220 *
1221 * @param[in] lybctx LYB context.
aPiecek570d7ed2021-09-10 07:15:35 +02001222 * @param[in] parent Data parent of the sibling, must be set if @p first is not.
1223 * @param[in] snode Schema of the node to be parsed.
aPiecekfc7cf7e2021-09-09 11:20:27 +02001224 * @param[in,out] first_p First top-level sibling, must be set if @p parent is not.
1225 * @param[out] parsed Set of all successfully parsed nodes.
Michal Vasko60ea6352020-06-29 13:39:39 +02001226 * @return LY_ERR value.
1227 */
1228static LY_ERR
aPiecek5777f122021-09-10 10:26:23 +02001229lyb_parse_node_inner(struct lyd_lyb_ctx *lybctx, struct lyd_node *parent, const struct lysc_node *snode,
aPiecek570d7ed2021-09-10 07:15:35 +02001230 struct lyd_node **first_p, struct ly_set *parsed)
Michal Vasko60ea6352020-06-29 13:39:39 +02001231{
1232 LY_ERR ret = LY_SUCCESS;
aPiecek18457d72021-09-09 15:52:20 +02001233 struct lyd_node *node = NULL;
aPiecek37c493b2021-09-09 12:52:30 +02001234 struct lyd_meta *meta = NULL;
aPiecek33fc6b02021-09-09 15:45:37 +02001235 uint32_t flags;
Michal Vasko60ea6352020-06-29 13:39:39 +02001236
aPiecek307f0772021-09-10 09:09:47 +02001237 /* read necessary basic data */
1238 ret = lyb_parse_node_header(lybctx, &flags, &meta);
1239 LY_CHECK_GOTO(ret, error);
aPiecek37c493b2021-09-09 12:52:30 +02001240
aPiecek5777f122021-09-10 10:26:23 +02001241 /* create node */
1242 ret = lyd_create_inner(snode, &node);
1243 LY_CHECK_GOTO(ret, error);
Michal Vasko60ea6352020-06-29 13:39:39 +02001244
aPiecek5777f122021-09-10 10:26:23 +02001245 /* process children */
1246 ret = lyb_parse_siblings(lybctx, node, NULL, NULL);
1247 LY_CHECK_GOTO(ret, error);
Michal Vasko60ea6352020-06-29 13:39:39 +02001248
aPiecek5777f122021-09-10 10:26:23 +02001249 /* additional procedure for inner node */
1250 ret = lyb_validate_node_inner(lybctx, snode, node);
1251 LY_CHECK_GOTO(ret, error);
Michal Vasko60ea6352020-06-29 13:39:39 +02001252
aPiecek5777f122021-09-10 10:26:23 +02001253 if (snode->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) {
1254 /* rememeber the RPC/action/notification */
1255 lybctx->op_node = node;
Michal Vasko60ea6352020-06-29 13:39:39 +02001256 }
1257
aPiecek307f0772021-09-10 09:09:47 +02001258 /* register parsed node */
1259 lyb_finish_node(lybctx, parent, flags, &meta, &node, first_p, parsed);
1260
1261 return LY_SUCCESS;
1262
1263error:
Michal Vasko3a41dff2020-07-15 14:30:28 +02001264 lyd_free_meta_siblings(meta);
Michal Vasko60ea6352020-06-29 13:39:39 +02001265 lyd_free_tree(node);
1266 return ret;
1267}
1268
1269/**
aPiecek8a555d72021-09-10 10:15:26 +02001270 * @brief Parse leaf node.
1271 *
1272 * @param[in] lybctx LYB context.
1273 * @param[in] parent Data parent of the sibling.
1274 * @param[in] snode Schema of the node to be parsed.
1275 * @param[in,out] first_p First top-level sibling.
1276 * @param[out] parsed Set of all successfully parsed nodes.
1277 * @return LY_ERR value.
1278 */
1279static LY_ERR
1280lyb_parse_node_leaf(struct lyd_lyb_ctx *lybctx, struct lyd_node *parent, const struct lysc_node *snode,
1281 struct lyd_node **first_p, struct ly_set *parsed)
1282{
1283 LY_ERR ret;
1284 struct lyd_node *node = NULL;
1285 struct lyd_meta *meta = NULL;
1286 uint32_t flags;
1287
1288 /* read necessary basic data */
1289 ret = lyb_parse_node_header(lybctx, &flags, &meta);
1290 LY_CHECK_GOTO(ret, error);
1291
1292 /* read value of term node and create it */
1293 ret = lyb_create_term(lybctx, snode, &node);
1294 LY_CHECK_GOTO(ret, error);
1295
1296 lyb_finish_node(lybctx, parent, flags, &meta, &node, first_p, parsed);
1297
1298 return LY_SUCCESS;
1299
1300error:
1301 lyd_free_meta_siblings(meta);
1302 lyd_free_tree(node);
1303 return ret;
1304}
1305
1306/**
aPiecek5777f122021-09-10 10:26:23 +02001307 * @brief Parse all leaflist nodes which belong to same schema.
1308 *
1309 * @param[in] lybctx LYB context.
1310 * @param[in] parent Data parent of the sibling.
1311 * @param[in] snode Schema of the nodes to be parsed.
1312 * @param[in,out] first_p First top-level sibling.
1313 * @param[out] parsed Set of all successfully parsed nodes.
1314 * @return LY_ERR value.
1315 */
1316static LY_ERR
1317lyb_parse_node_leaflist(struct lyd_lyb_ctx *lybctx, struct lyd_node *parent, const struct lysc_node *snode,
1318 struct lyd_node **first_p, struct ly_set *parsed)
1319{
1320 LY_ERR ret;
1321
1322 /* register a new sibling */
1323 ret = lyb_read_start_siblings(lybctx->lybctx);
1324 LY_CHECK_RET(ret);
1325
1326 /* process all siblings */
1327 while (LYB_LAST_SIBLING(lybctx->lybctx).written) {
1328 ret = lyb_parse_node_leaf(lybctx, parent, snode, first_p, parsed);
1329 LY_CHECK_RET(ret);
1330 }
1331
1332 /* end the sibling */
1333 ret = lyb_read_stop_siblings(lybctx->lybctx);
1334 LY_CHECK_RET(ret);
1335
1336 return ret;
1337}
1338
1339/**
aPiecek77d3e962021-09-10 10:33:59 +02001340 * @brief Parse all list nodes which belong to same schema.
1341 *
1342 * @param[in] lybctx LYB context.
1343 * @param[in] parent Data parent of the sibling.
1344 * @param[in] snode Schema of the nodes to be parsed.
1345 * @param[in,out] first_p First top-level sibling.
1346 * @param[out] parsed Set of all successfully parsed nodes.
1347 * @return LY_ERR value.
1348 */
1349static LY_ERR
1350lyb_parse_node_list(struct lyd_lyb_ctx *lybctx, struct lyd_node *parent, const struct lysc_node *snode,
1351 struct lyd_node **first_p, struct ly_set *parsed)
1352{
1353 LY_ERR ret;
1354 struct lyd_node *node = NULL;
1355 struct lyd_meta *meta = NULL;
1356 uint32_t flags;
1357
1358 /* register a new sibling */
1359 ret = lyb_read_start_siblings(lybctx->lybctx);
1360 LY_CHECK_RET(ret);
1361
1362 while (LYB_LAST_SIBLING(lybctx->lybctx).written) {
1363 /* read necessary basic data */
Michal Vaskoedd4f252021-09-23 08:37:40 +02001364 ret = lyb_parse_node_header(lybctx, &flags, &meta);
1365 LY_CHECK_GOTO(ret, error);
aPiecek77d3e962021-09-10 10:33:59 +02001366
1367 /* create list node */
1368 ret = lyd_create_inner(snode, &node);
1369 LY_CHECK_GOTO(ret, error);
1370
1371 /* process children */
1372 ret = lyb_parse_siblings(lybctx, node, NULL, NULL);
1373 LY_CHECK_GOTO(ret, error);
1374
1375 /* additional procedure for inner node */
1376 ret = lyb_validate_node_inner(lybctx, snode, node);
1377 LY_CHECK_GOTO(ret, error);
1378
1379 if (snode->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) {
1380 /* rememeber the RPC/action/notification */
1381 lybctx->op_node = node;
1382 }
1383
1384 /* register parsed list node */
1385 lyb_finish_node(lybctx, parent, flags, &meta, &node, first_p, parsed);
1386 }
1387
1388 /* end the sibling */
1389 ret = lyb_read_stop_siblings(lybctx->lybctx);
1390 LY_CHECK_RET(ret);
1391
1392 return LY_SUCCESS;
1393
1394error:
1395 lyd_free_meta_siblings(meta);
1396 lyd_free_tree(node);
1397 return ret;
1398}
1399
1400/**
aPiecek17737b52021-09-21 12:29:52 +02001401 * @brief Parse node.
1402 *
1403 * @param[in] out Out structure.
1404 * @param[in,out] printed_node Current data node to print. Sets to the last printed node.
1405 * @param[in,out] sibling_ht Cached hash table for these siblings, created if NULL.
1406 * @param[in] lybctx LYB context.
1407 * @return LY_ERR value.
1408 */
1409static LY_ERR
1410lyb_parse_node(struct lyd_lyb_ctx *lybctx, struct lyd_node *parent, struct lyd_node **first_p,
1411 struct ly_set *parsed)
1412{
1413 LY_ERR ret;
1414 const struct lysc_node *snode;
1415 const struct lys_module *mod;
1416
1417 if (!parent || !parent->schema) {
1418 /* top-level or opaque, read module name */
1419 ret = lyb_parse_model(lybctx->lybctx, lybctx->parse_opts, &mod);
1420 LY_CHECK_RET(ret);
1421
1422 /* read hash, find the schema node starting from mod */
1423 ret = lyb_parse_schema_hash(lybctx, NULL, mod, &snode);
1424 } else {
1425 /* read hash, find the schema node starting from parent schema */
1426 ret = lyb_parse_schema_hash(lybctx, parent->schema, NULL, &snode);
1427 }
1428 LY_CHECK_RET(ret);
1429
1430 if (!snode) {
1431 ret = lyb_parse_node_opaq(lybctx, parent, first_p, parsed);
1432 } else if (snode->nodetype & LYS_LEAFLIST) {
1433 ret = lyb_parse_node_leaflist(lybctx, parent, snode, first_p, parsed);
1434 } else if (snode->nodetype == LYS_LIST) {
1435 ret = lyb_parse_node_list(lybctx, parent, snode, first_p, parsed);
1436 } else if (snode->nodetype & LYD_NODE_ANY) {
1437 ret = lyb_parse_node_any(lybctx, parent, snode, first_p, parsed);
1438 } else if (snode->nodetype & LYD_NODE_INNER) {
1439 ret = lyb_parse_node_inner(lybctx, parent, snode, first_p, parsed);
1440 } else {
1441 ret = lyb_parse_node_leaf(lybctx, parent, snode, first_p, parsed);
1442 }
1443 LY_CHECK_RET(ret);
1444
1445 return ret;
1446}
1447
1448/**
aPiecek570d7ed2021-09-10 07:15:35 +02001449 * @brief Parse siblings (@ref lyb_print_siblings()).
1450 *
1451 * @param[in] lybctx LYB context.
1452 * @param[in] parent Data parent of the sibling, must be set if @p first_p is not.
1453 * @param[in,out] first_p First top-level sibling, must be set if @p parent is not.
1454 * @param[out] parsed Set of all successfully parsed nodes.
1455 * @return LY_ERR value.
1456 */
1457static LY_ERR
1458lyb_parse_siblings(struct lyd_lyb_ctx *lybctx, struct lyd_node *parent, struct lyd_node **first_p,
1459 struct ly_set *parsed)
1460{
1461 LY_ERR ret;
aPiecek570d7ed2021-09-10 07:15:35 +02001462 ly_bool top_level;
aPiecek6828a312021-09-17 15:53:18 +02001463 uint8_t zero[LYB_SIZE_BYTES] = {0};
aPiecek570d7ed2021-09-10 07:15:35 +02001464
aPiecek6828a312021-09-17 15:53:18 +02001465 if (!memcmp(zero, lybctx->lybctx->in->current, LYB_SIZE_BYTES)) {
1466 lyb_read(NULL, LYB_SIZE_BYTES, lybctx->lybctx);
aPiecek570d7ed2021-09-10 07:15:35 +02001467 return LY_SUCCESS;
1468 }
1469
1470 top_level = !LY_ARRAY_COUNT(lybctx->lybctx->siblings);
1471
1472 /* register a new siblings */
1473 ret = lyb_read_start_siblings(lybctx->lybctx);
1474 LY_CHECK_RET(ret);
1475
1476 while (LYB_LAST_SIBLING(lybctx->lybctx).written) {
aPiecek17737b52021-09-21 12:29:52 +02001477 ret = lyb_parse_node(lybctx, parent, first_p, parsed);
aPiecek570d7ed2021-09-10 07:15:35 +02001478 LY_CHECK_RET(ret);
1479
1480 if (top_level && !(lybctx->int_opts & LYD_INTOPT_WITH_SIBLINGS)) {
1481 break;
1482 }
1483 }
1484
1485 /* end the siblings */
1486 ret = lyb_read_stop_siblings(lybctx->lybctx);
1487 LY_CHECK_RET(ret);
1488
1489 return ret;
1490}
1491
1492/**
Michal Vasko60ea6352020-06-29 13:39:39 +02001493 * @brief Parse used YANG data models.
1494 *
1495 * @param[in] lybctx LYB context.
aPiecekfc7cf7e2021-09-09 11:20:27 +02001496 * @param[in] parse_options Flag with options for parsing.
Michal Vasko60ea6352020-06-29 13:39:39 +02001497 * @return LY_ERR value.
1498 */
1499static LY_ERR
Radek Krejci1798aae2020-07-14 13:26:06 +02001500lyb_parse_data_models(struct lylyb_ctx *lybctx, uint32_t parse_options)
Michal Vasko60ea6352020-06-29 13:39:39 +02001501{
1502 LY_ERR ret;
1503 uint32_t count;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001504 LY_ARRAY_COUNT_TYPE u;
Michal Vasko60ea6352020-06-29 13:39:39 +02001505
1506 /* read model count */
1507 lyb_read_number(&count, sizeof count, 2, lybctx);
1508
1509 if (count) {
1510 LY_ARRAY_CREATE_RET(lybctx->ctx, lybctx->models, count, LY_EMEM);
1511
1512 /* read modules */
1513 for (u = 0; u < count; ++u) {
Radek Krejci1798aae2020-07-14 13:26:06 +02001514 ret = lyb_parse_model(lybctx, parse_options, &lybctx->models[u]);
Michal Vasko60ea6352020-06-29 13:39:39 +02001515 LY_CHECK_RET(ret);
1516 LY_ARRAY_INCREMENT(lybctx->models);
1517 }
1518 }
1519
1520 return LY_SUCCESS;
1521}
1522
1523/**
1524 * @brief Parse LYB magic number.
1525 *
1526 * @param[in] lybctx LYB context.
1527 * @return LY_ERR value.
1528 */
1529static LY_ERR
Radek Krejci1798aae2020-07-14 13:26:06 +02001530lyb_parse_magic_number(struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +02001531{
1532 char magic_byte = 0;
1533
1534 lyb_read((uint8_t *)&magic_byte, 1, lybctx);
1535 if (magic_byte != 'l') {
1536 LOGERR(lybctx->ctx, LY_EINVAL, "Invalid first magic number byte \"0x%02x\".", magic_byte);
1537 return LY_EINVAL;
1538 }
1539
1540 lyb_read((uint8_t *)&magic_byte, 1, lybctx);
1541 if (magic_byte != 'y') {
1542 LOGERR(lybctx->ctx, LY_EINVAL, "Invalid second magic number byte \"0x%02x\".", magic_byte);
1543 return LY_EINVAL;
1544 }
1545
1546 lyb_read((uint8_t *)&magic_byte, 1, lybctx);
1547 if (magic_byte != 'b') {
1548 LOGERR(lybctx->ctx, LY_EINVAL, "Invalid third magic number byte \"0x%02x\".", magic_byte);
1549 return LY_EINVAL;
1550 }
1551
1552 return LY_SUCCESS;
1553}
1554
1555/**
1556 * @brief Parse LYB header.
1557 *
1558 * @param[in] lybctx LYB context.
1559 * @return LY_ERR value.
1560 */
1561static LY_ERR
Radek Krejci1798aae2020-07-14 13:26:06 +02001562lyb_parse_header(struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +02001563{
1564 uint8_t byte = 0;
1565
1566 /* version, future flags */
1567 lyb_read((uint8_t *)&byte, sizeof byte, lybctx);
1568
1569 if ((byte & LYB_VERSION_MASK) != LYB_VERSION_NUM) {
1570 LOGERR(lybctx->ctx, LY_EINVAL, "Invalid LYB format version \"0x%02x\", expected \"0x%02x\".",
Michal Vasko69730152020-10-09 16:30:07 +02001571 byte & LYB_VERSION_MASK, LYB_VERSION_NUM);
Michal Vasko60ea6352020-06-29 13:39:39 +02001572 return LY_EINVAL;
1573 }
1574
1575 return LY_SUCCESS;
1576}
1577
Michal Vasko02ed9d82021-07-15 14:58:04 +02001578static LY_ERR
1579_lyd_parse_lyb(const struct ly_ctx *ctx, const struct lysc_ext_instance *ext, struct lyd_node *parent,
1580 struct lyd_node **first_p, struct ly_in *in, uint32_t parse_opts, uint32_t val_opts, uint32_t int_opts,
Radek Krejcif16e2542021-02-17 15:39:23 +01001581 struct ly_set *parsed, struct lyd_ctx **lydctx_p)
Michal Vasko60ea6352020-06-29 13:39:39 +02001582{
Michal Vaskoe0665742021-02-11 11:08:44 +01001583 LY_ERR rc = LY_SUCCESS;
Radek Krejci1798aae2020-07-14 13:26:06 +02001584 struct lyd_lyb_ctx *lybctx;
Michal Vasko60ea6352020-06-29 13:39:39 +02001585
Michal Vaskoe0665742021-02-11 11:08:44 +01001586 assert(!(parse_opts & ~LYD_PARSE_OPTS_MASK));
1587 assert(!(val_opts & ~LYD_VALIDATE_OPTS_MASK));
Radek Krejci7931b192020-06-25 17:05:03 +02001588
Radek Krejci1798aae2020-07-14 13:26:06 +02001589 lybctx = calloc(1, sizeof *lybctx);
1590 LY_CHECK_ERR_RET(!lybctx, LOGMEM(ctx), LY_EMEM);
1591 lybctx->lybctx = calloc(1, sizeof *lybctx->lybctx);
Michal Vaskoe0665742021-02-11 11:08:44 +01001592 LY_CHECK_ERR_GOTO(!lybctx->lybctx, LOGMEM(ctx); rc = LY_EMEM, cleanup);
Michal Vasko60ea6352020-06-29 13:39:39 +02001593
Radek Krejci1798aae2020-07-14 13:26:06 +02001594 lybctx->lybctx->in = in;
1595 lybctx->lybctx->ctx = ctx;
Michal Vaskoe0665742021-02-11 11:08:44 +01001596 lybctx->parse_opts = parse_opts;
1597 lybctx->val_opts = val_opts;
Michal Vaskoe0665742021-02-11 11:08:44 +01001598 lybctx->int_opts = int_opts;
Michal Vasko02ed9d82021-07-15 14:58:04 +02001599 lybctx->free = lyd_lyb_ctx_free;
Radek Krejcif16e2542021-02-17 15:39:23 +01001600 lybctx->ext = ext;
Michal Vaskoe0665742021-02-11 11:08:44 +01001601
1602 /* find the operation node if it exists already */
1603 LY_CHECK_GOTO(rc = lyd_parser_find_operation(parent, int_opts, &lybctx->op_node), cleanup);
1604
Michal Vasko60ea6352020-06-29 13:39:39 +02001605 /* read magic number */
Michal Vaskoe0665742021-02-11 11:08:44 +01001606 rc = lyb_parse_magic_number(lybctx->lybctx);
1607 LY_CHECK_GOTO(rc, cleanup);
Michal Vasko60ea6352020-06-29 13:39:39 +02001608
1609 /* read header */
Michal Vaskoe0665742021-02-11 11:08:44 +01001610 rc = lyb_parse_header(lybctx->lybctx);
1611 LY_CHECK_GOTO(rc, cleanup);
Michal Vasko60ea6352020-06-29 13:39:39 +02001612
1613 /* read used models */
Michal Vaskoe0665742021-02-11 11:08:44 +01001614 rc = lyb_parse_data_models(lybctx->lybctx, lybctx->parse_opts);
1615 LY_CHECK_GOTO(rc, cleanup);
Michal Vasko60ea6352020-06-29 13:39:39 +02001616
aPiecek570d7ed2021-09-10 07:15:35 +02001617 /* read sibling(s) */
1618 rc = lyb_parse_siblings(lybctx, parent, first_p, parsed);
1619 LY_CHECK_GOTO(rc, cleanup);
Michal Vaskoe0665742021-02-11 11:08:44 +01001620
1621 if ((int_opts & LYD_INTOPT_NO_SIBLINGS) && lybctx->lybctx->in->current[0]) {
1622 LOGVAL(ctx, LYVE_SYNTAX, "Unexpected sibling node.");
1623 rc = LY_EVALID;
1624 goto cleanup;
1625 }
1626 if ((int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_ACTION | LYD_INTOPT_NOTIF | LYD_INTOPT_REPLY)) && !lybctx->op_node) {
1627 LOGVAL(ctx, LYVE_DATA, "Missing the operation node.");
1628 rc = LY_EVALID;
1629 goto cleanup;
Michal Vasko60ea6352020-06-29 13:39:39 +02001630 }
1631
1632 /* read the last zero, parsing finished */
Radek Krejci1798aae2020-07-14 13:26:06 +02001633 ly_in_skip(lybctx->lybctx->in, 1);
Michal Vasko60ea6352020-06-29 13:39:39 +02001634
Michal Vasko60ea6352020-06-29 13:39:39 +02001635cleanup:
Michal Vaskoe0665742021-02-11 11:08:44 +01001636 /* there should be no unres stored if validation should be skipped */
1637 assert(!(parse_opts & LYD_PARSE_ONLY) || (!lybctx->node_types.count && !lybctx->meta_types.count &&
1638 !lybctx->node_when.count));
1639
1640 if (rc) {
Radek Krejci1798aae2020-07-14 13:26:06 +02001641 lyd_lyb_ctx_free((struct lyd_ctx *)lybctx);
Radek Krejci1798aae2020-07-14 13:26:06 +02001642 } else {
Michal Vaskoe0665742021-02-11 11:08:44 +01001643 *lydctx_p = (struct lyd_ctx *)lybctx;
Michal Vasko60ea6352020-06-29 13:39:39 +02001644 }
Michal Vaskoe0665742021-02-11 11:08:44 +01001645 return rc;
Michal Vasko60ea6352020-06-29 13:39:39 +02001646}
1647
Michal Vasko02ed9d82021-07-15 14:58:04 +02001648LY_ERR
1649lyd_parse_lyb(const struct ly_ctx *ctx, const struct lysc_ext_instance *ext, struct lyd_node *parent,
1650 struct lyd_node **first_p, struct ly_in *in, uint32_t parse_opts, uint32_t val_opts, enum lyd_type data_type,
1651 struct ly_set *parsed, struct lyd_ctx **lydctx_p)
1652{
1653 uint32_t int_opts;
1654
1655 assert(!(parse_opts & ~LYD_PARSE_OPTS_MASK));
1656 assert(!(val_opts & ~LYD_VALIDATE_OPTS_MASK));
1657
1658 switch (data_type) {
1659 case LYD_TYPE_DATA_YANG:
1660 int_opts = LYD_INTOPT_WITH_SIBLINGS;
1661 break;
1662 case LYD_TYPE_RPC_YANG:
1663 int_opts = LYD_INTOPT_RPC | LYD_INTOPT_ACTION | LYD_INTOPT_NO_SIBLINGS;
1664 break;
1665 case LYD_TYPE_NOTIF_YANG:
1666 int_opts = LYD_INTOPT_NOTIF | LYD_INTOPT_NO_SIBLINGS;
1667 break;
1668 case LYD_TYPE_REPLY_YANG:
1669 int_opts = LYD_INTOPT_REPLY | LYD_INTOPT_NO_SIBLINGS;
1670 break;
1671 default:
1672 LOGINT(ctx);
1673 return LY_EINT;
1674 }
1675
1676 return _lyd_parse_lyb(ctx, ext, parent, first_p, in, parse_opts, val_opts, int_opts, parsed, lydctx_p);
1677}
1678
Michal Vasko60ea6352020-06-29 13:39:39 +02001679API int
1680lyd_lyb_data_length(const char *data)
1681{
1682 LY_ERR ret = LY_SUCCESS;
Radek Krejci1798aae2020-07-14 13:26:06 +02001683 struct lylyb_ctx *lybctx;
Michal Vasko60ea6352020-06-29 13:39:39 +02001684 int count, i;
1685 size_t len;
1686 uint8_t buf[LYB_SIZE_MAX];
aPiecek6828a312021-09-17 15:53:18 +02001687 uint8_t zero[LYB_SIZE_BYTES] = {0};
Michal Vasko60ea6352020-06-29 13:39:39 +02001688
1689 if (!data) {
1690 return -1;
1691 }
1692
Radek Krejci1798aae2020-07-14 13:26:06 +02001693 lybctx = calloc(1, sizeof *lybctx);
1694 LY_CHECK_ERR_RET(!lybctx, LOGMEM(NULL), LY_EMEM);
1695 ret = ly_in_new_memory(data, &lybctx->in);
Michal Vasko63f3d842020-07-08 10:10:14 +02001696 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko60ea6352020-06-29 13:39:39 +02001697
1698 /* read magic number */
Radek Krejci1798aae2020-07-14 13:26:06 +02001699 ret = lyb_parse_magic_number(lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +02001700 LY_CHECK_GOTO(ret, cleanup);
1701
1702 /* read header */
Radek Krejci1798aae2020-07-14 13:26:06 +02001703 ret = lyb_parse_header(lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +02001704 LY_CHECK_GOTO(ret, cleanup);
1705
1706 /* read model count */
Radek Krejci1798aae2020-07-14 13:26:06 +02001707 lyb_read_number(&count, sizeof count, 2, lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +02001708
1709 /* read all models */
1710 for (i = 0; i < count; ++i) {
1711 /* module name length */
1712 len = 0;
Radek Krejci1798aae2020-07-14 13:26:06 +02001713 lyb_read_number(&len, sizeof len, 2, lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +02001714
1715 /* model name */
Radek Krejci1798aae2020-07-14 13:26:06 +02001716 lyb_read(buf, len, lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +02001717
1718 /* revision */
Radek Krejci1798aae2020-07-14 13:26:06 +02001719 lyb_read(buf, 2, lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +02001720 }
1721
aPiecek6828a312021-09-17 15:53:18 +02001722 if (memcmp(zero, lybctx->in->current, LYB_SIZE_BYTES)) {
aPiecek570d7ed2021-09-10 07:15:35 +02001723 /* register a new sibling */
1724 ret = lyb_read_start_siblings(lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +02001725 LY_CHECK_GOTO(ret, cleanup);
1726
1727 /* skip it */
aPiecek570d7ed2021-09-10 07:15:35 +02001728 lyb_skip_siblings(lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +02001729
aPiecek570d7ed2021-09-10 07:15:35 +02001730 /* sibling finished */
1731 ret = lyb_read_stop_siblings(lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +02001732 LY_CHECK_GOTO(ret, cleanup);
aPiecek570d7ed2021-09-10 07:15:35 +02001733 } else {
aPiecek6828a312021-09-17 15:53:18 +02001734 lyb_read(NULL, LYB_SIZE_BYTES, lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +02001735 }
1736
1737 /* read the last zero, parsing finished */
Radek Krejci1798aae2020-07-14 13:26:06 +02001738 ly_in_skip(lybctx->in, 1);
Michal Vasko60ea6352020-06-29 13:39:39 +02001739
1740cleanup:
Radek Krejci1798aae2020-07-14 13:26:06 +02001741 count = lybctx->in->current - lybctx->in->start;
Michal Vasko63f3d842020-07-08 10:10:14 +02001742
Radek Krejci1798aae2020-07-14 13:26:06 +02001743 ly_in_free(lybctx->in, 0);
1744 lylyb_ctx_free(lybctx);
1745
Michal Vasko63f3d842020-07-08 10:10:14 +02001746 return ret ? -1 : count;
Michal Vasko60ea6352020-06-29 13:39:39 +02001747}