blob: f1583eefa1e9d40bf984d5cb61fc48183ae2e3f4 [file] [log] [blame]
Michal Vasko60ea6352020-06-29 13:39:39 +02001/**
2 * @file printer_lyb.c
3 * @author Michal Vasko <mvasko@cesnet.cz>
4 * @brief LYB printer for libyang data structure
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>
Michal Vasko60ea6352020-06-29 13:39:39 +020018#include <stdint.h>
Michal Vasko69730152020-10-09 16:30:07 +020019#include <stdio.h>
Michal Vasko60ea6352020-06-29 13:39:39 +020020#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 "hash_table.h"
Michal Vasko60ea6352020-06-29 13:39:39 +020027#include "log.h"
Radek Krejci47fab892020-11-05 17:02:41 +010028#include "out.h"
Michal Vaskoafac7822020-10-20 14:22:26 +020029#include "out_internal.h"
Michal Vaskob4750962022-10-06 15:33:35 +020030#include "plugins_exts/metadata.h"
Radek Krejciad97c5f2020-06-30 09:19:28 +020031#include "printer_data.h"
Michal Vasko60ea6352020-06-29 13:39:39 +020032#include "printer_internal.h"
Radek Krejciad97c5f2020-06-30 09:19:28 +020033#include "set.h"
34#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 "tree_schema_internal.h"
Michal Vasko6b5cb2a2020-11-11 19:11:21 +010040#include "xml.h"
Michal Vasko60ea6352020-06-29 13:39:39 +020041
aPiecek570d7ed2021-09-10 07:15:35 +020042static LY_ERR lyb_print_siblings(struct ly_out *out, const struct lyd_node *node, struct lyd_lyb_ctx *lybctx);
aPiecek270f72b2021-09-09 11:39:31 +020043
Michal Vasko60ea6352020-06-29 13:39:39 +020044/**
45 * @brief Hash table equal callback for checking hash equality only.
Radek Krejci857189e2020-09-01 13:26:36 +020046 *
Michal Vasko62524a92021-02-26 10:08:50 +010047 * Implementation of ::lyht_value_equal_cb.
Michal Vasko60ea6352020-06-29 13:39:39 +020048 */
Radek Krejci857189e2020-09-01 13:26:36 +020049static ly_bool
50lyb_hash_equal_cb(void *UNUSED(val1_p), void *UNUSED(val2_p), ly_bool UNUSED(mod), void *UNUSED(cb_data))
Michal Vasko60ea6352020-06-29 13:39:39 +020051{
52 /* for this purpose, if hash matches, the value does also, we do not want 2 values to have the same hash */
53 return 1;
54}
55
56/**
57 * @brief Hash table equal callback for checking value pointer equality only.
Radek Krejci857189e2020-09-01 13:26:36 +020058 *
Michal Vasko62524a92021-02-26 10:08:50 +010059 * Implementation of ::lyht_value_equal_cb.
Michal Vasko60ea6352020-06-29 13:39:39 +020060 */
Radek Krejci857189e2020-09-01 13:26:36 +020061static ly_bool
62lyb_ptr_equal_cb(void *val1_p, void *val2_p, ly_bool UNUSED(mod), void *UNUSED(cb_data))
Michal Vasko60ea6352020-06-29 13:39:39 +020063{
64 struct lysc_node *val1 = *(struct lysc_node **)val1_p;
65 struct lysc_node *val2 = *(struct lysc_node **)val2_p;
66
67 if (val1 == val2) {
68 return 1;
69 }
70 return 0;
71}
72
73/**
74 * @brief Check that sibling collision hash is safe to insert into hash table.
75 *
76 * @param[in] ht Hash table.
77 * @param[in] sibling Hashed sibling.
78 * @param[in] ht_col_id Sibling hash collision ID.
79 * @param[in] compare_col_id Last collision ID to compare with.
80 * @return LY_SUCCESS when the whole hash sequence does not collide,
81 * @return LY_EEXIST when the whole hash sequence sollides.
82 */
83static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +020084lyb_hash_sequence_check(struct hash_table *ht, struct lysc_node *sibling, LYB_HASH ht_col_id, LYB_HASH compare_col_id)
Michal Vasko60ea6352020-06-29 13:39:39 +020085{
Michal Vasko60ea6352020-06-29 13:39:39 +020086 struct lysc_node **col_node;
87
88 /* get the first node inserted with last hash col ID ht_col_id */
Michal Vasko11f76c82021-04-15 14:36:14 +020089 if (lyht_find(ht, &sibling, lyb_get_hash(sibling, ht_col_id), (void **)&col_node)) {
Michal Vasko60ea6352020-06-29 13:39:39 +020090 /* there is none. valid situation */
91 return LY_SUCCESS;
92 }
93
94 lyht_set_cb(ht, lyb_ptr_equal_cb);
95 do {
Radek Krejci1deb5be2020-08-26 16:43:36 +020096 int64_t j;
Michal Vasko26bbb272022-08-02 14:54:33 +020097
Radek Krejci1deb5be2020-08-26 16:43:36 +020098 for (j = (int64_t)compare_col_id; j > -1; --j) {
Michal Vasko11f76c82021-04-15 14:36:14 +020099 if (lyb_get_hash(sibling, j) != lyb_get_hash(*col_node, j)) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200100 /* one non-colliding hash */
101 break;
102 }
103 }
104 if (j == -1) {
105 /* all whole hash sequences of nodes inserted with last hash col ID compare_col_id collide */
106 lyht_set_cb(ht, lyb_hash_equal_cb);
107 return LY_EEXIST;
108 }
109
110 /* get next node inserted with last hash col ID ht_col_id */
Michal Vasko6374de22022-09-05 15:48:48 +0200111 } while (!lyht_find_next_with_collision_cb(ht, col_node, lyb_get_hash(*col_node, ht_col_id), lyb_hash_equal_cb,
112 (void **)&col_node));
Michal Vasko60ea6352020-06-29 13:39:39 +0200113
114 lyht_set_cb(ht, lyb_hash_equal_cb);
115 return LY_SUCCESS;
116}
117
118/**
119 * @brief Hash all the siblings and add them also into a separate hash table.
120 *
121 * @param[in] sibling Any sibling in all the siblings on one level.
122 * @param[out] ht_p Created hash table.
123 * @return LY_ERR value.
124 */
125static LY_ERR
126lyb_hash_siblings(struct lysc_node *sibling, struct hash_table **ht_p)
127{
128 struct hash_table *ht;
129 const struct lysc_node *parent;
130 const struct lys_module *mod;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200131 LYB_HASH i;
Michal Vasko1e0a80a2020-12-09 18:12:51 +0100132 uint32_t getnext_opts;
Michal Vasko60ea6352020-06-29 13:39:39 +0200133
134 ht = lyht_new(1, sizeof(struct lysc_node *), lyb_hash_equal_cb, NULL, 1);
135 LY_CHECK_ERR_RET(!ht, LOGMEM(sibling->module->ctx), LY_EMEM);
136
Michal Vasko1e0a80a2020-12-09 18:12:51 +0100137 getnext_opts = 0;
Michal Vaskod1e53b92021-01-28 13:11:06 +0100138 if (sibling->flags & LYS_IS_OUTPUT) {
Michal Vasko1e0a80a2020-12-09 18:12:51 +0100139 getnext_opts = LYS_GETNEXT_OUTPUT;
140 }
141
Michal Vasko60ea6352020-06-29 13:39:39 +0200142 parent = lysc_data_parent(sibling);
143 mod = sibling->module;
144
145 sibling = NULL;
Michal Vasko1e0a80a2020-12-09 18:12:51 +0100146 while ((sibling = (struct lysc_node *)lys_getnext(sibling, parent, mod->compiled, getnext_opts))) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200147 /* find the first non-colliding hash (or specifically non-colliding hash sequence) */
148 for (i = 0; i < LYB_HASH_BITS; ++i) {
149 /* check that we are not colliding with nodes inserted with a lower collision ID than ours */
Radek Krejci1deb5be2020-08-26 16:43:36 +0200150 int64_t j;
Michal Vasko26bbb272022-08-02 14:54:33 +0200151
Radek Krejci1deb5be2020-08-26 16:43:36 +0200152 for (j = (int64_t)i - 1; j > -1; --j) {
153 if (lyb_hash_sequence_check(ht, sibling, (LYB_HASH)j, i)) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200154 break;
155 }
156 }
157 if (j > -1) {
158 /* some check failed, we must use a higher collision ID */
159 continue;
160 }
161
162 /* try to insert node with the current collision ID */
Michal Vasko11f76c82021-04-15 14:36:14 +0200163 if (!lyht_insert_with_resize_cb(ht, &sibling, lyb_get_hash(sibling, i), lyb_ptr_equal_cb, NULL)) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200164 /* success, no collision */
165 break;
166 }
167
168 /* make sure we really cannot insert it with this hash col ID (meaning the whole hash sequence is colliding) */
169 if (i && !lyb_hash_sequence_check(ht, sibling, i, i)) {
170 /* it can be inserted after all, even though there is already a node with the same last collision ID */
171 lyht_set_cb(ht, lyb_ptr_equal_cb);
Michal Vasko11f76c82021-04-15 14:36:14 +0200172 if (lyht_insert(ht, &sibling, lyb_get_hash(sibling, i), NULL)) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200173 LOGINT(sibling->module->ctx);
174 lyht_set_cb(ht, lyb_hash_equal_cb);
175 lyht_free(ht);
176 return LY_EINT;
177 }
178 lyht_set_cb(ht, lyb_hash_equal_cb);
179 break;
180 }
181 /* there is still another colliding schema node with the same hash sequence, try higher collision ID */
182 }
183
184 if (i == LYB_HASH_BITS) {
185 /* wow */
186 LOGINT(sibling->module->ctx);
187 lyht_free(ht);
188 return LY_EINT;
189 }
190 }
191
192 /* change val equal callback so that the HT is usable for finding value hashes */
193 lyht_set_cb(ht, lyb_ptr_equal_cb);
194
195 *ht_p = ht;
196 return LY_SUCCESS;
197}
198
199/**
200 * @brief Find node hash in a hash table.
201 *
202 * @param[in] ht Hash table to search in.
203 * @param[in] node Node to find.
204 * @param[out] hash_p First non-colliding hash found.
205 * @return LY_ERR value.
206 */
207static LY_ERR
208lyb_hash_find(struct hash_table *ht, struct lysc_node *node, LYB_HASH *hash_p)
209{
210 LYB_HASH hash;
211 uint32_t i;
212
213 for (i = 0; i < LYB_HASH_BITS; ++i) {
Michal Vasko11f76c82021-04-15 14:36:14 +0200214 hash = lyb_get_hash(node, i);
Michal Vasko60ea6352020-06-29 13:39:39 +0200215 if (!hash) {
216 LOGINT_RET(node->module->ctx);
217 }
218
219 if (!lyht_find(ht, &node, hash, NULL)) {
220 /* success, no collision */
221 break;
222 }
223 }
224 /* cannot happen, we already calculated the hash */
225 if (i == LYB_HASH_BITS) {
226 LOGINT_RET(node->module->ctx);
227 }
228
229 *hash_p = hash;
230 return LY_SUCCESS;
231}
232
233/**
aPiecek6828a312021-09-17 15:53:18 +0200234 * @brief Write metadata about siblings.
235 *
236 * @param[in] out Out structure.
237 * @param[in] sib Contains metadata that is written.
238 */
239static LY_ERR
240lyb_write_sibling_meta(struct ly_out *out, struct lyd_lyb_sibling *sib)
241{
242 uint8_t meta_buf[LYB_META_BYTES];
243 uint64_t num = 0;
244
245 /* write the meta chunk information */
aPiecek58fef2e2021-09-30 13:21:51 +0200246 num = htole64((uint64_t)sib->written & LYB_SIZE_MAX);
aPiecek6828a312021-09-17 15:53:18 +0200247 memcpy(meta_buf, &num, LYB_SIZE_BYTES);
aPiecek58fef2e2021-09-30 13:21:51 +0200248 num = htole64((uint64_t)sib->inner_chunks & LYB_INCHUNK_MAX);
aPiecek6828a312021-09-17 15:53:18 +0200249 memcpy(meta_buf + LYB_SIZE_BYTES, &num, LYB_INCHUNK_BYTES);
250
251 LY_CHECK_RET(ly_write_skipped(out, sib->position, (char *)&meta_buf, LYB_META_BYTES));
252
253 return LY_SUCCESS;
254}
255
256/**
Michal Vasko60ea6352020-06-29 13:39:39 +0200257 * @brief Write LYB data fully handling the metadata.
258 *
259 * @param[in] out Out structure.
260 * @param[in] buf Source buffer.
261 * @param[in] count Number of bytes to write.
262 * @param[in] lybctx LYB context.
263 * @return LY_ERR value.
264 */
265static LY_ERR
Radek Krejci1798aae2020-07-14 13:26:06 +0200266lyb_write(struct ly_out *out, const uint8_t *buf, size_t count, struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200267{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200268 LY_ARRAY_COUNT_TYPE u;
aPiecek570d7ed2021-09-10 07:15:35 +0200269 struct lyd_lyb_sibling *full, *iter;
Michal Vasko5233e962020-08-14 14:26:20 +0200270 size_t to_write;
Michal Vasko60ea6352020-06-29 13:39:39 +0200271
272 while (1) {
273 /* check for full data chunks */
274 to_write = count;
275 full = NULL;
aPiecek570d7ed2021-09-10 07:15:35 +0200276 LY_ARRAY_FOR(lybctx->siblings, u) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200277 /* we want the innermost chunks resolved first, so replace previous full chunks */
aPiecek570d7ed2021-09-10 07:15:35 +0200278 if (lybctx->siblings[u].written + to_write >= LYB_SIZE_MAX) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200279 /* full chunk, do not write more than allowed */
aPiecek570d7ed2021-09-10 07:15:35 +0200280 to_write = LYB_SIZE_MAX - lybctx->siblings[u].written;
281 full = &lybctx->siblings[u];
Michal Vasko60ea6352020-06-29 13:39:39 +0200282 }
283 }
284
285 if (!full && !count) {
286 break;
287 }
288
289 /* we are actually writing some data, not just finishing another chunk */
290 if (to_write) {
Michal Vasko5233e962020-08-14 14:26:20 +0200291 LY_CHECK_RET(ly_write_(out, (char *)buf, to_write));
Michal Vasko60ea6352020-06-29 13:39:39 +0200292
aPiecek570d7ed2021-09-10 07:15:35 +0200293 LY_ARRAY_FOR(lybctx->siblings, u) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200294 /* increase all written counters */
aPiecek570d7ed2021-09-10 07:15:35 +0200295 lybctx->siblings[u].written += to_write;
296 assert(lybctx->siblings[u].written <= LYB_SIZE_MAX);
Michal Vasko60ea6352020-06-29 13:39:39 +0200297 }
298 /* decrease count/buf */
Michal Vasko5233e962020-08-14 14:26:20 +0200299 count -= to_write;
300 buf += to_write;
Michal Vasko60ea6352020-06-29 13:39:39 +0200301 }
302
303 if (full) {
304 /* write the meta information (inner chunk count and chunk size) */
aPiecek6828a312021-09-17 15:53:18 +0200305 LY_CHECK_RET(lyb_write_sibling_meta(out, full));
Michal Vasko60ea6352020-06-29 13:39:39 +0200306
307 /* zero written and inner chunks */
308 full->written = 0;
309 full->inner_chunks = 0;
310
311 /* skip space for another chunk size */
Michal Vasko5233e962020-08-14 14:26:20 +0200312 LY_CHECK_RET(ly_write_skip(out, LYB_META_BYTES, &full->position));
Michal Vasko60ea6352020-06-29 13:39:39 +0200313
314 /* increase inner chunk count */
aPiecek570d7ed2021-09-10 07:15:35 +0200315 for (iter = &lybctx->siblings[0]; iter != full; ++iter) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200316 if (iter->inner_chunks == LYB_INCHUNK_MAX) {
317 LOGINT(lybctx->ctx);
318 return LY_EINT;
319 }
320 ++iter->inner_chunks;
321 }
322 }
323 }
324
325 return LY_SUCCESS;
326}
327
328/**
aPiecek570d7ed2021-09-10 07:15:35 +0200329 * @brief Stop the current "siblings" - write its final metadata.
Michal Vasko60ea6352020-06-29 13:39:39 +0200330 *
331 * @param[in] out Out structure.
332 * @param[in] lybctx LYB context.
333 * @return LY_ERR value.
334 */
335static LY_ERR
aPiecek570d7ed2021-09-10 07:15:35 +0200336lyb_write_stop_siblings(struct ly_out *out, struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200337{
Michal Vasko60ea6352020-06-29 13:39:39 +0200338 /* write the meta chunk information */
aPiecek6828a312021-09-17 15:53:18 +0200339 lyb_write_sibling_meta(out, &LYB_LAST_SIBLING(lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200340
aPiecek570d7ed2021-09-10 07:15:35 +0200341 LY_ARRAY_DECREMENT(lybctx->siblings);
Michal Vasko60ea6352020-06-29 13:39:39 +0200342 return LY_SUCCESS;
343}
344
345/**
aPiecek570d7ed2021-09-10 07:15:35 +0200346 * @brief Start a new "siblings" - skip bytes for its metadata.
Michal Vasko60ea6352020-06-29 13:39:39 +0200347 *
348 * @param[in] out Out structure.
349 * @param[in] lybctx LYB context.
350 * @return LY_ERR value.
351 */
352static LY_ERR
aPiecek570d7ed2021-09-10 07:15:35 +0200353lyb_write_start_siblings(struct ly_out *out, struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200354{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200355 LY_ARRAY_COUNT_TYPE u;
Michal Vasko60ea6352020-06-29 13:39:39 +0200356
aPiecek570d7ed2021-09-10 07:15:35 +0200357 u = LY_ARRAY_COUNT(lybctx->siblings);
358 if (u == lybctx->sibling_size) {
359 LY_ARRAY_CREATE_RET(lybctx->ctx, lybctx->siblings, u + LYB_SIBLING_STEP, LY_EMEM);
360 lybctx->sibling_size = u + LYB_SIBLING_STEP;
Michal Vasko60ea6352020-06-29 13:39:39 +0200361 }
362
aPiecek570d7ed2021-09-10 07:15:35 +0200363 LY_ARRAY_INCREMENT(lybctx->siblings);
364 LYB_LAST_SIBLING(lybctx).written = 0;
365 LYB_LAST_SIBLING(lybctx).inner_chunks = 0;
Michal Vasko60ea6352020-06-29 13:39:39 +0200366
367 /* another inner chunk */
aPiecek570d7ed2021-09-10 07:15:35 +0200368 for (u = 0; u < LY_ARRAY_COUNT(lybctx->siblings) - 1; ++u) {
369 if (lybctx->siblings[u].inner_chunks == LYB_INCHUNK_MAX) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200370 LOGINT(lybctx->ctx);
Michal Vasko5233e962020-08-14 14:26:20 +0200371 return LY_EINT;
Michal Vasko60ea6352020-06-29 13:39:39 +0200372 }
aPiecek570d7ed2021-09-10 07:15:35 +0200373 ++lybctx->siblings[u].inner_chunks;
Michal Vasko60ea6352020-06-29 13:39:39 +0200374 }
375
aPiecek570d7ed2021-09-10 07:15:35 +0200376 LY_CHECK_RET(ly_write_skip(out, LYB_META_BYTES, &LYB_LAST_SIBLING(lybctx).position));
Michal Vasko60ea6352020-06-29 13:39:39 +0200377
378 return LY_SUCCESS;
379}
380
381/**
382 * @brief Write a number.
383 *
384 * @param[in] num Number to write.
385 * @param[in] bytes Actual accessible bytes of @p num.
386 * @param[in] out Out structure.
387 * @param[in] lybctx LYB context.
388 * @return LY_ERR value.
389 */
390static LY_ERR
Radek Krejci1798aae2020-07-14 13:26:06 +0200391lyb_write_number(uint64_t num, size_t bytes, struct ly_out *out, struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200392{
393 /* correct byte order */
394 num = htole64(num);
395
396 return lyb_write(out, (uint8_t *)&num, bytes, lybctx);
397}
398
399/**
400 * @brief Write a string.
401 *
402 * @param[in] str String to write.
403 * @param[in] str_len Length of @p str.
Michal Vasko9883a3e2022-03-31 12:16:00 +0200404 * @param[in] len_size Size of @p str_len in bytes.
Michal Vasko60ea6352020-06-29 13:39:39 +0200405 * @param[in] out Out structure.
406 * @param[in] lybctx LYB context.
407 * @return LY_ERR value.
408 */
409static LY_ERR
aPieceke99345d2021-09-30 12:49:59 +0200410lyb_write_string(const char *str, size_t str_len, uint8_t len_size, struct ly_out *out, struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200411{
aPieceke99345d2021-09-30 12:49:59 +0200412 ly_bool error;
413
Michal Vasko60ea6352020-06-29 13:39:39 +0200414 if (!str) {
415 str = "";
Michal Vasko30667352020-08-13 09:06:14 +0200416 LY_CHECK_ERR_RET(str_len, LOGINT(lybctx->ctx), LY_EINT);
Michal Vasko60ea6352020-06-29 13:39:39 +0200417 }
aPieceke99345d2021-09-30 12:49:59 +0200418
Michal Vasko60ea6352020-06-29 13:39:39 +0200419 if (!str_len) {
420 str_len = strlen(str);
421 }
422
aPieceke99345d2021-09-30 12:49:59 +0200423 switch (len_size) {
424 case sizeof(uint8_t):
425 error = str_len > UINT8_MAX;
426 break;
427 case sizeof(uint16_t):
428 error = str_len > UINT16_MAX;
429 break;
430 case sizeof(uint32_t):
431 error = str_len > UINT32_MAX;
432 break;
433 case sizeof(uint64_t):
434 error = str_len > UINT64_MAX;
435 break;
436 default:
437 error = 1;
Michal Vasko60ea6352020-06-29 13:39:39 +0200438 }
aPieceke99345d2021-09-30 12:49:59 +0200439 if (error) {
440 LOGINT(lybctx->ctx);
441 return LY_EINT;
442 }
443
444 LY_CHECK_RET(lyb_write_number(str_len, len_size, out, lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200445
Michal Vasko63f3d842020-07-08 10:10:14 +0200446 LY_CHECK_RET(lyb_write(out, (const uint8_t *)str, str_len, lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200447
448 return LY_SUCCESS;
449}
450
451/**
452 * @brief Print YANG module info.
453 *
454 * @param[in] out Out structure.
455 * @param[in] mod Module to print.
456 * @param[in] lybctx LYB context.
457 * @return LY_ERR value.
458 */
459static LY_ERR
Radek Krejci1798aae2020-07-14 13:26:06 +0200460lyb_print_model(struct ly_out *out, const struct lys_module *mod, struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200461{
Michal Vasko60ea6352020-06-29 13:39:39 +0200462 uint16_t revision;
Michal Vasko9883a3e2022-03-31 12:16:00 +0200463 int r;
Michal Vasko60ea6352020-06-29 13:39:39 +0200464
465 /* model name length and model name */
Michal Vasko9883a3e2022-03-31 12:16:00 +0200466 LY_CHECK_RET(lyb_write_string(mod->name, 0, sizeof(uint16_t), out, lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200467
468 /* model revision as XXXX XXXX XXXX XXXX (2B) (year is offset from 2000)
469 * YYYY YYYM MMMD DDDD */
470 revision = 0;
Michal Vasko9883a3e2022-03-31 12:16:00 +0200471 if (mod->revision) {
472 r = atoi(mod->revision);
Radek Krejcif13b87b2020-12-01 22:02:17 +0100473 r -= LYB_REV_YEAR_OFFSET;
474 r <<= LYB_REV_YEAR_SHIFT;
Michal Vasko60ea6352020-06-29 13:39:39 +0200475
476 revision |= r;
477
Radek Krejcif13b87b2020-12-01 22:02:17 +0100478 r = atoi(mod->revision + ly_strlen_const("YYYY-"));
479 r <<= LYB_REV_MONTH_SHIFT;
Michal Vasko60ea6352020-06-29 13:39:39 +0200480
481 revision |= r;
482
Radek Krejcif13b87b2020-12-01 22:02:17 +0100483 r = atoi(mod->revision + ly_strlen_const("YYYY-MM-"));
Michal Vasko60ea6352020-06-29 13:39:39 +0200484
485 revision |= r;
486 }
487 LY_CHECK_RET(lyb_write_number(revision, sizeof revision, out, lybctx));
488
Michal Vasko9883a3e2022-03-31 12:16:00 +0200489 /* fill cached hashes, if not already */
490 lyb_cache_module_hash(mod);
Michal Vasko11f76c82021-04-15 14:36:14 +0200491
Michal Vasko60ea6352020-06-29 13:39:39 +0200492 return LY_SUCCESS;
493}
494
495/**
496 * @brief Print all used YANG modules.
497 *
498 * @param[in] out Out structure.
499 * @param[in] root Data root.
500 * @param[in] lybctx LYB context.
501 * @return LY_ERR value.
502 */
503static LY_ERR
Radek Krejci1798aae2020-07-14 13:26:06 +0200504lyb_print_data_models(struct ly_out *out, const struct lyd_node *root, struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200505{
506 struct ly_set *set;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200507 LY_ARRAY_COUNT_TYPE u;
Michal Vasko60ea6352020-06-29 13:39:39 +0200508 LY_ERR ret = LY_SUCCESS;
509 struct lys_module *mod;
Michal Vaskof4b4d002021-08-23 12:16:02 +0200510 const struct lyd_node *elem, *node;
Michal Vasko60ea6352020-06-29 13:39:39 +0200511 uint32_t i;
512
Radek Krejciba03a5a2020-08-27 14:40:41 +0200513 LY_CHECK_RET(ly_set_new(&set));
Michal Vasko60ea6352020-06-29 13:39:39 +0200514
515 /* collect all data node modules */
Michal Vaskof4b4d002021-08-23 12:16:02 +0200516 LY_LIST_FOR(root, elem) {
517 LYD_TREE_DFS_BEGIN(elem, node) {
518 if (node->schema) {
519 mod = node->schema->module;
520 ret = ly_set_add(set, mod, 0, NULL);
521 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko60ea6352020-06-29 13:39:39 +0200522
Michal Vaskof4b4d002021-08-23 12:16:02 +0200523 /* add also their modules deviating or augmenting them */
524 LY_ARRAY_FOR(mod->deviated_by, u) {
525 ret = ly_set_add(set, mod->deviated_by[u], 0, NULL);
526 LY_CHECK_GOTO(ret, cleanup);
527 }
528 LY_ARRAY_FOR(mod->augmented_by, u) {
529 ret = ly_set_add(set, mod->augmented_by[u], 0, NULL);
530 LY_CHECK_GOTO(ret, cleanup);
531 }
Michal Vasko60ea6352020-06-29 13:39:39 +0200532
Michal Vaskof4b4d002021-08-23 12:16:02 +0200533 /* only top-level nodes are processed */
534 LYD_TREE_DFS_continue = 1;
535 }
536
537 LYD_TREE_DFS_END(elem, node);
Michal Vasko60ea6352020-06-29 13:39:39 +0200538 }
539 }
540
541 /* now write module count on 2 bytes */
542 LY_CHECK_GOTO(ret = lyb_write_number(set->count, 2, out, lybctx), cleanup);
543
544 /* and all the used models */
545 for (i = 0; i < set->count; ++i) {
546 LY_CHECK_GOTO(ret = lyb_print_model(out, set->objs[i], lybctx), cleanup);
547 }
548
549cleanup:
550 ly_set_free(set, NULL);
551 return ret;
552}
553
554/**
555 * @brief Print LYB magic number.
556 *
557 * @param[in] out Out structure.
Michal Vasko60ea6352020-06-29 13:39:39 +0200558 * @return LY_ERR value.
559 */
560static LY_ERR
Michal Vasko63f3d842020-07-08 10:10:14 +0200561lyb_print_magic_number(struct ly_out *out)
Michal Vasko60ea6352020-06-29 13:39:39 +0200562{
Michal Vasko60ea6352020-06-29 13:39:39 +0200563 /* 'l', 'y', 'b' - 0x6c7962 */
Radek Krejcif13b87b2020-12-01 22:02:17 +0100564 char magic_number[] = {'l', 'y', 'b'};
Michal Vasko60ea6352020-06-29 13:39:39 +0200565
Radek Krejcidefd4d72020-12-01 12:20:30 +0100566 LY_CHECK_RET(ly_write_(out, magic_number, 3));
Michal Vasko60ea6352020-06-29 13:39:39 +0200567
568 return LY_SUCCESS;
569}
570
571/**
572 * @brief Print LYB header.
573 *
574 * @param[in] out Out structure.
Michal Vasko60ea6352020-06-29 13:39:39 +0200575 * @return LY_ERR value.
576 */
577static LY_ERR
Michal Vasko63f3d842020-07-08 10:10:14 +0200578lyb_print_header(struct ly_out *out)
Michal Vasko60ea6352020-06-29 13:39:39 +0200579{
Michal Vasko60ea6352020-06-29 13:39:39 +0200580 uint8_t byte = 0;
581
582 /* version, future flags */
583 byte |= LYB_VERSION_NUM;
584
Michal Vasko5233e962020-08-14 14:26:20 +0200585 LY_CHECK_RET(ly_write_(out, (char *)&byte, 1));
Michal Vasko60ea6352020-06-29 13:39:39 +0200586
587 return LY_SUCCESS;
588}
589
590/**
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100591 * @brief Print prefix data.
Michal Vasko60ea6352020-06-29 13:39:39 +0200592 *
593 * @param[in] out Out structure.
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100594 * @param[in] format Value prefix format.
Radek Krejci8df109d2021-04-23 12:19:08 +0200595 * @param[in] prefix_data Format-specific data for resolving any prefixes (see ::ly_resolve_prefix).
Michal Vasko60ea6352020-06-29 13:39:39 +0200596 * @param[in] lybctx LYB context.
597 * @return LY_ERR value.
598 */
599static LY_ERR
Radek Krejci8df109d2021-04-23 12:19:08 +0200600lyb_print_prefix_data(struct ly_out *out, LY_VALUE_FORMAT format, const void *prefix_data, struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200601{
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100602 const struct ly_set *set;
603 const struct lyxml_ns *ns;
604 uint32_t i;
Michal Vasko60ea6352020-06-29 13:39:39 +0200605
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100606 switch (format) {
Radek Krejci8df109d2021-04-23 12:19:08 +0200607 case LY_VALUE_XML:
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100608 set = prefix_data;
609 if (!set) {
610 /* no prefix data */
611 i = 0;
612 LY_CHECK_RET(lyb_write(out, (uint8_t *)&i, 1, lybctx));
613 break;
614 }
615 if (set->count > UINT8_MAX) {
616 LOGERR(lybctx->ctx, LY_EINT, "Maximum supported number of prefixes is %u.", UINT8_MAX);
617 return LY_EINT;
618 }
Michal Vasko60ea6352020-06-29 13:39:39 +0200619
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100620 /* write number of prefixes on 1 byte */
Michal Vasko403beac2021-08-24 08:27:52 +0200621 LY_CHECK_RET(lyb_write_number(set->count, 1, out, lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200622
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100623 /* write all the prefixes */
624 for (i = 0; i < set->count; ++i) {
625 ns = set->objs[i];
Michal Vasko60ea6352020-06-29 13:39:39 +0200626
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100627 /* prefix */
aPieceke99345d2021-09-30 12:49:59 +0200628 LY_CHECK_RET(lyb_write_string(ns->prefix, 0, sizeof(uint16_t), out, lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200629
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100630 /* namespace */
aPieceke99345d2021-09-30 12:49:59 +0200631 LY_CHECK_RET(lyb_write_string(ns->uri, 0, sizeof(uint16_t), out, lybctx));
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100632 }
633 break;
Radek Krejci8df109d2021-04-23 12:19:08 +0200634 case LY_VALUE_JSON:
Radek Krejcif9943642021-04-26 10:18:21 +0200635 case LY_VALUE_LYB:
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100636 /* nothing to print */
637 break;
638 default:
639 LOGINT_RET(lybctx->ctx);
Michal Vasko60ea6352020-06-29 13:39:39 +0200640 }
641
642 return LY_SUCCESS;
643}
644
645/**
Michal Vasko60ea6352020-06-29 13:39:39 +0200646 * @brief Print term node.
647 *
648 * @param[in] term Node to print.
649 * @param[in] out Out structure.
650 * @param[in] lybctx LYB context.
651 * @return LY_ERR value.
652 */
653static LY_ERR
aPieceka19ca152021-09-09 12:27:35 +0200654lyb_print_term_value(struct lyd_node_term *term, struct ly_out *out, struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200655{
aPiecekaa5b70a2021-08-30 08:33:25 +0200656 LY_ERR ret = LY_SUCCESS;
aPiecekea304e32021-08-18 09:13:47 +0200657 ly_bool dynamic = 0;
658 void *value;
659 size_t value_len = 0;
aPiecekaa5b70a2021-08-30 08:33:25 +0200660 int32_t lyb_data_len;
661 lyplg_type_print_clb print;
aPiecekea304e32021-08-18 09:13:47 +0200662
663 assert(term->value.realtype && term->value.realtype->plugin && term->value.realtype->plugin->print &&
664 term->schema);
665
aPiecekaa5b70a2021-08-30 08:33:25 +0200666 /* Get length of LYB data to print. */
667 lyb_data_len = term->value.realtype->plugin->lyb_data_len;
aPiecekea304e32021-08-18 09:13:47 +0200668
aPiecekaa5b70a2021-08-30 08:33:25 +0200669 /* Get value and also print its length only if size is not fixed. */
670 print = term->value.realtype->plugin->print;
671 if (lyb_data_len < 0) {
672 /* Variable-length data. */
673
674 /* Get value and its length from plugin. */
675 value = (void *)print(term->schema->module->ctx, &term->value,
676 LY_VALUE_LYB, NULL, &dynamic, &value_len);
677 LY_CHECK_GOTO(ret, cleanup);
678
679 if (value_len > UINT32_MAX) {
680 LOGERR(lybctx->ctx, LY_EINT, "The maximum length of the LYB data "
681 "from a term node must not exceed %lu.", UINT32_MAX);
682 ret = LY_EINT;
683 goto cleanup;
684 }
685
aPieceke99345d2021-09-30 12:49:59 +0200686 /* Print the length of the data as 64-bit unsigned integer. */
687 ret = lyb_write_number(value_len, sizeof(uint64_t), out, lybctx);
aPiecekaa5b70a2021-08-30 08:33:25 +0200688 LY_CHECK_GOTO(ret, cleanup);
689 } else {
690 /* Fixed-length data. */
691
692 /* Get value from plugin. */
693 value = (void *)print(term->schema->module->ctx, &term->value,
694 LY_VALUE_LYB, NULL, &dynamic, NULL);
695 LY_CHECK_GOTO(ret, cleanup);
696
697 /* Copy the length from the compiled node. */
698 value_len = lyb_data_len;
aPiecekea304e32021-08-18 09:13:47 +0200699 }
700
aPiecekaa5b70a2021-08-30 08:33:25 +0200701 /* Print value. */
aPiecekea304e32021-08-18 09:13:47 +0200702 if (value_len > 0) {
aPiecekaa5b70a2021-08-30 08:33:25 +0200703 /* Print the value simply as it is. */
aPiecekea304e32021-08-18 09:13:47 +0200704 ret = lyb_write(out, value, value_len, lybctx);
705 LY_CHECK_GOTO(ret, cleanup);
706 }
707
708cleanup:
709 if (dynamic) {
710 free(value);
711 }
712
713 return ret;
Michal Vasko60ea6352020-06-29 13:39:39 +0200714}
715
716/**
717 * @brief Print YANG node metadata.
718 *
719 * @param[in] out Out structure.
720 * @param[in] node Data node whose metadata to print.
721 * @param[in] lybctx LYB context.
722 * @return LY_ERR value.
723 */
724static LY_ERR
725lyb_print_metadata(struct ly_out *out, const struct lyd_node *node, struct lyd_lyb_ctx *lybctx)
726{
Michal Vasko60ea6352020-06-29 13:39:39 +0200727 uint8_t count = 0;
728 const struct lys_module *wd_mod = NULL;
729 struct lyd_meta *iter;
Michal Vasko60ea6352020-06-29 13:39:39 +0200730
731 /* with-defaults */
732 if (node->schema->nodetype & LYD_NODE_TERM) {
Radek Krejci7931b192020-06-25 17:05:03 +0200733 if (((node->flags & LYD_DEFAULT) && (lybctx->print_options & (LYD_PRINT_WD_ALL_TAG | LYD_PRINT_WD_IMPL_TAG))) ||
Radek Krejci19611252020-10-04 13:54:53 +0200734 ((lybctx->print_options & LYD_PRINT_WD_ALL_TAG) && lyd_is_default(node))) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200735 /* we have implicit OR explicit default node, print attribute only if context include with-defaults schema */
736 wd_mod = ly_ctx_get_module_latest(node->schema->module->ctx, "ietf-netconf-with-defaults");
737 }
738 }
739
740 /* count metadata */
741 if (wd_mod) {
742 ++count;
743 }
744 for (iter = node->meta; iter; iter = iter->next) {
745 if (count == UINT8_MAX) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200746 LOGERR(lybctx->lybctx->ctx, LY_EINT, "Maximum supported number of data node metadata is %u.", UINT8_MAX);
Michal Vasko60ea6352020-06-29 13:39:39 +0200747 return LY_EINT;
748 }
749 ++count;
750 }
751
752 /* write number of metadata on 1 byte */
Radek Krejci1798aae2020-07-14 13:26:06 +0200753 LY_CHECK_RET(lyb_write(out, &count, 1, lybctx->lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200754
755 if (wd_mod) {
756 /* write the "default" metadata */
Radek Krejci1798aae2020-07-14 13:26:06 +0200757 LY_CHECK_RET(lyb_print_model(out, wd_mod, lybctx->lybctx));
aPieceke99345d2021-09-30 12:49:59 +0200758 LY_CHECK_RET(lyb_write_string("default", 0, sizeof(uint16_t), out, lybctx->lybctx));
759 LY_CHECK_RET(lyb_write_string("true", 0, sizeof(uint16_t), out, lybctx->lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200760 }
761
762 /* write all the node metadata */
763 LY_LIST_FOR(node->meta, iter) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200764 /* model */
Radek Krejci1798aae2020-07-14 13:26:06 +0200765 LY_CHECK_RET(lyb_print_model(out, iter->annotation->module, lybctx->lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200766
767 /* annotation name with length */
aPieceke99345d2021-09-30 12:49:59 +0200768 LY_CHECK_RET(lyb_write_string(iter->name, 0, sizeof(uint16_t), out, lybctx->lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200769
Michal Vasko60ea6352020-06-29 13:39:39 +0200770 /* metadata value */
aPieceke99345d2021-09-30 12:49:59 +0200771 LY_CHECK_RET(lyb_write_string(lyd_get_meta_value(iter), 0, sizeof(uint64_t), out, lybctx->lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200772 }
773
774 return LY_SUCCESS;
775}
776
777/**
778 * @brief Print opaque node attributes.
779 *
780 * @param[in] out Out structure.
781 * @param[in] node Opaque node whose attributes to print.
782 * @param[in] lybctx LYB context.
783 * @return LY_ERR value.
784 */
785static LY_ERR
Radek Krejci1798aae2020-07-14 13:26:06 +0200786lyb_print_attributes(struct ly_out *out, const struct lyd_node_opaq *node, struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200787{
788 uint8_t count = 0;
Radek Krejci5536d282020-08-04 23:27:44 +0200789 struct lyd_attr *iter;
Michal Vasko60ea6352020-06-29 13:39:39 +0200790
791 for (iter = node->attr; iter; iter = iter->next) {
792 if (count == UINT8_MAX) {
793 LOGERR(lybctx->ctx, LY_EINT, "Maximum supported number of data node attributes is %u.", UINT8_MAX);
794 return LY_EINT;
795 }
796 ++count;
797 }
798
799 /* write number of attributes on 1 byte */
800 LY_CHECK_RET(lyb_write(out, &count, 1, lybctx));
801
802 /* write all the attributes */
803 LY_LIST_FOR(node->attr, iter) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200804 /* prefix */
aPieceke99345d2021-09-30 12:49:59 +0200805 LY_CHECK_RET(lyb_write_string(iter->name.prefix, 0, sizeof(uint16_t), out, lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200806
807 /* namespace */
aPieceke99345d2021-09-30 12:49:59 +0200808 LY_CHECK_RET(lyb_write_string(iter->name.module_name, 0, sizeof(uint16_t), out, lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200809
810 /* name */
aPieceke99345d2021-09-30 12:49:59 +0200811 LY_CHECK_RET(lyb_write_string(iter->name.name, 0, sizeof(uint16_t), out, lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200812
Michal Vasko60ea6352020-06-29 13:39:39 +0200813 /* format */
814 LY_CHECK_RET(lyb_write_number(iter->format, 1, out, lybctx));
815
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100816 /* value prefixes */
817 LY_CHECK_RET(lyb_print_prefix_data(out, iter->format, iter->val_prefix_data, lybctx));
818
Michal Vasko60ea6352020-06-29 13:39:39 +0200819 /* value */
aPieceke99345d2021-09-30 12:49:59 +0200820 LY_CHECK_RET(lyb_write_string(iter->value, 0, sizeof(uint64_t), out, lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200821 }
822
823 return LY_SUCCESS;
824}
825
826/**
827 * @brief Print schema node hash.
828 *
829 * @param[in] out Out structure.
830 * @param[in] schema Schema node whose hash to print.
831 * @param[in,out] sibling_ht Cached hash table for these siblings, created if NULL.
832 * @param[in] lybctx LYB context.
833 * @return LY_ERR value.
834 */
835static LY_ERR
Radek Krejci1798aae2020-07-14 13:26:06 +0200836lyb_print_schema_hash(struct ly_out *out, struct lysc_node *schema, struct hash_table **sibling_ht, struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200837{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200838 LY_ARRAY_COUNT_TYPE u;
Michal Vasko60ea6352020-06-29 13:39:39 +0200839 uint32_t i;
840 LYB_HASH hash;
841 struct lyd_lyb_sib_ht *sib_ht;
842 struct lysc_node *first_sibling;
843
844 if (!schema) {
845 /* opaque node, write empty hash */
846 hash = 0;
847 LY_CHECK_RET(lyb_write(out, &hash, sizeof hash, lybctx));
848 return LY_SUCCESS;
849 }
850
851 /* create whole sibling HT if not already created and saved */
852 if (!*sibling_ht) {
Michal Vasko1e0a80a2020-12-09 18:12:51 +0100853 /* get first schema data sibling */
854 first_sibling = (struct lysc_node *)lys_getnext(NULL, lysc_data_parent(schema), schema->module->compiled,
Michal Vaskod1e53b92021-01-28 13:11:06 +0100855 (schema->flags & LYS_IS_OUTPUT) ? LYS_GETNEXT_OUTPUT : 0);
Michal Vasko60ea6352020-06-29 13:39:39 +0200856 LY_ARRAY_FOR(lybctx->sib_hts, u) {
857 if (lybctx->sib_hts[u].first_sibling == first_sibling) {
858 /* we have already created a hash table for these siblings */
859 *sibling_ht = lybctx->sib_hts[u].ht;
860 break;
861 }
862 }
863
864 if (!*sibling_ht) {
865 /* we must create sibling hash table */
866 LY_CHECK_RET(lyb_hash_siblings(first_sibling, sibling_ht));
867
868 /* and save it */
869 LY_ARRAY_NEW_RET(lybctx->ctx, lybctx->sib_hts, sib_ht, LY_EMEM);
870
871 sib_ht->first_sibling = first_sibling;
872 sib_ht->ht = *sibling_ht;
873 }
874 }
875
876 /* get our hash */
877 LY_CHECK_RET(lyb_hash_find(*sibling_ht, schema, &hash));
878
879 /* write the hash */
880 LY_CHECK_RET(lyb_write(out, &hash, sizeof hash, lybctx));
881
882 if (hash & LYB_HASH_COLLISION_ID) {
883 /* no collision for this hash, we are done */
884 return LY_SUCCESS;
885 }
886
887 /* written hash was a collision, write also all the preceding hashes */
Radek Krejci1e008d22020-08-17 11:37:37 +0200888 for (i = 0; !(hash & (LYB_HASH_COLLISION_ID >> i)); ++i) {}
Michal Vasko60ea6352020-06-29 13:39:39 +0200889
Michal Vaskod989ba02020-08-24 10:59:24 +0200890 for ( ; i; --i) {
Michal Vasko11f76c82021-04-15 14:36:14 +0200891 hash = lyb_get_hash(schema, i - 1);
Michal Vasko60ea6352020-06-29 13:39:39 +0200892 if (!hash) {
893 return LY_EINT;
894 }
895 assert(hash & (LYB_HASH_COLLISION_ID >> (i - 1)));
896
897 LY_CHECK_RET(lyb_write(out, &hash, sizeof hash, lybctx));
898 }
899
900 return LY_SUCCESS;
901}
902
903/**
aPiecek6fdac2f2021-09-10 11:21:10 +0200904 * @brief Print header for non-opaq node.
905 *
906 * @param[in] out Out structure.
907 * @param[in] node Current data node to print.
908 * @param[in] lybctx LYB context.
909 * @return LY_ERR value.
910 */
911static LY_ERR
912lyb_print_node_header(struct ly_out *out, const struct lyd_node *node, struct lyd_lyb_ctx *lybctx)
913{
914 /* write any metadata */
915 LY_CHECK_RET(lyb_print_metadata(out, node, lybctx));
916
917 /* write node flags */
918 LY_CHECK_RET(lyb_write_number(node->flags, sizeof node->flags, out, lybctx->lybctx));
919
920 return LY_SUCCESS;
921}
922
923/**
Michal Vasko9883a3e2022-03-31 12:16:00 +0200924 * @brief Print LYB node type.
925 *
926 * @param[in] out Out structure.
927 * @param[in] node Current data node to print.
928 * @param[in] lybctx LYB context.
929 * @return LY_ERR value.
930 */
931static LY_ERR
932lyb_print_lyb_type(struct ly_out *out, const struct lyd_node *node, struct lyd_lyb_ctx *lybctx)
933{
934 enum lylyb_node_type lyb_type;
935
936 if (node->flags & LYD_EXT) {
937 assert(node->schema);
938 lyb_type = LYB_NODE_EXT;
939 } else if (!node->schema) {
940 lyb_type = LYB_NODE_OPAQ;
941 } else if (!lysc_data_parent(node->schema)) {
942 lyb_type = LYB_NODE_TOP;
943 } else {
944 lyb_type = LYB_NODE_CHILD;
945 }
946
947 LY_CHECK_RET(lyb_write_number(lyb_type, 1, out, lybctx->lybctx));
948
949 return LY_SUCCESS;
950}
951
952/**
aPiecek5777f122021-09-10 10:26:23 +0200953 * @brief Print inner node.
Michal Vasko60ea6352020-06-29 13:39:39 +0200954 *
955 * @param[in] out Out structure.
aPiecek5777f122021-09-10 10:26:23 +0200956 * @param[in] node Current data node to print.
Michal Vasko60ea6352020-06-29 13:39:39 +0200957 * @param[in] lybctx LYB context.
958 * @return LY_ERR value.
959 */
960static LY_ERR
aPiecek5777f122021-09-10 10:26:23 +0200961lyb_print_node_inner(struct ly_out *out, const struct lyd_node *node, struct lyd_lyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200962{
aPiecek586b1d22021-09-10 09:00:57 +0200963 /* write necessary basic data */
964 LY_CHECK_RET(lyb_print_node_header(out, node, lybctx));
aPiecek570d7ed2021-09-10 07:15:35 +0200965
aPiecek5777f122021-09-10 10:26:23 +0200966 /* recursively write all the descendants */
967 LY_CHECK_RET(lyb_print_siblings(out, lyd_child(node), lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200968
aPiecek570d7ed2021-09-10 07:15:35 +0200969 return LY_SUCCESS;
970}
971
972/**
aPiecek6fdac2f2021-09-10 11:21:10 +0200973 * @brief Print opaque node and its descendants.
974 *
975 * @param[in] out Out structure.
976 * @param[in] opaq Node to print.
977 * @param[in] lyd_lybctx LYB context.
978 * @return LY_ERR value.
979 */
980static LY_ERR
981lyb_print_node_opaq(struct ly_out *out, const struct lyd_node_opaq *opaq, struct lyd_lyb_ctx *lyd_lybctx)
982{
983 struct lylyb_ctx *lybctx = lyd_lybctx->lybctx;
984
985 /* write attributes */
986 LY_CHECK_RET(lyb_print_attributes(out, opaq, lybctx));
987
988 /* write node flags */
989 LY_CHECK_RET(lyb_write_number(opaq->flags, sizeof opaq->flags, out, lybctx));
990
991 /* prefix */
aPieceke99345d2021-09-30 12:49:59 +0200992 LY_CHECK_RET(lyb_write_string(opaq->name.prefix, 0, sizeof(uint16_t), out, lybctx));
aPiecek6fdac2f2021-09-10 11:21:10 +0200993
994 /* module reference */
aPieceke99345d2021-09-30 12:49:59 +0200995 LY_CHECK_RET(lyb_write_string(opaq->name.module_name, 0, sizeof(uint16_t), out, lybctx));
aPiecek6fdac2f2021-09-10 11:21:10 +0200996
997 /* name */
aPieceke99345d2021-09-30 12:49:59 +0200998 LY_CHECK_RET(lyb_write_string(opaq->name.name, 0, sizeof(uint16_t), out, lybctx));
aPiecek6fdac2f2021-09-10 11:21:10 +0200999
1000 /* value */
aPieceke99345d2021-09-30 12:49:59 +02001001 LY_CHECK_RET(lyb_write_string(opaq->value, 0, sizeof(uint64_t), out, lybctx));
aPiecek6fdac2f2021-09-10 11:21:10 +02001002
1003 /* format */
1004 LY_CHECK_RET(lyb_write_number(opaq->format, 1, out, lybctx));
1005
1006 /* value prefixes */
1007 LY_CHECK_RET(lyb_print_prefix_data(out, opaq->format, opaq->val_prefix_data, lybctx));
1008
1009 /* recursively write all the descendants */
1010 LY_CHECK_RET(lyb_print_siblings(out, opaq->child, lyd_lybctx));
1011
1012 return LY_SUCCESS;
1013}
1014
1015/**
1016 * @brief Print anydata or anyxml node.
1017 *
1018 * @param[in] anydata Node to print.
1019 * @param[in] out Out structure.
1020 * @param[in] lyd_lybctx LYB context.
1021 * @return LY_ERR value.
1022 */
1023static LY_ERR
1024lyb_print_node_any(struct ly_out *out, struct lyd_node_any *anydata, struct lyd_lyb_ctx *lyd_lybctx)
1025{
1026 LY_ERR ret = LY_SUCCESS;
1027 LYD_ANYDATA_VALUETYPE value_type;
1028 int len;
1029 char *buf = NULL;
1030 const char *str;
1031 struct ly_out *out2 = NULL;
1032 struct lylyb_ctx *lybctx = lyd_lybctx->lybctx;
1033
1034 if (anydata->value_type == LYD_ANYDATA_DATATREE) {
1035 /* will be printed as a nested LYB data tree */
1036 value_type = LYD_ANYDATA_LYB;
1037 } else {
1038 value_type = anydata->value_type;
1039 }
1040
1041 /* write necessary basic data */
1042 LY_CHECK_RET(lyb_print_node_header(out, (struct lyd_node *)anydata, lyd_lybctx));
1043
1044 /* first byte is type */
1045 LY_CHECK_GOTO(ret = lyb_write_number(value_type, sizeof value_type, out, lybctx), cleanup);
1046
1047 if (anydata->value_type == LYD_ANYDATA_DATATREE) {
1048 /* print LYB data tree to memory */
1049 LY_CHECK_GOTO(ret = ly_out_new_memory(&buf, 0, &out2), cleanup);
1050 LY_CHECK_GOTO(ret = lyb_print_data(out2, anydata->value.tree, LYD_PRINT_WITHSIBLINGS), cleanup);
1051
1052 len = lyd_lyb_data_length(buf);
1053 assert(len != -1);
1054 str = buf;
1055 } else if (anydata->value_type == LYD_ANYDATA_LYB) {
1056 len = lyd_lyb_data_length(anydata->value.mem);
1057 assert(len != -1);
1058 str = anydata->value.mem;
1059 } else {
1060 len = strlen(anydata->value.str);
1061 str = anydata->value.str;
1062 }
1063
1064 /* followed by the content */
aPieceke99345d2021-09-30 12:49:59 +02001065 LY_CHECK_GOTO(ret = lyb_write_string(str, (size_t)len, sizeof(uint64_t), out, lybctx), cleanup);
aPiecek6fdac2f2021-09-10 11:21:10 +02001066
1067cleanup:
1068 ly_out_free(out2, NULL, 1);
1069 return ret;
1070}
1071
1072/**
aPiecek8a555d72021-09-10 10:15:26 +02001073 * @brief Print leaf node.
1074 *
1075 * @param[in] out Out structure.
1076 * @param[in] node Current data node to print.
1077 * @param[in] lybctx LYB context.
1078 * @return LY_ERR value.
1079 */
1080static LY_ERR
1081lyb_print_node_leaf(struct ly_out *out, const struct lyd_node *node, struct lyd_lyb_ctx *lybctx)
1082{
1083 /* write necessary basic data */
1084 LY_CHECK_RET(lyb_print_node_header(out, node, lybctx));
1085
1086 /* write term value */
1087 LY_CHECK_RET(lyb_print_term_value((struct lyd_node_term *)node, out, lybctx->lybctx));
1088
1089 return LY_SUCCESS;
1090}
1091
1092/**
aPiecek5777f122021-09-10 10:26:23 +02001093 * @brief Print all leaflist nodes which belong to same schema.
1094 *
1095 * @param[in] out Out structure.
1096 * @param[in] node Current data node to print.
1097 * @param[in] lybctx LYB context.
1098 * @param[out] printed_node Last node that was printed by this function.
1099 * @return LY_ERR value.
1100 */
1101static LY_ERR
1102lyb_print_node_leaflist(struct ly_out *out, const struct lyd_node *node, struct lyd_lyb_ctx *lybctx,
1103 const struct lyd_node **printed_node)
1104{
1105 const struct lysc_node *schema;
1106
1107 /* register a new sibling */
1108 LY_CHECK_RET(lyb_write_start_siblings(out, lybctx->lybctx));
1109
1110 schema = node->schema;
1111
1112 /* write all the siblings */
1113 LY_LIST_FOR(node, node) {
1114 if (schema != node->schema) {
1115 /* all leaflist nodes was printed */
1116 break;
1117 }
1118
1119 /* write leaf data */
1120 LY_CHECK_RET(lyb_print_node_leaf(out, node, lybctx));
1121 *printed_node = node;
1122 }
1123
1124 /* finish this sibling */
1125 LY_CHECK_RET(lyb_write_stop_siblings(out, lybctx->lybctx));
1126
1127 return LY_SUCCESS;
1128}
1129
1130/**
aPiecek77d3e962021-09-10 10:33:59 +02001131 * @brief Print all list nodes which belong to same schema.
1132 *
1133 * @param[in] out Out structure.
1134 * @param[in] node Current data node to print.
1135 * @param[in] lybctx LYB context.
1136 * @param[out] printed_node Last node that was printed by this function.
1137 * @return LY_ERR value.
1138 */
1139static LY_ERR
1140lyb_print_node_list(struct ly_out *out, const struct lyd_node *node, struct lyd_lyb_ctx *lybctx,
1141 const struct lyd_node **printed_node)
1142{
1143 const struct lysc_node *schema;
1144
1145 /* register a new sibling */
1146 LY_CHECK_RET(lyb_write_start_siblings(out, lybctx->lybctx));
1147
1148 schema = node->schema;
1149
1150 LY_LIST_FOR(node, node) {
1151 if (schema != node->schema) {
1152 /* all list nodes was printed */
1153 break;
1154 }
1155
1156 /* write necessary basic data */
1157 LY_CHECK_RET(lyb_print_node_header(out, node, lybctx));
1158
1159 /* recursively write all the descendants */
1160 LY_CHECK_RET(lyb_print_siblings(out, lyd_child(node), lybctx));
1161
1162 *printed_node = node;
1163 }
1164
1165 /* finish this sibling */
1166 LY_CHECK_RET(lyb_write_stop_siblings(out, lybctx->lybctx));
1167
1168 return LY_SUCCESS;
1169}
1170
1171/**
aPiecek17737b52021-09-21 12:29:52 +02001172 * @brief Print node.
1173 *
1174 * @param[in] out Out structure.
1175 * @param[in,out] printed_node Current data node to print. Sets to the last printed node.
1176 * @param[in,out] sibling_ht Cached hash table for these siblings, created if NULL.
1177 * @param[in] lybctx LYB context.
1178 * @return LY_ERR value.
1179 */
1180static LY_ERR
1181lyb_print_node(struct ly_out *out, const struct lyd_node **printed_node, struct hash_table **sibling_ht,
1182 struct lyd_lyb_ctx *lybctx)
1183{
1184 const struct lyd_node *node = *printed_node;
1185
Michal Vasko9883a3e2022-03-31 12:16:00 +02001186 /* write node type */
1187 LY_CHECK_RET(lyb_print_lyb_type(out, node, lybctx));
1188
1189 /* write model info first */
1190 if (node->schema && ((node->flags & LYD_EXT) || !lysc_data_parent(node->schema))) {
aPiecek17737b52021-09-21 12:29:52 +02001191 LY_CHECK_RET(lyb_print_model(out, node->schema->module, lybctx->lybctx));
1192 }
1193
Michal Vasko9883a3e2022-03-31 12:16:00 +02001194 if (node->flags & LYD_EXT) {
1195 /* write schema node name */
1196 LY_CHECK_RET(lyb_write_string(node->schema->name, 0, sizeof(uint16_t), out, lybctx->lybctx));
1197 } else {
1198 /* write schema hash */
1199 LY_CHECK_RET(lyb_print_schema_hash(out, (struct lysc_node *)node->schema, sibling_ht, lybctx->lybctx));
1200 }
aPiecek17737b52021-09-21 12:29:52 +02001201
1202 if (!node->schema) {
1203 LY_CHECK_RET(lyb_print_node_opaq(out, (struct lyd_node_opaq *)node, lybctx));
1204 } else if (node->schema->nodetype & LYS_LEAFLIST) {
1205 LY_CHECK_RET(lyb_print_node_leaflist(out, node, lybctx, &node));
1206 } else if (node->schema->nodetype == LYS_LIST) {
1207 LY_CHECK_RET(lyb_print_node_list(out, node, lybctx, &node));
1208 } else if (node->schema->nodetype & LYD_NODE_ANY) {
1209 LY_CHECK_RET(lyb_print_node_any(out, (struct lyd_node_any *)node, lybctx));
1210 } else if (node->schema->nodetype & LYD_NODE_INNER) {
1211 LY_CHECK_RET(lyb_print_node_inner(out, node, lybctx));
1212 } else {
1213 LY_CHECK_RET(lyb_print_node_leaf(out, node, lybctx));
1214 }
1215
1216 *printed_node = node;
1217
1218 return LY_SUCCESS;
1219}
1220
1221/**
aPiecek570d7ed2021-09-10 07:15:35 +02001222 * @brief Print siblings.
1223 *
1224 * @param[in] out Out structure.
1225 * @param[in] node Current data node to print.
1226 * @param[in] lybctx LYB context.
1227 * @return LY_ERR value.
1228 */
1229static LY_ERR
1230lyb_print_siblings(struct ly_out *out, const struct lyd_node *node, struct lyd_lyb_ctx *lybctx)
1231{
1232 struct hash_table *sibling_ht = NULL;
1233 const struct lys_module *prev_mod = NULL;
1234 ly_bool top_level;
Michal Vasko60ea6352020-06-29 13:39:39 +02001235
aPiecek570d7ed2021-09-10 07:15:35 +02001236 top_level = !LY_ARRAY_COUNT(lybctx->lybctx->siblings);
1237
1238 LY_CHECK_RET(lyb_write_start_siblings(out, lybctx->lybctx));
1239
aPiecek17737b52021-09-21 12:29:52 +02001240 if (top_level) {
1241 /* write all the siblings */
1242 LY_LIST_FOR(node, node) {
1243 /* do not reuse sibling hash tables from different modules */
1244 if (!node->schema || (node->schema->module != prev_mod)) {
1245 sibling_ht = NULL;
1246 prev_mod = node->schema ? node->schema->module : NULL;
1247 }
aPiecek570d7ed2021-09-10 07:15:35 +02001248
aPiecek17737b52021-09-21 12:29:52 +02001249 LY_CHECK_RET(lyb_print_node(out, &node, &sibling_ht, lybctx));
1250
1251 if (!(lybctx->print_options & LYD_PRINT_WITHSIBLINGS)) {
1252 break;
1253 }
aPiecek570d7ed2021-09-10 07:15:35 +02001254 }
aPiecek17737b52021-09-21 12:29:52 +02001255 } else {
1256 LY_LIST_FOR(node, node) {
1257 LY_CHECK_RET(lyb_print_node(out, &node, &sibling_ht, lybctx));
aPiecek570d7ed2021-09-10 07:15:35 +02001258 }
1259 }
1260
1261 LY_CHECK_RET(lyb_write_stop_siblings(out, lybctx->lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +02001262
1263 return LY_SUCCESS;
1264}
1265
1266LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001267lyb_print_data(struct ly_out *out, const struct lyd_node *root, uint32_t options)
Michal Vasko60ea6352020-06-29 13:39:39 +02001268{
1269 LY_ERR ret = LY_SUCCESS;
1270 uint8_t zero = 0;
Radek Krejci1798aae2020-07-14 13:26:06 +02001271 struct lyd_lyb_ctx *lybctx;
Michal Vaskob7be7a82020-08-20 09:09:04 +02001272 const struct ly_ctx *ctx = root ? LYD_CTX(root) : NULL;
Michal Vasko60ea6352020-06-29 13:39:39 +02001273
Radek Krejci1798aae2020-07-14 13:26:06 +02001274 lybctx = calloc(1, sizeof *lybctx);
1275 LY_CHECK_ERR_RET(!lybctx, LOGMEM(ctx), LY_EMEM);
1276 lybctx->lybctx = calloc(1, sizeof *lybctx->lybctx);
1277 LY_CHECK_ERR_RET(!lybctx, LOGMEM(ctx), LY_EMEM);
1278
1279 lybctx->print_options = options;
Michal Vasko60ea6352020-06-29 13:39:39 +02001280 if (root) {
Radek Krejci1798aae2020-07-14 13:26:06 +02001281 lybctx->lybctx->ctx = ctx;
Michal Vasko60ea6352020-06-29 13:39:39 +02001282
1283 if (root->schema && lysc_data_parent(root->schema)) {
Radek Krejci1798aae2020-07-14 13:26:06 +02001284 LOGERR(lybctx->lybctx->ctx, LY_EINVAL, "LYB printer supports only printing top-level nodes.");
Michal Vasko9acaf492020-08-13 09:05:58 +02001285 ret = LY_EINVAL;
1286 goto cleanup;
Michal Vasko60ea6352020-06-29 13:39:39 +02001287 }
1288 }
1289
1290 /* LYB magic number */
Michal Vasko63f3d842020-07-08 10:10:14 +02001291 LY_CHECK_GOTO(ret = lyb_print_magic_number(out), cleanup);
Michal Vasko60ea6352020-06-29 13:39:39 +02001292
1293 /* LYB header */
Michal Vasko63f3d842020-07-08 10:10:14 +02001294 LY_CHECK_GOTO(ret = lyb_print_header(out), cleanup);
Michal Vasko60ea6352020-06-29 13:39:39 +02001295
1296 /* all used models */
Radek Krejci1798aae2020-07-14 13:26:06 +02001297 LY_CHECK_GOTO(ret = lyb_print_data_models(out, root, lybctx->lybctx), cleanup);
Michal Vasko60ea6352020-06-29 13:39:39 +02001298
aPiecek570d7ed2021-09-10 07:15:35 +02001299 ret = lyb_print_siblings(out, root, lybctx);
1300 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko60ea6352020-06-29 13:39:39 +02001301
1302 /* ending zero byte */
Radek Krejci1798aae2020-07-14 13:26:06 +02001303 LY_CHECK_GOTO(ret = lyb_write(out, &zero, sizeof zero, lybctx->lybctx), cleanup);
Michal Vasko60ea6352020-06-29 13:39:39 +02001304
1305cleanup:
Radek Krejci1798aae2020-07-14 13:26:06 +02001306 lyd_lyb_ctx_free((struct lyd_ctx *)lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +02001307 return ret;
1308}