blob: fd773ab62f0c265d2da6e4f659efd86e8d39859c [file] [log] [blame]
Radek Krejcie7b95092019-05-15 11:03:07 +02001/**
2 * @file tree_data_helpers.c
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief Parsing and validation helper functions for data trees
5 *
Michal Vasko8cc3f662022-03-29 11:25:51 +02006 * Copyright (c) 2015 - 2022 CESNET, z.s.p.o.
Radek Krejcie7b95092019-05-15 11:03:07 +02007 *
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 */
Michal Vasko43297a02021-05-19 11:12:37 +020014
15#define _GNU_SOURCE /* asprintf, strdup */
Radek Krejcie7b95092019-05-15 11:03:07 +020016
17#include <assert.h>
Michal Vasko43297a02021-05-19 11:12:37 +020018#include <ctype.h>
Radek Krejci535ea9f2020-05-29 16:01:05 +020019#include <stdint.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020020#include <stdlib.h>
Radek Krejciad97c5f2020-06-30 09:19:28 +020021#include <string.h>
Michal Vasko43297a02021-05-19 11:12:37 +020022#include <time.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020023
Radek Krejci535ea9f2020-05-29 16:01:05 +020024#include "common.h"
Michal Vasko6b5cb2a2020-11-11 19:11:21 +010025#include "compat.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020026#include "context.h"
Radek Krejci47fab892020-11-05 17:02:41 +010027#include "dict.h"
Radek Krejciad97c5f2020-06-30 09:19:28 +020028#include "hash_table.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020029#include "log.h"
Radek Krejciad97c5f2020-06-30 09:19:28 +020030#include "lyb.h"
Radek Krejci7931b192020-06-25 17:05:03 +020031#include "parser_data.h"
Michal Vasko8cc3f662022-03-29 11:25:51 +020032#include "plugins_exts.h"
Michal Vaskoa820c312021-02-05 16:33:00 +010033#include "printer_data.h"
Radek Krejciad97c5f2020-06-30 09:19:28 +020034#include "set.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020035#include "tree.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020036#include "tree_data.h"
Michal Vasko60ea6352020-06-29 13:39:39 +020037#include "tree_data_internal.h"
Radek Krejci859a15a2021-03-05 20:56:59 +010038#include "tree_edit.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020039#include "tree_schema.h"
Radek Krejci0aa1f702021-04-01 16:16:19 +020040#include "tree_schema_internal.h"
Radek Krejci4f2e3e52021-03-30 14:20:28 +020041#include "validation.h"
Radek Krejci77114102021-03-10 15:21:57 +010042#include "xml.h"
aPiecekdf23eee2021-10-07 12:21:50 +020043#include "xpath.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020044
Michal Vaskod7c048c2021-05-18 16:12:55 +020045/**
46 * @brief Find an entry in duplicate instance cache for an instance. Create it if it does not exist.
47 *
48 * @param[in] first_inst Instance of the cache entry.
49 * @param[in,out] dup_inst_cache Duplicate instance cache.
50 * @return Instance cache entry.
51 */
52static struct lyd_dup_inst *
53lyd_dup_inst_get(const struct lyd_node *first_inst, struct lyd_dup_inst **dup_inst_cache)
54{
55 struct lyd_dup_inst *item;
56 LY_ARRAY_COUNT_TYPE u;
57
58 LY_ARRAY_FOR(*dup_inst_cache, u) {
59 if ((*dup_inst_cache)[u].inst_set->dnodes[0] == first_inst) {
60 return &(*dup_inst_cache)[u];
61 }
62 }
63
64 /* it was not added yet, add it now */
65 LY_ARRAY_NEW_RET(LYD_CTX(first_inst), *dup_inst_cache, item, NULL);
66
67 return item;
68}
69
70LY_ERR
71lyd_dup_inst_next(struct lyd_node **inst, const struct lyd_node *siblings, struct lyd_dup_inst **dup_inst_cache)
72{
73 struct lyd_dup_inst *dup_inst;
74
75 if (!*inst || !lysc_is_dup_inst_list((*inst)->schema)) {
76 /* no match or not dup-inst list, inst is unchanged */
77 return LY_SUCCESS;
78 }
79
80 /* there can be more exact same instances and we must make sure we do not match a single node more times */
81 dup_inst = lyd_dup_inst_get(*inst, dup_inst_cache);
82 LY_CHECK_ERR_RET(!dup_inst, LOGMEM(LYD_CTX(siblings)), LY_EMEM);
83
84 if (!dup_inst->used) {
85 /* we did not cache these instances yet, do so */
86 lyd_find_sibling_dup_inst_set(siblings, *inst, &dup_inst->inst_set);
87 assert(dup_inst->inst_set->count && (dup_inst->inst_set->dnodes[0] == *inst));
88 }
89
90 if (dup_inst->used == dup_inst->inst_set->count) {
91 /* we have used all the instances */
92 *inst = NULL;
93 } else {
94 assert(dup_inst->used < dup_inst->inst_set->count);
95
96 /* use another instance */
97 *inst = dup_inst->inst_set->dnodes[dup_inst->used];
98 ++dup_inst->used;
99 }
100
101 return LY_SUCCESS;
102}
103
104void
105lyd_dup_inst_free(struct lyd_dup_inst *dup_inst)
106{
107 LY_ARRAY_COUNT_TYPE u;
108
109 LY_ARRAY_FOR(dup_inst, u) {
110 ly_set_free(dup_inst[u].inst_set, NULL);
111 }
112 LY_ARRAY_FREE(dup_inst);
113}
114
Michal Vaskoa6669ba2020-08-06 16:14:26 +0200115struct lyd_node *
116lys_getnext_data(const struct lyd_node *last, const struct lyd_node *sibling, const struct lysc_node **slast,
Radek Krejci0f969882020-08-21 16:56:47 +0200117 const struct lysc_node *parent, const struct lysc_module *module)
Michal Vaskoa6669ba2020-08-06 16:14:26 +0200118{
119 const struct lysc_node *siter = NULL;
120 struct lyd_node *match = NULL;
121
122 assert(parent || module);
123 assert(!last || (slast && *slast));
124
125 if (slast) {
126 siter = *slast;
127 }
128
129 if (last && last->next && (last->next->schema == siter)) {
130 /* return next data instance */
131 return last->next;
132 }
133
134 /* find next schema node data instance */
135 while ((siter = lys_getnext(siter, parent, module, 0))) {
136 if (!lyd_find_sibling_val(sibling, siter, NULL, 0, &match)) {
137 break;
138 }
139 }
140
141 if (slast) {
142 *slast = siter;
143 }
144 return match;
145}
146
Radek Krejcie7b95092019-05-15 11:03:07 +0200147struct lyd_node **
Michal Vaskoe0665742021-02-11 11:08:44 +0100148lyd_node_child_p(struct lyd_node *node)
Radek Krejcie7b95092019-05-15 11:03:07 +0200149{
150 assert(node);
Michal Vasko52927e22020-03-16 17:26:14 +0100151
152 if (!node->schema) {
153 return &((struct lyd_node_opaq *)node)->child;
154 } else {
155 switch (node->schema->nodetype) {
156 case LYS_CONTAINER:
157 case LYS_LIST:
Michal Vasko1bf09392020-03-27 12:38:10 +0100158 case LYS_RPC:
Michal Vasko52927e22020-03-16 17:26:14 +0100159 case LYS_ACTION:
160 case LYS_NOTIF:
161 return &((struct lyd_node_inner *)node)->child;
162 default:
163 return NULL;
164 }
Radek Krejcie7b95092019-05-15 11:03:07 +0200165 }
166}
167
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100168LIBYANG_API_DEF LY_ERR
aPiecekdf23eee2021-10-07 12:21:50 +0200169lyxp_vars_set(struct lyxp_var **vars, const char *name, const char *value)
170{
171 LY_ERR ret = LY_SUCCESS;
172 char *var_name = NULL, *var_value = NULL;
173 struct lyxp_var *item;
174
175 if (!vars || !name || !value) {
176 return LY_EINVAL;
177 }
178
179 /* If variable is already defined then change its value. */
180 if (*vars && !lyxp_vars_find(*vars, name, 0, &item)) {
181 var_value = strdup(value);
182 LY_CHECK_RET(!var_value, LY_EMEM);
183
184 /* Set new value. */
185 free(item->value);
186 item->value = var_value;
187 } else {
188 var_name = strdup(name);
189 var_value = strdup(value);
190 LY_CHECK_ERR_GOTO(!var_name || !var_value, ret = LY_EMEM, error);
191
192 /* Add new variable. */
193 LY_ARRAY_NEW_GOTO(NULL, *vars, item, ret, error);
194 item->name = var_name;
195 item->value = var_value;
196 }
197
198 return LY_SUCCESS;
199
200error:
201 free(var_name);
202 free(var_value);
203 return ret;
204}
205
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100206LIBYANG_API_DEF void
aPiecekdf23eee2021-10-07 12:21:50 +0200207lyxp_vars_free(struct lyxp_var *vars)
208{
209 LY_ARRAY_COUNT_TYPE u;
210
211 if (!vars) {
212 return;
213 }
214
215 LY_ARRAY_FOR(vars, u) {
216 free(vars[u].name);
217 free(vars[u].value);
218 }
219
220 LY_ARRAY_FREE(vars);
221}
222
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100223LIBYANG_API_DEF struct lyd_node *
Radek Krejcia1c1e542020-09-29 16:06:52 +0200224lyd_child_no_keys(const struct lyd_node *node)
225{
226 struct lyd_node **children;
227
228 if (!node) {
229 return NULL;
230 }
231
232 if (!node->schema) {
233 /* opaq node */
Michal Vasko9e685082021-01-29 14:49:09 +0100234 return ((struct lyd_node_opaq *)node)->child;
Radek Krejcia1c1e542020-09-29 16:06:52 +0200235 }
236
Michal Vaskoe0665742021-02-11 11:08:44 +0100237 children = lyd_node_child_p((struct lyd_node *)node);
Radek Krejcia1c1e542020-09-29 16:06:52 +0200238 if (children) {
239 struct lyd_node *child = *children;
240 while (child && child->schema && (child->schema->flags & LYS_KEY)) {
241 child = child->next;
Michal Vasko5bfd4be2020-06-23 13:26:19 +0200242 }
243 return child;
Radek Krejcie7b95092019-05-15 11:03:07 +0200244 } else {
245 return NULL;
246 }
247}
Michal Vasko9b368d32020-02-14 13:53:31 +0100248
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100249LIBYANG_API_DEF const struct lys_module *
Michal Vaskoc193ce92020-03-06 11:04:48 +0100250lyd_owner_module(const struct lyd_node *node)
Michal Vasko9b368d32020-02-14 13:53:31 +0100251{
Michal Vaskod5cfa6e2020-11-23 16:56:08 +0100252 const struct lyd_node_opaq *opaq;
Michal Vasko9b368d32020-02-14 13:53:31 +0100253
Michal Vaskod5cfa6e2020-11-23 16:56:08 +0100254 if (!node) {
Michal Vaskoc193ce92020-03-06 11:04:48 +0100255 return NULL;
256 }
Michal Vasko9b368d32020-02-14 13:53:31 +0100257
Michal Vaskod5cfa6e2020-11-23 16:56:08 +0100258 if (!node->schema) {
259 opaq = (struct lyd_node_opaq *)node;
260 switch (opaq->format) {
Radek Krejci8df109d2021-04-23 12:19:08 +0200261 case LY_VALUE_XML:
Michal Vaskod5cfa6e2020-11-23 16:56:08 +0100262 return ly_ctx_get_module_implemented_ns(LYD_CTX(node), opaq->name.module_ns);
Radek Krejci8df109d2021-04-23 12:19:08 +0200263 case LY_VALUE_JSON:
Michal Vaskod5cfa6e2020-11-23 16:56:08 +0100264 return ly_ctx_get_module_implemented(LYD_CTX(node), opaq->name.module_name);
265 default:
266 return NULL;
267 }
268 }
269
Michal Vaskoef53c812021-10-13 10:21:03 +0200270 return lysc_owner_module(node->schema);
Michal Vasko9b368d32020-02-14 13:53:31 +0100271}
Michal Vaskob1b5c262020-03-05 14:29:47 +0100272
Michal Vasko598063b2021-07-19 11:39:05 +0200273void
274lyd_first_module_sibling(struct lyd_node **node, const struct lys_module *mod)
275{
276 int cmp;
277 struct lyd_node *first;
278
279 assert(node && mod);
280
281 if (!*node) {
282 return;
283 }
284
285 first = *node;
286 cmp = strcmp(lyd_owner_module(first)->name, mod->name);
287 if (cmp > 0) {
288 /* there may be some preceding data */
289 while (first->prev->next) {
290 first = first->prev;
291 if (lyd_owner_module(first) == mod) {
292 cmp = 0;
293 break;
294 }
295 }
296 }
297
298 if (cmp == 0) {
299 /* there may be some preceding data belonging to this module */
300 while (first->prev->next) {
301 if (lyd_owner_module(first->prev) != mod) {
302 break;
303 }
304 first = first->prev;
305 }
306 }
307
308 if (cmp < 0) {
309 /* there may be some following data */
310 LY_LIST_FOR(first, first) {
311 if (lyd_owner_module(first) == mod) {
312 cmp = 0;
313 break;
314 }
315 }
316 }
317
318 if (cmp == 0) {
319 /* we have found the first module data node */
320 *node = first;
321 }
322}
323
Michal Vaskob1b5c262020-03-05 14:29:47 +0100324const struct lys_module *
Michal Vasko26e80012020-07-08 10:55:46 +0200325lyd_mod_next_module(struct lyd_node *tree, const struct lys_module *module, const struct ly_ctx *ctx, uint32_t *i,
Radek Krejci0f969882020-08-21 16:56:47 +0200326 struct lyd_node **first)
Michal Vaskob1b5c262020-03-05 14:29:47 +0100327{
328 struct lyd_node *iter;
329 const struct lys_module *mod;
330
331 /* get the next module */
Michal Vasko26e80012020-07-08 10:55:46 +0200332 if (module) {
333 if (*i) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100334 mod = NULL;
Michal Vasko26e80012020-07-08 10:55:46 +0200335 } else {
336 mod = module;
337 ++(*i);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100338 }
339 } else {
340 do {
341 mod = ly_ctx_get_module_iter(ctx, i);
342 } while (mod && !mod->implemented);
343 }
344
345 /* find its data */
346 *first = NULL;
347 if (mod) {
348 LY_LIST_FOR(tree, iter) {
Michal Vaskoc193ce92020-03-06 11:04:48 +0100349 if (lyd_owner_module(iter) == mod) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100350 *first = iter;
351 break;
352 }
353 }
354 }
355
356 return mod;
357}
358
359const struct lys_module *
360lyd_data_next_module(struct lyd_node **next, struct lyd_node **first)
361{
362 const struct lys_module *mod;
363
364 if (!*next) {
365 /* all data traversed */
366 *first = NULL;
367 return NULL;
368 }
369
370 *first = *next;
371
372 /* prepare next */
Michal Vaskoc193ce92020-03-06 11:04:48 +0100373 mod = lyd_owner_module(*next);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100374 LY_LIST_FOR(*next, *next) {
Michal Vaskoc193ce92020-03-06 11:04:48 +0100375 if (lyd_owner_module(*next) != mod) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100376 break;
377 }
378 }
379
380 return mod;
381}
Michal Vasko9f96a052020-03-10 09:41:45 +0100382
383LY_ERR
384lyd_parse_check_keys(struct lyd_node *node)
385{
386 const struct lysc_node *skey = NULL;
387 const struct lyd_node *key;
388
389 assert(node->schema->nodetype == LYS_LIST);
390
Radek Krejcia1c1e542020-09-29 16:06:52 +0200391 key = lyd_child(node);
Michal Vasko9f96a052020-03-10 09:41:45 +0100392 while ((skey = lys_getnext(skey, node->schema, NULL, 0)) && (skey->flags & LYS_KEY)) {
393 if (!key || (key->schema != skey)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100394 LOGVAL(LYD_CTX(node), LY_VCODE_NOKEY, skey->name);
Michal Vasko9f96a052020-03-10 09:41:45 +0100395 return LY_EVALID;
396 }
397
398 key = key->next;
399 }
400
401 return LY_SUCCESS;
402}
Michal Vasko60ea6352020-06-29 13:39:39 +0200403
Michal Vasko8cc3f662022-03-29 11:25:51 +0200404LY_ERR
405lyd_parse_set_data_flags(struct lyd_node *node, struct lyd_meta **meta, struct lyd_ctx *lydctx,
406 struct lysc_ext_instance *ext)
Michal Vasko60ea6352020-06-29 13:39:39 +0200407{
408 struct lyd_meta *meta2, *prev_meta = NULL;
Michal Vasko8cc3f662022-03-29 11:25:51 +0200409 struct lyd_ctx_ext_val *ext_val;
Michal Vasko60ea6352020-06-29 13:39:39 +0200410
Michal Vaskoa5705e52020-12-09 18:15:14 +0100411 if (lysc_has_when(node->schema)) {
Michal Vasko8cc3f662022-03-29 11:25:51 +0200412 if (!(lydctx->parse_opts & LYD_PARSE_ONLY)) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200413 /* remember we need to evaluate this node's when */
Michal Vasko8cc3f662022-03-29 11:25:51 +0200414 LY_CHECK_RET(ly_set_add(&lydctx->node_when, node, 1, NULL));
Michal Vasko60ea6352020-06-29 13:39:39 +0200415 }
416 }
417
Michal Vasko60ea6352020-06-29 13:39:39 +0200418 LY_LIST_FOR(*meta, meta2) {
Michal Vasko69730152020-10-09 16:30:07 +0200419 if (!strcmp(meta2->name, "default") && !strcmp(meta2->annotation->module->name, "ietf-netconf-with-defaults") &&
420 meta2->value.boolean) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200421 /* node is default according to the metadata */
422 node->flags |= LYD_DEFAULT;
423
424 /* delete the metadata */
425 if (prev_meta) {
426 prev_meta->next = meta2->next;
427 } else {
428 *meta = (*meta)->next;
429 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200430 lyd_free_meta_single(meta2);
Michal Vasko60ea6352020-06-29 13:39:39 +0200431 break;
432 }
433
434 prev_meta = meta2;
435 }
Michal Vasko8cc3f662022-03-29 11:25:51 +0200436
437 if (ext) {
438 /* parsed for an extension */
439 node->flags |= LYD_EXT;
440
441 if (!(lydctx->parse_opts & LYD_PARSE_ONLY)) {
442 /* rememeber for validation */
443 ext_val = malloc(sizeof *ext_val);
444 LY_CHECK_ERR_RET(!ext_val, LOGMEM(LYD_CTX(node)), LY_EMEM);
445 ext_val->ext = ext;
446 ext_val->sibling = node;
447 LY_CHECK_RET(ly_set_add(&lydctx->ext_val, ext_val, 1, NULL));
448 }
449 }
450
451 return LY_SUCCESS;
Michal Vasko60ea6352020-06-29 13:39:39 +0200452}
453
Michal Vaskobfff6ac2022-02-23 16:22:53 +0100454/**
455 * @brief Check list node parsed into an opaque node for the reason.
456 *
457 * @param[in] node Opaque node.
458 * @param[in] snode Schema node of @p opaq.
459 * @return LY_SUCCESS if the node is valid;
460 * @return LY_ERR on error.
461 */
462static LY_ERR
463lyd_parse_opaq_list_error(const struct lyd_node *node, const struct lysc_node *snode)
464{
465 LY_ERR ret = LY_SUCCESS;
466 struct ly_set key_set = {0};
467 const struct lysc_node *key = NULL;
468 const struct lyd_node *child;
469 const struct lyd_node_opaq *opaq_k;
470 uint32_t i;
471
472 assert(!node->schema);
473
474 /* get all keys into a set */
475 while ((key = lys_getnext(key, snode, NULL, 0)) && (snode->flags & LYS_KEY)) {
476 LY_CHECK_GOTO(ret = ly_set_add(&key_set, (void *)snode, 1, NULL), cleanup);
477 }
478
479 LY_LIST_FOR(lyd_child(node), child) {
480 if (child->schema) {
481 LOGERR(LYD_CTX(node), LY_EINVAL, "Unexpected node %s \"%s\".", lys_nodetype2str(child->schema->nodetype),
482 LYD_NAME(child));
483 ret = LY_EINVAL;
484 goto cleanup;
485 }
486
487 opaq_k = (struct lyd_node_opaq *)child;
488
489 /* find the key schema node */
490 for (i = 0; i < key_set.count; ++i) {
491 key = key_set.snodes[i];
492 if (!strcmp(key->name, opaq_k->name.name)) {
493 break;
494 }
495 }
496 if (i == key_set.count) {
497 /* some other node, skip */
498 continue;
499 }
500
501 /* key found */
502 ly_set_rm_index(&key_set, i, NULL);
503
504 /* check value */
505 ret = lys_value_validate(LYD_CTX(node), key, opaq_k->value, strlen(opaq_k->value), opaq_k->format,
506 opaq_k->val_prefix_data);
507 LY_CHECK_GOTO(ret, cleanup);
508 }
509
510 if (key_set.count) {
511 /* missing keys */
512 LOGVAL(LYD_CTX(node), LY_VCODE_NOKEY, key_set.snodes[0]->name);
513 ret = LY_EVALID;
514 goto cleanup;
515 }
516
517cleanup:
518 ly_set_erase(&key_set, NULL);
519 return ret;
520}
521
522LIBYANG_API_DEF LY_ERR
523lyd_parse_opaq_error(const struct lyd_node *node)
524{
525 const struct ly_ctx *ctx;
526 const struct lyd_node_opaq *opaq;
527 const struct lyd_node *parent;
528 const struct lys_module *mod;
529 const struct lysc_node *snode;
530
531 LY_CHECK_ARG_RET(LYD_CTX(node), node, !node->schema, !lyd_parent(node) || lyd_parent(node)->schema, LY_EINVAL);
532
533 ctx = LYD_CTX(node);
534 opaq = (struct lyd_node_opaq *)node;
535 parent = lyd_parent(node);
536
537 /* is always filled by parsers */
538 LY_CHECK_ARG_RET(ctx, opaq->name.module_ns, LY_EINVAL);
539
540 /* module */
541 switch (opaq->format) {
542 case LY_VALUE_XML:
543 if (!parent || strcmp(opaq->name.module_ns, parent->schema->module->ns)) {
544 mod = ly_ctx_get_module_implemented_ns(ctx, opaq->name.module_ns);
545 if (!mod) {
546 LOGVAL(ctx, LYVE_REFERENCE, "No (implemented) module with namespace \"%s\" in the context.",
547 opaq->name.module_ns);
548 return LY_EVALID;
549 }
550 } else {
551 /* inherit */
552 mod = parent->schema->module;
553 }
554 break;
555 case LY_VALUE_JSON:
556 case LY_VALUE_LYB:
557 if (!parent || strcmp(opaq->name.module_name, parent->schema->module->name)) {
558 mod = ly_ctx_get_module_implemented(ctx, opaq->name.module_name);
559 if (!mod) {
560 LOGVAL(ctx, LYVE_REFERENCE, "No (implemented) module named \"%s\" in the context.", opaq->name.module_name);
561 return LY_EVALID;
562 }
563 } else {
564 /* inherit */
565 mod = parent->schema->module;
566 }
567 break;
568 default:
569 LOGERR(ctx, LY_EINVAL, "Unsupported value format.");
570 return LY_EINVAL;
571 }
572
573 /* schema */
574 snode = lys_find_child(parent ? parent->schema : NULL, mod, opaq->name.name, 0, 0, 0);
575 if (!snode) {
576 if (parent) {
577 LOGVAL(ctx, LYVE_REFERENCE, "Node \"%s\" not found as a child of \"%s\" node.", opaq->name.name,
578 LYD_NAME(parent));
579 } else {
580 LOGVAL(ctx, LYVE_REFERENCE, "Node \"%s\" not found in the \"%s\" module.", opaq->name.name, mod->name);
581 }
582 return LY_EVALID;
583 }
584
585 if (snode->nodetype & LYD_NODE_TERM) {
586 /* leaf / leaf-list */
587 LY_CHECK_RET(lys_value_validate(ctx, snode, opaq->value, strlen(opaq->value), opaq->format, opaq->val_prefix_data));
588 } else if (snode->nodetype == LYS_LIST) {
589 /* list */
590 LY_CHECK_RET(lyd_parse_opaq_list_error(node, snode));
591 } else if (snode->nodetype & LYD_NODE_INNER) {
592 /* inner node */
593 if (opaq->value) {
594 LOGVAL(ctx, LYVE_DATA, "Invalid value \"%s\" for %s \"%s\".", opaq->value,
595 lys_nodetype2str(snode->nodetype), snode->name);
596 return LY_EVALID;
597 }
598 } else {
599 LOGERR(ctx, LY_EINVAL, "Unexpected opaque schema node %s \"%s\".", lys_nodetype2str(snode->nodetype), snode->name);
600 return LY_EINVAL;
601 }
602
603 LOGERR(ctx, LY_EINVAL, "Unexpected valid opaque node %s \"%s\".", lys_nodetype2str(snode->nodetype), snode->name);
604 return LY_EINVAL;
605}
606
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100607LIBYANG_API_DEF const char *
Christian Hopps46bd21b2021-04-27 09:43:58 -0400608lyd_value_get_canonical(const struct ly_ctx *ctx, const struct lyd_value *value)
Radek Krejci6d5ba0c2021-04-26 07:49:59 +0200609{
Michal Vaskoab40e7e2021-04-28 17:04:24 +0200610 LY_CHECK_ARG_RET(ctx, ctx, value, NULL);
611
Michal Vasko33876022021-04-27 16:42:24 +0200612 return value->_canonical ? value->_canonical :
613 (const char *)value->realtype->plugin->print(ctx, value, LY_VALUE_CANON, NULL, NULL, NULL);
Radek Krejci6d5ba0c2021-04-26 07:49:59 +0200614}
615
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100616LIBYANG_API_DEF LY_ERR
Michal Vaskoa820c312021-02-05 16:33:00 +0100617lyd_any_value_str(const struct lyd_node *any, char **value_str)
618{
619 const struct lyd_node_any *a;
620 struct lyd_node *tree = NULL;
621 const char *str = NULL;
622 ly_bool dynamic = 0;
623 LY_ERR ret = LY_SUCCESS;
624
625 LY_CHECK_ARG_RET(NULL, any, value_str, LY_EINVAL);
Radek Krejci71877df2021-04-06 17:24:06 +0200626 LY_CHECK_ARG_RET(NULL, any->schema, any->schema->nodetype & LYS_ANYDATA, LY_EINVAL);
Michal Vaskoa820c312021-02-05 16:33:00 +0100627
628 a = (struct lyd_node_any *)any;
629 *value_str = NULL;
630
631 if (!a->value.str) {
632 /* there is no value in the union */
633 return LY_SUCCESS;
634 }
635
636 switch (a->value_type) {
637 case LYD_ANYDATA_LYB:
638 /* parse into a data tree */
639 ret = lyd_parse_data_mem(LYD_CTX(any), a->value.mem, LYD_LYB, LYD_PARSE_ONLY, 0, &tree);
640 LY_CHECK_GOTO(ret, cleanup);
641 dynamic = 1;
642 break;
643 case LYD_ANYDATA_DATATREE:
644 tree = a->value.tree;
645 break;
646 case LYD_ANYDATA_STRING:
647 case LYD_ANYDATA_XML:
648 case LYD_ANYDATA_JSON:
649 /* simply use the string */
650 str = a->value.str;
651 break;
652 }
653
654 if (tree) {
655 /* print into a string */
656 ret = lyd_print_mem(value_str, tree, LYD_XML, LYD_PRINT_WITHSIBLINGS);
657 LY_CHECK_GOTO(ret, cleanup);
658 } else {
659 assert(str);
660 *value_str = strdup(str);
661 LY_CHECK_ERR_GOTO(!*value_str, LOGMEM(LYD_CTX(any)), cleanup);
662 }
663
664 /* success */
665
666cleanup:
667 if (dynamic) {
668 lyd_free_all(tree);
669 }
670 return ret;
671}
672
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100673LIBYANG_API_DEF LY_ERR
Michal Vasko61551fa2020-07-09 15:45:45 +0200674lyd_any_copy_value(struct lyd_node *trg, const union lyd_any_value *value, LYD_ANYDATA_VALUETYPE value_type)
675{
676 struct lyd_node_any *t;
Michal Vasko61551fa2020-07-09 15:45:45 +0200677
Michal Vaskoa820c312021-02-05 16:33:00 +0100678 LY_CHECK_ARG_RET(NULL, trg, LY_EINVAL);
Radek Krejci71877df2021-04-06 17:24:06 +0200679 LY_CHECK_ARG_RET(NULL, trg->schema, trg->schema->nodetype & LYS_ANYDATA, LY_EINVAL);
Michal Vasko61551fa2020-07-09 15:45:45 +0200680
681 t = (struct lyd_node_any *)trg;
682
683 /* free trg */
684 switch (t->value_type) {
685 case LYD_ANYDATA_DATATREE:
686 lyd_free_all(t->value.tree);
687 break;
688 case LYD_ANYDATA_STRING:
689 case LYD_ANYDATA_XML:
690 case LYD_ANYDATA_JSON:
Michal Vaskoe180ed02021-02-05 16:31:20 +0100691 lydict_remove(LYD_CTX(trg), t->value.str);
Michal Vasko61551fa2020-07-09 15:45:45 +0200692 break;
693 case LYD_ANYDATA_LYB:
694 free(t->value.mem);
695 break;
696 }
697 t->value.str = NULL;
698
699 if (!value) {
700 /* only free value in this case */
701 return LY_SUCCESS;
702 }
703
704 /* copy src */
705 t->value_type = value_type;
706 switch (value_type) {
707 case LYD_ANYDATA_DATATREE:
708 if (value->tree) {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200709 LY_CHECK_RET(lyd_dup_siblings(value->tree, NULL, LYD_DUP_RECURSIVE, &t->value.tree));
Michal Vasko61551fa2020-07-09 15:45:45 +0200710 }
711 break;
712 case LYD_ANYDATA_STRING:
713 case LYD_ANYDATA_XML:
714 case LYD_ANYDATA_JSON:
715 if (value->str) {
Radek Krejci011e4aa2020-09-04 15:22:31 +0200716 LY_CHECK_RET(lydict_insert(LYD_CTX(trg), value->str, 0, &t->value.str));
Michal Vasko61551fa2020-07-09 15:45:45 +0200717 }
718 break;
719 case LYD_ANYDATA_LYB:
720 if (value->mem) {
Radek Krejci1deb5be2020-08-26 16:43:36 +0200721 int len = lyd_lyb_data_length(value->mem);
Radek Krejci82fa8d42020-07-11 22:00:59 +0200722 LY_CHECK_RET(len == -1, LY_EINVAL);
Michal Vasko61551fa2020-07-09 15:45:45 +0200723 t->value.mem = malloc(len);
Michal Vaskob7be7a82020-08-20 09:09:04 +0200724 LY_CHECK_ERR_RET(!t->value.mem, LOGMEM(LYD_CTX(trg)), LY_EMEM);
Michal Vasko61551fa2020-07-09 15:45:45 +0200725 memcpy(t->value.mem, value->mem, len);
726 }
727 break;
728 }
729
730 return LY_SUCCESS;
731}
732
Michal Vasko106f0862021-11-02 11:49:27 +0100733const struct lysc_node *
734lyd_node_schema(const struct lyd_node *node)
735{
736 const struct lysc_node *schema = NULL;
737 const struct lyd_node *prev_iter = NULL, *iter;
738 const struct lys_module *mod;
739
740 if (!node) {
741 return NULL;
742 } else if (node->schema) {
743 return node->schema;
744 }
745
746 /* get schema node of an opaque node */
747 do {
748 /* get next data node */
749 for (iter = node; lyd_parent(iter) != prev_iter; iter = lyd_parent(iter)) {}
750
751 /* get equivalent schema node */
752 if (iter->schema) {
753 schema = iter->schema;
754 } else {
755 /* get module */
756 mod = lyd_owner_module(iter);
Michal Vaskoa41826a2021-11-02 12:13:03 +0100757 if (!mod && !schema) {
758 /* top-level opaque node has unknown module */
759 break;
760 }
Michal Vasko106f0862021-11-02 11:49:27 +0100761
762 /* get schema node */
763 schema = lys_find_child(schema, mod ? mod : schema->module, LYD_NAME(iter), 0, 0, 0);
764 }
Michal Vaskod2f404f2021-11-04 15:37:11 +0100765
766 /* remember to move to the descendant */
767 prev_iter = iter;
Michal Vasko106f0862021-11-02 11:49:27 +0100768 } while (schema && (iter != node));
769
770 return schema;
771}
772
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100773void
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100774lyd_del_move_root(struct lyd_node **root, const struct lyd_node *to_del, const struct lys_module *mod)
775{
776 if (*root && (lyd_owner_module(*root) != mod)) {
777 /* there are no data of mod so this is simply the first top-level sibling */
778 mod = NULL;
779 }
780
781 if ((*root != to_del) || (*root)->parent) {
782 return;
783 }
784
Michal Vasko598063b2021-07-19 11:39:05 +0200785 if (mod && (*root)->prev->next && (!(*root)->next || (lyd_owner_module(to_del) != lyd_owner_module((*root)->next)))) {
786 /* there are no more nodes from mod, simply get the first top-level sibling */
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100787 *root = lyd_first_sibling(*root);
Michal Vasko598063b2021-07-19 11:39:05 +0200788 } else {
789 *root = (*root)->next;
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100790 }
791}
792
Michal Vasko8cc3f662022-03-29 11:25:51 +0200793LY_ERR
794ly_nested_ext_schema(const struct lyd_node *parent, const struct lysc_node *sparent, const char *prefix,
795 size_t prefix_len, LY_VALUE_FORMAT format, void *prefix_data, const char *name, size_t name_len,
796 const struct lysc_node **snode, struct lysc_ext_instance **ext)
797{
798 LY_ERR r;
799 LY_ARRAY_COUNT_TYPE u;
800 struct lysc_ext_instance *nested_exts = NULL;
801 lyplg_ext_data_snode_clb ext_snode_cb;
802
803 /* check if there are any nested extension instances */
804 if (parent && parent->schema) {
805 nested_exts = parent->schema->exts;
806 } else if (sparent) {
807 nested_exts = sparent->exts;
808 }
809 LY_ARRAY_FOR(nested_exts, u) {
810 ext_snode_cb = nested_exts[u].def->plugin->snode;
811 if (!ext_snode_cb) {
812 /* not an extension with nested data */
813 continue;
814 }
815
816 /* try to get the schema node */
817 r = ext_snode_cb(&nested_exts[u], parent, sparent, prefix, prefix_len, format, prefix_data, name, name_len, snode);
818 if (!r) {
819 /* data successfully created, remember the ext instance */
820 *ext = &nested_exts[u];
821 return LY_SUCCESS;
822 } else if (r != LY_ENOT) {
823 /* fatal error */
824 return r;
825 }
826 /* data was not from this module, continue */
827 }
828
829 /* no extensions or none matched */
830 return LY_ENOT;
831}
832
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100833void
Radek Krejci8df109d2021-04-23 12:19:08 +0200834ly_free_prefix_data(LY_VALUE_FORMAT format, void *prefix_data)
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100835{
836 struct ly_set *ns_list;
837 struct lysc_prefix *prefixes;
838 uint32_t i;
839 LY_ARRAY_COUNT_TYPE u;
840
841 if (!prefix_data) {
842 return;
843 }
844
845 switch (format) {
Radek Krejci8df109d2021-04-23 12:19:08 +0200846 case LY_VALUE_XML:
Michal Vaskoddd76592022-01-17 13:34:48 +0100847 case LY_VALUE_STR_NS:
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100848 ns_list = prefix_data;
849 for (i = 0; i < ns_list->count; ++i) {
850 free(((struct lyxml_ns *)ns_list->objs[i])->prefix);
851 free(((struct lyxml_ns *)ns_list->objs[i])->uri);
852 }
853 ly_set_free(ns_list, free);
854 break;
Radek Krejci8df109d2021-04-23 12:19:08 +0200855 case LY_VALUE_SCHEMA_RESOLVED:
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100856 prefixes = prefix_data;
857 LY_ARRAY_FOR(prefixes, u) {
858 free(prefixes[u].prefix);
859 }
860 LY_ARRAY_FREE(prefixes);
861 break;
Radek Krejci224d4b42021-04-23 13:54:59 +0200862 case LY_VALUE_CANON:
Radek Krejci8df109d2021-04-23 12:19:08 +0200863 case LY_VALUE_SCHEMA:
864 case LY_VALUE_JSON:
Radek Krejcif9943642021-04-26 10:18:21 +0200865 case LY_VALUE_LYB:
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100866 break;
867 }
868}
869
870LY_ERR
Radek Krejci8df109d2021-04-23 12:19:08 +0200871ly_dup_prefix_data(const struct ly_ctx *ctx, LY_VALUE_FORMAT format, const void *prefix_data,
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100872 void **prefix_data_p)
873{
874 LY_ERR ret = LY_SUCCESS;
875 struct lyxml_ns *ns;
876 struct lysc_prefix *prefixes = NULL, *orig_pref;
877 struct ly_set *ns_list, *orig_ns;
878 uint32_t i;
879 LY_ARRAY_COUNT_TYPE u;
880
881 assert(!*prefix_data_p);
882
883 switch (format) {
Radek Krejci8df109d2021-04-23 12:19:08 +0200884 case LY_VALUE_SCHEMA:
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100885 *prefix_data_p = (void *)prefix_data;
886 break;
Radek Krejci8df109d2021-04-23 12:19:08 +0200887 case LY_VALUE_SCHEMA_RESOLVED:
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100888 /* copy all the value prefixes */
889 orig_pref = (struct lysc_prefix *)prefix_data;
890 LY_ARRAY_CREATE_GOTO(ctx, prefixes, LY_ARRAY_COUNT(orig_pref), ret, cleanup);
891 *prefix_data_p = prefixes;
892
893 LY_ARRAY_FOR(orig_pref, u) {
894 if (orig_pref[u].prefix) {
895 prefixes[u].prefix = strdup(orig_pref[u].prefix);
896 LY_CHECK_ERR_GOTO(!prefixes[u].prefix, LOGMEM(ctx); ret = LY_EMEM, cleanup);
897 }
898 prefixes[u].mod = orig_pref[u].mod;
899 LY_ARRAY_INCREMENT(prefixes);
900 }
901 break;
Radek Krejci8df109d2021-04-23 12:19:08 +0200902 case LY_VALUE_XML:
Michal Vaskoddd76592022-01-17 13:34:48 +0100903 case LY_VALUE_STR_NS:
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100904 /* copy all the namespaces */
905 LY_CHECK_GOTO(ret = ly_set_new(&ns_list), cleanup);
906 *prefix_data_p = ns_list;
907
908 orig_ns = (struct ly_set *)prefix_data;
909 for (i = 0; i < orig_ns->count; ++i) {
910 ns = calloc(1, sizeof *ns);
911 LY_CHECK_ERR_GOTO(!ns, LOGMEM(ctx); ret = LY_EMEM, cleanup);
912 LY_CHECK_GOTO(ret = ly_set_add(ns_list, ns, 1, NULL), cleanup);
913
914 if (((struct lyxml_ns *)orig_ns->objs[i])->prefix) {
915 ns->prefix = strdup(((struct lyxml_ns *)orig_ns->objs[i])->prefix);
916 LY_CHECK_ERR_GOTO(!ns->prefix, LOGMEM(ctx); ret = LY_EMEM, cleanup);
917 }
918 ns->uri = strdup(((struct lyxml_ns *)orig_ns->objs[i])->uri);
919 LY_CHECK_ERR_GOTO(!ns->uri, LOGMEM(ctx); ret = LY_EMEM, cleanup);
920 }
921 break;
Radek Krejci224d4b42021-04-23 13:54:59 +0200922 case LY_VALUE_CANON:
Radek Krejci8df109d2021-04-23 12:19:08 +0200923 case LY_VALUE_JSON:
Radek Krejcif9943642021-04-26 10:18:21 +0200924 case LY_VALUE_LYB:
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100925 assert(!prefix_data);
926 *prefix_data_p = NULL;
927 break;
928 }
929
930cleanup:
931 if (ret) {
932 ly_free_prefix_data(format, *prefix_data_p);
933 *prefix_data_p = NULL;
934 }
935 return ret;
936}
937
938LY_ERR
Radek Krejcif9943642021-04-26 10:18:21 +0200939ly_store_prefix_data(const struct ly_ctx *ctx, const void *value, size_t value_len, LY_VALUE_FORMAT format,
Radek Krejci8df109d2021-04-23 12:19:08 +0200940 const void *prefix_data, LY_VALUE_FORMAT *format_p, void **prefix_data_p)
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100941{
942 LY_ERR ret = LY_SUCCESS;
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100943 const struct lys_module *mod;
Michal Vaskofc2cd072021-02-24 13:17:17 +0100944 const struct lyxml_ns *ns;
945 struct lyxml_ns *new_ns;
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100946 struct ly_set *ns_list;
947 struct lysc_prefix *prefixes = NULL, *val_pref;
aPiecek83436bc2021-03-30 12:20:45 +0200948 const char *value_iter, *value_next, *value_end;
949 uint32_t substr_len;
950 ly_bool is_prefix;
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100951
952 switch (format) {
Radek Krejci8df109d2021-04-23 12:19:08 +0200953 case LY_VALUE_SCHEMA:
Michal Vaskofc2cd072021-02-24 13:17:17 +0100954 /* copy all referenced modules as prefix - module pairs */
955 if (!*prefix_data_p) {
956 /* new prefix data */
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100957 LY_ARRAY_CREATE_GOTO(ctx, prefixes, 0, ret, cleanup);
Radek Krejci8df109d2021-04-23 12:19:08 +0200958 *format_p = LY_VALUE_SCHEMA_RESOLVED;
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100959 *prefix_data_p = prefixes;
Michal Vaskofc2cd072021-02-24 13:17:17 +0100960 } else {
961 /* reuse prefix data */
Radek Krejci8df109d2021-04-23 12:19:08 +0200962 assert(*format_p == LY_VALUE_SCHEMA_RESOLVED);
Michal Vaskofc2cd072021-02-24 13:17:17 +0100963 prefixes = *prefix_data_p;
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100964 }
965
966 /* add all used prefixes */
Michal Vasko59e90fc2021-09-22 12:17:08 +0200967 value_end = (char *)value + value_len;
aPiecek83436bc2021-03-30 12:20:45 +0200968 for (value_iter = value; value_iter; value_iter = value_next) {
aPieceke3f828d2021-05-10 15:34:41 +0200969 LY_CHECK_GOTO(ret = ly_value_prefix_next(value_iter, value_end, &substr_len, &is_prefix, &value_next), cleanup);
aPiecek83436bc2021-03-30 12:20:45 +0200970 if (is_prefix) {
971 /* we have a possible prefix. Do we already have the prefix? */
972 mod = ly_resolve_prefix(ctx, value_iter, substr_len, *format_p, *prefix_data_p);
973 if (!mod) {
974 mod = ly_resolve_prefix(ctx, value_iter, substr_len, format, prefix_data);
975 if (mod) {
Radek Krejci8df109d2021-04-23 12:19:08 +0200976 assert(*format_p == LY_VALUE_SCHEMA_RESOLVED);
aPiecek83436bc2021-03-30 12:20:45 +0200977 /* store a new prefix - module pair */
978 LY_ARRAY_NEW_GOTO(ctx, prefixes, val_pref, ret, cleanup);
979 *prefix_data_p = prefixes;
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100980
aPiecek83436bc2021-03-30 12:20:45 +0200981 val_pref->prefix = strndup(value_iter, substr_len);
982 LY_CHECK_ERR_GOTO(!val_pref->prefix, LOGMEM(ctx); ret = LY_EMEM, cleanup);
983 val_pref->mod = mod;
984 } /* else it is not even defined */
985 } /* else the prefix is already present */
Michal Vaskofc2cd072021-02-24 13:17:17 +0100986 }
987 }
988 break;
Radek Krejci8df109d2021-04-23 12:19:08 +0200989 case LY_VALUE_XML:
Michal Vaskoddd76592022-01-17 13:34:48 +0100990 case LY_VALUE_STR_NS:
Michal Vaskofc2cd072021-02-24 13:17:17 +0100991 /* copy all referenced namespaces as prefix - namespace pairs */
992 if (!*prefix_data_p) {
993 /* new prefix data */
994 LY_CHECK_GOTO(ret = ly_set_new(&ns_list), cleanup);
Michal Vaskoddd76592022-01-17 13:34:48 +0100995 *format_p = format;
Michal Vaskofc2cd072021-02-24 13:17:17 +0100996 *prefix_data_p = ns_list;
997 } else {
998 /* reuse prefix data */
Michal Vaskoddd76592022-01-17 13:34:48 +0100999 assert(*format_p == format);
Michal Vaskofc2cd072021-02-24 13:17:17 +01001000 ns_list = *prefix_data_p;
1001 }
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01001002
Michal Vasko294e7f02022-02-28 13:59:00 +01001003 /* store default namespace */
1004 ns = lyxml_ns_get(prefix_data, NULL, 0);
1005 if (ns) {
1006 new_ns = calloc(1, sizeof *new_ns);
1007 LY_CHECK_ERR_GOTO(!new_ns, LOGMEM(ctx); ret = LY_EMEM, cleanup);
1008 LY_CHECK_GOTO(ret = ly_set_add(ns_list, new_ns, 1, NULL), cleanup);
1009
1010 new_ns->prefix = NULL;
1011 new_ns->uri = strdup(ns->uri);
1012 LY_CHECK_ERR_GOTO(!new_ns->uri, LOGMEM(ctx); ret = LY_EMEM, cleanup);
1013 }
1014
Michal Vaskofc2cd072021-02-24 13:17:17 +01001015 /* add all used prefixes */
Michal Vasko59e90fc2021-09-22 12:17:08 +02001016 value_end = (char *)value + value_len;
aPiecek83436bc2021-03-30 12:20:45 +02001017 for (value_iter = value; value_iter; value_iter = value_next) {
aPieceke3f828d2021-05-10 15:34:41 +02001018 LY_CHECK_GOTO(ret = ly_value_prefix_next(value_iter, value_end, &substr_len, &is_prefix, &value_next), cleanup);
aPiecek83436bc2021-03-30 12:20:45 +02001019 if (is_prefix) {
1020 /* we have a possible prefix. Do we already have the prefix? */
1021 ns = lyxml_ns_get(ns_list, value_iter, substr_len);
1022 if (!ns) {
1023 ns = lyxml_ns_get(prefix_data, value_iter, substr_len);
1024 if (ns) {
1025 /* store a new prefix - namespace pair */
1026 new_ns = calloc(1, sizeof *new_ns);
1027 LY_CHECK_ERR_GOTO(!new_ns, LOGMEM(ctx); ret = LY_EMEM, cleanup);
1028 LY_CHECK_GOTO(ret = ly_set_add(ns_list, new_ns, 1, NULL), cleanup);
Michal Vaskofc2cd072021-02-24 13:17:17 +01001029
aPiecek83436bc2021-03-30 12:20:45 +02001030 new_ns->prefix = strndup(value_iter, substr_len);
1031 LY_CHECK_ERR_GOTO(!new_ns->prefix, LOGMEM(ctx); ret = LY_EMEM, cleanup);
1032 new_ns->uri = strdup(ns->uri);
1033 LY_CHECK_ERR_GOTO(!new_ns->uri, LOGMEM(ctx); ret = LY_EMEM, cleanup);
1034 } /* else it is not even defined */
1035 } /* else the prefix is already present */
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01001036 }
1037 }
1038 break;
Radek Krejci224d4b42021-04-23 13:54:59 +02001039 case LY_VALUE_CANON:
Radek Krejci8df109d2021-04-23 12:19:08 +02001040 case LY_VALUE_SCHEMA_RESOLVED:
1041 case LY_VALUE_JSON:
Radek Krejcif9943642021-04-26 10:18:21 +02001042 case LY_VALUE_LYB:
Michal Vaskofc2cd072021-02-24 13:17:17 +01001043 if (!*prefix_data_p) {
1044 /* new prefix data - simply copy all the prefix data */
1045 *format_p = format;
1046 LY_CHECK_GOTO(ret = ly_dup_prefix_data(ctx, format, prefix_data, prefix_data_p), cleanup);
1047 } /* else reuse prefix data - the prefix data are always the same, nothing to do */
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01001048 break;
1049 }
1050
1051cleanup:
1052 if (ret) {
1053 ly_free_prefix_data(*format_p, *prefix_data_p);
1054 *prefix_data_p = NULL;
1055 }
1056 return ret;
1057}
Michal Vasko7ed1fcb2020-12-03 14:15:22 +01001058
1059const char *
Radek Krejci8df109d2021-04-23 12:19:08 +02001060ly_format2str(LY_VALUE_FORMAT format)
Michal Vasko7ed1fcb2020-12-03 14:15:22 +01001061{
1062 switch (format) {
Radek Krejci224d4b42021-04-23 13:54:59 +02001063 case LY_VALUE_CANON:
1064 return "canonical";
Radek Krejci8df109d2021-04-23 12:19:08 +02001065 case LY_VALUE_SCHEMA:
Michal Vasko7ed1fcb2020-12-03 14:15:22 +01001066 return "schema imports";
Radek Krejci8df109d2021-04-23 12:19:08 +02001067 case LY_VALUE_SCHEMA_RESOLVED:
Michal Vasko7ed1fcb2020-12-03 14:15:22 +01001068 return "schema stored mapping";
Radek Krejci8df109d2021-04-23 12:19:08 +02001069 case LY_VALUE_XML:
Michal Vasko7ed1fcb2020-12-03 14:15:22 +01001070 return "XML prefixes";
Radek Krejci8df109d2021-04-23 12:19:08 +02001071 case LY_VALUE_JSON:
Michal Vasko7ed1fcb2020-12-03 14:15:22 +01001072 return "JSON module names";
Radek Krejcif9943642021-04-26 10:18:21 +02001073 case LY_VALUE_LYB:
1074 return "LYB prefixes";
Michal Vasko7ed1fcb2020-12-03 14:15:22 +01001075 default:
1076 break;
1077 }
1078
1079 return NULL;
1080}
Michal Vasko43297a02021-05-19 11:12:37 +02001081
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001082LIBYANG_API_DEF LY_ERR
Michal Vasko43297a02021-05-19 11:12:37 +02001083ly_time_str2time(const char *value, time_t *time, char **fractions_s)
1084{
1085 struct tm tm = {0};
1086 uint32_t i, frac_len;
1087 const char *frac;
1088 int64_t shift, shift_m;
1089 time_t t;
1090
1091 LY_CHECK_ARG_RET(NULL, value, time, LY_EINVAL);
1092
1093 tm.tm_year = atoi(&value[0]) - 1900;
1094 tm.tm_mon = atoi(&value[5]) - 1;
1095 tm.tm_mday = atoi(&value[8]);
1096 tm.tm_hour = atoi(&value[11]);
1097 tm.tm_min = atoi(&value[14]);
1098 tm.tm_sec = atoi(&value[17]);
1099
1100 t = timegm(&tm);
1101 i = 19;
1102
1103 /* fractions of a second */
1104 if (value[i] == '.') {
1105 ++i;
1106 frac = &value[i];
1107 for (frac_len = 0; isdigit(frac[frac_len]); ++frac_len) {}
1108
1109 i += frac_len;
Michal Vasko43297a02021-05-19 11:12:37 +02001110 } else {
1111 frac = NULL;
1112 }
1113
1114 /* apply offset */
1115 if ((value[i] == 'Z') || (value[i] == 'z')) {
1116 /* zero shift */
1117 shift = 0;
1118 } else {
1119 shift = strtol(&value[i], NULL, 10);
1120 shift = shift * 60 * 60; /* convert from hours to seconds */
1121 shift_m = strtol(&value[i + 4], NULL, 10) * 60; /* includes conversion from minutes to seconds */
1122 /* correct sign */
1123 if (shift < 0) {
1124 shift_m *= -1;
1125 }
1126 /* connect hours and minutes of the shift */
1127 shift = shift + shift_m;
1128 }
1129
1130 /* we have to shift to the opposite way to correct the time */
1131 t -= shift;
1132
1133 *time = t;
1134 if (fractions_s) {
1135 if (frac) {
1136 *fractions_s = strndup(frac, frac_len);
1137 LY_CHECK_RET(!*fractions_s, LY_EMEM);
1138 } else {
1139 *fractions_s = NULL;
1140 }
1141 }
1142 return LY_SUCCESS;
1143}
1144
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001145LIBYANG_API_DEF LY_ERR
Michal Vasko43297a02021-05-19 11:12:37 +02001146ly_time_time2str(time_t time, const char *fractions_s, char **str)
1147{
1148 struct tm tm;
Michal Vasko143ffa82021-05-20 11:11:39 +02001149 char zoneshift[8];
Michal Vasko43297a02021-05-19 11:12:37 +02001150 int32_t zonediff_h, zonediff_m;
1151
1152 LY_CHECK_ARG_RET(NULL, str, LY_EINVAL);
1153
1154 /* initialize the local timezone */
1155 tzset();
1156
Jan Kundrátb17efe92022-02-14 18:32:18 +01001157#ifdef HAVE_TM_GMTOFF
Michal Vasko43297a02021-05-19 11:12:37 +02001158 /* convert */
1159 if (!localtime_r(&time, &tm)) {
1160 return LY_ESYS;
1161 }
1162
1163 /* get timezone offset */
1164 if (tm.tm_gmtoff == 0) {
1165 /* time is Zulu (UTC) */
1166 zonediff_h = 0;
1167 zonediff_m = 0;
1168 } else {
1169 /* timezone offset */
1170 zonediff_h = tm.tm_gmtoff / 60 / 60;
1171 zonediff_m = tm.tm_gmtoff / 60 % 60;
1172 }
1173 sprintf(zoneshift, "%+03d:%02d", zonediff_h, zonediff_m);
Jan Kundráte182a272021-12-09 23:25:15 +01001174#else
Jan Kundrátb17efe92022-02-14 18:32:18 +01001175 /* convert */
1176 if (!gmtime_r(&time, &tm)) {
1177 return LY_ESYS;
1178 }
1179
Jan Kundráte182a272021-12-09 23:25:15 +01001180 (void)zonediff_h;
1181 (void)zonediff_m;
1182 sprintf(zoneshift, "-00:00");
1183#endif
Michal Vasko43297a02021-05-19 11:12:37 +02001184
1185 /* print */
1186 if (asprintf(str, "%04d-%02d-%02dT%02d:%02d:%02d%s%s%s",
1187 tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday, tm.tm_hour, tm.tm_min, tm.tm_sec,
1188 fractions_s ? "." : "", fractions_s ? fractions_s : "", zoneshift) == -1) {
1189 return LY_EMEM;
1190 }
1191
1192 return LY_SUCCESS;
1193}
1194
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001195LIBYANG_API_DEF LY_ERR
Michal Vasko43297a02021-05-19 11:12:37 +02001196ly_time_str2ts(const char *value, struct timespec *ts)
1197{
1198 LY_ERR rc;
Michal Vasko72975062021-08-25 08:13:04 +02001199 char *fractions_s, frac_buf[10];
Michal Vasko43297a02021-05-19 11:12:37 +02001200 int frac_len;
1201
1202 LY_CHECK_ARG_RET(NULL, value, ts, LY_EINVAL);
1203
1204 rc = ly_time_str2time(value, &ts->tv_sec, &fractions_s);
1205 LY_CHECK_RET(rc);
1206
1207 /* convert fractions of a second to nanoseconds */
1208 if (fractions_s) {
Michal Vasko72975062021-08-25 08:13:04 +02001209 /* init frac_buf with zeroes */
1210 memset(frac_buf, '0', 9);
1211 frac_buf[9] = '\0';
1212
Michal Vasko43297a02021-05-19 11:12:37 +02001213 frac_len = strlen(fractions_s);
1214 memcpy(frac_buf, fractions_s, frac_len > 9 ? 9 : frac_len);
1215 ts->tv_nsec = atol(frac_buf);
1216 free(fractions_s);
1217 } else {
1218 ts->tv_nsec = 0;
1219 }
1220
1221 return LY_SUCCESS;
1222}
1223
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001224LIBYANG_API_DEF LY_ERR
Michal Vasko43297a02021-05-19 11:12:37 +02001225ly_time_ts2str(const struct timespec *ts, char **str)
1226{
1227 char frac_buf[10];
1228
Jan Kundrátbd157002021-08-30 14:02:22 +02001229 LY_CHECK_ARG_RET(NULL, ts, str, ((ts->tv_nsec <= 999999999) && (ts->tv_nsec >= 0)), LY_EINVAL);
Michal Vasko43297a02021-05-19 11:12:37 +02001230
1231 /* convert nanoseconds to fractions of a second */
1232 if (ts->tv_nsec) {
1233 sprintf(frac_buf, "%09ld", ts->tv_nsec);
1234 }
1235
1236 return ly_time_time2str(ts->tv_sec, ts->tv_nsec ? frac_buf : NULL, str);
1237}