blob: 801d63626660be878cda7e3f60c989b60b04e975 [file] [log] [blame]
Radek Krejci0af5f5d2018-09-07 15:00:30 +02001/**
2 * @file context.c
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief Context implementations
5 *
6 * Copyright (c) 2015 - 2018 CESNET, z.s.p.o.
7 *
8 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
13 */
Radek Krejci535ea9f2020-05-29 16:01:05 +020014#define _GNU_SOURCE /* asprintf */
Radek Krejcif8dc59a2020-11-25 13:47:44 +010015#define _POSIX_C_SOURCE 200809L /* strdup */
Radek Krejci0af5f5d2018-09-07 15:00:30 +020016
Radek Krejcid43298b2021-03-25 16:17:15 +010017#if defined (__NetBSD__) || defined (__OpenBSD__)
Christian Hopps6f326212021-03-23 12:37:29 -040018#define _XOPEN_SOURCE
19#define _XOPEN_SOURCE_EXTENDED /* realpath */
20#endif
21
Radek Krejci535ea9f2020-05-29 16:01:05 +020022#include "context.h"
Radek Krejcib7db73a2018-10-24 14:18:40 +020023
Radek Krejci0af5f5d2018-09-07 15:00:30 +020024#include <errno.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020025#include <pthread.h>
26#include <stddef.h>
Radek Krejci535ea9f2020-05-29 16:01:05 +020027#include <stdio.h>
Radek Krejci7ada9a02018-09-07 15:34:05 +020028#include <stdlib.h>
29#include <string.h>
Radek Krejci0e212402018-09-20 11:29:38 +020030#include <sys/stat.h>
Radek Krejci0af5f5d2018-09-07 15:00:30 +020031#include <unistd.h>
32
Radek Krejci535ea9f2020-05-29 16:01:05 +020033#include "common.h"
Radek Krejciaa45bda2020-07-20 07:43:38 +020034#include "compat.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020035#include "hash_table.h"
Michal Vaskoafac7822020-10-20 14:22:26 +020036#include "in.h"
Radek Krejci7931b192020-06-25 17:05:03 +020037#include "parser_data.h"
Radek Krejcica376bd2020-06-11 16:04:06 +020038#include "plugins_types.h"
Michal Vasko405cc9e2020-12-01 12:01:27 +010039#include "schema_compile.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020040#include "set.h"
41#include "tree.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020042#include "tree_data.h"
Radek Krejcica376bd2020-06-11 16:04:06 +020043#include "tree_schema.h"
Radek Krejci86d106e2018-10-18 09:53:19 +020044#include "tree_schema_internal.h"
Radek Krejci0af5f5d2018-09-07 15:00:30 +020045
Michal Vaskocf296c82020-05-27 11:16:45 +020046#include "../models/ietf-datastores@2018-02-14.h"
Michal Vasko69730152020-10-09 16:30:07 +020047#include "../models/ietf-inet-types@2013-07-15.h"
Michal Vaskocf296c82020-05-27 11:16:45 +020048#include "../models/ietf-yang-library@2019-01-04.h"
Michal Vasko69730152020-10-09 16:30:07 +020049#include "../models/ietf-yang-metadata@2016-08-05.h"
50#include "../models/ietf-yang-types@2013-07-15.h"
51#include "../models/yang@2020-06-17.h"
Michal Vaskocf296c82020-05-27 11:16:45 +020052#define IETF_YANG_LIB_REV "2019-01-04"
Radek Krejci0af5f5d2018-09-07 15:00:30 +020053
Radek Krejci0af5f5d2018-09-07 15:00:30 +020054static struct internal_modules_s {
55 const char *name;
56 const char *revision;
57 const char *data;
Radek Krejci857189e2020-09-01 13:26:36 +020058 ly_bool implemented;
Radek Krejci0af5f5d2018-09-07 15:00:30 +020059 LYS_INFORMAT format;
Michal Vaskode79e222020-08-10 11:55:46 +020060} internal_modules[] = {
Michal Vasko1de593f2020-11-23 16:11:41 +010061 {"ietf-yang-metadata", "2016-08-05", (const char *)ietf_yang_metadata_2016_08_05_yang, 0, LYS_IN_YANG},
Michal Vasko22df3f02020-08-24 13:29:22 +020062 {"yang", "2020-06-17", (const char *)yang_2020_06_17_yang, 1, LYS_IN_YANG},
63 {"ietf-inet-types", "2013-07-15", (const char *)ietf_inet_types_2013_07_15_yang, 0, LYS_IN_YANG},
64 {"ietf-yang-types", "2013-07-15", (const char *)ietf_yang_types_2013_07_15_yang, 0, LYS_IN_YANG},
Radek Krejci0af5f5d2018-09-07 15:00:30 +020065 /* ietf-datastores and ietf-yang-library must be right here at the end of the list! */
Michal Vasko22df3f02020-08-24 13:29:22 +020066 {"ietf-datastores", "2018-02-14", (const char *)ietf_datastores_2018_02_14_yang, 1, LYS_IN_YANG},
67 {"ietf-yang-library", IETF_YANG_LIB_REV, (const char *)ietf_yang_library_2019_01_04_yang, 1, LYS_IN_YANG}
Radek Krejci0af5f5d2018-09-07 15:00:30 +020068};
69
Michal Vaskode79e222020-08-10 11:55:46 +020070#define LY_INTERNAL_MODS_COUNT sizeof(internal_modules) / sizeof(struct internal_modules_s)
71
Radek Krejci0af5f5d2018-09-07 15:00:30 +020072API LY_ERR
73ly_ctx_set_searchdir(struct ly_ctx *ctx, const char *search_dir)
74{
Radek Krejci0e212402018-09-20 11:29:38 +020075 struct stat st;
Radek Krejci0af5f5d2018-09-07 15:00:30 +020076 char *new_dir = NULL;
Radek Krejci0af5f5d2018-09-07 15:00:30 +020077
78 LY_CHECK_ARG_RET(ctx, ctx, LY_EINVAL);
79
80 if (search_dir) {
Radek Krejci0af5f5d2018-09-07 15:00:30 +020081 new_dir = realpath(search_dir, NULL);
Radek Krejcia77e0e12018-09-20 12:39:15 +020082 LY_CHECK_ERR_RET(!new_dir,
Michal Vasko69730152020-10-09 16:30:07 +020083 LOGERR(ctx, LY_ESYS, "Unable to use search directory \"%s\" (%s).", search_dir, strerror(errno)),
84 LY_EINVAL);
Radek Krejci3a077b92019-04-09 17:10:35 +020085 if (strcmp(search_dir, new_dir)) {
86 LOGVRB("Canonicalizing search directory string from \"%s\" to \"%s\".", search_dir, new_dir);
87 }
88 LY_CHECK_ERR_RET(access(new_dir, R_OK | X_OK),
Michal Vasko69730152020-10-09 16:30:07 +020089 LOGERR(ctx, LY_ESYS, "Unable to fully access search directory \"%s\" (%s).", new_dir, strerror(errno)); free(new_dir),
90 LY_EINVAL);
Radek Krejci3a077b92019-04-09 17:10:35 +020091 LY_CHECK_ERR_RET(stat(new_dir, &st),
Michal Vasko69730152020-10-09 16:30:07 +020092 LOGERR(ctx, LY_ESYS, "stat() failed for \"%s\" (%s).", new_dir, strerror(errno)); free(new_dir),
93 LY_ESYS);
Radek Krejci3a077b92019-04-09 17:10:35 +020094 LY_CHECK_ERR_RET(!S_ISDIR(st.st_mode),
Michal Vasko69730152020-10-09 16:30:07 +020095 LOGERR(ctx, LY_ESYS, "Given search directory \"%s\" is not a directory.", new_dir); free(new_dir),
96 LY_EINVAL);
Radek Krejci0e212402018-09-20 11:29:38 +020097 /* avoid path duplication */
Radek Krejci1deb5be2020-08-26 16:43:36 +020098 for (uint32_t u = 0; u < ctx->search_paths.count; ++u) {
Radek Krejci14946ab2018-09-20 13:42:06 +020099 if (!strcmp(new_dir, ctx->search_paths.objs[u])) {
Radek Krejci0e212402018-09-20 11:29:38 +0200100 free(new_dir);
Radek Krejci14946ab2018-09-20 13:42:06 +0200101 return LY_EEXIST;
Radek Krejci0e212402018-09-20 11:29:38 +0200102 }
103 }
Radek Krejci3d92e442020-10-12 12:48:13 +0200104 if (ly_set_add(&ctx->search_paths, new_dir, 1, NULL)) {
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200105 free(new_dir);
106 return LY_EMEM;
107 }
108
Radek Krejcie9e987e2018-10-31 12:50:27 +0100109 /* new searchdir - possibly more latest revision available */
110 ly_ctx_reset_latests(ctx);
111
Radek Krejci0e212402018-09-20 11:29:38 +0200112 return LY_SUCCESS;
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200113 } else {
114 /* consider that no change is not actually an error */
115 return LY_SUCCESS;
116 }
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200117}
118
119API const char * const *
120ly_ctx_get_searchdirs(const struct ly_ctx *ctx)
121{
Radek Krejcif13b87b2020-12-01 22:02:17 +0100122#define LY_CTX_SEARCHDIRS_SIZE_STEP 8
Radek Krejci05026432018-09-20 12:13:43 +0200123 void **new;
124
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200125 LY_CHECK_ARG_RET(ctx, ctx, NULL);
Radek Krejci05026432018-09-20 12:13:43 +0200126
127 if (ctx->search_paths.count == ctx->search_paths.size) {
128 /* not enough space for terminating NULL byte */
Radek Krejcif13b87b2020-12-01 22:02:17 +0100129 new = realloc(((struct ly_ctx *)ctx)->search_paths.objs,
130 (ctx->search_paths.size + LY_CTX_SEARCHDIRS_SIZE_STEP) * sizeof *ctx->search_paths.objs);
Radek Krejci05026432018-09-20 12:13:43 +0200131 LY_CHECK_ERR_RET(!new, LOGMEM(NULL), NULL);
Radek Krejcif13b87b2020-12-01 22:02:17 +0100132 ((struct ly_ctx *)ctx)->search_paths.size += LY_CTX_SEARCHDIRS_SIZE_STEP;
Radek Krejci05026432018-09-20 12:13:43 +0200133 ((struct ly_ctx *)ctx)->search_paths.objs = new;
134 }
135 /* set terminating NULL byte to the strings list */
136 ctx->search_paths.objs[ctx->search_paths.count] = NULL;
137
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200138 return (const char * const *)ctx->search_paths.objs;
139}
140
141API LY_ERR
Radek Krejcie58f97f2020-08-18 11:45:08 +0200142ly_ctx_unset_searchdir(struct ly_ctx *ctx, const char *value)
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200143{
Radek Krejcicd649072018-09-20 12:14:45 +0200144 LY_CHECK_ARG_RET(ctx, ctx, LY_EINVAL);
Radek Krejcicd649072018-09-20 12:14:45 +0200145
Michal Vaskob34480a2018-09-17 10:34:45 +0200146 if (!ctx->search_paths.count) {
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200147 return LY_SUCCESS;
148 }
149
Radek Krejci0759b792018-09-20 13:53:15 +0200150 if (value) {
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200151 /* remove specific search directory */
Radek Krejci1deb5be2020-08-26 16:43:36 +0200152 uint32_t index;
153
Radek Krejci0759b792018-09-20 13:53:15 +0200154 for (index = 0; index < ctx->search_paths.count; ++index) {
155 if (!strcmp(value, ctx->search_paths.objs[index])) {
156 break;
157 }
158 }
159 if (index == ctx->search_paths.count) {
160 LOGARG(ctx, value);
161 return LY_EINVAL;
162 } else {
163 return ly_set_rm_index(&ctx->search_paths, index, free);
164 }
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200165 } else {
166 /* remove them all */
Radek Krejcia40f21b2018-09-18 10:42:08 +0200167 ly_set_erase(&ctx->search_paths, free);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200168 memset(&ctx->search_paths, 0, sizeof ctx->search_paths);
169 }
170
171 return LY_SUCCESS;
172}
173
174API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200175ly_ctx_unset_searchdir_last(struct ly_ctx *ctx, uint32_t count)
Radek Krejcied5acc52019-04-25 15:57:04 +0200176{
177 LY_CHECK_ARG_RET(ctx, ctx, LY_EINVAL);
178
Radek Krejcie58f97f2020-08-18 11:45:08 +0200179 for ( ; count > 0 && ctx->search_paths.count; --count) {
180 LY_CHECK_RET(ly_set_rm_index(&ctx->search_paths, ctx->search_paths.count - 1, free))
Radek Krejcied5acc52019-04-25 15:57:04 +0200181 }
182
183 return LY_SUCCESS;
184}
185
186API const struct lys_module *
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100187ly_ctx_load_module(struct ly_ctx *ctx, const char *name, const char *revision, const char **features)
Radek Krejcied5acc52019-04-25 15:57:04 +0200188{
189 struct lys_module *result = NULL;
Michal Vasko405cc9e2020-12-01 12:01:27 +0100190 struct lys_glob_unres unres = {0};
191 LY_ERR ret = LY_SUCCESS;
Radek Krejcied5acc52019-04-25 15:57:04 +0200192
193 LY_CHECK_ARG_RET(ctx, ctx, name, NULL);
194
Michal Vasko405cc9e2020-12-01 12:01:27 +0100195 LY_CHECK_GOTO(ret = lysp_load_module(ctx, name, revision, 1, features, &unres, &result), cleanup);
196
197 /* resolve unres and revert, if needed */
198 LY_CHECK_GOTO(ret = lys_compile_unres_glob(ctx, &unres), cleanup);
199
200cleanup:
201 if (ret) {
202 lys_compile_unres_glob_revert(ctx, &unres);
203 result = NULL;
204 }
205 lys_compile_unres_glob_erase(ctx, &unres);
Radek Krejcied5acc52019-04-25 15:57:04 +0200206 return result;
207}
208
209API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200210ly_ctx_new(const char *search_dir, uint16_t options, struct ly_ctx **new_ctx)
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200211{
212 struct ly_ctx *ctx = NULL;
213 struct lys_module *module;
214 char *search_dir_list;
215 char *sep, *dir;
Michal Vaskode79e222020-08-10 11:55:46 +0200216 uint32_t i;
Michal Vasko63f3d842020-07-08 10:10:14 +0200217 struct ly_in *in = NULL;
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200218 LY_ERR rc = LY_SUCCESS;
Michal Vasko405cc9e2020-12-01 12:01:27 +0100219 struct lys_glob_unres unres = {0};
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200220
Radek Krejcied5acc52019-04-25 15:57:04 +0200221 LY_CHECK_ARG_RET(NULL, new_ctx, LY_EINVAL);
222
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200223 ctx = calloc(1, sizeof *ctx);
Radek Krejciad573502018-09-07 15:26:55 +0200224 LY_CHECK_ERR_RET(!ctx, LOGMEM(NULL), LY_EMEM);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200225
226 /* dictionary */
227 lydict_init(&ctx->dict);
228
Radek Krejciad573502018-09-07 15:26:55 +0200229#if 0 /* TODO when plugins implemented */
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200230 /* plugins */
231 ly_load_plugins();
Radek Krejciad573502018-09-07 15:26:55 +0200232#endif
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200233
Radek Krejciaddfc9a2020-12-17 20:46:35 +0100234 /* initialize thread-specific keys */
Radek Krejci1e008d22020-08-17 11:37:37 +0200235 while ((pthread_key_create(&ctx->errlist_key, ly_err_free)) == EAGAIN) {}
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200236
237 /* models list */
238 ctx->flags = options;
239 if (search_dir) {
240 search_dir_list = strdup(search_dir);
241 LY_CHECK_ERR_GOTO(!search_dir_list, LOGMEM(NULL); rc = LY_EMEM, error);
242
243 for (dir = search_dir_list; (sep = strchr(dir, ':')) != NULL && rc == LY_SUCCESS; dir = sep + 1) {
244 *sep = 0;
245 rc = ly_ctx_set_searchdir(ctx, dir);
Radek Krejci14946ab2018-09-20 13:42:06 +0200246 if (rc == LY_EEXIST) {
247 /* ignore duplication */
248 rc = LY_SUCCESS;
249 }
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200250 }
Michal Vasko69730152020-10-09 16:30:07 +0200251 if (*dir && (rc == LY_SUCCESS)) {
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200252 rc = ly_ctx_set_searchdir(ctx, dir);
Radek Krejci14946ab2018-09-20 13:42:06 +0200253 if (rc == LY_EEXIST) {
254 /* ignore duplication */
255 rc = LY_SUCCESS;
256 }
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200257 }
258 free(search_dir_list);
259
260 /* If ly_ctx_set_searchdir() failed, the error is already logged. Just exit */
261 if (rc != LY_SUCCESS) {
262 goto error;
263 }
264 }
Michal Vasko794ab4b2021-03-31 09:42:19 +0200265 ctx->change_count = 1;
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200266
Michal Vasko63f3d842020-07-08 10:10:14 +0200267 /* create dummy in */
268 rc = ly_in_new_memory(internal_modules[0].data, &in);
269 LY_CHECK_GOTO(rc, error);
270
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200271 /* load internal modules */
Michal Vasko25d6ad02020-10-22 12:20:22 +0200272 for (i = 0; i < ((options & LY_CTX_NO_YANGLIBRARY) ? (LY_INTERNAL_MODS_COUNT - 2) : LY_INTERNAL_MODS_COUNT); i++) {
Michal Vasko63f3d842020-07-08 10:10:14 +0200273 ly_in_memory(in, internal_modules[i].data);
Michal Vasko7a0b0762020-09-02 16:37:01 +0200274 LY_CHECK_GOTO(rc = lys_create_module(ctx, in, internal_modules[i].format, internal_modules[i].implemented,
Michal Vasko405cc9e2020-12-01 12:01:27 +0100275 NULL, NULL, NULL, &unres, &module), error);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200276 }
277
Michal Vasko405cc9e2020-12-01 12:01:27 +0100278 /* resolve global unres */
279 LY_CHECK_GOTO(rc = lys_compile_unres_glob(ctx, &unres), error);
280
Michal Vasko63f3d842020-07-08 10:10:14 +0200281 ly_in_free(in, 0);
Michal Vasko405cc9e2020-12-01 12:01:27 +0100282 lys_compile_unres_glob_erase(ctx, &unres);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200283 *new_ctx = ctx;
284 return rc;
285
286error:
Michal Vasko63f3d842020-07-08 10:10:14 +0200287 ly_in_free(in, 0);
Michal Vasko405cc9e2020-12-01 12:01:27 +0100288 lys_compile_unres_glob_erase(ctx, &unres);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200289 ly_ctx_destroy(ctx, NULL);
290 return rc;
291}
Radek Krejci0f969882020-08-21 16:56:47 +0200292
Radek Krejci1deb5be2020-08-26 16:43:36 +0200293API uint16_t
Radek Krejci3fbe89a2018-09-20 13:54:46 +0200294ly_ctx_get_options(const struct ly_ctx *ctx)
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200295{
Radek Krejci3fbe89a2018-09-20 13:54:46 +0200296 LY_CHECK_ARG_RET(ctx, ctx, 0);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200297 return ctx->flags;
298}
299
Radek Krejcica828d92018-09-20 14:19:43 +0200300API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200301ly_ctx_set_options(struct ly_ctx *ctx, uint16_t option)
Radek Krejcica828d92018-09-20 14:19:43 +0200302{
303 LY_CHECK_ARG_RET(ctx, ctx, LY_EINVAL);
Michal Vasko25d6ad02020-10-22 12:20:22 +0200304 LY_CHECK_ERR_RET(option & LY_CTX_NO_YANGLIBRARY, LOGARG(ctx, option), LY_EINVAL);
Radek Krejcica828d92018-09-20 14:19:43 +0200305
306 /* set the option(s) */
307 ctx->flags |= option;
308
309 return LY_SUCCESS;
310}
311
312API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200313ly_ctx_unset_options(struct ly_ctx *ctx, uint16_t option)
Radek Krejcica828d92018-09-20 14:19:43 +0200314{
315 LY_CHECK_ARG_RET(ctx, ctx, LY_EINVAL);
Michal Vasko25d6ad02020-10-22 12:20:22 +0200316 LY_CHECK_ERR_RET(option & LY_CTX_NO_YANGLIBRARY, LOGARG(ctx, option), LY_EINVAL);
Radek Krejcica828d92018-09-20 14:19:43 +0200317
318 /* unset the option(s) */
319 ctx->flags &= ~option;
320
321 return LY_SUCCESS;
322}
323
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200324API uint16_t
Michal Vasko794ab4b2021-03-31 09:42:19 +0200325ly_ctx_get_change_count(const struct ly_ctx *ctx)
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200326{
Radek Krejci3fbe89a2018-09-20 13:54:46 +0200327 LY_CHECK_ARG_RET(ctx, ctx, 0);
Michal Vasko794ab4b2021-03-31 09:42:19 +0200328
329 return ctx->change_count;
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200330}
331
Radek Krejcid33273d2018-10-25 14:55:52 +0200332API void
333ly_ctx_set_module_imp_clb(struct ly_ctx *ctx, ly_module_imp_clb clb, void *user_data)
334{
Michal Vaskod989ba02020-08-24 10:59:24 +0200335 LY_CHECK_ARG_RET(ctx, ctx, );
Radek Krejcid33273d2018-10-25 14:55:52 +0200336
337 ctx->imp_clb = clb;
338 ctx->imp_clb_data = user_data;
339}
340
341API ly_module_imp_clb
342ly_ctx_get_module_imp_clb(const struct ly_ctx *ctx, void **user_data)
343{
344 LY_CHECK_ARG_RET(ctx, ctx, NULL);
345
346 if (user_data) {
347 *user_data = ctx->imp_clb_data;
348 }
349 return ctx->imp_clb;
350}
351
Radek Krejcied5acc52019-04-25 15:57:04 +0200352API const struct lys_module *
Radek Krejci1deb5be2020-08-26 16:43:36 +0200353ly_ctx_get_module_iter(const struct ly_ctx *ctx, uint32_t *index)
Radek Krejcied5acc52019-04-25 15:57:04 +0200354{
355 LY_CHECK_ARG_RET(ctx, ctx, index, NULL);
356
Radek Krejci2390fb52019-04-30 13:27:43 +0200357 if (*index < (unsigned)ctx->list.count) {
Radek Krejcied5acc52019-04-25 15:57:04 +0200358 return ctx->list.objs[(*index)++];
Radek Krejci2390fb52019-04-30 13:27:43 +0200359 } else {
360 return NULL;
Radek Krejcied5acc52019-04-25 15:57:04 +0200361 }
Radek Krejcied5acc52019-04-25 15:57:04 +0200362}
363
Radek Krejcib7db73a2018-10-24 14:18:40 +0200364/**
365 * @brief Iterate over the modules in the given context. Returned modules must match the given key at the offset of
366 * lysp_module and lysc_module structures (they are supposed to be placed at the same offset in both structures).
367 *
368 * @param[in] ctx Context where to iterate.
369 * @param[in] key Key value to search for.
Radek Krejci0ad51f12020-07-16 12:08:12 +0200370 * @param[in] key_size Optional length of the @p key. If zero, NULL-terminated key is expected.
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100371 * @param[in] key_offset Key's offset in struct lys_module to get value from the context's modules to match with the key.
Radek Krejcib7db73a2018-10-24 14:18:40 +0200372 * @param[in,out] Iterator to pass between the function calls. On the first call, the variable is supposed to be
373 * initiated to 0. After each call returning a module, the value is greater by 1 than the index of the returned
374 * module in the context.
375 * @return Module matching the given key, NULL if no such module found.
376 */
Radek Krejci0af46292019-01-11 16:02:31 +0100377static struct lys_module *
Radek Krejci1deb5be2020-08-26 16:43:36 +0200378ly_ctx_get_module_by_iter(const struct ly_ctx *ctx, const char *key, size_t key_size, size_t key_offset, uint32_t *index)
Radek Krejcib7db73a2018-10-24 14:18:40 +0200379{
Radek Krejci0af46292019-01-11 16:02:31 +0100380 struct lys_module *mod;
Radek Krejcib7db73a2018-10-24 14:18:40 +0200381 const char *value;
382
Michal Vaskod989ba02020-08-24 10:59:24 +0200383 for ( ; *index < ctx->list.count; ++(*index)) {
Radek Krejcib7db73a2018-10-24 14:18:40 +0200384 mod = ctx->list.objs[*index];
Michal Vasko22df3f02020-08-24 13:29:22 +0200385 value = *(const char **)(((int8_t *)(mod)) + key_offset);
Michal Vasko69730152020-10-09 16:30:07 +0200386 if ((!key_size && !strcmp(key, value)) || (key_size && !strncmp(key, value, key_size) && (value[key_size] == '\0'))) {
Radek Krejcib7db73a2018-10-24 14:18:40 +0200387 /* increment index for the next run */
388 ++(*index);
389 return mod;
390 }
391 }
392 /* done */
393 return NULL;
394}
395
396/**
397 * @brief Unifying function for ly_ctx_get_module() and ly_ctx_get_module_ns()
398 * @param[in] ctx Context where to search.
399 * @param[in] key Name or Namespace as a search key.
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100400 * @param[in] key_offset Key's offset in struct lys_module to get value from the context's modules to match with the key.
Radek Krejcib7db73a2018-10-24 14:18:40 +0200401 * @param[in] revision Revision date to match. If NULL, the matching module must have no revision. To search for the latest
402 * revision module, use ly_ctx_get_module_latest_by().
403 * @return Matching module if any.
404 */
Radek Krejci0af46292019-01-11 16:02:31 +0100405static struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200406ly_ctx_get_module_by(const struct ly_ctx *ctx, const char *key, size_t key_offset, const char *revision)
407{
Radek Krejci0af46292019-01-11 16:02:31 +0100408 struct lys_module *mod;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200409 uint32_t index = 0;
Radek Krejcib7db73a2018-10-24 14:18:40 +0200410
Radek Krejci0ad51f12020-07-16 12:08:12 +0200411 while ((mod = ly_ctx_get_module_by_iter(ctx, key, 0, key_offset, &index))) {
Radek Krejcib7db73a2018-10-24 14:18:40 +0200412 if (!revision) {
Radek Krejci0af46292019-01-11 16:02:31 +0100413 if (!mod->revision) {
Radek Krejcib7db73a2018-10-24 14:18:40 +0200414 /* found requested module without revision */
415 return mod;
416 }
417 } else {
Radek Krejci0af46292019-01-11 16:02:31 +0100418 if (mod->revision && !strcmp(mod->revision, revision)) {
Radek Krejcib7db73a2018-10-24 14:18:40 +0200419 /* found requested module of the specific revision */
420 return mod;
421 }
422 }
423 }
424
425 return NULL;
426}
427
Radek Krejci0af46292019-01-11 16:02:31 +0100428API struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200429ly_ctx_get_module_ns(const struct ly_ctx *ctx, const char *ns, const char *revision)
430{
431 LY_CHECK_ARG_RET(ctx, ctx, ns, NULL);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100432 return ly_ctx_get_module_by(ctx, ns, offsetof(struct lys_module, ns), revision);
Radek Krejcib7db73a2018-10-24 14:18:40 +0200433}
434
Radek Krejci0af46292019-01-11 16:02:31 +0100435API struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200436ly_ctx_get_module(const struct ly_ctx *ctx, const char *name, const char *revision)
437{
438 LY_CHECK_ARG_RET(ctx, ctx, name, NULL);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100439 return ly_ctx_get_module_by(ctx, name, offsetof(struct lys_module, name), revision);
Radek Krejcib7db73a2018-10-24 14:18:40 +0200440}
441
442/**
443 * @brief Unifying function for ly_ctx_get_module_latest() and ly_ctx_get_module_latest_ns()
444 * @param[in] ctx Context where to search.
445 * @param[in] key Name or Namespace as a search key.
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100446 * @param[in] key_offset Key's offset in struct lys_module to get value from the context's modules to match with the key.
Radek Krejcib7db73a2018-10-24 14:18:40 +0200447 * @return Matching module if any.
448 */
Radek Krejci0af46292019-01-11 16:02:31 +0100449static struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200450ly_ctx_get_module_latest_by(const struct ly_ctx *ctx, const char *key, size_t key_offset)
451{
Radek Krejci0af46292019-01-11 16:02:31 +0100452 struct lys_module *mod;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200453 uint32_t index = 0;
Radek Krejcib7db73a2018-10-24 14:18:40 +0200454
Radek Krejci0ad51f12020-07-16 12:08:12 +0200455 while ((mod = ly_ctx_get_module_by_iter(ctx, key, 0, key_offset, &index))) {
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100456 if (mod->latest_revision) {
Radek Krejci9f5e6fb2018-10-25 09:26:12 +0200457 return mod;
Radek Krejcib7db73a2018-10-24 14:18:40 +0200458 }
459 }
460
Radek Krejci9f5e6fb2018-10-25 09:26:12 +0200461 return NULL;
Radek Krejcib7db73a2018-10-24 14:18:40 +0200462}
463
Radek Krejci0af46292019-01-11 16:02:31 +0100464API struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200465ly_ctx_get_module_latest(const struct ly_ctx *ctx, const char *name)
466{
467 LY_CHECK_ARG_RET(ctx, ctx, name, NULL);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100468 return ly_ctx_get_module_latest_by(ctx, name, offsetof(struct lys_module, name));
Radek Krejcib7db73a2018-10-24 14:18:40 +0200469}
470
Radek Krejci0af46292019-01-11 16:02:31 +0100471API struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200472ly_ctx_get_module_latest_ns(const struct ly_ctx *ctx, const char *ns)
473{
474 LY_CHECK_ARG_RET(ctx, ctx, ns, NULL);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100475 return ly_ctx_get_module_latest_by(ctx, ns, offsetof(struct lys_module, ns));
Radek Krejcib7db73a2018-10-24 14:18:40 +0200476}
477
478/**
479 * @brief Unifying function for ly_ctx_get_module_implemented() and ly_ctx_get_module_implemented_ns()
480 * @param[in] ctx Context where to search.
481 * @param[in] key Name or Namespace as a search key.
Radek Krejci0ad51f12020-07-16 12:08:12 +0200482 * @param[in] key_size Optional length of the @p key. If zero, NULL-terminated key is expected.
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100483 * @param[in] key_offset Key's offset in struct lys_module to get value from the context's modules to match with the key.
Radek Krejcib7db73a2018-10-24 14:18:40 +0200484 * @return Matching module if any.
485 */
Radek Krejci0af46292019-01-11 16:02:31 +0100486static struct lys_module *
Radek Krejci0ad51f12020-07-16 12:08:12 +0200487ly_ctx_get_module_implemented_by(const struct ly_ctx *ctx, const char *key, size_t key_size, size_t key_offset)
Radek Krejcib7db73a2018-10-24 14:18:40 +0200488{
Radek Krejci0af46292019-01-11 16:02:31 +0100489 struct lys_module *mod;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200490 uint32_t index = 0;
Radek Krejcib7db73a2018-10-24 14:18:40 +0200491
Radek Krejci0ad51f12020-07-16 12:08:12 +0200492 while ((mod = ly_ctx_get_module_by_iter(ctx, key, key_size, key_offset, &index))) {
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100493 if (mod->implemented) {
Radek Krejcib7db73a2018-10-24 14:18:40 +0200494 return mod;
495 }
496 }
497
498 return NULL;
499}
500
Radek Krejci0af46292019-01-11 16:02:31 +0100501API struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200502ly_ctx_get_module_implemented(const struct ly_ctx *ctx, const char *name)
503{
504 LY_CHECK_ARG_RET(ctx, ctx, name, NULL);
Radek Krejci0ad51f12020-07-16 12:08:12 +0200505 return ly_ctx_get_module_implemented_by(ctx, name, 0, offsetof(struct lys_module, name));
506}
507
508struct lys_module *
509ly_ctx_get_module_implemented2(const struct ly_ctx *ctx, const char *name, size_t name_len)
510{
511 LY_CHECK_ARG_RET(ctx, ctx, name, NULL);
512 return ly_ctx_get_module_implemented_by(ctx, name, name_len, offsetof(struct lys_module, name));
Radek Krejcib7db73a2018-10-24 14:18:40 +0200513}
514
Radek Krejci0af46292019-01-11 16:02:31 +0100515API struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200516ly_ctx_get_module_implemented_ns(const struct ly_ctx *ctx, const char *ns)
517{
518 LY_CHECK_ARG_RET(ctx, ctx, ns, NULL);
Radek Krejci0ad51f12020-07-16 12:08:12 +0200519 return ly_ctx_get_module_implemented_by(ctx, ns, 0, offsetof(struct lys_module, ns));
Radek Krejcib7db73a2018-10-24 14:18:40 +0200520}
521
Michal Vasko8dc31992021-02-22 10:30:47 +0100522/**
523 * @brief Try to find a submodule in a module.
524 *
525 * @param[in] module Module where to search in.
526 * @param[in] submodule Name of the submodule to find.
527 * @param[in] revision Revision of the submodule to find. NULL for submodule with no revision.
528 * @param[in] latest Ignore @p revision and look for the latest revision.
529 * @return Pointer to the specified submodule if it is present in the context.
530 */
531static const struct lysp_submodule *
532_ly_ctx_get_submodule2(const struct lys_module *module, const char *submodule, const char *revision, ly_bool latest)
Radek Krejcid33273d2018-10-25 14:55:52 +0200533{
Radek Krejcid33273d2018-10-25 14:55:52 +0200534 struct lysp_include *inc;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200535 LY_ARRAY_COUNT_TYPE u;
Radek Krejcid33273d2018-10-25 14:55:52 +0200536
Michal Vasko8dc31992021-02-22 10:30:47 +0100537 LY_CHECK_ARG_RET(NULL, module, module->parsed, submodule, NULL);
Michal Vaskoc3781c32020-10-06 14:04:08 +0200538
Michal Vasko8dc31992021-02-22 10:30:47 +0100539 LY_ARRAY_FOR(module->parsed->includes, u) {
540 if (module->parsed->includes[u].submodule && !strcmp(submodule, module->parsed->includes[u].submodule->name)) {
541 inc = &module->parsed->includes[u];
542
543 if (latest && inc->submodule->latest_revision) {
544 /* latest revision */
545 return inc->submodule;
546 } else if (!revision && !inc->submodule->revs) {
547 /* no revision */
548 return inc->submodule;
549 } else if (revision && inc->submodule->revs && !strcmp(revision, inc->submodule->revs[0].date)) {
550 /* specific revision */
551 return inc->submodule;
552 }
Michal Vaskoc3781c32020-10-06 14:04:08 +0200553 }
Michal Vaskoc3781c32020-10-06 14:04:08 +0200554 }
Radek Krejcifaa1eac2018-10-30 14:34:55 +0100555
Michal Vasko8dc31992021-02-22 10:30:47 +0100556 return NULL;
557}
558
559/**
560 * @brief Try to find a submodule in the context.
561 *
562 * @param[in] ctx Context where to search in.
563 * @param[in] submodule Name of the submodule to find.
564 * @param[in] revision Revision of the submodule to find. NULL for submodule with no revision.
565 * @param[in] latest Ignore @p revision and look for the latest revision.
566 * @return Pointer to the specified submodule if it is present in the context.
567 */
568static const struct lysp_submodule *
569_ly_ctx_get_submodule(const struct ly_ctx *ctx, const char *submodule, const char *revision, ly_bool latest)
570{
571 const struct lys_module *mod;
572 const struct lysp_submodule *submod = NULL;
573 uint32_t v;
574
575 LY_CHECK_ARG_RET(ctx, ctx, submodule, NULL);
576
Radek Krejcifaa1eac2018-10-30 14:34:55 +0100577 for (v = 0; v < ctx->list.count; ++v) {
578 mod = ctx->list.objs[v];
Radek Krejcid33273d2018-10-25 14:55:52 +0200579 if (!mod->parsed) {
580 continue;
581 }
582
Michal Vasko8dc31992021-02-22 10:30:47 +0100583 submod = _ly_ctx_get_submodule2(mod, submodule, revision, latest);
584 if (submod) {
Michal Vaskoc3781c32020-10-06 14:04:08 +0200585 break;
586 }
Radek Krejcid33273d2018-10-25 14:55:52 +0200587 }
588
Michal Vasko8dc31992021-02-22 10:30:47 +0100589 return submod;
590}
591
592API const struct lysp_submodule *
593ly_ctx_get_submodule(const struct ly_ctx *ctx, const char *submodule, const char *revision)
594{
595 return _ly_ctx_get_submodule(ctx, submodule, revision, 0);
596}
597
598API const struct lysp_submodule *
599ly_ctx_get_submodule_latest(const struct ly_ctx *ctx, const char *submodule)
600{
601 return _ly_ctx_get_submodule(ctx, submodule, NULL, 1);
602}
603
604API const struct lysp_submodule *
605ly_ctx_get_submodule2(const struct lys_module *module, const char *submodule, const char *revision)
606{
607 return _ly_ctx_get_submodule2(module, submodule, revision, 0);
608}
609
610API const struct lysp_submodule *
611ly_ctx_get_submodule2_latest(const struct lys_module *module, const char *submodule)
612{
613 return _ly_ctx_get_submodule2(module, submodule, NULL, 1);
Radek Krejcid33273d2018-10-25 14:55:52 +0200614}
615
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200616API void
Radek Krejcie9e987e2018-10-31 12:50:27 +0100617ly_ctx_reset_latests(struct ly_ctx *ctx)
618{
Radek Krejcie9e987e2018-10-31 12:50:27 +0100619 struct lys_module *mod;
620
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200621 for (uint32_t v = 0; v < ctx->list.count; ++v) {
622 mod = ctx->list.objs[v];
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100623 if (mod->latest_revision == 2) {
624 mod->latest_revision = 1;
Radek Krejcie9e987e2018-10-31 12:50:27 +0100625 }
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100626 if (mod->parsed && mod->parsed->includes) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200627 for (LY_ARRAY_COUNT_TYPE u = 0; u < LY_ARRAY_COUNT(mod->parsed->includes); ++u) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200628 if (mod->parsed->includes[u].submodule->latest_revision == 2) {
629 mod->parsed->includes[u].submodule->latest_revision = 1;
Radek Krejcie9e987e2018-10-31 12:50:27 +0100630 }
631 }
632 }
633 }
634}
635
Michal Vaskode79e222020-08-10 11:55:46 +0200636API uint32_t
Radek Krejci0a60f1d2020-10-26 22:24:43 +0100637ly_ctx_internal_modules_count(const struct ly_ctx *ctx)
Michal Vaskode79e222020-08-10 11:55:46 +0200638{
639 if (!ctx) {
640 return 0;
641 }
642
Michal Vasko25d6ad02020-10-22 12:20:22 +0200643 if (ctx->flags & LY_CTX_NO_YANGLIBRARY) {
Michal Vaskode79e222020-08-10 11:55:46 +0200644 return LY_INTERNAL_MODS_COUNT - 2;
645 } else {
646 return LY_INTERNAL_MODS_COUNT;
647 }
648}
649
Michal Vasko57c10cd2020-05-27 15:57:11 +0200650static LY_ERR
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100651ylib_feature(struct lyd_node *parent, const struct lysp_module *pmod)
Michal Vasko57c10cd2020-05-27 15:57:11 +0200652{
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100653 LY_ARRAY_COUNT_TYPE u;
654 struct lysp_feature *f;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200655
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100656 if (!pmod->mod->implemented) {
Michal Vasko57c10cd2020-05-27 15:57:11 +0200657 /* no features can be enabled */
658 return LY_SUCCESS;
659 }
660
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100661 LY_ARRAY_FOR(pmod->features, struct lysp_feature, f) {
662 if (!(f->flags & LYS_FENABLED)) {
Michal Vasko57c10cd2020-05-27 15:57:11 +0200663 continue;
664 }
665
Radek Krejci41ac9942020-11-02 14:47:56 +0100666 LY_CHECK_RET(lyd_new_term(parent, NULL, "feature", f->name, 0, NULL));
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100667 }
668
669 LY_ARRAY_FOR(pmod->includes, u) {
670 LY_ARRAY_FOR(pmod->includes[u].submodule->features, struct lysp_feature, f) {
671 if (!(f->flags & LYS_FENABLED)) {
672 continue;
673 }
674
Radek Krejci41ac9942020-11-02 14:47:56 +0100675 LY_CHECK_RET(lyd_new_term(parent, NULL, "feature", f->name, 0, NULL));
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100676 }
Michal Vasko57c10cd2020-05-27 15:57:11 +0200677 }
678
679 return LY_SUCCESS;
680}
681
682static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +0200683ylib_deviation(struct lyd_node *parent, const struct lys_module *cur_mod, ly_bool bis)
Michal Vasko57c10cd2020-05-27 15:57:11 +0200684{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200685 LY_ARRAY_COUNT_TYPE i;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200686 struct lys_module *mod;
687
688 if (!cur_mod->implemented) {
689 /* no deviations of the module for certain */
690 return LY_SUCCESS;
691 }
692
Michal Vasko7f45cf22020-10-01 12:49:44 +0200693 LY_ARRAY_FOR(cur_mod->deviated_by, i) {
694 mod = cur_mod->deviated_by[i];
Michal Vasko57c10cd2020-05-27 15:57:11 +0200695
696 if (bis) {
Radek Krejci41ac9942020-11-02 14:47:56 +0100697 LY_CHECK_RET(lyd_new_term(parent, NULL, "deviation", mod->name, 0, NULL));
Michal Vasko57c10cd2020-05-27 15:57:11 +0200698 } else {
Radek Krejci41ac9942020-11-02 14:47:56 +0100699 LY_CHECK_RET(lyd_new_list(parent, NULL, "deviation", 0, NULL, mod->name,
Radek Krejci0f969882020-08-21 16:56:47 +0200700 (mod->parsed->revs ? mod->parsed->revs[0].date : "")));
Michal Vasko57c10cd2020-05-27 15:57:11 +0200701 }
702 }
703
704 return LY_SUCCESS;
705}
706
707static LY_ERR
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100708ylib_submodules(struct lyd_node *parent, const struct lysp_module *pmod, ly_bool bis)
Michal Vasko57c10cd2020-05-27 15:57:11 +0200709{
Michal Vasko3a41dff2020-07-15 14:30:28 +0200710 LY_ERR ret;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200711 LY_ARRAY_COUNT_TYPE i;
Michal Vasko3a41dff2020-07-15 14:30:28 +0200712 struct lyd_node *cont;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200713 struct lysp_submodule *submod;
Michal Vasko3a41dff2020-07-15 14:30:28 +0200714 int r;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200715 char *str;
716
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100717 LY_ARRAY_FOR(pmod->includes, i) {
718 submod = pmod->includes[i].submodule;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200719
720 if (bis) {
Radek Krejci41ac9942020-11-02 14:47:56 +0100721 LY_CHECK_RET(lyd_new_list(parent, NULL, "submodule", 0, &cont, submod->name));
Michal Vasko57c10cd2020-05-27 15:57:11 +0200722
723 if (submod->revs) {
Radek Krejci41ac9942020-11-02 14:47:56 +0100724 LY_CHECK_RET(lyd_new_term(cont, NULL, "revision", submod->revs[0].date, 0, NULL));
Michal Vasko57c10cd2020-05-27 15:57:11 +0200725 }
726 } else {
Radek Krejci41ac9942020-11-02 14:47:56 +0100727 LY_CHECK_RET(lyd_new_list(parent, NULL, "submodule", 0, &cont, submod->name,
Radek Krejci0f969882020-08-21 16:56:47 +0200728 (submod->revs ? submod->revs[0].date : "")));
Michal Vasko57c10cd2020-05-27 15:57:11 +0200729 }
730
731 if (submod->filepath) {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200732 r = asprintf(&str, "file://%s", submod->filepath);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100733 LY_CHECK_ERR_RET(r == -1, LOGMEM(pmod->mod->ctx), LY_EMEM);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200734
Radek Krejci41ac9942020-11-02 14:47:56 +0100735 ret = lyd_new_term(cont, NULL, bis ? "location" : "schema", str, 0, NULL);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200736 free(str);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200737 LY_CHECK_RET(ret);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200738 }
739 }
740
741 return LY_SUCCESS;
742}
743
Michal Vasko3a41dff2020-07-15 14:30:28 +0200744API LY_ERR
Michal Vasko794ab4b2021-03-31 09:42:19 +0200745ly_ctx_get_yanglib_data(const struct ly_ctx *ctx, struct lyd_node **root_p, const char *content_id_format, ...)
Michal Vasko57c10cd2020-05-27 15:57:11 +0200746{
Michal Vasko3a41dff2020-07-15 14:30:28 +0200747 LY_ERR ret;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200748 uint32_t i;
Radek Krejci857189e2020-09-01 13:26:36 +0200749 ly_bool bis = 0;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200750 int r;
Radek Krejcif13b87b2020-12-01 22:02:17 +0100751 char *str;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200752 const struct lys_module *mod;
Michal Vasko3a41dff2020-07-15 14:30:28 +0200753 struct lyd_node *root = NULL, *root_bis = NULL, *cont, *set_bis = NULL;
Michal Vasko794ab4b2021-03-31 09:42:19 +0200754 va_list ap;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200755
Michal Vasko3a41dff2020-07-15 14:30:28 +0200756 LY_CHECK_ARG_RET(ctx, ctx, root_p, LY_EINVAL);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200757
758 mod = ly_ctx_get_module_implemented(ctx, "ietf-yang-library");
Michal Vasko3a41dff2020-07-15 14:30:28 +0200759 LY_CHECK_ERR_RET(!mod, LOGERR(ctx, LY_EINVAL, "Module \"ietf-yang-library\" is not implemented."), LY_EINVAL);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200760
761 if (mod->parsed->revs && !strcmp(mod->parsed->revs[0].date, "2016-06-21")) {
762 bis = 0;
763 } else if (mod->parsed->revs && !strcmp(mod->parsed->revs[0].date, IETF_YANG_LIB_REV)) {
764 bis = 1;
765 } else {
766 LOGERR(ctx, LY_EINVAL, "Incompatible ietf-yang-library version in context.");
Michal Vasko3a41dff2020-07-15 14:30:28 +0200767 return LY_EINVAL;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200768 }
769
Radek Krejci41ac9942020-11-02 14:47:56 +0100770 LY_CHECK_GOTO(ret = lyd_new_inner(NULL, mod, "modules-state", 0, &root), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200771
772 if (bis) {
Radek Krejci41ac9942020-11-02 14:47:56 +0100773 LY_CHECK_GOTO(ret = lyd_new_inner(NULL, mod, "yang-library", 0, &root_bis), error);
774 LY_CHECK_GOTO(ret = lyd_new_list(root_bis, NULL, "module-set", 0, &set_bis, "complete"), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200775 }
776
777 for (i = 0; i < ctx->list.count; ++i) {
778 mod = ctx->list.objs[i];
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100779 if (!mod->parsed) {
780 LOGERR(ctx, LY_ENOTFOUND, "Parsed module \"%s\" missing in the context.", mod->name);
781 goto error;
782 }
Michal Vasko57c10cd2020-05-27 15:57:11 +0200783
784 /*
785 * deprecated legacy
786 */
Radek Krejci41ac9942020-11-02 14:47:56 +0100787 LY_CHECK_GOTO(ret = lyd_new_list(root, NULL, "module", 0, &cont, mod->name,
Radek Krejci0f969882020-08-21 16:56:47 +0200788 (mod->parsed->revs ? mod->parsed->revs[0].date : "")), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200789
790 /* schema */
791 if (mod->filepath) {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200792 r = asprintf(&str, "file://%s", mod->filepath);
793 LY_CHECK_ERR_GOTO(r == -1, LOGMEM(ctx); ret = LY_EMEM, error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200794
Radek Krejci41ac9942020-11-02 14:47:56 +0100795 ret = lyd_new_term(cont, NULL, "schema", str, 0, NULL);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200796 free(str);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200797 LY_CHECK_GOTO(ret, error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200798 }
799
800 /* namespace */
Radek Krejci41ac9942020-11-02 14:47:56 +0100801 LY_CHECK_GOTO(ret = lyd_new_term(cont, NULL, "namespace", mod->ns, 0, NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200802
803 /* feature leaf-list */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100804 LY_CHECK_GOTO(ret = ylib_feature(cont, mod->parsed), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200805
806 /* deviation list */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200807 LY_CHECK_GOTO(ret = ylib_deviation(cont, mod, 0), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200808
809 /* conformance-type */
Radek Krejci41ac9942020-11-02 14:47:56 +0100810 LY_CHECK_GOTO(ret = lyd_new_term(cont, NULL, "conformance-type", mod->implemented ? "implement" : "import", 0,
Michal Vasko69730152020-10-09 16:30:07 +0200811 NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200812
813 /* submodule list */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100814 LY_CHECK_GOTO(ret = ylib_submodules(cont, mod->parsed, 0), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200815
816 /*
817 * current revision
818 */
819 if (bis) {
820 /* name and revision */
821 if (mod->implemented) {
Radek Krejci41ac9942020-11-02 14:47:56 +0100822 LY_CHECK_GOTO(ret = lyd_new_list(set_bis, NULL, "module", 0, &cont, mod->name), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200823
824 if (mod->parsed->revs) {
Radek Krejci41ac9942020-11-02 14:47:56 +0100825 LY_CHECK_GOTO(ret = lyd_new_term(cont, NULL, "revision", mod->parsed->revs[0].date, 0, NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200826 }
827 } else {
Radek Krejci41ac9942020-11-02 14:47:56 +0100828 LY_CHECK_GOTO(ret = lyd_new_list(set_bis, NULL, "import-only-module", 0, &cont, mod->name,
Radek Krejci0f969882020-08-21 16:56:47 +0200829 (mod->parsed->revs ? mod->parsed->revs[0].date : "")), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200830 }
831
832 /* namespace */
Radek Krejci41ac9942020-11-02 14:47:56 +0100833 LY_CHECK_GOTO(ret = lyd_new_term(cont, NULL, "namespace", mod->ns, 0, NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200834
835 /* location */
836 if (mod->filepath) {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200837 r = asprintf(&str, "file://%s", mod->filepath);
838 LY_CHECK_ERR_GOTO(r == -1, LOGMEM(ctx); ret = LY_EMEM, error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200839
Radek Krejcid68ba1b2020-11-09 17:40:11 +0100840 ret = lyd_new_term(cont, NULL, "location", str, 0, NULL);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200841 free(str);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200842 LY_CHECK_GOTO(ret, error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200843 }
844
845 /* submodule list */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100846 LY_CHECK_GOTO(ret = ylib_submodules(cont, mod->parsed, 1), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200847
848 /* feature list */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100849 LY_CHECK_GOTO(ret = ylib_feature(cont, mod->parsed), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200850
851 /* deviation */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200852 LY_CHECK_GOTO(ret = ylib_deviation(cont, mod, 1), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200853 }
854 }
855
856 /* IDs */
Michal Vasko794ab4b2021-03-31 09:42:19 +0200857 va_start(ap, content_id_format);
858 r = vasprintf(&str, content_id_format, ap);
859 va_end(ap);
Radek Krejcif13b87b2020-12-01 22:02:17 +0100860 LY_CHECK_ERR_GOTO(r == -1, LOGMEM(ctx); ret = LY_EMEM, error);
861 ret = lyd_new_term(root, NULL, "module-set-id", str, 0, NULL);
862 LY_CHECK_ERR_GOTO(ret, free(str), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200863
864 if (bis) {
865 /* create one complete schema */
Radek Krejcif13b87b2020-12-01 22:02:17 +0100866 LY_CHECK_ERR_GOTO(ret = lyd_new_list(root_bis, NULL, "schema", 0, &cont, "complete"), free(str), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200867
Radek Krejcif13b87b2020-12-01 22:02:17 +0100868 LY_CHECK_ERR_GOTO(ret = lyd_new_term(cont, NULL, "module-set", "complete", 0, NULL), free(str), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200869
870 /* content-id */
Radek Krejcif13b87b2020-12-01 22:02:17 +0100871 LY_CHECK_ERR_GOTO(ret = lyd_new_term(root_bis, NULL, "content-id", str, 0, NULL), free(str), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200872 }
Radek Krejcif13b87b2020-12-01 22:02:17 +0100873 free(str);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200874
875 if (root_bis) {
Michal Vaskob104f112020-07-17 09:54:54 +0200876 if (lyd_insert_sibling(root, root_bis, &root)) {
Michal Vasko57c10cd2020-05-27 15:57:11 +0200877 goto error;
878 }
Michal Vaskob104f112020-07-17 09:54:54 +0200879 root_bis = NULL;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200880 }
881
Michal Vasko3a41dff2020-07-15 14:30:28 +0200882 LY_CHECK_GOTO(ret = lyd_validate_all(&root, NULL, LYD_VALIDATE_PRESENT, NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200883
Michal Vasko3a41dff2020-07-15 14:30:28 +0200884 *root_p = root;
885 return LY_SUCCESS;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200886
887error:
888 lyd_free_all(root);
889 lyd_free_all(root_bis);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200890 return ret;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200891}
892
Radek Krejcie9e987e2018-10-31 12:50:27 +0100893API void
Radek Krejciad573502018-09-07 15:26:55 +0200894ly_ctx_destroy(struct ly_ctx *ctx, void (*private_destructor)(const struct lysc_node *node, void *priv))
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200895{
Radek Krejci418823a2018-09-20 16:42:13 +0200896 if (!ctx) {
897 return;
898 }
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200899
900 /* models list */
Michal Vaskod989ba02020-08-24 10:59:24 +0200901 for ( ; ctx->list.count; ctx->list.count--) {
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200902 /* remove the module */
Radek Krejci86d106e2018-10-18 09:53:19 +0200903 lys_module_free(ctx->list.objs[ctx->list.count - 1], private_destructor);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200904 }
905 free(ctx->list.objs);
906
907 /* search paths list */
Radek Krejcia40f21b2018-09-18 10:42:08 +0200908 ly_set_erase(&ctx->search_paths, free);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200909
910 /* clean the error list */
911 ly_err_clean(ctx, 0);
912 pthread_key_delete(ctx->errlist_key);
913
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200914 /* dictionary */
915 lydict_clean(&ctx->dict);
916
917#if 0 /* TODO when plugins implemented */
918 /* plugins - will be removed only if this is the last context */
919 ly_clean_plugins();
920#endif
921
922 free(ctx);
923}