blob: 9395a13c849164a916bb0aebd50bdd1087df05a7 [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"
27#include "log.h"
Radek Krejci7931b192020-06-25 17:05:03 +020028#include "parser_data.h"
29#include "parser_internal.h"
Radek Krejciad97c5f2020-06-30 09:19:28 +020030#include "set.h"
31#include "tree.h"
Michal Vasko60ea6352020-06-29 13:39:39 +020032#include "tree_data_internal.h"
33#include "tree_schema.h"
34#include "validation.h"
35
Radek Krejci1798aae2020-07-14 13:26:06 +020036void
37lylyb_ctx_free(struct lylyb_ctx *ctx)
38{
39 LY_ARRAY_COUNT_TYPE u;
40
41 LY_ARRAY_FREE(ctx->subtrees);
42 LY_ARRAY_FREE(ctx->models);
43
44 LY_ARRAY_FOR(ctx->sib_hts, u) {
45 lyht_free(ctx->sib_hts[u].ht);
46 }
47 LY_ARRAY_FREE(ctx->sib_hts);
48
49 free(ctx);
50}
51
52void
53lyd_lyb_ctx_free(struct lyd_ctx *lydctx)
54{
55 struct lyd_lyb_ctx *ctx = (struct lyd_lyb_ctx *)lydctx;
56
57 lyd_ctx_free(lydctx);
58 lylyb_ctx_free(ctx->lybctx);
59 free(ctx);
60}
61
Michal Vasko60ea6352020-06-29 13:39:39 +020062/**
63 * @brief Read YANG data from LYB input. Metadata are handled transparently and not returned.
64 *
65 * @param[in] buf Destination buffer.
66 * @param[in] count Number of bytes to read.
67 * @param[in] lybctx LYB context.
68 */
69static void
Radek Krejci1798aae2020-07-14 13:26:06 +020070lyb_read(uint8_t *buf, size_t count, struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +020071{
Michal Vaskofd69e1d2020-07-03 11:57:17 +020072 LY_ARRAY_COUNT_TYPE u;
Michal Vasko60ea6352020-06-29 13:39:39 +020073 struct lyd_lyb_subtree *empty;
74 size_t to_read;
75 uint8_t meta_buf[LYB_META_BYTES];
76
77 assert(lybctx);
78
79 while (1) {
80 /* check for fully-read (empty) data chunks */
81 to_read = count;
82 empty = NULL;
83 LY_ARRAY_FOR(lybctx->subtrees, u) {
84 /* we want the innermost chunks resolved first, so replace previous empty chunks,
85 * also ignore chunks that are completely finished, there is nothing for us to do */
86 if ((lybctx->subtrees[u].written <= to_read) && lybctx->subtrees[u].position) {
87 /* empty chunk, do not read more */
88 to_read = lybctx->subtrees[u].written;
89 empty = &lybctx->subtrees[u];
90 }
91 }
92
93 if (!empty && !count) {
94 break;
95 }
96
97 /* we are actually reading some data, not just finishing another chunk */
98 if (to_read) {
99 if (buf) {
Michal Vasko63f3d842020-07-08 10:10:14 +0200100 ly_in_read(lybctx->in, buf, to_read);
101 } else {
102 ly_in_skip(lybctx->in, to_read);
Michal Vasko60ea6352020-06-29 13:39:39 +0200103 }
104
105 LY_ARRAY_FOR(lybctx->subtrees, u) {
106 /* decrease all written counters */
107 lybctx->subtrees[u].written -= to_read;
108 assert(lybctx->subtrees[u].written <= LYB_SIZE_MAX);
109 }
110 /* decrease count/buf */
111 count -= to_read;
112 if (buf) {
113 buf += to_read;
114 }
Michal Vasko60ea6352020-06-29 13:39:39 +0200115 }
116
117 if (empty) {
118 /* read the next chunk meta information */
Michal Vasko63f3d842020-07-08 10:10:14 +0200119 ly_in_read(lybctx->in, meta_buf, LYB_META_BYTES);
Michal Vasko60ea6352020-06-29 13:39:39 +0200120 empty->written = meta_buf[0];
121 empty->inner_chunks = meta_buf[1];
122
123 /* remember whether there is a following chunk or not */
124 empty->position = (empty->written == LYB_SIZE_MAX ? 1 : 0);
Michal Vasko60ea6352020-06-29 13:39:39 +0200125 }
126 }
Michal Vasko60ea6352020-06-29 13:39:39 +0200127}
128
129/**
130 * @brief Read a number.
131 *
132 * @param[in] num Destination buffer.
133 * @param[in] num_size Size of @p num.
134 * @param[in] bytes Number of bytes to read.
135 * @param[in] lybctx LYB context.
136 */
137static void
Radek Krejci1798aae2020-07-14 13:26:06 +0200138lyb_read_number(void *num, size_t num_size, size_t bytes, struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200139{
140 uint64_t buf = 0;
141
142 lyb_read((uint8_t *)&buf, bytes, lybctx);
143
144 /* correct byte order */
145 buf = le64toh(buf);
146
147 switch (num_size) {
148 case 1:
149 *((uint8_t *)num) = buf;
150 break;
151 case 2:
152 *((uint16_t *)num) = buf;
153 break;
154 case 4:
155 *((uint32_t *)num) = buf;
156 break;
157 case 8:
158 *((uint64_t *)num) = buf;
159 break;
160 default:
161 LOGINT(lybctx->ctx);
162 }
163}
164
165/**
166 * @brief Read a string.
167 *
168 * @param[in] str Destination buffer, is allocated.
169 * @param[in] with_length Whether the string is preceded with its length or it ends at the end of this subtree.
170 * @param[in] lybctx LYB context.
171 * @return LY_ERR value.
172 */
173static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +0200174lyb_read_string(char **str, ly_bool with_length, struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200175{
Radek Krejci857189e2020-09-01 13:26:36 +0200176 ly_bool next_chunk = 0;
Michal Vasko60ea6352020-06-29 13:39:39 +0200177 size_t len = 0, cur_len;
178
179 *str = NULL;
180
181 if (with_length) {
182 lyb_read_number(&len, sizeof len, 2, lybctx);
183 } else {
184 /* read until the end of this subtree */
185 len = LYB_LAST_SUBTREE(lybctx).written;
186 if (LYB_LAST_SUBTREE(lybctx).position) {
187 next_chunk = 1;
188 }
189 }
190
191 *str = malloc((len + 1) * sizeof **str);
192 LY_CHECK_ERR_RET(!*str, LOGMEM(lybctx->ctx), LY_EMEM);
193
194 lyb_read((uint8_t *)*str, len, lybctx);
195
196 while (next_chunk) {
197 cur_len = LYB_LAST_SUBTREE(lybctx).written;
198 if (LYB_LAST_SUBTREE(lybctx).position) {
199 next_chunk = 1;
200 } else {
201 next_chunk = 0;
202 }
203
204 *str = ly_realloc(*str, (len + cur_len + 1) * sizeof **str);
205 LY_CHECK_ERR_RET(!*str, LOGMEM(lybctx->ctx), LY_EMEM);
206
207 lyb_read(((uint8_t *)*str) + len, cur_len, lybctx);
208
209 len += cur_len;
210 }
211
212 ((char *)*str)[len] = '\0';
213 return LY_SUCCESS;
214}
215
216/**
217 * @brief Stop the current subtree - change LYB context state.
218 *
219 * @param[in] lybctx LYB context.
220 * @return LY_ERR value.
221 */
222static LY_ERR
Radek Krejci1798aae2020-07-14 13:26:06 +0200223lyb_read_stop_subtree(struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200224{
225 if (LYB_LAST_SUBTREE(lybctx).written) {
226 LOGINT_RET(lybctx->ctx);
227 }
228
229 LY_ARRAY_DECREMENT(lybctx->subtrees);
230 return LY_SUCCESS;
231}
232
233/**
234 * @brief Start a new subtree - change LYB context state but also read the expected metadata.
235 *
236 * @param[in] lybctx LYB context.
237 * @return LY_ERR value.
238 */
239static LY_ERR
Radek Krejci1798aae2020-07-14 13:26:06 +0200240lyb_read_start_subtree(struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200241{
242 uint8_t meta_buf[LYB_META_BYTES];
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200243 LY_ARRAY_COUNT_TYPE u;
Michal Vasko60ea6352020-06-29 13:39:39 +0200244
245 if (!lybctx->subtrees) {
Radek Krejcif6d14cb2020-07-02 16:11:45 +0200246 assert(lybctx->subtree_size == 0);
Michal Vasko60ea6352020-06-29 13:39:39 +0200247 u = 0;
248 } else {
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200249 u = LY_ARRAY_COUNT(lybctx->subtrees);
Michal Vasko60ea6352020-06-29 13:39:39 +0200250 }
251 if (u == lybctx->subtree_size) {
252 LY_ARRAY_CREATE_RET(lybctx->ctx, lybctx->subtrees, u + LYB_SUBTREE_STEP, LY_EMEM);
253 lybctx->subtree_size = u + LYB_SUBTREE_STEP;
254 }
255
Michal Vasko63f3d842020-07-08 10:10:14 +0200256 LY_CHECK_RET(ly_in_read(lybctx->in, meta_buf, LYB_META_BYTES));
Michal Vasko60ea6352020-06-29 13:39:39 +0200257
258 LY_ARRAY_INCREMENT(lybctx->subtrees);
259 LYB_LAST_SUBTREE(lybctx).written = meta_buf[0];
260 LYB_LAST_SUBTREE(lybctx).inner_chunks = meta_buf[LYB_SIZE_BYTES];
261 LYB_LAST_SUBTREE(lybctx).position = (LYB_LAST_SUBTREE(lybctx).written == LYB_SIZE_MAX ? 1 : 0);
262
Michal Vasko60ea6352020-06-29 13:39:39 +0200263 return LY_SUCCESS;
264}
265
266/**
267 * @brief Parse YANG model info.
268 *
269 * @param[in] lybctx LYB context.
270 * @param[out] mod Parsed module.
271 * @return LY_ERR value.
272 */
273static LY_ERR
Radek Krejci1798aae2020-07-14 13:26:06 +0200274lyb_parse_model(struct lylyb_ctx *lybctx, uint32_t parse_options, const struct lys_module **mod)
Michal Vasko60ea6352020-06-29 13:39:39 +0200275{
276 LY_ERR ret = LY_SUCCESS;
277 char *mod_name = NULL, mod_rev[11];
278 uint16_t rev;
279
280 /* model name */
281 ret = lyb_read_string(&mod_name, 1, lybctx);
282 LY_CHECK_GOTO(ret, cleanup);
283
284 /* revision */
285 lyb_read_number(&rev, sizeof rev, 2, lybctx);
286
287 if (!mod_name[0]) {
288 /* opaq node, no module */
289 *mod = NULL;
290 goto cleanup;
291 }
292
293 if (rev) {
294 sprintf(mod_rev, "%04u-%02u-%02u", ((rev & 0xFE00) >> 9) + 2000, (rev & 0x01E0) >> 5, rev & 0x001Fu);
295 *mod = ly_ctx_get_module(lybctx->ctx, mod_name, mod_rev);
Radek Krejci1798aae2020-07-14 13:26:06 +0200296 if ((parse_options & LYD_PARSE_LYB_MOD_UPDATE) && !(*mod)) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200297 /* try to use an updated module */
298 *mod = ly_ctx_get_module_implemented(lybctx->ctx, mod_name);
299 if (*mod && (!(*mod)->revision || (strcmp((*mod)->revision, mod_rev) < 0))) {
300 /* not an implemented module in a newer revision */
301 *mod = NULL;
302 }
303 }
304 } else {
305 *mod = ly_ctx_get_module_latest(lybctx->ctx, mod_name);
306 }
307 /* TODO data_clb supported?
308 if (lybctx->ctx->data_clb) {
309 if (!*mod) {
310 *mod = lybctx->ctx->data_clb(lybctx->ctx, mod_name, NULL, 0, lybctx->ctx->data_clb_data);
311 } else if (!(*mod)->implemented) {
312 *mod = lybctx->ctx->data_clb(lybctx->ctx, mod_name, (*mod)->ns, LY_MODCLB_NOT_IMPLEMENTED, lybctx->ctx->data_clb_data);
313 }
314 }*/
315
316 if (!*mod || !(*mod)->implemented) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200317 if (parse_options & LYD_PARSE_STRICT) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200318 if (!*mod) {
319 LOGERR(lybctx->ctx, LY_EINVAL, "Invalid context for LYB data parsing, missing module \"%s%s%s\".",
320 mod_name, rev ? "@" : "", rev ? mod_rev : "");
321 } else if (!(*mod)->implemented) {
322 LOGERR(lybctx->ctx, LY_EINVAL, "Invalid context for LYB data parsing, module \"%s%s%s\" not implemented.",
323 mod_name, rev ? "@" : "", rev ? mod_rev : "");
324 }
325 ret = LY_EINVAL;
326 goto cleanup;
327 }
328
329 }
330
331cleanup:
332 free(mod_name);
333 return ret;
334}
335
336/**
337 * @brief Parse YANG node metadata.
338 *
339 * @param[in] lybctx LYB context.
340 * @param[in] sparent Schema parent node.
341 * @param[out] meta Parsed metadata.
342 * @return LY_ERR value.
343 */
344static LY_ERR
345lyb_parse_metadata(struct lyd_lyb_ctx *lybctx, const struct lysc_node *sparent, struct lyd_meta **meta)
346{
347 LY_ERR ret = LY_SUCCESS;
Radek Krejci857189e2020-09-01 13:26:36 +0200348 ly_bool dynamic;
Michal Vasko60ea6352020-06-29 13:39:39 +0200349 uint8_t i, count = 0;
Michal Vasko1e5d5612020-07-03 13:29:26 +0200350 char *meta_name = NULL, *meta_value;
Michal Vasko60ea6352020-06-29 13:39:39 +0200351 const struct lys_module *mod;
352
353 /* read number of attributes stored */
Radek Krejci1798aae2020-07-14 13:26:06 +0200354 lyb_read(&count, 1, lybctx->lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +0200355
356 /* read attributes */
357 for (i = 0; i < count; ++i) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200358 ret = lyb_read_start_subtree(lybctx->lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +0200359 LY_CHECK_GOTO(ret, cleanup);
360
361 /* find model */
Radek Krejci1798aae2020-07-14 13:26:06 +0200362 ret = lyb_parse_model(lybctx->lybctx, lybctx->parse_options, &mod);
Michal Vasko60ea6352020-06-29 13:39:39 +0200363 LY_CHECK_GOTO(ret, cleanup);
364
365 if (!mod) {
366 /* skip it */
367 do {
Radek Krejci1798aae2020-07-14 13:26:06 +0200368 lyb_read(NULL, LYB_LAST_SUBTREE(lybctx->lybctx).written, lybctx->lybctx);
369 } while (LYB_LAST_SUBTREE(lybctx->lybctx).written);
Michal Vasko60ea6352020-06-29 13:39:39 +0200370 goto stop_subtree;
371 }
372
373 /* meta name */
Radek Krejci1798aae2020-07-14 13:26:06 +0200374 ret = lyb_read_string(&meta_name, 1, lybctx->lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +0200375 LY_CHECK_GOTO(ret, cleanup);
376
377 /* meta value */
Radek Krejci1798aae2020-07-14 13:26:06 +0200378 ret = lyb_read_string(&meta_value, 0, lybctx->lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +0200379 LY_CHECK_GOTO(ret, cleanup);
380 dynamic = 1;
381
382 /* create metadata */
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200383 ret = lyd_parser_create_meta((struct lyd_ctx *)lybctx, NULL, meta, mod, meta_name, strlen(meta_name), meta_value,
384 ly_strlen(meta_value), &dynamic, 0, LY_PREF_JSON, NULL, sparent);
Michal Vasko60ea6352020-06-29 13:39:39 +0200385
386 /* free strings */
387 free(meta_name);
388 meta_name = NULL;
389 if (dynamic) {
390 free(meta_value);
391 dynamic = 0;
392 }
Michal Vasko60ea6352020-06-29 13:39:39 +0200393
Radek Krejci1798aae2020-07-14 13:26:06 +0200394 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko60ea6352020-06-29 13:39:39 +0200395
396stop_subtree:
Radek Krejci1798aae2020-07-14 13:26:06 +0200397 ret = lyb_read_stop_subtree(lybctx->lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +0200398 LY_CHECK_GOTO(ret, cleanup);
399 }
400
401cleanup:
402 free(meta_name);
Michal Vasko60ea6352020-06-29 13:39:39 +0200403 if (ret) {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200404 lyd_free_meta_siblings(*meta);
Michal Vasko60ea6352020-06-29 13:39:39 +0200405 *meta = NULL;
406 }
407 return ret;
408}
409
410/**
411 * @brief Parse opaque prefixes structure.
412 *
413 * @param[in] lybctx LYB context.
414 * @param[out] prefs Parsed prefixes.
415 * @return LY_ERR value.
416 */
417static LY_ERR
Radek Krejci1798aae2020-07-14 13:26:06 +0200418lyb_parse_opaq_prefixes(struct lylyb_ctx *lybctx, struct ly_prefix **prefs)
Michal Vasko60ea6352020-06-29 13:39:39 +0200419{
420 LY_ERR ret = LY_SUCCESS;
421 uint8_t count, i;
422 char *str;
423
424 /* read count */
425 lyb_read(&count, 1, lybctx);
426 if (!count) {
427 return LY_SUCCESS;
428 }
429
430 LY_ARRAY_CREATE_RET(lybctx->ctx, *prefs, count, LY_EMEM);
431 for (i = 0; i < count; ++i) {
432 LY_ARRAY_INCREMENT(*prefs);
433
434 /* prefix */
Radek Krejci011e4aa2020-09-04 15:22:31 +0200435 LY_CHECK_GOTO(ret = lyb_read_string(&str, 1, lybctx), cleanup);
436 LY_CHECK_GOTO(ret = lydict_insert_zc(lybctx->ctx, str, &(*prefs)[i].id), cleanup);
Michal Vasko60ea6352020-06-29 13:39:39 +0200437
Radek Krejci1798aae2020-07-14 13:26:06 +0200438 /* module reference is the same as JSON name */
Radek Krejci011e4aa2020-09-04 15:22:31 +0200439 LY_CHECK_GOTO(ret = lyb_read_string(&str, 1, lybctx), cleanup);
440 LY_CHECK_GOTO(ret = lydict_insert_zc(lybctx->ctx, str, &(*prefs)[i].module_name), cleanup);
Michal Vasko60ea6352020-06-29 13:39:39 +0200441 }
442
443cleanup:
444 if (ret) {
445 ly_free_val_prefs(lybctx->ctx, *prefs);
446 *prefs = NULL;
447 }
448 return ret;
449}
450
451/**
452 * @brief Parse opaque attributes.
453 *
454 * @param[in] lybctx LYB context.
455 * @param[out] attr Parsed attributes.
456 * @return LY_ERR value.
457 */
458static LY_ERR
Radek Krejci1798aae2020-07-14 13:26:06 +0200459lyb_parse_attributes(struct lylyb_ctx *lybctx, struct lyd_attr **attr)
Michal Vasko60ea6352020-06-29 13:39:39 +0200460{
461 LY_ERR ret = LY_SUCCESS;
462 uint8_t count, i;
Radek Krejci1798aae2020-07-14 13:26:06 +0200463 struct lyd_attr *attr2;
464 char *prefix = NULL, *module_name = NULL, *name = NULL, *value = NULL;
Radek Krejci857189e2020-09-01 13:26:36 +0200465 ly_bool dynamic = 0;
Michal Vasko60ea6352020-06-29 13:39:39 +0200466 LYD_FORMAT format = 0;
467 struct ly_prefix *val_prefs = NULL;
468
469 /* read count */
470 lyb_read(&count, 1, lybctx);
471
472 /* read attributes */
473 for (i = 0; i < count; ++i) {
474 ret = lyb_read_start_subtree(lybctx);
475 LY_CHECK_GOTO(ret, cleanup);
476
477 /* prefix, may be emtpy */
478 ret = lyb_read_string(&prefix, 1, lybctx);
479 LY_CHECK_GOTO(ret, cleanup);
480 if (!prefix[0]) {
481 free(prefix);
482 prefix = NULL;
483 }
484
485 /* namespace, may be empty */
Radek Krejci1798aae2020-07-14 13:26:06 +0200486 ret = lyb_read_string(&module_name, 1, lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +0200487 LY_CHECK_GOTO(ret, cleanup);
Radek Krejci1798aae2020-07-14 13:26:06 +0200488 if (!module_name[0]) {
489 free(module_name);
490 module_name = NULL;
Michal Vasko60ea6352020-06-29 13:39:39 +0200491 }
492
493 /* name */
494 ret = lyb_read_string(&name, 1, lybctx);
495 LY_CHECK_GOTO(ret, cleanup);
496
497 /* value prefixes */
498 ret = lyb_parse_opaq_prefixes(lybctx, &val_prefs);
499 LY_CHECK_GOTO(ret, cleanup);
500
501 /* format */
502 lyb_read((uint8_t *)&format, 1, lybctx);
503
504 /* value */
505 ret = lyb_read_string(&value, 0, lybctx);
Radek Krejcid46e46a2020-09-15 14:22:42 +0200506 LY_CHECK_ERR_GOTO(ret, ly_free_val_prefs(lybctx->ctx, val_prefs), cleanup);
Michal Vasko60ea6352020-06-29 13:39:39 +0200507 dynamic = 1;
508
509 /* attr2 is always changed to the created attribute */
Radek Krejci1798aae2020-07-14 13:26:06 +0200510 ret = lyd_create_attr(NULL, &attr2, lybctx->ctx, name, strlen(name), value, ly_strlen(value), &dynamic, 0, format,
511 val_prefs, prefix, ly_strlen(prefix), module_name, ly_strlen(module_name));
Michal Vasko60ea6352020-06-29 13:39:39 +0200512 LY_CHECK_GOTO(ret, cleanup);
513
514 free(prefix);
515 prefix = NULL;
Radek Krejci1798aae2020-07-14 13:26:06 +0200516 free(module_name);
517 module_name = NULL;
Michal Vasko60ea6352020-06-29 13:39:39 +0200518 free(name);
519 name = NULL;
Michal Vasko60ea6352020-06-29 13:39:39 +0200520 assert(!dynamic);
521 value = NULL;
522
523 if (!*attr) {
524 *attr = attr2;
525 }
526
527 ret = lyb_read_stop_subtree(lybctx);
528 LY_CHECK_GOTO(ret, cleanup);
529 }
530
531cleanup:
532 free(prefix);
Radek Krejci1798aae2020-07-14 13:26:06 +0200533 free(module_name);
Michal Vasko60ea6352020-06-29 13:39:39 +0200534 free(name);
535 if (dynamic) {
536 free(value);
537 }
Michal Vasko60ea6352020-06-29 13:39:39 +0200538 if (ret) {
Radek Krejci011e4aa2020-09-04 15:22:31 +0200539 lyd_free_attr_siblings(lybctx->ctx, *attr);
Michal Vasko60ea6352020-06-29 13:39:39 +0200540 *attr = NULL;
541 }
542 return ret;
543}
544
545/**
546 * @brief Check whether a schema node matches a hash(es).
547 *
548 * @param[in] sibling Schema node to check.
549 * @param[in] hash Hash array to check.
550 * @param[in] hash_count Number of hashes in @p hash.
551 * @return non-zero if matches,
552 * @return 0 if not.
553 */
554static int
555lyb_is_schema_hash_match(struct lysc_node *sibling, LYB_HASH *hash, uint8_t hash_count)
556{
557 LYB_HASH sibling_hash;
558 uint8_t i;
559
560 /* compare all the hashes starting from collision ID 0 */
561 for (i = 0; i < hash_count; ++i) {
562 sibling_hash = lyb_hash(sibling, i);
563 if (sibling_hash != hash[i]) {
564 return 0;
565 }
566 }
567
568 return 1;
569}
570
571/**
Michal Vasko60ea6352020-06-29 13:39:39 +0200572 * @brief Parse schema node hash.
573 *
574 * @param[in] lybctx LYB context.
575 * @param[in] sparent Schema parent, must be set if @p mod is not.
576 * @param[in] mod Module of the top-level node, must be set if @p sparent is not.
577 * @param[out] snode Parsed found schema node, may be NULL if opaque.
578 * @return LY_ERR value.
579 */
580static LY_ERR
581lyb_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 +0200582 const struct lysc_node **snode)
Michal Vasko60ea6352020-06-29 13:39:39 +0200583{
584 LY_ERR ret;
585 uint8_t i, j;
586 const struct lysc_node *sibling;
587 LYB_HASH hash[LYB_HASH_BITS - 1];
Radek Krejci1deb5be2020-08-26 16:43:36 +0200588 uint32_t getnext_opts;
Michal Vasko60ea6352020-06-29 13:39:39 +0200589
590 *snode = NULL;
591 /* leave if-feature check for validation */
592 getnext_opts = LYS_GETNEXT_NOSTATECHECK | (lybctx->int_opts & LYD_INTOPT_REPLY ? LYS_GETNEXT_OUTPUT : 0);
593
594 /* read the first hash */
Radek Krejci1798aae2020-07-14 13:26:06 +0200595 lyb_read(&hash[0], sizeof *hash, lybctx->lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +0200596
597 if (!hash[0]) {
598 /* opaque node */
599 return LY_SUCCESS;
600 }
601
602 /* based on the first hash read all the other ones, if any */
603 for (i = 0; !(hash[0] & (LYB_HASH_COLLISION_ID >> i)); ++i) {
604 if (i > LYB_HASH_BITS) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200605 LOGINT_RET(lybctx->lybctx->ctx);
Michal Vasko60ea6352020-06-29 13:39:39 +0200606 }
607 }
608
609 /* move the first hash on its accurate position */
610 hash[i] = hash[0];
611
612 /* read the rest of hashes */
613 for (j = i; j; --j) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200614 lyb_read(&hash[j - 1], sizeof *hash, lybctx->lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +0200615
616 /* correct collision ID */
617 assert(hash[j - 1] & (LYB_HASH_COLLISION_ID >> (j - 1)));
618 /* preceded with zeros */
619 assert(!(hash[j - 1] & (LYB_HASH_MASK << (LYB_HASH_BITS - (j - 1)))));
620 }
621
622 /* find our node with matching hashes */
623 sibling = NULL;
624 while ((sibling = lys_getnext(sibling, sparent, mod ? mod->compiled : NULL, getnext_opts))) {
625 /* skip schema nodes from models not present during printing */
Radek Krejci1798aae2020-07-14 13:26:06 +0200626 if (lyb_has_schema_model(sibling, lybctx->lybctx->models)
Michal Vasko60ea6352020-06-29 13:39:39 +0200627 && lyb_is_schema_hash_match((struct lysc_node *)sibling, hash, i + 1)) {
628 /* match found */
629 break;
630 }
631 }
632
Radek Krejci7931b192020-06-25 17:05:03 +0200633 if (!sibling && (lybctx->parse_options & LYD_PARSE_STRICT)) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200634 if (mod) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200635 LOGVAL(lybctx->lybctx->ctx, LY_VLOG_NONE, NULL, LYVE_REFERENCE, "Failed to find matching hash for a top-level node"
Michal Vasko60ea6352020-06-29 13:39:39 +0200636 " from \"%s\".", mod->name);
637 } else {
Radek Krejci1798aae2020-07-14 13:26:06 +0200638 LOGVAL(lybctx->lybctx->ctx, LY_VLOG_LYSC, sparent, LYVE_REFERENCE, "Failed to find matching hash for a child node"
Michal Vasko60ea6352020-06-29 13:39:39 +0200639 " of \"%s\".", sparent->name);
640 }
641 return LY_EVALID;
Radek Krejci1798aae2020-07-14 13:26:06 +0200642 } else if (sibling && (ret = lyd_parser_check_schema((struct lyd_ctx *)lybctx, sibling))) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200643 return ret;
644 }
645
646 *snode = sibling;
647 return LY_SUCCESS;
648}
649
650/**
651 * @brief Read until the end of the current subtree.
652 *
653 * @param[in] lybctx LYB context.
654 */
655static void
Radek Krejci1798aae2020-07-14 13:26:06 +0200656lyb_skip_subtree(struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200657{
Michal Vasko60ea6352020-06-29 13:39:39 +0200658 do {
659 /* first skip any meta information inside */
Michal Vasko63f3d842020-07-08 10:10:14 +0200660 ly_in_skip(lybctx->in, LYB_LAST_SUBTREE(lybctx).inner_chunks * LYB_META_BYTES);
Michal Vasko60ea6352020-06-29 13:39:39 +0200661
662 /* then read data */
663 lyb_read(NULL, LYB_LAST_SUBTREE(lybctx).written, lybctx);
664 } while (LYB_LAST_SUBTREE(lybctx).written);
665}
666
667/**
668 * @brief Parse LYB subtree.
669 *
670 * @param[in] lybctx LYB context.
671 * @param[in] parent Data parent of the subtree, must be set if @p first is not.
672 * @param[in,out] first First top-level sibling, must be set if @p parent is not.
673 * @return LY_ERR value.
674 */
675static LY_ERR
676lyb_parse_subtree_r(struct lyd_lyb_ctx *lybctx, struct lyd_node_inner *parent, struct lyd_node **first)
677{
678 LY_ERR ret = LY_SUCCESS;
679 struct lyd_node *node = NULL, *tree;
680 const struct lys_module *mod;
681 const struct lysc_node *snode = NULL;
682 struct lyd_meta *meta = NULL, *m;
Radek Krejci1798aae2020-07-14 13:26:06 +0200683 struct lyd_attr *attr = NULL, *a;
Michal Vasko60ea6352020-06-29 13:39:39 +0200684 struct ly_prefix *val_prefs = NULL;
685 LYD_ANYDATA_VALUETYPE value_type;
Radek Krejci1798aae2020-07-14 13:26:06 +0200686 char *value = NULL, *name = NULL, *prefix = NULL, *module_key = NULL;
Radek Krejci857189e2020-09-01 13:26:36 +0200687 ly_bool dynamic = 0;
Michal Vasko60ea6352020-06-29 13:39:39 +0200688 LYD_FORMAT format = 0;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200689 uint32_t prev_lo;
Radek Krejci1798aae2020-07-14 13:26:06 +0200690 const struct ly_ctx *ctx = lybctx->lybctx->ctx;
Michal Vasko60ea6352020-06-29 13:39:39 +0200691
692 /* register a new subtree */
Radek Krejci1798aae2020-07-14 13:26:06 +0200693 LY_CHECK_GOTO(ret = lyb_read_start_subtree(lybctx->lybctx), cleanup);
Michal Vasko60ea6352020-06-29 13:39:39 +0200694
695 if (!parent) {
696 /* top-level, read module name */
Radek Krejci1798aae2020-07-14 13:26:06 +0200697 ret = lyb_parse_model(lybctx->lybctx, lybctx->parse_options, &mod);
Michal Vasko60ea6352020-06-29 13:39:39 +0200698 LY_CHECK_GOTO(ret, cleanup);
699
700 /* read hash, find the schema node starting from mod */
701 ret = lyb_parse_schema_hash(lybctx, NULL, mod, &snode);
702 LY_CHECK_GOTO(ret, cleanup);
703 } else {
704 /* read hash, find the schema node starting from parent schema */
705 ret = lyb_parse_schema_hash(lybctx, parent->schema, NULL, &snode);
706 LY_CHECK_GOTO(ret, cleanup);
707 }
708
Radek Krejci0f969882020-08-21 16:56:47 +0200709 if (!snode && !(lybctx->parse_options & LYD_PARSE_OPAQ)) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200710 /* unknown data, skip them */
Radek Krejci1798aae2020-07-14 13:26:06 +0200711 lyb_skip_subtree(lybctx->lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +0200712 goto stop_subtree;
Radek Krejci0f969882020-08-21 16:56:47 +0200713 }
Michal Vasko60ea6352020-06-29 13:39:39 +0200714
715 /* create metadata/attributes */
716 if (snode) {
717 ret = lyb_parse_metadata(lybctx, snode, &meta);
718 LY_CHECK_GOTO(ret, cleanup);
719 } else {
Radek Krejci1798aae2020-07-14 13:26:06 +0200720 ret = lyb_parse_attributes(lybctx->lybctx, &attr);
Michal Vasko60ea6352020-06-29 13:39:39 +0200721 LY_CHECK_GOTO(ret, cleanup);
722 }
723
724 if (!snode) {
725 /* parse prefix */
Radek Krejci1798aae2020-07-14 13:26:06 +0200726 ret = lyb_read_string(&prefix, 1, lybctx->lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +0200727 LY_CHECK_GOTO(ret, cleanup);
728
Radek Krejci1798aae2020-07-14 13:26:06 +0200729 /* parse module key */
730 ret = lyb_read_string(&module_key, 1, lybctx->lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +0200731 LY_CHECK_GOTO(ret, cleanup);
732
733 /* parse name */
Radek Krejci1798aae2020-07-14 13:26:06 +0200734 ret = lyb_read_string(&name, 1, lybctx->lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +0200735 LY_CHECK_GOTO(ret, cleanup);
736
737 /* parse value prefixes */
Radek Krejci1798aae2020-07-14 13:26:06 +0200738 ret = lyb_parse_opaq_prefixes(lybctx->lybctx, &val_prefs);
Michal Vasko60ea6352020-06-29 13:39:39 +0200739 LY_CHECK_GOTO(ret, cleanup);
740
741 /* parse format */
Radek Krejci1798aae2020-07-14 13:26:06 +0200742 lyb_read((uint8_t *)&format, 1, lybctx->lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +0200743
744 /* parse value */
Radek Krejci1798aae2020-07-14 13:26:06 +0200745 ret = lyb_read_string(&value, 0, lybctx->lybctx);
Radek Krejcid46e46a2020-09-15 14:22:42 +0200746 LY_CHECK_ERR_GOTO(ret, ly_free_val_prefs(ctx, val_prefs), cleanup);
Michal Vasko60ea6352020-06-29 13:39:39 +0200747 dynamic = 1;
748
749 /* create node */
Radek Krejci1798aae2020-07-14 13:26:06 +0200750 ret = lyd_create_opaq(ctx, name, strlen(name), value, strlen(value), &dynamic, 0, format, val_prefs, prefix,
751 ly_strlen(prefix), module_key, ly_strlen(module_key), &node);
Michal Vasko60ea6352020-06-29 13:39:39 +0200752 LY_CHECK_GOTO(ret, cleanup);
753
754 /* process children */
Radek Krejci1798aae2020-07-14 13:26:06 +0200755 while (LYB_LAST_SUBTREE(lybctx->lybctx).written) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200756 ret = lyb_parse_subtree_r(lybctx, (struct lyd_node_inner *)node, NULL);
757 LY_CHECK_GOTO(ret, cleanup);
758 }
759 } else if (snode->nodetype & LYD_NODE_TERM) {
760 /* parse value */
Radek Krejci1798aae2020-07-14 13:26:06 +0200761 ret = lyb_read_string(&value, 0, lybctx->lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +0200762 LY_CHECK_GOTO(ret, cleanup);
763 dynamic = 1;
764
765 /* create node */
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200766 ret = lyd_parser_create_term((struct lyd_ctx *)lybctx, snode, value, ly_strlen(value), &dynamic, 0,
767 LY_PREF_JSON, NULL, &node);
Michal Vasko60ea6352020-06-29 13:39:39 +0200768 if (dynamic) {
769 free(value);
770 dynamic = 0;
771 }
772 value = NULL;
Radek Krejci1798aae2020-07-14 13:26:06 +0200773 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko60ea6352020-06-29 13:39:39 +0200774 } else if (snode->nodetype & LYD_NODE_INNER) {
775 /* create node */
776 ret = lyd_create_inner(snode, &node);
777 LY_CHECK_GOTO(ret, cleanup);
778
779 /* process children */
Radek Krejci1798aae2020-07-14 13:26:06 +0200780 while (LYB_LAST_SUBTREE(lybctx->lybctx).written) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200781 ret = lyb_parse_subtree_r(lybctx, (struct lyd_node_inner *)node, NULL);
782 LY_CHECK_GOTO(ret, cleanup);
783 }
784
Radek Krejci7931b192020-06-25 17:05:03 +0200785 if (!(lybctx->parse_options & LYD_PARSE_ONLY)) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200786 /* new node validation, autodelete CANNOT occur, all nodes are new */
Michal Vasko8104fd42020-07-13 11:09:51 +0200787 ret = lyd_validate_new(lyd_node_children_p(node), snode, NULL, NULL);
Michal Vasko60ea6352020-06-29 13:39:39 +0200788 LY_CHECK_GOTO(ret, cleanup);
789
790 /* add any missing default children */
Michal Vaskoa6669ba2020-08-06 16:14:26 +0200791 ret = lyd_new_implicit_r(node, lyd_node_children_p(node), NULL, NULL, &lybctx->unres_node_type,
792 &lybctx->when_check, (lybctx->validate_options & LYD_VALIDATE_NO_STATE)
793 ? LYD_IMPLICIT_NO_STATE : 0, NULL);
Michal Vasko60ea6352020-06-29 13:39:39 +0200794 LY_CHECK_GOTO(ret, cleanup);
795 }
796
Michal Vasko751cb4d2020-07-14 12:25:28 +0200797 if (snode->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200798 /* rememeber the RPC/action/notification */
Radek Krejci1798aae2020-07-14 13:26:06 +0200799 lybctx->op_node = node;
Michal Vasko60ea6352020-06-29 13:39:39 +0200800 }
801 } else if (snode->nodetype & LYD_NODE_ANY) {
802 /* parse value type */
Radek Krejci1798aae2020-07-14 13:26:06 +0200803 lyb_read((uint8_t *)&value_type, sizeof value_type, lybctx->lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +0200804 if (value_type == LYD_ANYDATA_DATATREE) {
805 /* invalid situation */
Radek Krejci1798aae2020-07-14 13:26:06 +0200806 LOGINT(ctx);
Michal Vasko60ea6352020-06-29 13:39:39 +0200807 goto cleanup;
808 }
809
810 /* read anydata content */
Radek Krejci1798aae2020-07-14 13:26:06 +0200811 ret = lyb_read_string(&value, 0, lybctx->lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +0200812 LY_CHECK_GOTO(ret, cleanup);
813 dynamic = 1;
814
815 if (value_type == LYD_ANYDATA_LYB) {
816 /* turn logging off */
817 prev_lo = ly_log_options(0);
818
819 /* try to parse LYB into a data tree */
Radek Krejci1798aae2020-07-14 13:26:06 +0200820 if (lyd_parse_data_mem(ctx, value, LYD_LYB, LYD_PARSE_ONLY | LYD_PARSE_OPAQ | LYD_PARSE_STRICT, 0, &tree) == LY_SUCCESS) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200821 /* successfully parsed */
822 free(value);
823 value = (char *)tree;
824 value_type = LYD_ANYDATA_DATATREE;
825 }
Radek Krejci7931b192020-06-25 17:05:03 +0200826
827 /* turn logging on again */
828 ly_log_options(prev_lo);
Michal Vasko60ea6352020-06-29 13:39:39 +0200829 }
830
831 /* create node */
832 ret = lyd_create_any(snode, value, value_type, &node);
833 LY_CHECK_GOTO(ret, cleanup);
834
835 dynamic = 0;
836 value = NULL;
837 }
838 assert(node);
839
840 /* add/correct flags */
841 if (snode) {
Radek Krejci7931b192020-06-25 17:05:03 +0200842 lyd_parse_set_data_flags(node, &lybctx->when_check, &meta, lybctx->parse_options);
Michal Vasko60ea6352020-06-29 13:39:39 +0200843 }
844
845 /* add metadata/attributes */
846 if (snode) {
847 LY_LIST_FOR(meta, m) {
848 m->parent = node;
849 }
850 node->meta = meta;
851 meta = NULL;
852 } else {
853 assert(!node->schema);
854 LY_LIST_FOR(attr, a) {
855 a->parent = (struct lyd_node_opaq *)node;
856 }
857 ((struct lyd_node_opaq *)node)->attr = attr;
858 attr = NULL;
859 }
860
Michal Vaskob104f112020-07-17 09:54:54 +0200861 /* insert, keep first pointer correct */
Michal Vasko60ea6352020-06-29 13:39:39 +0200862 lyd_insert_node((struct lyd_node *)parent, first, node);
Michal Vaskob104f112020-07-17 09:54:54 +0200863 while (!parent && (*first)->prev->next) {
864 *first = (*first)->prev;
865 }
Michal Vasko60ea6352020-06-29 13:39:39 +0200866 node = NULL;
867
868stop_subtree:
869 /* end the subtree */
Radek Krejci1798aae2020-07-14 13:26:06 +0200870 ret = lyb_read_stop_subtree(lybctx->lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +0200871 LY_CHECK_GOTO(ret, cleanup);
872
873cleanup:
874 free(prefix);
Radek Krejci1798aae2020-07-14 13:26:06 +0200875 free(module_key);
Michal Vasko60ea6352020-06-29 13:39:39 +0200876 free(name);
877 if (dynamic) {
878 free(value);
879 }
Michal Vasko60ea6352020-06-29 13:39:39 +0200880
Michal Vasko3a41dff2020-07-15 14:30:28 +0200881 lyd_free_meta_siblings(meta);
Radek Krejci011e4aa2020-09-04 15:22:31 +0200882 lyd_free_attr_siblings(ctx, attr);
Michal Vasko60ea6352020-06-29 13:39:39 +0200883 lyd_free_tree(node);
884 return ret;
885}
886
887/**
888 * @brief Parse used YANG data models.
889 *
890 * @param[in] lybctx LYB context.
891 * @return LY_ERR value.
892 */
893static LY_ERR
Radek Krejci1798aae2020-07-14 13:26:06 +0200894lyb_parse_data_models(struct lylyb_ctx *lybctx, uint32_t parse_options)
Michal Vasko60ea6352020-06-29 13:39:39 +0200895{
896 LY_ERR ret;
897 uint32_t count;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200898 LY_ARRAY_COUNT_TYPE u;
Michal Vasko60ea6352020-06-29 13:39:39 +0200899
900 /* read model count */
901 lyb_read_number(&count, sizeof count, 2, lybctx);
902
903 if (count) {
904 LY_ARRAY_CREATE_RET(lybctx->ctx, lybctx->models, count, LY_EMEM);
905
906 /* read modules */
907 for (u = 0; u < count; ++u) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200908 ret = lyb_parse_model(lybctx, parse_options, &lybctx->models[u]);
Michal Vasko60ea6352020-06-29 13:39:39 +0200909 LY_CHECK_RET(ret);
910 LY_ARRAY_INCREMENT(lybctx->models);
911 }
912 }
913
914 return LY_SUCCESS;
915}
916
917/**
918 * @brief Parse LYB magic number.
919 *
920 * @param[in] lybctx LYB context.
921 * @return LY_ERR value.
922 */
923static LY_ERR
Radek Krejci1798aae2020-07-14 13:26:06 +0200924lyb_parse_magic_number(struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200925{
926 char magic_byte = 0;
927
928 lyb_read((uint8_t *)&magic_byte, 1, lybctx);
929 if (magic_byte != 'l') {
930 LOGERR(lybctx->ctx, LY_EINVAL, "Invalid first magic number byte \"0x%02x\".", magic_byte);
931 return LY_EINVAL;
932 }
933
934 lyb_read((uint8_t *)&magic_byte, 1, lybctx);
935 if (magic_byte != 'y') {
936 LOGERR(lybctx->ctx, LY_EINVAL, "Invalid second magic number byte \"0x%02x\".", magic_byte);
937 return LY_EINVAL;
938 }
939
940 lyb_read((uint8_t *)&magic_byte, 1, lybctx);
941 if (magic_byte != 'b') {
942 LOGERR(lybctx->ctx, LY_EINVAL, "Invalid third magic number byte \"0x%02x\".", magic_byte);
943 return LY_EINVAL;
944 }
945
946 return LY_SUCCESS;
947}
948
949/**
950 * @brief Parse LYB header.
951 *
952 * @param[in] lybctx LYB context.
953 * @return LY_ERR value.
954 */
955static LY_ERR
Radek Krejci1798aae2020-07-14 13:26:06 +0200956lyb_parse_header(struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200957{
958 uint8_t byte = 0;
959
960 /* version, future flags */
961 lyb_read((uint8_t *)&byte, sizeof byte, lybctx);
962
963 if ((byte & LYB_VERSION_MASK) != LYB_VERSION_NUM) {
964 LOGERR(lybctx->ctx, LY_EINVAL, "Invalid LYB format version \"0x%02x\", expected \"0x%02x\".",
965 byte & LYB_VERSION_MASK, LYB_VERSION_NUM);
966 return LY_EINVAL;
967 }
968
969 return LY_SUCCESS;
970}
971
Radek Krejci1798aae2020-07-14 13:26:06 +0200972/*
973 * @param[in] ctx libyang context for logging
974 * @param[in] parent Parent node where to connect the parsed data, required for reply where the reply data are connected with the request operation
975 * @param[in] in Input structure.
976 * @param[in] parse_options Options for parser, see @ref dataparseroptions.
977 * @param[in] validate_options Options for the validation phase, see @ref datavalidationoptions.
978 * @param[in] data_type Internal data parser flag to distnguish type of the data to parse (RPC/Reply/Notification/regular data].
979 * @param[out] tree_p Parsed data tree. Note that NULL can be a valid result.
980 * @param[out] op_p Optional pointer to the actual operation. Useful for action and inner notifications.
981 * @param[out] lydctx_p Data parser context to finish validation.
982 */
983static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200984lyd_parse_lyb_(const struct ly_ctx *ctx, struct lyd_node_inner **parent, struct ly_in *in, uint32_t parse_options, uint32_t validate_options,
985 uint32_t data_type, struct lyd_node **tree_p, struct lyd_node **op_p, struct lyd_ctx **lydctx_p)
Michal Vasko60ea6352020-06-29 13:39:39 +0200986{
987 LY_ERR ret = LY_SUCCESS;
Radek Krejci1798aae2020-07-14 13:26:06 +0200988 struct lyd_lyb_ctx *lybctx;
989 struct lyd_node *tree = NULL;
Michal Vasko60ea6352020-06-29 13:39:39 +0200990
Radek Krejci7931b192020-06-25 17:05:03 +0200991 assert(!(parse_options & ~LYD_PARSE_OPTS_MASK));
992 assert(!(validate_options & ~LYD_VALIDATE_OPTS_MASK));
993
Radek Krejci1798aae2020-07-14 13:26:06 +0200994 lybctx = calloc(1, sizeof *lybctx);
995 LY_CHECK_ERR_RET(!lybctx, LOGMEM(ctx), LY_EMEM);
996 lybctx->lybctx = calloc(1, sizeof *lybctx->lybctx);
Michal Vasko9acaf492020-08-13 09:05:58 +0200997 LY_CHECK_ERR_GOTO(!lybctx->lybctx, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko60ea6352020-06-29 13:39:39 +0200998
Radek Krejci1798aae2020-07-14 13:26:06 +0200999 lybctx->lybctx->in = in;
1000 lybctx->lybctx->ctx = ctx;
1001 lybctx->parse_options = parse_options;
1002 lybctx->validate_options = validate_options;
1003 lybctx->int_opts = data_type;
1004 lybctx->free = lyd_lyb_ctx_free;
Michal Vasko60ea6352020-06-29 13:39:39 +02001005
1006 /* read magic number */
Radek Krejci1798aae2020-07-14 13:26:06 +02001007 ret = lyb_parse_magic_number(lybctx->lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +02001008 LY_CHECK_GOTO(ret, cleanup);
1009
1010 /* read header */
Radek Krejci1798aae2020-07-14 13:26:06 +02001011 ret = lyb_parse_header(lybctx->lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +02001012 LY_CHECK_GOTO(ret, cleanup);
1013
1014 /* read used models */
Radek Krejci1798aae2020-07-14 13:26:06 +02001015 ret = lyb_parse_data_models(lybctx->lybctx, lybctx->parse_options);
Michal Vasko60ea6352020-06-29 13:39:39 +02001016 LY_CHECK_GOTO(ret, cleanup);
1017
1018 /* read subtree(s) */
Radek Krejci1798aae2020-07-14 13:26:06 +02001019 while (lybctx->lybctx->in->current[0]) {
1020 ret = lyb_parse_subtree_r(lybctx, parent ? *parent : NULL, &tree);
Michal Vasko60ea6352020-06-29 13:39:39 +02001021 LY_CHECK_GOTO(ret, cleanup);
1022 }
1023
1024 /* read the last zero, parsing finished */
Radek Krejci1798aae2020-07-14 13:26:06 +02001025 ly_in_skip(lybctx->lybctx->in, 1);
Michal Vasko60ea6352020-06-29 13:39:39 +02001026
Radek Krejci1798aae2020-07-14 13:26:06 +02001027 if (data_type == LYD_INTOPT_RPC) {
1028 /* make sure we have parsed some operation */
1029 if (!lybctx->op_node) {
1030 LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_DATA, "Missing the \"rpc\"/\"action\" node.");
1031 ret = LY_EVALID;
1032 goto cleanup;
1033 }
1034
1035 if (op_p) {
1036 *op_p = lybctx->op_node;
1037 }
1038 assert(tree);
1039 } else if (data_type == LYD_INTOPT_REPLY) {
1040 struct lyd_node_inner *iter;
1041
1042 assert(parent);
1043
1044 if (op_p) {
Michal Vasko22df3f02020-08-24 13:29:22 +02001045 *op_p = (struct lyd_node *)(*parent);
Radek Krejci1798aae2020-07-14 13:26:06 +02001046 }
Radek Krejci1e008d22020-08-17 11:37:37 +02001047 for (iter = *parent; iter->parent; iter = iter->parent) {}
Radek Krejci1798aae2020-07-14 13:26:06 +02001048 tree = (struct lyd_node *)iter;
1049 *parent = NULL;
1050
1051 } else if (data_type == LYD_INTOPT_NOTIF) {
1052 /* make sure we have parsed some notification */
1053 if (!lybctx->op_node) {
1054 LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_DATA, "Missing the \"notification\" node.");
1055 ret = LY_EVALID;
1056 goto cleanup;
1057 }
1058
1059 if (op_p) {
1060 *op_p = lybctx->op_node;
1061 }
1062 assert(tree);
1063 }
Michal Vasko60ea6352020-06-29 13:39:39 +02001064
1065cleanup:
Radek Krejci1798aae2020-07-14 13:26:06 +02001066 if (ret || !lydctx_p) {
1067 lyd_lyb_ctx_free((struct lyd_ctx *)lybctx);
1068 if (ret) {
1069 lyd_free_all(tree);
1070 }
1071 } else {
1072 *lydctx_p = (struct lyd_ctx *)lybctx;
1073 if (tree_p) {
1074 *tree_p = tree;
1075 }
Michal Vasko60ea6352020-06-29 13:39:39 +02001076 }
1077 return ret;
1078}
1079
1080LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001081lyd_parse_lyb_data(const struct ly_ctx *ctx, struct ly_in *in, uint32_t parse_options, uint32_t validate_options,
Radek Krejci0f969882020-08-21 16:56:47 +02001082 struct lyd_node **tree_p, struct lyd_ctx **lydctx_p)
Michal Vasko60ea6352020-06-29 13:39:39 +02001083{
Radek Krejci1798aae2020-07-14 13:26:06 +02001084 return lyd_parse_lyb_(ctx, NULL, in, parse_options, validate_options, 0, tree_p, NULL, lydctx_p);
Michal Vasko60ea6352020-06-29 13:39:39 +02001085}
1086
1087LY_ERR
Radek Krejci1798aae2020-07-14 13:26:06 +02001088lyd_parse_lyb_rpc(const struct ly_ctx *ctx, struct ly_in *in, struct lyd_node **tree_p, struct lyd_node **op_p)
Michal Vasko60ea6352020-06-29 13:39:39 +02001089{
Radek Krejci1798aae2020-07-14 13:26:06 +02001090 return lyd_parse_lyb_(ctx, NULL, in, LYD_PARSE_ONLY | LYD_PARSE_STRICT, 0, LYD_INTOPT_RPC, tree_p, op_p, NULL);
Michal Vasko60ea6352020-06-29 13:39:39 +02001091}
1092
1093LY_ERR
Radek Krejci1798aae2020-07-14 13:26:06 +02001094lyd_parse_lyb_notif(const struct ly_ctx *ctx, struct ly_in *in, struct lyd_node **tree_p, struct lyd_node **ntf_p)
Michal Vasko60ea6352020-06-29 13:39:39 +02001095{
Radek Krejci1798aae2020-07-14 13:26:06 +02001096 return lyd_parse_lyb_(ctx, NULL, in, LYD_PARSE_ONLY | LYD_PARSE_STRICT, 0, LYD_INTOPT_NOTIF, tree_p, ntf_p, NULL);
1097}
Michal Vasko60ea6352020-06-29 13:39:39 +02001098
Radek Krejci1798aae2020-07-14 13:26:06 +02001099LY_ERR
1100lyd_parse_lyb_reply(const struct lyd_node *request, struct ly_in *in, struct lyd_node **tree_p, struct lyd_node **op_p)
1101{
1102 LY_ERR ret;
1103 struct lyd_node *req_op, *rep_op = NULL;
Michal Vaskob7be7a82020-08-20 09:09:04 +02001104 const struct ly_ctx *ctx = LYD_CTX(request);
Michal Vasko60ea6352020-06-29 13:39:39 +02001105
1106 /* find request OP */
Michal Vasko56daf732020-08-10 10:57:18 +02001107 LYD_TREE_DFS_BEGIN((struct lyd_node *)request, req_op) {
Michal Vasko60ea6352020-06-29 13:39:39 +02001108 if (req_op->schema->nodetype & (LYS_RPC | LYS_ACTION)) {
1109 break;
1110 }
Michal Vasko56daf732020-08-10 10:57:18 +02001111 LYD_TREE_DFS_END(request, req_op);
Michal Vasko60ea6352020-06-29 13:39:39 +02001112 }
1113 if (!(req_op->schema->nodetype & (LYS_RPC | LYS_ACTION))) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001114 LOGERR(LYD_CTX(request), LY_EINVAL, "No RPC/action in the request found.");
Radek Krejci1798aae2020-07-14 13:26:06 +02001115 return LY_EINVAL;
Michal Vasko60ea6352020-06-29 13:39:39 +02001116 }
1117
1118 /* duplicate request OP with parents */
Radek Krejci1798aae2020-07-14 13:26:06 +02001119 LY_CHECK_RET(lyd_dup_single(req_op, NULL, LYD_DUP_WITH_PARENTS, &rep_op));
Michal Vasko60ea6352020-06-29 13:39:39 +02001120
Radek Krejci1798aae2020-07-14 13:26:06 +02001121 ret = lyd_parse_lyb_(ctx, (struct lyd_node_inner **)&rep_op, in, LYD_PARSE_ONLY | LYD_PARSE_STRICT, 0, LYD_INTOPT_REPLY, tree_p, op_p, NULL);
Michal Vasko60ea6352020-06-29 13:39:39 +02001122
Michal Vasko60ea6352020-06-29 13:39:39 +02001123 lyd_free_all(rep_op);
Michal Vasko60ea6352020-06-29 13:39:39 +02001124
Michal Vasko60ea6352020-06-29 13:39:39 +02001125 return ret;
1126}
1127
1128API int
1129lyd_lyb_data_length(const char *data)
1130{
1131 LY_ERR ret = LY_SUCCESS;
Radek Krejci1798aae2020-07-14 13:26:06 +02001132 struct lylyb_ctx *lybctx;
Michal Vasko60ea6352020-06-29 13:39:39 +02001133 int count, i;
1134 size_t len;
1135 uint8_t buf[LYB_SIZE_MAX];
1136
1137 if (!data) {
1138 return -1;
1139 }
1140
Radek Krejci1798aae2020-07-14 13:26:06 +02001141 lybctx = calloc(1, sizeof *lybctx);
1142 LY_CHECK_ERR_RET(!lybctx, LOGMEM(NULL), LY_EMEM);
1143 ret = ly_in_new_memory(data, &lybctx->in);
Michal Vasko63f3d842020-07-08 10:10:14 +02001144 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko60ea6352020-06-29 13:39:39 +02001145
1146 /* read magic number */
Radek Krejci1798aae2020-07-14 13:26:06 +02001147 ret = lyb_parse_magic_number(lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +02001148 LY_CHECK_GOTO(ret, cleanup);
1149
1150 /* read header */
Radek Krejci1798aae2020-07-14 13:26:06 +02001151 ret = lyb_parse_header(lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +02001152 LY_CHECK_GOTO(ret, cleanup);
1153
1154 /* read model count */
Radek Krejci1798aae2020-07-14 13:26:06 +02001155 lyb_read_number(&count, sizeof count, 2, lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +02001156
1157 /* read all models */
1158 for (i = 0; i < count; ++i) {
1159 /* module name length */
1160 len = 0;
Radek Krejci1798aae2020-07-14 13:26:06 +02001161 lyb_read_number(&len, sizeof len, 2, lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +02001162
1163 /* model name */
Radek Krejci1798aae2020-07-14 13:26:06 +02001164 lyb_read(buf, len, lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +02001165
1166 /* revision */
Radek Krejci1798aae2020-07-14 13:26:06 +02001167 lyb_read(buf, 2, lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +02001168 }
1169
Radek Krejci1798aae2020-07-14 13:26:06 +02001170 while (lybctx->in->current[0]) {
Michal Vasko60ea6352020-06-29 13:39:39 +02001171 /* register a new subtree */
Radek Krejci1798aae2020-07-14 13:26:06 +02001172 ret = lyb_read_start_subtree(lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +02001173 LY_CHECK_GOTO(ret, cleanup);
1174
1175 /* skip it */
Radek Krejci1798aae2020-07-14 13:26:06 +02001176 lyb_skip_subtree(lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +02001177
1178 /* subtree finished */
Radek Krejci1798aae2020-07-14 13:26:06 +02001179 ret = lyb_read_stop_subtree(lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +02001180 LY_CHECK_GOTO(ret, cleanup);
1181 }
1182
1183 /* read the last zero, parsing finished */
Radek Krejci1798aae2020-07-14 13:26:06 +02001184 ly_in_skip(lybctx->in, 1);
Michal Vasko60ea6352020-06-29 13:39:39 +02001185
1186cleanup:
Radek Krejci1798aae2020-07-14 13:26:06 +02001187 count = lybctx->in->current - lybctx->in->start;
Michal Vasko63f3d842020-07-08 10:10:14 +02001188
Radek Krejci1798aae2020-07-14 13:26:06 +02001189 ly_in_free(lybctx->in, 0);
1190 lylyb_ctx_free(lybctx);
1191
Michal Vasko63f3d842020-07-08 10:10:14 +02001192 return ret ? -1 : count;
Michal Vasko60ea6352020-06-29 13:39:39 +02001193}