blob: 981ed421c4cea8cbb4a26ddf05f86e7f5ae92605 [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 Krejci535ea9f2020-05-29 16:01:05 +020017#include "context.h"
Radek Krejcib7db73a2018-10-24 14:18:40 +020018
Radek Krejcie7b95092019-05-15 11:03:07 +020019#include <assert.h>
Radek Krejci0af5f5d2018-09-07 15:00:30 +020020#include <errno.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020021#include <pthread.h>
22#include <stddef.h>
Radek Krejci535ea9f2020-05-29 16:01:05 +020023#include <stdio.h>
Radek Krejci7ada9a02018-09-07 15:34:05 +020024#include <stdlib.h>
25#include <string.h>
Radek Krejci0e212402018-09-20 11:29:38 +020026#include <sys/stat.h>
Radek Krejci0af5f5d2018-09-07 15:00:30 +020027#include <unistd.h>
28
Radek Krejci535ea9f2020-05-29 16:01:05 +020029#include "common.h"
Radek Krejciaa45bda2020-07-20 07:43:38 +020030#include "compat.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020031#include "hash_table.h"
Michal Vaskoafac7822020-10-20 14:22:26 +020032#include "in.h"
Radek Krejci7931b192020-06-25 17:05:03 +020033#include "parser_data.h"
Michal Vasko308d0a72020-08-03 11:56:25 +020034#include "path.h"
Radek Krejcica376bd2020-06-11 16:04:06 +020035#include "plugins_types.h"
Michal Vasko405cc9e2020-12-01 12:01:27 +010036#include "schema_compile.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020037#include "set.h"
38#include "tree.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020039#include "tree_data.h"
Radek Krejcica376bd2020-06-11 16:04:06 +020040#include "tree_schema.h"
Radek Krejci86d106e2018-10-18 09:53:19 +020041#include "tree_schema_internal.h"
Michal Vasko308d0a72020-08-03 11:56:25 +020042#include "xpath.h"
Radek Krejci0af5f5d2018-09-07 15:00:30 +020043
Michal Vaskocf296c82020-05-27 11:16:45 +020044#include "../models/ietf-datastores@2018-02-14.h"
Michal Vasko69730152020-10-09 16:30:07 +020045#include "../models/ietf-inet-types@2013-07-15.h"
Michal Vaskocf296c82020-05-27 11:16:45 +020046#include "../models/ietf-yang-library@2019-01-04.h"
Michal Vasko69730152020-10-09 16:30:07 +020047#include "../models/ietf-yang-metadata@2016-08-05.h"
48#include "../models/ietf-yang-types@2013-07-15.h"
49#include "../models/yang@2020-06-17.h"
Michal Vaskocf296c82020-05-27 11:16:45 +020050#define IETF_YANG_LIB_REV "2019-01-04"
Radek Krejci0af5f5d2018-09-07 15:00:30 +020051
Radek Krejci0af5f5d2018-09-07 15:00:30 +020052static struct internal_modules_s {
53 const char *name;
54 const char *revision;
55 const char *data;
Radek Krejci857189e2020-09-01 13:26:36 +020056 ly_bool implemented;
Radek Krejci0af5f5d2018-09-07 15:00:30 +020057 LYS_INFORMAT format;
Michal Vaskode79e222020-08-10 11:55:46 +020058} internal_modules[] = {
Michal Vasko1de593f2020-11-23 16:11:41 +010059 {"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 +020060 {"yang", "2020-06-17", (const char *)yang_2020_06_17_yang, 1, LYS_IN_YANG},
61 {"ietf-inet-types", "2013-07-15", (const char *)ietf_inet_types_2013_07_15_yang, 0, LYS_IN_YANG},
62 {"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 +020063 /* ietf-datastores and ietf-yang-library must be right here at the end of the list! */
Michal Vasko22df3f02020-08-24 13:29:22 +020064 {"ietf-datastores", "2018-02-14", (const char *)ietf_datastores_2018_02_14_yang, 1, LYS_IN_YANG},
65 {"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 +020066};
67
Michal Vaskode79e222020-08-10 11:55:46 +020068#define LY_INTERNAL_MODS_COUNT sizeof(internal_modules) / sizeof(struct internal_modules_s)
69
Radek Krejci0af5f5d2018-09-07 15:00:30 +020070API LY_ERR
71ly_ctx_set_searchdir(struct ly_ctx *ctx, const char *search_dir)
72{
Radek Krejci0e212402018-09-20 11:29:38 +020073 struct stat st;
Radek Krejci0af5f5d2018-09-07 15:00:30 +020074 char *new_dir = NULL;
Radek Krejci0af5f5d2018-09-07 15:00:30 +020075
76 LY_CHECK_ARG_RET(ctx, ctx, LY_EINVAL);
77
78 if (search_dir) {
Radek Krejci0af5f5d2018-09-07 15:00:30 +020079 new_dir = realpath(search_dir, NULL);
Radek Krejcia77e0e12018-09-20 12:39:15 +020080 LY_CHECK_ERR_RET(!new_dir,
Michal Vasko69730152020-10-09 16:30:07 +020081 LOGERR(ctx, LY_ESYS, "Unable to use search directory \"%s\" (%s).", search_dir, strerror(errno)),
82 LY_EINVAL);
Radek Krejci3a077b92019-04-09 17:10:35 +020083 if (strcmp(search_dir, new_dir)) {
84 LOGVRB("Canonicalizing search directory string from \"%s\" to \"%s\".", search_dir, new_dir);
85 }
86 LY_CHECK_ERR_RET(access(new_dir, R_OK | X_OK),
Michal Vasko69730152020-10-09 16:30:07 +020087 LOGERR(ctx, LY_ESYS, "Unable to fully access search directory \"%s\" (%s).", new_dir, strerror(errno)); free(new_dir),
88 LY_EINVAL);
Radek Krejci3a077b92019-04-09 17:10:35 +020089 LY_CHECK_ERR_RET(stat(new_dir, &st),
Michal Vasko69730152020-10-09 16:30:07 +020090 LOGERR(ctx, LY_ESYS, "stat() failed for \"%s\" (%s).", new_dir, strerror(errno)); free(new_dir),
91 LY_ESYS);
Radek Krejci3a077b92019-04-09 17:10:35 +020092 LY_CHECK_ERR_RET(!S_ISDIR(st.st_mode),
Michal Vasko69730152020-10-09 16:30:07 +020093 LOGERR(ctx, LY_ESYS, "Given search directory \"%s\" is not a directory.", new_dir); free(new_dir),
94 LY_EINVAL);
Radek Krejci0e212402018-09-20 11:29:38 +020095 /* avoid path duplication */
Radek Krejci1deb5be2020-08-26 16:43:36 +020096 for (uint32_t u = 0; u < ctx->search_paths.count; ++u) {
Radek Krejci14946ab2018-09-20 13:42:06 +020097 if (!strcmp(new_dir, ctx->search_paths.objs[u])) {
Radek Krejci0e212402018-09-20 11:29:38 +020098 free(new_dir);
Radek Krejci14946ab2018-09-20 13:42:06 +020099 return LY_EEXIST;
Radek Krejci0e212402018-09-20 11:29:38 +0200100 }
101 }
Radek Krejci3d92e442020-10-12 12:48:13 +0200102 if (ly_set_add(&ctx->search_paths, new_dir, 1, NULL)) {
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200103 free(new_dir);
104 return LY_EMEM;
105 }
106
Radek Krejcie9e987e2018-10-31 12:50:27 +0100107 /* new searchdir - possibly more latest revision available */
108 ly_ctx_reset_latests(ctx);
109
Radek Krejci0e212402018-09-20 11:29:38 +0200110 return LY_SUCCESS;
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200111 } else {
112 /* consider that no change is not actually an error */
113 return LY_SUCCESS;
114 }
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200115}
116
117API const char * const *
118ly_ctx_get_searchdirs(const struct ly_ctx *ctx)
119{
Radek Krejci05026432018-09-20 12:13:43 +0200120 void **new;
121
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200122 LY_CHECK_ARG_RET(ctx, ctx, NULL);
Radek Krejci05026432018-09-20 12:13:43 +0200123
124 if (ctx->search_paths.count == ctx->search_paths.size) {
125 /* not enough space for terminating NULL byte */
126 new = realloc(((struct ly_ctx *)ctx)->search_paths.objs, (ctx->search_paths.size + 8) * sizeof *ctx->search_paths.objs);
127 LY_CHECK_ERR_RET(!new, LOGMEM(NULL), NULL);
128 ((struct ly_ctx *)ctx)->search_paths.size += 8;
129 ((struct ly_ctx *)ctx)->search_paths.objs = new;
130 }
131 /* set terminating NULL byte to the strings list */
132 ctx->search_paths.objs[ctx->search_paths.count] = NULL;
133
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200134 return (const char * const *)ctx->search_paths.objs;
135}
136
137API LY_ERR
Radek Krejcie58f97f2020-08-18 11:45:08 +0200138ly_ctx_unset_searchdir(struct ly_ctx *ctx, const char *value)
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200139{
Radek Krejcicd649072018-09-20 12:14:45 +0200140 LY_CHECK_ARG_RET(ctx, ctx, LY_EINVAL);
Radek Krejcicd649072018-09-20 12:14:45 +0200141
Michal Vaskob34480a2018-09-17 10:34:45 +0200142 if (!ctx->search_paths.count) {
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200143 return LY_SUCCESS;
144 }
145
Radek Krejci0759b792018-09-20 13:53:15 +0200146 if (value) {
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200147 /* remove specific search directory */
Radek Krejci1deb5be2020-08-26 16:43:36 +0200148 uint32_t index;
149
Radek Krejci0759b792018-09-20 13:53:15 +0200150 for (index = 0; index < ctx->search_paths.count; ++index) {
151 if (!strcmp(value, ctx->search_paths.objs[index])) {
152 break;
153 }
154 }
155 if (index == ctx->search_paths.count) {
156 LOGARG(ctx, value);
157 return LY_EINVAL;
158 } else {
159 return ly_set_rm_index(&ctx->search_paths, index, free);
160 }
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200161 } else {
162 /* remove them all */
Radek Krejcia40f21b2018-09-18 10:42:08 +0200163 ly_set_erase(&ctx->search_paths, free);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200164 memset(&ctx->search_paths, 0, sizeof ctx->search_paths);
165 }
166
167 return LY_SUCCESS;
168}
169
170API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200171ly_ctx_unset_searchdir_last(struct ly_ctx *ctx, uint32_t count)
Radek Krejcied5acc52019-04-25 15:57:04 +0200172{
173 LY_CHECK_ARG_RET(ctx, ctx, LY_EINVAL);
174
Radek Krejcie58f97f2020-08-18 11:45:08 +0200175 for ( ; count > 0 && ctx->search_paths.count; --count) {
176 LY_CHECK_RET(ly_set_rm_index(&ctx->search_paths, ctx->search_paths.count - 1, free))
Radek Krejcied5acc52019-04-25 15:57:04 +0200177 }
178
179 return LY_SUCCESS;
180}
181
182API const struct lys_module *
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100183ly_ctx_load_module(struct ly_ctx *ctx, const char *name, const char *revision, const char **features)
Radek Krejcied5acc52019-04-25 15:57:04 +0200184{
185 struct lys_module *result = NULL;
Michal Vasko405cc9e2020-12-01 12:01:27 +0100186 struct lys_glob_unres unres = {0};
187 LY_ERR ret = LY_SUCCESS;
Radek Krejcied5acc52019-04-25 15:57:04 +0200188
189 LY_CHECK_ARG_RET(ctx, ctx, name, NULL);
190
Michal Vasko405cc9e2020-12-01 12:01:27 +0100191 LY_CHECK_GOTO(ret = lysp_load_module(ctx, name, revision, 1, features, &unres, &result), cleanup);
192
193 /* resolve unres and revert, if needed */
194 LY_CHECK_GOTO(ret = lys_compile_unres_glob(ctx, &unres), cleanup);
195
196cleanup:
197 if (ret) {
198 lys_compile_unres_glob_revert(ctx, &unres);
199 result = NULL;
200 }
201 lys_compile_unres_glob_erase(ctx, &unres);
Radek Krejcied5acc52019-04-25 15:57:04 +0200202 return result;
203}
204
205API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200206ly_ctx_new(const char *search_dir, uint16_t options, struct ly_ctx **new_ctx)
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200207{
208 struct ly_ctx *ctx = NULL;
209 struct lys_module *module;
210 char *search_dir_list;
211 char *sep, *dir;
Michal Vaskode79e222020-08-10 11:55:46 +0200212 uint32_t i;
Michal Vasko63f3d842020-07-08 10:10:14 +0200213 struct ly_in *in = NULL;
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200214 LY_ERR rc = LY_SUCCESS;
Michal Vasko405cc9e2020-12-01 12:01:27 +0100215 struct lys_glob_unres unres = {0};
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200216
Radek Krejcied5acc52019-04-25 15:57:04 +0200217 LY_CHECK_ARG_RET(NULL, new_ctx, LY_EINVAL);
218
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200219 ctx = calloc(1, sizeof *ctx);
Radek Krejciad573502018-09-07 15:26:55 +0200220 LY_CHECK_ERR_RET(!ctx, LOGMEM(NULL), LY_EMEM);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200221
222 /* dictionary */
223 lydict_init(&ctx->dict);
224
Radek Krejciad573502018-09-07 15:26:55 +0200225#if 0 /* TODO when plugins implemented */
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200226 /* plugins */
227 ly_load_plugins();
Radek Krejciad573502018-09-07 15:26:55 +0200228#endif
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200229
230 /* initialize thread-specific key */
Radek Krejci1e008d22020-08-17 11:37:37 +0200231 while ((pthread_key_create(&ctx->errlist_key, ly_err_free)) == EAGAIN) {}
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200232
233 /* models list */
234 ctx->flags = options;
235 if (search_dir) {
236 search_dir_list = strdup(search_dir);
237 LY_CHECK_ERR_GOTO(!search_dir_list, LOGMEM(NULL); rc = LY_EMEM, error);
238
239 for (dir = search_dir_list; (sep = strchr(dir, ':')) != NULL && rc == LY_SUCCESS; dir = sep + 1) {
240 *sep = 0;
241 rc = ly_ctx_set_searchdir(ctx, dir);
Radek Krejci14946ab2018-09-20 13:42:06 +0200242 if (rc == LY_EEXIST) {
243 /* ignore duplication */
244 rc = LY_SUCCESS;
245 }
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200246 }
Michal Vasko69730152020-10-09 16:30:07 +0200247 if (*dir && (rc == LY_SUCCESS)) {
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200248 rc = ly_ctx_set_searchdir(ctx, dir);
Radek Krejci14946ab2018-09-20 13:42:06 +0200249 if (rc == LY_EEXIST) {
250 /* ignore duplication */
251 rc = LY_SUCCESS;
252 }
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200253 }
254 free(search_dir_list);
255
256 /* If ly_ctx_set_searchdir() failed, the error is already logged. Just exit */
257 if (rc != LY_SUCCESS) {
258 goto error;
259 }
260 }
261 ctx->module_set_id = 1;
262
Michal Vasko63f3d842020-07-08 10:10:14 +0200263 /* create dummy in */
264 rc = ly_in_new_memory(internal_modules[0].data, &in);
265 LY_CHECK_GOTO(rc, error);
266
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200267 /* load internal modules */
Michal Vasko25d6ad02020-10-22 12:20:22 +0200268 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 +0200269 ly_in_memory(in, internal_modules[i].data);
Michal Vasko7a0b0762020-09-02 16:37:01 +0200270 LY_CHECK_GOTO(rc = lys_create_module(ctx, in, internal_modules[i].format, internal_modules[i].implemented,
Michal Vasko405cc9e2020-12-01 12:01:27 +0100271 NULL, NULL, NULL, &unres, &module), error);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200272 }
273
Michal Vasko405cc9e2020-12-01 12:01:27 +0100274 /* resolve global unres */
275 LY_CHECK_GOTO(rc = lys_compile_unres_glob(ctx, &unres), error);
276
Michal Vasko63f3d842020-07-08 10:10:14 +0200277 ly_in_free(in, 0);
Michal Vasko405cc9e2020-12-01 12:01:27 +0100278 lys_compile_unres_glob_erase(ctx, &unres);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200279 *new_ctx = ctx;
280 return rc;
281
282error:
Michal Vasko63f3d842020-07-08 10:10:14 +0200283 ly_in_free(in, 0);
Michal Vasko405cc9e2020-12-01 12:01:27 +0100284 lys_compile_unres_glob_erase(ctx, &unres);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200285 ly_ctx_destroy(ctx, NULL);
286 return rc;
287}
Radek Krejci0f969882020-08-21 16:56:47 +0200288
Radek Krejci1deb5be2020-08-26 16:43:36 +0200289API uint16_t
Radek Krejci3fbe89a2018-09-20 13:54:46 +0200290ly_ctx_get_options(const struct ly_ctx *ctx)
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200291{
Radek Krejci3fbe89a2018-09-20 13:54:46 +0200292 LY_CHECK_ARG_RET(ctx, ctx, 0);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200293 return ctx->flags;
294}
295
Radek Krejcica828d92018-09-20 14:19:43 +0200296API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200297ly_ctx_set_options(struct ly_ctx *ctx, uint16_t option)
Radek Krejcica828d92018-09-20 14:19:43 +0200298{
299 LY_CHECK_ARG_RET(ctx, ctx, LY_EINVAL);
Michal Vasko25d6ad02020-10-22 12:20:22 +0200300 LY_CHECK_ERR_RET(option & LY_CTX_NO_YANGLIBRARY, LOGARG(ctx, option), LY_EINVAL);
Radek Krejcica828d92018-09-20 14:19:43 +0200301
302 /* set the option(s) */
303 ctx->flags |= option;
304
305 return LY_SUCCESS;
306}
307
308API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200309ly_ctx_unset_options(struct ly_ctx *ctx, uint16_t option)
Radek Krejcica828d92018-09-20 14:19:43 +0200310{
311 LY_CHECK_ARG_RET(ctx, ctx, LY_EINVAL);
Michal Vasko25d6ad02020-10-22 12:20:22 +0200312 LY_CHECK_ERR_RET(option & LY_CTX_NO_YANGLIBRARY, LOGARG(ctx, option), LY_EINVAL);
Radek Krejcica828d92018-09-20 14:19:43 +0200313
314 /* unset the option(s) */
315 ctx->flags &= ~option;
316
317 return LY_SUCCESS;
318}
319
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200320API uint16_t
321ly_ctx_get_module_set_id(const struct ly_ctx *ctx)
322{
Radek Krejci3fbe89a2018-09-20 13:54:46 +0200323 LY_CHECK_ARG_RET(ctx, ctx, 0);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200324 return ctx->module_set_id;
325}
326
Radek Krejcid33273d2018-10-25 14:55:52 +0200327API void
328ly_ctx_set_module_imp_clb(struct ly_ctx *ctx, ly_module_imp_clb clb, void *user_data)
329{
Michal Vaskod989ba02020-08-24 10:59:24 +0200330 LY_CHECK_ARG_RET(ctx, ctx, );
Radek Krejcid33273d2018-10-25 14:55:52 +0200331
332 ctx->imp_clb = clb;
333 ctx->imp_clb_data = user_data;
334}
335
336API ly_module_imp_clb
337ly_ctx_get_module_imp_clb(const struct ly_ctx *ctx, void **user_data)
338{
339 LY_CHECK_ARG_RET(ctx, ctx, NULL);
340
341 if (user_data) {
342 *user_data = ctx->imp_clb_data;
343 }
344 return ctx->imp_clb;
345}
346
Radek Krejcied5acc52019-04-25 15:57:04 +0200347API const struct lys_module *
Radek Krejci1deb5be2020-08-26 16:43:36 +0200348ly_ctx_get_module_iter(const struct ly_ctx *ctx, uint32_t *index)
Radek Krejcied5acc52019-04-25 15:57:04 +0200349{
350 LY_CHECK_ARG_RET(ctx, ctx, index, NULL);
351
Radek Krejci2390fb52019-04-30 13:27:43 +0200352 if (*index < (unsigned)ctx->list.count) {
Radek Krejcied5acc52019-04-25 15:57:04 +0200353 return ctx->list.objs[(*index)++];
Radek Krejci2390fb52019-04-30 13:27:43 +0200354 } else {
355 return NULL;
Radek Krejcied5acc52019-04-25 15:57:04 +0200356 }
Radek Krejcied5acc52019-04-25 15:57:04 +0200357}
358
Radek Krejcib7db73a2018-10-24 14:18:40 +0200359/**
360 * @brief Iterate over the modules in the given context. Returned modules must match the given key at the offset of
361 * lysp_module and lysc_module structures (they are supposed to be placed at the same offset in both structures).
362 *
363 * @param[in] ctx Context where to iterate.
364 * @param[in] key Key value to search for.
Radek Krejci0ad51f12020-07-16 12:08:12 +0200365 * @param[in] key_size Optional length of the @p key. If zero, NULL-terminated key is expected.
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100366 * @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 +0200367 * @param[in,out] Iterator to pass between the function calls. On the first call, the variable is supposed to be
368 * initiated to 0. After each call returning a module, the value is greater by 1 than the index of the returned
369 * module in the context.
370 * @return Module matching the given key, NULL if no such module found.
371 */
Radek Krejci0af46292019-01-11 16:02:31 +0100372static struct lys_module *
Radek Krejci1deb5be2020-08-26 16:43:36 +0200373ly_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 +0200374{
Radek Krejci0af46292019-01-11 16:02:31 +0100375 struct lys_module *mod;
Radek Krejcib7db73a2018-10-24 14:18:40 +0200376 const char *value;
377
Michal Vaskod989ba02020-08-24 10:59:24 +0200378 for ( ; *index < ctx->list.count; ++(*index)) {
Radek Krejcib7db73a2018-10-24 14:18:40 +0200379 mod = ctx->list.objs[*index];
Michal Vasko22df3f02020-08-24 13:29:22 +0200380 value = *(const char **)(((int8_t *)(mod)) + key_offset);
Michal Vasko69730152020-10-09 16:30:07 +0200381 if ((!key_size && !strcmp(key, value)) || (key_size && !strncmp(key, value, key_size) && (value[key_size] == '\0'))) {
Radek Krejcib7db73a2018-10-24 14:18:40 +0200382 /* increment index for the next run */
383 ++(*index);
384 return mod;
385 }
386 }
387 /* done */
388 return NULL;
389}
390
391/**
392 * @brief Unifying function for ly_ctx_get_module() and ly_ctx_get_module_ns()
393 * @param[in] ctx Context where to search.
394 * @param[in] key Name or Namespace as a search key.
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100395 * @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 +0200396 * @param[in] revision Revision date to match. If NULL, the matching module must have no revision. To search for the latest
397 * revision module, use ly_ctx_get_module_latest_by().
398 * @return Matching module if any.
399 */
Radek Krejci0af46292019-01-11 16:02:31 +0100400static struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200401ly_ctx_get_module_by(const struct ly_ctx *ctx, const char *key, size_t key_offset, const char *revision)
402{
Radek Krejci0af46292019-01-11 16:02:31 +0100403 struct lys_module *mod;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200404 uint32_t index = 0;
Radek Krejcib7db73a2018-10-24 14:18:40 +0200405
Radek Krejci0ad51f12020-07-16 12:08:12 +0200406 while ((mod = ly_ctx_get_module_by_iter(ctx, key, 0, key_offset, &index))) {
Radek Krejcib7db73a2018-10-24 14:18:40 +0200407 if (!revision) {
Radek Krejci0af46292019-01-11 16:02:31 +0100408 if (!mod->revision) {
Radek Krejcib7db73a2018-10-24 14:18:40 +0200409 /* found requested module without revision */
410 return mod;
411 }
412 } else {
Radek Krejci0af46292019-01-11 16:02:31 +0100413 if (mod->revision && !strcmp(mod->revision, revision)) {
Radek Krejcib7db73a2018-10-24 14:18:40 +0200414 /* found requested module of the specific revision */
415 return mod;
416 }
417 }
418 }
419
420 return NULL;
421}
422
Radek Krejci0af46292019-01-11 16:02:31 +0100423API struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200424ly_ctx_get_module_ns(const struct ly_ctx *ctx, const char *ns, const char *revision)
425{
426 LY_CHECK_ARG_RET(ctx, ctx, ns, NULL);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100427 return ly_ctx_get_module_by(ctx, ns, offsetof(struct lys_module, ns), revision);
Radek Krejcib7db73a2018-10-24 14:18:40 +0200428}
429
Radek Krejci0af46292019-01-11 16:02:31 +0100430API struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200431ly_ctx_get_module(const struct ly_ctx *ctx, const char *name, const char *revision)
432{
433 LY_CHECK_ARG_RET(ctx, ctx, name, NULL);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100434 return ly_ctx_get_module_by(ctx, name, offsetof(struct lys_module, name), revision);
Radek Krejcib7db73a2018-10-24 14:18:40 +0200435}
436
437/**
438 * @brief Unifying function for ly_ctx_get_module_latest() and ly_ctx_get_module_latest_ns()
439 * @param[in] ctx Context where to search.
440 * @param[in] key Name or Namespace as a search key.
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100441 * @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 +0200442 * @return Matching module if any.
443 */
Radek Krejci0af46292019-01-11 16:02:31 +0100444static struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200445ly_ctx_get_module_latest_by(const struct ly_ctx *ctx, const char *key, size_t key_offset)
446{
Radek Krejci0af46292019-01-11 16:02:31 +0100447 struct lys_module *mod;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200448 uint32_t index = 0;
Radek Krejcib7db73a2018-10-24 14:18:40 +0200449
Radek Krejci0ad51f12020-07-16 12:08:12 +0200450 while ((mod = ly_ctx_get_module_by_iter(ctx, key, 0, key_offset, &index))) {
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100451 if (mod->latest_revision) {
Radek Krejci9f5e6fb2018-10-25 09:26:12 +0200452 return mod;
Radek Krejcib7db73a2018-10-24 14:18:40 +0200453 }
454 }
455
Radek Krejci9f5e6fb2018-10-25 09:26:12 +0200456 return NULL;
Radek Krejcib7db73a2018-10-24 14:18:40 +0200457}
458
Radek Krejci0af46292019-01-11 16:02:31 +0100459API struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200460ly_ctx_get_module_latest(const struct ly_ctx *ctx, const char *name)
461{
462 LY_CHECK_ARG_RET(ctx, ctx, name, NULL);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100463 return ly_ctx_get_module_latest_by(ctx, name, offsetof(struct lys_module, name));
Radek Krejcib7db73a2018-10-24 14:18:40 +0200464}
465
Radek Krejci0af46292019-01-11 16:02:31 +0100466API struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200467ly_ctx_get_module_latest_ns(const struct ly_ctx *ctx, const char *ns)
468{
469 LY_CHECK_ARG_RET(ctx, ctx, ns, NULL);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100470 return ly_ctx_get_module_latest_by(ctx, ns, offsetof(struct lys_module, ns));
Radek Krejcib7db73a2018-10-24 14:18:40 +0200471}
472
473/**
474 * @brief Unifying function for ly_ctx_get_module_implemented() and ly_ctx_get_module_implemented_ns()
475 * @param[in] ctx Context where to search.
476 * @param[in] key Name or Namespace as a search key.
Radek Krejci0ad51f12020-07-16 12:08:12 +0200477 * @param[in] key_size Optional length of the @p key. If zero, NULL-terminated key is expected.
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100478 * @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 +0200479 * @return Matching module if any.
480 */
Radek Krejci0af46292019-01-11 16:02:31 +0100481static struct lys_module *
Radek Krejci0ad51f12020-07-16 12:08:12 +0200482ly_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 +0200483{
Radek Krejci0af46292019-01-11 16:02:31 +0100484 struct lys_module *mod;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200485 uint32_t index = 0;
Radek Krejcib7db73a2018-10-24 14:18:40 +0200486
Radek Krejci0ad51f12020-07-16 12:08:12 +0200487 while ((mod = ly_ctx_get_module_by_iter(ctx, key, key_size, key_offset, &index))) {
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100488 if (mod->implemented) {
Radek Krejcib7db73a2018-10-24 14:18:40 +0200489 return mod;
490 }
491 }
492
493 return NULL;
494}
495
Radek Krejci0af46292019-01-11 16:02:31 +0100496API struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200497ly_ctx_get_module_implemented(const struct ly_ctx *ctx, const char *name)
498{
499 LY_CHECK_ARG_RET(ctx, ctx, name, NULL);
Radek Krejci0ad51f12020-07-16 12:08:12 +0200500 return ly_ctx_get_module_implemented_by(ctx, name, 0, offsetof(struct lys_module, name));
501}
502
503struct lys_module *
504ly_ctx_get_module_implemented2(const struct ly_ctx *ctx, const char *name, size_t name_len)
505{
506 LY_CHECK_ARG_RET(ctx, ctx, name, NULL);
507 return ly_ctx_get_module_implemented_by(ctx, name, name_len, offsetof(struct lys_module, name));
Radek Krejcib7db73a2018-10-24 14:18:40 +0200508}
509
Radek Krejci0af46292019-01-11 16:02:31 +0100510API struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200511ly_ctx_get_module_implemented_ns(const struct ly_ctx *ctx, const char *ns)
512{
513 LY_CHECK_ARG_RET(ctx, ctx, ns, NULL);
Radek Krejci0ad51f12020-07-16 12:08:12 +0200514 return ly_ctx_get_module_implemented_by(ctx, ns, 0, offsetof(struct lys_module, ns));
Radek Krejcib7db73a2018-10-24 14:18:40 +0200515}
516
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100517struct lysp_submodule *
Michal Vaskoc3781c32020-10-06 14:04:08 +0200518ly_ctx_get_submodule(const struct ly_ctx *ctx, const struct lys_module *module, const char *submodule, const char *revision)
Radek Krejcid33273d2018-10-25 14:55:52 +0200519{
520 const struct lys_module *mod;
521 struct lysp_include *inc;
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200522 uint32_t v;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200523 LY_ARRAY_COUNT_TYPE u;
Radek Krejcid33273d2018-10-25 14:55:52 +0200524
Michal Vaskoc3781c32020-10-06 14:04:08 +0200525 assert((ctx || module) && submodule);
526
527 if (module) {
528 if (!module->parsed) {
529 return NULL;
530 }
531
532 /* check only this module */
533 mod = module;
534 goto check_mod;
535 }
Radek Krejcifaa1eac2018-10-30 14:34:55 +0100536
537 for (v = 0; v < ctx->list.count; ++v) {
538 mod = ctx->list.objs[v];
Radek Krejcid33273d2018-10-25 14:55:52 +0200539 if (!mod->parsed) {
540 continue;
541 }
542
Michal Vaskoc3781c32020-10-06 14:04:08 +0200543check_mod:
Radek Krejcid33273d2018-10-25 14:55:52 +0200544 LY_ARRAY_FOR(mod->parsed->includes, u) {
Radek Krejci086c7132018-10-26 15:29:04 +0200545 if (mod->parsed->includes[u].submodule && !strcmp(submodule, mod->parsed->includes[u].submodule->name)) {
Radek Krejcid33273d2018-10-25 14:55:52 +0200546 inc = &mod->parsed->includes[u];
547 if (!revision) {
548 if (inc->submodule->latest_revision) {
549 return inc->submodule;
550 }
551 } else if (inc->submodule->revs && !strcmp(revision, inc->submodule->revs[0].date)) {
552 return inc->submodule;
553 }
554 }
555 }
Michal Vaskoc3781c32020-10-06 14:04:08 +0200556
557 if (module) {
558 /* do not check other modules */
559 break;
560 }
Radek Krejcid33273d2018-10-25 14:55:52 +0200561 }
562
563 return NULL;
564}
565
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200566API void
Radek Krejcie9e987e2018-10-31 12:50:27 +0100567ly_ctx_reset_latests(struct ly_ctx *ctx)
568{
Radek Krejcie9e987e2018-10-31 12:50:27 +0100569 struct lys_module *mod;
570
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200571 for (uint32_t v = 0; v < ctx->list.count; ++v) {
572 mod = ctx->list.objs[v];
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100573 if (mod->latest_revision == 2) {
574 mod->latest_revision = 1;
Radek Krejcie9e987e2018-10-31 12:50:27 +0100575 }
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100576 if (mod->parsed && mod->parsed->includes) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200577 for (LY_ARRAY_COUNT_TYPE u = 0; u < LY_ARRAY_COUNT(mod->parsed->includes); ++u) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200578 if (mod->parsed->includes[u].submodule->latest_revision == 2) {
579 mod->parsed->includes[u].submodule->latest_revision = 1;
Radek Krejcie9e987e2018-10-31 12:50:27 +0100580 }
581 }
582 }
583 }
584}
585
Michal Vaskode79e222020-08-10 11:55:46 +0200586API uint32_t
Radek Krejci0a60f1d2020-10-26 22:24:43 +0100587ly_ctx_internal_modules_count(const struct ly_ctx *ctx)
Michal Vaskode79e222020-08-10 11:55:46 +0200588{
589 if (!ctx) {
590 return 0;
591 }
592
Michal Vasko25d6ad02020-10-22 12:20:22 +0200593 if (ctx->flags & LY_CTX_NO_YANGLIBRARY) {
Michal Vaskode79e222020-08-10 11:55:46 +0200594 return LY_INTERNAL_MODS_COUNT - 2;
595 } else {
596 return LY_INTERNAL_MODS_COUNT;
597 }
598}
599
Michal Vasko57c10cd2020-05-27 15:57:11 +0200600static LY_ERR
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100601ylib_feature(struct lyd_node *parent, const struct lysp_module *pmod)
Michal Vasko57c10cd2020-05-27 15:57:11 +0200602{
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100603 LY_ARRAY_COUNT_TYPE u;
604 struct lysp_feature *f;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200605
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100606 if (!pmod->mod->implemented) {
Michal Vasko57c10cd2020-05-27 15:57:11 +0200607 /* no features can be enabled */
608 return LY_SUCCESS;
609 }
610
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100611 LY_ARRAY_FOR(pmod->features, struct lysp_feature, f) {
612 if (!(f->flags & LYS_FENABLED)) {
Michal Vasko57c10cd2020-05-27 15:57:11 +0200613 continue;
614 }
615
Radek Krejci41ac9942020-11-02 14:47:56 +0100616 LY_CHECK_RET(lyd_new_term(parent, NULL, "feature", f->name, 0, NULL));
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100617 }
618
619 LY_ARRAY_FOR(pmod->includes, u) {
620 LY_ARRAY_FOR(pmod->includes[u].submodule->features, struct lysp_feature, f) {
621 if (!(f->flags & LYS_FENABLED)) {
622 continue;
623 }
624
Radek Krejci41ac9942020-11-02 14:47:56 +0100625 LY_CHECK_RET(lyd_new_term(parent, NULL, "feature", f->name, 0, NULL));
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100626 }
Michal Vasko57c10cd2020-05-27 15:57:11 +0200627 }
628
629 return LY_SUCCESS;
630}
631
632static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +0200633ylib_deviation(struct lyd_node *parent, const struct lys_module *cur_mod, ly_bool bis)
Michal Vasko57c10cd2020-05-27 15:57:11 +0200634{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200635 LY_ARRAY_COUNT_TYPE i;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200636 struct lys_module *mod;
637
638 if (!cur_mod->implemented) {
639 /* no deviations of the module for certain */
640 return LY_SUCCESS;
641 }
642
Michal Vasko7f45cf22020-10-01 12:49:44 +0200643 LY_ARRAY_FOR(cur_mod->deviated_by, i) {
644 mod = cur_mod->deviated_by[i];
Michal Vasko57c10cd2020-05-27 15:57:11 +0200645
646 if (bis) {
Radek Krejci41ac9942020-11-02 14:47:56 +0100647 LY_CHECK_RET(lyd_new_term(parent, NULL, "deviation", mod->name, 0, NULL));
Michal Vasko57c10cd2020-05-27 15:57:11 +0200648 } else {
Radek Krejci41ac9942020-11-02 14:47:56 +0100649 LY_CHECK_RET(lyd_new_list(parent, NULL, "deviation", 0, NULL, mod->name,
Radek Krejci0f969882020-08-21 16:56:47 +0200650 (mod->parsed->revs ? mod->parsed->revs[0].date : "")));
Michal Vasko57c10cd2020-05-27 15:57:11 +0200651 }
652 }
653
654 return LY_SUCCESS;
655}
656
657static LY_ERR
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100658ylib_submodules(struct lyd_node *parent, const struct lysp_module *pmod, ly_bool bis)
Michal Vasko57c10cd2020-05-27 15:57:11 +0200659{
Michal Vasko3a41dff2020-07-15 14:30:28 +0200660 LY_ERR ret;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200661 LY_ARRAY_COUNT_TYPE i;
Michal Vasko3a41dff2020-07-15 14:30:28 +0200662 struct lyd_node *cont;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200663 struct lysp_submodule *submod;
Michal Vasko3a41dff2020-07-15 14:30:28 +0200664 int r;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200665 char *str;
666
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100667 LY_ARRAY_FOR(pmod->includes, i) {
668 submod = pmod->includes[i].submodule;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200669
670 if (bis) {
Radek Krejci41ac9942020-11-02 14:47:56 +0100671 LY_CHECK_RET(lyd_new_list(parent, NULL, "submodule", 0, &cont, submod->name));
Michal Vasko57c10cd2020-05-27 15:57:11 +0200672
673 if (submod->revs) {
Radek Krejci41ac9942020-11-02 14:47:56 +0100674 LY_CHECK_RET(lyd_new_term(cont, NULL, "revision", submod->revs[0].date, 0, NULL));
Michal Vasko57c10cd2020-05-27 15:57:11 +0200675 }
676 } else {
Radek Krejci41ac9942020-11-02 14:47:56 +0100677 LY_CHECK_RET(lyd_new_list(parent, NULL, "submodule", 0, &cont, submod->name,
Radek Krejci0f969882020-08-21 16:56:47 +0200678 (submod->revs ? submod->revs[0].date : "")));
Michal Vasko57c10cd2020-05-27 15:57:11 +0200679 }
680
681 if (submod->filepath) {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200682 r = asprintf(&str, "file://%s", submod->filepath);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100683 LY_CHECK_ERR_RET(r == -1, LOGMEM(pmod->mod->ctx), LY_EMEM);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200684
Radek Krejci41ac9942020-11-02 14:47:56 +0100685 ret = lyd_new_term(cont, NULL, bis ? "location" : "schema", str, 0, NULL);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200686 free(str);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200687 LY_CHECK_RET(ret);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200688 }
689 }
690
691 return LY_SUCCESS;
692}
693
694API uint16_t
695ly_ctx_get_yanglib_id(const struct ly_ctx *ctx)
696{
697 return ctx->module_set_id;
698}
699
Michal Vasko3a41dff2020-07-15 14:30:28 +0200700API LY_ERR
701ly_ctx_get_yanglib_data(const struct ly_ctx *ctx, struct lyd_node **root_p)
Michal Vasko57c10cd2020-05-27 15:57:11 +0200702{
Michal Vasko3a41dff2020-07-15 14:30:28 +0200703 LY_ERR ret;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200704 uint32_t i;
Radek Krejci857189e2020-09-01 13:26:36 +0200705 ly_bool bis = 0;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200706 int r;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200707 char id[8], *str;
708 const struct lys_module *mod;
Michal Vasko3a41dff2020-07-15 14:30:28 +0200709 struct lyd_node *root = NULL, *root_bis = NULL, *cont, *set_bis = NULL;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200710
Michal Vasko3a41dff2020-07-15 14:30:28 +0200711 LY_CHECK_ARG_RET(ctx, ctx, root_p, LY_EINVAL);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200712
713 mod = ly_ctx_get_module_implemented(ctx, "ietf-yang-library");
Michal Vasko3a41dff2020-07-15 14:30:28 +0200714 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 +0200715
716 if (mod->parsed->revs && !strcmp(mod->parsed->revs[0].date, "2016-06-21")) {
717 bis = 0;
718 } else if (mod->parsed->revs && !strcmp(mod->parsed->revs[0].date, IETF_YANG_LIB_REV)) {
719 bis = 1;
720 } else {
721 LOGERR(ctx, LY_EINVAL, "Incompatible ietf-yang-library version in context.");
Michal Vasko3a41dff2020-07-15 14:30:28 +0200722 return LY_EINVAL;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200723 }
724
Radek Krejci41ac9942020-11-02 14:47:56 +0100725 LY_CHECK_GOTO(ret = lyd_new_inner(NULL, mod, "modules-state", 0, &root), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200726
727 if (bis) {
Radek Krejci41ac9942020-11-02 14:47:56 +0100728 LY_CHECK_GOTO(ret = lyd_new_inner(NULL, mod, "yang-library", 0, &root_bis), error);
729 LY_CHECK_GOTO(ret = lyd_new_list(root_bis, NULL, "module-set", 0, &set_bis, "complete"), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200730 }
731
732 for (i = 0; i < ctx->list.count; ++i) {
733 mod = ctx->list.objs[i];
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100734 if (!mod->parsed) {
735 LOGERR(ctx, LY_ENOTFOUND, "Parsed module \"%s\" missing in the context.", mod->name);
736 goto error;
737 }
Michal Vasko57c10cd2020-05-27 15:57:11 +0200738
739 /*
740 * deprecated legacy
741 */
Radek Krejci41ac9942020-11-02 14:47:56 +0100742 LY_CHECK_GOTO(ret = lyd_new_list(root, NULL, "module", 0, &cont, mod->name,
Radek Krejci0f969882020-08-21 16:56:47 +0200743 (mod->parsed->revs ? mod->parsed->revs[0].date : "")), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200744
745 /* schema */
746 if (mod->filepath) {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200747 r = asprintf(&str, "file://%s", mod->filepath);
748 LY_CHECK_ERR_GOTO(r == -1, LOGMEM(ctx); ret = LY_EMEM, error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200749
Radek Krejci41ac9942020-11-02 14:47:56 +0100750 ret = lyd_new_term(cont, NULL, "schema", str, 0, NULL);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200751 free(str);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200752 LY_CHECK_GOTO(ret, error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200753 }
754
755 /* namespace */
Radek Krejci41ac9942020-11-02 14:47:56 +0100756 LY_CHECK_GOTO(ret = lyd_new_term(cont, NULL, "namespace", mod->ns, 0, NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200757
758 /* feature leaf-list */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100759 LY_CHECK_GOTO(ret = ylib_feature(cont, mod->parsed), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200760
761 /* deviation list */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200762 LY_CHECK_GOTO(ret = ylib_deviation(cont, mod, 0), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200763
764 /* conformance-type */
Radek Krejci41ac9942020-11-02 14:47:56 +0100765 LY_CHECK_GOTO(ret = lyd_new_term(cont, NULL, "conformance-type", mod->implemented ? "implement" : "import", 0,
Michal Vasko69730152020-10-09 16:30:07 +0200766 NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200767
768 /* submodule list */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100769 LY_CHECK_GOTO(ret = ylib_submodules(cont, mod->parsed, 0), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200770
771 /*
772 * current revision
773 */
774 if (bis) {
775 /* name and revision */
776 if (mod->implemented) {
Radek Krejci41ac9942020-11-02 14:47:56 +0100777 LY_CHECK_GOTO(ret = lyd_new_list(set_bis, NULL, "module", 0, &cont, mod->name), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200778
779 if (mod->parsed->revs) {
Radek Krejci41ac9942020-11-02 14:47:56 +0100780 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 +0200781 }
782 } else {
Radek Krejci41ac9942020-11-02 14:47:56 +0100783 LY_CHECK_GOTO(ret = lyd_new_list(set_bis, NULL, "import-only-module", 0, &cont, mod->name,
Radek Krejci0f969882020-08-21 16:56:47 +0200784 (mod->parsed->revs ? mod->parsed->revs[0].date : "")), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200785 }
786
787 /* namespace */
Radek Krejci41ac9942020-11-02 14:47:56 +0100788 LY_CHECK_GOTO(ret = lyd_new_term(cont, NULL, "namespace", mod->ns, 0, NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200789
790 /* location */
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 Krejcid68ba1b2020-11-09 17:40:11 +0100795 ret = lyd_new_term(cont, NULL, "location", 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 /* submodule list */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100801 LY_CHECK_GOTO(ret = ylib_submodules(cont, mod->parsed, 1), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200802
803 /* feature 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 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200807 LY_CHECK_GOTO(ret = ylib_deviation(cont, mod, 1), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200808 }
809 }
810
811 /* IDs */
812 sprintf(id, "%u", ctx->module_set_id);
Radek Krejci41ac9942020-11-02 14:47:56 +0100813 LY_CHECK_GOTO(ret = lyd_new_term(root, NULL, "module-set-id", id, 0, NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200814
815 if (bis) {
816 /* create one complete schema */
Radek Krejci41ac9942020-11-02 14:47:56 +0100817 LY_CHECK_GOTO(ret = lyd_new_list(root_bis, NULL, "schema", 0, &cont, "complete"), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200818
Radek Krejci41ac9942020-11-02 14:47:56 +0100819 LY_CHECK_GOTO(ret = lyd_new_term(cont, NULL, "module-set", "complete", 0, NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200820
821 /* content-id */
Radek Krejci41ac9942020-11-02 14:47:56 +0100822 LY_CHECK_GOTO(ret = lyd_new_term(root_bis, NULL, "content-id", id, 0, NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200823 }
824
825 if (root_bis) {
Michal Vaskob104f112020-07-17 09:54:54 +0200826 if (lyd_insert_sibling(root, root_bis, &root)) {
Michal Vasko57c10cd2020-05-27 15:57:11 +0200827 goto error;
828 }
Michal Vaskob104f112020-07-17 09:54:54 +0200829 root_bis = NULL;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200830 }
831
Michal Vasko3a41dff2020-07-15 14:30:28 +0200832 LY_CHECK_GOTO(ret = lyd_validate_all(&root, NULL, LYD_VALIDATE_PRESENT, NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200833
Michal Vasko3a41dff2020-07-15 14:30:28 +0200834 *root_p = root;
835 return LY_SUCCESS;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200836
837error:
838 lyd_free_all(root);
839 lyd_free_all(root_bis);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200840 return ret;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200841}
842
Radek Krejcie9e987e2018-10-31 12:50:27 +0100843API void
Radek Krejciad573502018-09-07 15:26:55 +0200844ly_ctx_destroy(struct ly_ctx *ctx, void (*private_destructor)(const struct lysc_node *node, void *priv))
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200845{
Radek Krejci418823a2018-09-20 16:42:13 +0200846 if (!ctx) {
847 return;
848 }
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200849
850 /* models list */
Michal Vaskod989ba02020-08-24 10:59:24 +0200851 for ( ; ctx->list.count; ctx->list.count--) {
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200852 /* remove the module */
Radek Krejci86d106e2018-10-18 09:53:19 +0200853 lys_module_free(ctx->list.objs[ctx->list.count - 1], private_destructor);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200854 }
855 free(ctx->list.objs);
856
857 /* search paths list */
Radek Krejcia40f21b2018-09-18 10:42:08 +0200858 ly_set_erase(&ctx->search_paths, free);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200859
860 /* clean the error list */
861 ly_err_clean(ctx, 0);
862 pthread_key_delete(ctx->errlist_key);
863
864 /* dictionary */
865 lydict_clean(&ctx->dict);
866
867#if 0 /* TODO when plugins implemented */
868 /* plugins - will be removed only if this is the last context */
869 ly_clean_plugins();
870#endif
871
872 free(ctx);
873}