blob: 442050af514285a326b2f3893c71ccf5a2611800 [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 Krejci0af5f5d2018-09-07 15:00:30 +020015
Radek Krejci535ea9f2020-05-29 16:01:05 +020016#include "context.h"
Radek Krejcib7db73a2018-10-24 14:18:40 +020017
Radek Krejcie7b95092019-05-15 11:03:07 +020018#include <assert.h>
Radek Krejci0af5f5d2018-09-07 15:00:30 +020019#include <errno.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020020#include <pthread.h>
21#include <stddef.h>
Radek Krejci535ea9f2020-05-29 16:01:05 +020022#include <stdio.h>
Radek Krejci7ada9a02018-09-07 15:34:05 +020023#include <stdlib.h>
24#include <string.h>
Radek Krejci0e212402018-09-20 11:29:38 +020025#include <sys/stat.h>
Radek Krejci0af5f5d2018-09-07 15:00:30 +020026#include <unistd.h>
27
Radek Krejci535ea9f2020-05-29 16:01:05 +020028#include "common.h"
Radek Krejciaa45bda2020-07-20 07:43:38 +020029#include "compat.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020030#include "hash_table.h"
Michal Vasko63f3d842020-07-08 10:10:14 +020031#include "parser.h"
Radek Krejci7931b192020-06-25 17:05:03 +020032#include "parser_data.h"
Michal Vasko308d0a72020-08-03 11:56:25 +020033#include "path.h"
Radek Krejcica376bd2020-06-11 16:04:06 +020034#include "plugins_types.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020035#include "set.h"
36#include "tree.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020037#include "tree_data.h"
Radek Krejcica376bd2020-06-11 16:04:06 +020038#include "tree_schema.h"
Radek Krejci86d106e2018-10-18 09:53:19 +020039#include "tree_schema_internal.h"
Michal Vasko308d0a72020-08-03 11:56:25 +020040#include "xpath.h"
Radek Krejci0af5f5d2018-09-07 15:00:30 +020041
Radek Krejcif3f47842018-11-15 11:22:15 +010042#include "../models/ietf-yang-metadata@2016-08-05.h"
Michal Vaskoe893ddd2020-06-23 13:35:20 +020043#include "../models/yang@2020-06-17.h"
Radek Krejcif3f47842018-11-15 11:22:15 +010044#include "../models/ietf-inet-types@2013-07-15.h"
45#include "../models/ietf-yang-types@2013-07-15.h"
Michal Vaskocf296c82020-05-27 11:16:45 +020046#include "../models/ietf-datastores@2018-02-14.h"
47#include "../models/ietf-yang-library@2019-01-04.h"
48#define IETF_YANG_LIB_REV "2019-01-04"
Radek Krejci0af5f5d2018-09-07 15:00:30 +020049
Radek Krejci0af5f5d2018-09-07 15:00:30 +020050static struct internal_modules_s {
51 const char *name;
52 const char *revision;
53 const char *data;
54 uint8_t implemented;
55 LYS_INFORMAT format;
Michal Vaskode79e222020-08-10 11:55:46 +020056} internal_modules[] = {
Radek Krejci335332a2019-09-05 13:03:35 +020057 {"ietf-yang-metadata", "2016-08-05", (const char*)ietf_yang_metadata_2016_08_05_yang, 1, LYS_IN_YANG},
Michal Vaskoe893ddd2020-06-23 13:35:20 +020058 {"yang", "2020-06-17", (const char*)yang_2020_06_17_yang, 1, LYS_IN_YANG},
Radek Krejci86d106e2018-10-18 09:53:19 +020059 {"ietf-inet-types", "2013-07-15", (const char*)ietf_inet_types_2013_07_15_yang, 0, LYS_IN_YANG},
60 {"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 +020061 /* ietf-datastores and ietf-yang-library must be right here at the end of the list! */
Michal Vaskocf296c82020-05-27 11:16:45 +020062 {"ietf-datastores", "2018-02-14", (const char*)ietf_datastores_2018_02_14_yang, 1, LYS_IN_YANG},
63 {"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 +020064};
65
Michal Vaskode79e222020-08-10 11:55:46 +020066#define LY_INTERNAL_MODS_COUNT sizeof(internal_modules) / sizeof(struct internal_modules_s)
67
Radek Krejci0af5f5d2018-09-07 15:00:30 +020068API LY_ERR
69ly_ctx_set_searchdir(struct ly_ctx *ctx, const char *search_dir)
70{
Radek Krejci0e212402018-09-20 11:29:38 +020071 struct stat st;
Radek Krejci0af5f5d2018-09-07 15:00:30 +020072 char *new_dir = NULL;
Radek Krejci0e212402018-09-20 11:29:38 +020073 unsigned int u;
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,
Radek Krejci3a077b92019-04-09 17:10:35 +020080 LOGERR(ctx, LY_ESYS, "Unable to use search directory \"%s\" (%s).", search_dir, strerror(errno)),
81 LY_EINVAL);
82 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),
86 LOGERR(ctx, LY_ESYS, "Unable to fully access search directory \"%s\" (%s).", new_dir, strerror(errno)); free(new_dir),
87 LY_EINVAL);
88 LY_CHECK_ERR_RET(stat(new_dir, &st),
89 LOGERR(ctx, LY_ESYS, "stat() failed for \"%s\" (%s).", new_dir, strerror(errno)); free(new_dir),
Radek Krejcia77e0e12018-09-20 12:39:15 +020090 LY_ESYS);
Radek Krejci3a077b92019-04-09 17:10:35 +020091 LY_CHECK_ERR_RET(!S_ISDIR(st.st_mode),
92 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 */
95 for (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 }
101 if (ly_set_add(&ctx->search_paths, new_dir, LY_SET_OPT_USEASLIST) == -1) {
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 Krejci0759b792018-09-20 13:53:15 +0200139 unsigned int index;
140
Radek Krejcicd649072018-09-20 12:14:45 +0200141 LY_CHECK_ARG_RET(ctx, ctx, LY_EINVAL);
Radek Krejcicd649072018-09-20 12:14:45 +0200142
Michal Vaskob34480a2018-09-17 10:34:45 +0200143 if (!ctx->search_paths.count) {
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200144 return LY_SUCCESS;
145 }
146
Radek Krejci0759b792018-09-20 13:53:15 +0200147 if (value) {
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200148 /* remove specific search directory */
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 Krejcie58f97f2020-08-18 11:45:08 +0200170ly_ctx_unset_searchdir_last(struct ly_ctx *ctx, unsigned int 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 *
182ly_ctx_load_module(struct ly_ctx *ctx, const char *name, const char *revision)
183{
184 struct lys_module *result = NULL;
185
186 LY_CHECK_ARG_RET(ctx, ctx, name, NULL);
187
188 LY_CHECK_RET(lysp_load_module(ctx, name, revision, 1, 0, &result), NULL);
189 return result;
190}
191
192API LY_ERR
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200193ly_ctx_new(const char *search_dir, int options, struct ly_ctx **new_ctx)
194{
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 Krejciad573502018-09-07 15:26:55 +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 }
233 if (*dir && rc == LY_SUCCESS) {
234 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 */
Radek Krejci86d106e2018-10-18 09:53:19 +0200254 for (i = 0; i < ((options & LY_CTX_NOYANGLIBRARY) ? (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 Vasko3a41dff2020-07-15 14:30:28 +0200256 LY_CHECK_GOTO(rc = lys_parse_mem_module(ctx, in, internal_modules[i].format, internal_modules[i].implemented,
257 NULL, NULL, &module), error);
258 LY_CHECK_GOTO(rc = lys_compile(&module, 0), error);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200259 }
260
Michal Vasko63f3d842020-07-08 10:10:14 +0200261 ly_in_free(in, 0);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200262 *new_ctx = ctx;
263 return rc;
264
265error:
Michal Vasko63f3d842020-07-08 10:10:14 +0200266 ly_in_free(in, 0);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200267 ly_ctx_destroy(ctx, NULL);
268 return rc;
269}
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200270API int
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 Krejci3fa46b62019-09-11 10:47:30 +0200278ly_ctx_set_options(struct ly_ctx *ctx, int option)
Radek Krejcica828d92018-09-20 14:19:43 +0200279{
280 LY_CHECK_ARG_RET(ctx, ctx, LY_EINVAL);
281 LY_CHECK_ERR_RET(option & LY_CTX_NOYANGLIBRARY, LOGARG(ctx, option), LY_EINVAL);
282
283 /* set the option(s) */
284 ctx->flags |= option;
285
286 return LY_SUCCESS;
287}
288
289API LY_ERR
Radek Krejci3fa46b62019-09-11 10:47:30 +0200290ly_ctx_unset_options(struct ly_ctx *ctx, int option)
Radek Krejcica828d92018-09-20 14:19:43 +0200291{
292 LY_CHECK_ARG_RET(ctx, ctx, LY_EINVAL);
293 LY_CHECK_ERR_RET(option & LY_CTX_NOYANGLIBRARY, LOGARG(ctx, option), LY_EINVAL);
294
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{
311 LY_CHECK_ARG_RET(ctx, ctx,);
312
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 *
329ly_ctx_get_module_iter(const struct ly_ctx *ctx, unsigned int *index)
330{
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 Krejci0ad51f12020-07-16 12:08:12 +0200354ly_ctx_get_module_by_iter(const struct ly_ctx *ctx, const char *key, size_t key_size, size_t key_offset, unsigned int *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
359 for (; *index < ctx->list.count; ++(*index)) {
360 mod = ctx->list.objs[*index];
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100361 value = *(const char**)(((int8_t*)(mod)) + key_offset);
Radek Krejci0ad51f12020-07-16 12:08:12 +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 Krejcib7db73a2018-10-24 14:18:40 +0200385 unsigned int index = 0;
386
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 Krejcib7db73a2018-10-24 14:18:40 +0200429 unsigned int 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 Krejcib7db73a2018-10-24 14:18:40 +0200466 unsigned int index = 0;
467
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 *
Radek Krejcid33273d2018-10-25 14:55:52 +0200499ly_ctx_get_submodule(const struct ly_ctx *ctx, const char *module, const char *submodule, const char *revision)
500{
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
Radek Krejcifaa1eac2018-10-30 14:34:55 +0100506 assert(submodule);
507
508 for (v = 0; v < ctx->list.count; ++v) {
509 mod = ctx->list.objs[v];
Radek Krejcid33273d2018-10-25 14:55:52 +0200510 if (!mod->parsed) {
511 continue;
512 }
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100513 if (module && strcmp(module, mod->name)) {
Radek Krejcifaa1eac2018-10-30 14:34:55 +0100514 continue;
515 }
Radek Krejcid33273d2018-10-25 14:55:52 +0200516
517 LY_ARRAY_FOR(mod->parsed->includes, u) {
Radek Krejci086c7132018-10-26 15:29:04 +0200518 if (mod->parsed->includes[u].submodule && !strcmp(submodule, mod->parsed->includes[u].submodule->name)) {
Radek Krejcid33273d2018-10-25 14:55:52 +0200519 inc = &mod->parsed->includes[u];
520 if (!revision) {
521 if (inc->submodule->latest_revision) {
522 return inc->submodule;
523 }
524 } else if (inc->submodule->revs && !strcmp(revision, inc->submodule->revs[0].date)) {
525 return inc->submodule;
526 }
527 }
528 }
529 }
530
531 return NULL;
532}
533
Michal Vasko308d0a72020-08-03 11:56:25 +0200534API const struct lysc_node *
535ly_ctx_get_node(const struct ly_ctx *ctx, const struct lysc_node *ctx_node, const char *data_path, int output)
536{
537 const struct lysc_node *snode = NULL;
538 struct lyxp_expr *exp = NULL;
539 struct ly_path *p = NULL;
540 LY_ERR ret;
541 uint8_t oper;
542
543 LY_CHECK_ARG_RET(ctx, ctx || ctx_node, NULL);
544
545 if (!ctx) {
546 ctx = ctx_node->module->ctx;
547 }
548
549 /* parse */
550 exp = lyxp_expr_parse(ctx, data_path, strlen(data_path), 0);
551 LY_CHECK_GOTO(!exp, cleanup);
552
553 /* compile */
554 oper = output ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT;
555 ret = ly_path_compile(ctx, NULL, ctx_node, exp, LY_PATH_LREF_FALSE, oper, LY_PATH_TARGET_MANY,
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200556 LY_PREF_JSON, NULL, &p);
Michal Vasko308d0a72020-08-03 11:56:25 +0200557 LY_CHECK_GOTO(ret, cleanup);
558
559 /* get last node */
560 snode = p[LY_ARRAY_COUNT(p) - 1].node;
561
562cleanup:
563 ly_path_free(ctx, p);
564 lyxp_expr_free(ctx, exp);
565 return snode;
566}
567
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200568API void
Radek Krejcie9e987e2018-10-31 12:50:27 +0100569ly_ctx_reset_latests(struct ly_ctx *ctx)
570{
Radek Krejcie9e987e2018-10-31 12:50:27 +0100571 struct lys_module *mod;
572
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200573 for (uint32_t v = 0; v < ctx->list.count; ++v) {
574 mod = ctx->list.objs[v];
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100575 if (mod->latest_revision == 2) {
576 mod->latest_revision = 1;
Radek Krejcie9e987e2018-10-31 12:50:27 +0100577 }
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100578 if (mod->parsed && mod->parsed->includes) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200579 for (LY_ARRAY_COUNT_TYPE u = 0; u < LY_ARRAY_COUNT(mod->parsed->includes); ++u) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200580 if (mod->parsed->includes[u].submodule->latest_revision == 2) {
581 mod->parsed->includes[u].submodule->latest_revision = 1;
Radek Krejcie9e987e2018-10-31 12:50:27 +0100582 }
583 }
584 }
585 }
586}
587
Michal Vaskode79e222020-08-10 11:55:46 +0200588API uint32_t
589ly_ctx_internal_module_count(const struct ly_ctx *ctx)
590{
591 if (!ctx) {
592 return 0;
593 }
594
595 if (ctx->flags & LY_CTX_NOYANGLIBRARY) {
596 return LY_INTERNAL_MODS_COUNT - 2;
597 } else {
598 return LY_INTERNAL_MODS_COUNT;
599 }
600}
601
Michal Vasko57c10cd2020-05-27 15:57:11 +0200602static LY_ERR
603ylib_feature(struct lyd_node *parent, const struct lys_module *cur_mod)
604{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200605 LY_ARRAY_COUNT_TYPE i;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200606
607 if (!cur_mod->implemented) {
608 /* no features can be enabled */
609 return LY_SUCCESS;
610 }
611
612 LY_ARRAY_FOR(cur_mod->compiled->features, i) {
613 if (!(cur_mod->compiled->features[i].flags & LYS_FENABLED)) {
614 continue;
615 }
616
Michal Vasko3a41dff2020-07-15 14:30:28 +0200617 LY_CHECK_RET(lyd_new_term(parent, NULL, "feature", cur_mod->compiled->features[i].name, NULL));
Michal Vasko57c10cd2020-05-27 15:57:11 +0200618 }
619
620 return LY_SUCCESS;
621}
622
623static LY_ERR
624ylib_deviation(struct lyd_node *parent, const struct lys_module *cur_mod, int bis)
625{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200626 LY_ARRAY_COUNT_TYPE i;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200627 struct lys_module *mod;
628
629 if (!cur_mod->implemented) {
630 /* no deviations of the module for certain */
631 return LY_SUCCESS;
632 }
633
634 LY_ARRAY_FOR(cur_mod->compiled->deviated_by, i) {
635 mod = cur_mod->compiled->deviated_by[i];
636
637 if (bis) {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200638 LY_CHECK_RET(lyd_new_term(parent, NULL, "deviation", mod->name, NULL));
Michal Vasko57c10cd2020-05-27 15:57:11 +0200639 } else {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200640 LY_CHECK_RET(lyd_new_list(parent, NULL, "deviation", NULL, mod->name,
641 (mod->parsed->revs ? mod->parsed->revs[0].date : "")));
Michal Vasko57c10cd2020-05-27 15:57:11 +0200642 }
643 }
644
645 return LY_SUCCESS;
646}
647
648static LY_ERR
649ylib_submodules(struct lyd_node *parent, const struct lys_module *cur_mod, int bis)
650{
Michal Vasko3a41dff2020-07-15 14:30:28 +0200651 LY_ERR ret;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200652 LY_ARRAY_COUNT_TYPE i;
Michal Vasko3a41dff2020-07-15 14:30:28 +0200653 struct lyd_node *cont;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200654 struct lysp_submodule *submod;
Michal Vasko3a41dff2020-07-15 14:30:28 +0200655 int r;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200656 char *str;
657
658 LY_ARRAY_FOR(cur_mod->parsed->includes, i) {
659 submod = cur_mod->parsed->includes[i].submodule;
660
661 if (bis) {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200662 LY_CHECK_RET(lyd_new_list(parent, NULL, "submodule", &cont, submod->name));
Michal Vasko57c10cd2020-05-27 15:57:11 +0200663
664 if (submod->revs) {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200665 LY_CHECK_RET(lyd_new_term(cont, NULL, "revision", submod->revs[0].date, NULL));
Michal Vasko57c10cd2020-05-27 15:57:11 +0200666 }
667 } else {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200668 LY_CHECK_RET(lyd_new_list(parent, NULL, "submodule", &cont, submod->name,
669 (submod->revs ? submod->revs[0].date : "")));
Michal Vasko57c10cd2020-05-27 15:57:11 +0200670 }
671
672 if (submod->filepath) {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200673 r = asprintf(&str, "file://%s", submod->filepath);
674 LY_CHECK_ERR_RET(r == -1, LOGMEM(cur_mod->ctx), LY_EMEM);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200675
Michal Vasko3a41dff2020-07-15 14:30:28 +0200676 ret = lyd_new_term(cont, NULL, bis ? "location" : "schema", str, NULL);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200677 free(str);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200678 LY_CHECK_RET(ret);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200679 }
680 }
681
682 return LY_SUCCESS;
683}
684
685API uint16_t
686ly_ctx_get_yanglib_id(const struct ly_ctx *ctx)
687{
688 return ctx->module_set_id;
689}
690
Michal Vasko3a41dff2020-07-15 14:30:28 +0200691API LY_ERR
692ly_ctx_get_yanglib_data(const struct ly_ctx *ctx, struct lyd_node **root_p)
Michal Vasko57c10cd2020-05-27 15:57:11 +0200693{
Michal Vasko3a41dff2020-07-15 14:30:28 +0200694 LY_ERR ret;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200695 uint32_t i;
Michal Vasko3a41dff2020-07-15 14:30:28 +0200696 int bis = 0, r;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200697 char id[8], *str;
698 const struct lys_module *mod;
Michal Vasko3a41dff2020-07-15 14:30:28 +0200699 struct lyd_node *root = NULL, *root_bis = NULL, *cont, *set_bis = NULL;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200700
Michal Vasko3a41dff2020-07-15 14:30:28 +0200701 LY_CHECK_ARG_RET(ctx, ctx, root_p, LY_EINVAL);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200702
703 mod = ly_ctx_get_module_implemented(ctx, "ietf-yang-library");
Michal Vasko3a41dff2020-07-15 14:30:28 +0200704 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 +0200705
706 if (mod->parsed->revs && !strcmp(mod->parsed->revs[0].date, "2016-06-21")) {
707 bis = 0;
708 } else if (mod->parsed->revs && !strcmp(mod->parsed->revs[0].date, IETF_YANG_LIB_REV)) {
709 bis = 1;
710 } else {
711 LOGERR(ctx, LY_EINVAL, "Incompatible ietf-yang-library version in context.");
Michal Vasko3a41dff2020-07-15 14:30:28 +0200712 return LY_EINVAL;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200713 }
714
Michal Vasko3a41dff2020-07-15 14:30:28 +0200715 LY_CHECK_GOTO(ret = lyd_new_inner(NULL, mod, "modules-state", &root), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200716
717 if (bis) {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200718 LY_CHECK_GOTO(ret = lyd_new_inner(NULL, mod, "yang-library", &root_bis), error);
719 LY_CHECK_GOTO(ret = lyd_new_list(root_bis, NULL, "module-set", &set_bis, "complete"), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200720 }
721
722 for (i = 0; i < ctx->list.count; ++i) {
723 mod = ctx->list.objs[i];
724
725 /*
726 * deprecated legacy
727 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200728 LY_CHECK_GOTO(ret = lyd_new_list(root, NULL, "module", &cont, mod->name,
729 (mod->parsed->revs ? mod->parsed->revs[0].date : "")), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200730
731 /* schema */
732 if (mod->filepath) {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200733 r = asprintf(&str, "file://%s", mod->filepath);
734 LY_CHECK_ERR_GOTO(r == -1, LOGMEM(ctx); ret = LY_EMEM, error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200735
Michal Vasko3a41dff2020-07-15 14:30:28 +0200736 ret = lyd_new_term(cont, NULL, "schema", str, NULL);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200737 free(str);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200738 LY_CHECK_GOTO(ret, error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200739 }
740
741 /* namespace */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200742 LY_CHECK_GOTO(ret = lyd_new_term(cont, NULL, "namespace", mod->ns, NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200743
744 /* feature leaf-list */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200745 LY_CHECK_GOTO(ret = ylib_feature(cont, mod), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200746
747 /* deviation list */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200748 LY_CHECK_GOTO(ret = ylib_deviation(cont, mod, 0), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200749
750 /* conformance-type */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200751 LY_CHECK_GOTO(ret = lyd_new_term(cont, NULL, "conformance-type", mod->implemented ? "implement" : "import",
752 NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200753
754 /* submodule list */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200755 LY_CHECK_GOTO(ret = ylib_submodules(cont, mod, 0), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200756
757 /*
758 * current revision
759 */
760 if (bis) {
761 /* name and revision */
762 if (mod->implemented) {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200763 LY_CHECK_GOTO(ret = lyd_new_list(set_bis, NULL, "module", &cont, mod->name), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200764
765 if (mod->parsed->revs) {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200766 LY_CHECK_GOTO(ret = lyd_new_term(cont, NULL, "revision", mod->parsed->revs[0].date, NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200767 }
768 } else {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200769 LY_CHECK_GOTO(ret = lyd_new_list(set_bis, NULL, "import-only-module", &cont, mod->name,
770 (mod->parsed->revs ? mod->parsed->revs[0].date : "")), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200771 }
772
773 /* namespace */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200774 LY_CHECK_GOTO(ret = lyd_new_term(cont, NULL, "namespace", mod->ns, NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200775
776 /* location */
777 if (mod->filepath) {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200778 r = asprintf(&str, "file://%s", mod->filepath);
779 LY_CHECK_ERR_GOTO(r == -1, LOGMEM(ctx); ret = LY_EMEM, error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200780
Michal Vasko3a41dff2020-07-15 14:30:28 +0200781 ret = lyd_new_term(cont, NULL, "schema", str, NULL);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200782 free(str);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200783 LY_CHECK_GOTO(ret, error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200784 }
785
786 /* submodule list */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200787 LY_CHECK_GOTO(ret = ylib_submodules(cont, mod, 1), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200788
789 /* feature list */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200790 LY_CHECK_GOTO(ret = ylib_feature(cont, mod), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200791
792 /* deviation */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200793 LY_CHECK_GOTO(ret = ylib_deviation(cont, mod, 1), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200794 }
795 }
796
797 /* IDs */
798 sprintf(id, "%u", ctx->module_set_id);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200799 LY_CHECK_GOTO(ret = lyd_new_term(root, NULL, "module-set-id", id, NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200800
801 if (bis) {
802 /* create one complete schema */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200803 LY_CHECK_GOTO(ret = lyd_new_list(root_bis, NULL, "schema", &cont, "complete"), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200804
Michal Vasko3a41dff2020-07-15 14:30:28 +0200805 LY_CHECK_GOTO(ret = lyd_new_term(cont, NULL, "module-set", "complete", NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200806
807 /* content-id */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200808 LY_CHECK_GOTO(ret = lyd_new_term(root_bis, NULL, "content-id", id, NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200809 }
810
811 if (root_bis) {
Michal Vaskob104f112020-07-17 09:54:54 +0200812 if (lyd_insert_sibling(root, root_bis, &root)) {
Michal Vasko57c10cd2020-05-27 15:57:11 +0200813 goto error;
814 }
Michal Vaskob104f112020-07-17 09:54:54 +0200815 root_bis = NULL;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200816 }
817
Michal Vasko3a41dff2020-07-15 14:30:28 +0200818 LY_CHECK_GOTO(ret = lyd_validate_all(&root, NULL, LYD_VALIDATE_PRESENT, NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200819
Michal Vasko3a41dff2020-07-15 14:30:28 +0200820 *root_p = root;
821 return LY_SUCCESS;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200822
823error:
824 lyd_free_all(root);
825 lyd_free_all(root_bis);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200826 return ret;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200827}
828
Radek Krejcie9e987e2018-10-31 12:50:27 +0100829API void
Radek Krejciad573502018-09-07 15:26:55 +0200830ly_ctx_destroy(struct ly_ctx *ctx, void (*private_destructor)(const struct lysc_node *node, void *priv))
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200831{
Radek Krejci418823a2018-09-20 16:42:13 +0200832 if (!ctx) {
833 return;
834 }
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200835
836 /* models list */
Michal Vaskob34480a2018-09-17 10:34:45 +0200837 for (; ctx->list.count; ctx->list.count--) {
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200838 /* remove the module */
Radek Krejci86d106e2018-10-18 09:53:19 +0200839 lys_module_free(ctx->list.objs[ctx->list.count - 1], private_destructor);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200840 }
841 free(ctx->list.objs);
842
843 /* search paths list */
Radek Krejcia40f21b2018-09-18 10:42:08 +0200844 ly_set_erase(&ctx->search_paths, free);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200845
846 /* clean the error list */
847 ly_err_clean(ctx, 0);
848 pthread_key_delete(ctx->errlist_key);
849
850 /* dictionary */
851 lydict_clean(&ctx->dict);
852
853#if 0 /* TODO when plugins implemented */
854 /* plugins - will be removed only if this is the last context */
855 ly_clean_plugins();
856#endif
857
858 free(ctx);
859}