blob: cd3accb8ff82a5bcc79df178d1ff477db5ab63ef [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"
Radek Krejcica376bd2020-06-11 16:04:06 +020033#include "plugins_types.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020034#include "set.h"
35#include "tree.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020036#include "tree_data.h"
Radek Krejcica376bd2020-06-11 16:04:06 +020037#include "tree_schema.h"
Radek Krejci86d106e2018-10-18 09:53:19 +020038#include "tree_schema_internal.h"
Radek Krejci0af5f5d2018-09-07 15:00:30 +020039
Radek Krejci86d106e2018-10-18 09:53:19 +020040#define LY_INTERNAL_MODS_COUNT 6
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;
56} internal_modules[LY_INTERNAL_MODS_COUNT] = {
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
66API LY_ERR
67ly_ctx_set_searchdir(struct ly_ctx *ctx, const char *search_dir)
68{
Radek Krejci0e212402018-09-20 11:29:38 +020069 struct stat st;
Radek Krejci0af5f5d2018-09-07 15:00:30 +020070 char *new_dir = NULL;
Radek Krejci0e212402018-09-20 11:29:38 +020071 unsigned int u;
Radek Krejci0af5f5d2018-09-07 15:00:30 +020072
73 LY_CHECK_ARG_RET(ctx, ctx, LY_EINVAL);
74
75 if (search_dir) {
Radek Krejci0af5f5d2018-09-07 15:00:30 +020076 new_dir = realpath(search_dir, NULL);
Radek Krejcia77e0e12018-09-20 12:39:15 +020077 LY_CHECK_ERR_RET(!new_dir,
Radek Krejci3a077b92019-04-09 17:10:35 +020078 LOGERR(ctx, LY_ESYS, "Unable to use search directory \"%s\" (%s).", search_dir, strerror(errno)),
79 LY_EINVAL);
80 if (strcmp(search_dir, new_dir)) {
81 LOGVRB("Canonicalizing search directory string from \"%s\" to \"%s\".", search_dir, new_dir);
82 }
83 LY_CHECK_ERR_RET(access(new_dir, R_OK | X_OK),
84 LOGERR(ctx, LY_ESYS, "Unable to fully access search directory \"%s\" (%s).", new_dir, strerror(errno)); free(new_dir),
85 LY_EINVAL);
86 LY_CHECK_ERR_RET(stat(new_dir, &st),
87 LOGERR(ctx, LY_ESYS, "stat() failed for \"%s\" (%s).", new_dir, strerror(errno)); free(new_dir),
Radek Krejcia77e0e12018-09-20 12:39:15 +020088 LY_ESYS);
Radek Krejci3a077b92019-04-09 17:10:35 +020089 LY_CHECK_ERR_RET(!S_ISDIR(st.st_mode),
90 LOGERR(ctx, LY_ESYS, "Given search directory \"%s\" is not a directory.", new_dir); free(new_dir),
91 LY_EINVAL);
Radek Krejci0e212402018-09-20 11:29:38 +020092 /* avoid path duplication */
93 for (u = 0; u < ctx->search_paths.count; ++u) {
Radek Krejci14946ab2018-09-20 13:42:06 +020094 if (!strcmp(new_dir, ctx->search_paths.objs[u])) {
Radek Krejci0e212402018-09-20 11:29:38 +020095 free(new_dir);
Radek Krejci14946ab2018-09-20 13:42:06 +020096 return LY_EEXIST;
Radek Krejci0e212402018-09-20 11:29:38 +020097 }
98 }
99 if (ly_set_add(&ctx->search_paths, new_dir, LY_SET_OPT_USEASLIST) == -1) {
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200100 free(new_dir);
101 return LY_EMEM;
102 }
103
Radek Krejcie9e987e2018-10-31 12:50:27 +0100104 /* new searchdir - possibly more latest revision available */
105 ly_ctx_reset_latests(ctx);
106
Radek Krejci0e212402018-09-20 11:29:38 +0200107 return LY_SUCCESS;
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200108 } else {
109 /* consider that no change is not actually an error */
110 return LY_SUCCESS;
111 }
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200112}
113
114API const char * const *
115ly_ctx_get_searchdirs(const struct ly_ctx *ctx)
116{
Radek Krejci05026432018-09-20 12:13:43 +0200117 void **new;
118
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200119 LY_CHECK_ARG_RET(ctx, ctx, NULL);
Radek Krejci05026432018-09-20 12:13:43 +0200120
121 if (ctx->search_paths.count == ctx->search_paths.size) {
122 /* not enough space for terminating NULL byte */
123 new = realloc(((struct ly_ctx *)ctx)->search_paths.objs, (ctx->search_paths.size + 8) * sizeof *ctx->search_paths.objs);
124 LY_CHECK_ERR_RET(!new, LOGMEM(NULL), NULL);
125 ((struct ly_ctx *)ctx)->search_paths.size += 8;
126 ((struct ly_ctx *)ctx)->search_paths.objs = new;
127 }
128 /* set terminating NULL byte to the strings list */
129 ctx->search_paths.objs[ctx->search_paths.count] = NULL;
130
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200131 return (const char * const *)ctx->search_paths.objs;
132}
133
134API LY_ERR
Radek Krejci0759b792018-09-20 13:53:15 +0200135ly_ctx_unset_searchdirs(struct ly_ctx *ctx, const char *value)
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200136{
Radek Krejci0759b792018-09-20 13:53:15 +0200137 unsigned int index;
138
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 Krejci0759b792018-09-20 13:53:15 +0200147 for (index = 0; index < ctx->search_paths.count; ++index) {
148 if (!strcmp(value, ctx->search_paths.objs[index])) {
149 break;
150 }
151 }
152 if (index == ctx->search_paths.count) {
153 LOGARG(ctx, value);
154 return LY_EINVAL;
155 } else {
156 return ly_set_rm_index(&ctx->search_paths, index, free);
157 }
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200158 } else {
159 /* remove them all */
Radek Krejcia40f21b2018-09-18 10:42:08 +0200160 ly_set_erase(&ctx->search_paths, free);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200161 memset(&ctx->search_paths, 0, sizeof ctx->search_paths);
162 }
163
164 return LY_SUCCESS;
165}
166
167API LY_ERR
Radek Krejcied5acc52019-04-25 15:57:04 +0200168ly_ctx_unset_searchdir(struct ly_ctx *ctx, unsigned int index)
169{
170 LY_CHECK_ARG_RET(ctx, ctx, LY_EINVAL);
171
172 if (!ctx->search_paths.count) {
173 return LY_SUCCESS;
174 }
175
176 if (index >= ctx->search_paths.count) {
177 LOGARG(ctx, value);
178 return LY_EINVAL;
179 } else {
180 return ly_set_rm_index(&ctx->search_paths, index, free);
181 }
182
183 return LY_SUCCESS;
184}
185
186API const struct lys_module *
187ly_ctx_load_module(struct ly_ctx *ctx, const char *name, const char *revision)
188{
189 struct lys_module *result = NULL;
190
191 LY_CHECK_ARG_RET(ctx, ctx, name, NULL);
192
193 LY_CHECK_RET(lysp_load_module(ctx, name, revision, 1, 0, &result), NULL);
194 return result;
195}
196
197API LY_ERR
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200198ly_ctx_new(const char *search_dir, int options, struct ly_ctx **new_ctx)
199{
200 struct ly_ctx *ctx = NULL;
201 struct lys_module *module;
202 char *search_dir_list;
203 char *sep, *dir;
Radek Krejci86d106e2018-10-18 09:53:19 +0200204 int i;
Michal Vasko63f3d842020-07-08 10:10:14 +0200205 struct ly_in *in = NULL;
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200206 LY_ERR rc = LY_SUCCESS;
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200207
Radek Krejcied5acc52019-04-25 15:57:04 +0200208 LY_CHECK_ARG_RET(NULL, new_ctx, LY_EINVAL);
209
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200210 ctx = calloc(1, sizeof *ctx);
Radek Krejciad573502018-09-07 15:26:55 +0200211 LY_CHECK_ERR_RET(!ctx, LOGMEM(NULL), LY_EMEM);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200212
213 /* dictionary */
214 lydict_init(&ctx->dict);
215
Radek Krejciad573502018-09-07 15:26:55 +0200216#if 0 /* TODO when plugins implemented */
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200217 /* plugins */
218 ly_load_plugins();
Radek Krejciad573502018-09-07 15:26:55 +0200219#endif
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200220
221 /* initialize thread-specific key */
Radek Krejciad573502018-09-07 15:26:55 +0200222 while ((pthread_key_create(&ctx->errlist_key, ly_err_free)) == EAGAIN);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200223
224 /* models list */
225 ctx->flags = options;
226 if (search_dir) {
227 search_dir_list = strdup(search_dir);
228 LY_CHECK_ERR_GOTO(!search_dir_list, LOGMEM(NULL); rc = LY_EMEM, error);
229
230 for (dir = search_dir_list; (sep = strchr(dir, ':')) != NULL && rc == LY_SUCCESS; dir = sep + 1) {
231 *sep = 0;
232 rc = ly_ctx_set_searchdir(ctx, dir);
Radek Krejci14946ab2018-09-20 13:42:06 +0200233 if (rc == LY_EEXIST) {
234 /* ignore duplication */
235 rc = LY_SUCCESS;
236 }
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200237 }
238 if (*dir && rc == LY_SUCCESS) {
239 rc = ly_ctx_set_searchdir(ctx, dir);
Radek Krejci14946ab2018-09-20 13:42:06 +0200240 if (rc == LY_EEXIST) {
241 /* ignore duplication */
242 rc = LY_SUCCESS;
243 }
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200244 }
245 free(search_dir_list);
246
247 /* If ly_ctx_set_searchdir() failed, the error is already logged. Just exit */
248 if (rc != LY_SUCCESS) {
249 goto error;
250 }
251 }
252 ctx->module_set_id = 1;
253
Michal Vasko63f3d842020-07-08 10:10:14 +0200254 /* create dummy in */
255 rc = ly_in_new_memory(internal_modules[0].data, &in);
256 LY_CHECK_GOTO(rc, error);
257
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200258 /* load internal modules */
Radek Krejci86d106e2018-10-18 09:53:19 +0200259 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 +0200260 ly_in_memory(in, internal_modules[i].data);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200261 LY_CHECK_GOTO(rc = lys_parse_mem_module(ctx, in, internal_modules[i].format, internal_modules[i].implemented,
262 NULL, NULL, &module), error);
263 LY_CHECK_GOTO(rc = lys_compile(&module, 0), error);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200264 }
265
Michal Vasko63f3d842020-07-08 10:10:14 +0200266 ly_in_free(in, 0);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200267 *new_ctx = ctx;
268 return rc;
269
270error:
Michal Vasko63f3d842020-07-08 10:10:14 +0200271 ly_in_free(in, 0);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200272 ly_ctx_destroy(ctx, NULL);
273 return rc;
274}
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200275API int
Radek Krejci3fbe89a2018-09-20 13:54:46 +0200276ly_ctx_get_options(const struct ly_ctx *ctx)
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200277{
Radek Krejci3fbe89a2018-09-20 13:54:46 +0200278 LY_CHECK_ARG_RET(ctx, ctx, 0);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200279 return ctx->flags;
280}
281
Radek Krejcica828d92018-09-20 14:19:43 +0200282API LY_ERR
Radek Krejci3fa46b62019-09-11 10:47:30 +0200283ly_ctx_set_options(struct ly_ctx *ctx, int option)
Radek Krejcica828d92018-09-20 14:19:43 +0200284{
285 LY_CHECK_ARG_RET(ctx, ctx, LY_EINVAL);
286 LY_CHECK_ERR_RET(option & LY_CTX_NOYANGLIBRARY, LOGARG(ctx, option), LY_EINVAL);
287
288 /* set the option(s) */
289 ctx->flags |= option;
290
291 return LY_SUCCESS;
292}
293
294API LY_ERR
Radek Krejci3fa46b62019-09-11 10:47:30 +0200295ly_ctx_unset_options(struct ly_ctx *ctx, int option)
Radek Krejcica828d92018-09-20 14:19:43 +0200296{
297 LY_CHECK_ARG_RET(ctx, ctx, LY_EINVAL);
298 LY_CHECK_ERR_RET(option & LY_CTX_NOYANGLIBRARY, LOGARG(ctx, option), LY_EINVAL);
299
300 /* unset the option(s) */
301 ctx->flags &= ~option;
302
303 return LY_SUCCESS;
304}
305
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200306API uint16_t
307ly_ctx_get_module_set_id(const struct ly_ctx *ctx)
308{
Radek Krejci3fbe89a2018-09-20 13:54:46 +0200309 LY_CHECK_ARG_RET(ctx, ctx, 0);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200310 return ctx->module_set_id;
311}
312
Radek Krejcid33273d2018-10-25 14:55:52 +0200313API void
314ly_ctx_set_module_imp_clb(struct ly_ctx *ctx, ly_module_imp_clb clb, void *user_data)
315{
316 LY_CHECK_ARG_RET(ctx, ctx,);
317
318 ctx->imp_clb = clb;
319 ctx->imp_clb_data = user_data;
320}
321
322API ly_module_imp_clb
323ly_ctx_get_module_imp_clb(const struct ly_ctx *ctx, void **user_data)
324{
325 LY_CHECK_ARG_RET(ctx, ctx, NULL);
326
327 if (user_data) {
328 *user_data = ctx->imp_clb_data;
329 }
330 return ctx->imp_clb;
331}
332
Radek Krejcied5acc52019-04-25 15:57:04 +0200333API const struct lys_module *
334ly_ctx_get_module_iter(const struct ly_ctx *ctx, unsigned int *index)
335{
336 LY_CHECK_ARG_RET(ctx, ctx, index, NULL);
337
Radek Krejci2390fb52019-04-30 13:27:43 +0200338 if (*index < (unsigned)ctx->list.count) {
Radek Krejcied5acc52019-04-25 15:57:04 +0200339 return ctx->list.objs[(*index)++];
Radek Krejci2390fb52019-04-30 13:27:43 +0200340 } else {
341 return NULL;
Radek Krejcied5acc52019-04-25 15:57:04 +0200342 }
Radek Krejcied5acc52019-04-25 15:57:04 +0200343}
344
Radek Krejcib7db73a2018-10-24 14:18:40 +0200345/**
346 * @brief Iterate over the modules in the given context. Returned modules must match the given key at the offset of
347 * lysp_module and lysc_module structures (they are supposed to be placed at the same offset in both structures).
348 *
349 * @param[in] ctx Context where to iterate.
350 * @param[in] key Key value to search for.
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100351 * @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 +0200352 * @param[in,out] Iterator to pass between the function calls. On the first call, the variable is supposed to be
353 * initiated to 0. After each call returning a module, the value is greater by 1 than the index of the returned
354 * module in the context.
355 * @return Module matching the given key, NULL if no such module found.
356 */
Radek Krejci0af46292019-01-11 16:02:31 +0100357static struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200358ly_ctx_get_module_by_iter(const struct ly_ctx *ctx, const char *key, size_t key_offset, unsigned int *index)
359{
Radek Krejci0af46292019-01-11 16:02:31 +0100360 struct lys_module *mod;
Radek Krejcib7db73a2018-10-24 14:18:40 +0200361 const char *value;
362
363 for (; *index < ctx->list.count; ++(*index)) {
364 mod = ctx->list.objs[*index];
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100365 value = *(const char**)(((int8_t*)(mod)) + key_offset);
Radek Krejcib7db73a2018-10-24 14:18:40 +0200366 if (!strcmp(key, value)) {
367 /* increment index for the next run */
368 ++(*index);
369 return mod;
370 }
371 }
372 /* done */
373 return NULL;
374}
375
376/**
377 * @brief Unifying function for ly_ctx_get_module() and ly_ctx_get_module_ns()
378 * @param[in] ctx Context where to search.
379 * @param[in] key Name or Namespace as a search key.
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100380 * @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 +0200381 * @param[in] revision Revision date to match. If NULL, the matching module must have no revision. To search for the latest
382 * revision module, use ly_ctx_get_module_latest_by().
383 * @return Matching module if any.
384 */
Radek Krejci0af46292019-01-11 16:02:31 +0100385static struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200386ly_ctx_get_module_by(const struct ly_ctx *ctx, const char *key, size_t key_offset, const char *revision)
387{
Radek Krejci0af46292019-01-11 16:02:31 +0100388 struct lys_module *mod;
Radek Krejcib7db73a2018-10-24 14:18:40 +0200389 unsigned int index = 0;
390
391 while ((mod = ly_ctx_get_module_by_iter(ctx, key, key_offset, &index))) {
392 if (!revision) {
Radek Krejci0af46292019-01-11 16:02:31 +0100393 if (!mod->revision) {
Radek Krejcib7db73a2018-10-24 14:18:40 +0200394 /* found requested module without revision */
395 return mod;
396 }
397 } else {
Radek Krejci0af46292019-01-11 16:02:31 +0100398 if (mod->revision && !strcmp(mod->revision, revision)) {
Radek Krejcib7db73a2018-10-24 14:18:40 +0200399 /* found requested module of the specific revision */
400 return mod;
401 }
402 }
403 }
404
405 return NULL;
406}
407
Radek Krejci0af46292019-01-11 16:02:31 +0100408API struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200409ly_ctx_get_module_ns(const struct ly_ctx *ctx, const char *ns, const char *revision)
410{
411 LY_CHECK_ARG_RET(ctx, ctx, ns, NULL);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100412 return ly_ctx_get_module_by(ctx, ns, offsetof(struct lys_module, ns), revision);
Radek Krejcib7db73a2018-10-24 14:18:40 +0200413}
414
Radek Krejci0af46292019-01-11 16:02:31 +0100415API struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200416ly_ctx_get_module(const struct ly_ctx *ctx, const char *name, const char *revision)
417{
418 LY_CHECK_ARG_RET(ctx, ctx, name, NULL);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100419 return ly_ctx_get_module_by(ctx, name, offsetof(struct lys_module, name), revision);
Radek Krejcib7db73a2018-10-24 14:18:40 +0200420}
421
422/**
423 * @brief Unifying function for ly_ctx_get_module_latest() and ly_ctx_get_module_latest_ns()
424 * @param[in] ctx Context where to search.
425 * @param[in] key Name or Namespace as a search key.
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100426 * @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 +0200427 * @return Matching module if any.
428 */
Radek Krejci0af46292019-01-11 16:02:31 +0100429static struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200430ly_ctx_get_module_latest_by(const struct ly_ctx *ctx, const char *key, size_t key_offset)
431{
Radek Krejci0af46292019-01-11 16:02:31 +0100432 struct lys_module *mod;
Radek Krejcib7db73a2018-10-24 14:18:40 +0200433 unsigned int index = 0;
Radek Krejcib7db73a2018-10-24 14:18:40 +0200434
435 while ((mod = ly_ctx_get_module_by_iter(ctx, key, key_offset, &index))) {
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100436 if (mod->latest_revision) {
Radek Krejci9f5e6fb2018-10-25 09:26:12 +0200437 return mod;
Radek Krejcib7db73a2018-10-24 14:18:40 +0200438 }
439 }
440
Radek Krejci9f5e6fb2018-10-25 09:26:12 +0200441 return NULL;
Radek Krejcib7db73a2018-10-24 14:18:40 +0200442}
443
Radek Krejci0af46292019-01-11 16:02:31 +0100444API struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200445ly_ctx_get_module_latest(const struct ly_ctx *ctx, const char *name)
446{
447 LY_CHECK_ARG_RET(ctx, ctx, name, NULL);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100448 return ly_ctx_get_module_latest_by(ctx, name, offsetof(struct lys_module, name));
Radek Krejcib7db73a2018-10-24 14:18:40 +0200449}
450
Radek Krejci0af46292019-01-11 16:02:31 +0100451API struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200452ly_ctx_get_module_latest_ns(const struct ly_ctx *ctx, const char *ns)
453{
454 LY_CHECK_ARG_RET(ctx, ctx, ns, NULL);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100455 return ly_ctx_get_module_latest_by(ctx, ns, offsetof(struct lys_module, ns));
Radek Krejcib7db73a2018-10-24 14:18:40 +0200456}
457
458/**
459 * @brief Unifying function for ly_ctx_get_module_implemented() and ly_ctx_get_module_implemented_ns()
460 * @param[in] ctx Context where to search.
461 * @param[in] key Name or Namespace as a search key.
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100462 * @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 +0200463 * @return Matching module if any.
464 */
Radek Krejci0af46292019-01-11 16:02:31 +0100465static struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200466ly_ctx_get_module_implemented_by(const struct ly_ctx *ctx, const char *key, size_t key_offset)
467{
Radek Krejci0af46292019-01-11 16:02:31 +0100468 struct lys_module *mod;
Radek Krejcib7db73a2018-10-24 14:18:40 +0200469 unsigned int index = 0;
470
471 while ((mod = ly_ctx_get_module_by_iter(ctx, key, key_offset, &index))) {
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100472 if (mod->implemented) {
Radek Krejcib7db73a2018-10-24 14:18:40 +0200473 return mod;
474 }
475 }
476
477 return NULL;
478}
479
Radek Krejci0af46292019-01-11 16:02:31 +0100480API struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200481ly_ctx_get_module_implemented(const struct ly_ctx *ctx, const char *name)
482{
483 LY_CHECK_ARG_RET(ctx, ctx, name, NULL);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100484 return ly_ctx_get_module_implemented_by(ctx, name, offsetof(struct lys_module, name));
Radek Krejcib7db73a2018-10-24 14:18:40 +0200485}
486
Radek Krejci0af46292019-01-11 16:02:31 +0100487API struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200488ly_ctx_get_module_implemented_ns(const struct ly_ctx *ctx, const char *ns)
489{
490 LY_CHECK_ARG_RET(ctx, ctx, ns, NULL);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100491 return ly_ctx_get_module_implemented_by(ctx, ns, offsetof(struct lys_module, ns));
Radek Krejcib7db73a2018-10-24 14:18:40 +0200492}
493
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100494struct lysp_submodule *
Radek Krejcid33273d2018-10-25 14:55:52 +0200495ly_ctx_get_submodule(const struct ly_ctx *ctx, const char *module, const char *submodule, const char *revision)
496{
497 const struct lys_module *mod;
498 struct lysp_include *inc;
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200499 uint32_t v;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200500 LY_ARRAY_COUNT_TYPE u;
Radek Krejcid33273d2018-10-25 14:55:52 +0200501
Radek Krejcifaa1eac2018-10-30 14:34:55 +0100502 assert(submodule);
503
504 for (v = 0; v < ctx->list.count; ++v) {
505 mod = ctx->list.objs[v];
Radek Krejcid33273d2018-10-25 14:55:52 +0200506 if (!mod->parsed) {
507 continue;
508 }
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100509 if (module && strcmp(module, mod->name)) {
Radek Krejcifaa1eac2018-10-30 14:34:55 +0100510 continue;
511 }
Radek Krejcid33273d2018-10-25 14:55:52 +0200512
513 LY_ARRAY_FOR(mod->parsed->includes, u) {
Radek Krejci086c7132018-10-26 15:29:04 +0200514 if (mod->parsed->includes[u].submodule && !strcmp(submodule, mod->parsed->includes[u].submodule->name)) {
Radek Krejcid33273d2018-10-25 14:55:52 +0200515 inc = &mod->parsed->includes[u];
516 if (!revision) {
517 if (inc->submodule->latest_revision) {
518 return inc->submodule;
519 }
520 } else if (inc->submodule->revs && !strcmp(revision, inc->submodule->revs[0].date)) {
521 return inc->submodule;
522 }
523 }
524 }
525 }
526
527 return NULL;
528}
529
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200530API void
Radek Krejcie9e987e2018-10-31 12:50:27 +0100531ly_ctx_reset_latests(struct ly_ctx *ctx)
532{
Radek Krejcie9e987e2018-10-31 12:50:27 +0100533 struct lys_module *mod;
534
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200535 for (uint32_t v = 0; v < ctx->list.count; ++v) {
536 mod = ctx->list.objs[v];
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100537 if (mod->latest_revision == 2) {
538 mod->latest_revision = 1;
Radek Krejcie9e987e2018-10-31 12:50:27 +0100539 }
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100540 if (mod->parsed && mod->parsed->includes) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200541 for (LY_ARRAY_COUNT_TYPE u = 0; u < LY_ARRAY_COUNT(mod->parsed->includes); ++u) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200542 if (mod->parsed->includes[u].submodule->latest_revision == 2) {
543 mod->parsed->includes[u].submodule->latest_revision = 1;
Radek Krejcie9e987e2018-10-31 12:50:27 +0100544 }
545 }
546 }
547 }
548}
549
Michal Vasko57c10cd2020-05-27 15:57:11 +0200550static LY_ERR
551ylib_feature(struct lyd_node *parent, const struct lys_module *cur_mod)
552{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200553 LY_ARRAY_COUNT_TYPE i;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200554
555 if (!cur_mod->implemented) {
556 /* no features can be enabled */
557 return LY_SUCCESS;
558 }
559
560 LY_ARRAY_FOR(cur_mod->compiled->features, i) {
561 if (!(cur_mod->compiled->features[i].flags & LYS_FENABLED)) {
562 continue;
563 }
564
Michal Vasko3a41dff2020-07-15 14:30:28 +0200565 LY_CHECK_RET(lyd_new_term(parent, NULL, "feature", cur_mod->compiled->features[i].name, NULL));
Michal Vasko57c10cd2020-05-27 15:57:11 +0200566 }
567
568 return LY_SUCCESS;
569}
570
571static LY_ERR
572ylib_deviation(struct lyd_node *parent, const struct lys_module *cur_mod, int bis)
573{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200574 LY_ARRAY_COUNT_TYPE i;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200575 struct lys_module *mod;
576
577 if (!cur_mod->implemented) {
578 /* no deviations of the module for certain */
579 return LY_SUCCESS;
580 }
581
582 LY_ARRAY_FOR(cur_mod->compiled->deviated_by, i) {
583 mod = cur_mod->compiled->deviated_by[i];
584
585 if (bis) {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200586 LY_CHECK_RET(lyd_new_term(parent, NULL, "deviation", mod->name, NULL));
Michal Vasko57c10cd2020-05-27 15:57:11 +0200587 } else {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200588 LY_CHECK_RET(lyd_new_list(parent, NULL, "deviation", NULL, mod->name,
589 (mod->parsed->revs ? mod->parsed->revs[0].date : "")));
Michal Vasko57c10cd2020-05-27 15:57:11 +0200590 }
591 }
592
593 return LY_SUCCESS;
594}
595
596static LY_ERR
597ylib_submodules(struct lyd_node *parent, const struct lys_module *cur_mod, int bis)
598{
Michal Vasko3a41dff2020-07-15 14:30:28 +0200599 LY_ERR ret;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200600 LY_ARRAY_COUNT_TYPE i;
Michal Vasko3a41dff2020-07-15 14:30:28 +0200601 struct lyd_node *cont;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200602 struct lysp_submodule *submod;
Michal Vasko3a41dff2020-07-15 14:30:28 +0200603 int r;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200604 char *str;
605
606 LY_ARRAY_FOR(cur_mod->parsed->includes, i) {
607 submod = cur_mod->parsed->includes[i].submodule;
608
609 if (bis) {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200610 LY_CHECK_RET(lyd_new_list(parent, NULL, "submodule", &cont, submod->name));
Michal Vasko57c10cd2020-05-27 15:57:11 +0200611
612 if (submod->revs) {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200613 LY_CHECK_RET(lyd_new_term(cont, NULL, "revision", submod->revs[0].date, NULL));
Michal Vasko57c10cd2020-05-27 15:57:11 +0200614 }
615 } else {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200616 LY_CHECK_RET(lyd_new_list(parent, NULL, "submodule", &cont, submod->name,
617 (submod->revs ? submod->revs[0].date : "")));
Michal Vasko57c10cd2020-05-27 15:57:11 +0200618 }
619
620 if (submod->filepath) {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200621 r = asprintf(&str, "file://%s", submod->filepath);
622 LY_CHECK_ERR_RET(r == -1, LOGMEM(cur_mod->ctx), LY_EMEM);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200623
Michal Vasko3a41dff2020-07-15 14:30:28 +0200624 ret = lyd_new_term(cont, NULL, bis ? "location" : "schema", str, NULL);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200625 free(str);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200626 LY_CHECK_RET(ret);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200627 }
628 }
629
630 return LY_SUCCESS;
631}
632
633API uint16_t
634ly_ctx_get_yanglib_id(const struct ly_ctx *ctx)
635{
636 return ctx->module_set_id;
637}
638
Michal Vasko3a41dff2020-07-15 14:30:28 +0200639API LY_ERR
640ly_ctx_get_yanglib_data(const struct ly_ctx *ctx, struct lyd_node **root_p)
Michal Vasko57c10cd2020-05-27 15:57:11 +0200641{
Michal Vasko3a41dff2020-07-15 14:30:28 +0200642 LY_ERR ret;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200643 uint32_t i;
Michal Vasko3a41dff2020-07-15 14:30:28 +0200644 int bis = 0, r;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200645 char id[8], *str;
646 const struct lys_module *mod;
Michal Vasko3a41dff2020-07-15 14:30:28 +0200647 struct lyd_node *root = NULL, *root_bis = NULL, *cont, *set_bis = NULL;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200648
Michal Vasko3a41dff2020-07-15 14:30:28 +0200649 LY_CHECK_ARG_RET(ctx, ctx, root_p, LY_EINVAL);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200650
651 mod = ly_ctx_get_module_implemented(ctx, "ietf-yang-library");
Michal Vasko3a41dff2020-07-15 14:30:28 +0200652 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 +0200653
654 if (mod->parsed->revs && !strcmp(mod->parsed->revs[0].date, "2016-06-21")) {
655 bis = 0;
656 } else if (mod->parsed->revs && !strcmp(mod->parsed->revs[0].date, IETF_YANG_LIB_REV)) {
657 bis = 1;
658 } else {
659 LOGERR(ctx, LY_EINVAL, "Incompatible ietf-yang-library version in context.");
Michal Vasko3a41dff2020-07-15 14:30:28 +0200660 return LY_EINVAL;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200661 }
662
Michal Vasko3a41dff2020-07-15 14:30:28 +0200663 LY_CHECK_GOTO(ret = lyd_new_inner(NULL, mod, "modules-state", &root), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200664
665 if (bis) {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200666 LY_CHECK_GOTO(ret = lyd_new_inner(NULL, mod, "yang-library", &root_bis), error);
667 LY_CHECK_GOTO(ret = lyd_new_list(root_bis, NULL, "module-set", &set_bis, "complete"), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200668 }
669
670 for (i = 0; i < ctx->list.count; ++i) {
671 mod = ctx->list.objs[i];
672
673 /*
674 * deprecated legacy
675 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200676 LY_CHECK_GOTO(ret = lyd_new_list(root, NULL, "module", &cont, mod->name,
677 (mod->parsed->revs ? mod->parsed->revs[0].date : "")), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200678
679 /* schema */
680 if (mod->filepath) {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200681 r = asprintf(&str, "file://%s", mod->filepath);
682 LY_CHECK_ERR_GOTO(r == -1, LOGMEM(ctx); ret = LY_EMEM, error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200683
Michal Vasko3a41dff2020-07-15 14:30:28 +0200684 ret = lyd_new_term(cont, NULL, "schema", str, NULL);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200685 free(str);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200686 LY_CHECK_GOTO(ret, error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200687 }
688
689 /* namespace */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200690 LY_CHECK_GOTO(ret = lyd_new_term(cont, NULL, "namespace", mod->ns, NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200691
692 /* feature leaf-list */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200693 LY_CHECK_GOTO(ret = ylib_feature(cont, mod), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200694
695 /* deviation list */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200696 LY_CHECK_GOTO(ret = ylib_deviation(cont, mod, 0), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200697
698 /* conformance-type */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200699 LY_CHECK_GOTO(ret = lyd_new_term(cont, NULL, "conformance-type", mod->implemented ? "implement" : "import",
700 NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200701
702 /* submodule list */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200703 LY_CHECK_GOTO(ret = ylib_submodules(cont, mod, 0), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200704
705 /*
706 * current revision
707 */
708 if (bis) {
709 /* name and revision */
710 if (mod->implemented) {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200711 LY_CHECK_GOTO(ret = lyd_new_list(set_bis, NULL, "module", &cont, mod->name), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200712
713 if (mod->parsed->revs) {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200714 LY_CHECK_GOTO(ret = lyd_new_term(cont, NULL, "revision", mod->parsed->revs[0].date, NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200715 }
716 } else {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200717 LY_CHECK_GOTO(ret = lyd_new_list(set_bis, NULL, "import-only-module", &cont, mod->name,
718 (mod->parsed->revs ? mod->parsed->revs[0].date : "")), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200719 }
720
721 /* namespace */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200722 LY_CHECK_GOTO(ret = lyd_new_term(cont, NULL, "namespace", mod->ns, NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200723
724 /* location */
725 if (mod->filepath) {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200726 r = asprintf(&str, "file://%s", mod->filepath);
727 LY_CHECK_ERR_GOTO(r == -1, LOGMEM(ctx); ret = LY_EMEM, error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200728
Michal Vasko3a41dff2020-07-15 14:30:28 +0200729 ret = lyd_new_term(cont, NULL, "schema", str, NULL);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200730 free(str);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200731 LY_CHECK_GOTO(ret, error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200732 }
733
734 /* submodule list */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200735 LY_CHECK_GOTO(ret = ylib_submodules(cont, mod, 1), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200736
737 /* feature list */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200738 LY_CHECK_GOTO(ret = ylib_feature(cont, mod), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200739
740 /* deviation */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200741 LY_CHECK_GOTO(ret = ylib_deviation(cont, mod, 1), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200742 }
743 }
744
745 /* IDs */
746 sprintf(id, "%u", ctx->module_set_id);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200747 LY_CHECK_GOTO(ret = lyd_new_term(root, NULL, "module-set-id", id, NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200748
749 if (bis) {
750 /* create one complete schema */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200751 LY_CHECK_GOTO(ret = lyd_new_list(root_bis, NULL, "schema", &cont, "complete"), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200752
Michal Vasko3a41dff2020-07-15 14:30:28 +0200753 LY_CHECK_GOTO(ret = lyd_new_term(cont, NULL, "module-set", "complete", NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200754
755 /* content-id */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200756 LY_CHECK_GOTO(ret = lyd_new_term(root_bis, NULL, "content-id", id, NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200757 }
758
759 if (root_bis) {
Michal Vaskob104f112020-07-17 09:54:54 +0200760 if (lyd_insert_sibling(root, root_bis, &root)) {
Michal Vasko57c10cd2020-05-27 15:57:11 +0200761 goto error;
762 }
Michal Vaskob104f112020-07-17 09:54:54 +0200763 root_bis = NULL;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200764 }
765
Michal Vasko3a41dff2020-07-15 14:30:28 +0200766 LY_CHECK_GOTO(ret = lyd_validate_all(&root, NULL, LYD_VALIDATE_PRESENT, NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200767
Michal Vasko3a41dff2020-07-15 14:30:28 +0200768 *root_p = root;
769 return LY_SUCCESS;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200770
771error:
772 lyd_free_all(root);
773 lyd_free_all(root_bis);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200774 return ret;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200775}
776
Radek Krejcie9e987e2018-10-31 12:50:27 +0100777API void
Radek Krejciad573502018-09-07 15:26:55 +0200778ly_ctx_destroy(struct ly_ctx *ctx, void (*private_destructor)(const struct lysc_node *node, void *priv))
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200779{
Radek Krejci418823a2018-09-20 16:42:13 +0200780 if (!ctx) {
781 return;
782 }
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200783
784 /* models list */
Michal Vaskob34480a2018-09-17 10:34:45 +0200785 for (; ctx->list.count; ctx->list.count--) {
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200786 /* remove the module */
Radek Krejci86d106e2018-10-18 09:53:19 +0200787 lys_module_free(ctx->list.objs[ctx->list.count - 1], private_destructor);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200788 }
789 free(ctx->list.objs);
790
791 /* search paths list */
Radek Krejcia40f21b2018-09-18 10:42:08 +0200792 ly_set_erase(&ctx->search_paths, free);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200793
794 /* clean the error list */
795 ly_err_clean(ctx, 0);
796 pthread_key_delete(ctx->errlist_key);
797
798 /* dictionary */
799 lydict_clean(&ctx->dict);
800
801#if 0 /* TODO when plugins implemented */
802 /* plugins - will be removed only if this is the last context */
803 ly_clean_plugins();
804#endif
805
806 free(ctx);
807}