blob: e8d0eb3c58125a8445fc06a0778b85e460d83599 [file] [log] [blame]
Radek Krejci0af5f5d2018-09-07 15:00:30 +02001/**
2 * @file context.c
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief Context implementations
5 *
6 * Copyright (c) 2015 - 2018 CESNET, z.s.p.o.
7 *
8 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
13 */
Radek Krejci535ea9f2020-05-29 16:01:05 +020014#define _GNU_SOURCE /* asprintf */
Radek Krejcif8dc59a2020-11-25 13:47:44 +010015#define _POSIX_C_SOURCE 200809L /* strdup */
Radek Krejci0af5f5d2018-09-07 15:00:30 +020016
Radek Krejcid43298b2021-03-25 16:17:15 +010017#if defined (__NetBSD__) || defined (__OpenBSD__)
Christian Hopps6f326212021-03-23 12:37:29 -040018#define _XOPEN_SOURCE
19#define _XOPEN_SOURCE_EXTENDED /* realpath */
20#endif
21
Radek Krejci535ea9f2020-05-29 16:01:05 +020022#include "context.h"
Radek Krejcib7db73a2018-10-24 14:18:40 +020023
Radek Krejci0af5f5d2018-09-07 15:00:30 +020024#include <errno.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020025#include <pthread.h>
26#include <stddef.h>
Radek Krejci535ea9f2020-05-29 16:01:05 +020027#include <stdio.h>
Radek Krejci7ada9a02018-09-07 15:34:05 +020028#include <stdlib.h>
29#include <string.h>
Radek Krejci0e212402018-09-20 11:29:38 +020030#include <sys/stat.h>
Radek Krejci0af5f5d2018-09-07 15:00:30 +020031#include <unistd.h>
32
Radek Krejci535ea9f2020-05-29 16:01:05 +020033#include "common.h"
Radek Krejciaa45bda2020-07-20 07:43:38 +020034#include "compat.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020035#include "hash_table.h"
Michal Vaskoafac7822020-10-20 14:22:26 +020036#include "in.h"
Radek Krejci7931b192020-06-25 17:05:03 +020037#include "parser_data.h"
Radek Krejci3e6632f2021-03-22 22:08:21 +010038#include "plugins_internal.h"
Radek Krejcica376bd2020-06-11 16:04:06 +020039#include "plugins_types.h"
Michal Vasko405cc9e2020-12-01 12:01:27 +010040#include "schema_compile.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020041#include "set.h"
42#include "tree.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020043#include "tree_data.h"
Radek Krejcica376bd2020-06-11 16:04:06 +020044#include "tree_schema.h"
Radek Krejci86d106e2018-10-18 09:53:19 +020045#include "tree_schema_internal.h"
Radek Krejci0af5f5d2018-09-07 15:00:30 +020046
Michal Vaskocf296c82020-05-27 11:16:45 +020047#include "../models/ietf-datastores@2018-02-14.h"
Michal Vasko69730152020-10-09 16:30:07 +020048#include "../models/ietf-inet-types@2013-07-15.h"
Michal Vaskocf296c82020-05-27 11:16:45 +020049#include "../models/ietf-yang-library@2019-01-04.h"
Michal Vasko69730152020-10-09 16:30:07 +020050#include "../models/ietf-yang-metadata@2016-08-05.h"
51#include "../models/ietf-yang-types@2013-07-15.h"
52#include "../models/yang@2020-06-17.h"
Michal Vaskocf296c82020-05-27 11:16:45 +020053#define IETF_YANG_LIB_REV "2019-01-04"
Radek Krejci0af5f5d2018-09-07 15:00:30 +020054
Radek Krejci0af5f5d2018-09-07 15:00:30 +020055static struct internal_modules_s {
56 const char *name;
57 const char *revision;
58 const char *data;
Radek Krejci857189e2020-09-01 13:26:36 +020059 ly_bool implemented;
Radek Krejci0af5f5d2018-09-07 15:00:30 +020060 LYS_INFORMAT format;
Michal Vaskode79e222020-08-10 11:55:46 +020061} internal_modules[] = {
Michal Vasko1de593f2020-11-23 16:11:41 +010062 {"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 +020063 {"yang", "2020-06-17", (const char *)yang_2020_06_17_yang, 1, LYS_IN_YANG},
64 {"ietf-inet-types", "2013-07-15", (const char *)ietf_inet_types_2013_07_15_yang, 0, LYS_IN_YANG},
65 {"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 +020066 /* ietf-datastores and ietf-yang-library must be right here at the end of the list! */
Michal Vasko22df3f02020-08-24 13:29:22 +020067 {"ietf-datastores", "2018-02-14", (const char *)ietf_datastores_2018_02_14_yang, 1, LYS_IN_YANG},
68 {"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 +020069};
70
Michal Vaskode79e222020-08-10 11:55:46 +020071#define LY_INTERNAL_MODS_COUNT sizeof(internal_modules) / sizeof(struct internal_modules_s)
72
Radek Krejci0af5f5d2018-09-07 15:00:30 +020073API LY_ERR
74ly_ctx_set_searchdir(struct ly_ctx *ctx, const char *search_dir)
75{
Radek Krejci0e212402018-09-20 11:29:38 +020076 struct stat st;
Radek Krejci0af5f5d2018-09-07 15:00:30 +020077 char *new_dir = NULL;
Radek Krejci0af5f5d2018-09-07 15:00:30 +020078
79 LY_CHECK_ARG_RET(ctx, ctx, LY_EINVAL);
80
81 if (search_dir) {
Radek Krejci0af5f5d2018-09-07 15:00:30 +020082 new_dir = realpath(search_dir, NULL);
Radek Krejcia77e0e12018-09-20 12:39:15 +020083 LY_CHECK_ERR_RET(!new_dir,
Michal Vasko69730152020-10-09 16:30:07 +020084 LOGERR(ctx, LY_ESYS, "Unable to use search directory \"%s\" (%s).", search_dir, strerror(errno)),
85 LY_EINVAL);
Radek Krejci3a077b92019-04-09 17:10:35 +020086 if (strcmp(search_dir, new_dir)) {
87 LOGVRB("Canonicalizing search directory string from \"%s\" to \"%s\".", search_dir, new_dir);
88 }
89 LY_CHECK_ERR_RET(access(new_dir, R_OK | X_OK),
Michal Vasko69730152020-10-09 16:30:07 +020090 LOGERR(ctx, LY_ESYS, "Unable to fully access search directory \"%s\" (%s).", new_dir, strerror(errno)); free(new_dir),
91 LY_EINVAL);
Radek Krejci3a077b92019-04-09 17:10:35 +020092 LY_CHECK_ERR_RET(stat(new_dir, &st),
Michal Vasko69730152020-10-09 16:30:07 +020093 LOGERR(ctx, LY_ESYS, "stat() failed for \"%s\" (%s).", new_dir, strerror(errno)); free(new_dir),
94 LY_ESYS);
Radek Krejci3a077b92019-04-09 17:10:35 +020095 LY_CHECK_ERR_RET(!S_ISDIR(st.st_mode),
Michal Vasko69730152020-10-09 16:30:07 +020096 LOGERR(ctx, LY_ESYS, "Given search directory \"%s\" is not a directory.", new_dir); free(new_dir),
97 LY_EINVAL);
Radek Krejci0e212402018-09-20 11:29:38 +020098 /* avoid path duplication */
Radek Krejci1deb5be2020-08-26 16:43:36 +020099 for (uint32_t u = 0; u < ctx->search_paths.count; ++u) {
Radek Krejci14946ab2018-09-20 13:42:06 +0200100 if (!strcmp(new_dir, ctx->search_paths.objs[u])) {
Radek Krejci0e212402018-09-20 11:29:38 +0200101 free(new_dir);
Radek Krejci14946ab2018-09-20 13:42:06 +0200102 return LY_EEXIST;
Radek Krejci0e212402018-09-20 11:29:38 +0200103 }
104 }
Radek Krejci3d92e442020-10-12 12:48:13 +0200105 if (ly_set_add(&ctx->search_paths, new_dir, 1, NULL)) {
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200106 free(new_dir);
107 return LY_EMEM;
108 }
109
Radek Krejcie9e987e2018-10-31 12:50:27 +0100110 /* new searchdir - possibly more latest revision available */
111 ly_ctx_reset_latests(ctx);
112
Radek Krejci0e212402018-09-20 11:29:38 +0200113 return LY_SUCCESS;
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200114 } else {
115 /* consider that no change is not actually an error */
116 return LY_SUCCESS;
117 }
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200118}
119
120API const char * const *
121ly_ctx_get_searchdirs(const struct ly_ctx *ctx)
122{
Radek Krejcif13b87b2020-12-01 22:02:17 +0100123#define LY_CTX_SEARCHDIRS_SIZE_STEP 8
Radek Krejci05026432018-09-20 12:13:43 +0200124 void **new;
125
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200126 LY_CHECK_ARG_RET(ctx, ctx, NULL);
Radek Krejci05026432018-09-20 12:13:43 +0200127
128 if (ctx->search_paths.count == ctx->search_paths.size) {
129 /* not enough space for terminating NULL byte */
Radek Krejcif13b87b2020-12-01 22:02:17 +0100130 new = realloc(((struct ly_ctx *)ctx)->search_paths.objs,
131 (ctx->search_paths.size + LY_CTX_SEARCHDIRS_SIZE_STEP) * sizeof *ctx->search_paths.objs);
Radek Krejci05026432018-09-20 12:13:43 +0200132 LY_CHECK_ERR_RET(!new, LOGMEM(NULL), NULL);
Radek Krejcif13b87b2020-12-01 22:02:17 +0100133 ((struct ly_ctx *)ctx)->search_paths.size += LY_CTX_SEARCHDIRS_SIZE_STEP;
Radek Krejci05026432018-09-20 12:13:43 +0200134 ((struct ly_ctx *)ctx)->search_paths.objs = new;
135 }
136 /* set terminating NULL byte to the strings list */
137 ctx->search_paths.objs[ctx->search_paths.count] = NULL;
138
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200139 return (const char * const *)ctx->search_paths.objs;
140}
141
142API LY_ERR
Radek Krejcie58f97f2020-08-18 11:45:08 +0200143ly_ctx_unset_searchdir(struct ly_ctx *ctx, const char *value)
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200144{
Radek Krejcicd649072018-09-20 12:14:45 +0200145 LY_CHECK_ARG_RET(ctx, ctx, LY_EINVAL);
Radek Krejcicd649072018-09-20 12:14:45 +0200146
Michal Vaskob34480a2018-09-17 10:34:45 +0200147 if (!ctx->search_paths.count) {
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200148 return LY_SUCCESS;
149 }
150
Radek Krejci0759b792018-09-20 13:53:15 +0200151 if (value) {
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200152 /* remove specific search directory */
Radek Krejci1deb5be2020-08-26 16:43:36 +0200153 uint32_t index;
154
Radek Krejci0759b792018-09-20 13:53:15 +0200155 for (index = 0; index < ctx->search_paths.count; ++index) {
156 if (!strcmp(value, ctx->search_paths.objs[index])) {
157 break;
158 }
159 }
160 if (index == ctx->search_paths.count) {
161 LOGARG(ctx, value);
162 return LY_EINVAL;
163 } else {
164 return ly_set_rm_index(&ctx->search_paths, index, free);
165 }
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200166 } else {
167 /* remove them all */
Radek Krejcia40f21b2018-09-18 10:42:08 +0200168 ly_set_erase(&ctx->search_paths, free);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200169 memset(&ctx->search_paths, 0, sizeof ctx->search_paths);
170 }
171
172 return LY_SUCCESS;
173}
174
175API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200176ly_ctx_unset_searchdir_last(struct ly_ctx *ctx, uint32_t count)
Radek Krejcied5acc52019-04-25 15:57:04 +0200177{
178 LY_CHECK_ARG_RET(ctx, ctx, LY_EINVAL);
179
Radek Krejcie58f97f2020-08-18 11:45:08 +0200180 for ( ; count > 0 && ctx->search_paths.count; --count) {
181 LY_CHECK_RET(ly_set_rm_index(&ctx->search_paths, ctx->search_paths.count - 1, free))
Radek Krejcied5acc52019-04-25 15:57:04 +0200182 }
183
184 return LY_SUCCESS;
185}
186
187API const struct lys_module *
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100188ly_ctx_load_module(struct ly_ctx *ctx, const char *name, const char *revision, const char **features)
Radek Krejcied5acc52019-04-25 15:57:04 +0200189{
190 struct lys_module *result = NULL;
Michal Vasko405cc9e2020-12-01 12:01:27 +0100191 struct lys_glob_unres unres = {0};
192 LY_ERR ret = LY_SUCCESS;
Radek Krejcied5acc52019-04-25 15:57:04 +0200193
194 LY_CHECK_ARG_RET(ctx, ctx, name, NULL);
195
Michal Vasko405cc9e2020-12-01 12:01:27 +0100196 LY_CHECK_GOTO(ret = lysp_load_module(ctx, name, revision, 1, features, &unres, &result), cleanup);
197
198 /* resolve unres and revert, if needed */
199 LY_CHECK_GOTO(ret = lys_compile_unres_glob(ctx, &unres), cleanup);
200
201cleanup:
202 if (ret) {
203 lys_compile_unres_glob_revert(ctx, &unres);
204 result = NULL;
205 }
206 lys_compile_unres_glob_erase(ctx, &unres);
Radek Krejcied5acc52019-04-25 15:57:04 +0200207 return result;
208}
209
210API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200211ly_ctx_new(const char *search_dir, uint16_t options, struct ly_ctx **new_ctx)
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200212{
213 struct ly_ctx *ctx = NULL;
214 struct lys_module *module;
215 char *search_dir_list;
216 char *sep, *dir;
Michal Vaskode79e222020-08-10 11:55:46 +0200217 uint32_t i;
Michal Vasko63f3d842020-07-08 10:10:14 +0200218 struct ly_in *in = NULL;
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200219 LY_ERR rc = LY_SUCCESS;
Michal Vasko405cc9e2020-12-01 12:01:27 +0100220 struct lys_glob_unres unres = {0};
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200221
Radek Krejcied5acc52019-04-25 15:57:04 +0200222 LY_CHECK_ARG_RET(NULL, new_ctx, LY_EINVAL);
223
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200224 ctx = calloc(1, sizeof *ctx);
Radek Krejciad573502018-09-07 15:26:55 +0200225 LY_CHECK_ERR_RET(!ctx, LOGMEM(NULL), LY_EMEM);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200226
227 /* dictionary */
228 lydict_init(&ctx->dict);
229
230 /* plugins */
Radek Krejci3e6632f2021-03-22 22:08:21 +0100231 LY_CHECK_ERR_RET(lyplg_init(), LOGINT(NULL), LY_EINT);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200232
Radek Krejciaddfc9a2020-12-17 20:46:35 +0100233 /* initialize thread-specific keys */
Radek Krejci1e008d22020-08-17 11:37:37 +0200234 while ((pthread_key_create(&ctx->errlist_key, ly_err_free)) == EAGAIN) {}
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200235
236 /* models list */
237 ctx->flags = options;
238 if (search_dir) {
239 search_dir_list = strdup(search_dir);
240 LY_CHECK_ERR_GOTO(!search_dir_list, LOGMEM(NULL); rc = LY_EMEM, error);
241
242 for (dir = search_dir_list; (sep = strchr(dir, ':')) != NULL && rc == LY_SUCCESS; dir = sep + 1) {
243 *sep = 0;
244 rc = ly_ctx_set_searchdir(ctx, dir);
Radek Krejci14946ab2018-09-20 13:42:06 +0200245 if (rc == LY_EEXIST) {
246 /* ignore duplication */
247 rc = LY_SUCCESS;
248 }
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200249 }
Michal Vasko69730152020-10-09 16:30:07 +0200250 if (*dir && (rc == LY_SUCCESS)) {
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200251 rc = ly_ctx_set_searchdir(ctx, dir);
Radek Krejci14946ab2018-09-20 13:42:06 +0200252 if (rc == LY_EEXIST) {
253 /* ignore duplication */
254 rc = LY_SUCCESS;
255 }
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200256 }
257 free(search_dir_list);
258
259 /* If ly_ctx_set_searchdir() failed, the error is already logged. Just exit */
260 if (rc != LY_SUCCESS) {
261 goto error;
262 }
263 }
Michal Vasko794ab4b2021-03-31 09:42:19 +0200264 ctx->change_count = 1;
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200265
Michal Vasko63f3d842020-07-08 10:10:14 +0200266 /* create dummy in */
267 rc = ly_in_new_memory(internal_modules[0].data, &in);
268 LY_CHECK_GOTO(rc, error);
269
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200270 /* load internal modules */
Michal Vasko25d6ad02020-10-22 12:20:22 +0200271 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 +0200272 ly_in_memory(in, internal_modules[i].data);
Michal Vasko7a0b0762020-09-02 16:37:01 +0200273 LY_CHECK_GOTO(rc = lys_create_module(ctx, in, internal_modules[i].format, internal_modules[i].implemented,
Michal Vasko405cc9e2020-12-01 12:01:27 +0100274 NULL, NULL, NULL, &unres, &module), error);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200275 }
276
Michal Vasko405cc9e2020-12-01 12:01:27 +0100277 /* resolve global unres */
278 LY_CHECK_GOTO(rc = lys_compile_unres_glob(ctx, &unres), error);
279
Michal Vasko63f3d842020-07-08 10:10:14 +0200280 ly_in_free(in, 0);
Michal Vasko405cc9e2020-12-01 12:01:27 +0100281 lys_compile_unres_glob_erase(ctx, &unres);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200282 *new_ctx = ctx;
283 return rc;
284
285error:
Michal Vasko63f3d842020-07-08 10:10:14 +0200286 ly_in_free(in, 0);
Michal Vasko405cc9e2020-12-01 12:01:27 +0100287 lys_compile_unres_glob_erase(ctx, &unres);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200288 ly_ctx_destroy(ctx, NULL);
289 return rc;
290}
Radek Krejci0f969882020-08-21 16:56:47 +0200291
Radek Krejci1deb5be2020-08-26 16:43:36 +0200292API uint16_t
Radek Krejci3fbe89a2018-09-20 13:54:46 +0200293ly_ctx_get_options(const struct ly_ctx *ctx)
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200294{
Radek Krejci3fbe89a2018-09-20 13:54:46 +0200295 LY_CHECK_ARG_RET(ctx, ctx, 0);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200296 return ctx->flags;
297}
298
Radek Krejcica828d92018-09-20 14:19:43 +0200299API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200300ly_ctx_set_options(struct ly_ctx *ctx, uint16_t option)
Radek Krejcica828d92018-09-20 14:19:43 +0200301{
302 LY_CHECK_ARG_RET(ctx, ctx, LY_EINVAL);
Michal Vasko25d6ad02020-10-22 12:20:22 +0200303 LY_CHECK_ERR_RET(option & LY_CTX_NO_YANGLIBRARY, LOGARG(ctx, option), LY_EINVAL);
Radek Krejcica828d92018-09-20 14:19:43 +0200304
305 /* set the option(s) */
306 ctx->flags |= option;
307
308 return LY_SUCCESS;
309}
310
311API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200312ly_ctx_unset_options(struct ly_ctx *ctx, uint16_t option)
Radek Krejcica828d92018-09-20 14:19:43 +0200313{
314 LY_CHECK_ARG_RET(ctx, ctx, LY_EINVAL);
Michal Vasko25d6ad02020-10-22 12:20:22 +0200315 LY_CHECK_ERR_RET(option & LY_CTX_NO_YANGLIBRARY, LOGARG(ctx, option), LY_EINVAL);
Radek Krejcica828d92018-09-20 14:19:43 +0200316
317 /* unset the option(s) */
318 ctx->flags &= ~option;
319
320 return LY_SUCCESS;
321}
322
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200323API uint16_t
Michal Vasko794ab4b2021-03-31 09:42:19 +0200324ly_ctx_get_change_count(const struct ly_ctx *ctx)
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200325{
Radek Krejci3fbe89a2018-09-20 13:54:46 +0200326 LY_CHECK_ARG_RET(ctx, ctx, 0);
Michal Vasko794ab4b2021-03-31 09:42:19 +0200327
328 return ctx->change_count;
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200329}
330
Radek Krejcid33273d2018-10-25 14:55:52 +0200331API void
332ly_ctx_set_module_imp_clb(struct ly_ctx *ctx, ly_module_imp_clb clb, void *user_data)
333{
Michal Vaskod989ba02020-08-24 10:59:24 +0200334 LY_CHECK_ARG_RET(ctx, ctx, );
Radek Krejcid33273d2018-10-25 14:55:52 +0200335
336 ctx->imp_clb = clb;
337 ctx->imp_clb_data = user_data;
338}
339
340API ly_module_imp_clb
341ly_ctx_get_module_imp_clb(const struct ly_ctx *ctx, void **user_data)
342{
343 LY_CHECK_ARG_RET(ctx, ctx, NULL);
344
345 if (user_data) {
346 *user_data = ctx->imp_clb_data;
347 }
348 return ctx->imp_clb;
349}
350
Radek Krejcied5acc52019-04-25 15:57:04 +0200351API const struct lys_module *
Radek Krejci1deb5be2020-08-26 16:43:36 +0200352ly_ctx_get_module_iter(const struct ly_ctx *ctx, uint32_t *index)
Radek Krejcied5acc52019-04-25 15:57:04 +0200353{
354 LY_CHECK_ARG_RET(ctx, ctx, index, NULL);
355
Radek Krejci2390fb52019-04-30 13:27:43 +0200356 if (*index < (unsigned)ctx->list.count) {
Radek Krejcied5acc52019-04-25 15:57:04 +0200357 return ctx->list.objs[(*index)++];
Radek Krejci2390fb52019-04-30 13:27:43 +0200358 } else {
359 return NULL;
Radek Krejcied5acc52019-04-25 15:57:04 +0200360 }
Radek Krejcied5acc52019-04-25 15:57:04 +0200361}
362
Radek Krejcib7db73a2018-10-24 14:18:40 +0200363/**
364 * @brief Iterate over the modules in the given context. Returned modules must match the given key at the offset of
365 * lysp_module and lysc_module structures (they are supposed to be placed at the same offset in both structures).
366 *
367 * @param[in] ctx Context where to iterate.
368 * @param[in] key Key value to search for.
Radek Krejci0ad51f12020-07-16 12:08:12 +0200369 * @param[in] key_size Optional length of the @p key. If zero, NULL-terminated key is expected.
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100370 * @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 +0200371 * @param[in,out] Iterator to pass between the function calls. On the first call, the variable is supposed to be
372 * initiated to 0. After each call returning a module, the value is greater by 1 than the index of the returned
373 * module in the context.
374 * @return Module matching the given key, NULL if no such module found.
375 */
Radek Krejci0af46292019-01-11 16:02:31 +0100376static struct lys_module *
Radek Krejci1deb5be2020-08-26 16:43:36 +0200377ly_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 +0200378{
Radek Krejci0af46292019-01-11 16:02:31 +0100379 struct lys_module *mod;
Radek Krejcib7db73a2018-10-24 14:18:40 +0200380 const char *value;
381
Michal Vaskod989ba02020-08-24 10:59:24 +0200382 for ( ; *index < ctx->list.count; ++(*index)) {
Radek Krejcib7db73a2018-10-24 14:18:40 +0200383 mod = ctx->list.objs[*index];
Michal Vasko22df3f02020-08-24 13:29:22 +0200384 value = *(const char **)(((int8_t *)(mod)) + key_offset);
Michal Vasko69730152020-10-09 16:30:07 +0200385 if ((!key_size && !strcmp(key, value)) || (key_size && !strncmp(key, value, key_size) && (value[key_size] == '\0'))) {
Radek Krejcib7db73a2018-10-24 14:18:40 +0200386 /* increment index for the next run */
387 ++(*index);
388 return mod;
389 }
390 }
391 /* done */
392 return NULL;
393}
394
395/**
396 * @brief Unifying function for ly_ctx_get_module() and ly_ctx_get_module_ns()
397 * @param[in] ctx Context where to search.
398 * @param[in] key Name or Namespace as a search key.
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100399 * @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 +0200400 * @param[in] revision Revision date to match. If NULL, the matching module must have no revision. To search for the latest
401 * revision module, use ly_ctx_get_module_latest_by().
402 * @return Matching module if any.
403 */
Radek Krejci0af46292019-01-11 16:02:31 +0100404static struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200405ly_ctx_get_module_by(const struct ly_ctx *ctx, const char *key, size_t key_offset, const char *revision)
406{
Radek Krejci0af46292019-01-11 16:02:31 +0100407 struct lys_module *mod;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200408 uint32_t index = 0;
Radek Krejcib7db73a2018-10-24 14:18:40 +0200409
Radek Krejci0ad51f12020-07-16 12:08:12 +0200410 while ((mod = ly_ctx_get_module_by_iter(ctx, key, 0, key_offset, &index))) {
Radek Krejcib7db73a2018-10-24 14:18:40 +0200411 if (!revision) {
Radek Krejci0af46292019-01-11 16:02:31 +0100412 if (!mod->revision) {
Radek Krejcib7db73a2018-10-24 14:18:40 +0200413 /* found requested module without revision */
414 return mod;
415 }
416 } else {
Radek Krejci0af46292019-01-11 16:02:31 +0100417 if (mod->revision && !strcmp(mod->revision, revision)) {
Radek Krejcib7db73a2018-10-24 14:18:40 +0200418 /* found requested module of the specific revision */
419 return mod;
420 }
421 }
422 }
423
424 return NULL;
425}
426
Radek Krejci0af46292019-01-11 16:02:31 +0100427API struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200428ly_ctx_get_module_ns(const struct ly_ctx *ctx, const char *ns, const char *revision)
429{
430 LY_CHECK_ARG_RET(ctx, ctx, ns, NULL);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100431 return ly_ctx_get_module_by(ctx, ns, offsetof(struct lys_module, ns), revision);
Radek Krejcib7db73a2018-10-24 14:18:40 +0200432}
433
Radek Krejci0af46292019-01-11 16:02:31 +0100434API struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200435ly_ctx_get_module(const struct ly_ctx *ctx, const char *name, const char *revision)
436{
437 LY_CHECK_ARG_RET(ctx, ctx, name, NULL);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100438 return ly_ctx_get_module_by(ctx, name, offsetof(struct lys_module, name), revision);
Radek Krejcib7db73a2018-10-24 14:18:40 +0200439}
440
441/**
442 * @brief Unifying function for ly_ctx_get_module_latest() and ly_ctx_get_module_latest_ns()
443 * @param[in] ctx Context where to search.
444 * @param[in] key Name or Namespace as a search key.
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100445 * @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 +0200446 * @return Matching module if any.
447 */
Radek Krejci0af46292019-01-11 16:02:31 +0100448static struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200449ly_ctx_get_module_latest_by(const struct ly_ctx *ctx, const char *key, size_t key_offset)
450{
Radek Krejci0af46292019-01-11 16:02:31 +0100451 struct lys_module *mod;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200452 uint32_t index = 0;
Radek Krejcib7db73a2018-10-24 14:18:40 +0200453
Radek Krejci0ad51f12020-07-16 12:08:12 +0200454 while ((mod = ly_ctx_get_module_by_iter(ctx, key, 0, key_offset, &index))) {
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100455 if (mod->latest_revision) {
Radek Krejci9f5e6fb2018-10-25 09:26:12 +0200456 return mod;
Radek Krejcib7db73a2018-10-24 14:18:40 +0200457 }
458 }
459
Radek Krejci9f5e6fb2018-10-25 09:26:12 +0200460 return NULL;
Radek Krejcib7db73a2018-10-24 14:18:40 +0200461}
462
Radek Krejci0af46292019-01-11 16:02:31 +0100463API struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200464ly_ctx_get_module_latest(const struct ly_ctx *ctx, const char *name)
465{
466 LY_CHECK_ARG_RET(ctx, ctx, name, NULL);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100467 return ly_ctx_get_module_latest_by(ctx, name, offsetof(struct lys_module, name));
Radek Krejcib7db73a2018-10-24 14:18:40 +0200468}
469
Radek Krejci0af46292019-01-11 16:02:31 +0100470API struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200471ly_ctx_get_module_latest_ns(const struct ly_ctx *ctx, const char *ns)
472{
473 LY_CHECK_ARG_RET(ctx, ctx, ns, NULL);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100474 return ly_ctx_get_module_latest_by(ctx, ns, offsetof(struct lys_module, ns));
Radek Krejcib7db73a2018-10-24 14:18:40 +0200475}
476
477/**
478 * @brief Unifying function for ly_ctx_get_module_implemented() and ly_ctx_get_module_implemented_ns()
479 * @param[in] ctx Context where to search.
480 * @param[in] key Name or Namespace as a search key.
Radek Krejci0ad51f12020-07-16 12:08:12 +0200481 * @param[in] key_size Optional length of the @p key. If zero, NULL-terminated key is expected.
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100482 * @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 +0200483 * @return Matching module if any.
484 */
Radek Krejci0af46292019-01-11 16:02:31 +0100485static struct lys_module *
Radek Krejci0ad51f12020-07-16 12:08:12 +0200486ly_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 +0200487{
Radek Krejci0af46292019-01-11 16:02:31 +0100488 struct lys_module *mod;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200489 uint32_t index = 0;
Radek Krejcib7db73a2018-10-24 14:18:40 +0200490
Radek Krejci0ad51f12020-07-16 12:08:12 +0200491 while ((mod = ly_ctx_get_module_by_iter(ctx, key, key_size, key_offset, &index))) {
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100492 if (mod->implemented) {
Radek Krejcib7db73a2018-10-24 14:18:40 +0200493 return mod;
494 }
495 }
496
497 return NULL;
498}
499
Radek Krejci0af46292019-01-11 16:02:31 +0100500API struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200501ly_ctx_get_module_implemented(const struct ly_ctx *ctx, const char *name)
502{
503 LY_CHECK_ARG_RET(ctx, ctx, name, NULL);
Radek Krejci0ad51f12020-07-16 12:08:12 +0200504 return ly_ctx_get_module_implemented_by(ctx, name, 0, offsetof(struct lys_module, name));
505}
506
507struct lys_module *
508ly_ctx_get_module_implemented2(const struct ly_ctx *ctx, const char *name, size_t name_len)
509{
510 LY_CHECK_ARG_RET(ctx, ctx, name, NULL);
511 return ly_ctx_get_module_implemented_by(ctx, name, name_len, offsetof(struct lys_module, name));
Radek Krejcib7db73a2018-10-24 14:18:40 +0200512}
513
Radek Krejci0af46292019-01-11 16:02:31 +0100514API struct lys_module *
Radek Krejcib7db73a2018-10-24 14:18:40 +0200515ly_ctx_get_module_implemented_ns(const struct ly_ctx *ctx, const char *ns)
516{
517 LY_CHECK_ARG_RET(ctx, ctx, ns, NULL);
Radek Krejci0ad51f12020-07-16 12:08:12 +0200518 return ly_ctx_get_module_implemented_by(ctx, ns, 0, offsetof(struct lys_module, ns));
Radek Krejcib7db73a2018-10-24 14:18:40 +0200519}
520
Michal Vasko8dc31992021-02-22 10:30:47 +0100521/**
522 * @brief Try to find a submodule in a module.
523 *
524 * @param[in] module Module where to search in.
525 * @param[in] submodule Name of the submodule to find.
526 * @param[in] revision Revision of the submodule to find. NULL for submodule with no revision.
527 * @param[in] latest Ignore @p revision and look for the latest revision.
528 * @return Pointer to the specified submodule if it is present in the context.
529 */
530static const struct lysp_submodule *
531_ly_ctx_get_submodule2(const struct lys_module *module, const char *submodule, const char *revision, ly_bool latest)
Radek Krejcid33273d2018-10-25 14:55:52 +0200532{
Radek Krejcid33273d2018-10-25 14:55:52 +0200533 struct lysp_include *inc;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200534 LY_ARRAY_COUNT_TYPE u;
Radek Krejcid33273d2018-10-25 14:55:52 +0200535
Michal Vasko8dc31992021-02-22 10:30:47 +0100536 LY_CHECK_ARG_RET(NULL, module, module->parsed, submodule, NULL);
Michal Vaskoc3781c32020-10-06 14:04:08 +0200537
Michal Vasko8dc31992021-02-22 10:30:47 +0100538 LY_ARRAY_FOR(module->parsed->includes, u) {
539 if (module->parsed->includes[u].submodule && !strcmp(submodule, module->parsed->includes[u].submodule->name)) {
540 inc = &module->parsed->includes[u];
541
542 if (latest && inc->submodule->latest_revision) {
543 /* latest revision */
544 return inc->submodule;
545 } else if (!revision && !inc->submodule->revs) {
546 /* no revision */
547 return inc->submodule;
548 } else if (revision && inc->submodule->revs && !strcmp(revision, inc->submodule->revs[0].date)) {
549 /* specific revision */
550 return inc->submodule;
551 }
Michal Vaskoc3781c32020-10-06 14:04:08 +0200552 }
Michal Vaskoc3781c32020-10-06 14:04:08 +0200553 }
Radek Krejcifaa1eac2018-10-30 14:34:55 +0100554
Michal Vasko8dc31992021-02-22 10:30:47 +0100555 return NULL;
556}
557
558/**
559 * @brief Try to find a submodule in the context.
560 *
561 * @param[in] ctx Context where to search in.
562 * @param[in] submodule Name of the submodule to find.
563 * @param[in] revision Revision of the submodule to find. NULL for submodule with no revision.
564 * @param[in] latest Ignore @p revision and look for the latest revision.
565 * @return Pointer to the specified submodule if it is present in the context.
566 */
567static const struct lysp_submodule *
568_ly_ctx_get_submodule(const struct ly_ctx *ctx, const char *submodule, const char *revision, ly_bool latest)
569{
570 const struct lys_module *mod;
571 const struct lysp_submodule *submod = NULL;
572 uint32_t v;
573
574 LY_CHECK_ARG_RET(ctx, ctx, submodule, NULL);
575
Radek Krejcifaa1eac2018-10-30 14:34:55 +0100576 for (v = 0; v < ctx->list.count; ++v) {
577 mod = ctx->list.objs[v];
Radek Krejcid33273d2018-10-25 14:55:52 +0200578 if (!mod->parsed) {
579 continue;
580 }
581
Michal Vasko8dc31992021-02-22 10:30:47 +0100582 submod = _ly_ctx_get_submodule2(mod, submodule, revision, latest);
583 if (submod) {
Michal Vaskoc3781c32020-10-06 14:04:08 +0200584 break;
585 }
Radek Krejcid33273d2018-10-25 14:55:52 +0200586 }
587
Michal Vasko8dc31992021-02-22 10:30:47 +0100588 return submod;
589}
590
591API const struct lysp_submodule *
592ly_ctx_get_submodule(const struct ly_ctx *ctx, const char *submodule, const char *revision)
593{
594 return _ly_ctx_get_submodule(ctx, submodule, revision, 0);
595}
596
597API const struct lysp_submodule *
598ly_ctx_get_submodule_latest(const struct ly_ctx *ctx, const char *submodule)
599{
600 return _ly_ctx_get_submodule(ctx, submodule, NULL, 1);
601}
602
603API const struct lysp_submodule *
604ly_ctx_get_submodule2(const struct lys_module *module, const char *submodule, const char *revision)
605{
606 return _ly_ctx_get_submodule2(module, submodule, revision, 0);
607}
608
609API const struct lysp_submodule *
610ly_ctx_get_submodule2_latest(const struct lys_module *module, const char *submodule)
611{
612 return _ly_ctx_get_submodule2(module, submodule, NULL, 1);
Radek Krejcid33273d2018-10-25 14:55:52 +0200613}
614
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200615API void
Radek Krejcie9e987e2018-10-31 12:50:27 +0100616ly_ctx_reset_latests(struct ly_ctx *ctx)
617{
Radek Krejcie9e987e2018-10-31 12:50:27 +0100618 struct lys_module *mod;
619
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200620 for (uint32_t v = 0; v < ctx->list.count; ++v) {
621 mod = ctx->list.objs[v];
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100622 if (mod->latest_revision == 2) {
623 mod->latest_revision = 1;
Radek Krejcie9e987e2018-10-31 12:50:27 +0100624 }
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100625 if (mod->parsed && mod->parsed->includes) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200626 for (LY_ARRAY_COUNT_TYPE u = 0; u < LY_ARRAY_COUNT(mod->parsed->includes); ++u) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200627 if (mod->parsed->includes[u].submodule->latest_revision == 2) {
628 mod->parsed->includes[u].submodule->latest_revision = 1;
Radek Krejcie9e987e2018-10-31 12:50:27 +0100629 }
630 }
631 }
632 }
633}
634
Michal Vaskode79e222020-08-10 11:55:46 +0200635API uint32_t
Radek Krejci0a60f1d2020-10-26 22:24:43 +0100636ly_ctx_internal_modules_count(const struct ly_ctx *ctx)
Michal Vaskode79e222020-08-10 11:55:46 +0200637{
638 if (!ctx) {
639 return 0;
640 }
641
Michal Vasko25d6ad02020-10-22 12:20:22 +0200642 if (ctx->flags & LY_CTX_NO_YANGLIBRARY) {
Michal Vaskode79e222020-08-10 11:55:46 +0200643 return LY_INTERNAL_MODS_COUNT - 2;
644 } else {
645 return LY_INTERNAL_MODS_COUNT;
646 }
647}
648
Michal Vasko57c10cd2020-05-27 15:57:11 +0200649static LY_ERR
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100650ylib_feature(struct lyd_node *parent, const struct lysp_module *pmod)
Michal Vasko57c10cd2020-05-27 15:57:11 +0200651{
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100652 LY_ARRAY_COUNT_TYPE u;
653 struct lysp_feature *f;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200654
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100655 if (!pmod->mod->implemented) {
Michal Vasko57c10cd2020-05-27 15:57:11 +0200656 /* no features can be enabled */
657 return LY_SUCCESS;
658 }
659
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100660 LY_ARRAY_FOR(pmod->features, struct lysp_feature, f) {
661 if (!(f->flags & LYS_FENABLED)) {
Michal Vasko57c10cd2020-05-27 15:57:11 +0200662 continue;
663 }
664
Radek Krejci41ac9942020-11-02 14:47:56 +0100665 LY_CHECK_RET(lyd_new_term(parent, NULL, "feature", f->name, 0, NULL));
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100666 }
667
668 LY_ARRAY_FOR(pmod->includes, u) {
669 LY_ARRAY_FOR(pmod->includes[u].submodule->features, struct lysp_feature, f) {
670 if (!(f->flags & LYS_FENABLED)) {
671 continue;
672 }
673
Radek Krejci41ac9942020-11-02 14:47:56 +0100674 LY_CHECK_RET(lyd_new_term(parent, NULL, "feature", f->name, 0, NULL));
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100675 }
Michal Vasko57c10cd2020-05-27 15:57:11 +0200676 }
677
678 return LY_SUCCESS;
679}
680
681static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +0200682ylib_deviation(struct lyd_node *parent, const struct lys_module *cur_mod, ly_bool bis)
Michal Vasko57c10cd2020-05-27 15:57:11 +0200683{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200684 LY_ARRAY_COUNT_TYPE i;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200685 struct lys_module *mod;
686
687 if (!cur_mod->implemented) {
688 /* no deviations of the module for certain */
689 return LY_SUCCESS;
690 }
691
Michal Vasko7f45cf22020-10-01 12:49:44 +0200692 LY_ARRAY_FOR(cur_mod->deviated_by, i) {
693 mod = cur_mod->deviated_by[i];
Michal Vasko57c10cd2020-05-27 15:57:11 +0200694
695 if (bis) {
Radek Krejci41ac9942020-11-02 14:47:56 +0100696 LY_CHECK_RET(lyd_new_term(parent, NULL, "deviation", mod->name, 0, NULL));
Michal Vasko57c10cd2020-05-27 15:57:11 +0200697 } else {
Radek Krejci41ac9942020-11-02 14:47:56 +0100698 LY_CHECK_RET(lyd_new_list(parent, NULL, "deviation", 0, NULL, mod->name,
Radek Krejci0f969882020-08-21 16:56:47 +0200699 (mod->parsed->revs ? mod->parsed->revs[0].date : "")));
Michal Vasko57c10cd2020-05-27 15:57:11 +0200700 }
701 }
702
703 return LY_SUCCESS;
704}
705
706static LY_ERR
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100707ylib_submodules(struct lyd_node *parent, const struct lysp_module *pmod, ly_bool bis)
Michal Vasko57c10cd2020-05-27 15:57:11 +0200708{
Michal Vasko3a41dff2020-07-15 14:30:28 +0200709 LY_ERR ret;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200710 LY_ARRAY_COUNT_TYPE i;
Michal Vasko3a41dff2020-07-15 14:30:28 +0200711 struct lyd_node *cont;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200712 struct lysp_submodule *submod;
Michal Vasko3a41dff2020-07-15 14:30:28 +0200713 int r;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200714 char *str;
715
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100716 LY_ARRAY_FOR(pmod->includes, i) {
717 submod = pmod->includes[i].submodule;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200718
719 if (bis) {
Radek Krejci41ac9942020-11-02 14:47:56 +0100720 LY_CHECK_RET(lyd_new_list(parent, NULL, "submodule", 0, &cont, submod->name));
Michal Vasko57c10cd2020-05-27 15:57:11 +0200721
722 if (submod->revs) {
Radek Krejci41ac9942020-11-02 14:47:56 +0100723 LY_CHECK_RET(lyd_new_term(cont, NULL, "revision", submod->revs[0].date, 0, NULL));
Michal Vasko57c10cd2020-05-27 15:57:11 +0200724 }
725 } else {
Radek Krejci41ac9942020-11-02 14:47:56 +0100726 LY_CHECK_RET(lyd_new_list(parent, NULL, "submodule", 0, &cont, submod->name,
Radek Krejci0f969882020-08-21 16:56:47 +0200727 (submod->revs ? submod->revs[0].date : "")));
Michal Vasko57c10cd2020-05-27 15:57:11 +0200728 }
729
730 if (submod->filepath) {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200731 r = asprintf(&str, "file://%s", submod->filepath);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100732 LY_CHECK_ERR_RET(r == -1, LOGMEM(pmod->mod->ctx), LY_EMEM);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200733
Radek Krejci41ac9942020-11-02 14:47:56 +0100734 ret = lyd_new_term(cont, NULL, bis ? "location" : "schema", str, 0, NULL);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200735 free(str);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200736 LY_CHECK_RET(ret);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200737 }
738 }
739
740 return LY_SUCCESS;
741}
742
Michal Vasko3a41dff2020-07-15 14:30:28 +0200743API LY_ERR
Michal Vasko794ab4b2021-03-31 09:42:19 +0200744ly_ctx_get_yanglib_data(const struct ly_ctx *ctx, struct lyd_node **root_p, const char *content_id_format, ...)
Michal Vasko57c10cd2020-05-27 15:57:11 +0200745{
Michal Vasko3a41dff2020-07-15 14:30:28 +0200746 LY_ERR ret;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200747 uint32_t i;
Radek Krejci857189e2020-09-01 13:26:36 +0200748 ly_bool bis = 0;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200749 int r;
Radek Krejcif13b87b2020-12-01 22:02:17 +0100750 char *str;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200751 const struct lys_module *mod;
Michal Vasko3a41dff2020-07-15 14:30:28 +0200752 struct lyd_node *root = NULL, *root_bis = NULL, *cont, *set_bis = NULL;
Michal Vasko794ab4b2021-03-31 09:42:19 +0200753 va_list ap;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200754
Michal Vasko3a41dff2020-07-15 14:30:28 +0200755 LY_CHECK_ARG_RET(ctx, ctx, root_p, LY_EINVAL);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200756
757 mod = ly_ctx_get_module_implemented(ctx, "ietf-yang-library");
Michal Vasko3a41dff2020-07-15 14:30:28 +0200758 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 +0200759
760 if (mod->parsed->revs && !strcmp(mod->parsed->revs[0].date, "2016-06-21")) {
761 bis = 0;
762 } else if (mod->parsed->revs && !strcmp(mod->parsed->revs[0].date, IETF_YANG_LIB_REV)) {
763 bis = 1;
764 } else {
765 LOGERR(ctx, LY_EINVAL, "Incompatible ietf-yang-library version in context.");
Michal Vasko3a41dff2020-07-15 14:30:28 +0200766 return LY_EINVAL;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200767 }
768
Radek Krejci41ac9942020-11-02 14:47:56 +0100769 LY_CHECK_GOTO(ret = lyd_new_inner(NULL, mod, "modules-state", 0, &root), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200770
771 if (bis) {
Radek Krejci41ac9942020-11-02 14:47:56 +0100772 LY_CHECK_GOTO(ret = lyd_new_inner(NULL, mod, "yang-library", 0, &root_bis), error);
773 LY_CHECK_GOTO(ret = lyd_new_list(root_bis, NULL, "module-set", 0, &set_bis, "complete"), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200774 }
775
776 for (i = 0; i < ctx->list.count; ++i) {
777 mod = ctx->list.objs[i];
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100778 if (!mod->parsed) {
779 LOGERR(ctx, LY_ENOTFOUND, "Parsed module \"%s\" missing in the context.", mod->name);
780 goto error;
781 }
Michal Vasko57c10cd2020-05-27 15:57:11 +0200782
783 /*
784 * deprecated legacy
785 */
Radek Krejci41ac9942020-11-02 14:47:56 +0100786 LY_CHECK_GOTO(ret = lyd_new_list(root, NULL, "module", 0, &cont, mod->name,
Radek Krejci0f969882020-08-21 16:56:47 +0200787 (mod->parsed->revs ? mod->parsed->revs[0].date : "")), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200788
789 /* schema */
790 if (mod->filepath) {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200791 r = asprintf(&str, "file://%s", mod->filepath);
792 LY_CHECK_ERR_GOTO(r == -1, LOGMEM(ctx); ret = LY_EMEM, error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200793
Radek Krejci41ac9942020-11-02 14:47:56 +0100794 ret = lyd_new_term(cont, NULL, "schema", str, 0, NULL);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200795 free(str);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200796 LY_CHECK_GOTO(ret, error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200797 }
798
799 /* namespace */
Radek Krejci41ac9942020-11-02 14:47:56 +0100800 LY_CHECK_GOTO(ret = lyd_new_term(cont, NULL, "namespace", mod->ns, 0, NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200801
802 /* feature leaf-list */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100803 LY_CHECK_GOTO(ret = ylib_feature(cont, mod->parsed), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200804
805 /* deviation list */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200806 LY_CHECK_GOTO(ret = ylib_deviation(cont, mod, 0), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200807
808 /* conformance-type */
Radek Krejci41ac9942020-11-02 14:47:56 +0100809 LY_CHECK_GOTO(ret = lyd_new_term(cont, NULL, "conformance-type", mod->implemented ? "implement" : "import", 0,
Michal Vasko69730152020-10-09 16:30:07 +0200810 NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200811
812 /* submodule list */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100813 LY_CHECK_GOTO(ret = ylib_submodules(cont, mod->parsed, 0), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200814
815 /*
816 * current revision
817 */
818 if (bis) {
819 /* name and revision */
820 if (mod->implemented) {
Radek Krejci41ac9942020-11-02 14:47:56 +0100821 LY_CHECK_GOTO(ret = lyd_new_list(set_bis, NULL, "module", 0, &cont, mod->name), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200822
823 if (mod->parsed->revs) {
Radek Krejci41ac9942020-11-02 14:47:56 +0100824 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 +0200825 }
826 } else {
Radek Krejci41ac9942020-11-02 14:47:56 +0100827 LY_CHECK_GOTO(ret = lyd_new_list(set_bis, NULL, "import-only-module", 0, &cont, mod->name,
Radek Krejci0f969882020-08-21 16:56:47 +0200828 (mod->parsed->revs ? mod->parsed->revs[0].date : "")), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200829 }
830
831 /* namespace */
Radek Krejci41ac9942020-11-02 14:47:56 +0100832 LY_CHECK_GOTO(ret = lyd_new_term(cont, NULL, "namespace", mod->ns, 0, NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200833
834 /* location */
835 if (mod->filepath) {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200836 r = asprintf(&str, "file://%s", mod->filepath);
837 LY_CHECK_ERR_GOTO(r == -1, LOGMEM(ctx); ret = LY_EMEM, error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200838
Radek Krejcid68ba1b2020-11-09 17:40:11 +0100839 ret = lyd_new_term(cont, NULL, "location", str, 0, NULL);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200840 free(str);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200841 LY_CHECK_GOTO(ret, error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200842 }
843
844 /* submodule list */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100845 LY_CHECK_GOTO(ret = ylib_submodules(cont, mod->parsed, 1), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200846
847 /* feature list */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100848 LY_CHECK_GOTO(ret = ylib_feature(cont, mod->parsed), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200849
850 /* deviation */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200851 LY_CHECK_GOTO(ret = ylib_deviation(cont, mod, 1), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200852 }
853 }
854
855 /* IDs */
Michal Vasko794ab4b2021-03-31 09:42:19 +0200856 va_start(ap, content_id_format);
857 r = vasprintf(&str, content_id_format, ap);
858 va_end(ap);
Radek Krejcif13b87b2020-12-01 22:02:17 +0100859 LY_CHECK_ERR_GOTO(r == -1, LOGMEM(ctx); ret = LY_EMEM, error);
860 ret = lyd_new_term(root, NULL, "module-set-id", str, 0, NULL);
861 LY_CHECK_ERR_GOTO(ret, free(str), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200862
863 if (bis) {
864 /* create one complete schema */
Radek Krejcif13b87b2020-12-01 22:02:17 +0100865 LY_CHECK_ERR_GOTO(ret = lyd_new_list(root_bis, NULL, "schema", 0, &cont, "complete"), free(str), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200866
Radek Krejcif13b87b2020-12-01 22:02:17 +0100867 LY_CHECK_ERR_GOTO(ret = lyd_new_term(cont, NULL, "module-set", "complete", 0, NULL), free(str), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200868
869 /* content-id */
Radek Krejcif13b87b2020-12-01 22:02:17 +0100870 LY_CHECK_ERR_GOTO(ret = lyd_new_term(root_bis, NULL, "content-id", str, 0, NULL), free(str), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200871 }
Radek Krejcif13b87b2020-12-01 22:02:17 +0100872 free(str);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200873
874 if (root_bis) {
Michal Vaskob104f112020-07-17 09:54:54 +0200875 if (lyd_insert_sibling(root, root_bis, &root)) {
Michal Vasko57c10cd2020-05-27 15:57:11 +0200876 goto error;
877 }
Michal Vaskob104f112020-07-17 09:54:54 +0200878 root_bis = NULL;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200879 }
880
Michal Vasko3a41dff2020-07-15 14:30:28 +0200881 LY_CHECK_GOTO(ret = lyd_validate_all(&root, NULL, LYD_VALIDATE_PRESENT, NULL), error);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200882
Michal Vasko3a41dff2020-07-15 14:30:28 +0200883 *root_p = root;
884 return LY_SUCCESS;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200885
886error:
887 lyd_free_all(root);
888 lyd_free_all(root_bis);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200889 return ret;
Michal Vasko57c10cd2020-05-27 15:57:11 +0200890}
891
Radek Krejcie9e987e2018-10-31 12:50:27 +0100892API void
Radek Krejciad573502018-09-07 15:26:55 +0200893ly_ctx_destroy(struct ly_ctx *ctx, void (*private_destructor)(const struct lysc_node *node, void *priv))
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200894{
Radek Krejci418823a2018-09-20 16:42:13 +0200895 if (!ctx) {
896 return;
897 }
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200898
899 /* models list */
Michal Vaskod989ba02020-08-24 10:59:24 +0200900 for ( ; ctx->list.count; ctx->list.count--) {
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200901 /* remove the module */
Radek Krejci86d106e2018-10-18 09:53:19 +0200902 lys_module_free(ctx->list.objs[ctx->list.count - 1], private_destructor);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200903 }
904 free(ctx->list.objs);
905
906 /* search paths list */
Radek Krejcia40f21b2018-09-18 10:42:08 +0200907 ly_set_erase(&ctx->search_paths, free);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200908
909 /* clean the error list */
910 ly_err_clean(ctx, 0);
911 pthread_key_delete(ctx->errlist_key);
912
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200913 /* dictionary */
914 lydict_clean(&ctx->dict);
915
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200916 /* plugins - will be removed only if this is the last context */
Radek Krejci3e6632f2021-03-22 22:08:21 +0100917 lyplg_clean();
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200918
919 free(ctx);
920}