blob: 5582fce9f8adf5f6430276d8c836aef5c5481799 [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
Christian Hopps32874e12021-05-01 09:43:54 -040015#define _GNU_SOURCE /* asprintf, strdup */
Radek Krejci535ea9f2020-05-29 16:01:05 +020016
Radek Krejcica376bd2020-06-11 16:04:06 +020017#include "tree_schema.h"
Radek Krejci86d106e2018-10-18 09:53:19 +020018
Radek Krejcie7b95092019-05-15 11:03:07 +020019#include <assert.h>
Radek Krejci545b4872020-11-15 10:15:12 +010020#include <ctype.h>
Radek Krejcid33273d2018-10-25 14:55:52 +020021#include <dirent.h>
Radek Krejci86d106e2018-10-18 09:53:19 +020022#include <errno.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020023#include <stdint.h>
Radek Krejci86d106e2018-10-18 09:53:19 +020024#include <stdio.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020025#include <stdlib.h>
26#include <string.h>
Radek Krejci86d106e2018-10-18 09:53:19 +020027#include <sys/stat.h>
Radek Krejci86d106e2018-10-18 09:53:19 +020028#include <unistd.h>
Radek Krejci3f5e3db2018-10-11 15:57:47 +020029
Radek Krejcica376bd2020-06-11 16:04:06 +020030#include "common.h"
Michal Vasko5aa44c02020-06-29 11:47:02 +020031#include "compat.h"
Radek Krejci86d106e2018-10-18 09:53:19 +020032#include "context.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020033#include "dict.h"
Radek Krejci47fab892020-11-05 17:02:41 +010034#include "in.h"
Michal Vaskoafac7822020-10-20 14:22:26 +020035#include "in_internal.h"
Radek Krejci47fab892020-11-05 17:02:41 +010036#include "log.h"
Radek Krejcif0e1ba52020-05-22 15:14:35 +020037#include "parser_internal.h"
Radek Krejcica376bd2020-06-11 16:04:06 +020038#include "parser_schema.h"
Michal Vasko40308e72020-10-20 16:38:40 +020039#include "path.h"
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020040#include "schema_compile.h"
Michal Vaskof4258e12021-06-15 12:11:42 +020041#include "schema_compile_amend.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{
Michal Vaskocc64aec2021-05-18 17:33:11 +0200133 if (stmt == LY_STMT_EXTENSION_INSTANCE) {
134 return "extension instance";
135 } else {
136 return stmt_attr_info[stmt].name;
137 }
Radek Krejcif8ca8192021-03-02 16:50:06 +0100138}
139
Radek Krejcieccf6602021-02-05 19:42:54 +0100140const char * const ly_devmod_list[] = {
141 [LYS_DEV_NOT_SUPPORTED] = "not-supported",
142 [LYS_DEV_ADD] = "add",
143 [LYS_DEV_DELETE] = "delete",
144 [LYS_DEV_REPLACE] = "replace",
145};
146
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200147API LY_ERR
148lysc_tree_dfs_full(const struct lysc_node *root, lysc_dfs_clb dfs_clb, void *data)
149{
Michal Vasko1d972ca2020-11-03 17:16:56 +0100150 struct lysc_node *elem, *elem2;
Radek Krejci2a9fc652021-01-22 17:44:34 +0100151 const struct lysc_node_action *action;
152 const struct lysc_node_notif *notif;
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200153
154 LY_CHECK_ARG_RET(NULL, root, dfs_clb, LY_EINVAL);
155
156 LYSC_TREE_DFS_BEGIN(root, elem) {
157 /* schema node */
158 LY_CHECK_RET(dfs_clb(elem, data, &LYSC_TREE_DFS_continue));
159
Radek Krejci2a9fc652021-01-22 17:44:34 +0100160 LY_LIST_FOR(lysc_node_actions(elem), action) {
161 LYSC_TREE_DFS_BEGIN(action, elem2) {
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200162 /* action subtree */
163 LY_CHECK_RET(dfs_clb(elem2, data, &LYSC_TREE_DFS_continue));
164
Radek Krejci2a9fc652021-01-22 17:44:34 +0100165 LYSC_TREE_DFS_END(action, elem2);
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200166 }
167 }
168
Radek Krejci2a9fc652021-01-22 17:44:34 +0100169 LY_LIST_FOR(lysc_node_notifs(elem), notif) {
170 LYSC_TREE_DFS_BEGIN(notif, elem2) {
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200171 /* notification subtree */
172 LY_CHECK_RET(dfs_clb(elem2, data, &LYSC_TREE_DFS_continue));
173
Radek Krejci2a9fc652021-01-22 17:44:34 +0100174 LYSC_TREE_DFS_END(notif, elem2);
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200175 }
176 }
177
178 LYSC_TREE_DFS_END(root, elem);
179 }
180
181 return LY_SUCCESS;
182}
183
184API LY_ERR
185lysc_module_dfs_full(const struct lys_module *mod, lysc_dfs_clb dfs_clb, void *data)
186{
Michal Vasko2336cf52020-11-03 17:18:15 +0100187 const struct lysc_node *root;
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200188
189 LY_CHECK_ARG_RET(NULL, mod, mod->compiled, dfs_clb, LY_EINVAL);
190
191 /* schema nodes */
Michal Vasko2336cf52020-11-03 17:18:15 +0100192 LY_LIST_FOR(mod->compiled->data, root) {
193 LY_CHECK_RET(lysc_tree_dfs_full(root, dfs_clb, data));
194 }
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200195
196 /* RPCs */
Radek Krejci2a9fc652021-01-22 17:44:34 +0100197 LY_LIST_FOR((const struct lysc_node *)mod->compiled->rpcs, root) {
198 LY_CHECK_RET(lysc_tree_dfs_full(root, dfs_clb, data));
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200199 }
200
201 /* notifications */
Radek Krejci2a9fc652021-01-22 17:44:34 +0100202 LY_LIST_FOR((const struct lysc_node *)mod->compiled->notifs, root) {
203 LY_CHECK_RET(lysc_tree_dfs_full(root, dfs_clb, data));
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200204 }
205
206 return LY_SUCCESS;
207}
208
Radek Krejcib93bd412020-11-02 13:23:11 +0100209static void
210lys_getnext_into_case(const struct lysc_node_case *first_case, const struct lysc_node **last, const struct lysc_node **next)
211{
Radek Krejcic5b54a02020-11-05 17:13:18 +0100212 for ( ; first_case; first_case = (const struct lysc_node_case *)first_case->next) {
Radek Krejcib93bd412020-11-02 13:23:11 +0100213 if (first_case->child) {
214 /* there is something to return */
215 (*next) = first_case->child;
216 return;
217 }
218 }
219
220 /* no children in choice's cases, so go to the choice's sibling instead of into it */
221 (*last) = (*next);
222 (*next) = (*next)->next;
223}
224
Radek Krejci035dacf2021-02-12 18:25:53 +0100225/**
226 * @brief Generic getnext function for ::lys_getnext() and ::lys_getnext_ext().
227 *
228 * Gets next schema tree (sibling) node element that can be instantiated in a data tree. Returned node can
229 * be from an augment. If the @p ext is provided, the function is locked inside the schema tree defined in the
230 * extension instance.
231 *
232 * ::lys_getnext_() is supposed to be called sequentially. In the first call, the \p last parameter is usually NULL
233 * and function starts returning i) the first \p parent's child or ii) the first top level element specified in the
234 * given extension (if provided) or iii) the first top level element of the \p module.
235 * Consequent calls suppose to provide the previously returned node as the \p last parameter and still the same
236 * \p parent and \p module parameters.
237 *
238 * Without options, the function is used to traverse only the schema nodes that can be paired with corresponding
239 * data nodes in a data tree. By setting some \p options the behavior can be modified to the extent that
240 * all the schema nodes are iteratively returned.
241 *
242 * @param[in] last Previously returned schema tree node, or NULL in case of the first call.
243 * @param[in] parent Parent of the subtree where the function starts processing.
244 * @param[in] module In case of iterating on top level elements, the \p parent is NULL and
245 * module must be specified.
246 * @param[in] ext The extension instance to provide a separate schema tree. To consider the top level elements in the tree,
247 * the \p parent must be NULL. Anyway, at least one of @p parent, @p module and @p ext parameters must be specified.
248 * @param[in] options [ORed options](@ref sgetnextflags).
249 * @return Next schema tree node that can be instantiated in a data tree, NULL in case there is no such element.
250 */
251static const struct lysc_node *
252lys_getnext_(const struct lysc_node *last, const struct lysc_node *parent, const struct lysc_module *module,
253 const struct lysc_ext_instance *ext, uint32_t options)
Radek Krejcia3045382018-11-22 14:30:31 +0100254{
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100255 const struct lysc_node *next = NULL;
Radek Krejci857189e2020-09-01 13:26:36 +0200256 ly_bool action_flag = 0, notif_flag = 0;
Radek Krejci035dacf2021-02-12 18:25:53 +0100257 struct lysc_node **data_p = NULL;
Radek Krejcia3045382018-11-22 14:30:31 +0100258
Radek Krejci035dacf2021-02-12 18:25:53 +0100259 LY_CHECK_ARG_RET(NULL, parent || module || ext, NULL);
Radek Krejcia3045382018-11-22 14:30:31 +0100260
Radek Krejcid5a2b9d2019-04-12 10:39:30 +0200261next:
Radek Krejcia3045382018-11-22 14:30:31 +0100262 if (!last) {
263 /* first call */
264
265 /* get know where to start */
266 if (parent) {
267 /* schema subtree */
Michal Vasko544e58a2021-01-28 14:33:41 +0100268 next = last = lysc_node_child(parent);
Radek Krejcia3045382018-11-22 14:30:31 +0100269 } else {
270 /* top level data */
Radek Krejci035dacf2021-02-12 18:25:53 +0100271 if (ext) {
272 lysc_ext_substmt(ext, LY_STMT_CONTAINER /* matches all nodes */, (void **)&data_p, NULL);
273 next = last = data_p ? *data_p : NULL;
274 } else {
275 next = last = module->data;
276 }
Radek Krejcia3045382018-11-22 14:30:31 +0100277 }
278 if (!next) {
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100279 /* try to get action or notification */
280 goto repeat;
Radek Krejcia3045382018-11-22 14:30:31 +0100281 }
Radek Krejci05b774b2019-02-25 13:26:18 +0100282 /* test if the next can be returned */
283 goto check;
284
Michal Vasko1bf09392020-03-27 12:38:10 +0100285 } else if (last->nodetype & (LYS_RPC | LYS_ACTION)) {
Radek Krejci05b774b2019-02-25 13:26:18 +0100286 action_flag = 1;
Radek Krejci2a9fc652021-01-22 17:44:34 +0100287 next = last->next;
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100288 } else if (last->nodetype == LYS_NOTIF) {
Radek Krejci05b774b2019-02-25 13:26:18 +0100289 action_flag = notif_flag = 1;
Radek Krejci2a9fc652021-01-22 17:44:34 +0100290 next = last->next;
Michal Vasko20424b42020-08-31 12:29:38 +0200291 } else {
292 next = last->next;
Radek Krejcia3045382018-11-22 14:30:31 +0100293 }
294
Radek Krejcia3045382018-11-22 14:30:31 +0100295repeat:
296 if (!next) {
Radek Krejcia9026eb2018-12-12 16:04:47 +0100297 /* possibly go back to parent */
Radek Krejci035dacf2021-02-12 18:25:53 +0100298 data_p = NULL;
Michal Vasko69730152020-10-09 16:30:07 +0200299 if (last && (last->parent != parent)) {
Radek Krejcia9026eb2018-12-12 16:04:47 +0100300 last = last->parent;
Radek Krejcid5a2b9d2019-04-12 10:39:30 +0200301 goto next;
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100302 } else if (!action_flag) {
303 action_flag = 1;
Radek Krejci035dacf2021-02-12 18:25:53 +0100304 if (ext) {
305 lysc_ext_substmt(ext, LY_STMT_RPC /* matches also actions */, (void **)&data_p, NULL);
306 next = data_p ? *data_p : NULL;
307 } else if (parent) {
308 next = (struct lysc_node *)lysc_node_actions(parent);
309 } else {
310 next = (struct lysc_node *)module->rpcs;
311 }
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100312 } else if (!notif_flag) {
313 notif_flag = 1;
Radek Krejci035dacf2021-02-12 18:25:53 +0100314 if (ext) {
315 lysc_ext_substmt(ext, LY_STMT_NOTIFICATION, (void **)&data_p, NULL);
316 next = data_p ? *data_p : NULL;
317 } else if (parent) {
318 next = (struct lysc_node *)lysc_node_notifs(parent);
319 } else {
320 next = (struct lysc_node *)module->notifs;
321 }
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100322 } else {
323 return NULL;
Radek Krejcia9026eb2018-12-12 16:04:47 +0100324 }
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100325 goto repeat;
Radek Krejcia3045382018-11-22 14:30:31 +0100326 }
Radek Krejci05b774b2019-02-25 13:26:18 +0100327check:
Radek Krejcia3045382018-11-22 14:30:31 +0100328 switch (next->nodetype) {
Michal Vasko1bf09392020-03-27 12:38:10 +0100329 case LYS_RPC:
Radek Krejcia3045382018-11-22 14:30:31 +0100330 case LYS_ACTION:
331 case LYS_NOTIF:
332 case LYS_LEAF:
333 case LYS_ANYXML:
334 case LYS_ANYDATA:
335 case LYS_LIST:
336 case LYS_LEAFLIST:
337 break;
Michal Vasko20424b42020-08-31 12:29:38 +0200338 case LYS_CASE:
339 if (options & LYS_GETNEXT_WITHCASE) {
340 break;
341 } else {
342 /* go into */
Radek Krejcib93bd412020-11-02 13:23:11 +0100343 lys_getnext_into_case((const struct lysc_node_case *)next, &last, &next);
Michal Vasko20424b42020-08-31 12:29:38 +0200344 }
345 goto repeat;
Radek Krejcia3045382018-11-22 14:30:31 +0100346 case LYS_CONTAINER:
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100347 if (!(next->flags & LYS_PRESENCE) && (options & LYS_GETNEXT_INTONPCONT)) {
Michal Vasko544e58a2021-01-28 14:33:41 +0100348 if (lysc_node_child(next)) {
Radek Krejcia3045382018-11-22 14:30:31 +0100349 /* go into */
Michal Vasko544e58a2021-01-28 14:33:41 +0100350 next = lysc_node_child(next);
Radek Krejcia3045382018-11-22 14:30:31 +0100351 } else {
Radek Krejcib93bd412020-11-02 13:23:11 +0100352 last = next;
Radek Krejcia3045382018-11-22 14:30:31 +0100353 next = next->next;
354 }
355 goto repeat;
356 }
357 break;
358 case LYS_CHOICE:
359 if (options & LYS_GETNEXT_WITHCHOICE) {
Michal Vasko20424b42020-08-31 12:29:38 +0200360 break;
Michal Vasko544e58a2021-01-28 14:33:41 +0100361 } else if ((options & LYS_GETNEXT_NOCHOICE) || !lysc_node_child(next)) {
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100362 next = next->next;
363 } else {
Radek Krejcia9026eb2018-12-12 16:04:47 +0100364 if (options & LYS_GETNEXT_WITHCASE) {
Michal Vasko544e58a2021-01-28 14:33:41 +0100365 next = lysc_node_child(next);
Radek Krejcia9026eb2018-12-12 16:04:47 +0100366 } else {
Radek Krejcib93bd412020-11-02 13:23:11 +0100367 /* go into */
368 lys_getnext_into_case(((struct lysc_node_choice *)next)->cases, &last, &next);
Radek Krejcia9026eb2018-12-12 16:04:47 +0100369 }
Radek Krejcia3045382018-11-22 14:30:31 +0100370 }
371 goto repeat;
Michal Vasko544e58a2021-01-28 14:33:41 +0100372 case LYS_INPUT:
373 if (options & LYS_GETNEXT_OUTPUT) {
374 /* skip */
375 next = next->next;
376 } else {
377 /* go into */
378 next = lysc_node_child(next);
379 }
380 goto repeat;
381 case LYS_OUTPUT:
382 if (!(options & LYS_GETNEXT_OUTPUT)) {
383 /* skip */
384 next = next->next;
385 } else {
386 /* go into */
387 next = lysc_node_child(next);
388 }
389 goto repeat;
Radek Krejcia3045382018-11-22 14:30:31 +0100390 default:
391 /* we should not be here */
Radek Krejci035dacf2021-02-12 18:25:53 +0100392 LOGINT(module ? module->mod->ctx : parent ? parent->module->ctx : ext->module->ctx);
Radek Krejcia3045382018-11-22 14:30:31 +0100393 return NULL;
394 }
395
Radek Krejcia3045382018-11-22 14:30:31 +0100396 return next;
397}
398
399API const struct lysc_node *
Radek Krejci035dacf2021-02-12 18:25:53 +0100400lys_getnext(const struct lysc_node *last, const struct lysc_node *parent, const struct lysc_module *module, uint32_t options)
401{
402 return lys_getnext_(last, parent, module, NULL, options);
403}
404
405API const struct lysc_node *
406lys_getnext_ext(const struct lysc_node *last, const struct lysc_node *parent, const struct lysc_ext_instance *ext, uint32_t options)
407{
408 return lys_getnext_(last, parent, NULL, ext, options);
409}
410
Radek Krejcif16e2542021-02-17 15:39:23 +0100411const struct lysc_node *
Radek Krejciba05eab2021-03-10 13:19:29 +0100412lysc_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 +0100413 uint16_t nodetype, uint32_t options)
414{
415 const struct lysc_node *node = NULL;
416
417 LY_CHECK_ARG_RET(NULL, ext, name, NULL);
418 if (!nodetype) {
419 nodetype = LYS_NODETYPE_MASK;
420 }
421
422 if (module && (module != ext->module)) {
423 return NULL;
424 }
425
426 while ((node = lys_getnext_ext(node, NULL, ext, options))) {
427 if (!(node->nodetype & nodetype)) {
428 continue;
429 }
430
431 if (name_len) {
432 if (!ly_strncmp(node->name, name, name_len)) {
433 return node;
434 }
435 } else {
436 if (!strcmp(node->name, name)) {
437 return node;
438 }
439 }
440 }
441 return NULL;
442}
443
Radek Krejci035dacf2021-02-12 18:25:53 +0100444API const struct lysc_node *
Michal Vaskoe444f752020-02-10 12:20:06 +0100445lys_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 +0200446 uint16_t nodetype, uint32_t options)
Radek Krejcia3045382018-11-22 14:30:31 +0100447{
448 const struct lysc_node *node = NULL;
449
450 LY_CHECK_ARG_RET(NULL, module, name, NULL);
451 if (!nodetype) {
Radek Krejcif13b87b2020-12-01 22:02:17 +0100452 nodetype = LYS_NODETYPE_MASK;
Radek Krejcia3045382018-11-22 14:30:31 +0100453 }
454
455 while ((node = lys_getnext(node, parent, module->compiled, options))) {
456 if (!(node->nodetype & nodetype)) {
457 continue;
458 }
459 if (node->module != module) {
460 continue;
461 }
462
463 if (name_len) {
Radek Krejci7f9b6512019-09-18 13:11:09 +0200464 if (!ly_strncmp(node->name, name, name_len)) {
Radek Krejcia3045382018-11-22 14:30:31 +0100465 return node;
466 }
467 } else {
468 if (!strcmp(node->name, name)) {
469 return node;
470 }
471 }
472 }
473 return NULL;
474}
475
Michal Vasko519fd602020-05-26 12:17:39 +0200476API LY_ERR
Michal Vasko26512682021-01-11 11:35:40 +0100477lys_find_xpath_atoms(const struct ly_ctx *ctx, const struct lysc_node *ctx_node, const char *xpath, uint32_t options,
478 struct ly_set **set)
Michal Vasko519fd602020-05-26 12:17:39 +0200479{
480 LY_ERR ret = LY_SUCCESS;
481 struct lyxp_set xp_set;
Radek Krejcif03a9e22020-09-18 20:09:31 +0200482 struct lyxp_expr *exp = NULL;
Michal Vasko519fd602020-05-26 12:17:39 +0200483 uint32_t i;
484
Michal Vasko26512682021-01-11 11:35:40 +0100485 LY_CHECK_ARG_RET(NULL, ctx || ctx_node, xpath, set, LY_EINVAL);
Michal Vasko519fd602020-05-26 12:17:39 +0200486 if (!(options & LYXP_SCNODE_ALL)) {
487 options = LYXP_SCNODE;
488 }
Michal Vasko26512682021-01-11 11:35:40 +0100489 if (!ctx) {
490 ctx = ctx_node->module->ctx;
491 }
Michal Vasko519fd602020-05-26 12:17:39 +0200492
493 memset(&xp_set, 0, sizeof xp_set);
494
495 /* compile expression */
Michal Vasko26512682021-01-11 11:35:40 +0100496 ret = lyxp_expr_parse(ctx, xpath, 0, 1, &exp);
Radek Krejcif03a9e22020-09-18 20:09:31 +0200497 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko519fd602020-05-26 12:17:39 +0200498
499 /* atomize expression */
Radek Krejci8df109d2021-04-23 12:19:08 +0200500 ret = lyxp_atomize(ctx, exp, NULL, LY_VALUE_JSON, NULL, ctx_node, &xp_set, options);
Michal Vasko519fd602020-05-26 12:17:39 +0200501 LY_CHECK_GOTO(ret, cleanup);
502
503 /* allocate return set */
Radek Krejciba03a5a2020-08-27 14:40:41 +0200504 ret = ly_set_new(set);
505 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko519fd602020-05-26 12:17:39 +0200506
507 /* transform into ly_set */
508 (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs);
Michal Vasko26512682021-01-11 11:35:40 +0100509 LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko519fd602020-05-26 12:17:39 +0200510 (*set)->size = xp_set.used;
511
512 for (i = 0; i < xp_set.used; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +0200513 if (xp_set.val.scnodes[i].type == LYXP_NODE_ELEM) {
Radek Krejci3d92e442020-10-12 12:48:13 +0200514 ret = ly_set_add(*set, xp_set.val.scnodes[i].scnode, 1, NULL);
Radek Krejciba03a5a2020-08-27 14:40:41 +0200515 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko519fd602020-05-26 12:17:39 +0200516 }
517 }
518
519cleanup:
520 lyxp_set_free_content(&xp_set);
Michal Vasko26512682021-01-11 11:35:40 +0100521 lyxp_expr_free(ctx, exp);
Michal Vasko519fd602020-05-26 12:17:39 +0200522 return ret;
523}
524
Michal Vasko072de482020-08-05 13:27:21 +0200525API LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +0200526lys_find_expr_atoms(const struct lysc_node *ctx_node, const struct lys_module *cur_mod, const struct lyxp_expr *expr,
527 const struct lysc_prefix *prefixes, uint32_t options, struct ly_set **set)
528{
529 LY_ERR ret = LY_SUCCESS;
530 struct lyxp_set xp_set = {0};
531 uint32_t i;
532
533 LY_CHECK_ARG_RET(NULL, cur_mod, expr, prefixes, set, LY_EINVAL);
534 if (!(options & LYXP_SCNODE_ALL)) {
535 options = LYXP_SCNODE;
536 }
537
538 /* atomize expression */
Radek Krejci8df109d2021-04-23 12:19:08 +0200539 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 +0200540 LY_CHECK_GOTO(ret, cleanup);
541
542 /* allocate return set */
543 ret = ly_set_new(set);
544 LY_CHECK_GOTO(ret, cleanup);
545
546 /* transform into ly_set */
547 (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs);
548 LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(cur_mod->ctx); ret = LY_EMEM, cleanup);
549 (*set)->size = xp_set.used;
550
551 for (i = 0; i < xp_set.used; ++i) {
Michal Vasko1a09b212021-05-06 13:00:10 +0200552 if ((xp_set.val.scnodes[i].type == LYXP_NODE_ELEM) && (xp_set.val.scnodes[i].in_ctx >= LYXP_SET_SCNODE_ATOM_NODE)) {
553 assert((xp_set.val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_NODE) ||
554 (xp_set.val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_VAL) ||
Michal Vaskod97959c2020-12-10 12:18:28 +0100555 (xp_set.val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX));
Michal Vasko40308e72020-10-20 16:38:40 +0200556 ret = ly_set_add(*set, xp_set.val.scnodes[i].scnode, 1, NULL);
557 LY_CHECK_GOTO(ret, cleanup);
558 }
559 }
560
561cleanup:
562 lyxp_set_free_content(&xp_set);
563 if (ret) {
564 ly_set_free(*set, NULL);
565 *set = NULL;
566 }
567 return ret;
568}
569
570API LY_ERR
Michal Vasko26512682021-01-11 11:35:40 +0100571lys_find_xpath(const struct ly_ctx *ctx, const struct lysc_node *ctx_node, const char *xpath, uint32_t options,
572 struct ly_set **set)
Michal Vasko072de482020-08-05 13:27:21 +0200573{
574 LY_ERR ret = LY_SUCCESS;
Michal Vasko40308e72020-10-20 16:38:40 +0200575 struct lyxp_set xp_set = {0};
Radek Krejcif03a9e22020-09-18 20:09:31 +0200576 struct lyxp_expr *exp = NULL;
Michal Vasko072de482020-08-05 13:27:21 +0200577 uint32_t i;
578
Michal Vasko26512682021-01-11 11:35:40 +0100579 LY_CHECK_ARG_RET(NULL, ctx || ctx_node, xpath, set, LY_EINVAL);
Michal Vasko072de482020-08-05 13:27:21 +0200580 if (!(options & LYXP_SCNODE_ALL)) {
581 options = LYXP_SCNODE;
582 }
Michal Vasko26512682021-01-11 11:35:40 +0100583 if (!ctx) {
584 ctx = ctx_node->module->ctx;
585 }
Michal Vasko072de482020-08-05 13:27:21 +0200586
Michal Vasko072de482020-08-05 13:27:21 +0200587 /* compile expression */
Michal Vasko26512682021-01-11 11:35:40 +0100588 ret = lyxp_expr_parse(ctx, xpath, 0, 1, &exp);
Radek Krejcif03a9e22020-09-18 20:09:31 +0200589 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko072de482020-08-05 13:27:21 +0200590
591 /* atomize expression */
Radek Krejci8df109d2021-04-23 12:19:08 +0200592 ret = lyxp_atomize(ctx, exp, NULL, LY_VALUE_JSON, NULL, ctx_node, &xp_set, options);
Michal Vasko072de482020-08-05 13:27:21 +0200593 LY_CHECK_GOTO(ret, cleanup);
594
595 /* allocate return set */
Radek Krejciba03a5a2020-08-27 14:40:41 +0200596 ret = ly_set_new(set);
597 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko072de482020-08-05 13:27:21 +0200598
599 /* transform into ly_set */
600 (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs);
Michal Vasko26512682021-01-11 11:35:40 +0100601 LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko072de482020-08-05 13:27:21 +0200602 (*set)->size = xp_set.used;
603
604 for (i = 0; i < xp_set.used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +0100605 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 +0200606 ret = ly_set_add(*set, xp_set.val.scnodes[i].scnode, 1, NULL);
Radek Krejciba03a5a2020-08-27 14:40:41 +0200607 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko072de482020-08-05 13:27:21 +0200608 }
609 }
610
611cleanup:
612 lyxp_set_free_content(&xp_set);
Michal Vasko26512682021-01-11 11:35:40 +0100613 lyxp_expr_free(ctx, exp);
Michal Vaskoae159662020-10-21 11:57:24 +0200614 if (ret) {
Michal Vasko40308e72020-10-20 16:38:40 +0200615 ly_set_free(*set, NULL);
616 *set = NULL;
617 }
Michal Vasko072de482020-08-05 13:27:21 +0200618 return ret;
619}
620
Radek Krejcibc5644c2020-10-27 14:53:17 +0100621API LY_ERR
622lys_find_lypath_atoms(const struct ly_path *path, struct ly_set **set)
623{
624 LY_ERR ret = LY_SUCCESS;
625 LY_ARRAY_COUNT_TYPE u, v;
626
627 LY_CHECK_ARG_RET(NULL, path, set, LY_EINVAL);
628
629 /* allocate return set */
630 LY_CHECK_RET(ly_set_new(set));
631
632 LY_ARRAY_FOR(path, u) {
633 /* add nodes from the path */
634 LY_CHECK_GOTO(ret = ly_set_add(*set, (void *)path[u].node, 0, NULL), cleanup);
635 if (path[u].pred_type == LY_PATH_PREDTYPE_LIST) {
636 LY_ARRAY_FOR(path[u].predicates, v) {
637 /* add all the keys in a predicate */
638 LY_CHECK_GOTO(ret = ly_set_add(*set, (void *)path[u].predicates[v].key, 0, NULL), cleanup);
639 }
640 }
641 }
642
643cleanup:
644 if (ret) {
645 ly_set_free(*set, NULL);
646 *set = NULL;
647 }
648 return ret;
649}
650
651API LY_ERR
652lys_find_path_atoms(const struct ly_ctx *ctx, const struct lysc_node *ctx_node, const char *path, ly_bool output,
653 struct ly_set **set)
654{
655 LY_ERR ret = LY_SUCCESS;
656 uint8_t oper;
657 struct lyxp_expr *expr = NULL;
658 struct ly_path *p = NULL;
659
660 LY_CHECK_ARG_RET(ctx, ctx || ctx_node, path, set, LY_EINVAL);
661
662 if (!ctx) {
663 ctx = ctx_node->module->ctx;
664 }
665
666 /* parse */
667 ret = lyxp_expr_parse(ctx, path, strlen(path), 0, &expr);
668 LY_CHECK_GOTO(ret, cleanup);
669
670 /* compile */
671 oper = output ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT;
Michal Vaskoed725d72021-06-23 12:03:45 +0200672 ret = ly_path_compile(ctx, NULL, ctx_node, NULL, expr, oper, LY_PATH_TARGET_MANY, LY_VALUE_JSON, NULL, &p);
Radek Krejcibc5644c2020-10-27 14:53:17 +0100673 LY_CHECK_GOTO(ret, cleanup);
674
675 /* resolve */
676 ret = lys_find_lypath_atoms(p, set);
677
678cleanup:
679 ly_path_free(ctx, p);
680 lyxp_expr_free(ctx, expr);
681 return ret;
682}
683
684API const struct lysc_node *
685lys_find_path(const struct ly_ctx *ctx, const struct lysc_node *ctx_node, const char *path, ly_bool output)
686{
687 const struct lysc_node *snode = NULL;
688 struct lyxp_expr *exp = NULL;
689 struct ly_path *p = NULL;
690 LY_ERR ret;
691 uint8_t oper;
692
693 LY_CHECK_ARG_RET(ctx, ctx || ctx_node, NULL);
694
695 if (!ctx) {
696 ctx = ctx_node->module->ctx;
697 }
698
699 /* parse */
700 ret = lyxp_expr_parse(ctx, path, strlen(path), 0, &exp);
701 LY_CHECK_GOTO(ret, cleanup);
702
703 /* compile */
704 oper = output ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT;
Michal Vaskoed725d72021-06-23 12:03:45 +0200705 ret = ly_path_compile(ctx, NULL, ctx_node, NULL, exp, oper, LY_PATH_TARGET_MANY, LY_VALUE_JSON, NULL, &p);
Radek Krejcibc5644c2020-10-27 14:53:17 +0100706 LY_CHECK_GOTO(ret, cleanup);
707
708 /* get last node */
709 snode = p[LY_ARRAY_COUNT(p) - 1].node;
710
711cleanup:
712 ly_path_free(ctx, p);
713 lyxp_expr_free(ctx, exp);
714 return snode;
715}
716
Michal Vasko14654712020-02-06 08:35:21 +0100717char *
718lysc_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 +0200719 size_t buflen)
Radek Krejci327de162019-06-14 12:52:07 +0200720{
Michal Vasko03ff5a72019-09-11 13:49:33 +0200721 const struct lysc_node *iter;
Radek Krejci327de162019-06-14 12:52:07 +0200722 char *path = NULL;
723 int len = 0;
724
Radek Krejci3bbd93e2019-07-24 09:57:23 +0200725 if (buffer) {
726 LY_CHECK_ARG_RET(node->module->ctx, buflen > 1, NULL);
Michal Vasko770d3fc2021-01-26 09:14:35 +0100727 buffer[0] = '\0';
Radek Krejci3bbd93e2019-07-24 09:57:23 +0200728 }
729
Radek Krejci327de162019-06-14 12:52:07 +0200730 switch (pathtype) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200731 case LYSC_PATH_LOG:
Michal Vasko65de0402020-08-03 16:34:19 +0200732 case LYSC_PATH_DATA:
Michal Vasko90932a92020-02-12 14:33:03 +0100733 for (iter = node; iter && (iter != parent) && (len >= 0); iter = iter->parent) {
Michal Vasko11deea12020-08-05 13:54:50 +0200734 char *s, *id;
Michal Vasko14654712020-02-06 08:35:21 +0100735 const char *slash;
Radek Krejci327de162019-06-14 12:52:07 +0200736
Michal Vasko721b6f62021-02-08 08:52:53 +0100737 if ((pathtype == LYSC_PATH_DATA) && (iter->nodetype & (LYS_CHOICE | LYS_CASE | LYS_INPUT | LYS_OUTPUT))) {
Michal Vasko65de0402020-08-03 16:34:19 +0200738 /* schema-only node */
739 continue;
740 }
741
Michal Vasko11deea12020-08-05 13:54:50 +0200742 s = buffer ? strdup(buffer) : path;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200743 id = strdup(iter->name);
Michal Vasko14654712020-02-06 08:35:21 +0100744 if (parent && (iter->parent == parent)) {
745 slash = "";
746 } else {
747 slash = "/";
748 }
Michal Vasko69730152020-10-09 16:30:07 +0200749 if (!iter->parent || (iter->parent->module != iter->module)) {
Radek Krejci327de162019-06-14 12:52:07 +0200750 /* print prefix */
Radek Krejci1c0c3442019-07-23 16:08:47 +0200751 if (buffer) {
Michal Vasko14654712020-02-06 08:35:21 +0100752 len = snprintf(buffer, buflen, "%s%s:%s%s", slash, iter->module->name, id, s ? s : "");
Radek Krejci1c0c3442019-07-23 16:08:47 +0200753 } else {
Michal Vasko14654712020-02-06 08:35:21 +0100754 len = asprintf(&path, "%s%s:%s%s", slash, iter->module->name, id, s ? s : "");
Radek Krejci1c0c3442019-07-23 16:08:47 +0200755 }
Radek Krejci327de162019-06-14 12:52:07 +0200756 } else {
757 /* prefix is the same as in parent */
Radek Krejci1c0c3442019-07-23 16:08:47 +0200758 if (buffer) {
Michal Vasko14654712020-02-06 08:35:21 +0100759 len = snprintf(buffer, buflen, "%s%s%s", slash, id, s ? s : "");
Radek Krejci1c0c3442019-07-23 16:08:47 +0200760 } else {
Michal Vasko14654712020-02-06 08:35:21 +0100761 len = asprintf(&path, "%s%s%s", slash, id, s ? s : "");
Radek Krejci1c0c3442019-07-23 16:08:47 +0200762 }
Radek Krejci327de162019-06-14 12:52:07 +0200763 }
764 free(s);
765 free(id);
Radek Krejci1c0c3442019-07-23 16:08:47 +0200766
Michal Vasko69730152020-10-09 16:30:07 +0200767 if (buffer && (buflen <= (size_t)len)) {
Radek Krejci1c0c3442019-07-23 16:08:47 +0200768 /* not enough space in buffer */
769 break;
770 }
Radek Krejci327de162019-06-14 12:52:07 +0200771 }
772
773 if (len < 0) {
774 free(path);
775 path = NULL;
776 } else if (len == 0) {
Radek Krejci3bbd93e2019-07-24 09:57:23 +0200777 if (buffer) {
778 strcpy(buffer, "/");
779 } else {
780 path = strdup("/");
781 }
Radek Krejci327de162019-06-14 12:52:07 +0200782 }
783 break;
784 }
785
Radek Krejci1c0c3442019-07-23 16:08:47 +0200786 if (buffer) {
787 return buffer;
788 } else {
789 return path;
790 }
Radek Krejci327de162019-06-14 12:52:07 +0200791}
792
Michal Vasko14654712020-02-06 08:35:21 +0100793API char *
794lysc_path(const struct lysc_node *node, LYSC_PATH_TYPE pathtype, char *buffer, size_t buflen)
795{
796 return lysc_path_until(node, NULL, pathtype, buffer, buflen);
797}
798
Michal Vasko405cc9e2020-12-01 12:01:27 +0100799LY_ERR
Michal Vasko65333882021-06-10 14:12:16 +0200800_lys_set_implemented(struct lys_module *mod, const char **features, struct lys_glob_unres *unres)
Michal Vasko405cc9e2020-12-01 12:01:27 +0100801{
802 LY_ERR ret = LY_SUCCESS, r;
Michal Vasko65333882021-06-10 14:12:16 +0200803 uint32_t i;
Michal Vasko916aefb2020-11-02 15:43:16 +0100804
Michal Vasko405cc9e2020-12-01 12:01:27 +0100805 if (mod->implemented) {
806 /* mod is already implemented, set the features */
807 r = lys_set_features(mod->parsed, features);
808 if (r == LY_EEXIST) {
809 /* no changes */
810 return LY_SUCCESS;
Michal Vasko7213ac52021-06-15 11:52:13 +0200811 } else if (!r) {
812 /* mark the module as changed */
Michal Vasko01db7de2021-04-16 12:23:30 +0200813 mod->to_compile = 1;
Michal Vasko01db7de2021-04-16 12:23:30 +0200814 }
Michal Vasko7213ac52021-06-15 11:52:13 +0200815
816 return r;
Michal Vasko89b5c072020-10-06 13:52:44 +0200817 }
Michal Vasko08c8b272020-11-24 18:11:30 +0100818
Michal Vasko7213ac52021-06-15 11:52:13 +0200819 /* implement, ignore recompilation because it must always take place later */
820 r = lys_implement(mod, features, unres);
821 LY_CHECK_ERR_GOTO(r && (r != LY_ERECOMPILE), ret = r, cleanup);
Michal Vasko65333882021-06-10 14:12:16 +0200822
823 if (mod->ctx->flags & LY_CTX_ALL_IMPLEMENTED) {
824 /* implement all the imports as well */
825 for (i = 0; i < unres->creating.count; ++i) {
826 mod = unres->creating.objs[i];
827 if (mod->implemented) {
828 continue;
829 }
830
Michal Vasko7213ac52021-06-15 11:52:13 +0200831 r = lys_implement(mod, NULL, unres);
832 LY_CHECK_ERR_GOTO(r && (r != LY_ERECOMPILE), ret = r, cleanup);
Michal Vasko65333882021-06-10 14:12:16 +0200833 }
834 }
835
Michal Vasko65333882021-06-10 14:12:16 +0200836cleanup:
837 return ret;
838}
839
Michal Vaskof4258e12021-06-15 12:11:42 +0200840/**
Michal Vasko7ee5be22021-06-16 17:03:34 +0200841 * @brief Check whether it may be needed to (re)compile a module from a particular dependency set
842 * and if so, add it into its dep set.
843 *
844 * Dependency set includes all modules that need to be (re)compiled in case any of the module(s)
845 * in the dep set are (re)compiled.
846 *
847 * The reason for recompilation is possible disabled nodes and updating
848 * leafref targets to point to the newly compiled modules. Using the import relation, the
849 * dependency is reflexive because of possible foreign augments and deviations, which are compiled
850 * during the target module compilation.
851 *
852 * - every module must belong to exactly one dep set
853 * - implement flag must be ignored because it can be changed during dep set compilation
Michal Vaskof4258e12021-06-15 12:11:42 +0200854 *
855 * @param[in] mod Module to process.
856 * @param[in,out] ctx_set Set with all not-yet-processed modules.
857 * @param[in,out] dep_set Current dependency set to update.
Michal Vaskof4258e12021-06-15 12:11:42 +0200858 * @return LY_ERR value.
859 */
860static LY_ERR
Michal Vasko50bc09a2021-06-17 17:31:56 +0200861lys_unres_dep_sets_create_mod_r(struct lys_module *mod, struct ly_set *ctx_set, struct ly_set *dep_set)
Michal Vaskof4258e12021-06-15 12:11:42 +0200862{
863 struct lys_module *mod2;
864 struct lysp_import *imports;
865 uint32_t i;
866 LY_ARRAY_COUNT_TYPE u, v;
867 ly_bool found;
868
Michal Vasko7ee5be22021-06-16 17:03:34 +0200869 if (!lys_has_compiled(mod) || (mod->compiled && !lys_has_recompiled(mod))) {
Michal Vasko709f9a52021-07-21 10:51:59 +0200870 /* is already in a separate dep set */
Michal Vasko7ee5be22021-06-16 17:03:34 +0200871 if (!lys_has_groupings(mod)) {
Michal Vasko709f9a52021-07-21 10:51:59 +0200872 /* break the dep set here, no modules depend on this one */
Michal Vasko7ee5be22021-06-16 17:03:34 +0200873 return LY_SUCCESS;
874 }
875 } else {
Michal Vasko709f9a52021-07-21 10:51:59 +0200876 if (!ly_set_contains(ctx_set, mod, &i)) {
877 /* it was already processed */
878 return LY_SUCCESS;
879 }
880
881 /* remove it from the set, we are processing it now */
882 ly_set_rm_index(ctx_set, i, NULL);
883
Michal Vasko7ee5be22021-06-16 17:03:34 +0200884 /* add a new dependent module into the dep set */
885 LY_CHECK_RET(ly_set_add(dep_set, mod, 1, NULL));
Michal Vaskof4258e12021-06-15 12:11:42 +0200886 }
887
888 /* process imports of the module and submodules */
889 imports = mod->parsed->imports;
890 LY_ARRAY_FOR(imports, u) {
Michal Vasko709f9a52021-07-21 10:51:59 +0200891 mod2 = imports[u].module;
892 if (!lys_has_compiled(mod2) || (mod2->compiled && !lys_has_recompiled(mod2))) {
893 if (!lys_has_groupings(mod2)) {
894 /* break the dep set here, no modules depend on this one */
895 continue;
896 }
897 }
898
899 LY_CHECK_RET(lys_unres_dep_sets_create_mod_r(mod2, ctx_set, dep_set));
Michal Vaskof4258e12021-06-15 12:11:42 +0200900 }
901 LY_ARRAY_FOR(mod->parsed->includes, v) {
902 imports = mod->parsed->includes[v].submodule->imports;
903 LY_ARRAY_FOR(imports, u) {
Michal Vasko709f9a52021-07-21 10:51:59 +0200904 mod2 = imports[u].module;
905 if (!lys_has_compiled(mod2) || (mod2->compiled && !lys_has_recompiled(mod2))) {
906 if (!lys_has_groupings(mod2)) {
907 /* break the dep set here, no modules depend on this one */
908 continue;
909 }
910 }
911
Michal Vasko50bc09a2021-06-17 17:31:56 +0200912 LY_CHECK_RET(lys_unres_dep_sets_create_mod_r(imports[u].module, ctx_set, dep_set));
Michal Vaskof4258e12021-06-15 12:11:42 +0200913 }
914 }
915
916 /* process modules and submodules importing this module */
Michal Vasko7ee5be22021-06-16 17:03:34 +0200917 for (i = 0; i < mod->ctx->list.count; ++i) {
918 mod2 = mod->ctx->list.objs[i];
Michal Vaskof4258e12021-06-15 12:11:42 +0200919 found = 0;
920
921 imports = mod2->parsed->imports;
922 LY_ARRAY_FOR(imports, u) {
923 if (imports[u].module == mod) {
924 found = 1;
925 break;
926 }
927 }
928
929 if (!found) {
930 LY_ARRAY_FOR(mod2->parsed->includes, v) {
931 imports = mod2->parsed->includes[v].submodule->imports;
932 LY_ARRAY_FOR(imports, u) {
933 if (imports[u].module == mod) {
934 found = 1;
935 break;
936 }
937 }
938
939 if (found) {
940 break;
941 }
942 }
943 }
944
945 if (found) {
Michal Vasko709f9a52021-07-21 10:51:59 +0200946 if (!lys_has_compiled(mod2) || (mod2->compiled && !lys_has_recompiled(mod2))) {
947 /* break the dep set here, no modules depend on this one (groupings were handled as imports) */
948 continue;
949 }
950
Michal Vasko50bc09a2021-06-17 17:31:56 +0200951 LY_CHECK_RET(lys_unres_dep_sets_create_mod_r(mod2, ctx_set, dep_set));
Michal Vaskof4258e12021-06-15 12:11:42 +0200952 }
953 }
954
955 return LY_SUCCESS;
956}
957
Michal Vasko709f9a52021-07-21 10:51:59 +0200958/**
959 * @brief Add all simple modules (that have nothing to (re)compile) into separate dep sets.
960 *
961 * @param[in,out] ctx_set Set with all not-yet-processed modules.
962 * @param[in,out] main_set Set of dependency module sets.
963 * @return LY_ERR value.
964 */
965static LY_ERR
966lys_unres_dep_sets_create_single(struct ly_set *ctx_set, struct ly_set *main_set)
967{
968 LY_ERR ret = LY_SUCCESS;
969 struct lys_module *m;
970 uint32_t i = 0;
971 struct ly_set *dep_set = NULL;
972
973 while (i < ctx_set->count) {
974 m = ctx_set->objs[i];
975 if (!lys_has_compiled(m) || (m->compiled && !lys_has_recompiled(m))) {
976 /* remove it from the set, we are processing it now */
977 ly_set_rm_index(ctx_set, i, NULL);
978
979 /* this module can be in a separate dep set (but there still may be modules importing this one
980 * that depend on imports of this one in case it defines groupings) */
981 LY_CHECK_GOTO(ret = ly_set_new(&dep_set), cleanup);
982 LY_CHECK_GOTO(ret = ly_set_add(dep_set, m, 1, NULL), cleanup);
983 LY_CHECK_GOTO(ret = ly_set_add(main_set, dep_set, 1, NULL), cleanup);
984 dep_set = NULL;
985 } else {
986 ++i;
987 }
988 }
989
990cleanup:
991 ly_set_free(dep_set, NULL);
992 return ret;
993}
994
Michal Vaskof4258e12021-06-15 12:11:42 +0200995LY_ERR
Michal Vasko50bc09a2021-06-17 17:31:56 +0200996lys_unres_dep_sets_create(struct ly_ctx *ctx, struct ly_set *main_set, struct lys_module *mod)
Michal Vaskof4258e12021-06-15 12:11:42 +0200997{
998 LY_ERR ret = LY_SUCCESS;
999 struct lys_module *m;
1000 struct ly_set *dep_set = NULL, *ctx_set = NULL;
1001 uint32_t i;
Michal Vasko7ee5be22021-06-16 17:03:34 +02001002 ly_bool found;
Michal Vaskof4258e12021-06-15 12:11:42 +02001003
1004 /* start with a duplicate set of modules that we will remove from */
1005 LY_CHECK_GOTO(ret = ly_set_dup(&ctx->list, NULL, &ctx_set), cleanup);
1006
Michal Vasko709f9a52021-07-21 10:51:59 +02001007 /* first create all dep sets with single modules */
1008 LY_CHECK_GOTO(ret = lys_unres_dep_sets_create_single(ctx_set, main_set), cleanup);
1009
1010 if (mod && !ly_set_contains(ctx_set, mod, NULL)) {
1011 /* dep set for this module has already been created, nothing else to do */
1012 goto cleanup;
1013 }
1014
Michal Vaskof4258e12021-06-15 12:11:42 +02001015 while (ctx_set->count) {
1016 /* create new dep set */
1017 LY_CHECK_GOTO(ret = ly_set_new(&dep_set), cleanup);
1018
1019 if (mod) {
1020 /* use the module create a dep set with the rest of its dependent modules */
Michal Vasko50bc09a2021-06-17 17:31:56 +02001021 LY_CHECK_GOTO(ret = lys_unres_dep_sets_create_mod_r(mod, ctx_set, dep_set), cleanup);
Michal Vaskof4258e12021-06-15 12:11:42 +02001022 } else {
1023 /* use first ctx mod to create a dep set with the rest of its dependent modules */
Michal Vasko50bc09a2021-06-17 17:31:56 +02001024 LY_CHECK_GOTO(ret = lys_unres_dep_sets_create_mod_r(ctx_set->objs[0], ctx_set, dep_set), cleanup);
Michal Vaskof4258e12021-06-15 12:11:42 +02001025 }
Michal Vasko7ee5be22021-06-16 17:03:34 +02001026 assert(dep_set->count);
Michal Vaskof4258e12021-06-15 12:11:42 +02001027
1028 /* check whether there is any module that will be (re)compiled */
Michal Vasko7ee5be22021-06-16 17:03:34 +02001029 found = 0;
Michal Vaskof4258e12021-06-15 12:11:42 +02001030 for (i = 0; i < dep_set->count; ++i) {
1031 m = dep_set->objs[i];
1032 if (m->to_compile) {
Michal Vasko7ee5be22021-06-16 17:03:34 +02001033 found = 1;
Michal Vaskof4258e12021-06-15 12:11:42 +02001034 break;
1035 }
1036 }
1037
Michal Vasko7ee5be22021-06-16 17:03:34 +02001038 if (found) {
Michal Vaskof4258e12021-06-15 12:11:42 +02001039 /* if there is, all the implemented modules need to be recompiled */
1040 for (i = 0; i < dep_set->count; ++i) {
1041 m = dep_set->objs[i];
1042 if (m->implemented) {
1043 m->to_compile = 1;
1044 }
1045 }
1046 }
1047
Michal Vasko7ee5be22021-06-16 17:03:34 +02001048 /* add the dep set into main set */
1049 LY_CHECK_GOTO(ret = ly_set_add(main_set, dep_set, 1, NULL), cleanup);
Michal Vaskof4258e12021-06-15 12:11:42 +02001050 dep_set = NULL;
1051
1052 if (mod) {
1053 /* we need dep set only for this module */
1054 break;
1055 }
1056 }
1057
1058cleanup:
Michal Vaskobd65c2e2021-06-16 11:49:45 +02001059 assert(ret || main_set->objs);
Michal Vaskof4258e12021-06-15 12:11:42 +02001060 ly_set_free(dep_set, NULL);
1061 ly_set_free(ctx_set, NULL);
1062 return ret;
1063}
1064
1065void
1066lys_unres_glob_revert(struct ly_ctx *ctx, struct lys_glob_unres *unres)
1067{
1068 uint32_t i, j, idx, prev_lo;
1069 struct ly_set *dep_set;
1070 struct lys_module *m;
1071 LY_ERR ret;
1072
1073 for (i = 0; i < unres->implementing.count; ++i) {
1074 m = unres->implementing.objs[i];
1075 assert(m->implemented);
1076
1077 /* make the module correctly non-implemented again */
1078 m->implemented = 0;
1079 lys_precompile_augments_deviations_revert(ctx, m);
1080 lysc_module_free(m->compiled);
1081 m->compiled = NULL;
1082
1083 /* should not be made implemented */
1084 m->to_compile = 0;
1085 }
1086
1087 for (i = 0; i < unres->creating.count; ++i) {
1088 m = unres->creating.objs[i];
1089
Michal Vaskod297f2a2021-06-16 11:51:28 +02001090 /* remove the module from the context */
Michal Vaskof4258e12021-06-15 12:11:42 +02001091 ly_set_rm(&ctx->list, m, NULL);
Michal Vaskof4258e12021-06-15 12:11:42 +02001092
Michal Vasko7ee5be22021-06-16 17:03:34 +02001093 /* remove it also from dep sets (it may not be there if we have created only a single dep set for the main module) */
1094 for (j = 0; j < unres->dep_sets.count; ++j) {
1095 dep_set = unres->dep_sets.objs[j];
1096 if (ly_set_contains(dep_set, m, &idx)) {
1097 ly_set_rm_index(dep_set, idx, NULL);
1098 break;
Michal Vaskof4258e12021-06-15 12:11:42 +02001099 }
Michal Vaskof4258e12021-06-15 12:11:42 +02001100 }
Michal Vaskod297f2a2021-06-16 11:51:28 +02001101
1102 /* free the module */
1103 lys_module_free(m);
Michal Vaskof4258e12021-06-15 12:11:42 +02001104 }
1105
1106 if (unres->implementing.count) {
1107 /* recompile previous context because some implemented modules are no longer implemented,
1108 * we can reuse the current to_compile flags */
1109 prev_lo = ly_log_options(0);
1110 ret = ly_ctx_compile(ctx);
1111 ly_log_options(prev_lo);
1112 if (ret) {
1113 LOGINT(ctx);
1114 }
1115 }
1116}
1117
1118void
1119lys_unres_glob_erase(struct lys_glob_unres *unres)
1120{
1121 uint32_t i;
1122
1123 for (i = 0; i < unres->dep_sets.count; ++i) {
1124 ly_set_free(unres->dep_sets.objs[i], NULL);
1125 }
1126 ly_set_erase(&unres->dep_sets, NULL);
1127 ly_set_erase(&unres->implementing, NULL);
1128 ly_set_erase(&unres->creating, NULL);
1129
1130 assert(!unres->ds_unres.xpath.count);
1131 assert(!unres->ds_unres.leafrefs.count);
aPiecekc6526b42021-07-12 15:21:39 +02001132 assert(!unres->ds_unres.disabled_leafrefs.count);
Michal Vaskof4258e12021-06-15 12:11:42 +02001133 assert(!unres->ds_unres.dflts.count);
1134 assert(!unres->ds_unres.disabled.count);
1135}
1136
Michal Vasko65333882021-06-10 14:12:16 +02001137API LY_ERR
1138lys_set_implemented(struct lys_module *mod, const char **features)
1139{
1140 LY_ERR ret = LY_SUCCESS;
1141 struct lys_glob_unres unres = {0};
1142
1143 LY_CHECK_ARG_RET(NULL, mod, LY_EINVAL);
1144
1145 /* implement */
1146 ret = _lys_set_implemented(mod, features, &unres);
1147 LY_CHECK_GOTO(ret, cleanup);
1148
Michal Vaskof4258e12021-06-15 12:11:42 +02001149 if (!(mod->ctx->flags & LY_CTX_EXPLICIT_COMPILE)) {
1150 /* create dep set for the module and mark all the modules that will be (re)compiled */
Michal Vasko50bc09a2021-06-17 17:31:56 +02001151 LY_CHECK_GOTO(ret = lys_unres_dep_sets_create(mod->ctx, &unres.dep_sets, mod), cleanup);
Michal Vaskof4258e12021-06-15 12:11:42 +02001152
Michal Vasko709f9a52021-07-21 10:51:59 +02001153 /* (re)compile the whole dep set (other dep sets will have no modules marked for compilation) */
1154 LY_CHECK_GOTO(ret = lys_compile_depset_all(mod->ctx, &unres), cleanup);
Michal Vaskof4258e12021-06-15 12:11:42 +02001155 }
1156
Michal Vasko65333882021-06-10 14:12:16 +02001157cleanup:
Michal Vasko405cc9e2020-12-01 12:01:27 +01001158 if (ret) {
Michal Vaskof4258e12021-06-15 12:11:42 +02001159 lys_unres_glob_revert(mod->ctx, &unres);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001160 }
Michal Vaskof4258e12021-06-15 12:11:42 +02001161 lys_unres_glob_erase(&unres);
Michal Vasko89b5c072020-10-06 13:52:44 +02001162 return ret;
Radek Krejci77a8bcd2019-09-11 11:20:02 +02001163}
1164
Michal Vasko7c8439f2020-08-05 13:25:19 +02001165static LY_ERR
aPiecekc3e26142021-06-22 14:25:49 +02001166lys_resolve_import_include(struct lys_parser_ctx *pctx, struct lysp_module *pmod, struct ly_set *new_mods)
Michal Vasko7c8439f2020-08-05 13:25:19 +02001167{
1168 struct lysp_import *imp;
Michal Vasko7c8439f2020-08-05 13:25:19 +02001169 LY_ARRAY_COUNT_TYPE u, v;
1170
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001171 pmod->parsing = 1;
1172 LY_ARRAY_FOR(pmod->imports, u) {
1173 imp = &pmod->imports[u];
Michal Vasko7c8439f2020-08-05 13:25:19 +02001174 if (!imp->module) {
aPiecekc3e26142021-06-22 14:25:49 +02001175 LY_CHECK_RET(lys_parse_load(PARSER_CTX(pctx), imp->name, imp->rev[0] ? imp->rev : NULL, new_mods, &imp->module));
Michal Vasko7c8439f2020-08-05 13:25:19 +02001176 }
1177 /* check for importing the same module twice */
1178 for (v = 0; v < u; ++v) {
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001179 if (imp->module == pmod->imports[v].module) {
Michal Vasko7c8439f2020-08-05 13:25:19 +02001180 LOGWRN(PARSER_CTX(pctx), "Single revision of the module \"%s\" imported twice.", imp->name);
1181 }
1182 }
1183 }
aPiecekc3e26142021-06-22 14:25:49 +02001184 LY_CHECK_RET(lysp_load_submodules(pctx, pmod, new_mods));
Radek Krejci771928a2021-01-19 13:42:36 +01001185
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001186 pmod->parsing = 0;
Michal Vasko7c8439f2020-08-05 13:25:19 +02001187
1188 return LY_SUCCESS;
1189}
1190
Michal Vasko3a41dff2020-07-15 14:30:28 +02001191LY_ERR
Michal Vasko7a0b0762020-09-02 16:37:01 +02001192lys_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 +02001193 LY_ERR (*custom_check)(const struct ly_ctx *, struct lysp_module *, struct lysp_submodule *, void *),
aPiecekc3e26142021-06-22 14:25:49 +02001194 void *check_data, struct ly_set *new_mods, struct lysp_submodule **submodule)
Radek Krejci9f5e6fb2018-10-25 09:26:12 +02001195{
Michal Vasko3a41dff2020-07-15 14:30:28 +02001196 LY_ERR ret;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001197 struct lysp_submodule *submod = NULL, *latest_sp;
Michal Vaskob36053d2020-03-26 15:49:30 +01001198 struct lys_yang_parser_ctx *yangctx = NULL;
1199 struct lys_yin_parser_ctx *yinctx = NULL;
1200 struct lys_parser_ctx *pctx;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001201
Michal Vasko3a41dff2020-07-15 14:30:28 +02001202 LY_CHECK_ARG_RET(ctx, ctx, in, LY_EINVAL);
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001203
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001204 switch (format) {
1205 case LYS_IN_YIN:
Michal Vasko63f3d842020-07-08 10:10:14 +02001206 ret = yin_parse_submodule(&yinctx, ctx, main_ctx, in, &submod);
Michal Vaskob36053d2020-03-26 15:49:30 +01001207 pctx = (struct lys_parser_ctx *)yinctx;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001208 break;
1209 case LYS_IN_YANG:
Michal Vasko63f3d842020-07-08 10:10:14 +02001210 ret = yang_parse_submodule(&yangctx, ctx, main_ctx, in, &submod);
Michal Vaskob36053d2020-03-26 15:49:30 +01001211 pctx = (struct lys_parser_ctx *)yangctx;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001212 break;
1213 default:
David Sedlák4f2f5ba2019-08-15 13:18:48 +02001214 LOGERR(ctx, LY_EINVAL, "Invalid schema input format.");
Radek Krejci82fa8d42020-07-11 22:00:59 +02001215 ret = LY_EINVAL;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001216 break;
Radek Krejci9f5e6fb2018-10-25 09:26:12 +02001217 }
Radek Krejcif6923e82020-07-02 16:36:53 +02001218 LY_CHECK_GOTO(ret, error);
Radek Krejcif027df72020-09-15 13:00:28 +02001219 assert(submod);
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001220
1221 /* make sure that the newest revision is at position 0 */
1222 lysp_sort_revisions(submod->revs);
1223
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001224 /* decide the latest revision */
Michal Vasko8dc31992021-02-22 10:30:47 +01001225 latest_sp = (struct lysp_submodule *)ly_ctx_get_submodule2_latest(submod->mod, submod->name);
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001226 if (latest_sp) {
1227 if (submod->revs) {
1228 if (!latest_sp->revs) {
1229 /* latest has no revision, so mod is anyway newer */
1230 submod->latest_revision = latest_sp->latest_revision;
Radek Krejcib3289d62019-09-18 12:21:39 +02001231 /* the latest_sp is zeroed later when the new module is being inserted into the context */
1232 } else if (strcmp(submod->revs[0].date, latest_sp->revs[0].date) > 0) {
1233 submod->latest_revision = latest_sp->latest_revision;
1234 /* the latest_sp is zeroed later when the new module is being inserted into the context */
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001235 } else {
Radek Krejcib3289d62019-09-18 12:21:39 +02001236 latest_sp = NULL;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001237 }
Radek Krejcib3289d62019-09-18 12:21:39 +02001238 } else {
1239 latest_sp = NULL;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001240 }
1241 } else {
1242 submod->latest_revision = 1;
1243 }
1244
Radek Krejcib3289d62019-09-18 12:21:39 +02001245 if (custom_check) {
Michal Vasko7c8439f2020-08-05 13:25:19 +02001246 LY_CHECK_GOTO(ret = custom_check(ctx, NULL, submod, check_data), error);
Radek Krejcib3289d62019-09-18 12:21:39 +02001247 }
1248
1249 if (latest_sp) {
1250 latest_sp->latest_revision = 0;
1251 }
1252
Michal Vasko7a0b0762020-09-02 16:37:01 +02001253 lys_parser_fill_filepath(ctx, in, &submod->filepath);
1254
Michal Vasko7c8439f2020-08-05 13:25:19 +02001255 /* resolve imports and includes */
aPiecekc3e26142021-06-22 14:25:49 +02001256 LY_CHECK_GOTO(ret = lys_resolve_import_include(pctx, (struct lysp_module *)submod, new_mods), error);
Michal Vasko7c8439f2020-08-05 13:25:19 +02001257
David Sedlák1b623122019-08-05 15:27:49 +02001258 if (format == LYS_IN_YANG) {
Michal Vaskob36053d2020-03-26 15:49:30 +01001259 yang_parser_ctx_free(yangctx);
David Sedlák1b623122019-08-05 15:27:49 +02001260 } else {
Michal Vaskob36053d2020-03-26 15:49:30 +01001261 yin_parser_ctx_free(yinctx);
David Sedlák1b623122019-08-05 15:27:49 +02001262 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02001263 *submodule = submod;
1264 return LY_SUCCESS;
David Sedlák1b623122019-08-05 15:27:49 +02001265
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001266error:
Radek Krejcic64661b2020-08-15 15:42:26 +02001267 if (!submod || !submod->name) {
1268 LOGERR(ctx, ret, "Parsing submodule failed.");
1269 } else {
1270 LOGERR(ctx, ret, "Parsing submodule \"%s\" failed.", submod->name);
1271 }
Michal Vasko5d24f6c2020-10-13 13:49:06 +02001272 lysp_module_free((struct lysp_module *)submod);
David Sedlák1b623122019-08-05 15:27:49 +02001273 if (format == LYS_IN_YANG) {
Michal Vaskob36053d2020-03-26 15:49:30 +01001274 yang_parser_ctx_free(yangctx);
David Sedlák1b623122019-08-05 15:27:49 +02001275 } else {
Michal Vaskob36053d2020-03-26 15:49:30 +01001276 yin_parser_ctx_free(yinctx);
David Sedlák1b623122019-08-05 15:27:49 +02001277 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02001278 return ret;
Radek Krejci9f5e6fb2018-10-25 09:26:12 +02001279}
1280
Michal Vasko45b521c2020-11-04 17:14:39 +01001281/**
1282 * @brief Add ietf-netconf metadata to the parsed module. Operation, filter, and select are added.
1283 *
1284 * @param[in] mod Parsed module to add to.
1285 * @return LY_SUCCESS on success.
1286 * @return LY_ERR on error.
1287 */
1288static LY_ERR
1289lys_parsed_add_internal_ietf_netconf(struct lysp_module *mod)
1290{
1291 struct lysp_ext_instance *ext_p;
1292 struct lysp_stmt *stmt;
1293 struct lysp_import *imp;
1294
1295 /*
1296 * 1) edit-config's operation
1297 */
1298 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->exts, ext_p, LY_EMEM);
1299 LY_CHECK_ERR_RET(!ext_p, LOGMEM(mod->mod->ctx), LY_EMEM);
1300 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_:annotation", 0, &ext_p->name));
1301 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "operation", 0, &ext_p->argument));
Radek Krejci8df109d2021-04-23 12:19:08 +02001302 ext_p->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001303 ext_p->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001304 ext_p->flags = LYS_INTERNAL;
Radek Krejciab430862021-03-02 20:13:40 +01001305 ext_p->parent_stmt = LY_STMT_MODULE;
1306 ext_p->parent_stmt_index = 0;
Michal Vasko45b521c2020-11-04 17:14:39 +01001307
1308 ext_p->child = stmt = calloc(1, sizeof *ext_p->child);
1309 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1310 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "type", 0, &stmt->stmt));
1311 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enumeration", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001312 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001313 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001314 stmt->kw = LY_STMT_TYPE;
1315
1316 stmt->child = calloc(1, sizeof *stmt->child);
1317 stmt = stmt->child;
1318 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1319 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
1320 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "merge", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001321 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001322 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001323 stmt->kw = LY_STMT_ENUM;
1324
1325 stmt->next = calloc(1, sizeof *stmt->child);
1326 stmt = stmt->next;
1327 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1328 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
1329 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "replace", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001330 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001331 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001332 stmt->kw = LY_STMT_ENUM;
1333
1334 stmt->next = calloc(1, sizeof *stmt->child);
1335 stmt = stmt->next;
1336 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1337 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
1338 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "create", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001339 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001340 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001341 stmt->kw = LY_STMT_ENUM;
1342
1343 stmt->next = calloc(1, sizeof *stmt->child);
1344 stmt = stmt->next;
1345 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1346 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
1347 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "delete", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001348 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001349 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001350 stmt->kw = LY_STMT_ENUM;
1351
1352 stmt->next = calloc(1, sizeof *stmt->child);
1353 stmt = stmt->next;
1354 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1355 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
1356 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "remove", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001357 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001358 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001359 stmt->kw = LY_STMT_ENUM;
1360
1361 /*
1362 * 2) filter's type
1363 */
1364 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->exts, ext_p, LY_EMEM);
1365 LY_CHECK_ERR_RET(!ext_p, LOGMEM(mod->mod->ctx), LY_EMEM);
1366 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_:annotation", 0, &ext_p->name));
1367 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "type", 0, &ext_p->argument));
Radek Krejci8df109d2021-04-23 12:19:08 +02001368 ext_p->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001369 ext_p->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001370 ext_p->flags = LYS_INTERNAL;
Radek Krejciab430862021-03-02 20:13:40 +01001371 ext_p->parent_stmt = LY_STMT_MODULE;
1372 ext_p->parent_stmt_index = 0;
Michal Vasko45b521c2020-11-04 17:14:39 +01001373
1374 ext_p->child = stmt = calloc(1, sizeof *ext_p->child);
1375 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1376 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "type", 0, &stmt->stmt));
1377 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enumeration", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001378 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001379 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001380 stmt->kw = LY_STMT_TYPE;
1381
1382 stmt->child = calloc(1, sizeof *stmt->child);
1383 stmt = stmt->child;
1384 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1385 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
1386 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "subtree", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001387 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001388 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001389 stmt->kw = LY_STMT_ENUM;
1390
1391 stmt->next = calloc(1, sizeof *stmt->child);
1392 stmt = stmt->next;
1393 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1394 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
1395 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "xpath", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001396 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001397 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001398 stmt->kw = LY_STMT_ENUM;
1399
1400 /* if-feature for enum allowed only for YANG 1.1 modules */
1401 if (mod->version >= LYS_VERSION_1_1) {
1402 stmt->child = calloc(1, sizeof *stmt->child);
1403 stmt = stmt->child;
1404 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1405 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "if-feature", 0, &stmt->stmt));
1406 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "xpath", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001407 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001408 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001409 stmt->kw = LY_STMT_IF_FEATURE;
1410 }
1411
1412 /*
1413 * 3) filter's select
1414 */
1415 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->exts, ext_p, LY_EMEM);
1416 LY_CHECK_ERR_RET(!ext_p, LOGMEM(mod->mod->ctx), LY_EMEM);
1417 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_:annotation", 0, &ext_p->name));
1418 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "select", 0, &ext_p->argument));
Radek Krejci8df109d2021-04-23 12:19:08 +02001419 ext_p->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001420 ext_p->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001421 ext_p->flags = LYS_INTERNAL;
Radek Krejciab430862021-03-02 20:13:40 +01001422 ext_p->parent_stmt = LY_STMT_MODULE;
1423 ext_p->parent_stmt_index = 0;
Michal Vasko45b521c2020-11-04 17:14:39 +01001424
1425 ext_p->child = stmt = calloc(1, sizeof *ext_p->child);
1426 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1427 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "type", 0, &stmt->stmt));
1428 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "yang_:xpath1.0", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001429 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001430 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001431 stmt->kw = LY_STMT_TYPE;
1432
1433 /* create new imports for the used prefixes */
1434 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->imports, imp, LY_EMEM);
1435
1436 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "ietf-yang-metadata", 0, &imp->name));
1437 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_", 0, &imp->prefix));
1438 imp->flags = LYS_INTERNAL;
1439
1440 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->imports, imp, LY_EMEM);
1441
1442 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "ietf-yang-types", 0, &imp->name));
1443 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "yang_", 0, &imp->prefix));
1444 imp->flags = LYS_INTERNAL;
1445
1446 return LY_SUCCESS;
1447}
1448
1449/**
1450 * @brief Add ietf-netconf-with-defaults "default" metadata to the parsed module.
1451 *
1452 * @param[in] mod Parsed module to add to.
1453 * @return LY_SUCCESS on success.
1454 * @return LY_ERR on error.
1455 */
1456static LY_ERR
1457lys_parsed_add_internal_ietf_netconf_with_defaults(struct lysp_module *mod)
1458{
1459 struct lysp_ext_instance *ext_p;
1460 struct lysp_stmt *stmt;
1461 struct lysp_import *imp;
1462
1463 /* add new extension instance */
1464 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->exts, ext_p, LY_EMEM);
1465
1466 /* fill in the extension instance fields */
1467 LY_CHECK_ERR_RET(!ext_p, LOGMEM(mod->mod->ctx), LY_EMEM);
1468 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_:annotation", 0, &ext_p->name));
1469 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "default", 0, &ext_p->argument));
Radek Krejci8df109d2021-04-23 12:19:08 +02001470 ext_p->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001471 ext_p->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001472 ext_p->flags = LYS_INTERNAL;
Radek Krejciab430862021-03-02 20:13:40 +01001473 ext_p->parent_stmt = LY_STMT_MODULE;
1474 ext_p->parent_stmt_index = 0;
Michal Vasko45b521c2020-11-04 17:14:39 +01001475
1476 ext_p->child = stmt = calloc(1, sizeof *ext_p->child);
1477 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1478 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "type", 0, &stmt->stmt));
1479 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "boolean", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001480 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001481 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001482 stmt->kw = LY_STMT_TYPE;
1483
1484 /* create new import for the used prefix */
1485 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->imports, imp, LY_EMEM);
1486
1487 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "ietf-yang-metadata", 0, &imp->name));
1488 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_", 0, &imp->prefix));
1489 imp->flags = LYS_INTERNAL;
1490
1491 return LY_SUCCESS;
1492}
1493
Michal Vasko3a41dff2020-07-15 14:30:28 +02001494LY_ERR
Michal Vasko4e205e82021-06-08 14:01:47 +02001495lys_parse_in(struct ly_ctx *ctx, struct ly_in *in, LYS_INFORMAT format,
Radek Krejci1deb5be2020-08-26 16:43:36 +02001496 LY_ERR (*custom_check)(const struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *data),
Michal Vaskodd992582021-06-10 14:34:57 +02001497 void *check_data, struct ly_set *new_mods, struct lys_module **module)
Radek Krejci86d106e2018-10-18 09:53:19 +02001498{
Michal Vaskoa9309bb2021-07-09 09:31:55 +02001499 struct lys_module *mod = NULL, *latest, *mod_dup = NULL;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02001500 struct lysp_submodule *submod;
Michal Vasko3a41dff2020-07-15 14:30:28 +02001501 LY_ERR ret;
Michal Vasko7c8439f2020-08-05 13:25:19 +02001502 LY_ARRAY_COUNT_TYPE u;
Michal Vaskob36053d2020-03-26 15:49:30 +01001503 struct lys_yang_parser_ctx *yangctx = NULL;
1504 struct lys_yin_parser_ctx *yinctx = NULL;
Radek Krejcif6923e82020-07-02 16:36:53 +02001505 struct lys_parser_ctx *pctx = NULL;
Michal Vasko7a0b0762020-09-02 16:37:01 +02001506 char *filename, *rev, *dot;
1507 size_t len;
Radek Krejcic64661b2020-08-15 15:42:26 +02001508 ly_bool module_created = 0;
Radek Krejci86d106e2018-10-18 09:53:19 +02001509
Michal Vaskodd992582021-06-10 14:34:57 +02001510 assert(ctx && in && new_mods);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001511
Michal Vasko7a0b0762020-09-02 16:37:01 +02001512 if (module) {
1513 *module = NULL;
1514 }
Radek Krejci86d106e2018-10-18 09:53:19 +02001515
1516 mod = calloc(1, sizeof *mod);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001517 LY_CHECK_ERR_RET(!mod, LOGMEM(ctx), LY_EMEM);
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001518 mod->ctx = ctx;
Radek Krejci86d106e2018-10-18 09:53:19 +02001519
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001520 /* parse */
Radek Krejci86d106e2018-10-18 09:53:19 +02001521 switch (format) {
1522 case LYS_IN_YIN:
aPiecekc3e26142021-06-22 14:25:49 +02001523 ret = yin_parse_module(&yinctx, in, mod);
Michal Vaskob36053d2020-03-26 15:49:30 +01001524 pctx = (struct lys_parser_ctx *)yinctx;
Radek Krejci86d106e2018-10-18 09:53:19 +02001525 break;
1526 case LYS_IN_YANG:
aPiecekc3e26142021-06-22 14:25:49 +02001527 ret = yang_parse_module(&yangctx, in, mod);
Michal Vaskob36053d2020-03-26 15:49:30 +01001528 pctx = (struct lys_parser_ctx *)yangctx;
Radek Krejci86d106e2018-10-18 09:53:19 +02001529 break;
1530 default:
1531 LOGERR(ctx, LY_EINVAL, "Invalid schema input format.");
Michal Vasko3a41dff2020-07-15 14:30:28 +02001532 ret = LY_EINVAL;
Radek Krejci86d106e2018-10-18 09:53:19 +02001533 break;
1534 }
Radek Krejcic64661b2020-08-15 15:42:26 +02001535 LY_CHECK_GOTO(ret, cleanup);
Radek Krejci9f5e6fb2018-10-25 09:26:12 +02001536
1537 /* make sure that the newest revision is at position 0 */
1538 lysp_sort_revisions(mod->parsed->revs);
Radek Krejci0af46292019-01-11 16:02:31 +01001539 if (mod->parsed->revs) {
Radek Krejcic64661b2020-08-15 15:42:26 +02001540 LY_CHECK_GOTO(ret = lydict_insert(ctx, mod->parsed->revs[0].date, 0, &mod->revision), cleanup);
Radek Krejci0af46292019-01-11 16:02:31 +01001541 }
Radek Krejci86d106e2018-10-18 09:53:19 +02001542
Radek Krejcib3289d62019-09-18 12:21:39 +02001543 /* decide the latest revision */
Michal Vaskoa51ef072021-07-02 10:40:30 +02001544 latest = ly_ctx_get_module_latest(ctx, mod->name);
Radek Krejcib3289d62019-09-18 12:21:39 +02001545 if (latest) {
1546 if (mod->revision) {
1547 if (!latest->revision) {
1548 /* latest has no revision, so mod is anyway newer */
1549 mod->latest_revision = latest->latest_revision;
1550 /* the latest is zeroed later when the new module is being inserted into the context */
1551 } else if (strcmp(mod->revision, latest->revision) > 0) {
1552 mod->latest_revision = latest->latest_revision;
1553 /* the latest is zeroed later when the new module is being inserted into the context */
1554 } else {
1555 latest = NULL;
1556 }
1557 } else {
1558 latest = NULL;
1559 }
1560 } else {
1561 mod->latest_revision = 1;
1562 }
1563
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001564 if (custom_check) {
Radek Krejcic64661b2020-08-15 15:42:26 +02001565 LY_CHECK_GOTO(ret = custom_check(ctx, mod->parsed, NULL, check_data), cleanup);
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001566 }
1567
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001568 /* check whether it is not already in the context in the same revision */
Michal Vaskoa51ef072021-07-02 10:40:30 +02001569 mod_dup = ly_ctx_get_module(ctx, mod->name, mod->revision);
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001570 if (mod_dup) {
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001571 /* nothing to do */
1572 LOGVRB("Module \"%s@%s\" is already present in the context.", mod_dup->name,
1573 mod_dup->revision ? mod_dup->revision : "<none>");
Radek Krejcic64661b2020-08-15 15:42:26 +02001574 goto cleanup;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001575 }
Radek Krejci86d106e2018-10-18 09:53:19 +02001576
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001577 switch (in->type) {
1578 case LY_IN_FILEPATH:
1579 /* check that name and revision match filename */
1580 filename = strrchr(in->method.fpath.filepath, '/');
1581 if (!filename) {
1582 filename = in->method.fpath.filepath;
1583 } else {
1584 filename++;
1585 }
1586 rev = strchr(filename, '@');
1587 dot = strrchr(filename, '.');
1588
1589 /* name */
1590 len = strlen(mod->name);
1591 if (strncmp(filename, mod->name, len) ||
Michal Vasko69730152020-10-09 16:30:07 +02001592 ((rev && (rev != &filename[len])) || (!rev && (dot != &filename[len])))) {
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001593 LOGWRN(ctx, "File name \"%s\" does not match module name \"%s\".", filename, mod->name);
1594 }
1595 if (rev) {
1596 len = dot - ++rev;
Radek Krejcif13b87b2020-12-01 22:02:17 +01001597 if (!mod->parsed->revs || (len != LY_REV_SIZE - 1) || strncmp(mod->parsed->revs[0].date, rev, len)) {
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001598 LOGWRN(ctx, "File name \"%s\" does not match module revision \"%s\".", filename,
Michal Vasko69730152020-10-09 16:30:07 +02001599 mod->parsed->revs ? mod->parsed->revs[0].date : "none");
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001600 }
1601 }
1602
1603 break;
1604 case LY_IN_FD:
1605 case LY_IN_FILE:
1606 case LY_IN_MEMORY:
1607 /* nothing special to do */
1608 break;
Michal Vasko7a0b0762020-09-02 16:37:01 +02001609 case LY_IN_ERROR:
1610 LOGINT(ctx);
1611 ret = LY_EINT;
Radek Krejcic64661b2020-08-15 15:42:26 +02001612 goto cleanup;
Radek Krejci096235c2019-01-11 11:12:19 +01001613 }
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001614 lys_parser_fill_filepath(ctx, in, &mod->filepath);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001615
Michal Vasko7a0b0762020-09-02 16:37:01 +02001616 if (latest) {
1617 latest->latest_revision = 0;
1618 }
1619
Michal Vasko45b521c2020-11-04 17:14:39 +01001620 /* add internal data in case specific modules were parsed */
1621 if (!strcmp(mod->name, "ietf-netconf")) {
Radek Krejcic64661b2020-08-15 15:42:26 +02001622 LY_CHECK_GOTO(ret = lys_parsed_add_internal_ietf_netconf(mod->parsed), cleanup);
Michal Vasko45b521c2020-11-04 17:14:39 +01001623 } else if (!strcmp(mod->name, "ietf-netconf-with-defaults")) {
Radek Krejcic64661b2020-08-15 15:42:26 +02001624 LY_CHECK_GOTO(ret = lys_parsed_add_internal_ietf_netconf_with_defaults(mod->parsed), cleanup);
Michal Vasko45b521c2020-11-04 17:14:39 +01001625 }
1626
Michal Vasko405cc9e2020-12-01 12:01:27 +01001627 /* add the module into newly created module set, will also be freed from there on any error */
Radek Krejcic64661b2020-08-15 15:42:26 +02001628 LY_CHECK_GOTO(ret = ly_set_add(new_mods, mod, 1, NULL), cleanup);
1629 module_created = 1;
Michal Vasko405cc9e2020-12-01 12:01:27 +01001630
Michal Vasko7a0b0762020-09-02 16:37:01 +02001631 /* add into context */
Radek Krejci3d92e442020-10-12 12:48:13 +02001632 ret = ly_set_add(&ctx->list, mod, 1, NULL);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001633 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko794ab4b2021-03-31 09:42:19 +02001634 ctx->change_count++;
Michal Vasko7a0b0762020-09-02 16:37:01 +02001635
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001636 /* resolve includes and all imports */
aPiecekc3e26142021-06-22 14:25:49 +02001637 LY_CHECK_GOTO(ret = lys_resolve_import_include(pctx, mod->parsed, new_mods), cleanup);
Michal Vasko7a0b0762020-09-02 16:37:01 +02001638
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001639 /* check name collisions */
Michal Vasko405cc9e2020-12-01 12:01:27 +01001640 LY_CHECK_GOTO(ret = lysp_check_dup_typedefs(pctx, mod->parsed), cleanup);
aPiecek63e080d2021-06-29 13:53:28 +02001641 LY_CHECK_GOTO(ret = lysp_check_dup_groupings(pctx, mod->parsed), cleanup);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001642 LY_CHECK_GOTO(ret = lysp_check_dup_features(pctx, mod->parsed), cleanup);
1643 LY_CHECK_GOTO(ret = lysp_check_dup_identities(pctx, mod->parsed), cleanup);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001644
1645 /* compile features */
Michal Vasko405cc9e2020-12-01 12:01:27 +01001646 LY_CHECK_GOTO(ret = lys_compile_feature_iffeatures(mod->parsed), cleanup);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001647
Michal Vasko05e32042021-04-23 13:40:56 +02001648 /* pre-compile identities of the module and any submodules */
1649 LY_CHECK_GOTO(ret = lys_identity_precompile(NULL, ctx, mod->parsed, mod->parsed->identities, &mod->identities), cleanup);
1650 LY_ARRAY_FOR(mod->parsed->includes, u) {
1651 submod = mod->parsed->includes[u].submodule;
1652 ret = lys_identity_precompile(NULL, ctx, (struct lysp_module *)submod, submod->identities, &mod->identities);
1653 LY_CHECK_GOTO(ret, cleanup);
1654 }
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001655
Michal Vasko405cc9e2020-12-01 12:01:27 +01001656 /* success */
Michal Vasko7a0b0762020-09-02 16:37:01 +02001657
Radek Krejcic64661b2020-08-15 15:42:26 +02001658cleanup:
Michal Vaskobe04af42021-07-16 10:48:43 +02001659 if (ret && (ret != LY_EEXIST)) {
Radek Krejcic64661b2020-08-15 15:42:26 +02001660 if (mod && mod->name) {
1661 /* there are cases when path is not available for parsing error, so this additional
1662 * message tries to add information about the module where the error occurred */
1663 struct ly_err_item *e = ly_err_last(ctx);
1664 if (e && (!e->path || !strncmp(e->path, "Line ", ly_strlen_const("Line ")))) {
1665 LOGERR(ctx, ret, "Parsing module \"%s\" failed.", mod->name);
1666 }
1667 }
1668 }
1669 if (!module_created) {
1670 lys_module_free(mod);
Michal Vasko0e02e8e2021-02-26 15:01:55 +01001671 mod = mod_dup;
1672 }
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001673
Michal Vasko7a0b0762020-09-02 16:37:01 +02001674 if (format == LYS_IN_YANG) {
1675 yang_parser_ctx_free(yangctx);
1676 } else {
1677 yin_parser_ctx_free(yinctx);
1678 }
1679
Michal Vasko405cc9e2020-12-01 12:01:27 +01001680 if (!ret && module) {
1681 *module = mod;
1682 }
Michal Vasko7a0b0762020-09-02 16:37:01 +02001683 return ret;
1684}
1685
Radek Krejci545b4872020-11-15 10:15:12 +01001686static LYS_INFORMAT
1687lys_parse_get_format(const struct ly_in *in, LYS_INFORMAT format)
1688{
1689 if (!format && (in->type == LY_IN_FILEPATH)) {
1690 /* unknown format - try to detect it from filename's suffix */
1691 const char *path = in->method.fpath.filepath;
1692 size_t len = strlen(path);
1693
1694 /* ignore trailing whitespaces */
1695 for ( ; len > 0 && isspace(path[len - 1]); len--) {}
1696
Radek Krejcif13b87b2020-12-01 22:02:17 +01001697 if ((len >= LY_YANG_SUFFIX_LEN + 1) &&
1698 !strncmp(&path[len - LY_YANG_SUFFIX_LEN], LY_YANG_SUFFIX, LY_YANG_SUFFIX_LEN)) {
Radek Krejci545b4872020-11-15 10:15:12 +01001699 format = LYS_IN_YANG;
Radek Krejcif13b87b2020-12-01 22:02:17 +01001700 } else if ((len >= LY_YIN_SUFFIX_LEN + 1) &&
1701 !strncmp(&path[len - LY_YIN_SUFFIX_LEN], LY_YIN_SUFFIX, LY_YIN_SUFFIX_LEN)) {
Radek Krejci545b4872020-11-15 10:15:12 +01001702 format = LYS_IN_YIN;
1703 } /* else still unknown */
1704 }
1705
1706 return format;
1707}
1708
Michal Vasko7a0b0762020-09-02 16:37:01 +02001709API LY_ERR
Michal Vasko4de7d072021-07-09 09:13:18 +02001710lys_parse(struct ly_ctx *ctx, struct ly_in *in, LYS_INFORMAT format, const char **features, struct lys_module **module)
Michal Vasko7a0b0762020-09-02 16:37:01 +02001711{
Michal Vasko65333882021-06-10 14:12:16 +02001712 LY_ERR ret = LY_SUCCESS;
Michal Vasko4e205e82021-06-08 14:01:47 +02001713 struct lys_module *mod;
Michal Vasko405cc9e2020-12-01 12:01:27 +01001714 struct lys_glob_unres unres = {0};
1715
Michal Vasko7a0b0762020-09-02 16:37:01 +02001716 if (module) {
1717 *module = NULL;
1718 }
Radek Krejci545b4872020-11-15 10:15:12 +01001719 LY_CHECK_ARG_RET(NULL, ctx, in, LY_EINVAL);
1720
1721 format = lys_parse_get_format(in, format);
1722 LY_CHECK_ARG_RET(ctx, format, LY_EINVAL);
Michal Vasko7a0b0762020-09-02 16:37:01 +02001723
1724 /* remember input position */
1725 in->func_start = in->current;
1726
Michal Vasko4e205e82021-06-08 14:01:47 +02001727 /* parse */
Michal Vaskodd992582021-06-10 14:34:57 +02001728 ret = lys_parse_in(ctx, in, format, NULL, NULL, &unres.creating, &mod);
Michal Vasko4e205e82021-06-08 14:01:47 +02001729 LY_CHECK_GOTO(ret, cleanup);
1730
1731 /* implement */
Michal Vasko65333882021-06-10 14:12:16 +02001732 ret = _lys_set_implemented(mod, features, &unres);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001733 LY_CHECK_GOTO(ret, cleanup);
1734
Michal Vaskof4258e12021-06-15 12:11:42 +02001735 if (!(ctx->flags & LY_CTX_EXPLICIT_COMPILE)) {
1736 /* create dep set for the module and mark all the modules that will be (re)compiled */
Michal Vasko50bc09a2021-06-17 17:31:56 +02001737 LY_CHECK_GOTO(ret = lys_unres_dep_sets_create(ctx, &unres.dep_sets, mod), cleanup);
Michal Vaskof4258e12021-06-15 12:11:42 +02001738
Michal Vasko709f9a52021-07-21 10:51:59 +02001739 /* (re)compile the whole dep set (other dep sets will have no modules marked for compilation) */
1740 LY_CHECK_GOTO(ret = lys_compile_depset_all(ctx, &unres), cleanup);
Michal Vaskof4258e12021-06-15 12:11:42 +02001741 }
1742
Michal Vasko405cc9e2020-12-01 12:01:27 +01001743cleanup:
1744 if (ret) {
Michal Vaskof4258e12021-06-15 12:11:42 +02001745 lys_unres_glob_revert(ctx, &unres);
Michal Vasko87f1cf02021-06-08 14:02:47 +02001746 } else if (module) {
1747 *module = mod;
Michal Vasko405cc9e2020-12-01 12:01:27 +01001748 }
Michal Vaskof4258e12021-06-15 12:11:42 +02001749 lys_unres_glob_erase(&unres);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001750 return ret;
Radek Krejci86d106e2018-10-18 09:53:19 +02001751}
1752
Michal Vasko3a41dff2020-07-15 14:30:28 +02001753API LY_ERR
Michal Vasko4de7d072021-07-09 09:13:18 +02001754lys_parse_mem(struct ly_ctx *ctx, const char *data, LYS_INFORMAT format, struct lys_module **module)
Radek Krejci86d106e2018-10-18 09:53:19 +02001755{
Radek Krejci0f969882020-08-21 16:56:47 +02001756 LY_ERR ret;
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001757 struct ly_in *in = NULL;
Radek Krejci86d106e2018-10-18 09:53:19 +02001758
Michal Vasko3a41dff2020-07-15 14:30:28 +02001759 LY_CHECK_ARG_RET(ctx, data, format != LYS_IN_UNKNOWN, LY_EINVAL);
Radek Krejci65639b92018-11-27 10:51:37 +01001760
Michal Vasko3a41dff2020-07-15 14:30:28 +02001761 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 +02001762
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001763 ret = lys_parse(ctx, in, format, NULL, module);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001764 ly_in_free(in, 0);
Radek Krejci86d106e2018-10-18 09:53:19 +02001765
Michal Vasko3a41dff2020-07-15 14:30:28 +02001766 return ret;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001767}
1768
Michal Vasko3a41dff2020-07-15 14:30:28 +02001769API LY_ERR
Michal Vasko4de7d072021-07-09 09:13:18 +02001770lys_parse_fd(struct ly_ctx *ctx, int fd, LYS_INFORMAT format, struct lys_module **module)
Radek Krejci86d106e2018-10-18 09:53:19 +02001771{
Radek Krejci0f969882020-08-21 16:56:47 +02001772 LY_ERR ret;
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001773 struct ly_in *in = NULL;
Radek Krejci86d106e2018-10-18 09:53:19 +02001774
Michal Vasko3a41dff2020-07-15 14:30:28 +02001775 LY_CHECK_ARG_RET(ctx, fd > -1, format != LYS_IN_UNKNOWN, LY_EINVAL);
Radek Krejci86d106e2018-10-18 09:53:19 +02001776
Michal Vasko3a41dff2020-07-15 14:30:28 +02001777 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 +02001778
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001779 ret = lys_parse(ctx, in, format, NULL, module);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001780 ly_in_free(in, 0);
Radek Krejci86d106e2018-10-18 09:53:19 +02001781
Michal Vasko3a41dff2020-07-15 14:30:28 +02001782 return ret;
Radek Krejci86d106e2018-10-18 09:53:19 +02001783}
1784
Michal Vasko3a41dff2020-07-15 14:30:28 +02001785API LY_ERR
Michal Vasko4de7d072021-07-09 09:13:18 +02001786lys_parse_path(struct ly_ctx *ctx, const char *path, LYS_INFORMAT format, struct lys_module **module)
Radek Krejcid33273d2018-10-25 14:55:52 +02001787{
Radek Krejci0f969882020-08-21 16:56:47 +02001788 LY_ERR ret;
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001789 struct ly_in *in = NULL;
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001790
Michal Vasko3a41dff2020-07-15 14:30:28 +02001791 LY_CHECK_ARG_RET(ctx, path, format != LYS_IN_UNKNOWN, LY_EINVAL);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001792
Michal Vasko3a41dff2020-07-15 14:30:28 +02001793 LY_CHECK_ERR_RET(ret = ly_in_new_filepath(path, 0, &in),
Michal Vasko69730152020-10-09 16:30:07 +02001794 LOGERR(ctx, ret, "Unable to create input handler for filepath %s.", path), ret);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001795
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001796 ret = lys_parse(ctx, in, format, NULL, module);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001797 ly_in_free(in, 0);
1798
Michal Vasko3a41dff2020-07-15 14:30:28 +02001799 return ret;
Radek Krejcid33273d2018-10-25 14:55:52 +02001800}
1801
1802API LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02001803lys_search_localfile(const char * const *searchpaths, ly_bool cwd, const char *name, const char *revision,
Radek Krejci0f969882020-08-21 16:56:47 +02001804 char **localfile, LYS_INFORMAT *format)
Radek Krejcid33273d2018-10-25 14:55:52 +02001805{
Radek Krejci1deb5be2020-08-26 16:43:36 +02001806 LY_ERR ret = LY_EMEM;
Radek Krejcid33273d2018-10-25 14:55:52 +02001807 size_t len, flen, match_len = 0, dir_len;
Radek Krejci857189e2020-09-01 13:26:36 +02001808 ly_bool implicit_cwd = 0;
Radek Krejcid33273d2018-10-25 14:55:52 +02001809 char *wd, *wn = NULL;
1810 DIR *dir = NULL;
1811 struct dirent *file;
1812 char *match_name = NULL;
1813 LYS_INFORMAT format_aux, match_format = 0;
1814 struct ly_set *dirs;
1815 struct stat st;
1816
1817 LY_CHECK_ARG_RET(NULL, localfile, LY_EINVAL);
1818
1819 /* start to fill the dir fifo with the context's search path (if set)
1820 * and the current working directory */
Radek Krejciba03a5a2020-08-27 14:40:41 +02001821 LY_CHECK_RET(ly_set_new(&dirs));
Radek Krejcid33273d2018-10-25 14:55:52 +02001822
1823 len = strlen(name);
1824 if (cwd) {
1825 wd = get_current_dir_name();
1826 if (!wd) {
1827 LOGMEM(NULL);
1828 goto cleanup;
1829 } else {
1830 /* add implicit current working directory (./) to be searched,
1831 * this directory is not searched recursively */
Radek Krejciba03a5a2020-08-27 14:40:41 +02001832 ret = ly_set_add(dirs, wd, 0, NULL);
1833 LY_CHECK_GOTO(ret, cleanup);
Radek Krejcid33273d2018-10-25 14:55:52 +02001834 implicit_cwd = 1;
1835 }
1836 }
1837 if (searchpaths) {
Radek Krejci1deb5be2020-08-26 16:43:36 +02001838 for (uint64_t i = 0; searchpaths[i]; i++) {
Radek Krejcid33273d2018-10-25 14:55:52 +02001839 /* check for duplicities with the implicit current working directory */
1840 if (implicit_cwd && !strcmp(dirs->objs[0], searchpaths[i])) {
1841 implicit_cwd = 0;
1842 continue;
1843 }
1844 wd = strdup(searchpaths[i]);
1845 if (!wd) {
1846 LOGMEM(NULL);
1847 goto cleanup;
Radek Krejciba03a5a2020-08-27 14:40:41 +02001848 } else {
1849 ret = ly_set_add(dirs, wd, 0, NULL);
1850 LY_CHECK_GOTO(ret, cleanup);
Radek Krejcid33273d2018-10-25 14:55:52 +02001851 }
1852 }
1853 }
1854 wd = NULL;
1855
1856 /* start searching */
1857 while (dirs->count) {
1858 free(wd);
1859 free(wn); wn = NULL;
1860
1861 dirs->count--;
1862 wd = (char *)dirs->objs[dirs->count];
1863 dirs->objs[dirs->count] = NULL;
Radek Krejcieeee95c2021-01-19 10:57:22 +01001864 LOGVRB("Searching for \"%s\" in \"%s\".", name, wd);
Radek Krejcid33273d2018-10-25 14:55:52 +02001865
1866 if (dir) {
1867 closedir(dir);
1868 }
1869 dir = opendir(wd);
1870 dir_len = strlen(wd);
1871 if (!dir) {
1872 LOGWRN(NULL, "Unable to open directory \"%s\" for searching (sub)modules (%s).", wd, strerror(errno));
1873 } else {
1874 while ((file = readdir(dir))) {
1875 if (!strcmp(".", file->d_name) || !strcmp("..", file->d_name)) {
1876 /* skip . and .. */
1877 continue;
1878 }
1879 free(wn);
1880 if (asprintf(&wn, "%s/%s", wd, file->d_name) == -1) {
1881 LOGMEM(NULL);
1882 goto cleanup;
1883 }
1884 if (stat(wn, &st) == -1) {
1885 LOGWRN(NULL, "Unable to get information about \"%s\" file in \"%s\" when searching for (sub)modules (%s)",
Michal Vasko69730152020-10-09 16:30:07 +02001886 file->d_name, wd, strerror(errno));
Radek Krejcid33273d2018-10-25 14:55:52 +02001887 continue;
1888 }
1889 if (S_ISDIR(st.st_mode) && (dirs->count || !implicit_cwd)) {
1890 /* we have another subdirectory in searchpath to explore,
1891 * subdirectories are not taken into account in current working dir (dirs->set.g[0]) */
Radek Krejciba03a5a2020-08-27 14:40:41 +02001892 ret = ly_set_add(dirs, wn, 0, NULL);
1893 LY_CHECK_GOTO(ret, cleanup);
1894
Radek Krejcid33273d2018-10-25 14:55:52 +02001895 /* continue with the next item in current directory */
1896 wn = NULL;
1897 continue;
1898 } else if (!S_ISREG(st.st_mode)) {
1899 /* not a regular file (note that we see the target of symlinks instead of symlinks */
1900 continue;
1901 }
1902
1903 /* here we know that the item is a file which can contain a module */
1904 if (strncmp(name, file->d_name, len) ||
Michal Vasko69730152020-10-09 16:30:07 +02001905 ((file->d_name[len] != '.') && (file->d_name[len] != '@'))) {
Radek Krejcid33273d2018-10-25 14:55:52 +02001906 /* different filename than the module we search for */
1907 continue;
1908 }
1909
1910 /* get type according to filename suffix */
1911 flen = strlen(file->d_name);
Radek Krejcif13b87b2020-12-01 22:02:17 +01001912 if ((flen >= LY_YANG_SUFFIX_LEN + 1) &&
1913 !strcmp(&file->d_name[flen - LY_YANG_SUFFIX_LEN], LY_YANG_SUFFIX)) {
Radek Krejcid33273d2018-10-25 14:55:52 +02001914 format_aux = LYS_IN_YANG;
Radek Krejcif13b87b2020-12-01 22:02:17 +01001915 } else if ((flen >= LY_YIN_SUFFIX_LEN + 1) &&
1916 !strcmp(&file->d_name[flen - LY_YIN_SUFFIX_LEN], LY_YIN_SUFFIX)) {
Radek Krejci01a937f2020-11-15 10:14:12 +01001917 format_aux = LYS_IN_YIN;
Radek Krejcid33273d2018-10-25 14:55:52 +02001918 } else {
1919 /* not supportde suffix/file format */
1920 continue;
1921 }
1922
1923 if (revision) {
1924 /* we look for the specific revision, try to get it from the filename */
1925 if (file->d_name[len] == '@') {
1926 /* check revision from the filename */
1927 if (strncmp(revision, &file->d_name[len + 1], strlen(revision))) {
1928 /* another revision */
1929 continue;
1930 } else {
1931 /* exact revision */
1932 free(match_name);
1933 match_name = wn;
1934 wn = NULL;
1935 match_len = dir_len + 1 + len;
1936 match_format = format_aux;
1937 goto success;
1938 }
1939 } else {
1940 /* continue trying to find exact revision match, use this only if not found */
1941 free(match_name);
1942 match_name = wn;
1943 wn = NULL;
Michal Vasko44f3d2c2020-08-24 09:49:38 +02001944 match_len = dir_len + 1 + len;
Radek Krejcid33273d2018-10-25 14:55:52 +02001945 match_format = format_aux;
1946 continue;
1947 }
1948 } else {
1949 /* remember the revision and try to find the newest one */
1950 if (match_name) {
Michal Vasko69730152020-10-09 16:30:07 +02001951 if ((file->d_name[len] != '@') ||
Radek Krejcif13b87b2020-12-01 22:02:17 +01001952 lysp_check_date(NULL, &file->d_name[len + 1],
1953 flen - ((format_aux == LYS_IN_YANG) ? LY_YANG_SUFFIX_LEN : LY_YIN_SUFFIX_LEN) - len - 1, NULL)) {
Radek Krejcid33273d2018-10-25 14:55:52 +02001954 continue;
Michal Vasko69730152020-10-09 16:30:07 +02001955 } else if ((match_name[match_len] == '@') &&
Radek Krejcid33273d2018-10-25 14:55:52 +02001956 (strncmp(&match_name[match_len + 1], &file->d_name[len + 1], LY_REV_SIZE - 1) >= 0)) {
1957 continue;
1958 }
1959 free(match_name);
1960 }
1961
1962 match_name = wn;
1963 wn = NULL;
1964 match_len = dir_len + 1 + len;
1965 match_format = format_aux;
1966 continue;
1967 }
1968 }
1969 }
1970 }
1971
1972success:
1973 (*localfile) = match_name;
1974 match_name = NULL;
1975 if (format) {
1976 (*format) = match_format;
1977 }
Radek Krejci1deb5be2020-08-26 16:43:36 +02001978 ret = LY_SUCCESS;
Radek Krejcid33273d2018-10-25 14:55:52 +02001979
1980cleanup:
1981 free(wn);
1982 free(wd);
1983 if (dir) {
1984 closedir(dir);
1985 }
1986 free(match_name);
1987 ly_set_free(dirs, free);
1988
1989 return ret;
1990}