blob: 59c709384732b2fc3784c90f5cab07783931f378 [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"
Radek Krejcie7b95092019-05-15 11:03:07 +020036#include "set.h"
37#include "tree.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020038#include "tree_data.h"
Radek Krejcica376bd2020-06-11 16:04:06 +020039#include "tree_schema.h"
Radek Krejci86d106e2018-10-18 09:53:19 +020040#include "tree_schema_internal.h"
Michal Vasko308d0a72020-08-03 11:56:25 +020041#include "xpath.h"
Radek Krejci0af5f5d2018-09-07 15:00:30 +020042
Michal Vaskocf296c82020-05-27 11:16:45 +020043#include "../models/ietf-datastores@2018-02-14.h"
Michal Vasko69730152020-10-09 16:30:07 +020044#include "../models/ietf-inet-types@2013-07-15.h"
Michal Vaskocf296c82020-05-27 11:16:45 +020045#include "../models/ietf-yang-library@2019-01-04.h"
Michal Vasko69730152020-10-09 16:30:07 +020046#include "../models/ietf-yang-metadata@2016-08-05.h"
47#include "../models/ietf-yang-types@2013-07-15.h"
48#include "../models/yang@2020-06-17.h"
Michal Vaskocf296c82020-05-27 11:16:45 +020049#define IETF_YANG_LIB_REV "2019-01-04"
Radek Krejci0af5f5d2018-09-07 15:00:30 +020050
Radek Krejci0af5f5d2018-09-07 15:00:30 +020051static struct internal_modules_s {
52 const char *name;
53 const char *revision;
54 const char *data;
Radek Krejci857189e2020-09-01 13:26:36 +020055 ly_bool implemented;
Radek Krejci0af5f5d2018-09-07 15:00:30 +020056 LYS_INFORMAT format;
Michal Vaskode79e222020-08-10 11:55:46 +020057} internal_modules[] = {
Michal Vasko1de593f2020-11-23 16:11:41 +010058 {"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 +020059 {"yang", "2020-06-17", (const char *)yang_2020_06_17_yang, 1, LYS_IN_YANG},
60 {"ietf-inet-types", "2013-07-15", (const char *)ietf_inet_types_2013_07_15_yang, 0, LYS_IN_YANG},
61 {"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 +020062 /* ietf-datastores and ietf-yang-library must be right here at the end of the list! */
Michal Vasko22df3f02020-08-24 13:29:22 +020063 {"ietf-datastores", "2018-02-14", (const char *)ietf_datastores_2018_02_14_yang, 1, LYS_IN_YANG},
64 {"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 +020065};
66
Michal Vaskode79e222020-08-10 11:55:46 +020067#define LY_INTERNAL_MODS_COUNT sizeof(internal_modules) / sizeof(struct internal_modules_s)
68
Radek Krejci0af5f5d2018-09-07 15:00:30 +020069API LY_ERR
70ly_ctx_set_searchdir(struct ly_ctx *ctx, const char *search_dir)
71{
Radek Krejci0e212402018-09-20 11:29:38 +020072 struct stat st;
Radek Krejci0af5f5d2018-09-07 15:00:30 +020073 char *new_dir = NULL;
Radek Krejci0af5f5d2018-09-07 15:00:30 +020074
75 LY_CHECK_ARG_RET(ctx, ctx, LY_EINVAL);
76
77 if (search_dir) {
Radek Krejci0af5f5d2018-09-07 15:00:30 +020078 new_dir = realpath(search_dir, NULL);
Radek Krejcia77e0e12018-09-20 12:39:15 +020079 LY_CHECK_ERR_RET(!new_dir,
Michal Vasko69730152020-10-09 16:30:07 +020080 LOGERR(ctx, LY_ESYS, "Unable to use search directory \"%s\" (%s).", search_dir, strerror(errno)),
81 LY_EINVAL);
Radek Krejci3a077b92019-04-09 17:10:35 +020082 if (strcmp(search_dir, new_dir)) {
83 LOGVRB("Canonicalizing search directory string from \"%s\" to \"%s\".", search_dir, new_dir);
84 }
85 LY_CHECK_ERR_RET(access(new_dir, R_OK | X_OK),
Michal Vasko69730152020-10-09 16:30:07 +020086 LOGERR(ctx, LY_ESYS, "Unable to fully access search directory \"%s\" (%s).", new_dir, strerror(errno)); free(new_dir),
87 LY_EINVAL);
Radek Krejci3a077b92019-04-09 17:10:35 +020088 LY_CHECK_ERR_RET(stat(new_dir, &st),
Michal Vasko69730152020-10-09 16:30:07 +020089 LOGERR(ctx, LY_ESYS, "stat() failed for \"%s\" (%s).", new_dir, strerror(errno)); free(new_dir),
90 LY_ESYS);
Radek Krejci3a077b92019-04-09 17:10:35 +020091 LY_CHECK_ERR_RET(!S_ISDIR(st.st_mode),
Michal Vasko69730152020-10-09 16:30:07 +020092 LOGERR(ctx, LY_ESYS, "Given search directory \"%s\" is not a directory.", new_dir); free(new_dir),
93 LY_EINVAL);
Radek Krejci0e212402018-09-20 11:29:38 +020094 /* avoid path duplication */
Radek Krejci1deb5be2020-08-26 16:43:36 +020095 for (uint32_t u = 0; u < ctx->search_paths.count; ++u) {
Radek Krejci14946ab2018-09-20 13:42:06 +020096 if (!strcmp(new_dir, ctx->search_paths.objs[u])) {
Radek Krejci0e212402018-09-20 11:29:38 +020097 free(new_dir);
Radek Krejci14946ab2018-09-20 13:42:06 +020098 return LY_EEXIST;
Radek Krejci0e212402018-09-20 11:29:38 +020099 }
100 }
Radek Krejci3d92e442020-10-12 12:48:13 +0200101 if (ly_set_add(&ctx->search_paths, new_dir, 1, NULL)) {
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200102 free(new_dir);
103 return LY_EMEM;
104 }
105
Radek Krejcie9e987e2018-10-31 12:50:27 +0100106 /* new searchdir - possibly more latest revision available */
107 ly_ctx_reset_latests(ctx);
108
Radek Krejci0e212402018-09-20 11:29:38 +0200109 return LY_SUCCESS;
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200110 } else {
111 /* consider that no change is not actually an error */
112 return LY_SUCCESS;
113 }
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200114}
115
116API const char * const *
117ly_ctx_get_searchdirs(const struct ly_ctx *ctx)
118{
Radek Krejci05026432018-09-20 12:13:43 +0200119 void **new;
120
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200121 LY_CHECK_ARG_RET(ctx, ctx, NULL);
Radek Krejci05026432018-09-20 12:13:43 +0200122
123 if (ctx->search_paths.count == ctx->search_paths.size) {
124 /* not enough space for terminating NULL byte */
125 new = realloc(((struct ly_ctx *)ctx)->search_paths.objs, (ctx->search_paths.size + 8) * sizeof *ctx->search_paths.objs);
126 LY_CHECK_ERR_RET(!new, LOGMEM(NULL), NULL);
127 ((struct ly_ctx *)ctx)->search_paths.size += 8;
128 ((struct ly_ctx *)ctx)->search_paths.objs = new;
129 }
130 /* set terminating NULL byte to the strings list */
131 ctx->search_paths.objs[ctx->search_paths.count] = NULL;
132
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200133 return (const char * const *)ctx->search_paths.objs;
134}
135
136API LY_ERR
Radek Krejcie58f97f2020-08-18 11:45:08 +0200137ly_ctx_unset_searchdir(struct ly_ctx *ctx, const char *value)
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200138{
Radek Krejcicd649072018-09-20 12:14:45 +0200139 LY_CHECK_ARG_RET(ctx, ctx, LY_EINVAL);
Radek Krejcicd649072018-09-20 12:14:45 +0200140
Michal Vaskob34480a2018-09-17 10:34:45 +0200141 if (!ctx->search_paths.count) {
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200142 return LY_SUCCESS;
143 }
144
Radek Krejci0759b792018-09-20 13:53:15 +0200145 if (value) {
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200146 /* remove specific search directory */
Radek Krejci1deb5be2020-08-26 16:43:36 +0200147 uint32_t index;
148
Radek Krejci0759b792018-09-20 13:53:15 +0200149 for (index = 0; index < ctx->search_paths.count; ++index) {
150 if (!strcmp(value, ctx->search_paths.objs[index])) {
151 break;
152 }
153 }
154 if (index == ctx->search_paths.count) {
155 LOGARG(ctx, value);
156 return LY_EINVAL;
157 } else {
158 return ly_set_rm_index(&ctx->search_paths, index, free);
159 }
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200160 } else {
161 /* remove them all */
Radek Krejcia40f21b2018-09-18 10:42:08 +0200162 ly_set_erase(&ctx->search_paths, free);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200163 memset(&ctx->search_paths, 0, sizeof ctx->search_paths);
164 }
165
166 return LY_SUCCESS;
167}
168
169API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200170ly_ctx_unset_searchdir_last(struct ly_ctx *ctx, uint32_t count)
Radek Krejcied5acc52019-04-25 15:57:04 +0200171{
172 LY_CHECK_ARG_RET(ctx, ctx, LY_EINVAL);
173
Radek Krejcie58f97f2020-08-18 11:45:08 +0200174 for ( ; count > 0 && ctx->search_paths.count; --count) {
175 LY_CHECK_RET(ly_set_rm_index(&ctx->search_paths, ctx->search_paths.count - 1, free))
Radek Krejcied5acc52019-04-25 15:57:04 +0200176 }
177
178 return LY_SUCCESS;
179}
180
181API const struct lys_module *
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100182ly_ctx_load_module(struct ly_ctx *ctx, const char *name, const char *revision, const char **features)
Radek Krejcied5acc52019-04-25 15:57:04 +0200183{
184 struct lys_module *result = NULL;
185
186 LY_CHECK_ARG_RET(ctx, ctx, name, NULL);
187
Michal Vasko0550b762020-11-24 18:04:08 +0100188 LY_CHECK_RET(lysp_load_module(ctx, name, revision, 1, features, &result), NULL);
Radek Krejcied5acc52019-04-25 15:57:04 +0200189 return result;
190}
191
192API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200193ly_ctx_new(const char *search_dir, uint16_t options, struct ly_ctx **new_ctx)
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200194{
195 struct ly_ctx *ctx = NULL;
196 struct lys_module *module;
197 char *search_dir_list;
198 char *sep, *dir;
Michal Vaskode79e222020-08-10 11:55:46 +0200199 uint32_t i;
Michal Vasko63f3d842020-07-08 10:10:14 +0200200 struct ly_in *in = NULL;
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200201 LY_ERR rc = LY_SUCCESS;
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200202
Radek Krejcied5acc52019-04-25 15:57:04 +0200203 LY_CHECK_ARG_RET(NULL, new_ctx, LY_EINVAL);
204
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200205 ctx = calloc(1, sizeof *ctx);
Radek Krejciad573502018-09-07 15:26:55 +0200206 LY_CHECK_ERR_RET(!ctx, LOGMEM(NULL), LY_EMEM);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200207
208 /* dictionary */
209 lydict_init(&ctx->dict);
210
Radek Krejciad573502018-09-07 15:26:55 +0200211#if 0 /* TODO when plugins implemented */
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200212 /* plugins */
213 ly_load_plugins();
Radek Krejciad573502018-09-07 15:26:55 +0200214#endif
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200215
216 /* initialize thread-specific key */
Radek Krejci1e008d22020-08-17 11:37:37 +0200217 while ((pthread_key_create(&ctx->errlist_key, ly_err_free)) == EAGAIN) {}
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200218
219 /* models list */
220 ctx->flags = options;
221 if (search_dir) {
222 search_dir_list = strdup(search_dir);
223 LY_CHECK_ERR_GOTO(!search_dir_list, LOGMEM(NULL); rc = LY_EMEM, error);
224
225 for (dir = search_dir_list; (sep = strchr(dir, ':')) != NULL && rc == LY_SUCCESS; dir = sep + 1) {
226 *sep = 0;
227 rc = ly_ctx_set_searchdir(ctx, dir);
Radek Krejci14946ab2018-09-20 13:42:06 +0200228 if (rc == LY_EEXIST) {
229 /* ignore duplication */
230 rc = LY_SUCCESS;
231 }
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200232 }
Michal Vasko69730152020-10-09 16:30:07 +0200233 if (*dir && (rc == LY_SUCCESS)) {
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200234 rc = ly_ctx_set_searchdir(ctx, dir);
Radek Krejci14946ab2018-09-20 13:42:06 +0200235 if (rc == LY_EEXIST) {
236 /* ignore duplication */
237 rc = LY_SUCCESS;
238 }
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200239 }
240 free(search_dir_list);
241
242 /* If ly_ctx_set_searchdir() failed, the error is already logged. Just exit */
243 if (rc != LY_SUCCESS) {
244 goto error;
245 }
246 }
247 ctx->module_set_id = 1;
248
Michal Vasko63f3d842020-07-08 10:10:14 +0200249 /* create dummy in */
250 rc = ly_in_new_memory(internal_modules[0].data, &in);
251 LY_CHECK_GOTO(rc, error);
252
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200253 /* load internal modules */
Michal Vasko25d6ad02020-10-22 12:20:22 +0200254 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 +0200255 ly_in_memory(in, internal_modules[i].data);
Michal Vasko7a0b0762020-09-02 16:37:01 +0200256 LY_CHECK_GOTO(rc = lys_create_module(ctx, in, internal_modules[i].format, internal_modules[i].implemented,
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100257 NULL, NULL, NULL, &module), error);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200258 }
259
Michal Vasko63f3d842020-07-08 10:10:14 +0200260 ly_in_free(in, 0);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200261 *new_ctx = ctx;
262 return rc;
263
264error:
Michal Vasko63f3d842020-07-08 10:10:14 +0200265 ly_in_free(in, 0);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200266 ly_ctx_destroy(ctx, NULL);
267 return rc;
268}
Radek Krejci0f969882020-08-21 16:56:47 +0200269
Radek Krejci1deb5be2020-08-26 16:43:36 +0200270API uint16_t
Radek Krejci3fbe89a2018-09-20 13:54:46 +0200271ly_ctx_get_options(const struct ly_ctx *ctx)
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200272{
Radek Krejci3fbe89a2018-09-20 13:54:46 +0200273 LY_CHECK_ARG_RET(ctx, ctx, 0);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200274 return ctx->flags;
275}
276
Radek Krejcica828d92018-09-20 14:19:43 +0200277API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200278ly_ctx_set_options(struct ly_ctx *ctx, uint16_t option)
Radek Krejcica828d92018-09-20 14:19:43 +0200279{
280 LY_CHECK_ARG_RET(ctx, ctx, LY_EINVAL);
Michal Vasko25d6ad02020-10-22 12:20:22 +0200281 LY_CHECK_ERR_RET(option & LY_CTX_NO_YANGLIBRARY, LOGARG(ctx, option), LY_EINVAL);
Radek Krejcica828d92018-09-20 14:19:43 +0200282
283 /* set the option(s) */
284 ctx->flags |= option;
285
286 return LY_SUCCESS;
287}
288
289API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200290ly_ctx_unset_options(struct ly_ctx *ctx, uint16_t option)
Radek Krejcica828d92018-09-20 14:19:43 +0200291{
292 LY_CHECK_ARG_RET(ctx, ctx, LY_EINVAL);
Michal Vasko25d6ad02020-10-22 12:20:22 +0200293 LY_CHECK_ERR_RET(option & LY_CTX_NO_YANGLIBRARY, LOGARG(ctx, option), LY_EINVAL);
Radek Krejcica828d92018-09-20 14:19:43 +0200294
295 /* unset the option(s) */
296 ctx->flags &= ~option;
297
298 return LY_SUCCESS;
299}
300
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200301API uint16_t
302ly_ctx_get_module_set_id(const struct ly_ctx *ctx)
303{
Radek Krejci3fbe89a2018-09-20 13:54:46 +0200304 LY_CHECK_ARG_RET(ctx, ctx, 0);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200305 return ctx->module_set_id;
306}
307
Radek Krejcid33273d2018-10-25 14:55:52 +0200308API void
309ly_ctx_set_module_imp_clb(struct ly_ctx *ctx, ly_module_imp_clb clb, void *user_data)
310{
Michal Vaskod989ba02020-08-24 10:59:24 +0200311 LY_CHECK_ARG_RET(ctx, ctx, );
Radek Krejcid33273d2018-10-25 14:55:52 +0200312
313 ctx->imp_clb = clb;
314 ctx->imp_clb_data = user_data;
315}
316
317API ly_module_imp_clb
318ly_ctx_get_module_imp_clb(const struct ly_ctx *ctx, void **user_data)
319{
320 LY_CHECK_ARG_RET(ctx, ctx, NULL);
321
322 if (user_data) {
323 *user_data = ctx->imp_clb_data;
324 }
325 return ctx->imp_clb;
326}
327
Radek Krejcied5acc52019-04-25 15:57:04 +0200328API const struct lys_module *
Radek Krejci1deb5be2020-08-26 16:43:36 +0200329ly_ctx_get_module_iter(const struct ly_ctx *ctx, uint32_t *index)
Radek Krejcied5acc52019-04-25 15:57:04 +0200330{
331 LY_CHECK_ARG_RET(ctx, ctx, index, NULL);
332
Radek Krejci2390fb52019-04-30 13:27:43 +0200333 if (*index < (unsigned)ctx->list.count) {
Radek Krejcied5acc52019-04-25 15:57:04 +0200334 return ctx->list.objs[(*index)++];
Radek Krejci2390fb52019-04-30 13:27:43 +0200335 } else {
336 return NULL;
Radek Krejcied5acc52019-04-25 15:57:04 +0200337 }
Radek Krejcied5acc52019-04-25 15:57:04 +0200338}
339
Radek Krejcib7db73a2018-10-24 14:18:40 +0200340/**
341 * @brief Iterate over the modules in the given context. Returned modules must match the given key at the offset of
342 * lysp_module and lysc_module structures (they are supposed to be placed at the same offset in both structures).
343 *
344 * @param[in] ctx Context where to iterate.
345 * @param[in] key Key value to search for.
Radek Krejci0ad51f12020-07-16 12:08:12 +0200346 * @param[in] key_size Optional length of the @p key. If zero, NULL-terminated key is expected.
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100347 * @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 +0200348 * @param[in,out] Iterator to pass between the function calls. On the first call, the variable is supposed to be
349 * initiated to 0. After each call returning a module, the value is greater by 1 than the index of the returned
350 * module in the context.
351 * @return Module matching the given key, NULL if no such module found.
352 */
Radek Krejci0af46292019-01-11 16:02:31 +0100353static struct lys_module *
Radek Krejci1deb5be2020-08-26 16:43:36 +0200354ly_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 +0200355{
Radek Krejci0af46292019-01-11 16:02:31 +0100356 struct lys_module *mod;
Radek Krejcib7db73a2018-10-24 14:18:40 +0200357 const char *value;
358
Michal Vaskod989ba02020-08-24 10:59:24 +0200359 for ( ; *index < ctx->list.count; ++(*index)) {
Radek Krejcib7db73a2018-10-24 14:18:40 +0200360 mod = ctx->list.objs[*index];
Michal Vasko22df3f02020-08-24 13:29:22 +0200361 value = *(const char **)(((int8_t *)(mod)) + key_offset);
Michal Vasko69730152020-10-09 16:30:07 +0200362 if ((!key_size && !strcmp(key, value)) || (key_size && !strncmp(key, value, key_size) && (value[key_size] == '\0'))) {
Radek Krejcib7db73a2018-10-24 14:18:40 +0200363 /* increment index for the next run */
364 ++(*index);
365 return mod;
366 }
367 }
368 /* done */
369 return NULL;
370}
371
372/**
373 * @brief Unifying function for ly_ctx_get_module() and ly_ctx_get_module_ns()
374 * @param[in] ctx Context where to search.
375 * @param[in] key Name or Namespace as a search key.
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100376 * @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 +0200377 * @param[in] revision Revision date to match. If NULL, the matching module must have no revision. To search for the latest
378 * revision module, use ly_ctx_get_module_latest_by().
379 * @return Matching module if any.
380 */
Radek Krejci0af46292019-01-11 16:02:31 +0100381static struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200382ly_ctx_get_module_by(const struct ly_ctx *ctx, const char *key, size_t key_offset, const char *revision)
383{
Radek Krejci0af46292019-01-11 16:02:31 +0100384 struct lys_module *mod;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200385 uint32_t index = 0;
Radek Krejcib7db73a2018-10-24 14:18:40 +0200386
Radek Krejci0ad51f12020-07-16 12:08:12 +0200387 while ((mod = ly_ctx_get_module_by_iter(ctx, key, 0, key_offset, &index))) {
Radek Krejcib7db73a2018-10-24 14:18:40 +0200388 if (!revision) {
Radek Krejci0af46292019-01-11 16:02:31 +0100389 if (!mod->revision) {
Radek Krejcib7db73a2018-10-24 14:18:40 +0200390 /* found requested module without revision */
391 return mod;
392 }
393 } else {
Radek Krejci0af46292019-01-11 16:02:31 +0100394 if (mod->revision && !strcmp(mod->revision, revision)) {
Radek Krejcib7db73a2018-10-24 14:18:40 +0200395 /* found requested module of the specific revision */
396 return mod;
397 }
398 }
399 }
400
401 return NULL;
402}
403
Radek Krejci0af46292019-01-11 16:02:31 +0100404API struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200405ly_ctx_get_module_ns(const struct ly_ctx *ctx, const char *ns, const char *revision)
406{
407 LY_CHECK_ARG_RET(ctx, ctx, ns, NULL);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100408 return ly_ctx_get_module_by(ctx, ns, offsetof(struct lys_module, ns), revision);
Radek Krejcib7db73a2018-10-24 14:18:40 +0200409}
410
Radek Krejci0af46292019-01-11 16:02:31 +0100411API struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200412ly_ctx_get_module(const struct ly_ctx *ctx, const char *name, const char *revision)
413{
414 LY_CHECK_ARG_RET(ctx, ctx, name, NULL);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100415 return ly_ctx_get_module_by(ctx, name, offsetof(struct lys_module, name), revision);
Radek Krejcib7db73a2018-10-24 14:18:40 +0200416}
417
418/**
419 * @brief Unifying function for ly_ctx_get_module_latest() and ly_ctx_get_module_latest_ns()
420 * @param[in] ctx Context where to search.
421 * @param[in] key Name or Namespace as a search key.
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100422 * @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 +0200423 * @return Matching module if any.
424 */
Radek Krejci0af46292019-01-11 16:02:31 +0100425static struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200426ly_ctx_get_module_latest_by(const struct ly_ctx *ctx, const char *key, size_t key_offset)
427{
Radek Krejci0af46292019-01-11 16:02:31 +0100428 struct lys_module *mod;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200429 uint32_t index = 0;
Radek Krejcib7db73a2018-10-24 14:18:40 +0200430
Radek Krejci0ad51f12020-07-16 12:08:12 +0200431 while ((mod = ly_ctx_get_module_by_iter(ctx, key, 0, key_offset, &index))) {
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100432 if (mod->latest_revision) {
Radek Krejci9f5e6fb2018-10-25 09:26:12 +0200433 return mod;
Radek Krejcib7db73a2018-10-24 14:18:40 +0200434 }
435 }
436
Radek Krejci9f5e6fb2018-10-25 09:26:12 +0200437 return NULL;
Radek Krejcib7db73a2018-10-24 14:18:40 +0200438}
439
Radek Krejci0af46292019-01-11 16:02:31 +0100440API struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200441ly_ctx_get_module_latest(const struct ly_ctx *ctx, const char *name)
442{
443 LY_CHECK_ARG_RET(ctx, ctx, name, NULL);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100444 return ly_ctx_get_module_latest_by(ctx, name, offsetof(struct lys_module, name));
Radek Krejcib7db73a2018-10-24 14:18:40 +0200445}
446
Radek Krejci0af46292019-01-11 16:02:31 +0100447API struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200448ly_ctx_get_module_latest_ns(const struct ly_ctx *ctx, const char *ns)
449{
450 LY_CHECK_ARG_RET(ctx, ctx, ns, NULL);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100451 return ly_ctx_get_module_latest_by(ctx, ns, offsetof(struct lys_module, ns));
Radek Krejcib7db73a2018-10-24 14:18:40 +0200452}
453
454/**
455 * @brief Unifying function for ly_ctx_get_module_implemented() and ly_ctx_get_module_implemented_ns()
456 * @param[in] ctx Context where to search.
457 * @param[in] key Name or Namespace as a search key.
Radek Krejci0ad51f12020-07-16 12:08:12 +0200458 * @param[in] key_size Optional length of the @p key. If zero, NULL-terminated key is expected.
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100459 * @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 +0200460 * @return Matching module if any.
461 */
Radek Krejci0af46292019-01-11 16:02:31 +0100462static struct lys_module *
Radek Krejci0ad51f12020-07-16 12:08:12 +0200463ly_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 +0200464{
Radek Krejci0af46292019-01-11 16:02:31 +0100465 struct lys_module *mod;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200466 uint32_t index = 0;
Radek Krejcib7db73a2018-10-24 14:18:40 +0200467
Radek Krejci0ad51f12020-07-16 12:08:12 +0200468 while ((mod = ly_ctx_get_module_by_iter(ctx, key, key_size, key_offset, &index))) {
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100469 if (mod->implemented) {
Radek Krejcib7db73a2018-10-24 14:18:40 +0200470 return mod;
471 }
472 }
473
474 return NULL;
475}
476
Radek Krejci0af46292019-01-11 16:02:31 +0100477API struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200478ly_ctx_get_module_implemented(const struct ly_ctx *ctx, const char *name)
479{
480 LY_CHECK_ARG_RET(ctx, ctx, name, NULL);
Radek Krejci0ad51f12020-07-16 12:08:12 +0200481 return ly_ctx_get_module_implemented_by(ctx, name, 0, offsetof(struct lys_module, name));
482}
483
484struct lys_module *
485ly_ctx_get_module_implemented2(const struct ly_ctx *ctx, const char *name, size_t name_len)
486{
487 LY_CHECK_ARG_RET(ctx, ctx, name, NULL);
488 return ly_ctx_get_module_implemented_by(ctx, name, name_len, offsetof(struct lys_module, name));
Radek Krejcib7db73a2018-10-24 14:18:40 +0200489}
490
Radek Krejci0af46292019-01-11 16:02:31 +0100491API struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200492ly_ctx_get_module_implemented_ns(const struct ly_ctx *ctx, const char *ns)
493{
494 LY_CHECK_ARG_RET(ctx, ctx, ns, NULL);
Radek Krejci0ad51f12020-07-16 12:08:12 +0200495 return ly_ctx_get_module_implemented_by(ctx, ns, 0, offsetof(struct lys_module, ns));
Radek Krejcib7db73a2018-10-24 14:18:40 +0200496}
497
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100498struct lysp_submodule *
Michal Vaskoc3781c32020-10-06 14:04:08 +0200499ly_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 +0200500{
501 const struct lys_module *mod;
502 struct lysp_include *inc;
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200503 uint32_t v;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200504 LY_ARRAY_COUNT_TYPE u;
Radek Krejcid33273d2018-10-25 14:55:52 +0200505
Michal Vaskoc3781c32020-10-06 14:04:08 +0200506 assert((ctx || module) && submodule);
507
508 if (module) {
509 if (!module->parsed) {
510 return NULL;
511 }
512
513 /* check only this module */
514 mod = module;
515 goto check_mod;
516 }
Radek Krejcifaa1eac2018-10-30 14:34:55 +0100517
518 for (v = 0; v < ctx->list.count; ++v) {
519 mod = ctx->list.objs[v];
Radek Krejcid33273d2018-10-25 14:55:52 +0200520 if (!mod->parsed) {
521 continue;
522 }
523
Michal Vaskoc3781c32020-10-06 14:04:08 +0200524check_mod:
Radek Krejcid33273d2018-10-25 14:55:52 +0200525 LY_ARRAY_FOR(mod->parsed->includes, u) {
Radek Krejci086c7132018-10-26 15:29:04 +0200526 if (mod->parsed->includes[u].submodule && !strcmp(submodule, mod->parsed->includes[u].submodule->name)) {
Radek Krejcid33273d2018-10-25 14:55:52 +0200527 inc = &mod->parsed->includes[u];
528 if (!revision) {
529 if (inc->submodule->latest_revision) {
530 return inc->submodule;
531 }
532 } else if (inc->submodule->revs && !strcmp(revision, inc->submodule->revs[0].date)) {
533 return inc->submodule;
534 }
535 }
536 }
Michal Vaskoc3781c32020-10-06 14:04:08 +0200537
538 if (module) {
539 /* do not check other modules */
540 break;
541 }
Radek Krejcid33273d2018-10-25 14:55:52 +0200542 }
543
544 return NULL;
545}
546
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200547API void
Radek Krejcie9e987e2018-10-31 12:50:27 +0100548ly_ctx_reset_latests(struct ly_ctx *ctx)
549{
Radek Krejcie9e987e2018-10-31 12:50:27 +0100550 struct lys_module *mod;
551
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200552 for (uint32_t v = 0; v < ctx->list.count; ++v) {
553 mod = ctx->list.objs[v];
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100554 if (mod->latest_revision == 2) {
555 mod->latest_revision = 1;
Radek Krejcie9e987e2018-10-31 12:50:27 +0100556 }
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100557 if (mod->parsed && mod->parsed->includes) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200558 for (LY_ARRAY_COUNT_TYPE u = 0; u < LY_ARRAY_COUNT(mod->parsed->includes); ++u) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200559 if (mod->parsed->includes[u].submodule->latest_revision == 2) {
560 mod->parsed->includes[u].submodule->latest_revision = 1;
Radek Krejcie9e987e2018-10-31 12:50:27 +0100561 }
562 }
563 }
564 }
565}
566
Michal Vaskode79e222020-08-10 11:55:46 +0200567API uint32_t
Radek Krejci0a60f1d2020-10-26 22:24:43 +0100568ly_ctx_internal_modules_count(const struct ly_ctx *ctx)
Michal Vaskode79e222020-08-10 11:55:46 +0200569{
570 if (!ctx) {
571 return 0;
572 }
573
Michal Vasko25d6ad02020-10-22 12:20:22 +0200574 if (ctx->flags & LY_CTX_NO_YANGLIBRARY) {
Michal Vaskode79e222020-08-10 11:55:46 +0200575 return LY_INTERNAL_MODS_COUNT - 2;
576 } else {
577 return LY_INTERNAL_MODS_COUNT;
578 }
579}
580
Michal Vasko57c10cd2020-05-27 15:57:11 +0200581static LY_ERR
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100582ylib_feature(struct lyd_node *parent, const struct lysp_module *pmod)
Michal Vasko57c10cd2020-05-27 15:57:11 +0200583{
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100584 LY_ARRAY_COUNT_TYPE u;
585 struct lysp_feature *f;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200586
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100587 if (!pmod->mod->implemented) {
Michal Vasko57c10cd2020-05-27 15:57:11 +0200588 /* no features can be enabled */
589 return LY_SUCCESS;
590 }
591
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100592 LY_ARRAY_FOR(pmod->features, struct lysp_feature, f) {
593 if (!(f->flags & LYS_FENABLED)) {
Michal Vasko57c10cd2020-05-27 15:57:11 +0200594 continue;
595 }
596
Radek Krejci41ac9942020-11-02 14:47:56 +0100597 LY_CHECK_RET(lyd_new_term(parent, NULL, "feature", f->name, 0, NULL));
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100598 }
599
600 LY_ARRAY_FOR(pmod->includes, u) {
601 LY_ARRAY_FOR(pmod->includes[u].submodule->features, struct lysp_feature, f) {
602 if (!(f->flags & LYS_FENABLED)) {
603 continue;
604 }
605
Radek Krejci41ac9942020-11-02 14:47:56 +0100606 LY_CHECK_RET(lyd_new_term(parent, NULL, "feature", f->name, 0, NULL));
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100607 }
Michal Vasko57c10cd2020-05-27 15:57:11 +0200608 }
609
610 return LY_SUCCESS;
611}
612
613static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +0200614ylib_deviation(struct lyd_node *parent, const struct lys_module *cur_mod, ly_bool bis)
Michal Vasko57c10cd2020-05-27 15:57:11 +0200615{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200616 LY_ARRAY_COUNT_TYPE i;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200617 struct lys_module *mod;
618
619 if (!cur_mod->implemented) {
620 /* no deviations of the module for certain */
621 return LY_SUCCESS;
622 }
623
Michal Vasko7f45cf22020-10-01 12:49:44 +0200624 LY_ARRAY_FOR(cur_mod->deviated_by, i) {
625 mod = cur_mod->deviated_by[i];
Michal Vasko57c10cd2020-05-27 15:57:11 +0200626
627 if (bis) {
Radek Krejci41ac9942020-11-02 14:47:56 +0100628 LY_CHECK_RET(lyd_new_term(parent, NULL, "deviation", mod->name, 0, NULL));
Michal Vasko57c10cd2020-05-27 15:57:11 +0200629 } else {
Radek Krejci41ac9942020-11-02 14:47:56 +0100630 LY_CHECK_RET(lyd_new_list(parent, NULL, "deviation", 0, NULL, mod->name,
Radek Krejci0f969882020-08-21 16:56:47 +0200631 (mod->parsed->revs ? mod->parsed->revs[0].date : "")));
Michal Vasko57c10cd2020-05-27 15:57:11 +0200632 }
633 }
634
635 return LY_SUCCESS;
636}
637
638static LY_ERR
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100639ylib_submodules(struct lyd_node *parent, const struct lysp_module *pmod, ly_bool bis)
Michal Vasko57c10cd2020-05-27 15:57:11 +0200640{
Michal Vasko3a41dff2020-07-15 14:30:28 +0200641 LY_ERR ret;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200642 LY_ARRAY_COUNT_TYPE i;
Michal Vasko3a41dff2020-07-15 14:30:28 +0200643 struct lyd_node *cont;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200644 struct lysp_submodule *submod;
Michal Vasko3a41dff2020-07-15 14:30:28 +0200645 int r;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200646 char *str;
647
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100648 LY_ARRAY_FOR(pmod->includes, i) {
649 submod = pmod->includes[i].submodule;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200650
651 if (bis) {
Radek Krejci41ac9942020-11-02 14:47:56 +0100652 LY_CHECK_RET(lyd_new_list(parent, NULL, "submodule", 0, &cont, submod->name));
Michal Vasko57c10cd2020-05-27 15:57:11 +0200653
654 if (submod->revs) {
Radek Krejci41ac9942020-11-02 14:47:56 +0100655 LY_CHECK_RET(lyd_new_term(cont, NULL, "revision", submod->revs[0].date, 0, NULL));
Michal Vasko57c10cd2020-05-27 15:57:11 +0200656 }
657 } else {
Radek Krejci41ac9942020-11-02 14:47:56 +0100658 LY_CHECK_RET(lyd_new_list(parent, NULL, "submodule", 0, &cont, submod->name,
Radek Krejci0f969882020-08-21 16:56:47 +0200659 (submod->revs ? submod->revs[0].date : "")));
Michal Vasko57c10cd2020-05-27 15:57:11 +0200660 }
661
662 if (submod->filepath) {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200663 r = asprintf(&str, "file://%s", submod->filepath);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100664 LY_CHECK_ERR_RET(r == -1, LOGMEM(pmod->mod->ctx), LY_EMEM);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200665
Radek Krejci41ac9942020-11-02 14:47:56 +0100666 ret = lyd_new_term(cont, NULL, bis ? "location" : "schema", str, 0, NULL);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200667 free(str);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200668 LY_CHECK_RET(ret);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200669 }
670 }
671
672 return LY_SUCCESS;
673}
674
675API uint16_t
676ly_ctx_get_yanglib_id(const struct ly_ctx *ctx)
677{
678 return ctx->module_set_id;
679}
680
Michal Vasko3a41dff2020-07-15 14:30:28 +0200681API LY_ERR
682ly_ctx_get_yanglib_data(const struct ly_ctx *ctx, struct lyd_node **root_p)
Michal Vasko57c10cd2020-05-27 15:57:11 +0200683{
Michal Vasko3a41dff2020-07-15 14:30:28 +0200684 LY_ERR ret;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200685 uint32_t i;
Radek Krejci857189e2020-09-01 13:26:36 +0200686 ly_bool bis = 0;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200687 int r;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200688 char id[8], *str;
689 const struct lys_module *mod;
Michal Vasko3a41dff2020-07-15 14:30:28 +0200690 struct lyd_node *root = NULL, *root_bis = NULL, *cont, *set_bis = NULL;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200691
Michal Vasko3a41dff2020-07-15 14:30:28 +0200692 LY_CHECK_ARG_RET(ctx, ctx, root_p, LY_EINVAL);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200693
694 mod = ly_ctx_get_module_implemented(ctx, "ietf-yang-library");
Michal Vasko3a41dff2020-07-15 14:30:28 +0200695 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 +0200696
697 if (mod->parsed->revs && !strcmp(mod->parsed->revs[0].date, "2016-06-21")) {
698 bis = 0;
699 } else if (mod->parsed->revs && !strcmp(mod->parsed->revs[0].date, IETF_YANG_LIB_REV)) {
700 bis = 1;
701 } else {
702 LOGERR(ctx, LY_EINVAL, "Incompatible ietf-yang-library version in context.");
Michal Vasko3a41dff2020-07-15 14:30:28 +0200703 return LY_EINVAL;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200704 }
705
Radek Krejci41ac9942020-11-02 14:47:56 +0100706 LY_CHECK_GOTO(ret = lyd_new_inner(NULL, mod, "modules-state", 0, &root), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200707
708 if (bis) {
Radek Krejci41ac9942020-11-02 14:47:56 +0100709 LY_CHECK_GOTO(ret = lyd_new_inner(NULL, mod, "yang-library", 0, &root_bis), error);
710 LY_CHECK_GOTO(ret = lyd_new_list(root_bis, NULL, "module-set", 0, &set_bis, "complete"), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200711 }
712
713 for (i = 0; i < ctx->list.count; ++i) {
714 mod = ctx->list.objs[i];
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100715 if (!mod->parsed) {
716 LOGERR(ctx, LY_ENOTFOUND, "Parsed module \"%s\" missing in the context.", mod->name);
717 goto error;
718 }
Michal Vasko57c10cd2020-05-27 15:57:11 +0200719
720 /*
721 * deprecated legacy
722 */
Radek Krejci41ac9942020-11-02 14:47:56 +0100723 LY_CHECK_GOTO(ret = lyd_new_list(root, NULL, "module", 0, &cont, mod->name,
Radek Krejci0f969882020-08-21 16:56:47 +0200724 (mod->parsed->revs ? mod->parsed->revs[0].date : "")), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200725
726 /* schema */
727 if (mod->filepath) {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200728 r = asprintf(&str, "file://%s", mod->filepath);
729 LY_CHECK_ERR_GOTO(r == -1, LOGMEM(ctx); ret = LY_EMEM, error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200730
Radek Krejci41ac9942020-11-02 14:47:56 +0100731 ret = lyd_new_term(cont, NULL, "schema", str, 0, NULL);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200732 free(str);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200733 LY_CHECK_GOTO(ret, error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200734 }
735
736 /* namespace */
Radek Krejci41ac9942020-11-02 14:47:56 +0100737 LY_CHECK_GOTO(ret = lyd_new_term(cont, NULL, "namespace", mod->ns, 0, NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200738
739 /* feature leaf-list */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100740 LY_CHECK_GOTO(ret = ylib_feature(cont, mod->parsed), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200741
742 /* deviation list */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200743 LY_CHECK_GOTO(ret = ylib_deviation(cont, mod, 0), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200744
745 /* conformance-type */
Radek Krejci41ac9942020-11-02 14:47:56 +0100746 LY_CHECK_GOTO(ret = lyd_new_term(cont, NULL, "conformance-type", mod->implemented ? "implement" : "import", 0,
Michal Vasko69730152020-10-09 16:30:07 +0200747 NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200748
749 /* submodule list */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100750 LY_CHECK_GOTO(ret = ylib_submodules(cont, mod->parsed, 0), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200751
752 /*
753 * current revision
754 */
755 if (bis) {
756 /* name and revision */
757 if (mod->implemented) {
Radek Krejci41ac9942020-11-02 14:47:56 +0100758 LY_CHECK_GOTO(ret = lyd_new_list(set_bis, NULL, "module", 0, &cont, mod->name), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200759
760 if (mod->parsed->revs) {
Radek Krejci41ac9942020-11-02 14:47:56 +0100761 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 +0200762 }
763 } else {
Radek Krejci41ac9942020-11-02 14:47:56 +0100764 LY_CHECK_GOTO(ret = lyd_new_list(set_bis, NULL, "import-only-module", 0, &cont, mod->name,
Radek Krejci0f969882020-08-21 16:56:47 +0200765 (mod->parsed->revs ? mod->parsed->revs[0].date : "")), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200766 }
767
768 /* namespace */
Radek Krejci41ac9942020-11-02 14:47:56 +0100769 LY_CHECK_GOTO(ret = lyd_new_term(cont, NULL, "namespace", mod->ns, 0, NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200770
771 /* location */
772 if (mod->filepath) {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200773 r = asprintf(&str, "file://%s", mod->filepath);
774 LY_CHECK_ERR_GOTO(r == -1, LOGMEM(ctx); ret = LY_EMEM, error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200775
Radek Krejcid68ba1b2020-11-09 17:40:11 +0100776 ret = lyd_new_term(cont, NULL, "location", str, 0, NULL);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200777 free(str);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200778 LY_CHECK_GOTO(ret, error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200779 }
780
781 /* submodule list */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100782 LY_CHECK_GOTO(ret = ylib_submodules(cont, mod->parsed, 1), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200783
784 /* feature list */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100785 LY_CHECK_GOTO(ret = ylib_feature(cont, mod->parsed), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200786
787 /* deviation */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200788 LY_CHECK_GOTO(ret = ylib_deviation(cont, mod, 1), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200789 }
790 }
791
792 /* IDs */
793 sprintf(id, "%u", ctx->module_set_id);
Radek Krejci41ac9942020-11-02 14:47:56 +0100794 LY_CHECK_GOTO(ret = lyd_new_term(root, NULL, "module-set-id", id, 0, NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200795
796 if (bis) {
797 /* create one complete schema */
Radek Krejci41ac9942020-11-02 14:47:56 +0100798 LY_CHECK_GOTO(ret = lyd_new_list(root_bis, NULL, "schema", 0, &cont, "complete"), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200799
Radek Krejci41ac9942020-11-02 14:47:56 +0100800 LY_CHECK_GOTO(ret = lyd_new_term(cont, NULL, "module-set", "complete", 0, NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200801
802 /* content-id */
Radek Krejci41ac9942020-11-02 14:47:56 +0100803 LY_CHECK_GOTO(ret = lyd_new_term(root_bis, NULL, "content-id", id, 0, NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200804 }
805
806 if (root_bis) {
Michal Vaskob104f112020-07-17 09:54:54 +0200807 if (lyd_insert_sibling(root, root_bis, &root)) {
Michal Vasko57c10cd2020-05-27 15:57:11 +0200808 goto error;
809 }
Michal Vaskob104f112020-07-17 09:54:54 +0200810 root_bis = NULL;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200811 }
812
Michal Vasko3a41dff2020-07-15 14:30:28 +0200813 LY_CHECK_GOTO(ret = lyd_validate_all(&root, NULL, LYD_VALIDATE_PRESENT, NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200814
Michal Vasko3a41dff2020-07-15 14:30:28 +0200815 *root_p = root;
816 return LY_SUCCESS;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200817
818error:
819 lyd_free_all(root);
820 lyd_free_all(root_bis);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200821 return ret;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200822}
823
Radek Krejcie9e987e2018-10-31 12:50:27 +0100824API void
Radek Krejciad573502018-09-07 15:26:55 +0200825ly_ctx_destroy(struct ly_ctx *ctx, void (*private_destructor)(const struct lysc_node *node, void *priv))
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200826{
Radek Krejci418823a2018-09-20 16:42:13 +0200827 if (!ctx) {
828 return;
829 }
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200830
831 /* models list */
Michal Vaskod989ba02020-08-24 10:59:24 +0200832 for ( ; ctx->list.count; ctx->list.count--) {
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200833 /* remove the module */
Radek Krejci86d106e2018-10-18 09:53:19 +0200834 lys_module_free(ctx->list.objs[ctx->list.count - 1], private_destructor);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200835 }
836 free(ctx->list.objs);
837
838 /* search paths list */
Radek Krejcia40f21b2018-09-18 10:42:08 +0200839 ly_set_erase(&ctx->search_paths, free);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200840
841 /* clean the error list */
842 ly_err_clean(ctx, 0);
843 pthread_key_delete(ctx->errlist_key);
844
845 /* dictionary */
846 lydict_clean(&ctx->dict);
847
848#if 0 /* TODO when plugins implemented */
849 /* plugins - will be removed only if this is the last context */
850 ly_clean_plugins();
851#endif
852
853 free(ctx);
854}