blob: fd446a0bf0d2e84ed74d39780bd4f641823a1dd7 [file] [log] [blame]
Radek Krejci3f5e3db2018-10-11 15:57:47 +02001/**
2 * @file tree_schema.c
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief Schema tree implementation
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 Krejcib7db73a2018-10-24 14:18:40 +020014
Radek Krejci535ea9f2020-05-29 16:01:05 +020015#define _GNU_SOURCE
Radek Krejcif8dc59a2020-11-25 13:47:44 +010016#define _POSIX_C_SOURCE 200809L /* strdup */
Radek Krejci535ea9f2020-05-29 16:01:05 +020017
Radek Krejcica376bd2020-06-11 16:04:06 +020018#include "tree_schema.h"
Radek Krejci86d106e2018-10-18 09:53:19 +020019
Radek Krejcie7b95092019-05-15 11:03:07 +020020#include <assert.h>
Radek Krejci545b4872020-11-15 10:15:12 +010021#include <ctype.h>
Radek Krejcid33273d2018-10-25 14:55:52 +020022#include <dirent.h>
Radek Krejci86d106e2018-10-18 09:53:19 +020023#include <errno.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020024#include <stdint.h>
Radek Krejci86d106e2018-10-18 09:53:19 +020025#include <stdio.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020026#include <stdlib.h>
27#include <string.h>
Radek Krejci86d106e2018-10-18 09:53:19 +020028#include <sys/stat.h>
Radek Krejci86d106e2018-10-18 09:53:19 +020029#include <unistd.h>
Radek Krejci3f5e3db2018-10-11 15:57:47 +020030
Radek Krejcica376bd2020-06-11 16:04:06 +020031#include "common.h"
Michal Vasko5aa44c02020-06-29 11:47:02 +020032#include "compat.h"
Radek Krejci86d106e2018-10-18 09:53:19 +020033#include "context.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020034#include "dict.h"
Radek Krejci47fab892020-11-05 17:02:41 +010035#include "in.h"
Michal Vaskoafac7822020-10-20 14:22:26 +020036#include "in_internal.h"
Radek Krejci47fab892020-11-05 17:02:41 +010037#include "log.h"
Radek Krejcif0e1ba52020-05-22 15:14:35 +020038#include "parser_internal.h"
Radek Krejcica376bd2020-06-11 16:04:06 +020039#include "parser_schema.h"
Michal Vasko40308e72020-10-20 16:38:40 +020040#include "path.h"
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020041#include "schema_compile.h"
Michal Vasko7b1ad1a2020-11-02 15:41:27 +010042#include "schema_features.h"
Radek Krejcica376bd2020-06-11 16:04:06 +020043#include "set.h"
44#include "tree.h"
Radek Krejci859a15a2021-03-05 20:56:59 +010045#include "tree_edit.h"
Radek Krejcica376bd2020-06-11 16:04:06 +020046#include "tree_schema_internal.h"
47#include "xpath.h"
Radek Krejci3f5e3db2018-10-11 15:57:47 +020048
Radek Krejcieccf6602021-02-05 19:42:54 +010049/**
50 * @brief information about YANG statements
51 */
52struct stmt_info_s stmt_attr_info[] = {
Radek Krejci6b88a462021-02-17 12:39:34 +010053 [LY_STMT_NONE] = {NULL, NULL, 0},
54 [LY_STMT_ACTION] = {"action", "name", STMT_FLAG_ID},
55 [LY_STMT_ANYDATA] = {"anydata", "name", STMT_FLAG_ID},
56 [LY_STMT_ANYXML] = {"anyxml", "name", STMT_FLAG_ID},
57 [LY_STMT_ARGUMENT] = {"argument", "name", STMT_FLAG_ID},
58 [LY_STMT_ARG_TEXT] = {"text", NULL, 0},
59 [LY_STMT_ARG_VALUE] = {"value", NULL, 0},
60 [LY_STMT_AUGMENT] = {"augment", "target-node", STMT_FLAG_ID},
61 [LY_STMT_BASE] = {"base", "name", STMT_FLAG_ID},
62 [LY_STMT_BELONGS_TO] = {"belongs-to", "module", STMT_FLAG_ID},
63 [LY_STMT_BIT] = {"bit", "name", STMT_FLAG_ID},
64 [LY_STMT_CASE] = {"case", "name", STMT_FLAG_ID},
65 [LY_STMT_CHOICE] = {"choice", "name", STMT_FLAG_ID},
66 [LY_STMT_CONFIG] = {"config", "value", STMT_FLAG_ID},
67 [LY_STMT_CONTACT] = {"contact", "text", STMT_FLAG_YIN},
68 [LY_STMT_CONTAINER] = {"container", "name", STMT_FLAG_ID},
69 [LY_STMT_DEFAULT] = {"default", "value", 0},
70 [LY_STMT_DESCRIPTION] = {"description", "text", STMT_FLAG_YIN},
71 [LY_STMT_DEVIATE] = {"deviate", "value", STMT_FLAG_ID},
72 [LY_STMT_DEVIATION] = {"deviation", "target-node", STMT_FLAG_ID},
73 [LY_STMT_ENUM] = {"enum", "name", STMT_FLAG_ID},
74 [LY_STMT_ERROR_APP_TAG] = {"error-app-tag", "value", 0},
75 [LY_STMT_ERROR_MESSAGE] = {"error-message", "value", STMT_FLAG_YIN},
76 [LY_STMT_EXTENSION] = {"extension", "name", STMT_FLAG_ID},
77 [LY_STMT_EXTENSION_INSTANCE] = {NULL, NULL, 0},
78 [LY_STMT_FEATURE] = {"feature", "name", STMT_FLAG_ID},
79 [LY_STMT_FRACTION_DIGITS] = {"fraction-digits", "value", STMT_FLAG_ID},
80 [LY_STMT_GROUPING] = {"grouping", "name", STMT_FLAG_ID},
81 [LY_STMT_IDENTITY] = {"identity", "name", STMT_FLAG_ID},
82 [LY_STMT_IF_FEATURE] = {"if-feature", "name", 0},
83 [LY_STMT_IMPORT] = {"import", "module", STMT_FLAG_ID},
84 [LY_STMT_INCLUDE] = {"include", "module", STMT_FLAG_ID},
85 [LY_STMT_INPUT] = {"input", NULL, 0},
86 [LY_STMT_KEY] = {"key", "value", 0},
87 [LY_STMT_LEAF] = {"leaf", "name", STMT_FLAG_ID},
88 [LY_STMT_LEAF_LIST] = {"leaf-list", "name", STMT_FLAG_ID},
89 [LY_STMT_LENGTH] = {"length", "value", 0},
90 [LY_STMT_LIST] = {"list", "name", STMT_FLAG_ID},
91 [LY_STMT_MANDATORY] = {"mandatory", "value", STMT_FLAG_ID},
92 [LY_STMT_MAX_ELEMENTS] = {"max-elements", "value", STMT_FLAG_ID},
93 [LY_STMT_MIN_ELEMENTS] = {"min-elements", "value", STMT_FLAG_ID},
94 [LY_STMT_MODIFIER] = {"modifier", "value", STMT_FLAG_ID},
95 [LY_STMT_MODULE] = {"module", "name", STMT_FLAG_ID},
96 [LY_STMT_MUST] = {"must", "condition", 0},
97 [LY_STMT_NAMESPACE] = {"namespace", "uri", 0},
98 [LY_STMT_NOTIFICATION] = {"notification", "name", STMT_FLAG_ID},
99 [LY_STMT_ORDERED_BY] = {"ordered-by", "value", STMT_FLAG_ID},
100 [LY_STMT_ORGANIZATION] = {"organization", "text", STMT_FLAG_YIN},
101 [LY_STMT_OUTPUT] = {"output", NULL, 0},
102 [LY_STMT_PATH] = {"path", "value", 0},
103 [LY_STMT_PATTERN] = {"pattern", "value", 0},
104 [LY_STMT_POSITION] = {"position", "value", STMT_FLAG_ID},
105 [LY_STMT_PREFIX] = {"prefix", "value", STMT_FLAG_ID},
106 [LY_STMT_PRESENCE] = {"presence", "value", 0},
107 [LY_STMT_RANGE] = {"range", "value", 0},
108 [LY_STMT_REFERENCE] = {"reference", "text", STMT_FLAG_YIN},
109 [LY_STMT_REFINE] = {"refine", "target-node", STMT_FLAG_ID},
110 [LY_STMT_REQUIRE_INSTANCE] = {"require-instance", "value", STMT_FLAG_ID},
111 [LY_STMT_REVISION] = {"revision", "date", STMT_FLAG_ID},
112 [LY_STMT_REVISION_DATE] = {"revision-date", "date", STMT_FLAG_ID},
113 [LY_STMT_RPC] = {"rpc", "name", STMT_FLAG_ID},
114 [LY_STMT_STATUS] = {"status", "value", STMT_FLAG_ID},
115 [LY_STMT_SUBMODULE] = {"submodule", "name", STMT_FLAG_ID},
116 [LY_STMT_SYNTAX_LEFT_BRACE] = {"{", NULL, 0},
117 [LY_STMT_SYNTAX_RIGHT_BRACE] = {"}", NULL, 0},
118 [LY_STMT_SYNTAX_SEMICOLON] = {";", NULL, 0},
119 [LY_STMT_TYPE] = {"type", "name", STMT_FLAG_ID},
120 [LY_STMT_TYPEDEF] = {"typedef", "name", STMT_FLAG_ID},
121 [LY_STMT_UNIQUE] = {"unique", "tag", 0},
122 [LY_STMT_UNITS] = {"units", "name", 0},
123 [LY_STMT_USES] = {"uses", "name", STMT_FLAG_ID},
124 [LY_STMT_VALUE] = {"value", "value", STMT_FLAG_ID},
125 [LY_STMT_WHEN] = {"when", "condition", 0},
126 [LY_STMT_YANG_VERSION] = {"yang-version", "value", STMT_FLAG_ID},
127 [LY_STMT_YIN_ELEMENT] = {"yin-element", "value", STMT_FLAG_ID},
Radek Krejcieccf6602021-02-05 19:42:54 +0100128};
129
Radek Krejcif8ca8192021-03-02 16:50:06 +0100130API const char *
131ly_stmt2str(enum ly_stmt stmt)
132{
133 return stmt_attr_info[stmt].name;
134}
135
Radek Krejcieccf6602021-02-05 19:42:54 +0100136const char * const ly_devmod_list[] = {
137 [LYS_DEV_NOT_SUPPORTED] = "not-supported",
138 [LYS_DEV_ADD] = "add",
139 [LYS_DEV_DELETE] = "delete",
140 [LYS_DEV_REPLACE] = "replace",
141};
142
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200143API LY_ERR
144lysc_tree_dfs_full(const struct lysc_node *root, lysc_dfs_clb dfs_clb, void *data)
145{
Michal Vasko1d972ca2020-11-03 17:16:56 +0100146 struct lysc_node *elem, *elem2;
Radek Krejci2a9fc652021-01-22 17:44:34 +0100147 const struct lysc_node_action *action;
148 const struct lysc_node_notif *notif;
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200149
150 LY_CHECK_ARG_RET(NULL, root, dfs_clb, LY_EINVAL);
151
152 LYSC_TREE_DFS_BEGIN(root, elem) {
153 /* schema node */
154 LY_CHECK_RET(dfs_clb(elem, data, &LYSC_TREE_DFS_continue));
155
Radek Krejci2a9fc652021-01-22 17:44:34 +0100156 LY_LIST_FOR(lysc_node_actions(elem), action) {
157 LYSC_TREE_DFS_BEGIN(action, elem2) {
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200158 /* action subtree */
159 LY_CHECK_RET(dfs_clb(elem2, data, &LYSC_TREE_DFS_continue));
160
Radek Krejci2a9fc652021-01-22 17:44:34 +0100161 LYSC_TREE_DFS_END(action, elem2);
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200162 }
163 }
164
Radek Krejci2a9fc652021-01-22 17:44:34 +0100165 LY_LIST_FOR(lysc_node_notifs(elem), notif) {
166 LYSC_TREE_DFS_BEGIN(notif, elem2) {
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200167 /* notification subtree */
168 LY_CHECK_RET(dfs_clb(elem2, data, &LYSC_TREE_DFS_continue));
169
Radek Krejci2a9fc652021-01-22 17:44:34 +0100170 LYSC_TREE_DFS_END(notif, elem2);
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200171 }
172 }
173
174 LYSC_TREE_DFS_END(root, elem);
175 }
176
177 return LY_SUCCESS;
178}
179
180API LY_ERR
181lysc_module_dfs_full(const struct lys_module *mod, lysc_dfs_clb dfs_clb, void *data)
182{
Michal Vasko2336cf52020-11-03 17:18:15 +0100183 const struct lysc_node *root;
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200184
185 LY_CHECK_ARG_RET(NULL, mod, mod->compiled, dfs_clb, LY_EINVAL);
186
187 /* schema nodes */
Michal Vasko2336cf52020-11-03 17:18:15 +0100188 LY_LIST_FOR(mod->compiled->data, root) {
189 LY_CHECK_RET(lysc_tree_dfs_full(root, dfs_clb, data));
190 }
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200191
192 /* RPCs */
Radek Krejci2a9fc652021-01-22 17:44:34 +0100193 LY_LIST_FOR((const struct lysc_node *)mod->compiled->rpcs, root) {
194 LY_CHECK_RET(lysc_tree_dfs_full(root, dfs_clb, data));
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200195 }
196
197 /* notifications */
Radek Krejci2a9fc652021-01-22 17:44:34 +0100198 LY_LIST_FOR((const struct lysc_node *)mod->compiled->notifs, root) {
199 LY_CHECK_RET(lysc_tree_dfs_full(root, dfs_clb, data));
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200200 }
201
202 return LY_SUCCESS;
203}
204
Radek Krejcib93bd412020-11-02 13:23:11 +0100205static void
206lys_getnext_into_case(const struct lysc_node_case *first_case, const struct lysc_node **last, const struct lysc_node **next)
207{
Radek Krejcic5b54a02020-11-05 17:13:18 +0100208 for ( ; first_case; first_case = (const struct lysc_node_case *)first_case->next) {
Radek Krejcib93bd412020-11-02 13:23:11 +0100209 if (first_case->child) {
210 /* there is something to return */
211 (*next) = first_case->child;
212 return;
213 }
214 }
215
216 /* no children in choice's cases, so go to the choice's sibling instead of into it */
217 (*last) = (*next);
218 (*next) = (*next)->next;
219}
220
Radek Krejci035dacf2021-02-12 18:25:53 +0100221/**
222 * @brief Generic getnext function for ::lys_getnext() and ::lys_getnext_ext().
223 *
224 * Gets next schema tree (sibling) node element that can be instantiated in a data tree. Returned node can
225 * be from an augment. If the @p ext is provided, the function is locked inside the schema tree defined in the
226 * extension instance.
227 *
228 * ::lys_getnext_() is supposed to be called sequentially. In the first call, the \p last parameter is usually NULL
229 * and function starts returning i) the first \p parent's child or ii) the first top level element specified in the
230 * given extension (if provided) or iii) the first top level element of the \p module.
231 * Consequent calls suppose to provide the previously returned node as the \p last parameter and still the same
232 * \p parent and \p module parameters.
233 *
234 * Without options, the function is used to traverse only the schema nodes that can be paired with corresponding
235 * data nodes in a data tree. By setting some \p options the behavior can be modified to the extent that
236 * all the schema nodes are iteratively returned.
237 *
238 * @param[in] last Previously returned schema tree node, or NULL in case of the first call.
239 * @param[in] parent Parent of the subtree where the function starts processing.
240 * @param[in] module In case of iterating on top level elements, the \p parent is NULL and
241 * module must be specified.
242 * @param[in] ext The extension instance to provide a separate schema tree. To consider the top level elements in the tree,
243 * the \p parent must be NULL. Anyway, at least one of @p parent, @p module and @p ext parameters must be specified.
244 * @param[in] options [ORed options](@ref sgetnextflags).
245 * @return Next schema tree node that can be instantiated in a data tree, NULL in case there is no such element.
246 */
247static const struct lysc_node *
248lys_getnext_(const struct lysc_node *last, const struct lysc_node *parent, const struct lysc_module *module,
249 const struct lysc_ext_instance *ext, uint32_t options)
Radek Krejcia3045382018-11-22 14:30:31 +0100250{
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100251 const struct lysc_node *next = NULL;
Radek Krejci857189e2020-09-01 13:26:36 +0200252 ly_bool action_flag = 0, notif_flag = 0;
Radek Krejci035dacf2021-02-12 18:25:53 +0100253 struct lysc_node **data_p = NULL;
Radek Krejcia3045382018-11-22 14:30:31 +0100254
Radek Krejci035dacf2021-02-12 18:25:53 +0100255 LY_CHECK_ARG_RET(NULL, parent || module || ext, NULL);
Radek Krejcia3045382018-11-22 14:30:31 +0100256
Radek Krejcid5a2b9d2019-04-12 10:39:30 +0200257next:
Radek Krejcia3045382018-11-22 14:30:31 +0100258 if (!last) {
259 /* first call */
260
261 /* get know where to start */
262 if (parent) {
263 /* schema subtree */
Michal Vasko544e58a2021-01-28 14:33:41 +0100264 next = last = lysc_node_child(parent);
Radek Krejcia3045382018-11-22 14:30:31 +0100265 } else {
266 /* top level data */
Radek Krejci035dacf2021-02-12 18:25:53 +0100267 if (ext) {
268 lysc_ext_substmt(ext, LY_STMT_CONTAINER /* matches all nodes */, (void **)&data_p, NULL);
269 next = last = data_p ? *data_p : NULL;
270 } else {
271 next = last = module->data;
272 }
Radek Krejcia3045382018-11-22 14:30:31 +0100273 }
274 if (!next) {
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100275 /* try to get action or notification */
276 goto repeat;
Radek Krejcia3045382018-11-22 14:30:31 +0100277 }
Radek Krejci05b774b2019-02-25 13:26:18 +0100278 /* test if the next can be returned */
279 goto check;
280
Michal Vasko1bf09392020-03-27 12:38:10 +0100281 } else if (last->nodetype & (LYS_RPC | LYS_ACTION)) {
Radek Krejci05b774b2019-02-25 13:26:18 +0100282 action_flag = 1;
Radek Krejci2a9fc652021-01-22 17:44:34 +0100283 next = last->next;
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100284 } else if (last->nodetype == LYS_NOTIF) {
Radek Krejci05b774b2019-02-25 13:26:18 +0100285 action_flag = notif_flag = 1;
Radek Krejci2a9fc652021-01-22 17:44:34 +0100286 next = last->next;
Michal Vasko20424b42020-08-31 12:29:38 +0200287 } else {
288 next = last->next;
Radek Krejcia3045382018-11-22 14:30:31 +0100289 }
290
Radek Krejcia3045382018-11-22 14:30:31 +0100291repeat:
292 if (!next) {
Radek Krejcia9026eb2018-12-12 16:04:47 +0100293 /* possibly go back to parent */
Radek Krejci035dacf2021-02-12 18:25:53 +0100294 data_p = NULL;
Michal Vasko69730152020-10-09 16:30:07 +0200295 if (last && (last->parent != parent)) {
Radek Krejcia9026eb2018-12-12 16:04:47 +0100296 last = last->parent;
Radek Krejcid5a2b9d2019-04-12 10:39:30 +0200297 goto next;
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100298 } else if (!action_flag) {
299 action_flag = 1;
Radek Krejci035dacf2021-02-12 18:25:53 +0100300 if (ext) {
301 lysc_ext_substmt(ext, LY_STMT_RPC /* matches also actions */, (void **)&data_p, NULL);
302 next = data_p ? *data_p : NULL;
303 } else if (parent) {
304 next = (struct lysc_node *)lysc_node_actions(parent);
305 } else {
306 next = (struct lysc_node *)module->rpcs;
307 }
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100308 } else if (!notif_flag) {
309 notif_flag = 1;
Radek Krejci035dacf2021-02-12 18:25:53 +0100310 if (ext) {
311 lysc_ext_substmt(ext, LY_STMT_NOTIFICATION, (void **)&data_p, NULL);
312 next = data_p ? *data_p : NULL;
313 } else if (parent) {
314 next = (struct lysc_node *)lysc_node_notifs(parent);
315 } else {
316 next = (struct lysc_node *)module->notifs;
317 }
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100318 } else {
319 return NULL;
Radek Krejcia9026eb2018-12-12 16:04:47 +0100320 }
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100321 goto repeat;
Radek Krejcia3045382018-11-22 14:30:31 +0100322 }
Radek Krejci05b774b2019-02-25 13:26:18 +0100323check:
Radek Krejcia3045382018-11-22 14:30:31 +0100324 switch (next->nodetype) {
Michal Vasko1bf09392020-03-27 12:38:10 +0100325 case LYS_RPC:
Radek Krejcia3045382018-11-22 14:30:31 +0100326 case LYS_ACTION:
327 case LYS_NOTIF:
328 case LYS_LEAF:
329 case LYS_ANYXML:
330 case LYS_ANYDATA:
331 case LYS_LIST:
332 case LYS_LEAFLIST:
333 break;
Michal Vasko20424b42020-08-31 12:29:38 +0200334 case LYS_CASE:
335 if (options & LYS_GETNEXT_WITHCASE) {
336 break;
337 } else {
338 /* go into */
Radek Krejcib93bd412020-11-02 13:23:11 +0100339 lys_getnext_into_case((const struct lysc_node_case *)next, &last, &next);
Michal Vasko20424b42020-08-31 12:29:38 +0200340 }
341 goto repeat;
Radek Krejcia3045382018-11-22 14:30:31 +0100342 case LYS_CONTAINER:
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100343 if (!(next->flags & LYS_PRESENCE) && (options & LYS_GETNEXT_INTONPCONT)) {
Michal Vasko544e58a2021-01-28 14:33:41 +0100344 if (lysc_node_child(next)) {
Radek Krejcia3045382018-11-22 14:30:31 +0100345 /* go into */
Michal Vasko544e58a2021-01-28 14:33:41 +0100346 next = lysc_node_child(next);
Radek Krejcia3045382018-11-22 14:30:31 +0100347 } else {
Radek Krejcib93bd412020-11-02 13:23:11 +0100348 last = next;
Radek Krejcia3045382018-11-22 14:30:31 +0100349 next = next->next;
350 }
351 goto repeat;
352 }
353 break;
354 case LYS_CHOICE:
355 if (options & LYS_GETNEXT_WITHCHOICE) {
Michal Vasko20424b42020-08-31 12:29:38 +0200356 break;
Michal Vasko544e58a2021-01-28 14:33:41 +0100357 } else if ((options & LYS_GETNEXT_NOCHOICE) || !lysc_node_child(next)) {
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100358 next = next->next;
359 } else {
Radek Krejcia9026eb2018-12-12 16:04:47 +0100360 if (options & LYS_GETNEXT_WITHCASE) {
Michal Vasko544e58a2021-01-28 14:33:41 +0100361 next = lysc_node_child(next);
Radek Krejcia9026eb2018-12-12 16:04:47 +0100362 } else {
Radek Krejcib93bd412020-11-02 13:23:11 +0100363 /* go into */
364 lys_getnext_into_case(((struct lysc_node_choice *)next)->cases, &last, &next);
Radek Krejcia9026eb2018-12-12 16:04:47 +0100365 }
Radek Krejcia3045382018-11-22 14:30:31 +0100366 }
367 goto repeat;
Michal Vasko544e58a2021-01-28 14:33:41 +0100368 case LYS_INPUT:
369 if (options & LYS_GETNEXT_OUTPUT) {
370 /* skip */
371 next = next->next;
372 } else {
373 /* go into */
374 next = lysc_node_child(next);
375 }
376 goto repeat;
377 case LYS_OUTPUT:
378 if (!(options & LYS_GETNEXT_OUTPUT)) {
379 /* skip */
380 next = next->next;
381 } else {
382 /* go into */
383 next = lysc_node_child(next);
384 }
385 goto repeat;
Radek Krejcia3045382018-11-22 14:30:31 +0100386 default:
387 /* we should not be here */
Radek Krejci035dacf2021-02-12 18:25:53 +0100388 LOGINT(module ? module->mod->ctx : parent ? parent->module->ctx : ext->module->ctx);
Radek Krejcia3045382018-11-22 14:30:31 +0100389 return NULL;
390 }
391
Radek Krejcia3045382018-11-22 14:30:31 +0100392 return next;
393}
394
395API const struct lysc_node *
Radek Krejci035dacf2021-02-12 18:25:53 +0100396lys_getnext(const struct lysc_node *last, const struct lysc_node *parent, const struct lysc_module *module, uint32_t options)
397{
398 return lys_getnext_(last, parent, module, NULL, options);
399}
400
401API const struct lysc_node *
402lys_getnext_ext(const struct lysc_node *last, const struct lysc_node *parent, const struct lysc_ext_instance *ext, uint32_t options)
403{
404 return lys_getnext_(last, parent, NULL, ext, options);
405}
406
Radek Krejcif16e2542021-02-17 15:39:23 +0100407const struct lysc_node *
Radek Krejciba05eab2021-03-10 13:19:29 +0100408lysc_ext_find_node(const struct lysc_ext_instance *ext, const struct lys_module *module, const char *name, size_t name_len,
Radek Krejcif16e2542021-02-17 15:39:23 +0100409 uint16_t nodetype, uint32_t options)
410{
411 const struct lysc_node *node = NULL;
412
413 LY_CHECK_ARG_RET(NULL, ext, name, NULL);
414 if (!nodetype) {
415 nodetype = LYS_NODETYPE_MASK;
416 }
417
418 if (module && (module != ext->module)) {
419 return NULL;
420 }
421
422 while ((node = lys_getnext_ext(node, NULL, ext, options))) {
423 if (!(node->nodetype & nodetype)) {
424 continue;
425 }
426
427 if (name_len) {
428 if (!ly_strncmp(node->name, name, name_len)) {
429 return node;
430 }
431 } else {
432 if (!strcmp(node->name, name)) {
433 return node;
434 }
435 }
436 }
437 return NULL;
438}
439
Radek Krejci035dacf2021-02-12 18:25:53 +0100440API const struct lysc_node *
Michal Vaskoe444f752020-02-10 12:20:06 +0100441lys_find_child(const struct lysc_node *parent, const struct lys_module *module, const char *name, size_t name_len,
Radek Krejci1deb5be2020-08-26 16:43:36 +0200442 uint16_t nodetype, uint32_t options)
Radek Krejcia3045382018-11-22 14:30:31 +0100443{
444 const struct lysc_node *node = NULL;
445
446 LY_CHECK_ARG_RET(NULL, module, name, NULL);
447 if (!nodetype) {
Radek Krejcif13b87b2020-12-01 22:02:17 +0100448 nodetype = LYS_NODETYPE_MASK;
Radek Krejcia3045382018-11-22 14:30:31 +0100449 }
450
451 while ((node = lys_getnext(node, parent, module->compiled, options))) {
452 if (!(node->nodetype & nodetype)) {
453 continue;
454 }
455 if (node->module != module) {
456 continue;
457 }
458
459 if (name_len) {
Radek Krejci7f9b6512019-09-18 13:11:09 +0200460 if (!ly_strncmp(node->name, name, name_len)) {
Radek Krejcia3045382018-11-22 14:30:31 +0100461 return node;
462 }
463 } else {
464 if (!strcmp(node->name, name)) {
465 return node;
466 }
467 }
468 }
469 return NULL;
470}
471
Michal Vasko519fd602020-05-26 12:17:39 +0200472API LY_ERR
Michal Vasko26512682021-01-11 11:35:40 +0100473lys_find_xpath_atoms(const struct ly_ctx *ctx, const struct lysc_node *ctx_node, const char *xpath, uint32_t options,
474 struct ly_set **set)
Michal Vasko519fd602020-05-26 12:17:39 +0200475{
476 LY_ERR ret = LY_SUCCESS;
477 struct lyxp_set xp_set;
Radek Krejcif03a9e22020-09-18 20:09:31 +0200478 struct lyxp_expr *exp = NULL;
Michal Vasko519fd602020-05-26 12:17:39 +0200479 uint32_t i;
480
Michal Vasko26512682021-01-11 11:35:40 +0100481 LY_CHECK_ARG_RET(NULL, ctx || ctx_node, xpath, set, LY_EINVAL);
Michal Vasko519fd602020-05-26 12:17:39 +0200482 if (!(options & LYXP_SCNODE_ALL)) {
483 options = LYXP_SCNODE;
484 }
Michal Vasko26512682021-01-11 11:35:40 +0100485 if (!ctx) {
486 ctx = ctx_node->module->ctx;
487 }
Michal Vasko519fd602020-05-26 12:17:39 +0200488
489 memset(&xp_set, 0, sizeof xp_set);
490
491 /* compile expression */
Michal Vasko26512682021-01-11 11:35:40 +0100492 ret = lyxp_expr_parse(ctx, xpath, 0, 1, &exp);
Radek Krejcif03a9e22020-09-18 20:09:31 +0200493 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko519fd602020-05-26 12:17:39 +0200494
495 /* atomize expression */
Radek Krejci8df109d2021-04-23 12:19:08 +0200496 ret = lyxp_atomize(ctx, exp, NULL, LY_VALUE_JSON, NULL, ctx_node, &xp_set, options);
Michal Vasko519fd602020-05-26 12:17:39 +0200497 LY_CHECK_GOTO(ret, cleanup);
498
499 /* allocate return set */
Radek Krejciba03a5a2020-08-27 14:40:41 +0200500 ret = ly_set_new(set);
501 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko519fd602020-05-26 12:17:39 +0200502
503 /* transform into ly_set */
504 (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs);
Michal Vasko26512682021-01-11 11:35:40 +0100505 LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko519fd602020-05-26 12:17:39 +0200506 (*set)->size = xp_set.used;
507
508 for (i = 0; i < xp_set.used; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +0200509 if (xp_set.val.scnodes[i].type == LYXP_NODE_ELEM) {
Radek Krejci3d92e442020-10-12 12:48:13 +0200510 ret = ly_set_add(*set, xp_set.val.scnodes[i].scnode, 1, NULL);
Radek Krejciba03a5a2020-08-27 14:40:41 +0200511 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko519fd602020-05-26 12:17:39 +0200512 }
513 }
514
515cleanup:
516 lyxp_set_free_content(&xp_set);
Michal Vasko26512682021-01-11 11:35:40 +0100517 lyxp_expr_free(ctx, exp);
Michal Vasko519fd602020-05-26 12:17:39 +0200518 return ret;
519}
520
Michal Vasko072de482020-08-05 13:27:21 +0200521API LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +0200522lys_find_expr_atoms(const struct lysc_node *ctx_node, const struct lys_module *cur_mod, const struct lyxp_expr *expr,
523 const struct lysc_prefix *prefixes, uint32_t options, struct ly_set **set)
524{
525 LY_ERR ret = LY_SUCCESS;
526 struct lyxp_set xp_set = {0};
527 uint32_t i;
528
529 LY_CHECK_ARG_RET(NULL, cur_mod, expr, prefixes, set, LY_EINVAL);
530 if (!(options & LYXP_SCNODE_ALL)) {
531 options = LYXP_SCNODE;
532 }
533
534 /* atomize expression */
Radek Krejci8df109d2021-04-23 12:19:08 +0200535 ret = lyxp_atomize(cur_mod->ctx, expr, cur_mod, LY_VALUE_SCHEMA_RESOLVED, (void *)prefixes, ctx_node, &xp_set, options);
Michal Vasko40308e72020-10-20 16:38:40 +0200536 LY_CHECK_GOTO(ret, cleanup);
537
538 /* allocate return set */
539 ret = ly_set_new(set);
540 LY_CHECK_GOTO(ret, cleanup);
541
542 /* transform into ly_set */
543 (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs);
544 LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(cur_mod->ctx); ret = LY_EMEM, cleanup);
545 (*set)->size = xp_set.used;
546
547 for (i = 0; i < xp_set.used; ++i) {
Michal Vaskod97959c2020-12-10 12:18:28 +0100548 if ((xp_set.val.scnodes[i].type == LYXP_NODE_ELEM) && (xp_set.val.scnodes[i].in_ctx >= LYXP_SET_SCNODE_ATOM)) {
549 assert((xp_set.val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM) ||
550 (xp_set.val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX));
Michal Vasko40308e72020-10-20 16:38:40 +0200551 ret = ly_set_add(*set, xp_set.val.scnodes[i].scnode, 1, NULL);
552 LY_CHECK_GOTO(ret, cleanup);
553 }
554 }
555
556cleanup:
557 lyxp_set_free_content(&xp_set);
558 if (ret) {
559 ly_set_free(*set, NULL);
560 *set = NULL;
561 }
562 return ret;
563}
564
565API LY_ERR
Michal Vasko26512682021-01-11 11:35:40 +0100566lys_find_xpath(const struct ly_ctx *ctx, const struct lysc_node *ctx_node, const char *xpath, uint32_t options,
567 struct ly_set **set)
Michal Vasko072de482020-08-05 13:27:21 +0200568{
569 LY_ERR ret = LY_SUCCESS;
Michal Vasko40308e72020-10-20 16:38:40 +0200570 struct lyxp_set xp_set = {0};
Radek Krejcif03a9e22020-09-18 20:09:31 +0200571 struct lyxp_expr *exp = NULL;
Michal Vasko072de482020-08-05 13:27:21 +0200572 uint32_t i;
573
Michal Vasko26512682021-01-11 11:35:40 +0100574 LY_CHECK_ARG_RET(NULL, ctx || ctx_node, xpath, set, LY_EINVAL);
Michal Vasko072de482020-08-05 13:27:21 +0200575 if (!(options & LYXP_SCNODE_ALL)) {
576 options = LYXP_SCNODE;
577 }
Michal Vasko26512682021-01-11 11:35:40 +0100578 if (!ctx) {
579 ctx = ctx_node->module->ctx;
580 }
Michal Vasko072de482020-08-05 13:27:21 +0200581
Michal Vasko072de482020-08-05 13:27:21 +0200582 /* compile expression */
Michal Vasko26512682021-01-11 11:35:40 +0100583 ret = lyxp_expr_parse(ctx, xpath, 0, 1, &exp);
Radek Krejcif03a9e22020-09-18 20:09:31 +0200584 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko072de482020-08-05 13:27:21 +0200585
586 /* atomize expression */
Radek Krejci8df109d2021-04-23 12:19:08 +0200587 ret = lyxp_atomize(ctx, exp, NULL, LY_VALUE_JSON, NULL, ctx_node, &xp_set, options);
Michal Vasko072de482020-08-05 13:27:21 +0200588 LY_CHECK_GOTO(ret, cleanup);
589
590 /* allocate return set */
Radek Krejciba03a5a2020-08-27 14:40:41 +0200591 ret = ly_set_new(set);
592 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko072de482020-08-05 13:27:21 +0200593
594 /* transform into ly_set */
595 (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs);
Michal Vasko26512682021-01-11 11:35:40 +0100596 LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko072de482020-08-05 13:27:21 +0200597 (*set)->size = xp_set.used;
598
599 for (i = 0; i < xp_set.used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +0100600 if ((xp_set.val.scnodes[i].type == LYXP_NODE_ELEM) && (xp_set.val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX)) {
Radek Krejci3d92e442020-10-12 12:48:13 +0200601 ret = ly_set_add(*set, xp_set.val.scnodes[i].scnode, 1, NULL);
Radek Krejciba03a5a2020-08-27 14:40:41 +0200602 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko072de482020-08-05 13:27:21 +0200603 }
604 }
605
606cleanup:
607 lyxp_set_free_content(&xp_set);
Michal Vasko26512682021-01-11 11:35:40 +0100608 lyxp_expr_free(ctx, exp);
Michal Vaskoae159662020-10-21 11:57:24 +0200609 if (ret) {
Michal Vasko40308e72020-10-20 16:38:40 +0200610 ly_set_free(*set, NULL);
611 *set = NULL;
612 }
Michal Vasko072de482020-08-05 13:27:21 +0200613 return ret;
614}
615
Radek Krejcibc5644c2020-10-27 14:53:17 +0100616API LY_ERR
617lys_find_lypath_atoms(const struct ly_path *path, struct ly_set **set)
618{
619 LY_ERR ret = LY_SUCCESS;
620 LY_ARRAY_COUNT_TYPE u, v;
621
622 LY_CHECK_ARG_RET(NULL, path, set, LY_EINVAL);
623
624 /* allocate return set */
625 LY_CHECK_RET(ly_set_new(set));
626
627 LY_ARRAY_FOR(path, u) {
628 /* add nodes from the path */
629 LY_CHECK_GOTO(ret = ly_set_add(*set, (void *)path[u].node, 0, NULL), cleanup);
630 if (path[u].pred_type == LY_PATH_PREDTYPE_LIST) {
631 LY_ARRAY_FOR(path[u].predicates, v) {
632 /* add all the keys in a predicate */
633 LY_CHECK_GOTO(ret = ly_set_add(*set, (void *)path[u].predicates[v].key, 0, NULL), cleanup);
634 }
635 }
636 }
637
638cleanup:
639 if (ret) {
640 ly_set_free(*set, NULL);
641 *set = NULL;
642 }
643 return ret;
644}
645
646API LY_ERR
647lys_find_path_atoms(const struct ly_ctx *ctx, const struct lysc_node *ctx_node, const char *path, ly_bool output,
648 struct ly_set **set)
649{
650 LY_ERR ret = LY_SUCCESS;
651 uint8_t oper;
652 struct lyxp_expr *expr = NULL;
653 struct ly_path *p = NULL;
654
655 LY_CHECK_ARG_RET(ctx, ctx || ctx_node, path, set, LY_EINVAL);
656
657 if (!ctx) {
658 ctx = ctx_node->module->ctx;
659 }
660
661 /* parse */
662 ret = lyxp_expr_parse(ctx, path, strlen(path), 0, &expr);
663 LY_CHECK_GOTO(ret, cleanup);
664
665 /* compile */
666 oper = output ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT;
Radek Krejcid5d37432021-03-12 13:46:40 +0100667 ret = ly_path_compile(ctx, NULL, ctx_node, NULL, expr, LY_PATH_LREF_FALSE, oper, LY_PATH_TARGET_MANY,
Radek Krejci8df109d2021-04-23 12:19:08 +0200668 LY_VALUE_JSON, NULL, NULL, &p);
Radek Krejcibc5644c2020-10-27 14:53:17 +0100669 LY_CHECK_GOTO(ret, cleanup);
670
671 /* resolve */
672 ret = lys_find_lypath_atoms(p, set);
673
674cleanup:
675 ly_path_free(ctx, p);
676 lyxp_expr_free(ctx, expr);
677 return ret;
678}
679
680API const struct lysc_node *
681lys_find_path(const struct ly_ctx *ctx, const struct lysc_node *ctx_node, const char *path, ly_bool output)
682{
683 const struct lysc_node *snode = NULL;
684 struct lyxp_expr *exp = NULL;
685 struct ly_path *p = NULL;
686 LY_ERR ret;
687 uint8_t oper;
688
689 LY_CHECK_ARG_RET(ctx, ctx || ctx_node, NULL);
690
691 if (!ctx) {
692 ctx = ctx_node->module->ctx;
693 }
694
695 /* parse */
696 ret = lyxp_expr_parse(ctx, path, strlen(path), 0, &exp);
697 LY_CHECK_GOTO(ret, cleanup);
698
699 /* compile */
700 oper = output ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT;
Radek Krejcid5d37432021-03-12 13:46:40 +0100701 ret = ly_path_compile(ctx, NULL, ctx_node, NULL, exp, LY_PATH_LREF_FALSE, oper, LY_PATH_TARGET_MANY,
Radek Krejci8df109d2021-04-23 12:19:08 +0200702 LY_VALUE_JSON, NULL, NULL, &p);
Radek Krejcibc5644c2020-10-27 14:53:17 +0100703 LY_CHECK_GOTO(ret, cleanup);
704
705 /* get last node */
706 snode = p[LY_ARRAY_COUNT(p) - 1].node;
707
708cleanup:
709 ly_path_free(ctx, p);
710 lyxp_expr_free(ctx, exp);
711 return snode;
712}
713
Michal Vasko14654712020-02-06 08:35:21 +0100714char *
715lysc_path_until(const struct lysc_node *node, const struct lysc_node *parent, LYSC_PATH_TYPE pathtype, char *buffer,
Radek Krejci0f969882020-08-21 16:56:47 +0200716 size_t buflen)
Radek Krejci327de162019-06-14 12:52:07 +0200717{
Michal Vasko03ff5a72019-09-11 13:49:33 +0200718 const struct lysc_node *iter;
Radek Krejci327de162019-06-14 12:52:07 +0200719 char *path = NULL;
720 int len = 0;
721
Radek Krejci3bbd93e2019-07-24 09:57:23 +0200722 if (buffer) {
723 LY_CHECK_ARG_RET(node->module->ctx, buflen > 1, NULL);
Michal Vasko770d3fc2021-01-26 09:14:35 +0100724 buffer[0] = '\0';
Radek Krejci3bbd93e2019-07-24 09:57:23 +0200725 }
726
Radek Krejci327de162019-06-14 12:52:07 +0200727 switch (pathtype) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200728 case LYSC_PATH_LOG:
Michal Vasko65de0402020-08-03 16:34:19 +0200729 case LYSC_PATH_DATA:
Michal Vasko90932a92020-02-12 14:33:03 +0100730 for (iter = node; iter && (iter != parent) && (len >= 0); iter = iter->parent) {
Michal Vasko11deea12020-08-05 13:54:50 +0200731 char *s, *id;
Michal Vasko14654712020-02-06 08:35:21 +0100732 const char *slash;
Radek Krejci327de162019-06-14 12:52:07 +0200733
Michal Vasko721b6f62021-02-08 08:52:53 +0100734 if ((pathtype == LYSC_PATH_DATA) && (iter->nodetype & (LYS_CHOICE | LYS_CASE | LYS_INPUT | LYS_OUTPUT))) {
Michal Vasko65de0402020-08-03 16:34:19 +0200735 /* schema-only node */
736 continue;
737 }
738
Michal Vasko11deea12020-08-05 13:54:50 +0200739 s = buffer ? strdup(buffer) : path;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200740 id = strdup(iter->name);
Michal Vasko14654712020-02-06 08:35:21 +0100741 if (parent && (iter->parent == parent)) {
742 slash = "";
743 } else {
744 slash = "/";
745 }
Michal Vasko69730152020-10-09 16:30:07 +0200746 if (!iter->parent || (iter->parent->module != iter->module)) {
Radek Krejci327de162019-06-14 12:52:07 +0200747 /* print prefix */
Radek Krejci1c0c3442019-07-23 16:08:47 +0200748 if (buffer) {
Michal Vasko14654712020-02-06 08:35:21 +0100749 len = snprintf(buffer, buflen, "%s%s:%s%s", slash, iter->module->name, id, s ? s : "");
Radek Krejci1c0c3442019-07-23 16:08:47 +0200750 } else {
Michal Vasko14654712020-02-06 08:35:21 +0100751 len = asprintf(&path, "%s%s:%s%s", slash, iter->module->name, id, s ? s : "");
Radek Krejci1c0c3442019-07-23 16:08:47 +0200752 }
Radek Krejci327de162019-06-14 12:52:07 +0200753 } else {
754 /* prefix is the same as in parent */
Radek Krejci1c0c3442019-07-23 16:08:47 +0200755 if (buffer) {
Michal Vasko14654712020-02-06 08:35:21 +0100756 len = snprintf(buffer, buflen, "%s%s%s", slash, id, s ? s : "");
Radek Krejci1c0c3442019-07-23 16:08:47 +0200757 } else {
Michal Vasko14654712020-02-06 08:35:21 +0100758 len = asprintf(&path, "%s%s%s", slash, id, s ? s : "");
Radek Krejci1c0c3442019-07-23 16:08:47 +0200759 }
Radek Krejci327de162019-06-14 12:52:07 +0200760 }
761 free(s);
762 free(id);
Radek Krejci1c0c3442019-07-23 16:08:47 +0200763
Michal Vasko69730152020-10-09 16:30:07 +0200764 if (buffer && (buflen <= (size_t)len)) {
Radek Krejci1c0c3442019-07-23 16:08:47 +0200765 /* not enough space in buffer */
766 break;
767 }
Radek Krejci327de162019-06-14 12:52:07 +0200768 }
769
770 if (len < 0) {
771 free(path);
772 path = NULL;
773 } else if (len == 0) {
Radek Krejci3bbd93e2019-07-24 09:57:23 +0200774 if (buffer) {
775 strcpy(buffer, "/");
776 } else {
777 path = strdup("/");
778 }
Radek Krejci327de162019-06-14 12:52:07 +0200779 }
780 break;
781 }
782
Radek Krejci1c0c3442019-07-23 16:08:47 +0200783 if (buffer) {
784 return buffer;
785 } else {
786 return path;
787 }
Radek Krejci327de162019-06-14 12:52:07 +0200788}
789
Michal Vasko14654712020-02-06 08:35:21 +0100790API char *
791lysc_path(const struct lysc_node *node, LYSC_PATH_TYPE pathtype, char *buffer, size_t buflen)
792{
793 return lysc_path_until(node, NULL, pathtype, buffer, buflen);
794}
795
Michal Vasko405cc9e2020-12-01 12:01:27 +0100796LY_ERR
797lys_set_implemented_r(struct lys_module *mod, const char **features, struct lys_glob_unres *unres)
Radek Krejci77a8bcd2019-09-11 11:20:02 +0200798{
799 struct lys_module *m;
800
Michal Vasko405cc9e2020-12-01 12:01:27 +0100801 assert(!mod->implemented);
Radek Krejci77a8bcd2019-09-11 11:20:02 +0200802
803 /* we have module from the current context */
804 m = ly_ctx_get_module_implemented(mod->ctx, mod->name);
805 if (m) {
Michal Vasko89b5c072020-10-06 13:52:44 +0200806 assert(m != mod);
807
808 /* check collision with other implemented revision */
809 LOGERR(mod->ctx, LY_EDENIED, "Module \"%s%s%s\" is present in the context in other implemented revision (%s).",
810 mod->name, mod->revision ? "@" : "", mod->revision ? mod->revision : "", m->revision ? m->revision : "none");
811 return LY_EDENIED;
Radek Krejci77a8bcd2019-09-11 11:20:02 +0200812 }
813
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100814 /* enable features */
815 LY_CHECK_RET(lys_enable_features(mod->parsed, features));
816
Michal Vasko579530f2021-04-26 13:21:04 +0200817 if (mod->ctx->flags & LY_CTX_EXPLICIT_COMPILE) {
818 /* do not compile the module yet */
819 mod->to_compile = 1;
820 return LY_SUCCESS;
821 }
822
Michal Vasko89b5c072020-10-06 13:52:44 +0200823 /* add the module into newly implemented module set */
Michal Vasko405cc9e2020-12-01 12:01:27 +0100824 LY_CHECK_RET(ly_set_add(&unres->implementing, mod, 1, NULL));
Michal Vasko89b5c072020-10-06 13:52:44 +0200825
Radek Krejci77a8bcd2019-09-11 11:20:02 +0200826 /* mark the module implemented, check for collision was already done */
Michal Vasko89b5c072020-10-06 13:52:44 +0200827 mod->implemented = 1;
Radek Krejci77a8bcd2019-09-11 11:20:02 +0200828
829 /* compile the schema */
Michal Vasko1ccbf542021-04-19 11:35:00 +0200830 LY_CHECK_RET(lys_compile(mod, 0, unres));
831
832 /* new module is implemented and compiled */
833 unres->full_compilation = 0;
834
835 return LY_SUCCESS;
Michal Vasko405cc9e2020-12-01 12:01:27 +0100836}
Radek Krejci77a8bcd2019-09-11 11:20:02 +0200837
Michal Vasko405cc9e2020-12-01 12:01:27 +0100838API LY_ERR
839lys_set_implemented(struct lys_module *mod, const char **features)
840{
841 LY_ERR ret = LY_SUCCESS, r;
842 struct lys_glob_unres unres = {0};
Radek Krejci77a8bcd2019-09-11 11:20:02 +0200843
Michal Vasko405cc9e2020-12-01 12:01:27 +0100844 LY_CHECK_ARG_RET(NULL, mod, LY_EINVAL);
Michal Vasko916aefb2020-11-02 15:43:16 +0100845
Michal Vasko405cc9e2020-12-01 12:01:27 +0100846 if (mod->implemented) {
847 /* mod is already implemented, set the features */
848 r = lys_set_features(mod->parsed, features);
849 if (r == LY_EEXIST) {
850 /* no changes */
851 return LY_SUCCESS;
852 } else if (r) {
853 /* error */
854 return r;
Michal Vasko89b5c072020-10-06 13:52:44 +0200855 }
856
Michal Vasko01db7de2021-04-16 12:23:30 +0200857 if (mod->ctx->flags & LY_CTX_EXPLICIT_COMPILE) {
858 /* just mark the module as changed */
859 mod->to_compile = 1;
860 return LY_SUCCESS;
861 } else {
862 /* full recompilation */
863 return lys_recompile(mod->ctx, 1);
864 }
Michal Vasko89b5c072020-10-06 13:52:44 +0200865 }
Michal Vasko08c8b272020-11-24 18:11:30 +0100866
Michal Vasko405cc9e2020-12-01 12:01:27 +0100867 /* implement this module and any other required modules, recursively */
868 ret = lys_set_implemented_r(mod, features, &unres);
Michal Vasko405cc9e2020-12-01 12:01:27 +0100869
870 /* the first module being implemented is finished, resolve global unres, consolidate the set */
871 if (!ret) {
872 ret = lys_compile_unres_glob(mod->ctx, &unres);
873 }
874 if (ret) {
875 /* failure, full compile revert */
876 lys_compile_unres_glob_revert(mod->ctx, &unres);
877 }
878
879 lys_compile_unres_glob_erase(mod->ctx, &unres);
Michal Vasko89b5c072020-10-06 13:52:44 +0200880 return ret;
Radek Krejci77a8bcd2019-09-11 11:20:02 +0200881}
882
Michal Vasko7c8439f2020-08-05 13:25:19 +0200883static LY_ERR
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100884lys_resolve_import_include(struct lys_parser_ctx *pctx, struct lysp_module *pmod)
Michal Vasko7c8439f2020-08-05 13:25:19 +0200885{
886 struct lysp_import *imp;
Michal Vasko7c8439f2020-08-05 13:25:19 +0200887 LY_ARRAY_COUNT_TYPE u, v;
888
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100889 pmod->parsing = 1;
890 LY_ARRAY_FOR(pmod->imports, u) {
891 imp = &pmod->imports[u];
Michal Vasko7c8439f2020-08-05 13:25:19 +0200892 if (!imp->module) {
Michal Vasko18a86e52021-04-16 11:50:13 +0200893 LY_CHECK_RET(lys_load_module(PARSER_CTX(pctx), imp->name, imp->rev[0] ? imp->rev : NULL, 0, NULL,
Michal Vasko405cc9e2020-12-01 12:01:27 +0100894 pctx->unres, &imp->module));
Michal Vasko7c8439f2020-08-05 13:25:19 +0200895 }
896 /* check for importing the same module twice */
897 for (v = 0; v < u; ++v) {
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100898 if (imp->module == pmod->imports[v].module) {
Michal Vasko7c8439f2020-08-05 13:25:19 +0200899 LOGWRN(PARSER_CTX(pctx), "Single revision of the module \"%s\" imported twice.", imp->name);
900 }
901 }
902 }
Radek Krejci771928a2021-01-19 13:42:36 +0100903 LY_CHECK_RET(lysp_load_submodules(pctx, pmod));
904
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100905 pmod->parsing = 0;
Michal Vasko7c8439f2020-08-05 13:25:19 +0200906
907 return LY_SUCCESS;
908}
909
Michal Vasko3a41dff2020-07-15 14:30:28 +0200910LY_ERR
Michal Vasko7a0b0762020-09-02 16:37:01 +0200911lys_parse_submodule(struct ly_ctx *ctx, struct ly_in *in, LYS_INFORMAT format, struct lys_parser_ctx *main_ctx,
Michal Vasko22df3f02020-08-24 13:29:22 +0200912 LY_ERR (*custom_check)(const struct ly_ctx *, struct lysp_module *, struct lysp_submodule *, void *),
Radek Krejci0f969882020-08-21 16:56:47 +0200913 void *check_data, struct lysp_submodule **submodule)
Radek Krejci9f5e6fb2018-10-25 09:26:12 +0200914{
Michal Vasko3a41dff2020-07-15 14:30:28 +0200915 LY_ERR ret;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100916 struct lysp_submodule *submod = NULL, *latest_sp;
Michal Vaskob36053d2020-03-26 15:49:30 +0100917 struct lys_yang_parser_ctx *yangctx = NULL;
918 struct lys_yin_parser_ctx *yinctx = NULL;
919 struct lys_parser_ctx *pctx;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100920
Michal Vasko3a41dff2020-07-15 14:30:28 +0200921 LY_CHECK_ARG_RET(ctx, ctx, in, LY_EINVAL);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100922
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100923 switch (format) {
924 case LYS_IN_YIN:
Michal Vasko63f3d842020-07-08 10:10:14 +0200925 ret = yin_parse_submodule(&yinctx, ctx, main_ctx, in, &submod);
Michal Vaskob36053d2020-03-26 15:49:30 +0100926 pctx = (struct lys_parser_ctx *)yinctx;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100927 break;
928 case LYS_IN_YANG:
Michal Vasko63f3d842020-07-08 10:10:14 +0200929 ret = yang_parse_submodule(&yangctx, ctx, main_ctx, in, &submod);
Michal Vaskob36053d2020-03-26 15:49:30 +0100930 pctx = (struct lys_parser_ctx *)yangctx;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100931 break;
932 default:
David Sedlák4f2f5ba2019-08-15 13:18:48 +0200933 LOGERR(ctx, LY_EINVAL, "Invalid schema input format.");
Radek Krejci82fa8d42020-07-11 22:00:59 +0200934 ret = LY_EINVAL;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100935 break;
Radek Krejci9f5e6fb2018-10-25 09:26:12 +0200936 }
Radek Krejcif6923e82020-07-02 16:36:53 +0200937 LY_CHECK_GOTO(ret, error);
Radek Krejcif027df72020-09-15 13:00:28 +0200938 assert(submod);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100939
940 /* make sure that the newest revision is at position 0 */
941 lysp_sort_revisions(submod->revs);
942
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100943 /* decide the latest revision */
Michal Vasko8dc31992021-02-22 10:30:47 +0100944 latest_sp = (struct lysp_submodule *)ly_ctx_get_submodule2_latest(submod->mod, submod->name);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100945 if (latest_sp) {
946 if (submod->revs) {
947 if (!latest_sp->revs) {
948 /* latest has no revision, so mod is anyway newer */
949 submod->latest_revision = latest_sp->latest_revision;
Radek Krejcib3289d62019-09-18 12:21:39 +0200950 /* the latest_sp is zeroed later when the new module is being inserted into the context */
951 } else if (strcmp(submod->revs[0].date, latest_sp->revs[0].date) > 0) {
952 submod->latest_revision = latest_sp->latest_revision;
953 /* the latest_sp is zeroed later when the new module is being inserted into the context */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100954 } else {
Radek Krejcib3289d62019-09-18 12:21:39 +0200955 latest_sp = NULL;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100956 }
Radek Krejcib3289d62019-09-18 12:21:39 +0200957 } else {
958 latest_sp = NULL;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100959 }
960 } else {
961 submod->latest_revision = 1;
962 }
963
Radek Krejcib3289d62019-09-18 12:21:39 +0200964 if (custom_check) {
Michal Vasko7c8439f2020-08-05 13:25:19 +0200965 LY_CHECK_GOTO(ret = custom_check(ctx, NULL, submod, check_data), error);
Radek Krejcib3289d62019-09-18 12:21:39 +0200966 }
967
968 if (latest_sp) {
969 latest_sp->latest_revision = 0;
970 }
971
Michal Vasko7a0b0762020-09-02 16:37:01 +0200972 lys_parser_fill_filepath(ctx, in, &submod->filepath);
973
Michal Vasko7c8439f2020-08-05 13:25:19 +0200974 /* resolve imports and includes */
975 LY_CHECK_GOTO(ret = lys_resolve_import_include(pctx, (struct lysp_module *)submod), error);
976
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100977 /* remap possibly changed and reallocated typedefs and groupings list back to the main context */
Michal Vaskob36053d2020-03-26 15:49:30 +0100978 memcpy(&main_ctx->tpdfs_nodes, &pctx->tpdfs_nodes, sizeof main_ctx->tpdfs_nodes);
979 memcpy(&main_ctx->grps_nodes, &pctx->grps_nodes, sizeof main_ctx->grps_nodes);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100980
David Sedlák1b623122019-08-05 15:27:49 +0200981 if (format == LYS_IN_YANG) {
Michal Vaskob36053d2020-03-26 15:49:30 +0100982 yang_parser_ctx_free(yangctx);
David Sedlák1b623122019-08-05 15:27:49 +0200983 } else {
Michal Vaskob36053d2020-03-26 15:49:30 +0100984 yin_parser_ctx_free(yinctx);
David Sedlák1b623122019-08-05 15:27:49 +0200985 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200986 *submodule = submod;
987 return LY_SUCCESS;
David Sedlák1b623122019-08-05 15:27:49 +0200988
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100989error:
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200990 lysp_module_free((struct lysp_module *)submod);
David Sedlák1b623122019-08-05 15:27:49 +0200991 if (format == LYS_IN_YANG) {
Michal Vaskob36053d2020-03-26 15:49:30 +0100992 yang_parser_ctx_free(yangctx);
David Sedlák1b623122019-08-05 15:27:49 +0200993 } else {
Michal Vaskob36053d2020-03-26 15:49:30 +0100994 yin_parser_ctx_free(yinctx);
David Sedlák1b623122019-08-05 15:27:49 +0200995 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200996 return ret;
Radek Krejci9f5e6fb2018-10-25 09:26:12 +0200997}
998
Michal Vasko45b521c2020-11-04 17:14:39 +0100999/**
1000 * @brief Add ietf-netconf metadata to the parsed module. Operation, filter, and select are added.
1001 *
1002 * @param[in] mod Parsed module to add to.
1003 * @return LY_SUCCESS on success.
1004 * @return LY_ERR on error.
1005 */
1006static LY_ERR
1007lys_parsed_add_internal_ietf_netconf(struct lysp_module *mod)
1008{
1009 struct lysp_ext_instance *ext_p;
1010 struct lysp_stmt *stmt;
1011 struct lysp_import *imp;
1012
1013 /*
1014 * 1) edit-config's operation
1015 */
1016 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->exts, ext_p, LY_EMEM);
1017 LY_CHECK_ERR_RET(!ext_p, LOGMEM(mod->mod->ctx), LY_EMEM);
1018 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_:annotation", 0, &ext_p->name));
1019 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "operation", 0, &ext_p->argument));
Radek Krejci8df109d2021-04-23 12:19:08 +02001020 ext_p->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001021 ext_p->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001022 ext_p->flags = LYS_INTERNAL;
Radek Krejciab430862021-03-02 20:13:40 +01001023 ext_p->parent_stmt = LY_STMT_MODULE;
1024 ext_p->parent_stmt_index = 0;
Michal Vasko45b521c2020-11-04 17:14:39 +01001025
1026 ext_p->child = stmt = calloc(1, sizeof *ext_p->child);
1027 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1028 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "type", 0, &stmt->stmt));
1029 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enumeration", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001030 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001031 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001032 stmt->kw = LY_STMT_TYPE;
1033
1034 stmt->child = calloc(1, sizeof *stmt->child);
1035 stmt = stmt->child;
1036 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1037 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
1038 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "merge", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001039 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001040 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001041 stmt->kw = LY_STMT_ENUM;
1042
1043 stmt->next = calloc(1, sizeof *stmt->child);
1044 stmt = stmt->next;
1045 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1046 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
1047 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "replace", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001048 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001049 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001050 stmt->kw = LY_STMT_ENUM;
1051
1052 stmt->next = calloc(1, sizeof *stmt->child);
1053 stmt = stmt->next;
1054 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1055 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
1056 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "create", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001057 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001058 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001059 stmt->kw = LY_STMT_ENUM;
1060
1061 stmt->next = calloc(1, sizeof *stmt->child);
1062 stmt = stmt->next;
1063 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1064 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
1065 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "delete", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001066 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001067 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001068 stmt->kw = LY_STMT_ENUM;
1069
1070 stmt->next = calloc(1, sizeof *stmt->child);
1071 stmt = stmt->next;
1072 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1073 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
1074 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "remove", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001075 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001076 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001077 stmt->kw = LY_STMT_ENUM;
1078
1079 /*
1080 * 2) filter's type
1081 */
1082 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->exts, ext_p, LY_EMEM);
1083 LY_CHECK_ERR_RET(!ext_p, LOGMEM(mod->mod->ctx), LY_EMEM);
1084 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_:annotation", 0, &ext_p->name));
1085 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "type", 0, &ext_p->argument));
Radek Krejci8df109d2021-04-23 12:19:08 +02001086 ext_p->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001087 ext_p->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001088 ext_p->flags = LYS_INTERNAL;
Radek Krejciab430862021-03-02 20:13:40 +01001089 ext_p->parent_stmt = LY_STMT_MODULE;
1090 ext_p->parent_stmt_index = 0;
Michal Vasko45b521c2020-11-04 17:14:39 +01001091
1092 ext_p->child = stmt = calloc(1, sizeof *ext_p->child);
1093 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1094 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "type", 0, &stmt->stmt));
1095 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enumeration", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001096 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001097 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001098 stmt->kw = LY_STMT_TYPE;
1099
1100 stmt->child = calloc(1, sizeof *stmt->child);
1101 stmt = stmt->child;
1102 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1103 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
1104 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "subtree", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001105 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001106 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001107 stmt->kw = LY_STMT_ENUM;
1108
1109 stmt->next = calloc(1, sizeof *stmt->child);
1110 stmt = stmt->next;
1111 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1112 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
1113 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "xpath", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001114 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001115 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001116 stmt->kw = LY_STMT_ENUM;
1117
1118 /* if-feature for enum allowed only for YANG 1.1 modules */
1119 if (mod->version >= LYS_VERSION_1_1) {
1120 stmt->child = calloc(1, sizeof *stmt->child);
1121 stmt = stmt->child;
1122 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1123 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "if-feature", 0, &stmt->stmt));
1124 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "xpath", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001125 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001126 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001127 stmt->kw = LY_STMT_IF_FEATURE;
1128 }
1129
1130 /*
1131 * 3) filter's select
1132 */
1133 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->exts, ext_p, LY_EMEM);
1134 LY_CHECK_ERR_RET(!ext_p, LOGMEM(mod->mod->ctx), LY_EMEM);
1135 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_:annotation", 0, &ext_p->name));
1136 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "select", 0, &ext_p->argument));
Radek Krejci8df109d2021-04-23 12:19:08 +02001137 ext_p->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001138 ext_p->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001139 ext_p->flags = LYS_INTERNAL;
Radek Krejciab430862021-03-02 20:13:40 +01001140 ext_p->parent_stmt = LY_STMT_MODULE;
1141 ext_p->parent_stmt_index = 0;
Michal Vasko45b521c2020-11-04 17:14:39 +01001142
1143 ext_p->child = stmt = calloc(1, sizeof *ext_p->child);
1144 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1145 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "type", 0, &stmt->stmt));
1146 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "yang_:xpath1.0", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001147 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001148 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001149 stmt->kw = LY_STMT_TYPE;
1150
1151 /* create new imports for the used prefixes */
1152 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->imports, imp, LY_EMEM);
1153
1154 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "ietf-yang-metadata", 0, &imp->name));
1155 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_", 0, &imp->prefix));
1156 imp->flags = LYS_INTERNAL;
1157
1158 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->imports, imp, LY_EMEM);
1159
1160 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "ietf-yang-types", 0, &imp->name));
1161 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "yang_", 0, &imp->prefix));
1162 imp->flags = LYS_INTERNAL;
1163
1164 return LY_SUCCESS;
1165}
1166
1167/**
1168 * @brief Add ietf-netconf-with-defaults "default" metadata to the parsed module.
1169 *
1170 * @param[in] mod Parsed module to add to.
1171 * @return LY_SUCCESS on success.
1172 * @return LY_ERR on error.
1173 */
1174static LY_ERR
1175lys_parsed_add_internal_ietf_netconf_with_defaults(struct lysp_module *mod)
1176{
1177 struct lysp_ext_instance *ext_p;
1178 struct lysp_stmt *stmt;
1179 struct lysp_import *imp;
1180
1181 /* add new extension instance */
1182 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->exts, ext_p, LY_EMEM);
1183
1184 /* fill in the extension instance fields */
1185 LY_CHECK_ERR_RET(!ext_p, LOGMEM(mod->mod->ctx), LY_EMEM);
1186 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_:annotation", 0, &ext_p->name));
1187 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "default", 0, &ext_p->argument));
Radek Krejci8df109d2021-04-23 12:19:08 +02001188 ext_p->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001189 ext_p->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001190 ext_p->flags = LYS_INTERNAL;
Radek Krejciab430862021-03-02 20:13:40 +01001191 ext_p->parent_stmt = LY_STMT_MODULE;
1192 ext_p->parent_stmt_index = 0;
Michal Vasko45b521c2020-11-04 17:14:39 +01001193
1194 ext_p->child = stmt = calloc(1, sizeof *ext_p->child);
1195 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1196 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "type", 0, &stmt->stmt));
1197 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "boolean", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001198 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001199 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001200 stmt->kw = LY_STMT_TYPE;
1201
1202 /* create new import for the used prefix */
1203 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->imports, imp, LY_EMEM);
1204
1205 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "ietf-yang-metadata", 0, &imp->name));
1206 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_", 0, &imp->prefix));
1207 imp->flags = LYS_INTERNAL;
1208
1209 return LY_SUCCESS;
1210}
1211
Michal Vasko3a41dff2020-07-15 14:30:28 +02001212LY_ERR
Michal Vasko34e334d2021-01-25 16:12:31 +01001213lys_create_module(struct ly_ctx *ctx, struct ly_in *in, LYS_INFORMAT format, ly_bool need_implemented,
Radek Krejci1deb5be2020-08-26 16:43:36 +02001214 LY_ERR (*custom_check)(const struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *data),
Michal Vasko405cc9e2020-12-01 12:01:27 +01001215 void *check_data, const char **features, struct lys_glob_unres *unres, struct lys_module **module)
Radek Krejci86d106e2018-10-18 09:53:19 +02001216{
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001217 struct lys_module *mod = NULL, *latest, *mod_dup, *mod_impl;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02001218 struct lysp_submodule *submod;
Michal Vasko3a41dff2020-07-15 14:30:28 +02001219 LY_ERR ret;
Michal Vasko7c8439f2020-08-05 13:25:19 +02001220 LY_ARRAY_COUNT_TYPE u;
Michal Vaskob36053d2020-03-26 15:49:30 +01001221 struct lys_yang_parser_ctx *yangctx = NULL;
1222 struct lys_yin_parser_ctx *yinctx = NULL;
Radek Krejcif6923e82020-07-02 16:36:53 +02001223 struct lys_parser_ctx *pctx = NULL;
Michal Vasko7a0b0762020-09-02 16:37:01 +02001224 char *filename, *rev, *dot;
1225 size_t len;
Michal Vasko34e334d2021-01-25 16:12:31 +01001226 ly_bool implement;
Radek Krejci86d106e2018-10-18 09:53:19 +02001227
Michal Vasko34e334d2021-01-25 16:12:31 +01001228 assert(ctx && in && (!features || need_implemented) && unres);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001229
Michal Vasko7a0b0762020-09-02 16:37:01 +02001230 if (module) {
1231 *module = NULL;
1232 }
Radek Krejci86d106e2018-10-18 09:53:19 +02001233
Michal Vasko34e334d2021-01-25 16:12:31 +01001234 if (ctx->flags & LY_CTX_ALL_IMPLEMENTED) {
1235 implement = 1;
1236 } else {
1237 implement = need_implemented;
Radek Krejci00a3e8a2021-01-27 08:24:49 +01001238 }
Michal Vasko34e334d2021-01-25 16:12:31 +01001239
Radek Krejci86d106e2018-10-18 09:53:19 +02001240 mod = calloc(1, sizeof *mod);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001241 LY_CHECK_ERR_RET(!mod, LOGMEM(ctx), LY_EMEM);
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001242 mod->ctx = ctx;
Radek Krejci86d106e2018-10-18 09:53:19 +02001243
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001244 /* parse */
Radek Krejci86d106e2018-10-18 09:53:19 +02001245 switch (format) {
1246 case LYS_IN_YIN:
Michal Vasko405cc9e2020-12-01 12:01:27 +01001247 ret = yin_parse_module(&yinctx, in, mod, unres);
Michal Vaskob36053d2020-03-26 15:49:30 +01001248 pctx = (struct lys_parser_ctx *)yinctx;
Radek Krejci86d106e2018-10-18 09:53:19 +02001249 break;
1250 case LYS_IN_YANG:
Michal Vasko405cc9e2020-12-01 12:01:27 +01001251 ret = yang_parse_module(&yangctx, in, mod, unres);
Michal Vaskob36053d2020-03-26 15:49:30 +01001252 pctx = (struct lys_parser_ctx *)yangctx;
Radek Krejci86d106e2018-10-18 09:53:19 +02001253 break;
1254 default:
1255 LOGERR(ctx, LY_EINVAL, "Invalid schema input format.");
Michal Vasko3a41dff2020-07-15 14:30:28 +02001256 ret = LY_EINVAL;
Radek Krejci86d106e2018-10-18 09:53:19 +02001257 break;
1258 }
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001259 LY_CHECK_GOTO(ret, free_mod_cleanup);
Radek Krejci9f5e6fb2018-10-25 09:26:12 +02001260
1261 /* make sure that the newest revision is at position 0 */
1262 lysp_sort_revisions(mod->parsed->revs);
Radek Krejci0af46292019-01-11 16:02:31 +01001263 if (mod->parsed->revs) {
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001264 LY_CHECK_GOTO(ret = lydict_insert(ctx, mod->parsed->revs[0].date, 0, &mod->revision), free_mod_cleanup);
Radek Krejci0af46292019-01-11 16:02:31 +01001265 }
Radek Krejci86d106e2018-10-18 09:53:19 +02001266
Radek Krejcib3289d62019-09-18 12:21:39 +02001267 /* decide the latest revision */
Michal Vasko22df3f02020-08-24 13:29:22 +02001268 latest = (struct lys_module *)ly_ctx_get_module_latest(ctx, mod->name);
Radek Krejcib3289d62019-09-18 12:21:39 +02001269 if (latest) {
1270 if (mod->revision) {
1271 if (!latest->revision) {
1272 /* latest has no revision, so mod is anyway newer */
1273 mod->latest_revision = latest->latest_revision;
1274 /* the latest is zeroed later when the new module is being inserted into the context */
1275 } else if (strcmp(mod->revision, latest->revision) > 0) {
1276 mod->latest_revision = latest->latest_revision;
1277 /* the latest is zeroed later when the new module is being inserted into the context */
1278 } else {
1279 latest = NULL;
1280 }
1281 } else {
1282 latest = NULL;
1283 }
1284 } else {
1285 mod->latest_revision = 1;
1286 }
1287
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001288 if (custom_check) {
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001289 LY_CHECK_GOTO(ret = custom_check(ctx, mod->parsed, NULL, check_data), free_mod_cleanup);
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001290 }
1291
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001292 /* check whether it is not already in the context in the same revision */
Michal Vasko22df3f02020-08-24 13:29:22 +02001293 mod_dup = (struct lys_module *)ly_ctx_get_module(ctx, mod->name, mod->revision);
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001294 if (implement) {
1295 mod_impl = ly_ctx_get_module_implemented(ctx, mod->name);
1296 if (mod_impl && (mod_impl != mod_dup)) {
1297 LOGERR(ctx, LY_EDENIED, "Module \"%s@%s\" is already implemented in the context.", mod_impl->name,
1298 mod_impl->revision ? mod_impl->revision : "<none>");
1299 ret = LY_EDENIED;
1300 goto free_mod_cleanup;
Radek Krejcid33273d2018-10-25 14:55:52 +02001301 }
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001302 }
1303 if (mod_dup) {
1304 if (implement) {
1305 if (!mod_dup->implemented) {
1306 /* just implement it */
1307 LY_CHECK_GOTO(ret = lys_set_implemented_r(mod_dup, features, unres), free_mod_cleanup);
1308 goto free_mod_cleanup;
1309 }
1310
1311 /* nothing to do */
1312 LOGVRB("Module \"%s@%s\" is already implemented in the context.", mod_dup->name,
1313 mod_dup->revision ? mod_dup->revision : "<none>");
1314 goto free_mod_cleanup;
1315 }
1316
1317 /* nothing to do */
1318 LOGVRB("Module \"%s@%s\" is already present in the context.", mod_dup->name,
1319 mod_dup->revision ? mod_dup->revision : "<none>");
1320 goto free_mod_cleanup;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001321 }
Radek Krejci86d106e2018-10-18 09:53:19 +02001322
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001323 switch (in->type) {
1324 case LY_IN_FILEPATH:
1325 /* check that name and revision match filename */
1326 filename = strrchr(in->method.fpath.filepath, '/');
1327 if (!filename) {
1328 filename = in->method.fpath.filepath;
1329 } else {
1330 filename++;
1331 }
1332 rev = strchr(filename, '@');
1333 dot = strrchr(filename, '.');
1334
1335 /* name */
1336 len = strlen(mod->name);
1337 if (strncmp(filename, mod->name, len) ||
Michal Vasko69730152020-10-09 16:30:07 +02001338 ((rev && (rev != &filename[len])) || (!rev && (dot != &filename[len])))) {
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001339 LOGWRN(ctx, "File name \"%s\" does not match module name \"%s\".", filename, mod->name);
1340 }
1341 if (rev) {
1342 len = dot - ++rev;
Radek Krejcif13b87b2020-12-01 22:02:17 +01001343 if (!mod->parsed->revs || (len != LY_REV_SIZE - 1) || strncmp(mod->parsed->revs[0].date, rev, len)) {
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001344 LOGWRN(ctx, "File name \"%s\" does not match module revision \"%s\".", filename,
Michal Vasko69730152020-10-09 16:30:07 +02001345 mod->parsed->revs ? mod->parsed->revs[0].date : "none");
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001346 }
1347 }
1348
1349 break;
1350 case LY_IN_FD:
1351 case LY_IN_FILE:
1352 case LY_IN_MEMORY:
1353 /* nothing special to do */
1354 break;
Michal Vasko7a0b0762020-09-02 16:37:01 +02001355 case LY_IN_ERROR:
1356 LOGINT(ctx);
1357 ret = LY_EINT;
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001358 goto free_mod_cleanup;
Radek Krejci096235c2019-01-11 11:12:19 +01001359 }
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001360 lys_parser_fill_filepath(ctx, in, &mod->filepath);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001361
Michal Vasko7a0b0762020-09-02 16:37:01 +02001362 if (latest) {
1363 latest->latest_revision = 0;
1364 }
1365
Michal Vasko45b521c2020-11-04 17:14:39 +01001366 /* add internal data in case specific modules were parsed */
1367 if (!strcmp(mod->name, "ietf-netconf")) {
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001368 LY_CHECK_GOTO(ret = lys_parsed_add_internal_ietf_netconf(mod->parsed), free_mod_cleanup);
Michal Vasko45b521c2020-11-04 17:14:39 +01001369 } else if (!strcmp(mod->name, "ietf-netconf-with-defaults")) {
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001370 LY_CHECK_GOTO(ret = lys_parsed_add_internal_ietf_netconf_with_defaults(mod->parsed), free_mod_cleanup);
Michal Vasko45b521c2020-11-04 17:14:39 +01001371 }
1372
Michal Vasko405cc9e2020-12-01 12:01:27 +01001373 /* add the module into newly created module set, will also be freed from there on any error */
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001374 LY_CHECK_GOTO(ret = ly_set_add(&unres->creating, mod, 1, NULL), free_mod_cleanup);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001375
Michal Vasko7a0b0762020-09-02 16:37:01 +02001376 /* add into context */
Radek Krejci3d92e442020-10-12 12:48:13 +02001377 ret = ly_set_add(&ctx->list, mod, 1, NULL);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001378 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko794ab4b2021-03-31 09:42:19 +02001379 ctx->change_count++;
Michal Vasko7a0b0762020-09-02 16:37:01 +02001380
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001381 /* resolve includes and all imports */
Michal Vasko405cc9e2020-12-01 12:01:27 +01001382 LY_CHECK_GOTO(ret = lys_resolve_import_include(pctx, mod->parsed), cleanup);
Michal Vasko7a0b0762020-09-02 16:37:01 +02001383
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001384 /* check name collisions */
Michal Vasko405cc9e2020-12-01 12:01:27 +01001385 LY_CHECK_GOTO(ret = lysp_check_dup_typedefs(pctx, mod->parsed), cleanup);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001386 /* TODO groupings */
Michal Vasko405cc9e2020-12-01 12:01:27 +01001387 LY_CHECK_GOTO(ret = lysp_check_dup_features(pctx, mod->parsed), cleanup);
1388 LY_CHECK_GOTO(ret = lysp_check_dup_identities(pctx, mod->parsed), cleanup);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001389
1390 /* compile features */
Michal Vasko405cc9e2020-12-01 12:01:27 +01001391 LY_CHECK_GOTO(ret = lys_compile_feature_iffeatures(mod->parsed), cleanup);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001392
Michal Vasko05e32042021-04-23 13:40:56 +02001393 /* pre-compile identities of the module and any submodules */
1394 LY_CHECK_GOTO(ret = lys_identity_precompile(NULL, ctx, mod->parsed, mod->parsed->identities, &mod->identities), cleanup);
1395 LY_ARRAY_FOR(mod->parsed->includes, u) {
1396 submod = mod->parsed->includes[u].submodule;
1397 ret = lys_identity_precompile(NULL, ctx, (struct lysp_module *)submod, submod->identities, &mod->identities);
1398 LY_CHECK_GOTO(ret, cleanup);
1399 }
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001400
Michal Vasko05e32042021-04-23 13:40:56 +02001401 if (implement) {
Michal Vasko89b5c072020-10-06 13:52:44 +02001402 /* implement (compile) */
Michal Vasko405cc9e2020-12-01 12:01:27 +01001403 LY_CHECK_GOTO(ret = lys_set_implemented_r(mod, features, unres), cleanup);
Michal Vasko7a0b0762020-09-02 16:37:01 +02001404 }
1405
Michal Vasko405cc9e2020-12-01 12:01:27 +01001406 /* success */
1407 goto cleanup;
Michal Vasko7a0b0762020-09-02 16:37:01 +02001408
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001409free_mod_cleanup:
Radek Krejci90ed21e2021-04-12 14:47:46 +02001410 lys_module_free(mod);
Michal Vasko0e02e8e2021-02-26 15:01:55 +01001411 if (ret) {
1412 mod = NULL;
1413 } else {
1414 /* return the existing module */
1415 assert(mod_dup);
1416 mod = mod_dup;
1417 }
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001418
Michal Vasko405cc9e2020-12-01 12:01:27 +01001419cleanup:
Michal Vasko7a0b0762020-09-02 16:37:01 +02001420 if (pctx) {
1421 ly_set_erase(&pctx->tpdfs_nodes, NULL);
1422 }
1423 if (format == LYS_IN_YANG) {
1424 yang_parser_ctx_free(yangctx);
1425 } else {
1426 yin_parser_ctx_free(yinctx);
1427 }
1428
Michal Vasko405cc9e2020-12-01 12:01:27 +01001429 if (!ret && module) {
1430 *module = mod;
1431 }
Michal Vasko7a0b0762020-09-02 16:37:01 +02001432 return ret;
1433}
1434
Radek Krejci545b4872020-11-15 10:15:12 +01001435static LYS_INFORMAT
1436lys_parse_get_format(const struct ly_in *in, LYS_INFORMAT format)
1437{
1438 if (!format && (in->type == LY_IN_FILEPATH)) {
1439 /* unknown format - try to detect it from filename's suffix */
1440 const char *path = in->method.fpath.filepath;
1441 size_t len = strlen(path);
1442
1443 /* ignore trailing whitespaces */
1444 for ( ; len > 0 && isspace(path[len - 1]); len--) {}
1445
Radek Krejcif13b87b2020-12-01 22:02:17 +01001446 if ((len >= LY_YANG_SUFFIX_LEN + 1) &&
1447 !strncmp(&path[len - LY_YANG_SUFFIX_LEN], LY_YANG_SUFFIX, LY_YANG_SUFFIX_LEN)) {
Radek Krejci545b4872020-11-15 10:15:12 +01001448 format = LYS_IN_YANG;
Radek Krejcif13b87b2020-12-01 22:02:17 +01001449 } else if ((len >= LY_YIN_SUFFIX_LEN + 1) &&
1450 !strncmp(&path[len - LY_YIN_SUFFIX_LEN], LY_YIN_SUFFIX, LY_YIN_SUFFIX_LEN)) {
Radek Krejci545b4872020-11-15 10:15:12 +01001451 format = LYS_IN_YIN;
1452 } /* else still unknown */
1453 }
1454
1455 return format;
1456}
1457
Michal Vasko7a0b0762020-09-02 16:37:01 +02001458API LY_ERR
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001459lys_parse(struct ly_ctx *ctx, struct ly_in *in, LYS_INFORMAT format, const char **features, const struct lys_module **module)
Michal Vasko7a0b0762020-09-02 16:37:01 +02001460{
Michal Vasko405cc9e2020-12-01 12:01:27 +01001461 LY_ERR ret;
1462 struct lys_glob_unres unres = {0};
1463
Michal Vasko7a0b0762020-09-02 16:37:01 +02001464 if (module) {
1465 *module = NULL;
1466 }
Radek Krejci545b4872020-11-15 10:15:12 +01001467 LY_CHECK_ARG_RET(NULL, ctx, in, LY_EINVAL);
1468
1469 format = lys_parse_get_format(in, format);
1470 LY_CHECK_ARG_RET(ctx, format, LY_EINVAL);
Michal Vasko7a0b0762020-09-02 16:37:01 +02001471
1472 /* remember input position */
1473 in->func_start = in->current;
1474
Michal Vasko405cc9e2020-12-01 12:01:27 +01001475 ret = lys_create_module(ctx, in, format, 1, NULL, NULL, features, &unres, (struct lys_module **)module);
1476 LY_CHECK_GOTO(ret, cleanup);
1477
1478 /* resolve global unres */
1479 ret = lys_compile_unres_glob(ctx, &unres);
1480 LY_CHECK_GOTO(ret, cleanup);
1481
1482cleanup:
1483 if (ret) {
1484 lys_compile_unres_glob_revert(ctx, &unres);
1485 }
1486 lys_compile_unres_glob_erase(ctx, &unres);
1487 if (ret && module) {
1488 *module = NULL;
1489 }
1490 return ret;
Radek Krejci86d106e2018-10-18 09:53:19 +02001491}
1492
Michal Vasko3a41dff2020-07-15 14:30:28 +02001493API LY_ERR
1494lys_parse_mem(struct ly_ctx *ctx, const char *data, LYS_INFORMAT format, const struct lys_module **module)
Radek Krejci86d106e2018-10-18 09:53:19 +02001495{
Radek Krejci0f969882020-08-21 16:56:47 +02001496 LY_ERR ret;
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001497 struct ly_in *in = NULL;
Radek Krejci86d106e2018-10-18 09:53:19 +02001498
Michal Vasko3a41dff2020-07-15 14:30:28 +02001499 LY_CHECK_ARG_RET(ctx, data, format != LYS_IN_UNKNOWN, LY_EINVAL);
Radek Krejci65639b92018-11-27 10:51:37 +01001500
Michal Vasko3a41dff2020-07-15 14:30:28 +02001501 LY_CHECK_ERR_RET(ret = ly_in_new_memory(data, &in), LOGERR(ctx, ret, "Unable to create input handler."), ret);
Radek Krejci86d106e2018-10-18 09:53:19 +02001502
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001503 ret = lys_parse(ctx, in, format, NULL, module);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001504 ly_in_free(in, 0);
Radek Krejci86d106e2018-10-18 09:53:19 +02001505
Michal Vasko3a41dff2020-07-15 14:30:28 +02001506 return ret;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001507}
1508
Michal Vasko3a41dff2020-07-15 14:30:28 +02001509API LY_ERR
1510lys_parse_fd(struct ly_ctx *ctx, int fd, LYS_INFORMAT format, const struct lys_module **module)
Radek Krejci86d106e2018-10-18 09:53:19 +02001511{
Radek Krejci0f969882020-08-21 16:56:47 +02001512 LY_ERR ret;
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001513 struct ly_in *in = NULL;
Radek Krejci86d106e2018-10-18 09:53:19 +02001514
Michal Vasko3a41dff2020-07-15 14:30:28 +02001515 LY_CHECK_ARG_RET(ctx, fd > -1, format != LYS_IN_UNKNOWN, LY_EINVAL);
Radek Krejci86d106e2018-10-18 09:53:19 +02001516
Michal Vasko3a41dff2020-07-15 14:30:28 +02001517 LY_CHECK_ERR_RET(ret = ly_in_new_fd(fd, &in), LOGERR(ctx, ret, "Unable to create input handler."), ret);
Radek Krejci86d106e2018-10-18 09:53:19 +02001518
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001519 ret = lys_parse(ctx, in, format, NULL, module);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001520 ly_in_free(in, 0);
Radek Krejci86d106e2018-10-18 09:53:19 +02001521
Michal Vasko3a41dff2020-07-15 14:30:28 +02001522 return ret;
Radek Krejci86d106e2018-10-18 09:53:19 +02001523}
1524
Michal Vasko3a41dff2020-07-15 14:30:28 +02001525API LY_ERR
1526lys_parse_path(struct ly_ctx *ctx, const char *path, LYS_INFORMAT format, const struct lys_module **module)
Radek Krejcid33273d2018-10-25 14:55:52 +02001527{
Radek Krejci0f969882020-08-21 16:56:47 +02001528 LY_ERR ret;
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001529 struct ly_in *in = NULL;
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001530
Michal Vasko3a41dff2020-07-15 14:30:28 +02001531 LY_CHECK_ARG_RET(ctx, path, format != LYS_IN_UNKNOWN, LY_EINVAL);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001532
Michal Vasko3a41dff2020-07-15 14:30:28 +02001533 LY_CHECK_ERR_RET(ret = ly_in_new_filepath(path, 0, &in),
Michal Vasko69730152020-10-09 16:30:07 +02001534 LOGERR(ctx, ret, "Unable to create input handler for filepath %s.", path), ret);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001535
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001536 ret = lys_parse(ctx, in, format, NULL, module);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001537 ly_in_free(in, 0);
1538
Michal Vasko3a41dff2020-07-15 14:30:28 +02001539 return ret;
Radek Krejcid33273d2018-10-25 14:55:52 +02001540}
1541
1542API LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02001543lys_search_localfile(const char * const *searchpaths, ly_bool cwd, const char *name, const char *revision,
Radek Krejci0f969882020-08-21 16:56:47 +02001544 char **localfile, LYS_INFORMAT *format)
Radek Krejcid33273d2018-10-25 14:55:52 +02001545{
Radek Krejci1deb5be2020-08-26 16:43:36 +02001546 LY_ERR ret = LY_EMEM;
Radek Krejcid33273d2018-10-25 14:55:52 +02001547 size_t len, flen, match_len = 0, dir_len;
Radek Krejci857189e2020-09-01 13:26:36 +02001548 ly_bool implicit_cwd = 0;
Radek Krejcid33273d2018-10-25 14:55:52 +02001549 char *wd, *wn = NULL;
1550 DIR *dir = NULL;
1551 struct dirent *file;
1552 char *match_name = NULL;
1553 LYS_INFORMAT format_aux, match_format = 0;
1554 struct ly_set *dirs;
1555 struct stat st;
1556
1557 LY_CHECK_ARG_RET(NULL, localfile, LY_EINVAL);
1558
1559 /* start to fill the dir fifo with the context's search path (if set)
1560 * and the current working directory */
Radek Krejciba03a5a2020-08-27 14:40:41 +02001561 LY_CHECK_RET(ly_set_new(&dirs));
Radek Krejcid33273d2018-10-25 14:55:52 +02001562
1563 len = strlen(name);
1564 if (cwd) {
1565 wd = get_current_dir_name();
1566 if (!wd) {
1567 LOGMEM(NULL);
1568 goto cleanup;
1569 } else {
1570 /* add implicit current working directory (./) to be searched,
1571 * this directory is not searched recursively */
Radek Krejciba03a5a2020-08-27 14:40:41 +02001572 ret = ly_set_add(dirs, wd, 0, NULL);
1573 LY_CHECK_GOTO(ret, cleanup);
Radek Krejcid33273d2018-10-25 14:55:52 +02001574 implicit_cwd = 1;
1575 }
1576 }
1577 if (searchpaths) {
Radek Krejci1deb5be2020-08-26 16:43:36 +02001578 for (uint64_t i = 0; searchpaths[i]; i++) {
Radek Krejcid33273d2018-10-25 14:55:52 +02001579 /* check for duplicities with the implicit current working directory */
1580 if (implicit_cwd && !strcmp(dirs->objs[0], searchpaths[i])) {
1581 implicit_cwd = 0;
1582 continue;
1583 }
1584 wd = strdup(searchpaths[i]);
1585 if (!wd) {
1586 LOGMEM(NULL);
1587 goto cleanup;
Radek Krejciba03a5a2020-08-27 14:40:41 +02001588 } else {
1589 ret = ly_set_add(dirs, wd, 0, NULL);
1590 LY_CHECK_GOTO(ret, cleanup);
Radek Krejcid33273d2018-10-25 14:55:52 +02001591 }
1592 }
1593 }
1594 wd = NULL;
1595
1596 /* start searching */
1597 while (dirs->count) {
1598 free(wd);
1599 free(wn); wn = NULL;
1600
1601 dirs->count--;
1602 wd = (char *)dirs->objs[dirs->count];
1603 dirs->objs[dirs->count] = NULL;
Radek Krejcieeee95c2021-01-19 10:57:22 +01001604 LOGVRB("Searching for \"%s\" in \"%s\".", name, wd);
Radek Krejcid33273d2018-10-25 14:55:52 +02001605
1606 if (dir) {
1607 closedir(dir);
1608 }
1609 dir = opendir(wd);
1610 dir_len = strlen(wd);
1611 if (!dir) {
1612 LOGWRN(NULL, "Unable to open directory \"%s\" for searching (sub)modules (%s).", wd, strerror(errno));
1613 } else {
1614 while ((file = readdir(dir))) {
1615 if (!strcmp(".", file->d_name) || !strcmp("..", file->d_name)) {
1616 /* skip . and .. */
1617 continue;
1618 }
1619 free(wn);
1620 if (asprintf(&wn, "%s/%s", wd, file->d_name) == -1) {
1621 LOGMEM(NULL);
1622 goto cleanup;
1623 }
1624 if (stat(wn, &st) == -1) {
1625 LOGWRN(NULL, "Unable to get information about \"%s\" file in \"%s\" when searching for (sub)modules (%s)",
Michal Vasko69730152020-10-09 16:30:07 +02001626 file->d_name, wd, strerror(errno));
Radek Krejcid33273d2018-10-25 14:55:52 +02001627 continue;
1628 }
1629 if (S_ISDIR(st.st_mode) && (dirs->count || !implicit_cwd)) {
1630 /* we have another subdirectory in searchpath to explore,
1631 * subdirectories are not taken into account in current working dir (dirs->set.g[0]) */
Radek Krejciba03a5a2020-08-27 14:40:41 +02001632 ret = ly_set_add(dirs, wn, 0, NULL);
1633 LY_CHECK_GOTO(ret, cleanup);
1634
Radek Krejcid33273d2018-10-25 14:55:52 +02001635 /* continue with the next item in current directory */
1636 wn = NULL;
1637 continue;
1638 } else if (!S_ISREG(st.st_mode)) {
1639 /* not a regular file (note that we see the target of symlinks instead of symlinks */
1640 continue;
1641 }
1642
1643 /* here we know that the item is a file which can contain a module */
1644 if (strncmp(name, file->d_name, len) ||
Michal Vasko69730152020-10-09 16:30:07 +02001645 ((file->d_name[len] != '.') && (file->d_name[len] != '@'))) {
Radek Krejcid33273d2018-10-25 14:55:52 +02001646 /* different filename than the module we search for */
1647 continue;
1648 }
1649
1650 /* get type according to filename suffix */
1651 flen = strlen(file->d_name);
Radek Krejcif13b87b2020-12-01 22:02:17 +01001652 if ((flen >= LY_YANG_SUFFIX_LEN + 1) &&
1653 !strcmp(&file->d_name[flen - LY_YANG_SUFFIX_LEN], LY_YANG_SUFFIX)) {
Radek Krejcid33273d2018-10-25 14:55:52 +02001654 format_aux = LYS_IN_YANG;
Radek Krejcif13b87b2020-12-01 22:02:17 +01001655 } else if ((flen >= LY_YIN_SUFFIX_LEN + 1) &&
1656 !strcmp(&file->d_name[flen - LY_YIN_SUFFIX_LEN], LY_YIN_SUFFIX)) {
Radek Krejci01a937f2020-11-15 10:14:12 +01001657 format_aux = LYS_IN_YIN;
Radek Krejcid33273d2018-10-25 14:55:52 +02001658 } else {
1659 /* not supportde suffix/file format */
1660 continue;
1661 }
1662
1663 if (revision) {
1664 /* we look for the specific revision, try to get it from the filename */
1665 if (file->d_name[len] == '@') {
1666 /* check revision from the filename */
1667 if (strncmp(revision, &file->d_name[len + 1], strlen(revision))) {
1668 /* another revision */
1669 continue;
1670 } else {
1671 /* exact revision */
1672 free(match_name);
1673 match_name = wn;
1674 wn = NULL;
1675 match_len = dir_len + 1 + len;
1676 match_format = format_aux;
1677 goto success;
1678 }
1679 } else {
1680 /* continue trying to find exact revision match, use this only if not found */
1681 free(match_name);
1682 match_name = wn;
1683 wn = NULL;
Michal Vasko44f3d2c2020-08-24 09:49:38 +02001684 match_len = dir_len + 1 + len;
Radek Krejcid33273d2018-10-25 14:55:52 +02001685 match_format = format_aux;
1686 continue;
1687 }
1688 } else {
1689 /* remember the revision and try to find the newest one */
1690 if (match_name) {
Michal Vasko69730152020-10-09 16:30:07 +02001691 if ((file->d_name[len] != '@') ||
Radek Krejcif13b87b2020-12-01 22:02:17 +01001692 lysp_check_date(NULL, &file->d_name[len + 1],
1693 flen - ((format_aux == LYS_IN_YANG) ? LY_YANG_SUFFIX_LEN : LY_YIN_SUFFIX_LEN) - len - 1, NULL)) {
Radek Krejcid33273d2018-10-25 14:55:52 +02001694 continue;
Michal Vasko69730152020-10-09 16:30:07 +02001695 } else if ((match_name[match_len] == '@') &&
Radek Krejcid33273d2018-10-25 14:55:52 +02001696 (strncmp(&match_name[match_len + 1], &file->d_name[len + 1], LY_REV_SIZE - 1) >= 0)) {
1697 continue;
1698 }
1699 free(match_name);
1700 }
1701
1702 match_name = wn;
1703 wn = NULL;
1704 match_len = dir_len + 1 + len;
1705 match_format = format_aux;
1706 continue;
1707 }
1708 }
1709 }
1710 }
1711
1712success:
1713 (*localfile) = match_name;
1714 match_name = NULL;
1715 if (format) {
1716 (*format) = match_format;
1717 }
Radek Krejci1deb5be2020-08-26 16:43:36 +02001718 ret = LY_SUCCESS;
Radek Krejcid33273d2018-10-25 14:55:52 +02001719
1720cleanup:
1721 free(wn);
1722 free(wd);
1723 if (dir) {
1724 closedir(dir);
1725 }
1726 free(match_name);
1727 ly_set_free(dirs, free);
1728
1729 return ret;
1730}