blob: f6a53c9a5eb16514a2ef996e7b73f1fb93d2073b [file] [log] [blame]
Radek Krejcie7b95092019-05-15 11:03:07 +02001/**
Michal Vasko59892dd2022-05-13 11:02:30 +02002 * @file tree_data_common.c
Radek Krejcie7b95092019-05-15 11:03:07 +02003 * @author Radek Krejci <rkrejci@cesnet.cz>
Michal Vasko59892dd2022-05-13 11:02:30 +02004 * @author Michal Vasko <mvasko@cesnet.cz>
5 * @brief Parsing and validation common functions for data trees
Radek Krejcie7b95092019-05-15 11:03:07 +02006 *
Michal Vasko8cc3f662022-03-29 11:25:51 +02007 * Copyright (c) 2015 - 2022 CESNET, z.s.p.o.
Radek Krejcie7b95092019-05-15 11:03:07 +02008 *
9 * This source code is licensed under BSD 3-Clause License (the "License").
10 * You may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
12 *
13 * https://opensource.org/licenses/BSD-3-Clause
14 */
Michal Vasko43297a02021-05-19 11:12:37 +020015
16#define _GNU_SOURCE /* asprintf, strdup */
Radek Krejcie7b95092019-05-15 11:03:07 +020017
18#include <assert.h>
Michal Vasko43297a02021-05-19 11:12:37 +020019#include <ctype.h>
Radek Krejci535ea9f2020-05-29 16:01:05 +020020#include <stdint.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020021#include <stdlib.h>
Radek Krejciad97c5f2020-06-30 09:19:28 +020022#include <string.h>
Michal Vasko43297a02021-05-19 11:12:37 +020023#include <time.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020024
Radek Krejci535ea9f2020-05-29 16:01:05 +020025#include "common.h"
Michal Vasko6b5cb2a2020-11-11 19:11:21 +010026#include "compat.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020027#include "context.h"
Radek Krejci47fab892020-11-05 17:02:41 +010028#include "dict.h"
Radek Krejciad97c5f2020-06-30 09:19:28 +020029#include "hash_table.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020030#include "log.h"
Radek Krejciad97c5f2020-06-30 09:19:28 +020031#include "lyb.h"
Radek Krejci7931b192020-06-25 17:05:03 +020032#include "parser_data.h"
Michal Vasko8cc3f662022-03-29 11:25:51 +020033#include "plugins_exts.h"
Michal Vaskoa820c312021-02-05 16:33:00 +010034#include "printer_data.h"
Radek Krejciad97c5f2020-06-30 09:19:28 +020035#include "set.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020036#include "tree.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020037#include "tree_data.h"
Michal Vasko60ea6352020-06-29 13:39:39 +020038#include "tree_data_internal.h"
Radek Krejci859a15a2021-03-05 20:56:59 +010039#include "tree_edit.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020040#include "tree_schema.h"
Radek Krejci0aa1f702021-04-01 16:16:19 +020041#include "tree_schema_internal.h"
Radek Krejci4f2e3e52021-03-30 14:20:28 +020042#include "validation.h"
Radek Krejci77114102021-03-10 15:21:57 +010043#include "xml.h"
aPiecekdf23eee2021-10-07 12:21:50 +020044#include "xpath.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020045
Michal Vaskod7c048c2021-05-18 16:12:55 +020046/**
47 * @brief Find an entry in duplicate instance cache for an instance. Create it if it does not exist.
48 *
49 * @param[in] first_inst Instance of the cache entry.
50 * @param[in,out] dup_inst_cache Duplicate instance cache.
51 * @return Instance cache entry.
52 */
53static struct lyd_dup_inst *
54lyd_dup_inst_get(const struct lyd_node *first_inst, struct lyd_dup_inst **dup_inst_cache)
55{
56 struct lyd_dup_inst *item;
57 LY_ARRAY_COUNT_TYPE u;
58
59 LY_ARRAY_FOR(*dup_inst_cache, u) {
60 if ((*dup_inst_cache)[u].inst_set->dnodes[0] == first_inst) {
61 return &(*dup_inst_cache)[u];
62 }
63 }
64
65 /* it was not added yet, add it now */
66 LY_ARRAY_NEW_RET(LYD_CTX(first_inst), *dup_inst_cache, item, NULL);
67
68 return item;
69}
70
71LY_ERR
72lyd_dup_inst_next(struct lyd_node **inst, const struct lyd_node *siblings, struct lyd_dup_inst **dup_inst_cache)
73{
74 struct lyd_dup_inst *dup_inst;
75
Michal Vasko83ae7772022-06-08 10:01:55 +020076 if (!*inst) {
77 /* no match, inst is unchanged */
Michal Vaskod7c048c2021-05-18 16:12:55 +020078 return LY_SUCCESS;
79 }
80
Michal Vasko83ae7772022-06-08 10:01:55 +020081 /* there can be more exact same instances (even if not allowed in invalid data) and we must make sure we do not
82 * match a single node more times */
Michal Vaskod7c048c2021-05-18 16:12:55 +020083 dup_inst = lyd_dup_inst_get(*inst, dup_inst_cache);
84 LY_CHECK_ERR_RET(!dup_inst, LOGMEM(LYD_CTX(siblings)), LY_EMEM);
85
86 if (!dup_inst->used) {
87 /* we did not cache these instances yet, do so */
88 lyd_find_sibling_dup_inst_set(siblings, *inst, &dup_inst->inst_set);
89 assert(dup_inst->inst_set->count && (dup_inst->inst_set->dnodes[0] == *inst));
90 }
91
92 if (dup_inst->used == dup_inst->inst_set->count) {
93 /* we have used all the instances */
94 *inst = NULL;
95 } else {
96 assert(dup_inst->used < dup_inst->inst_set->count);
97
98 /* use another instance */
99 *inst = dup_inst->inst_set->dnodes[dup_inst->used];
100 ++dup_inst->used;
101 }
102
103 return LY_SUCCESS;
104}
105
106void
107lyd_dup_inst_free(struct lyd_dup_inst *dup_inst)
108{
109 LY_ARRAY_COUNT_TYPE u;
110
111 LY_ARRAY_FOR(dup_inst, u) {
112 ly_set_free(dup_inst[u].inst_set, NULL);
113 }
114 LY_ARRAY_FREE(dup_inst);
115}
116
Michal Vaskoa6669ba2020-08-06 16:14:26 +0200117struct lyd_node *
118lys_getnext_data(const struct lyd_node *last, const struct lyd_node *sibling, const struct lysc_node **slast,
Radek Krejci0f969882020-08-21 16:56:47 +0200119 const struct lysc_node *parent, const struct lysc_module *module)
Michal Vaskoa6669ba2020-08-06 16:14:26 +0200120{
121 const struct lysc_node *siter = NULL;
122 struct lyd_node *match = NULL;
123
124 assert(parent || module);
125 assert(!last || (slast && *slast));
126
127 if (slast) {
128 siter = *slast;
129 }
130
131 if (last && last->next && (last->next->schema == siter)) {
132 /* return next data instance */
133 return last->next;
134 }
135
136 /* find next schema node data instance */
137 while ((siter = lys_getnext(siter, parent, module, 0))) {
138 if (!lyd_find_sibling_val(sibling, siter, NULL, 0, &match)) {
139 break;
140 }
141 }
142
143 if (slast) {
144 *slast = siter;
145 }
146 return match;
147}
148
Radek Krejcie7b95092019-05-15 11:03:07 +0200149struct lyd_node **
Michal Vaskoe0665742021-02-11 11:08:44 +0100150lyd_node_child_p(struct lyd_node *node)
Radek Krejcie7b95092019-05-15 11:03:07 +0200151{
152 assert(node);
Michal Vasko52927e22020-03-16 17:26:14 +0100153
154 if (!node->schema) {
155 return &((struct lyd_node_opaq *)node)->child;
156 } else {
157 switch (node->schema->nodetype) {
158 case LYS_CONTAINER:
159 case LYS_LIST:
Michal Vasko1bf09392020-03-27 12:38:10 +0100160 case LYS_RPC:
Michal Vasko52927e22020-03-16 17:26:14 +0100161 case LYS_ACTION:
162 case LYS_NOTIF:
163 return &((struct lyd_node_inner *)node)->child;
164 default:
165 return NULL;
166 }
Radek Krejcie7b95092019-05-15 11:03:07 +0200167 }
168}
169
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100170LIBYANG_API_DEF LY_ERR
aPiecekdf23eee2021-10-07 12:21:50 +0200171lyxp_vars_set(struct lyxp_var **vars, const char *name, const char *value)
172{
173 LY_ERR ret = LY_SUCCESS;
174 char *var_name = NULL, *var_value = NULL;
175 struct lyxp_var *item;
176
177 if (!vars || !name || !value) {
178 return LY_EINVAL;
179 }
180
181 /* If variable is already defined then change its value. */
182 if (*vars && !lyxp_vars_find(*vars, name, 0, &item)) {
183 var_value = strdup(value);
184 LY_CHECK_RET(!var_value, LY_EMEM);
185
186 /* Set new value. */
187 free(item->value);
188 item->value = var_value;
189 } else {
190 var_name = strdup(name);
191 var_value = strdup(value);
192 LY_CHECK_ERR_GOTO(!var_name || !var_value, ret = LY_EMEM, error);
193
194 /* Add new variable. */
195 LY_ARRAY_NEW_GOTO(NULL, *vars, item, ret, error);
196 item->name = var_name;
197 item->value = var_value;
198 }
199
200 return LY_SUCCESS;
201
202error:
203 free(var_name);
204 free(var_value);
205 return ret;
206}
207
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100208LIBYANG_API_DEF void
aPiecekdf23eee2021-10-07 12:21:50 +0200209lyxp_vars_free(struct lyxp_var *vars)
210{
211 LY_ARRAY_COUNT_TYPE u;
212
213 if (!vars) {
214 return;
215 }
216
217 LY_ARRAY_FOR(vars, u) {
218 free(vars[u].name);
219 free(vars[u].value);
220 }
221
222 LY_ARRAY_FREE(vars);
223}
224
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100225LIBYANG_API_DEF struct lyd_node *
Radek Krejcia1c1e542020-09-29 16:06:52 +0200226lyd_child_no_keys(const struct lyd_node *node)
227{
228 struct lyd_node **children;
229
230 if (!node) {
231 return NULL;
232 }
233
234 if (!node->schema) {
235 /* opaq node */
Michal Vasko9e685082021-01-29 14:49:09 +0100236 return ((struct lyd_node_opaq *)node)->child;
Radek Krejcia1c1e542020-09-29 16:06:52 +0200237 }
238
Michal Vaskoe0665742021-02-11 11:08:44 +0100239 children = lyd_node_child_p((struct lyd_node *)node);
Radek Krejcia1c1e542020-09-29 16:06:52 +0200240 if (children) {
241 struct lyd_node *child = *children;
242 while (child && child->schema && (child->schema->flags & LYS_KEY)) {
243 child = child->next;
Michal Vasko5bfd4be2020-06-23 13:26:19 +0200244 }
245 return child;
Radek Krejcie7b95092019-05-15 11:03:07 +0200246 } else {
247 return NULL;
248 }
249}
Michal Vasko9b368d32020-02-14 13:53:31 +0100250
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100251LIBYANG_API_DEF const struct lys_module *
Michal Vaskoc193ce92020-03-06 11:04:48 +0100252lyd_owner_module(const struct lyd_node *node)
Michal Vasko9b368d32020-02-14 13:53:31 +0100253{
Michal Vaskod5cfa6e2020-11-23 16:56:08 +0100254 const struct lyd_node_opaq *opaq;
Michal Vasko9b368d32020-02-14 13:53:31 +0100255
Michal Vaskod5cfa6e2020-11-23 16:56:08 +0100256 if (!node) {
Michal Vaskoc193ce92020-03-06 11:04:48 +0100257 return NULL;
258 }
Michal Vasko9b368d32020-02-14 13:53:31 +0100259
Michal Vaskod5cfa6e2020-11-23 16:56:08 +0100260 if (!node->schema) {
261 opaq = (struct lyd_node_opaq *)node;
262 switch (opaq->format) {
Radek Krejci8df109d2021-04-23 12:19:08 +0200263 case LY_VALUE_XML:
Michal Vaskod5cfa6e2020-11-23 16:56:08 +0100264 return ly_ctx_get_module_implemented_ns(LYD_CTX(node), opaq->name.module_ns);
Radek Krejci8df109d2021-04-23 12:19:08 +0200265 case LY_VALUE_JSON:
Michal Vaskod5cfa6e2020-11-23 16:56:08 +0100266 return ly_ctx_get_module_implemented(LYD_CTX(node), opaq->name.module_name);
267 default:
268 return NULL;
269 }
270 }
271
Michal Vaskoef53c812021-10-13 10:21:03 +0200272 return lysc_owner_module(node->schema);
Michal Vasko9b368d32020-02-14 13:53:31 +0100273}
Michal Vaskob1b5c262020-03-05 14:29:47 +0100274
Michal Vasko598063b2021-07-19 11:39:05 +0200275void
276lyd_first_module_sibling(struct lyd_node **node, const struct lys_module *mod)
277{
278 int cmp;
279 struct lyd_node *first;
Michal Vaskoec139eb2022-05-10 10:08:40 +0200280 const struct lys_module *own_mod;
Michal Vasko598063b2021-07-19 11:39:05 +0200281
282 assert(node && mod);
283
284 if (!*node) {
285 return;
286 }
287
288 first = *node;
Michal Vaskoec139eb2022-05-10 10:08:40 +0200289 own_mod = lyd_owner_module(first);
290 cmp = own_mod ? strcmp(own_mod->name, mod->name) : 1;
Michal Vasko598063b2021-07-19 11:39:05 +0200291 if (cmp > 0) {
292 /* there may be some preceding data */
293 while (first->prev->next) {
294 first = first->prev;
295 if (lyd_owner_module(first) == mod) {
296 cmp = 0;
297 break;
298 }
299 }
300 }
301
302 if (cmp == 0) {
303 /* there may be some preceding data belonging to this module */
304 while (first->prev->next) {
305 if (lyd_owner_module(first->prev) != mod) {
306 break;
307 }
308 first = first->prev;
309 }
310 }
311
312 if (cmp < 0) {
313 /* there may be some following data */
314 LY_LIST_FOR(first, first) {
315 if (lyd_owner_module(first) == mod) {
316 cmp = 0;
317 break;
318 }
319 }
320 }
321
322 if (cmp == 0) {
323 /* we have found the first module data node */
324 *node = first;
325 }
326}
327
Michal Vaskob1b5c262020-03-05 14:29:47 +0100328const struct lys_module *
Michal Vasko26e80012020-07-08 10:55:46 +0200329lyd_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 +0200330 struct lyd_node **first)
Michal Vaskob1b5c262020-03-05 14:29:47 +0100331{
332 struct lyd_node *iter;
333 const struct lys_module *mod;
334
335 /* get the next module */
Michal Vasko26e80012020-07-08 10:55:46 +0200336 if (module) {
337 if (*i) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100338 mod = NULL;
Michal Vasko26e80012020-07-08 10:55:46 +0200339 } else {
340 mod = module;
341 ++(*i);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100342 }
343 } else {
344 do {
345 mod = ly_ctx_get_module_iter(ctx, i);
346 } while (mod && !mod->implemented);
347 }
348
349 /* find its data */
350 *first = NULL;
351 if (mod) {
352 LY_LIST_FOR(tree, iter) {
Michal Vaskoc193ce92020-03-06 11:04:48 +0100353 if (lyd_owner_module(iter) == mod) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100354 *first = iter;
355 break;
356 }
357 }
358 }
359
360 return mod;
361}
362
363const struct lys_module *
364lyd_data_next_module(struct lyd_node **next, struct lyd_node **first)
365{
366 const struct lys_module *mod;
367
368 if (!*next) {
369 /* all data traversed */
370 *first = NULL;
371 return NULL;
372 }
373
374 *first = *next;
375
376 /* prepare next */
Michal Vaskoc193ce92020-03-06 11:04:48 +0100377 mod = lyd_owner_module(*next);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100378 LY_LIST_FOR(*next, *next) {
Michal Vaskoc193ce92020-03-06 11:04:48 +0100379 if (lyd_owner_module(*next) != mod) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100380 break;
381 }
382 }
383
384 return mod;
385}
Michal Vasko9f96a052020-03-10 09:41:45 +0100386
387LY_ERR
Michal Vasko59892dd2022-05-13 11:02:30 +0200388lyd_value_store(const struct ly_ctx *ctx, struct lyd_value *val, const struct lysc_type *type, const void *value,
389 size_t value_len, ly_bool *dynamic, LY_VALUE_FORMAT format, void *prefix_data, uint32_t hints,
390 const struct lysc_node *ctx_node, ly_bool *incomplete)
391{
392 LY_ERR ret;
393 struct ly_err_item *err = NULL;
394 uint32_t options = (dynamic && *dynamic ? LYPLG_TYPE_STORE_DYNAMIC : 0);
395
396 if (!value) {
397 value = "";
398 }
399 if (incomplete) {
400 *incomplete = 0;
401 }
402
403 ret = type->plugin->store(ctx, type, value, value_len, options, format, prefix_data, hints, ctx_node, val, NULL, &err);
404 if (dynamic) {
405 *dynamic = 0;
406 }
407
408 if (ret == LY_EINCOMPLETE) {
409 if (incomplete) {
410 *incomplete = 1;
411 }
412 } else if (ret) {
413 if (err) {
414 LOGVAL_ERRITEM(ctx, err);
415 ly_err_free(err);
416 } else {
417 LOGVAL(ctx, LYVE_OTHER, "Storing value failed.");
418 }
419 return ret;
420 }
421
422 return LY_SUCCESS;
423}
424
425LY_ERR
426lyd_value_validate_incomplete(const struct ly_ctx *ctx, const struct lysc_type *type, struct lyd_value *val,
427 const struct lyd_node *ctx_node, const struct lyd_node *tree)
428{
429 LY_ERR ret;
430 struct ly_err_item *err = NULL;
431
432 assert(type->plugin->validate);
433
434 ret = type->plugin->validate(ctx, type, ctx_node, tree, val, &err);
435 if (ret) {
436 if (err) {
437 LOGVAL_ERRITEM(ctx, err);
438 ly_err_free(err);
439 } else {
440 LOGVAL(ctx, LYVE_OTHER, "Resolving value \"%s\" failed.", type->plugin->print(ctx, val, LY_VALUE_CANON,
441 NULL, NULL, NULL));
442 }
443 return ret;
444 }
445
446 return LY_SUCCESS;
447}
448
449LY_ERR
450lys_value_validate(const struct ly_ctx *ctx, const struct lysc_node *node, const char *value, size_t value_len,
451 LY_VALUE_FORMAT format, void *prefix_data)
452{
453 LY_ERR rc = LY_SUCCESS;
454 struct ly_err_item *err = NULL;
455 struct lyd_value storage;
456 struct lysc_type *type;
457
458 LY_CHECK_ARG_RET(ctx, node, value, LY_EINVAL);
459
460 if (!(node->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
461 LOGARG(ctx, node);
462 return LY_EINVAL;
463 }
464
465 type = ((struct lysc_node_leaf *)node)->type;
466 rc = type->plugin->store(ctx ? ctx : node->module->ctx, type, value, value_len, 0, format, prefix_data,
467 LYD_HINT_SCHEMA, node, &storage, NULL, &err);
468 if (rc == LY_EINCOMPLETE) {
469 /* actually success since we do not provide the context tree and call validation with
470 * LY_TYPE_OPTS_INCOMPLETE_DATA */
471 rc = LY_SUCCESS;
472 } else if (rc && err) {
473 if (ctx) {
474 /* log only in case the ctx was provided as input parameter */
475 LOG_LOCSET(NULL, NULL, err->path, NULL);
476 LOGVAL_ERRITEM(ctx, err);
477 LOG_LOCBACK(0, 0, 1, 0);
478 }
479 ly_err_free(err);
480 }
481
482 if (!rc) {
483 type->plugin->free(ctx ? ctx : node->module->ctx, &storage);
484 }
485 return rc;
486}
487
488LIBYANG_API_DEF LY_ERR
489lyd_value_validate(const struct ly_ctx *ctx, const struct lysc_node *schema, const char *value, size_t value_len,
490 const struct lyd_node *ctx_node, const struct lysc_type **realtype, const char **canonical)
491{
492 LY_ERR rc;
493 struct ly_err_item *err = NULL;
494 struct lysc_type *type;
495 struct lyd_value val = {0};
496 ly_bool stored = 0, log = 1;
497
498 LY_CHECK_ARG_RET(ctx, schema, value, LY_EINVAL);
499
500 if (!ctx) {
501 ctx = schema->module->ctx;
502 log = 0;
503 }
504 type = ((struct lysc_node_leaf *)schema)->type;
505
506 /* store */
507 rc = type->plugin->store(ctx, type, value, value_len, 0, LY_VALUE_JSON, NULL,
508 LYD_HINT_DATA, schema, &val, NULL, &err);
509 if (!rc || (rc == LY_EINCOMPLETE)) {
510 stored = 1;
511 }
512
513 if (ctx_node && (rc == LY_EINCOMPLETE)) {
514 /* resolve */
515 rc = type->plugin->validate(ctx, type, ctx_node, ctx_node, &val, &err);
516 }
517
518 if (rc && (rc != LY_EINCOMPLETE) && err) {
519 if (log) {
520 /* log error */
521 if (err->path) {
522 LOG_LOCSET(NULL, NULL, err->path, NULL);
523 } else if (ctx_node) {
524 LOG_LOCSET(NULL, ctx_node, NULL, NULL);
525 } else {
526 LOG_LOCSET(schema, NULL, NULL, NULL);
527 }
528 LOGVAL_ERRITEM(ctx, err);
529 if (err->path) {
530 LOG_LOCBACK(0, 0, 1, 0);
531 } else if (ctx_node) {
532 LOG_LOCBACK(0, 1, 0, 0);
533 } else {
534 LOG_LOCBACK(1, 0, 0, 0);
535 }
536 }
537 ly_err_free(err);
538 }
539
540 if (!rc || (rc == LY_EINCOMPLETE)) {
541 if (realtype) {
542 /* return realtype */
543 if (val.realtype->basetype == LY_TYPE_UNION) {
544 *realtype = val.subvalue->value.realtype;
545 } else {
546 *realtype = val.realtype;
547 }
548 }
549
550 if (canonical) {
551 /* return canonical value */
552 lydict_insert(ctx, val.realtype->plugin->print(ctx, &val, LY_VALUE_CANON, NULL, NULL, NULL), 0, canonical);
553 }
554 }
555
556 if (stored) {
557 /* free value */
558 type->plugin->free(ctx ? ctx : schema->module->ctx, &val);
559 }
560 return rc;
561}
562
563LIBYANG_API_DEF LY_ERR
564lyd_value_compare(const struct lyd_node_term *node, const char *value, size_t value_len)
565{
566 LY_ERR ret = LY_SUCCESS;
567 struct ly_ctx *ctx;
568 struct lysc_type *type;
569 struct lyd_value val = {0};
570
571 LY_CHECK_ARG_RET(node ? node->schema->module->ctx : NULL, node, value, LY_EINVAL);
572
573 ctx = node->schema->module->ctx;
574 type = ((struct lysc_node_leaf *)node->schema)->type;
575
576 /* store the value */
577 LOG_LOCSET(node->schema, &node->node, NULL, NULL);
578 ret = lyd_value_store(ctx, &val, type, value, value_len, NULL, LY_VALUE_JSON, NULL, LYD_HINT_DATA, node->schema, NULL);
579 LOG_LOCBACK(1, 1, 0, 0);
580 LY_CHECK_RET(ret);
581
582 /* compare values */
583 ret = type->plugin->compare(&node->value, &val);
584
585 type->plugin->free(ctx, &val);
586 return ret;
587}
588
589LIBYANG_API_DEF ly_bool
590lyd_is_default(const struct lyd_node *node)
591{
592 const struct lysc_node_leaf *leaf;
593 const struct lysc_node_leaflist *llist;
594 const struct lyd_node_term *term;
595 LY_ARRAY_COUNT_TYPE u;
596
597 if (!(node->schema->nodetype & LYD_NODE_TERM)) {
598 return 0;
599 }
600
601 term = (const struct lyd_node_term *)node;
602
603 if (node->schema->nodetype == LYS_LEAF) {
604 leaf = (const struct lysc_node_leaf *)node->schema;
605 if (!leaf->dflt) {
606 return 0;
607 }
608
609 /* compare with the default value */
610 if (!leaf->type->plugin->compare(&term->value, leaf->dflt)) {
611 return 1;
612 }
613 } else {
614 llist = (const struct lysc_node_leaflist *)node->schema;
615 if (!llist->dflts) {
616 return 0;
617 }
618
619 LY_ARRAY_FOR(llist->dflts, u) {
620 /* compare with each possible default value */
621 if (!llist->type->plugin->compare(&term->value, llist->dflts[u])) {
622 return 1;
623 }
624 }
625 }
626
627 return 0;
628}
629
630LIBYANG_API_DEF uint32_t
631lyd_list_pos(const struct lyd_node *instance)
632{
633 const struct lyd_node *iter = NULL;
634 uint32_t pos = 0;
635
636 if (!instance || !(instance->schema->nodetype & (LYS_LIST | LYS_LEAFLIST))) {
637 return 0;
638 }
639
640 /* data instances are ordered, so we can stop when we found instance of other schema node */
641 for (iter = instance; iter->schema == instance->schema; iter = iter->prev) {
642 if (pos && (iter->next == NULL)) {
643 /* overrun to the end of the siblings list */
644 break;
645 }
646 ++pos;
647 }
648
649 return pos;
650}
651
652LIBYANG_API_DEF struct lyd_node *
653lyd_first_sibling(const struct lyd_node *node)
654{
655 struct lyd_node *start;
656
657 if (!node) {
658 return NULL;
659 }
660
661 /* get the first sibling */
662 if (node->parent) {
663 start = node->parent->child;
664 } else {
665 for (start = (struct lyd_node *)node; start->prev->next; start = start->prev) {}
666 }
667
668 return start;
669}
670
Michal Vaskobfff6ac2022-02-23 16:22:53 +0100671/**
672 * @brief Check list node parsed into an opaque node for the reason.
673 *
674 * @param[in] node Opaque node.
675 * @param[in] snode Schema node of @p opaq.
676 * @return LY_SUCCESS if the node is valid;
677 * @return LY_ERR on error.
678 */
679static LY_ERR
680lyd_parse_opaq_list_error(const struct lyd_node *node, const struct lysc_node *snode)
681{
682 LY_ERR ret = LY_SUCCESS;
683 struct ly_set key_set = {0};
684 const struct lysc_node *key = NULL;
685 const struct lyd_node *child;
686 const struct lyd_node_opaq *opaq_k;
687 uint32_t i;
688
689 assert(!node->schema);
690
691 /* get all keys into a set */
692 while ((key = lys_getnext(key, snode, NULL, 0)) && (snode->flags & LYS_KEY)) {
693 LY_CHECK_GOTO(ret = ly_set_add(&key_set, (void *)snode, 1, NULL), cleanup);
694 }
695
696 LY_LIST_FOR(lyd_child(node), child) {
697 if (child->schema) {
698 LOGERR(LYD_CTX(node), LY_EINVAL, "Unexpected node %s \"%s\".", lys_nodetype2str(child->schema->nodetype),
699 LYD_NAME(child));
700 ret = LY_EINVAL;
701 goto cleanup;
702 }
703
704 opaq_k = (struct lyd_node_opaq *)child;
705
706 /* find the key schema node */
707 for (i = 0; i < key_set.count; ++i) {
708 key = key_set.snodes[i];
709 if (!strcmp(key->name, opaq_k->name.name)) {
710 break;
711 }
712 }
713 if (i == key_set.count) {
714 /* some other node, skip */
715 continue;
716 }
717
718 /* key found */
719 ly_set_rm_index(&key_set, i, NULL);
720
721 /* check value */
722 ret = lys_value_validate(LYD_CTX(node), key, opaq_k->value, strlen(opaq_k->value), opaq_k->format,
723 opaq_k->val_prefix_data);
724 LY_CHECK_GOTO(ret, cleanup);
725 }
726
727 if (key_set.count) {
728 /* missing keys */
729 LOGVAL(LYD_CTX(node), LY_VCODE_NOKEY, key_set.snodes[0]->name);
730 ret = LY_EVALID;
731 goto cleanup;
732 }
733
734cleanup:
735 ly_set_erase(&key_set, NULL);
736 return ret;
737}
738
739LIBYANG_API_DEF LY_ERR
740lyd_parse_opaq_error(const struct lyd_node *node)
741{
742 const struct ly_ctx *ctx;
743 const struct lyd_node_opaq *opaq;
744 const struct lyd_node *parent;
745 const struct lys_module *mod;
746 const struct lysc_node *snode;
747
748 LY_CHECK_ARG_RET(LYD_CTX(node), node, !node->schema, !lyd_parent(node) || lyd_parent(node)->schema, LY_EINVAL);
749
750 ctx = LYD_CTX(node);
751 opaq = (struct lyd_node_opaq *)node;
752 parent = lyd_parent(node);
753
Michal Vaskof4e63922022-05-10 10:32:13 +0200754 if (!opaq->name.module_ns) {
755 LOGVAL(ctx, LYVE_REFERENCE, "Unknown module of node \"%s\".", opaq->name.name);
756 return LY_EVALID;
757 }
Michal Vaskobfff6ac2022-02-23 16:22:53 +0100758
759 /* module */
760 switch (opaq->format) {
761 case LY_VALUE_XML:
762 if (!parent || strcmp(opaq->name.module_ns, parent->schema->module->ns)) {
763 mod = ly_ctx_get_module_implemented_ns(ctx, opaq->name.module_ns);
764 if (!mod) {
765 LOGVAL(ctx, LYVE_REFERENCE, "No (implemented) module with namespace \"%s\" in the context.",
766 opaq->name.module_ns);
767 return LY_EVALID;
768 }
769 } else {
770 /* inherit */
771 mod = parent->schema->module;
772 }
773 break;
774 case LY_VALUE_JSON:
775 case LY_VALUE_LYB:
776 if (!parent || strcmp(opaq->name.module_name, parent->schema->module->name)) {
777 mod = ly_ctx_get_module_implemented(ctx, opaq->name.module_name);
778 if (!mod) {
779 LOGVAL(ctx, LYVE_REFERENCE, "No (implemented) module named \"%s\" in the context.", opaq->name.module_name);
780 return LY_EVALID;
781 }
782 } else {
783 /* inherit */
784 mod = parent->schema->module;
785 }
786 break;
787 default:
788 LOGERR(ctx, LY_EINVAL, "Unsupported value format.");
789 return LY_EINVAL;
790 }
791
792 /* schema */
793 snode = lys_find_child(parent ? parent->schema : NULL, mod, opaq->name.name, 0, 0, 0);
Michal Vaskoac6f4be2022-05-02 10:16:50 +0200794 if (!snode && parent && parent->schema && (parent->schema->nodetype & (LYS_RPC | LYS_ACTION))) {
795 /* maybe output node */
Michal Vasko89afc6e2022-05-02 10:24:26 +0200796 snode = lys_find_child(parent->schema, mod, opaq->name.name, 0, 0, LYS_GETNEXT_OUTPUT);
Michal Vaskoac6f4be2022-05-02 10:16:50 +0200797 }
Michal Vaskobfff6ac2022-02-23 16:22:53 +0100798 if (!snode) {
799 if (parent) {
800 LOGVAL(ctx, LYVE_REFERENCE, "Node \"%s\" not found as a child of \"%s\" node.", opaq->name.name,
801 LYD_NAME(parent));
802 } else {
803 LOGVAL(ctx, LYVE_REFERENCE, "Node \"%s\" not found in the \"%s\" module.", opaq->name.name, mod->name);
804 }
805 return LY_EVALID;
806 }
807
808 if (snode->nodetype & LYD_NODE_TERM) {
809 /* leaf / leaf-list */
810 LY_CHECK_RET(lys_value_validate(ctx, snode, opaq->value, strlen(opaq->value), opaq->format, opaq->val_prefix_data));
811 } else if (snode->nodetype == LYS_LIST) {
812 /* list */
813 LY_CHECK_RET(lyd_parse_opaq_list_error(node, snode));
814 } else if (snode->nodetype & LYD_NODE_INNER) {
815 /* inner node */
816 if (opaq->value) {
817 LOGVAL(ctx, LYVE_DATA, "Invalid value \"%s\" for %s \"%s\".", opaq->value,
818 lys_nodetype2str(snode->nodetype), snode->name);
819 return LY_EVALID;
820 }
821 } else {
822 LOGERR(ctx, LY_EINVAL, "Unexpected opaque schema node %s \"%s\".", lys_nodetype2str(snode->nodetype), snode->name);
823 return LY_EINVAL;
824 }
825
826 LOGERR(ctx, LY_EINVAL, "Unexpected valid opaque node %s \"%s\".", lys_nodetype2str(snode->nodetype), snode->name);
827 return LY_EINVAL;
828}
829
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100830LIBYANG_API_DEF const char *
Christian Hopps46bd21b2021-04-27 09:43:58 -0400831lyd_value_get_canonical(const struct ly_ctx *ctx, const struct lyd_value *value)
Radek Krejci6d5ba0c2021-04-26 07:49:59 +0200832{
Michal Vaskoab40e7e2021-04-28 17:04:24 +0200833 LY_CHECK_ARG_RET(ctx, ctx, value, NULL);
834
Michal Vasko33876022021-04-27 16:42:24 +0200835 return value->_canonical ? value->_canonical :
836 (const char *)value->realtype->plugin->print(ctx, value, LY_VALUE_CANON, NULL, NULL, NULL);
Radek Krejci6d5ba0c2021-04-26 07:49:59 +0200837}
838
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100839LIBYANG_API_DEF LY_ERR
Michal Vaskoa820c312021-02-05 16:33:00 +0100840lyd_any_value_str(const struct lyd_node *any, char **value_str)
841{
842 const struct lyd_node_any *a;
843 struct lyd_node *tree = NULL;
844 const char *str = NULL;
845 ly_bool dynamic = 0;
846 LY_ERR ret = LY_SUCCESS;
847
848 LY_CHECK_ARG_RET(NULL, any, value_str, LY_EINVAL);
Radek Krejci71877df2021-04-06 17:24:06 +0200849 LY_CHECK_ARG_RET(NULL, any->schema, any->schema->nodetype & LYS_ANYDATA, LY_EINVAL);
Michal Vaskoa820c312021-02-05 16:33:00 +0100850
851 a = (struct lyd_node_any *)any;
852 *value_str = NULL;
853
854 if (!a->value.str) {
855 /* there is no value in the union */
856 return LY_SUCCESS;
857 }
858
859 switch (a->value_type) {
860 case LYD_ANYDATA_LYB:
861 /* parse into a data tree */
862 ret = lyd_parse_data_mem(LYD_CTX(any), a->value.mem, LYD_LYB, LYD_PARSE_ONLY, 0, &tree);
863 LY_CHECK_GOTO(ret, cleanup);
864 dynamic = 1;
865 break;
866 case LYD_ANYDATA_DATATREE:
867 tree = a->value.tree;
868 break;
869 case LYD_ANYDATA_STRING:
870 case LYD_ANYDATA_XML:
871 case LYD_ANYDATA_JSON:
872 /* simply use the string */
873 str = a->value.str;
874 break;
875 }
876
877 if (tree) {
878 /* print into a string */
879 ret = lyd_print_mem(value_str, tree, LYD_XML, LYD_PRINT_WITHSIBLINGS);
880 LY_CHECK_GOTO(ret, cleanup);
881 } else {
882 assert(str);
883 *value_str = strdup(str);
884 LY_CHECK_ERR_GOTO(!*value_str, LOGMEM(LYD_CTX(any)), cleanup);
885 }
886
887 /* success */
888
889cleanup:
890 if (dynamic) {
891 lyd_free_all(tree);
892 }
893 return ret;
894}
895
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100896LIBYANG_API_DEF LY_ERR
Michal Vasko61551fa2020-07-09 15:45:45 +0200897lyd_any_copy_value(struct lyd_node *trg, const union lyd_any_value *value, LYD_ANYDATA_VALUETYPE value_type)
898{
899 struct lyd_node_any *t;
Michal Vasko61551fa2020-07-09 15:45:45 +0200900
Michal Vaskoa820c312021-02-05 16:33:00 +0100901 LY_CHECK_ARG_RET(NULL, trg, LY_EINVAL);
Radek Krejci71877df2021-04-06 17:24:06 +0200902 LY_CHECK_ARG_RET(NULL, trg->schema, trg->schema->nodetype & LYS_ANYDATA, LY_EINVAL);
Michal Vasko61551fa2020-07-09 15:45:45 +0200903
904 t = (struct lyd_node_any *)trg;
905
906 /* free trg */
907 switch (t->value_type) {
908 case LYD_ANYDATA_DATATREE:
909 lyd_free_all(t->value.tree);
910 break;
911 case LYD_ANYDATA_STRING:
912 case LYD_ANYDATA_XML:
913 case LYD_ANYDATA_JSON:
Michal Vaskoe180ed02021-02-05 16:31:20 +0100914 lydict_remove(LYD_CTX(trg), t->value.str);
Michal Vasko61551fa2020-07-09 15:45:45 +0200915 break;
916 case LYD_ANYDATA_LYB:
917 free(t->value.mem);
918 break;
919 }
920 t->value.str = NULL;
921
922 if (!value) {
923 /* only free value in this case */
924 return LY_SUCCESS;
925 }
926
927 /* copy src */
928 t->value_type = value_type;
929 switch (value_type) {
930 case LYD_ANYDATA_DATATREE:
931 if (value->tree) {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200932 LY_CHECK_RET(lyd_dup_siblings(value->tree, NULL, LYD_DUP_RECURSIVE, &t->value.tree));
Michal Vasko61551fa2020-07-09 15:45:45 +0200933 }
934 break;
935 case LYD_ANYDATA_STRING:
936 case LYD_ANYDATA_XML:
937 case LYD_ANYDATA_JSON:
938 if (value->str) {
Radek Krejci011e4aa2020-09-04 15:22:31 +0200939 LY_CHECK_RET(lydict_insert(LYD_CTX(trg), value->str, 0, &t->value.str));
Michal Vasko61551fa2020-07-09 15:45:45 +0200940 }
941 break;
942 case LYD_ANYDATA_LYB:
943 if (value->mem) {
Radek Krejci1deb5be2020-08-26 16:43:36 +0200944 int len = lyd_lyb_data_length(value->mem);
Radek Krejci82fa8d42020-07-11 22:00:59 +0200945 LY_CHECK_RET(len == -1, LY_EINVAL);
Michal Vasko61551fa2020-07-09 15:45:45 +0200946 t->value.mem = malloc(len);
Michal Vaskob7be7a82020-08-20 09:09:04 +0200947 LY_CHECK_ERR_RET(!t->value.mem, LOGMEM(LYD_CTX(trg)), LY_EMEM);
Michal Vasko61551fa2020-07-09 15:45:45 +0200948 memcpy(t->value.mem, value->mem, len);
949 }
950 break;
951 }
952
953 return LY_SUCCESS;
954}
955
Michal Vasko106f0862021-11-02 11:49:27 +0100956const struct lysc_node *
957lyd_node_schema(const struct lyd_node *node)
958{
959 const struct lysc_node *schema = NULL;
960 const struct lyd_node *prev_iter = NULL, *iter;
961 const struct lys_module *mod;
962
963 if (!node) {
964 return NULL;
965 } else if (node->schema) {
966 return node->schema;
967 }
968
969 /* get schema node of an opaque node */
970 do {
971 /* get next data node */
972 for (iter = node; lyd_parent(iter) != prev_iter; iter = lyd_parent(iter)) {}
973
974 /* get equivalent schema node */
975 if (iter->schema) {
976 schema = iter->schema;
977 } else {
978 /* get module */
979 mod = lyd_owner_module(iter);
Michal Vaskoa41826a2021-11-02 12:13:03 +0100980 if (!mod && !schema) {
981 /* top-level opaque node has unknown module */
982 break;
983 }
Michal Vasko106f0862021-11-02 11:49:27 +0100984
985 /* get schema node */
986 schema = lys_find_child(schema, mod ? mod : schema->module, LYD_NAME(iter), 0, 0, 0);
987 }
Michal Vaskod2f404f2021-11-04 15:37:11 +0100988
989 /* remember to move to the descendant */
990 prev_iter = iter;
Michal Vasko106f0862021-11-02 11:49:27 +0100991 } while (schema && (iter != node));
992
993 return schema;
994}
995
Michal Vasko59892dd2022-05-13 11:02:30 +0200996/**
997 * @brief Comparison callback to match schema node with a schema of a data node.
998 *
999 * @param[in] val1_p Pointer to the schema node
1000 * @param[in] val2_p Pointer to the data node
1001 * Implementation of ::lyht_value_equal_cb.
1002 */
1003static ly_bool
1004lyd_hash_table_schema_val_equal(void *val1_p, void *val2_p, ly_bool UNUSED(mod), void *UNUSED(cb_data))
1005{
1006 struct lysc_node *val1;
1007 struct lyd_node *val2;
1008
1009 val1 = *((struct lysc_node **)val1_p);
1010 val2 = *((struct lyd_node **)val2_p);
1011
1012 if (val1 == val2->schema) {
1013 /* schema match is enough */
1014 return 1;
1015 } else {
1016 return 0;
1017 }
1018}
1019
1020LY_ERR
1021lyd_find_sibling_schema(const struct lyd_node *siblings, const struct lysc_node *schema, struct lyd_node **match)
1022{
1023 struct lyd_node **match_p;
1024 struct lyd_node_inner *parent;
1025 uint32_t hash;
1026 lyht_value_equal_cb ht_cb;
1027
1028 assert(siblings && schema);
1029
1030 parent = siblings->parent;
1031 if (parent && parent->schema && parent->children_ht) {
1032 /* calculate our hash */
1033 hash = dict_hash_multi(0, schema->module->name, strlen(schema->module->name));
1034 hash = dict_hash_multi(hash, schema->name, strlen(schema->name));
1035 hash = dict_hash_multi(hash, NULL, 0);
1036
1037 /* use special hash table function */
1038 ht_cb = lyht_set_cb(parent->children_ht, lyd_hash_table_schema_val_equal);
1039
1040 /* find by hash */
1041 if (!lyht_find(parent->children_ht, &schema, hash, (void **)&match_p)) {
1042 siblings = *match_p;
1043 } else {
1044 /* not found */
1045 siblings = NULL;
1046 }
1047
1048 /* set the original hash table compare function back */
1049 lyht_set_cb(parent->children_ht, ht_cb);
1050 } else {
1051 /* find first sibling */
1052 if (siblings->parent) {
1053 siblings = siblings->parent->child;
1054 } else {
1055 while (siblings->prev->next) {
1056 siblings = siblings->prev;
1057 }
1058 }
1059
1060 /* search manually without hashes */
1061 for ( ; siblings; siblings = siblings->next) {
1062 if (siblings->schema == schema) {
1063 /* schema match is enough */
1064 break;
1065 }
1066 }
1067 }
1068
1069 if (!siblings) {
1070 if (match) {
1071 *match = NULL;
1072 }
1073 return LY_ENOTFOUND;
1074 }
1075
1076 if (match) {
1077 *match = (struct lyd_node *)siblings;
1078 }
1079 return LY_SUCCESS;
1080}
1081
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01001082void
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001083lyd_del_move_root(struct lyd_node **root, const struct lyd_node *to_del, const struct lys_module *mod)
1084{
1085 if (*root && (lyd_owner_module(*root) != mod)) {
1086 /* there are no data of mod so this is simply the first top-level sibling */
1087 mod = NULL;
1088 }
1089
1090 if ((*root != to_del) || (*root)->parent) {
1091 return;
1092 }
1093
Michal Vasko598063b2021-07-19 11:39:05 +02001094 if (mod && (*root)->prev->next && (!(*root)->next || (lyd_owner_module(to_del) != lyd_owner_module((*root)->next)))) {
1095 /* there are no more nodes from mod, simply get the first top-level sibling */
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001096 *root = lyd_first_sibling(*root);
Michal Vasko598063b2021-07-19 11:39:05 +02001097 } else {
1098 *root = (*root)->next;
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001099 }
1100}
1101
Michal Vasko8cc3f662022-03-29 11:25:51 +02001102LY_ERR
1103ly_nested_ext_schema(const struct lyd_node *parent, const struct lysc_node *sparent, const char *prefix,
1104 size_t prefix_len, LY_VALUE_FORMAT format, void *prefix_data, const char *name, size_t name_len,
1105 const struct lysc_node **snode, struct lysc_ext_instance **ext)
1106{
1107 LY_ERR r;
1108 LY_ARRAY_COUNT_TYPE u;
1109 struct lysc_ext_instance *nested_exts = NULL;
1110 lyplg_ext_data_snode_clb ext_snode_cb;
1111
1112 /* check if there are any nested extension instances */
1113 if (parent && parent->schema) {
1114 nested_exts = parent->schema->exts;
1115 } else if (sparent) {
1116 nested_exts = sparent->exts;
1117 }
1118 LY_ARRAY_FOR(nested_exts, u) {
Michal Vasko305c6cb2022-04-27 10:33:04 +02001119 if (!nested_exts[u].def->plugin) {
1120 /* no plugin */
1121 continue;
1122 }
1123
Michal Vasko8cc3f662022-03-29 11:25:51 +02001124 ext_snode_cb = nested_exts[u].def->plugin->snode;
1125 if (!ext_snode_cb) {
1126 /* not an extension with nested data */
1127 continue;
1128 }
1129
1130 /* try to get the schema node */
1131 r = ext_snode_cb(&nested_exts[u], parent, sparent, prefix, prefix_len, format, prefix_data, name, name_len, snode);
1132 if (!r) {
1133 /* data successfully created, remember the ext instance */
1134 *ext = &nested_exts[u];
1135 return LY_SUCCESS;
1136 } else if (r != LY_ENOT) {
1137 /* fatal error */
1138 return r;
1139 }
1140 /* data was not from this module, continue */
1141 }
1142
1143 /* no extensions or none matched */
1144 return LY_ENOT;
1145}
1146
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001147void
Radek Krejci8df109d2021-04-23 12:19:08 +02001148ly_free_prefix_data(LY_VALUE_FORMAT format, void *prefix_data)
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01001149{
1150 struct ly_set *ns_list;
1151 struct lysc_prefix *prefixes;
1152 uint32_t i;
1153 LY_ARRAY_COUNT_TYPE u;
1154
1155 if (!prefix_data) {
1156 return;
1157 }
1158
1159 switch (format) {
Radek Krejci8df109d2021-04-23 12:19:08 +02001160 case LY_VALUE_XML:
Michal Vaskoddd76592022-01-17 13:34:48 +01001161 case LY_VALUE_STR_NS:
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01001162 ns_list = prefix_data;
1163 for (i = 0; i < ns_list->count; ++i) {
1164 free(((struct lyxml_ns *)ns_list->objs[i])->prefix);
1165 free(((struct lyxml_ns *)ns_list->objs[i])->uri);
1166 }
1167 ly_set_free(ns_list, free);
1168 break;
Radek Krejci8df109d2021-04-23 12:19:08 +02001169 case LY_VALUE_SCHEMA_RESOLVED:
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01001170 prefixes = prefix_data;
1171 LY_ARRAY_FOR(prefixes, u) {
1172 free(prefixes[u].prefix);
1173 }
1174 LY_ARRAY_FREE(prefixes);
1175 break;
Radek Krejci224d4b42021-04-23 13:54:59 +02001176 case LY_VALUE_CANON:
Radek Krejci8df109d2021-04-23 12:19:08 +02001177 case LY_VALUE_SCHEMA:
1178 case LY_VALUE_JSON:
Radek Krejcif9943642021-04-26 10:18:21 +02001179 case LY_VALUE_LYB:
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01001180 break;
1181 }
1182}
1183
1184LY_ERR
Radek Krejci8df109d2021-04-23 12:19:08 +02001185ly_dup_prefix_data(const struct ly_ctx *ctx, LY_VALUE_FORMAT format, const void *prefix_data,
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01001186 void **prefix_data_p)
1187{
1188 LY_ERR ret = LY_SUCCESS;
1189 struct lyxml_ns *ns;
1190 struct lysc_prefix *prefixes = NULL, *orig_pref;
1191 struct ly_set *ns_list, *orig_ns;
1192 uint32_t i;
1193 LY_ARRAY_COUNT_TYPE u;
1194
1195 assert(!*prefix_data_p);
1196
1197 switch (format) {
Radek Krejci8df109d2021-04-23 12:19:08 +02001198 case LY_VALUE_SCHEMA:
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01001199 *prefix_data_p = (void *)prefix_data;
1200 break;
Radek Krejci8df109d2021-04-23 12:19:08 +02001201 case LY_VALUE_SCHEMA_RESOLVED:
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01001202 /* copy all the value prefixes */
1203 orig_pref = (struct lysc_prefix *)prefix_data;
1204 LY_ARRAY_CREATE_GOTO(ctx, prefixes, LY_ARRAY_COUNT(orig_pref), ret, cleanup);
1205 *prefix_data_p = prefixes;
1206
1207 LY_ARRAY_FOR(orig_pref, u) {
1208 if (orig_pref[u].prefix) {
1209 prefixes[u].prefix = strdup(orig_pref[u].prefix);
1210 LY_CHECK_ERR_GOTO(!prefixes[u].prefix, LOGMEM(ctx); ret = LY_EMEM, cleanup);
1211 }
1212 prefixes[u].mod = orig_pref[u].mod;
1213 LY_ARRAY_INCREMENT(prefixes);
1214 }
1215 break;
Radek Krejci8df109d2021-04-23 12:19:08 +02001216 case LY_VALUE_XML:
Michal Vaskoddd76592022-01-17 13:34:48 +01001217 case LY_VALUE_STR_NS:
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01001218 /* copy all the namespaces */
1219 LY_CHECK_GOTO(ret = ly_set_new(&ns_list), cleanup);
1220 *prefix_data_p = ns_list;
1221
1222 orig_ns = (struct ly_set *)prefix_data;
1223 for (i = 0; i < orig_ns->count; ++i) {
1224 ns = calloc(1, sizeof *ns);
1225 LY_CHECK_ERR_GOTO(!ns, LOGMEM(ctx); ret = LY_EMEM, cleanup);
1226 LY_CHECK_GOTO(ret = ly_set_add(ns_list, ns, 1, NULL), cleanup);
1227
1228 if (((struct lyxml_ns *)orig_ns->objs[i])->prefix) {
1229 ns->prefix = strdup(((struct lyxml_ns *)orig_ns->objs[i])->prefix);
1230 LY_CHECK_ERR_GOTO(!ns->prefix, LOGMEM(ctx); ret = LY_EMEM, cleanup);
1231 }
1232 ns->uri = strdup(((struct lyxml_ns *)orig_ns->objs[i])->uri);
1233 LY_CHECK_ERR_GOTO(!ns->uri, LOGMEM(ctx); ret = LY_EMEM, cleanup);
1234 }
1235 break;
Radek Krejci224d4b42021-04-23 13:54:59 +02001236 case LY_VALUE_CANON:
Radek Krejci8df109d2021-04-23 12:19:08 +02001237 case LY_VALUE_JSON:
Radek Krejcif9943642021-04-26 10:18:21 +02001238 case LY_VALUE_LYB:
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01001239 assert(!prefix_data);
1240 *prefix_data_p = NULL;
1241 break;
1242 }
1243
1244cleanup:
1245 if (ret) {
1246 ly_free_prefix_data(format, *prefix_data_p);
1247 *prefix_data_p = NULL;
1248 }
1249 return ret;
1250}
1251
1252LY_ERR
Radek Krejcif9943642021-04-26 10:18:21 +02001253ly_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 +02001254 const void *prefix_data, LY_VALUE_FORMAT *format_p, void **prefix_data_p)
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01001255{
1256 LY_ERR ret = LY_SUCCESS;
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01001257 const struct lys_module *mod;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001258 const struct lyxml_ns *ns;
1259 struct lyxml_ns *new_ns;
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01001260 struct ly_set *ns_list;
1261 struct lysc_prefix *prefixes = NULL, *val_pref;
aPiecek83436bc2021-03-30 12:20:45 +02001262 const char *value_iter, *value_next, *value_end;
1263 uint32_t substr_len;
1264 ly_bool is_prefix;
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01001265
1266 switch (format) {
Radek Krejci8df109d2021-04-23 12:19:08 +02001267 case LY_VALUE_SCHEMA:
Michal Vaskofc2cd072021-02-24 13:17:17 +01001268 /* copy all referenced modules as prefix - module pairs */
1269 if (!*prefix_data_p) {
1270 /* new prefix data */
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01001271 LY_ARRAY_CREATE_GOTO(ctx, prefixes, 0, ret, cleanup);
Radek Krejci8df109d2021-04-23 12:19:08 +02001272 *format_p = LY_VALUE_SCHEMA_RESOLVED;
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01001273 *prefix_data_p = prefixes;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001274 } else {
1275 /* reuse prefix data */
Radek Krejci8df109d2021-04-23 12:19:08 +02001276 assert(*format_p == LY_VALUE_SCHEMA_RESOLVED);
Michal Vaskofc2cd072021-02-24 13:17:17 +01001277 prefixes = *prefix_data_p;
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01001278 }
1279
Michal Vaskoc0f9c4c2022-05-06 12:12:17 +02001280 /* add current module for unprefixed values */
1281 LY_ARRAY_NEW_GOTO(ctx, prefixes, val_pref, ret, cleanup);
1282 *prefix_data_p = prefixes;
1283
1284 val_pref->prefix = NULL;
1285 val_pref->mod = ((const struct lysp_module *)prefix_data)->mod;
1286
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01001287 /* add all used prefixes */
Michal Vasko59e90fc2021-09-22 12:17:08 +02001288 value_end = (char *)value + value_len;
aPiecek83436bc2021-03-30 12:20:45 +02001289 for (value_iter = value; value_iter; value_iter = value_next) {
aPieceke3f828d2021-05-10 15:34:41 +02001290 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 +02001291 if (is_prefix) {
1292 /* we have a possible prefix. Do we already have the prefix? */
1293 mod = ly_resolve_prefix(ctx, value_iter, substr_len, *format_p, *prefix_data_p);
1294 if (!mod) {
1295 mod = ly_resolve_prefix(ctx, value_iter, substr_len, format, prefix_data);
1296 if (mod) {
Radek Krejci8df109d2021-04-23 12:19:08 +02001297 assert(*format_p == LY_VALUE_SCHEMA_RESOLVED);
aPiecek83436bc2021-03-30 12:20:45 +02001298 /* store a new prefix - module pair */
1299 LY_ARRAY_NEW_GOTO(ctx, prefixes, val_pref, ret, cleanup);
1300 *prefix_data_p = prefixes;
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01001301
aPiecek83436bc2021-03-30 12:20:45 +02001302 val_pref->prefix = strndup(value_iter, substr_len);
1303 LY_CHECK_ERR_GOTO(!val_pref->prefix, LOGMEM(ctx); ret = LY_EMEM, cleanup);
1304 val_pref->mod = mod;
1305 } /* else it is not even defined */
1306 } /* else the prefix is already present */
Michal Vaskofc2cd072021-02-24 13:17:17 +01001307 }
1308 }
1309 break;
Radek Krejci8df109d2021-04-23 12:19:08 +02001310 case LY_VALUE_XML:
Michal Vaskoddd76592022-01-17 13:34:48 +01001311 case LY_VALUE_STR_NS:
Michal Vaskofc2cd072021-02-24 13:17:17 +01001312 /* copy all referenced namespaces as prefix - namespace pairs */
1313 if (!*prefix_data_p) {
1314 /* new prefix data */
1315 LY_CHECK_GOTO(ret = ly_set_new(&ns_list), cleanup);
Michal Vaskoddd76592022-01-17 13:34:48 +01001316 *format_p = format;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001317 *prefix_data_p = ns_list;
1318 } else {
1319 /* reuse prefix data */
Michal Vaskoddd76592022-01-17 13:34:48 +01001320 assert(*format_p == format);
Michal Vaskofc2cd072021-02-24 13:17:17 +01001321 ns_list = *prefix_data_p;
1322 }
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01001323
Michal Vasko294e7f02022-02-28 13:59:00 +01001324 /* store default namespace */
1325 ns = lyxml_ns_get(prefix_data, NULL, 0);
1326 if (ns) {
1327 new_ns = calloc(1, sizeof *new_ns);
1328 LY_CHECK_ERR_GOTO(!new_ns, LOGMEM(ctx); ret = LY_EMEM, cleanup);
1329 LY_CHECK_GOTO(ret = ly_set_add(ns_list, new_ns, 1, NULL), cleanup);
1330
1331 new_ns->prefix = NULL;
1332 new_ns->uri = strdup(ns->uri);
1333 LY_CHECK_ERR_GOTO(!new_ns->uri, LOGMEM(ctx); ret = LY_EMEM, cleanup);
1334 }
1335
Michal Vaskofc2cd072021-02-24 13:17:17 +01001336 /* add all used prefixes */
Michal Vasko59e90fc2021-09-22 12:17:08 +02001337 value_end = (char *)value + value_len;
aPiecek83436bc2021-03-30 12:20:45 +02001338 for (value_iter = value; value_iter; value_iter = value_next) {
aPieceke3f828d2021-05-10 15:34:41 +02001339 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 +02001340 if (is_prefix) {
1341 /* we have a possible prefix. Do we already have the prefix? */
1342 ns = lyxml_ns_get(ns_list, value_iter, substr_len);
1343 if (!ns) {
1344 ns = lyxml_ns_get(prefix_data, value_iter, substr_len);
1345 if (ns) {
1346 /* store a new prefix - namespace pair */
1347 new_ns = calloc(1, sizeof *new_ns);
1348 LY_CHECK_ERR_GOTO(!new_ns, LOGMEM(ctx); ret = LY_EMEM, cleanup);
1349 LY_CHECK_GOTO(ret = ly_set_add(ns_list, new_ns, 1, NULL), cleanup);
Michal Vaskofc2cd072021-02-24 13:17:17 +01001350
aPiecek83436bc2021-03-30 12:20:45 +02001351 new_ns->prefix = strndup(value_iter, substr_len);
1352 LY_CHECK_ERR_GOTO(!new_ns->prefix, LOGMEM(ctx); ret = LY_EMEM, cleanup);
1353 new_ns->uri = strdup(ns->uri);
1354 LY_CHECK_ERR_GOTO(!new_ns->uri, LOGMEM(ctx); ret = LY_EMEM, cleanup);
1355 } /* else it is not even defined */
1356 } /* else the prefix is already present */
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01001357 }
1358 }
1359 break;
Radek Krejci224d4b42021-04-23 13:54:59 +02001360 case LY_VALUE_CANON:
Radek Krejci8df109d2021-04-23 12:19:08 +02001361 case LY_VALUE_SCHEMA_RESOLVED:
1362 case LY_VALUE_JSON:
Radek Krejcif9943642021-04-26 10:18:21 +02001363 case LY_VALUE_LYB:
Michal Vaskofc2cd072021-02-24 13:17:17 +01001364 if (!*prefix_data_p) {
1365 /* new prefix data - simply copy all the prefix data */
1366 *format_p = format;
1367 LY_CHECK_GOTO(ret = ly_dup_prefix_data(ctx, format, prefix_data, prefix_data_p), cleanup);
1368 } /* else reuse prefix data - the prefix data are always the same, nothing to do */
Michal Vasko6b5cb2a2020-11-11 19:11:21 +01001369 break;
1370 }
1371
1372cleanup:
1373 if (ret) {
1374 ly_free_prefix_data(*format_p, *prefix_data_p);
1375 *prefix_data_p = NULL;
1376 }
1377 return ret;
1378}
Michal Vasko7ed1fcb2020-12-03 14:15:22 +01001379
1380const char *
Radek Krejci8df109d2021-04-23 12:19:08 +02001381ly_format2str(LY_VALUE_FORMAT format)
Michal Vasko7ed1fcb2020-12-03 14:15:22 +01001382{
1383 switch (format) {
Radek Krejci224d4b42021-04-23 13:54:59 +02001384 case LY_VALUE_CANON:
1385 return "canonical";
Radek Krejci8df109d2021-04-23 12:19:08 +02001386 case LY_VALUE_SCHEMA:
Michal Vasko7ed1fcb2020-12-03 14:15:22 +01001387 return "schema imports";
Radek Krejci8df109d2021-04-23 12:19:08 +02001388 case LY_VALUE_SCHEMA_RESOLVED:
Michal Vasko7ed1fcb2020-12-03 14:15:22 +01001389 return "schema stored mapping";
Radek Krejci8df109d2021-04-23 12:19:08 +02001390 case LY_VALUE_XML:
Michal Vasko7ed1fcb2020-12-03 14:15:22 +01001391 return "XML prefixes";
Radek Krejci8df109d2021-04-23 12:19:08 +02001392 case LY_VALUE_JSON:
Michal Vasko7ed1fcb2020-12-03 14:15:22 +01001393 return "JSON module names";
Radek Krejcif9943642021-04-26 10:18:21 +02001394 case LY_VALUE_LYB:
1395 return "LYB prefixes";
Michal Vasko7ed1fcb2020-12-03 14:15:22 +01001396 default:
1397 break;
1398 }
1399
1400 return NULL;
1401}
Michal Vasko43297a02021-05-19 11:12:37 +02001402
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001403LIBYANG_API_DEF LY_ERR
Michal Vasko43297a02021-05-19 11:12:37 +02001404ly_time_str2time(const char *value, time_t *time, char **fractions_s)
1405{
1406 struct tm tm = {0};
1407 uint32_t i, frac_len;
1408 const char *frac;
1409 int64_t shift, shift_m;
1410 time_t t;
1411
1412 LY_CHECK_ARG_RET(NULL, value, time, LY_EINVAL);
1413
1414 tm.tm_year = atoi(&value[0]) - 1900;
1415 tm.tm_mon = atoi(&value[5]) - 1;
1416 tm.tm_mday = atoi(&value[8]);
1417 tm.tm_hour = atoi(&value[11]);
1418 tm.tm_min = atoi(&value[14]);
1419 tm.tm_sec = atoi(&value[17]);
1420
1421 t = timegm(&tm);
1422 i = 19;
1423
1424 /* fractions of a second */
1425 if (value[i] == '.') {
1426 ++i;
1427 frac = &value[i];
1428 for (frac_len = 0; isdigit(frac[frac_len]); ++frac_len) {}
1429
1430 i += frac_len;
Michal Vasko43297a02021-05-19 11:12:37 +02001431 } else {
1432 frac = NULL;
1433 }
1434
1435 /* apply offset */
1436 if ((value[i] == 'Z') || (value[i] == 'z')) {
1437 /* zero shift */
1438 shift = 0;
1439 } else {
1440 shift = strtol(&value[i], NULL, 10);
1441 shift = shift * 60 * 60; /* convert from hours to seconds */
1442 shift_m = strtol(&value[i + 4], NULL, 10) * 60; /* includes conversion from minutes to seconds */
1443 /* correct sign */
1444 if (shift < 0) {
1445 shift_m *= -1;
1446 }
1447 /* connect hours and minutes of the shift */
1448 shift = shift + shift_m;
1449 }
1450
1451 /* we have to shift to the opposite way to correct the time */
1452 t -= shift;
1453
1454 *time = t;
1455 if (fractions_s) {
1456 if (frac) {
1457 *fractions_s = strndup(frac, frac_len);
1458 LY_CHECK_RET(!*fractions_s, LY_EMEM);
1459 } else {
1460 *fractions_s = NULL;
1461 }
1462 }
1463 return LY_SUCCESS;
1464}
1465
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001466LIBYANG_API_DEF LY_ERR
Michal Vasko43297a02021-05-19 11:12:37 +02001467ly_time_time2str(time_t time, const char *fractions_s, char **str)
1468{
1469 struct tm tm;
Michal Vasko143ffa82021-05-20 11:11:39 +02001470 char zoneshift[8];
Michal Vasko43297a02021-05-19 11:12:37 +02001471 int32_t zonediff_h, zonediff_m;
1472
1473 LY_CHECK_ARG_RET(NULL, str, LY_EINVAL);
1474
1475 /* initialize the local timezone */
1476 tzset();
1477
Jan Kundrátb17efe92022-02-14 18:32:18 +01001478#ifdef HAVE_TM_GMTOFF
Michal Vasko43297a02021-05-19 11:12:37 +02001479 /* convert */
1480 if (!localtime_r(&time, &tm)) {
1481 return LY_ESYS;
1482 }
1483
1484 /* get timezone offset */
1485 if (tm.tm_gmtoff == 0) {
1486 /* time is Zulu (UTC) */
1487 zonediff_h = 0;
1488 zonediff_m = 0;
1489 } else {
1490 /* timezone offset */
1491 zonediff_h = tm.tm_gmtoff / 60 / 60;
1492 zonediff_m = tm.tm_gmtoff / 60 % 60;
1493 }
1494 sprintf(zoneshift, "%+03d:%02d", zonediff_h, zonediff_m);
Jan Kundráte182a272021-12-09 23:25:15 +01001495#else
Jan Kundrátb17efe92022-02-14 18:32:18 +01001496 /* convert */
1497 if (!gmtime_r(&time, &tm)) {
1498 return LY_ESYS;
1499 }
1500
Jan Kundráte182a272021-12-09 23:25:15 +01001501 (void)zonediff_h;
1502 (void)zonediff_m;
1503 sprintf(zoneshift, "-00:00");
1504#endif
Michal Vasko43297a02021-05-19 11:12:37 +02001505
1506 /* print */
1507 if (asprintf(str, "%04d-%02d-%02dT%02d:%02d:%02d%s%s%s",
1508 tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday, tm.tm_hour, tm.tm_min, tm.tm_sec,
1509 fractions_s ? "." : "", fractions_s ? fractions_s : "", zoneshift) == -1) {
1510 return LY_EMEM;
1511 }
1512
1513 return LY_SUCCESS;
1514}
1515
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001516LIBYANG_API_DEF LY_ERR
Michal Vasko43297a02021-05-19 11:12:37 +02001517ly_time_str2ts(const char *value, struct timespec *ts)
1518{
1519 LY_ERR rc;
Michal Vasko72975062021-08-25 08:13:04 +02001520 char *fractions_s, frac_buf[10];
Michal Vasko43297a02021-05-19 11:12:37 +02001521 int frac_len;
1522
1523 LY_CHECK_ARG_RET(NULL, value, ts, LY_EINVAL);
1524
1525 rc = ly_time_str2time(value, &ts->tv_sec, &fractions_s);
1526 LY_CHECK_RET(rc);
1527
1528 /* convert fractions of a second to nanoseconds */
1529 if (fractions_s) {
Michal Vasko72975062021-08-25 08:13:04 +02001530 /* init frac_buf with zeroes */
1531 memset(frac_buf, '0', 9);
1532 frac_buf[9] = '\0';
1533
Michal Vasko43297a02021-05-19 11:12:37 +02001534 frac_len = strlen(fractions_s);
1535 memcpy(frac_buf, fractions_s, frac_len > 9 ? 9 : frac_len);
1536 ts->tv_nsec = atol(frac_buf);
1537 free(fractions_s);
1538 } else {
1539 ts->tv_nsec = 0;
1540 }
1541
1542 return LY_SUCCESS;
1543}
1544
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001545LIBYANG_API_DEF LY_ERR
Michal Vasko43297a02021-05-19 11:12:37 +02001546ly_time_ts2str(const struct timespec *ts, char **str)
1547{
1548 char frac_buf[10];
1549
Jan Kundrátbd157002021-08-30 14:02:22 +02001550 LY_CHECK_ARG_RET(NULL, ts, str, ((ts->tv_nsec <= 999999999) && (ts->tv_nsec >= 0)), LY_EINVAL);
Michal Vasko43297a02021-05-19 11:12:37 +02001551
1552 /* convert nanoseconds to fractions of a second */
1553 if (ts->tv_nsec) {
1554 sprintf(frac_buf, "%09ld", ts->tv_nsec);
1555 }
1556
1557 return ly_time_time2str(ts->tv_sec, ts->tv_nsec ? frac_buf : NULL, str);
1558}