blob: 6e4caa4b99519e65488c655d03c1093781760382 [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
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100130LIBYANG_API_DEF const char *
Radek Krejcif8ca8192021-03-02 16:50:06 +0100131ly_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
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100147LIBYANG_API_DEF LY_ERR
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200148lysc_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
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100184LIBYANG_API_DEF LY_ERR
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200185lysc_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
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100399LIBYANG_API_DEF 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
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100405LIBYANG_API_DEF const struct lysc_node *
Radek Krejci035dacf2021-02-12 18:25:53 +0100406lys_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
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100444LIBYANG_API_DEF 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);
Michal Vasko892f5bf2021-11-24 10:41:05 +0100451 LY_CHECK_CTX_EQUAL_RET(parent ? parent->module->ctx : NULL, module->ctx, NULL);
Radek Krejcia3045382018-11-22 14:30:31 +0100452 if (!nodetype) {
Radek Krejcif13b87b2020-12-01 22:02:17 +0100453 nodetype = LYS_NODETYPE_MASK;
Radek Krejcia3045382018-11-22 14:30:31 +0100454 }
455
456 while ((node = lys_getnext(node, parent, module->compiled, options))) {
457 if (!(node->nodetype & nodetype)) {
458 continue;
459 }
460 if (node->module != module) {
461 continue;
462 }
463
464 if (name_len) {
Radek Krejci7f9b6512019-09-18 13:11:09 +0200465 if (!ly_strncmp(node->name, name, name_len)) {
Radek Krejcia3045382018-11-22 14:30:31 +0100466 return node;
467 }
468 } else {
469 if (!strcmp(node->name, name)) {
470 return node;
471 }
472 }
473 }
Michal Vaskoddd76592022-01-17 13:34:48 +0100474
Radek Krejcia3045382018-11-22 14:30:31 +0100475 return NULL;
476}
477
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100478LIBYANG_API_DEF LY_ERR
Michal Vasko26512682021-01-11 11:35:40 +0100479lys_find_xpath_atoms(const struct ly_ctx *ctx, const struct lysc_node *ctx_node, const char *xpath, uint32_t options,
480 struct ly_set **set)
Michal Vasko519fd602020-05-26 12:17:39 +0200481{
482 LY_ERR ret = LY_SUCCESS;
483 struct lyxp_set xp_set;
Radek Krejcif03a9e22020-09-18 20:09:31 +0200484 struct lyxp_expr *exp = NULL;
Michal Vasko519fd602020-05-26 12:17:39 +0200485 uint32_t i;
486
Michal Vasko26512682021-01-11 11:35:40 +0100487 LY_CHECK_ARG_RET(NULL, ctx || ctx_node, xpath, set, LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +0100488 LY_CHECK_CTX_EQUAL_RET(ctx, ctx_node ? ctx_node->module->ctx : NULL, LY_EINVAL);
Michal Vasko519fd602020-05-26 12:17:39 +0200489 if (!(options & LYXP_SCNODE_ALL)) {
Michal Vasko4ad69e72021-10-26 16:25:55 +0200490 options |= LYXP_SCNODE;
Michal Vasko519fd602020-05-26 12:17:39 +0200491 }
Michal Vasko26512682021-01-11 11:35:40 +0100492 if (!ctx) {
493 ctx = ctx_node->module->ctx;
494 }
Michal Vasko519fd602020-05-26 12:17:39 +0200495
496 memset(&xp_set, 0, sizeof xp_set);
497
498 /* compile expression */
Michal Vasko26512682021-01-11 11:35:40 +0100499 ret = lyxp_expr_parse(ctx, xpath, 0, 1, &exp);
Radek Krejcif03a9e22020-09-18 20:09:31 +0200500 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko519fd602020-05-26 12:17:39 +0200501
502 /* atomize expression */
Michal Vaskoa3e92bc2022-07-29 14:56:23 +0200503 ret = lyxp_atomize(ctx, exp, NULL, LY_VALUE_JSON, NULL, ctx_node, ctx_node, &xp_set, options);
Michal Vasko519fd602020-05-26 12:17:39 +0200504 LY_CHECK_GOTO(ret, cleanup);
505
506 /* allocate return set */
Radek Krejciba03a5a2020-08-27 14:40:41 +0200507 ret = ly_set_new(set);
508 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko519fd602020-05-26 12:17:39 +0200509
510 /* transform into ly_set */
511 (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs);
Michal Vasko26512682021-01-11 11:35:40 +0100512 LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko519fd602020-05-26 12:17:39 +0200513 (*set)->size = xp_set.used;
514
515 for (i = 0; i < xp_set.used; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +0200516 if (xp_set.val.scnodes[i].type == LYXP_NODE_ELEM) {
Radek Krejci3d92e442020-10-12 12:48:13 +0200517 ret = ly_set_add(*set, xp_set.val.scnodes[i].scnode, 1, NULL);
Radek Krejciba03a5a2020-08-27 14:40:41 +0200518 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko519fd602020-05-26 12:17:39 +0200519 }
520 }
521
522cleanup:
523 lyxp_set_free_content(&xp_set);
Michal Vasko26512682021-01-11 11:35:40 +0100524 lyxp_expr_free(ctx, exp);
Michal Vasko519fd602020-05-26 12:17:39 +0200525 return ret;
526}
527
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100528LIBYANG_API_DEF LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +0200529lys_find_expr_atoms(const struct lysc_node *ctx_node, const struct lys_module *cur_mod, const struct lyxp_expr *expr,
530 const struct lysc_prefix *prefixes, uint32_t options, struct ly_set **set)
531{
532 LY_ERR ret = LY_SUCCESS;
533 struct lyxp_set xp_set = {0};
534 uint32_t i;
535
536 LY_CHECK_ARG_RET(NULL, cur_mod, expr, prefixes, set, LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +0100537 LY_CHECK_CTX_EQUAL_RET(ctx_node ? ctx_node->module->ctx : NULL, cur_mod->ctx, LY_EINVAL);
Michal Vasko40308e72020-10-20 16:38:40 +0200538 if (!(options & LYXP_SCNODE_ALL)) {
539 options = LYXP_SCNODE;
540 }
541
542 /* atomize expression */
Michal Vaskoa3e92bc2022-07-29 14:56:23 +0200543 ret = lyxp_atomize(cur_mod->ctx, expr, cur_mod, LY_VALUE_SCHEMA_RESOLVED, (void *)prefixes, ctx_node, ctx_node,
544 &xp_set, options);
Michal Vasko40308e72020-10-20 16:38:40 +0200545 LY_CHECK_GOTO(ret, cleanup);
546
547 /* allocate return set */
548 ret = ly_set_new(set);
549 LY_CHECK_GOTO(ret, cleanup);
550
551 /* transform into ly_set */
552 (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs);
553 LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(cur_mod->ctx); ret = LY_EMEM, cleanup);
554 (*set)->size = xp_set.used;
555
556 for (i = 0; i < xp_set.used; ++i) {
Michal Vasko1a09b212021-05-06 13:00:10 +0200557 if ((xp_set.val.scnodes[i].type == LYXP_NODE_ELEM) && (xp_set.val.scnodes[i].in_ctx >= LYXP_SET_SCNODE_ATOM_NODE)) {
558 assert((xp_set.val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_NODE) ||
559 (xp_set.val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_VAL) ||
Michal Vaskod97959c2020-12-10 12:18:28 +0100560 (xp_set.val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX));
Michal Vasko40308e72020-10-20 16:38:40 +0200561 ret = ly_set_add(*set, xp_set.val.scnodes[i].scnode, 1, NULL);
562 LY_CHECK_GOTO(ret, cleanup);
563 }
564 }
565
566cleanup:
567 lyxp_set_free_content(&xp_set);
568 if (ret) {
569 ly_set_free(*set, NULL);
570 *set = NULL;
571 }
572 return ret;
573}
574
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100575LIBYANG_API_DEF LY_ERR
Michal Vasko26512682021-01-11 11:35:40 +0100576lys_find_xpath(const struct ly_ctx *ctx, const struct lysc_node *ctx_node, const char *xpath, uint32_t options,
577 struct ly_set **set)
Michal Vasko072de482020-08-05 13:27:21 +0200578{
579 LY_ERR ret = LY_SUCCESS;
Michal Vasko40308e72020-10-20 16:38:40 +0200580 struct lyxp_set xp_set = {0};
Radek Krejcif03a9e22020-09-18 20:09:31 +0200581 struct lyxp_expr *exp = NULL;
Michal Vasko072de482020-08-05 13:27:21 +0200582 uint32_t i;
583
Michal Vasko26512682021-01-11 11:35:40 +0100584 LY_CHECK_ARG_RET(NULL, ctx || ctx_node, xpath, set, LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +0100585 LY_CHECK_CTX_EQUAL_RET(ctx, ctx_node ? ctx_node->module->ctx : NULL, LY_EINVAL);
Michal Vasko072de482020-08-05 13:27:21 +0200586 if (!(options & LYXP_SCNODE_ALL)) {
587 options = LYXP_SCNODE;
588 }
Michal Vasko26512682021-01-11 11:35:40 +0100589 if (!ctx) {
590 ctx = ctx_node->module->ctx;
591 }
Michal Vasko072de482020-08-05 13:27:21 +0200592
Michal Vasko072de482020-08-05 13:27:21 +0200593 /* compile expression */
Michal Vasko26512682021-01-11 11:35:40 +0100594 ret = lyxp_expr_parse(ctx, xpath, 0, 1, &exp);
Radek Krejcif03a9e22020-09-18 20:09:31 +0200595 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko072de482020-08-05 13:27:21 +0200596
597 /* atomize expression */
Michal Vaskoa3e92bc2022-07-29 14:56:23 +0200598 ret = lyxp_atomize(ctx, exp, NULL, LY_VALUE_JSON, NULL, ctx_node, ctx_node, &xp_set, options);
Michal Vasko072de482020-08-05 13:27:21 +0200599 LY_CHECK_GOTO(ret, cleanup);
600
601 /* allocate return set */
Radek Krejciba03a5a2020-08-27 14:40:41 +0200602 ret = ly_set_new(set);
603 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko072de482020-08-05 13:27:21 +0200604
605 /* transform into ly_set */
606 (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs);
Michal Vasko26512682021-01-11 11:35:40 +0100607 LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko072de482020-08-05 13:27:21 +0200608 (*set)->size = xp_set.used;
609
610 for (i = 0; i < xp_set.used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +0100611 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 +0200612 ret = ly_set_add(*set, xp_set.val.scnodes[i].scnode, 1, NULL);
Radek Krejciba03a5a2020-08-27 14:40:41 +0200613 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko072de482020-08-05 13:27:21 +0200614 }
615 }
616
617cleanup:
618 lyxp_set_free_content(&xp_set);
Michal Vasko26512682021-01-11 11:35:40 +0100619 lyxp_expr_free(ctx, exp);
Michal Vaskoae159662020-10-21 11:57:24 +0200620 if (ret) {
Michal Vasko40308e72020-10-20 16:38:40 +0200621 ly_set_free(*set, NULL);
622 *set = NULL;
623 }
Michal Vasko072de482020-08-05 13:27:21 +0200624 return ret;
625}
626
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100627LIBYANG_API_DEF LY_ERR
Radek Krejcibc5644c2020-10-27 14:53:17 +0100628lys_find_lypath_atoms(const struct ly_path *path, struct ly_set **set)
629{
630 LY_ERR ret = LY_SUCCESS;
631 LY_ARRAY_COUNT_TYPE u, v;
632
633 LY_CHECK_ARG_RET(NULL, path, set, LY_EINVAL);
634
635 /* allocate return set */
636 LY_CHECK_RET(ly_set_new(set));
637
638 LY_ARRAY_FOR(path, u) {
639 /* add nodes from the path */
640 LY_CHECK_GOTO(ret = ly_set_add(*set, (void *)path[u].node, 0, NULL), cleanup);
641 if (path[u].pred_type == LY_PATH_PREDTYPE_LIST) {
642 LY_ARRAY_FOR(path[u].predicates, v) {
643 /* add all the keys in a predicate */
644 LY_CHECK_GOTO(ret = ly_set_add(*set, (void *)path[u].predicates[v].key, 0, NULL), cleanup);
645 }
646 }
647 }
648
649cleanup:
650 if (ret) {
651 ly_set_free(*set, NULL);
652 *set = NULL;
653 }
654 return ret;
655}
656
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100657LIBYANG_API_DEF LY_ERR
Radek Krejcibc5644c2020-10-27 14:53:17 +0100658lys_find_path_atoms(const struct ly_ctx *ctx, const struct lysc_node *ctx_node, const char *path, ly_bool output,
659 struct ly_set **set)
660{
661 LY_ERR ret = LY_SUCCESS;
662 uint8_t oper;
663 struct lyxp_expr *expr = NULL;
664 struct ly_path *p = NULL;
665
666 LY_CHECK_ARG_RET(ctx, ctx || ctx_node, path, set, LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +0100667 LY_CHECK_CTX_EQUAL_RET(ctx, ctx_node ? ctx_node->module->ctx : NULL, LY_EINVAL);
Radek Krejcibc5644c2020-10-27 14:53:17 +0100668
669 if (!ctx) {
670 ctx = ctx_node->module->ctx;
671 }
672
673 /* parse */
674 ret = lyxp_expr_parse(ctx, path, strlen(path), 0, &expr);
675 LY_CHECK_GOTO(ret, cleanup);
676
677 /* compile */
678 oper = output ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT;
Michal Vasko0884d212021-10-14 09:21:46 +0200679 ret = ly_path_compile(ctx, NULL, ctx_node, NULL, expr, oper, LY_PATH_TARGET_MANY, 0, LY_VALUE_JSON, NULL, &p);
Radek Krejcibc5644c2020-10-27 14:53:17 +0100680 LY_CHECK_GOTO(ret, cleanup);
681
682 /* resolve */
683 ret = lys_find_lypath_atoms(p, set);
684
685cleanup:
686 ly_path_free(ctx, p);
687 lyxp_expr_free(ctx, expr);
688 return ret;
689}
690
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100691LIBYANG_API_DEF const struct lysc_node *
Radek Krejcibc5644c2020-10-27 14:53:17 +0100692lys_find_path(const struct ly_ctx *ctx, const struct lysc_node *ctx_node, const char *path, ly_bool output)
693{
694 const struct lysc_node *snode = NULL;
695 struct lyxp_expr *exp = NULL;
696 struct ly_path *p = NULL;
697 LY_ERR ret;
698 uint8_t oper;
699
700 LY_CHECK_ARG_RET(ctx, ctx || ctx_node, NULL);
Michal Vasko892f5bf2021-11-24 10:41:05 +0100701 LY_CHECK_CTX_EQUAL_RET(ctx, ctx_node ? ctx_node->module->ctx : NULL, NULL);
Radek Krejcibc5644c2020-10-27 14:53:17 +0100702
703 if (!ctx) {
704 ctx = ctx_node->module->ctx;
705 }
706
707 /* parse */
708 ret = lyxp_expr_parse(ctx, path, strlen(path), 0, &exp);
709 LY_CHECK_GOTO(ret, cleanup);
710
711 /* compile */
712 oper = output ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT;
Michal Vasko0884d212021-10-14 09:21:46 +0200713 ret = ly_path_compile(ctx, NULL, ctx_node, NULL, exp, oper, LY_PATH_TARGET_MANY, 0, LY_VALUE_JSON, NULL, &p);
Radek Krejcibc5644c2020-10-27 14:53:17 +0100714 LY_CHECK_GOTO(ret, cleanup);
715
716 /* get last node */
717 snode = p[LY_ARRAY_COUNT(p) - 1].node;
718
719cleanup:
720 ly_path_free(ctx, p);
721 lyxp_expr_free(ctx, exp);
722 return snode;
723}
724
Michal Vasko14654712020-02-06 08:35:21 +0100725char *
726lysc_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 +0200727 size_t buflen)
Radek Krejci327de162019-06-14 12:52:07 +0200728{
Michal Vaskobde22b62022-03-22 15:32:56 +0100729 const struct lysc_node *iter, *par, *key;
Radek Krejci327de162019-06-14 12:52:07 +0200730 char *path = NULL;
731 int len = 0;
Michal Vaskobde22b62022-03-22 15:32:56 +0100732 ly_bool skip_schema;
Radek Krejci327de162019-06-14 12:52:07 +0200733
Radek Krejci3bbd93e2019-07-24 09:57:23 +0200734 if (buffer) {
735 LY_CHECK_ARG_RET(node->module->ctx, buflen > 1, NULL);
Michal Vasko770d3fc2021-01-26 09:14:35 +0100736 buffer[0] = '\0';
Radek Krejci3bbd93e2019-07-24 09:57:23 +0200737 }
738
Michal Vaskobde22b62022-03-22 15:32:56 +0100739 if ((pathtype == LYSC_PATH_DATA) || (pathtype == LYSC_PATH_DATA_PATTERN)) {
740 /* skip schema-only nodes */
741 skip_schema = 1;
742 } else {
743 skip_schema = 0;
744 }
Radek Krejci327de162019-06-14 12:52:07 +0200745
Michal Vaskobde22b62022-03-22 15:32:56 +0100746 for (iter = node; iter && (iter != parent) && (len >= 0); iter = iter->parent) {
747 char *s;
748 const char *slash;
Michal Vasko65de0402020-08-03 16:34:19 +0200749
Michal Vaskobde22b62022-03-22 15:32:56 +0100750 if (skip_schema && (iter->nodetype & (LYS_CHOICE | LYS_CASE | LYS_INPUT | LYS_OUTPUT))) {
751 /* schema-only node */
752 continue;
753 }
Michal Vasko87dd1342021-08-23 16:17:55 +0200754
Michal Vaskobde22b62022-03-22 15:32:56 +0100755 if ((pathtype == LYSC_PATH_DATA_PATTERN) && (iter->nodetype == LYS_LIST)) {
756 key = NULL;
757 while ((key = lys_getnext(key, iter, NULL, 0)) && lysc_is_key(key)) {
758 s = buffer ? strdup(buffer) : path;
Michal Vasko87dd1342021-08-23 16:17:55 +0200759
Michal Vaskobde22b62022-03-22 15:32:56 +0100760 /* print key predicate */
Radek Krejci1c0c3442019-07-23 16:08:47 +0200761 if (buffer) {
Michal Vaskobde22b62022-03-22 15:32:56 +0100762 len = snprintf(buffer, buflen, "[%s='%%s']%s", key->name, s ? s : "");
Radek Krejci1c0c3442019-07-23 16:08:47 +0200763 } else {
Michal Vaskobde22b62022-03-22 15:32:56 +0100764 len = asprintf(&path, "[%s='%%s']%s", key->name, s ? s : "");
Radek Krejci1c0c3442019-07-23 16:08:47 +0200765 }
Michal Vaskobde22b62022-03-22 15:32:56 +0100766 free(s);
Michal Vasko28d03812022-03-24 15:26:11 +0100767
768 if (buffer && (buflen <= (size_t)len)) {
769 /* not enough space in buffer */
770 break;
771 }
Radek Krejci1c0c3442019-07-23 16:08:47 +0200772 }
Radek Krejci327de162019-06-14 12:52:07 +0200773 }
774
Michal Vaskobde22b62022-03-22 15:32:56 +0100775 s = buffer ? strdup(buffer) : path;
776 if (parent && (iter->parent == parent)) {
777 slash = "";
778 } else {
779 slash = "/";
780 }
781
782 if (skip_schema) {
783 par = lysc_data_parent(iter);
784 } else {
785 par = iter->parent;
786 }
787
788 if (!par || (par->module != iter->module)) {
789 /* print prefix */
Radek Krejci3bbd93e2019-07-24 09:57:23 +0200790 if (buffer) {
Michal Vaskobde22b62022-03-22 15:32:56 +0100791 len = snprintf(buffer, buflen, "%s%s:%s%s", slash, iter->module->name, iter->name, s ? s : "");
Radek Krejci3bbd93e2019-07-24 09:57:23 +0200792 } else {
Michal Vaskobde22b62022-03-22 15:32:56 +0100793 len = asprintf(&path, "%s%s:%s%s", slash, iter->module->name, iter->name, s ? s : "");
794 }
795 } else {
796 /* prefix is the same as in parent */
797 if (buffer) {
798 len = snprintf(buffer, buflen, "%s%s%s", slash, iter->name, s ? s : "");
799 } else {
800 len = asprintf(&path, "%s%s%s", slash, iter->name, s ? s : "");
Radek Krejci3bbd93e2019-07-24 09:57:23 +0200801 }
Radek Krejci327de162019-06-14 12:52:07 +0200802 }
Michal Vaskobde22b62022-03-22 15:32:56 +0100803 free(s);
804
805 if (buffer && (buflen <= (size_t)len)) {
806 /* not enough space in buffer */
807 break;
808 }
809 }
810
811 if (len < 0) {
812 free(path);
813 path = NULL;
814 } else if (len == 0) {
815 if (buffer) {
816 strcpy(buffer, "/");
817 } else {
818 path = strdup("/");
819 }
Radek Krejci327de162019-06-14 12:52:07 +0200820 }
821
Radek Krejci1c0c3442019-07-23 16:08:47 +0200822 if (buffer) {
823 return buffer;
824 } else {
825 return path;
826 }
Radek Krejci327de162019-06-14 12:52:07 +0200827}
828
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100829LIBYANG_API_DEF char *
Michal Vasko14654712020-02-06 08:35:21 +0100830lysc_path(const struct lysc_node *node, LYSC_PATH_TYPE pathtype, char *buffer, size_t buflen)
831{
832 return lysc_path_until(node, NULL, pathtype, buffer, buflen);
833}
834
Michal Vasko405cc9e2020-12-01 12:01:27 +0100835LY_ERR
Michal Vasko65333882021-06-10 14:12:16 +0200836_lys_set_implemented(struct lys_module *mod, const char **features, struct lys_glob_unres *unres)
Michal Vasko405cc9e2020-12-01 12:01:27 +0100837{
838 LY_ERR ret = LY_SUCCESS, r;
aPiecek6b3d5422021-07-30 15:55:43 +0200839 struct lys_module *mod_iter;
Michal Vaskoc56d6372021-10-19 12:29:00 +0200840 const char **imp_f, *all_f[] = {"*", NULL};
Michal Vasko65333882021-06-10 14:12:16 +0200841 uint32_t i;
Michal Vasko916aefb2020-11-02 15:43:16 +0100842
Michal Vasko405cc9e2020-12-01 12:01:27 +0100843 if (mod->implemented) {
844 /* mod is already implemented, set the features */
845 r = lys_set_features(mod->parsed, features);
846 if (r == LY_EEXIST) {
847 /* no changes */
848 return LY_SUCCESS;
Michal Vasko7213ac52021-06-15 11:52:13 +0200849 } else if (!r) {
850 /* mark the module as changed */
Michal Vasko01db7de2021-04-16 12:23:30 +0200851 mod->to_compile = 1;
Michal Vasko01db7de2021-04-16 12:23:30 +0200852 }
Michal Vasko7213ac52021-06-15 11:52:13 +0200853
854 return r;
Michal Vasko89b5c072020-10-06 13:52:44 +0200855 }
Michal Vasko08c8b272020-11-24 18:11:30 +0100856
Michal Vasko7213ac52021-06-15 11:52:13 +0200857 /* implement, ignore recompilation because it must always take place later */
858 r = lys_implement(mod, features, unres);
859 LY_CHECK_ERR_GOTO(r && (r != LY_ERECOMPILE), ret = r, cleanup);
Michal Vasko65333882021-06-10 14:12:16 +0200860
861 if (mod->ctx->flags & LY_CTX_ALL_IMPLEMENTED) {
862 /* implement all the imports as well */
863 for (i = 0; i < unres->creating.count; ++i) {
864 mod = unres->creating.objs[i];
865 if (mod->implemented) {
866 continue;
867 }
868
Michal Vaskoc56d6372021-10-19 12:29:00 +0200869 imp_f = (mod->ctx->flags & LY_CTX_ENABLE_IMP_FEATURES) ? all_f : NULL;
870 r = lys_implement(mod, imp_f, unres);
Michal Vasko7213ac52021-06-15 11:52:13 +0200871 LY_CHECK_ERR_GOTO(r && (r != LY_ERECOMPILE), ret = r, cleanup);
Michal Vasko65333882021-06-10 14:12:16 +0200872 }
873 }
874
aPiecek6b3d5422021-07-30 15:55:43 +0200875 /* Try to find module with LYS_MOD_IMPORTED_REV flag. */
876 i = 0;
877 while ((mod_iter = ly_ctx_get_module_iter(mod->ctx, &i))) {
Michal Vaskoe8b085b2021-09-02 08:20:08 +0200878 if (!strcmp(mod_iter->name, mod->name) && (mod_iter != mod) && (mod_iter->latest_revision & LYS_MOD_IMPORTED_REV)) {
879 LOGVRB("Implemented module \"%s@%s\" was not and will not be imported if the revision-date is missing"
880 " in the import statement. Instead, the revision \"%s\" is imported.", mod->name, mod->revision,
881 mod_iter->revision);
aPiecek6b3d5422021-07-30 15:55:43 +0200882 break;
883 }
884 }
885
Michal Vasko65333882021-06-10 14:12:16 +0200886cleanup:
887 return ret;
888}
889
Michal Vaskof4258e12021-06-15 12:11:42 +0200890/**
Michal Vasko7ee5be22021-06-16 17:03:34 +0200891 * @brief Check whether it may be needed to (re)compile a module from a particular dependency set
892 * and if so, add it into its dep set.
893 *
894 * Dependency set includes all modules that need to be (re)compiled in case any of the module(s)
895 * in the dep set are (re)compiled.
896 *
897 * The reason for recompilation is possible disabled nodes and updating
898 * leafref targets to point to the newly compiled modules. Using the import relation, the
899 * dependency is reflexive because of possible foreign augments and deviations, which are compiled
900 * during the target module compilation.
901 *
902 * - every module must belong to exactly one dep set
903 * - implement flag must be ignored because it can be changed during dep set compilation
Michal Vaskof4258e12021-06-15 12:11:42 +0200904 *
905 * @param[in] mod Module to process.
906 * @param[in,out] ctx_set Set with all not-yet-processed modules.
907 * @param[in,out] dep_set Current dependency set to update.
Michal Vasko775fbd02021-07-28 08:25:29 +0200908 * @param[in] aux_set Set of traversed non-compiled modules, should be empty on first call.
Michal Vaskof4258e12021-06-15 12:11:42 +0200909 * @return LY_ERR value.
910 */
911static LY_ERR
Michal Vasko775fbd02021-07-28 08:25:29 +0200912lys_unres_dep_sets_create_mod_r(struct lys_module *mod, struct ly_set *ctx_set, struct ly_set *dep_set,
913 struct ly_set *aux_set)
Michal Vaskof4258e12021-06-15 12:11:42 +0200914{
915 struct lys_module *mod2;
916 struct lysp_import *imports;
917 uint32_t i;
918 LY_ARRAY_COUNT_TYPE u, v;
919 ly_bool found;
920
Michal Vasko0bccbf12021-11-22 09:59:57 +0100921 if (LYS_IS_SINGLE_DEP_SET(mod)) {
Michal Vasko709f9a52021-07-21 10:51:59 +0200922 /* is already in a separate dep set */
Michal Vasko87cfdba2022-02-22 14:13:45 +0100923 if (!lys_has_dep_mods(mod)) {
Michal Vasko709f9a52021-07-21 10:51:59 +0200924 /* break the dep set here, no modules depend on this one */
Michal Vasko7ee5be22021-06-16 17:03:34 +0200925 return LY_SUCCESS;
926 }
Michal Vasko775fbd02021-07-28 08:25:29 +0200927
928 if (ly_set_contains(aux_set, mod, NULL)) {
929 /* it was traversed */
930 return LY_SUCCESS;
931 }
932
933 /* add a new auxiliary module */
934 LY_CHECK_RET(ly_set_add(aux_set, mod, 1, NULL));
Michal Vasko7ee5be22021-06-16 17:03:34 +0200935 } else {
Michal Vasko709f9a52021-07-21 10:51:59 +0200936 if (!ly_set_contains(ctx_set, mod, &i)) {
937 /* it was already processed */
938 return LY_SUCCESS;
939 }
940
941 /* remove it from the set, we are processing it now */
942 ly_set_rm_index(ctx_set, i, NULL);
943
Michal Vasko7ee5be22021-06-16 17:03:34 +0200944 /* add a new dependent module into the dep set */
945 LY_CHECK_RET(ly_set_add(dep_set, mod, 1, NULL));
Michal Vaskof4258e12021-06-15 12:11:42 +0200946 }
947
948 /* process imports of the module and submodules */
949 imports = mod->parsed->imports;
950 LY_ARRAY_FOR(imports, u) {
Michal Vasko709f9a52021-07-21 10:51:59 +0200951 mod2 = imports[u].module;
Michal Vasko775fbd02021-07-28 08:25:29 +0200952 LY_CHECK_RET(lys_unres_dep_sets_create_mod_r(mod2, ctx_set, dep_set, aux_set));
Michal Vaskof4258e12021-06-15 12:11:42 +0200953 }
954 LY_ARRAY_FOR(mod->parsed->includes, v) {
955 imports = mod->parsed->includes[v].submodule->imports;
956 LY_ARRAY_FOR(imports, u) {
Michal Vasko709f9a52021-07-21 10:51:59 +0200957 mod2 = imports[u].module;
Michal Vasko87cfdba2022-02-22 14:13:45 +0100958 if (LYS_IS_SINGLE_DEP_SET(mod2) && !lys_has_dep_mods(mod2)) {
959 /* break the dep set here, no modules depend on this one */
960 continue;
Michal Vasko709f9a52021-07-21 10:51:59 +0200961 }
962
Michal Vasko775fbd02021-07-28 08:25:29 +0200963 LY_CHECK_RET(lys_unres_dep_sets_create_mod_r(imports[u].module, ctx_set, dep_set, aux_set));
Michal Vaskof4258e12021-06-15 12:11:42 +0200964 }
965 }
966
967 /* process modules and submodules importing this module */
Michal Vasko7ee5be22021-06-16 17:03:34 +0200968 for (i = 0; i < mod->ctx->list.count; ++i) {
969 mod2 = mod->ctx->list.objs[i];
Michal Vaskof4258e12021-06-15 12:11:42 +0200970 found = 0;
971
972 imports = mod2->parsed->imports;
973 LY_ARRAY_FOR(imports, u) {
974 if (imports[u].module == mod) {
975 found = 1;
976 break;
977 }
978 }
979
980 if (!found) {
981 LY_ARRAY_FOR(mod2->parsed->includes, v) {
982 imports = mod2->parsed->includes[v].submodule->imports;
983 LY_ARRAY_FOR(imports, u) {
984 if (imports[u].module == mod) {
985 found = 1;
986 break;
987 }
988 }
989
990 if (found) {
991 break;
992 }
993 }
994 }
995
996 if (found) {
Michal Vasko775fbd02021-07-28 08:25:29 +0200997 LY_CHECK_RET(lys_unres_dep_sets_create_mod_r(mod2, ctx_set, dep_set, aux_set));
Michal Vaskof4258e12021-06-15 12:11:42 +0200998 }
999 }
1000
1001 return LY_SUCCESS;
1002}
1003
Michal Vasko709f9a52021-07-21 10:51:59 +02001004/**
1005 * @brief Add all simple modules (that have nothing to (re)compile) into separate dep sets.
1006 *
1007 * @param[in,out] ctx_set Set with all not-yet-processed modules.
1008 * @param[in,out] main_set Set of dependency module sets.
1009 * @return LY_ERR value.
1010 */
1011static LY_ERR
1012lys_unres_dep_sets_create_single(struct ly_set *ctx_set, struct ly_set *main_set)
1013{
1014 LY_ERR ret = LY_SUCCESS;
1015 struct lys_module *m;
1016 uint32_t i = 0;
1017 struct ly_set *dep_set = NULL;
1018
1019 while (i < ctx_set->count) {
1020 m = ctx_set->objs[i];
Michal Vasko0bccbf12021-11-22 09:59:57 +01001021 if (LYS_IS_SINGLE_DEP_SET(m)) {
Michal Vasko709f9a52021-07-21 10:51:59 +02001022 /* remove it from the set, we are processing it now */
1023 ly_set_rm_index(ctx_set, i, NULL);
1024
1025 /* this module can be in a separate dep set (but there still may be modules importing this one
1026 * that depend on imports of this one in case it defines groupings) */
1027 LY_CHECK_GOTO(ret = ly_set_new(&dep_set), cleanup);
1028 LY_CHECK_GOTO(ret = ly_set_add(dep_set, m, 1, NULL), cleanup);
1029 LY_CHECK_GOTO(ret = ly_set_add(main_set, dep_set, 1, NULL), cleanup);
1030 dep_set = NULL;
1031 } else {
1032 ++i;
1033 }
1034 }
1035
1036cleanup:
1037 ly_set_free(dep_set, NULL);
1038 return ret;
1039}
1040
Michal Vaskof4258e12021-06-15 12:11:42 +02001041LY_ERR
Michal Vasko50bc09a2021-06-17 17:31:56 +02001042lys_unres_dep_sets_create(struct ly_ctx *ctx, struct ly_set *main_set, struct lys_module *mod)
Michal Vaskof4258e12021-06-15 12:11:42 +02001043{
1044 LY_ERR ret = LY_SUCCESS;
1045 struct lys_module *m;
Michal Vasko775fbd02021-07-28 08:25:29 +02001046 struct ly_set *dep_set = NULL, *ctx_set = NULL, aux_set = {0};
Michal Vaskof4258e12021-06-15 12:11:42 +02001047 uint32_t i;
Michal Vasko7ee5be22021-06-16 17:03:34 +02001048 ly_bool found;
Michal Vaskof4258e12021-06-15 12:11:42 +02001049
Michal Vasko22b26222021-07-30 11:16:47 +02001050 assert(!main_set->count);
1051
Michal Vaskof4258e12021-06-15 12:11:42 +02001052 /* start with a duplicate set of modules that we will remove from */
1053 LY_CHECK_GOTO(ret = ly_set_dup(&ctx->list, NULL, &ctx_set), cleanup);
1054
Michal Vasko709f9a52021-07-21 10:51:59 +02001055 /* first create all dep sets with single modules */
1056 LY_CHECK_GOTO(ret = lys_unres_dep_sets_create_single(ctx_set, main_set), cleanup);
1057
1058 if (mod && !ly_set_contains(ctx_set, mod, NULL)) {
1059 /* dep set for this module has already been created, nothing else to do */
1060 goto cleanup;
1061 }
1062
Michal Vaskof4258e12021-06-15 12:11:42 +02001063 while (ctx_set->count) {
1064 /* create new dep set */
1065 LY_CHECK_GOTO(ret = ly_set_new(&dep_set), cleanup);
1066
1067 if (mod) {
1068 /* use the module create a dep set with the rest of its dependent modules */
Michal Vasko775fbd02021-07-28 08:25:29 +02001069 LY_CHECK_GOTO(ret = lys_unres_dep_sets_create_mod_r(mod, ctx_set, dep_set, &aux_set), cleanup);
Michal Vaskof4258e12021-06-15 12:11:42 +02001070 } else {
1071 /* use first ctx mod to create a dep set with the rest of its dependent modules */
Michal Vasko775fbd02021-07-28 08:25:29 +02001072 LY_CHECK_GOTO(ret = lys_unres_dep_sets_create_mod_r(ctx_set->objs[0], ctx_set, dep_set, &aux_set), cleanup);
Michal Vaskof4258e12021-06-15 12:11:42 +02001073 }
Michal Vasko775fbd02021-07-28 08:25:29 +02001074 ly_set_erase(&aux_set, NULL);
Michal Vasko7ee5be22021-06-16 17:03:34 +02001075 assert(dep_set->count);
Michal Vaskof4258e12021-06-15 12:11:42 +02001076
1077 /* check whether there is any module that will be (re)compiled */
Michal Vasko7ee5be22021-06-16 17:03:34 +02001078 found = 0;
Michal Vaskof4258e12021-06-15 12:11:42 +02001079 for (i = 0; i < dep_set->count; ++i) {
1080 m = dep_set->objs[i];
1081 if (m->to_compile) {
Michal Vasko7ee5be22021-06-16 17:03:34 +02001082 found = 1;
Michal Vaskof4258e12021-06-15 12:11:42 +02001083 break;
1084 }
1085 }
1086
Michal Vasko7ee5be22021-06-16 17:03:34 +02001087 if (found) {
Michal Vaskof4258e12021-06-15 12:11:42 +02001088 /* if there is, all the implemented modules need to be recompiled */
1089 for (i = 0; i < dep_set->count; ++i) {
1090 m = dep_set->objs[i];
1091 if (m->implemented) {
1092 m->to_compile = 1;
1093 }
1094 }
1095 }
1096
Michal Vasko7ee5be22021-06-16 17:03:34 +02001097 /* add the dep set into main set */
1098 LY_CHECK_GOTO(ret = ly_set_add(main_set, dep_set, 1, NULL), cleanup);
Michal Vaskof4258e12021-06-15 12:11:42 +02001099 dep_set = NULL;
1100
1101 if (mod) {
1102 /* we need dep set only for this module */
1103 break;
1104 }
1105 }
1106
Michal Vaskoe558f792021-07-28 08:20:15 +02001107#ifndef NDEBUG
1108 LOGDBG(LY_LDGDEPSETS, "dep sets created (%" PRIu32 "):", main_set->count);
1109 for (i = 0; i < main_set->count; ++i) {
1110 struct ly_set *iter_set = main_set->objs[i];
1111
1112 LOGDBG(LY_LDGDEPSETS, "dep set #%" PRIu32 ":", i);
1113 for (uint32_t j = 0; j < iter_set->count; ++j) {
1114 m = iter_set->objs[j];
1115 LOGDBG(LY_LDGDEPSETS, "\t%s", m->name);
1116 }
1117 }
1118#endif
1119
Michal Vaskof4258e12021-06-15 12:11:42 +02001120cleanup:
Michal Vaskobd65c2e2021-06-16 11:49:45 +02001121 assert(ret || main_set->objs);
Michal Vasko775fbd02021-07-28 08:25:29 +02001122 ly_set_erase(&aux_set, NULL);
Michal Vaskof4258e12021-06-15 12:11:42 +02001123 ly_set_free(dep_set, NULL);
1124 ly_set_free(ctx_set, NULL);
1125 return ret;
1126}
1127
1128void
1129lys_unres_glob_revert(struct ly_ctx *ctx, struct lys_glob_unres *unres)
1130{
1131 uint32_t i, j, idx, prev_lo;
1132 struct ly_set *dep_set;
1133 struct lys_module *m;
1134 LY_ERR ret;
1135
1136 for (i = 0; i < unres->implementing.count; ++i) {
1137 m = unres->implementing.objs[i];
1138 assert(m->implemented);
1139
1140 /* make the module correctly non-implemented again */
1141 m->implemented = 0;
1142 lys_precompile_augments_deviations_revert(ctx, m);
1143 lysc_module_free(m->compiled);
1144 m->compiled = NULL;
1145
1146 /* should not be made implemented */
1147 m->to_compile = 0;
1148 }
1149
1150 for (i = 0; i < unres->creating.count; ++i) {
1151 m = unres->creating.objs[i];
1152
Michal Vaskod297f2a2021-06-16 11:51:28 +02001153 /* remove the module from the context */
Michal Vaskof4258e12021-06-15 12:11:42 +02001154 ly_set_rm(&ctx->list, m, NULL);
Michal Vaskof4258e12021-06-15 12:11:42 +02001155
Michal Vasko22b26222021-07-30 11:16:47 +02001156 /* remove it also from dep sets */
Michal Vasko7ee5be22021-06-16 17:03:34 +02001157 for (j = 0; j < unres->dep_sets.count; ++j) {
1158 dep_set = unres->dep_sets.objs[j];
1159 if (ly_set_contains(dep_set, m, &idx)) {
1160 ly_set_rm_index(dep_set, idx, NULL);
1161 break;
Michal Vaskof4258e12021-06-15 12:11:42 +02001162 }
Michal Vaskof4258e12021-06-15 12:11:42 +02001163 }
Michal Vaskod297f2a2021-06-16 11:51:28 +02001164
1165 /* free the module */
Michal Vasko4f9da5e2022-03-14 13:11:26 +01001166 lys_module_free(m, 1);
Michal Vaskof4258e12021-06-15 12:11:42 +02001167 }
1168
1169 if (unres->implementing.count) {
1170 /* recompile previous context because some implemented modules are no longer implemented,
1171 * we can reuse the current to_compile flags */
1172 prev_lo = ly_log_options(0);
Michal Vasko22b26222021-07-30 11:16:47 +02001173 ret = lys_compile_depset_all(ctx, &ctx->unres);
Michal Vaskof4258e12021-06-15 12:11:42 +02001174 ly_log_options(prev_lo);
1175 if (ret) {
1176 LOGINT(ctx);
1177 }
1178 }
1179}
1180
1181void
1182lys_unres_glob_erase(struct lys_glob_unres *unres)
1183{
1184 uint32_t i;
1185
1186 for (i = 0; i < unres->dep_sets.count; ++i) {
1187 ly_set_free(unres->dep_sets.objs[i], NULL);
1188 }
1189 ly_set_erase(&unres->dep_sets, NULL);
1190 ly_set_erase(&unres->implementing, NULL);
1191 ly_set_erase(&unres->creating, NULL);
1192
Michal Vaskoc130e162021-10-19 11:30:00 +02001193 assert(!unres->ds_unres.whens.count);
1194 assert(!unres->ds_unres.musts.count);
Michal Vaskof4258e12021-06-15 12:11:42 +02001195 assert(!unres->ds_unres.leafrefs.count);
aPiecekc6526b42021-07-12 15:21:39 +02001196 assert(!unres->ds_unres.disabled_leafrefs.count);
Michal Vaskof4258e12021-06-15 12:11:42 +02001197 assert(!unres->ds_unres.dflts.count);
1198 assert(!unres->ds_unres.disabled.count);
1199}
1200
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001201LIBYANG_API_DEF LY_ERR
Michal Vasko65333882021-06-10 14:12:16 +02001202lys_set_implemented(struct lys_module *mod, const char **features)
1203{
1204 LY_ERR ret = LY_SUCCESS;
Michal Vasko22b26222021-07-30 11:16:47 +02001205 struct lys_glob_unres *unres = &mod->ctx->unres;
Michal Vasko65333882021-06-10 14:12:16 +02001206
1207 LY_CHECK_ARG_RET(NULL, mod, LY_EINVAL);
1208
1209 /* implement */
Michal Vasko22b26222021-07-30 11:16:47 +02001210 ret = _lys_set_implemented(mod, features, unres);
Michal Vasko65333882021-06-10 14:12:16 +02001211 LY_CHECK_GOTO(ret, cleanup);
1212
Michal Vaskof4258e12021-06-15 12:11:42 +02001213 if (!(mod->ctx->flags & LY_CTX_EXPLICIT_COMPILE)) {
1214 /* create dep set for the module and mark all the modules that will be (re)compiled */
Michal Vasko22b26222021-07-30 11:16:47 +02001215 LY_CHECK_GOTO(ret = lys_unres_dep_sets_create(mod->ctx, &unres->dep_sets, mod), cleanup);
Michal Vaskof4258e12021-06-15 12:11:42 +02001216
Michal Vasko709f9a52021-07-21 10:51:59 +02001217 /* (re)compile the whole dep set (other dep sets will have no modules marked for compilation) */
Michal Vasko22b26222021-07-30 11:16:47 +02001218 LY_CHECK_GOTO(ret = lys_compile_depset_all(mod->ctx, unres), cleanup);
1219
1220 /* unres resolved */
1221 lys_unres_glob_erase(unres);
Michal Vaskof4258e12021-06-15 12:11:42 +02001222 }
1223
Michal Vasko65333882021-06-10 14:12:16 +02001224cleanup:
Michal Vasko405cc9e2020-12-01 12:01:27 +01001225 if (ret) {
Michal Vasko22b26222021-07-30 11:16:47 +02001226 lys_unres_glob_revert(mod->ctx, unres);
1227 lys_unres_glob_erase(unres);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001228 }
Michal Vasko89b5c072020-10-06 13:52:44 +02001229 return ret;
Radek Krejci77a8bcd2019-09-11 11:20:02 +02001230}
1231
Michal Vasko7c8439f2020-08-05 13:25:19 +02001232static LY_ERR
aPiecekc3e26142021-06-22 14:25:49 +02001233lys_resolve_import_include(struct lys_parser_ctx *pctx, struct lysp_module *pmod, struct ly_set *new_mods)
Michal Vasko7c8439f2020-08-05 13:25:19 +02001234{
1235 struct lysp_import *imp;
Michal Vasko7c8439f2020-08-05 13:25:19 +02001236 LY_ARRAY_COUNT_TYPE u, v;
1237
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001238 pmod->parsing = 1;
1239 LY_ARRAY_FOR(pmod->imports, u) {
1240 imp = &pmod->imports[u];
Michal Vasko7c8439f2020-08-05 13:25:19 +02001241 if (!imp->module) {
aPiecekc3e26142021-06-22 14:25:49 +02001242 LY_CHECK_RET(lys_parse_load(PARSER_CTX(pctx), imp->name, imp->rev[0] ? imp->rev : NULL, new_mods, &imp->module));
aPiecekd4911ee2021-07-30 07:40:24 +02001243
1244 if (!imp->rev[0]) {
1245 /* This module must be selected for the next similar
1246 * import without revision-date to avoid incorrect
1247 * derived identities in the ::lys_module.identities.
1248 */
1249 imp->module->latest_revision |= LYS_MOD_IMPORTED_REV;
1250 }
Michal Vasko7c8439f2020-08-05 13:25:19 +02001251 }
1252 /* check for importing the same module twice */
1253 for (v = 0; v < u; ++v) {
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001254 if (imp->module == pmod->imports[v].module) {
Michal Vasko7c8439f2020-08-05 13:25:19 +02001255 LOGWRN(PARSER_CTX(pctx), "Single revision of the module \"%s\" imported twice.", imp->name);
1256 }
1257 }
1258 }
aPiecekc3e26142021-06-22 14:25:49 +02001259 LY_CHECK_RET(lysp_load_submodules(pctx, pmod, new_mods));
Radek Krejci771928a2021-01-19 13:42:36 +01001260
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001261 pmod->parsing = 0;
Michal Vasko7c8439f2020-08-05 13:25:19 +02001262
1263 return LY_SUCCESS;
1264}
1265
Michal Vasko3a41dff2020-07-15 14:30:28 +02001266LY_ERR
Michal Vasko7a0b0762020-09-02 16:37:01 +02001267lys_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 +02001268 LY_ERR (*custom_check)(const struct ly_ctx *, struct lysp_module *, struct lysp_submodule *, void *),
aPiecekc3e26142021-06-22 14:25:49 +02001269 void *check_data, struct ly_set *new_mods, struct lysp_submodule **submodule)
Radek Krejci9f5e6fb2018-10-25 09:26:12 +02001270{
Michal Vasko3a41dff2020-07-15 14:30:28 +02001271 LY_ERR ret;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001272 struct lysp_submodule *submod = NULL, *latest_sp;
Michal Vaskob36053d2020-03-26 15:49:30 +01001273 struct lys_yang_parser_ctx *yangctx = NULL;
1274 struct lys_yin_parser_ctx *yinctx = NULL;
1275 struct lys_parser_ctx *pctx;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001276
Michal Vasko3a41dff2020-07-15 14:30:28 +02001277 LY_CHECK_ARG_RET(ctx, ctx, in, LY_EINVAL);
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001278
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001279 switch (format) {
1280 case LYS_IN_YIN:
Michal Vasko63f3d842020-07-08 10:10:14 +02001281 ret = yin_parse_submodule(&yinctx, ctx, main_ctx, in, &submod);
Michal Vaskob36053d2020-03-26 15:49:30 +01001282 pctx = (struct lys_parser_ctx *)yinctx;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001283 break;
1284 case LYS_IN_YANG:
Michal Vasko63f3d842020-07-08 10:10:14 +02001285 ret = yang_parse_submodule(&yangctx, ctx, main_ctx, in, &submod);
Michal Vaskob36053d2020-03-26 15:49:30 +01001286 pctx = (struct lys_parser_ctx *)yangctx;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001287 break;
1288 default:
David Sedlák4f2f5ba2019-08-15 13:18:48 +02001289 LOGERR(ctx, LY_EINVAL, "Invalid schema input format.");
Radek Krejci82fa8d42020-07-11 22:00:59 +02001290 ret = LY_EINVAL;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001291 break;
Radek Krejci9f5e6fb2018-10-25 09:26:12 +02001292 }
Radek Krejcif6923e82020-07-02 16:36:53 +02001293 LY_CHECK_GOTO(ret, error);
Radek Krejcif027df72020-09-15 13:00:28 +02001294 assert(submod);
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001295
1296 /* make sure that the newest revision is at position 0 */
1297 lysp_sort_revisions(submod->revs);
1298
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001299 /* decide the latest revision */
Michal Vasko8dc31992021-02-22 10:30:47 +01001300 latest_sp = (struct lysp_submodule *)ly_ctx_get_submodule2_latest(submod->mod, submod->name);
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001301 if (latest_sp) {
1302 if (submod->revs) {
1303 if (!latest_sp->revs) {
1304 /* latest has no revision, so mod is anyway newer */
1305 submod->latest_revision = latest_sp->latest_revision;
Radek Krejcib3289d62019-09-18 12:21:39 +02001306 /* the latest_sp is zeroed later when the new module is being inserted into the context */
1307 } else if (strcmp(submod->revs[0].date, latest_sp->revs[0].date) > 0) {
1308 submod->latest_revision = latest_sp->latest_revision;
1309 /* the latest_sp is zeroed later when the new module is being inserted into the context */
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001310 } else {
Radek Krejcib3289d62019-09-18 12:21:39 +02001311 latest_sp = NULL;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001312 }
Radek Krejcib3289d62019-09-18 12:21:39 +02001313 } else {
1314 latest_sp = NULL;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001315 }
1316 } else {
1317 submod->latest_revision = 1;
1318 }
1319
Radek Krejcib3289d62019-09-18 12:21:39 +02001320 if (custom_check) {
Michal Vasko7c8439f2020-08-05 13:25:19 +02001321 LY_CHECK_GOTO(ret = custom_check(ctx, NULL, submod, check_data), error);
Radek Krejcib3289d62019-09-18 12:21:39 +02001322 }
1323
1324 if (latest_sp) {
1325 latest_sp->latest_revision = 0;
1326 }
1327
Michal Vasko7a0b0762020-09-02 16:37:01 +02001328 lys_parser_fill_filepath(ctx, in, &submod->filepath);
1329
Michal Vasko7c8439f2020-08-05 13:25:19 +02001330 /* resolve imports and includes */
aPiecekc3e26142021-06-22 14:25:49 +02001331 LY_CHECK_GOTO(ret = lys_resolve_import_include(pctx, (struct lysp_module *)submod, new_mods), error);
Michal Vasko7c8439f2020-08-05 13:25:19 +02001332
David Sedlák1b623122019-08-05 15:27:49 +02001333 if (format == LYS_IN_YANG) {
Michal Vaskob36053d2020-03-26 15:49:30 +01001334 yang_parser_ctx_free(yangctx);
David Sedlák1b623122019-08-05 15:27:49 +02001335 } else {
Michal Vaskob36053d2020-03-26 15:49:30 +01001336 yin_parser_ctx_free(yinctx);
David Sedlák1b623122019-08-05 15:27:49 +02001337 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02001338 *submodule = submod;
1339 return LY_SUCCESS;
David Sedlák1b623122019-08-05 15:27:49 +02001340
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001341error:
Radek Krejcic64661b2020-08-15 15:42:26 +02001342 if (!submod || !submod->name) {
1343 LOGERR(ctx, ret, "Parsing submodule failed.");
1344 } else {
1345 LOGERR(ctx, ret, "Parsing submodule \"%s\" failed.", submod->name);
1346 }
Michal Vasko5d24f6c2020-10-13 13:49:06 +02001347 lysp_module_free((struct lysp_module *)submod);
David Sedlák1b623122019-08-05 15:27:49 +02001348 if (format == LYS_IN_YANG) {
Michal Vaskob36053d2020-03-26 15:49:30 +01001349 yang_parser_ctx_free(yangctx);
David Sedlák1b623122019-08-05 15:27:49 +02001350 } else {
Michal Vaskob36053d2020-03-26 15:49:30 +01001351 yin_parser_ctx_free(yinctx);
David Sedlák1b623122019-08-05 15:27:49 +02001352 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02001353 return ret;
Radek Krejci9f5e6fb2018-10-25 09:26:12 +02001354}
1355
Michal Vasko45b521c2020-11-04 17:14:39 +01001356/**
1357 * @brief Add ietf-netconf metadata to the parsed module. Operation, filter, and select are added.
1358 *
1359 * @param[in] mod Parsed module to add to.
1360 * @return LY_SUCCESS on success.
1361 * @return LY_ERR on error.
1362 */
1363static LY_ERR
1364lys_parsed_add_internal_ietf_netconf(struct lysp_module *mod)
1365{
1366 struct lysp_ext_instance *ext_p;
1367 struct lysp_stmt *stmt;
1368 struct lysp_import *imp;
1369
1370 /*
1371 * 1) edit-config's operation
1372 */
1373 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->exts, ext_p, LY_EMEM);
1374 LY_CHECK_ERR_RET(!ext_p, LOGMEM(mod->mod->ctx), LY_EMEM);
1375 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_:annotation", 0, &ext_p->name));
1376 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "operation", 0, &ext_p->argument));
Radek Krejci8df109d2021-04-23 12:19:08 +02001377 ext_p->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001378 ext_p->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001379 ext_p->flags = LYS_INTERNAL;
Radek Krejciab430862021-03-02 20:13:40 +01001380 ext_p->parent_stmt = LY_STMT_MODULE;
1381 ext_p->parent_stmt_index = 0;
Michal Vasko45b521c2020-11-04 17:14:39 +01001382
1383 ext_p->child = stmt = calloc(1, sizeof *ext_p->child);
1384 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1385 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "type", 0, &stmt->stmt));
1386 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enumeration", 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_TYPE;
1390
1391 stmt->child = calloc(1, sizeof *stmt->child);
1392 stmt = stmt->child;
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, "merge", 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 stmt->next = calloc(1, sizeof *stmt->child);
1401 stmt = stmt->next;
1402 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1403 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
1404 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "replace", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001405 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001406 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001407 stmt->kw = LY_STMT_ENUM;
1408
1409 stmt->next = calloc(1, sizeof *stmt->child);
1410 stmt = stmt->next;
1411 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1412 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
1413 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "create", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001414 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001415 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001416 stmt->kw = LY_STMT_ENUM;
1417
1418 stmt->next = calloc(1, sizeof *stmt->child);
1419 stmt = stmt->next;
1420 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1421 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
1422 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "delete", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001423 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001424 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001425 stmt->kw = LY_STMT_ENUM;
1426
1427 stmt->next = calloc(1, sizeof *stmt->child);
1428 stmt = stmt->next;
1429 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1430 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
1431 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "remove", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001432 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001433 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001434 stmt->kw = LY_STMT_ENUM;
1435
1436 /*
1437 * 2) filter's type
1438 */
1439 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->exts, ext_p, LY_EMEM);
1440 LY_CHECK_ERR_RET(!ext_p, LOGMEM(mod->mod->ctx), LY_EMEM);
1441 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_:annotation", 0, &ext_p->name));
1442 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "type", 0, &ext_p->argument));
Radek Krejci8df109d2021-04-23 12:19:08 +02001443 ext_p->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001444 ext_p->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001445 ext_p->flags = LYS_INTERNAL;
Radek Krejciab430862021-03-02 20:13:40 +01001446 ext_p->parent_stmt = LY_STMT_MODULE;
1447 ext_p->parent_stmt_index = 0;
Michal Vasko45b521c2020-11-04 17:14:39 +01001448
1449 ext_p->child = stmt = calloc(1, sizeof *ext_p->child);
1450 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1451 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "type", 0, &stmt->stmt));
1452 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enumeration", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001453 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001454 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001455 stmt->kw = LY_STMT_TYPE;
1456
1457 stmt->child = calloc(1, sizeof *stmt->child);
1458 stmt = stmt->child;
1459 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1460 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
1461 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "subtree", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001462 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001463 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001464 stmt->kw = LY_STMT_ENUM;
1465
1466 stmt->next = calloc(1, sizeof *stmt->child);
1467 stmt = stmt->next;
1468 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1469 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
1470 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "xpath", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001471 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001472 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001473 stmt->kw = LY_STMT_ENUM;
1474
1475 /* if-feature for enum allowed only for YANG 1.1 modules */
1476 if (mod->version >= LYS_VERSION_1_1) {
1477 stmt->child = calloc(1, sizeof *stmt->child);
1478 stmt = stmt->child;
1479 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1480 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "if-feature", 0, &stmt->stmt));
1481 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "xpath", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001482 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001483 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001484 stmt->kw = LY_STMT_IF_FEATURE;
1485 }
1486
1487 /*
1488 * 3) filter's select
1489 */
1490 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->exts, ext_p, LY_EMEM);
1491 LY_CHECK_ERR_RET(!ext_p, LOGMEM(mod->mod->ctx), LY_EMEM);
1492 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_:annotation", 0, &ext_p->name));
1493 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "select", 0, &ext_p->argument));
Radek Krejci8df109d2021-04-23 12:19:08 +02001494 ext_p->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001495 ext_p->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001496 ext_p->flags = LYS_INTERNAL;
Radek Krejciab430862021-03-02 20:13:40 +01001497 ext_p->parent_stmt = LY_STMT_MODULE;
1498 ext_p->parent_stmt_index = 0;
Michal Vasko45b521c2020-11-04 17:14:39 +01001499
1500 ext_p->child = stmt = calloc(1, sizeof *ext_p->child);
1501 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1502 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "type", 0, &stmt->stmt));
1503 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "yang_:xpath1.0", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001504 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001505 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001506 stmt->kw = LY_STMT_TYPE;
1507
1508 /* create new imports for the used prefixes */
1509 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->imports, imp, LY_EMEM);
1510
1511 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "ietf-yang-metadata", 0, &imp->name));
1512 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_", 0, &imp->prefix));
1513 imp->flags = LYS_INTERNAL;
1514
1515 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->imports, imp, LY_EMEM);
1516
1517 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "ietf-yang-types", 0, &imp->name));
1518 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "yang_", 0, &imp->prefix));
1519 imp->flags = LYS_INTERNAL;
1520
1521 return LY_SUCCESS;
1522}
1523
1524/**
1525 * @brief Add ietf-netconf-with-defaults "default" metadata to the parsed module.
1526 *
1527 * @param[in] mod Parsed module to add to.
1528 * @return LY_SUCCESS on success.
1529 * @return LY_ERR on error.
1530 */
1531static LY_ERR
1532lys_parsed_add_internal_ietf_netconf_with_defaults(struct lysp_module *mod)
1533{
1534 struct lysp_ext_instance *ext_p;
1535 struct lysp_stmt *stmt;
1536 struct lysp_import *imp;
1537
1538 /* add new extension instance */
1539 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->exts, ext_p, LY_EMEM);
1540
1541 /* fill in the extension instance fields */
1542 LY_CHECK_ERR_RET(!ext_p, LOGMEM(mod->mod->ctx), LY_EMEM);
1543 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_:annotation", 0, &ext_p->name));
1544 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "default", 0, &ext_p->argument));
Radek Krejci8df109d2021-04-23 12:19:08 +02001545 ext_p->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001546 ext_p->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001547 ext_p->flags = LYS_INTERNAL;
Radek Krejciab430862021-03-02 20:13:40 +01001548 ext_p->parent_stmt = LY_STMT_MODULE;
1549 ext_p->parent_stmt_index = 0;
Michal Vasko45b521c2020-11-04 17:14:39 +01001550
1551 ext_p->child = stmt = calloc(1, sizeof *ext_p->child);
1552 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1553 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "type", 0, &stmt->stmt));
1554 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "boolean", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001555 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001556 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001557 stmt->kw = LY_STMT_TYPE;
1558
1559 /* create new import for the used prefix */
1560 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->imports, imp, LY_EMEM);
1561
1562 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "ietf-yang-metadata", 0, &imp->name));
1563 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_", 0, &imp->prefix));
1564 imp->flags = LYS_INTERNAL;
1565
1566 return LY_SUCCESS;
1567}
1568
Michal Vasko3a41dff2020-07-15 14:30:28 +02001569LY_ERR
Michal Vasko4e205e82021-06-08 14:01:47 +02001570lys_parse_in(struct ly_ctx *ctx, struct ly_in *in, LYS_INFORMAT format,
Radek Krejci1deb5be2020-08-26 16:43:36 +02001571 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 +02001572 void *check_data, struct ly_set *new_mods, struct lys_module **module)
Radek Krejci86d106e2018-10-18 09:53:19 +02001573{
Michal Vaskoa9309bb2021-07-09 09:31:55 +02001574 struct lys_module *mod = NULL, *latest, *mod_dup = NULL;
Michal Vasko3a41dff2020-07-15 14:30:28 +02001575 LY_ERR ret;
Michal Vaskob36053d2020-03-26 15:49:30 +01001576 struct lys_yang_parser_ctx *yangctx = NULL;
1577 struct lys_yin_parser_ctx *yinctx = NULL;
Radek Krejcif6923e82020-07-02 16:36:53 +02001578 struct lys_parser_ctx *pctx = NULL;
Michal Vasko7a0b0762020-09-02 16:37:01 +02001579 char *filename, *rev, *dot;
1580 size_t len;
Radek Krejcic64661b2020-08-15 15:42:26 +02001581 ly_bool module_created = 0;
Radek Krejci86d106e2018-10-18 09:53:19 +02001582
Michal Vaskodd992582021-06-10 14:34:57 +02001583 assert(ctx && in && new_mods);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001584
Michal Vasko7a0b0762020-09-02 16:37:01 +02001585 if (module) {
1586 *module = NULL;
1587 }
Radek Krejci86d106e2018-10-18 09:53:19 +02001588
1589 mod = calloc(1, sizeof *mod);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001590 LY_CHECK_ERR_RET(!mod, LOGMEM(ctx), LY_EMEM);
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001591 mod->ctx = ctx;
Radek Krejci86d106e2018-10-18 09:53:19 +02001592
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001593 /* parse */
Radek Krejci86d106e2018-10-18 09:53:19 +02001594 switch (format) {
1595 case LYS_IN_YIN:
aPiecekc3e26142021-06-22 14:25:49 +02001596 ret = yin_parse_module(&yinctx, in, mod);
Michal Vaskob36053d2020-03-26 15:49:30 +01001597 pctx = (struct lys_parser_ctx *)yinctx;
Radek Krejci86d106e2018-10-18 09:53:19 +02001598 break;
1599 case LYS_IN_YANG:
aPiecekc3e26142021-06-22 14:25:49 +02001600 ret = yang_parse_module(&yangctx, in, mod);
Michal Vaskob36053d2020-03-26 15:49:30 +01001601 pctx = (struct lys_parser_ctx *)yangctx;
Radek Krejci86d106e2018-10-18 09:53:19 +02001602 break;
1603 default:
1604 LOGERR(ctx, LY_EINVAL, "Invalid schema input format.");
Michal Vasko3a41dff2020-07-15 14:30:28 +02001605 ret = LY_EINVAL;
Radek Krejci86d106e2018-10-18 09:53:19 +02001606 break;
1607 }
Radek Krejcic64661b2020-08-15 15:42:26 +02001608 LY_CHECK_GOTO(ret, cleanup);
Radek Krejci9f5e6fb2018-10-25 09:26:12 +02001609
1610 /* make sure that the newest revision is at position 0 */
1611 lysp_sort_revisions(mod->parsed->revs);
Radek Krejci0af46292019-01-11 16:02:31 +01001612 if (mod->parsed->revs) {
Radek Krejcic64661b2020-08-15 15:42:26 +02001613 LY_CHECK_GOTO(ret = lydict_insert(ctx, mod->parsed->revs[0].date, 0, &mod->revision), cleanup);
Radek Krejci0af46292019-01-11 16:02:31 +01001614 }
Radek Krejci86d106e2018-10-18 09:53:19 +02001615
Radek Krejcib3289d62019-09-18 12:21:39 +02001616 /* decide the latest revision */
Michal Vaskoa51ef072021-07-02 10:40:30 +02001617 latest = ly_ctx_get_module_latest(ctx, mod->name);
Radek Krejcib3289d62019-09-18 12:21:39 +02001618 if (latest) {
1619 if (mod->revision) {
1620 if (!latest->revision) {
1621 /* latest has no revision, so mod is anyway newer */
aPiecek8ca21bd2021-07-26 14:31:01 +02001622 mod->latest_revision = latest->latest_revision & (LYS_MOD_LATEST_REV | LYS_MOD_LATEST_SEARCHDIRS);
Radek Krejcib3289d62019-09-18 12:21:39 +02001623 /* the latest is zeroed later when the new module is being inserted into the context */
1624 } else if (strcmp(mod->revision, latest->revision) > 0) {
aPiecek8ca21bd2021-07-26 14:31:01 +02001625 mod->latest_revision = latest->latest_revision & (LYS_MOD_LATEST_REV | LYS_MOD_LATEST_SEARCHDIRS);
Radek Krejcib3289d62019-09-18 12:21:39 +02001626 /* the latest is zeroed later when the new module is being inserted into the context */
1627 } else {
1628 latest = NULL;
1629 }
1630 } else {
1631 latest = NULL;
1632 }
1633 } else {
aPiecek8ca21bd2021-07-26 14:31:01 +02001634 mod->latest_revision = LYS_MOD_LATEST_REV;
Radek Krejcib3289d62019-09-18 12:21:39 +02001635 }
1636
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001637 if (custom_check) {
Radek Krejcic64661b2020-08-15 15:42:26 +02001638 LY_CHECK_GOTO(ret = custom_check(ctx, mod->parsed, NULL, check_data), cleanup);
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001639 }
1640
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001641 /* check whether it is not already in the context in the same revision */
Michal Vaskoa51ef072021-07-02 10:40:30 +02001642 mod_dup = ly_ctx_get_module(ctx, mod->name, mod->revision);
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001643 if (mod_dup) {
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001644 /* nothing to do */
1645 LOGVRB("Module \"%s@%s\" is already present in the context.", mod_dup->name,
1646 mod_dup->revision ? mod_dup->revision : "<none>");
Radek Krejcic64661b2020-08-15 15:42:26 +02001647 goto cleanup;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001648 }
Radek Krejci86d106e2018-10-18 09:53:19 +02001649
Michal Vaskob24145d2022-07-13 18:34:39 +02001650 /* check whether there is not a namespace collision */
1651 mod_dup = ly_ctx_get_module_latest_ns(ctx, mod->ns);
1652 if (mod_dup && (mod_dup->revision == mod->revision)) {
1653 LOGERR(ctx, LY_EINVAL, "Two different modules (\"%s\" and \"%s\") have the same namespace \"%s\".",
1654 mod_dup->name, mod->name, mod->ns);
1655 ret = LY_EINVAL;
1656 goto cleanup;
1657 }
1658
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001659 switch (in->type) {
1660 case LY_IN_FILEPATH:
1661 /* check that name and revision match filename */
1662 filename = strrchr(in->method.fpath.filepath, '/');
1663 if (!filename) {
1664 filename = in->method.fpath.filepath;
1665 } else {
1666 filename++;
1667 }
1668 rev = strchr(filename, '@');
1669 dot = strrchr(filename, '.');
1670
1671 /* name */
1672 len = strlen(mod->name);
1673 if (strncmp(filename, mod->name, len) ||
Michal Vasko69730152020-10-09 16:30:07 +02001674 ((rev && (rev != &filename[len])) || (!rev && (dot != &filename[len])))) {
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001675 LOGWRN(ctx, "File name \"%s\" does not match module name \"%s\".", filename, mod->name);
1676 }
1677 if (rev) {
1678 len = dot - ++rev;
Radek Krejcif13b87b2020-12-01 22:02:17 +01001679 if (!mod->parsed->revs || (len != LY_REV_SIZE - 1) || strncmp(mod->parsed->revs[0].date, rev, len)) {
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001680 LOGWRN(ctx, "File name \"%s\" does not match module revision \"%s\".", filename,
Michal Vasko69730152020-10-09 16:30:07 +02001681 mod->parsed->revs ? mod->parsed->revs[0].date : "none");
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001682 }
1683 }
1684
1685 break;
1686 case LY_IN_FD:
1687 case LY_IN_FILE:
1688 case LY_IN_MEMORY:
1689 /* nothing special to do */
1690 break;
Michal Vasko7a0b0762020-09-02 16:37:01 +02001691 case LY_IN_ERROR:
1692 LOGINT(ctx);
1693 ret = LY_EINT;
Radek Krejcic64661b2020-08-15 15:42:26 +02001694 goto cleanup;
Radek Krejci096235c2019-01-11 11:12:19 +01001695 }
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001696 lys_parser_fill_filepath(ctx, in, &mod->filepath);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001697
Michal Vasko7a0b0762020-09-02 16:37:01 +02001698 if (latest) {
aPiecek8ca21bd2021-07-26 14:31:01 +02001699 latest->latest_revision &= ~(LYS_MOD_LATEST_REV | LYS_MOD_LATEST_SEARCHDIRS);
Michal Vasko7a0b0762020-09-02 16:37:01 +02001700 }
1701
Michal Vasko45b521c2020-11-04 17:14:39 +01001702 /* add internal data in case specific modules were parsed */
1703 if (!strcmp(mod->name, "ietf-netconf")) {
Radek Krejcic64661b2020-08-15 15:42:26 +02001704 LY_CHECK_GOTO(ret = lys_parsed_add_internal_ietf_netconf(mod->parsed), cleanup);
Michal Vasko45b521c2020-11-04 17:14:39 +01001705 } else if (!strcmp(mod->name, "ietf-netconf-with-defaults")) {
Radek Krejcic64661b2020-08-15 15:42:26 +02001706 LY_CHECK_GOTO(ret = lys_parsed_add_internal_ietf_netconf_with_defaults(mod->parsed), cleanup);
Michal Vasko45b521c2020-11-04 17:14:39 +01001707 }
1708
Michal Vasko405cc9e2020-12-01 12:01:27 +01001709 /* add the module into newly created module set, will also be freed from there on any error */
Radek Krejcic64661b2020-08-15 15:42:26 +02001710 LY_CHECK_GOTO(ret = ly_set_add(new_mods, mod, 1, NULL), cleanup);
1711 module_created = 1;
Michal Vasko405cc9e2020-12-01 12:01:27 +01001712
Michal Vasko7a0b0762020-09-02 16:37:01 +02001713 /* add into context */
Radek Krejci3d92e442020-10-12 12:48:13 +02001714 ret = ly_set_add(&ctx->list, mod, 1, NULL);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001715 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko794ab4b2021-03-31 09:42:19 +02001716 ctx->change_count++;
Michal Vasko7a0b0762020-09-02 16:37:01 +02001717
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001718 /* resolve includes and all imports */
aPiecekc3e26142021-06-22 14:25:49 +02001719 LY_CHECK_GOTO(ret = lys_resolve_import_include(pctx, mod->parsed, new_mods), cleanup);
Michal Vasko7a0b0762020-09-02 16:37:01 +02001720
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001721 /* check name collisions */
Michal Vasko405cc9e2020-12-01 12:01:27 +01001722 LY_CHECK_GOTO(ret = lysp_check_dup_typedefs(pctx, mod->parsed), cleanup);
aPiecek63e080d2021-06-29 13:53:28 +02001723 LY_CHECK_GOTO(ret = lysp_check_dup_groupings(pctx, mod->parsed), cleanup);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001724 LY_CHECK_GOTO(ret = lysp_check_dup_features(pctx, mod->parsed), cleanup);
1725 LY_CHECK_GOTO(ret = lysp_check_dup_identities(pctx, mod->parsed), cleanup);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001726
1727 /* compile features */
Michal Vasko405cc9e2020-12-01 12:01:27 +01001728 LY_CHECK_GOTO(ret = lys_compile_feature_iffeatures(mod->parsed), cleanup);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001729
aPiecek6b3d5422021-07-30 15:55:43 +02001730 /* compile identities */
1731 LY_CHECK_GOTO(ret = lys_compile_identities(mod), cleanup);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001732
Michal Vasko405cc9e2020-12-01 12:01:27 +01001733 /* success */
Michal Vasko7a0b0762020-09-02 16:37:01 +02001734
Radek Krejcic64661b2020-08-15 15:42:26 +02001735cleanup:
Michal Vaskobe04af42021-07-16 10:48:43 +02001736 if (ret && (ret != LY_EEXIST)) {
Radek Krejcic64661b2020-08-15 15:42:26 +02001737 if (mod && mod->name) {
1738 /* there are cases when path is not available for parsing error, so this additional
1739 * message tries to add information about the module where the error occurred */
1740 struct ly_err_item *e = ly_err_last(ctx);
Michal Vasko26bbb272022-08-02 14:54:33 +02001741
Radek Krejcic64661b2020-08-15 15:42:26 +02001742 if (e && (!e->path || !strncmp(e->path, "Line ", ly_strlen_const("Line ")))) {
1743 LOGERR(ctx, ret, "Parsing module \"%s\" failed.", mod->name);
1744 }
1745 }
1746 }
1747 if (!module_created) {
Michal Vasko4f9da5e2022-03-14 13:11:26 +01001748 lys_module_free(mod, 0);
Michal Vasko0e02e8e2021-02-26 15:01:55 +01001749 mod = mod_dup;
1750 }
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001751
Michal Vasko7a0b0762020-09-02 16:37:01 +02001752 if (format == LYS_IN_YANG) {
1753 yang_parser_ctx_free(yangctx);
1754 } else {
1755 yin_parser_ctx_free(yinctx);
1756 }
1757
Michal Vasko405cc9e2020-12-01 12:01:27 +01001758 if (!ret && module) {
1759 *module = mod;
1760 }
Michal Vasko7a0b0762020-09-02 16:37:01 +02001761 return ret;
1762}
1763
Radek Krejci545b4872020-11-15 10:15:12 +01001764static LYS_INFORMAT
1765lys_parse_get_format(const struct ly_in *in, LYS_INFORMAT format)
1766{
1767 if (!format && (in->type == LY_IN_FILEPATH)) {
1768 /* unknown format - try to detect it from filename's suffix */
1769 const char *path = in->method.fpath.filepath;
1770 size_t len = strlen(path);
1771
1772 /* ignore trailing whitespaces */
1773 for ( ; len > 0 && isspace(path[len - 1]); len--) {}
1774
Radek Krejcif13b87b2020-12-01 22:02:17 +01001775 if ((len >= LY_YANG_SUFFIX_LEN + 1) &&
1776 !strncmp(&path[len - LY_YANG_SUFFIX_LEN], LY_YANG_SUFFIX, LY_YANG_SUFFIX_LEN)) {
Radek Krejci545b4872020-11-15 10:15:12 +01001777 format = LYS_IN_YANG;
Radek Krejcif13b87b2020-12-01 22:02:17 +01001778 } else if ((len >= LY_YIN_SUFFIX_LEN + 1) &&
1779 !strncmp(&path[len - LY_YIN_SUFFIX_LEN], LY_YIN_SUFFIX, LY_YIN_SUFFIX_LEN)) {
Radek Krejci545b4872020-11-15 10:15:12 +01001780 format = LYS_IN_YIN;
1781 } /* else still unknown */
1782 }
1783
1784 return format;
1785}
1786
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001787LIBYANG_API_DEF LY_ERR
Michal Vasko4de7d072021-07-09 09:13:18 +02001788lys_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 +02001789{
Michal Vasko65333882021-06-10 14:12:16 +02001790 LY_ERR ret = LY_SUCCESS;
Michal Vasko4e205e82021-06-08 14:01:47 +02001791 struct lys_module *mod;
Michal Vasko405cc9e2020-12-01 12:01:27 +01001792
Michal Vasko7a0b0762020-09-02 16:37:01 +02001793 if (module) {
1794 *module = NULL;
1795 }
Radek Krejci545b4872020-11-15 10:15:12 +01001796 LY_CHECK_ARG_RET(NULL, ctx, in, LY_EINVAL);
1797
1798 format = lys_parse_get_format(in, format);
1799 LY_CHECK_ARG_RET(ctx, format, LY_EINVAL);
Michal Vasko7a0b0762020-09-02 16:37:01 +02001800
1801 /* remember input position */
1802 in->func_start = in->current;
1803
Michal Vasko4e205e82021-06-08 14:01:47 +02001804 /* parse */
Michal Vasko22b26222021-07-30 11:16:47 +02001805 ret = lys_parse_in(ctx, in, format, NULL, NULL, &ctx->unres.creating, &mod);
Michal Vasko4e205e82021-06-08 14:01:47 +02001806 LY_CHECK_GOTO(ret, cleanup);
1807
1808 /* implement */
Michal Vasko22b26222021-07-30 11:16:47 +02001809 ret = _lys_set_implemented(mod, features, &ctx->unres);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001810 LY_CHECK_GOTO(ret, cleanup);
1811
Michal Vaskof4258e12021-06-15 12:11:42 +02001812 if (!(ctx->flags & LY_CTX_EXPLICIT_COMPILE)) {
1813 /* create dep set for the module and mark all the modules that will be (re)compiled */
Michal Vasko22b26222021-07-30 11:16:47 +02001814 LY_CHECK_GOTO(ret = lys_unres_dep_sets_create(ctx, &ctx->unres.dep_sets, mod), cleanup);
Michal Vaskof4258e12021-06-15 12:11:42 +02001815
Michal Vasko709f9a52021-07-21 10:51:59 +02001816 /* (re)compile the whole dep set (other dep sets will have no modules marked for compilation) */
Michal Vasko22b26222021-07-30 11:16:47 +02001817 LY_CHECK_GOTO(ret = lys_compile_depset_all(ctx, &ctx->unres), cleanup);
1818
1819 /* unres resolved */
1820 lys_unres_glob_erase(&ctx->unres);
Michal Vaskof4258e12021-06-15 12:11:42 +02001821 }
1822
Michal Vasko405cc9e2020-12-01 12:01:27 +01001823cleanup:
1824 if (ret) {
Michal Vasko22b26222021-07-30 11:16:47 +02001825 lys_unres_glob_revert(ctx, &ctx->unres);
1826 lys_unres_glob_erase(&ctx->unres);
Michal Vasko87f1cf02021-06-08 14:02:47 +02001827 } else if (module) {
1828 *module = mod;
Michal Vasko405cc9e2020-12-01 12:01:27 +01001829 }
Michal Vasko405cc9e2020-12-01 12:01:27 +01001830 return ret;
Radek Krejci86d106e2018-10-18 09:53:19 +02001831}
1832
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001833LIBYANG_API_DEF LY_ERR
Michal Vasko4de7d072021-07-09 09:13:18 +02001834lys_parse_mem(struct ly_ctx *ctx, const char *data, LYS_INFORMAT format, struct lys_module **module)
Radek Krejci86d106e2018-10-18 09:53:19 +02001835{
Radek Krejci0f969882020-08-21 16:56:47 +02001836 LY_ERR ret;
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001837 struct ly_in *in = NULL;
Radek Krejci86d106e2018-10-18 09:53:19 +02001838
Michal Vasko3a41dff2020-07-15 14:30:28 +02001839 LY_CHECK_ARG_RET(ctx, data, format != LYS_IN_UNKNOWN, LY_EINVAL);
Radek Krejci65639b92018-11-27 10:51:37 +01001840
Michal Vasko3a41dff2020-07-15 14:30:28 +02001841 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 +02001842
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001843 ret = lys_parse(ctx, in, format, NULL, module);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001844 ly_in_free(in, 0);
Radek Krejci86d106e2018-10-18 09:53:19 +02001845
Michal Vasko3a41dff2020-07-15 14:30:28 +02001846 return ret;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001847}
1848
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001849LIBYANG_API_DEF LY_ERR
Michal Vasko4de7d072021-07-09 09:13:18 +02001850lys_parse_fd(struct ly_ctx *ctx, int fd, LYS_INFORMAT format, struct lys_module **module)
Radek Krejci86d106e2018-10-18 09:53:19 +02001851{
Radek Krejci0f969882020-08-21 16:56:47 +02001852 LY_ERR ret;
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001853 struct ly_in *in = NULL;
Radek Krejci86d106e2018-10-18 09:53:19 +02001854
Michal Vasko3a41dff2020-07-15 14:30:28 +02001855 LY_CHECK_ARG_RET(ctx, fd > -1, format != LYS_IN_UNKNOWN, LY_EINVAL);
Radek Krejci86d106e2018-10-18 09:53:19 +02001856
Michal Vasko3a41dff2020-07-15 14:30:28 +02001857 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 +02001858
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001859 ret = lys_parse(ctx, in, format, NULL, module);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001860 ly_in_free(in, 0);
Radek Krejci86d106e2018-10-18 09:53:19 +02001861
Michal Vasko3a41dff2020-07-15 14:30:28 +02001862 return ret;
Radek Krejci86d106e2018-10-18 09:53:19 +02001863}
1864
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001865LIBYANG_API_DEF LY_ERR
Michal Vasko4de7d072021-07-09 09:13:18 +02001866lys_parse_path(struct ly_ctx *ctx, const char *path, LYS_INFORMAT format, struct lys_module **module)
Radek Krejcid33273d2018-10-25 14:55:52 +02001867{
Radek Krejci0f969882020-08-21 16:56:47 +02001868 LY_ERR ret;
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001869 struct ly_in *in = NULL;
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001870
Michal Vasko3a41dff2020-07-15 14:30:28 +02001871 LY_CHECK_ARG_RET(ctx, path, format != LYS_IN_UNKNOWN, LY_EINVAL);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001872
Michal Vasko3a41dff2020-07-15 14:30:28 +02001873 LY_CHECK_ERR_RET(ret = ly_in_new_filepath(path, 0, &in),
Michal Vasko69730152020-10-09 16:30:07 +02001874 LOGERR(ctx, ret, "Unable to create input handler for filepath %s.", path), ret);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001875
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001876 ret = lys_parse(ctx, in, format, NULL, module);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001877 ly_in_free(in, 0);
1878
Michal Vasko3a41dff2020-07-15 14:30:28 +02001879 return ret;
Radek Krejcid33273d2018-10-25 14:55:52 +02001880}
1881
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001882LIBYANG_API_DEF LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02001883lys_search_localfile(const char * const *searchpaths, ly_bool cwd, const char *name, const char *revision,
Radek Krejci0f969882020-08-21 16:56:47 +02001884 char **localfile, LYS_INFORMAT *format)
Radek Krejcid33273d2018-10-25 14:55:52 +02001885{
Radek Krejci1deb5be2020-08-26 16:43:36 +02001886 LY_ERR ret = LY_EMEM;
Radek Krejcid33273d2018-10-25 14:55:52 +02001887 size_t len, flen, match_len = 0, dir_len;
Radek Krejci857189e2020-09-01 13:26:36 +02001888 ly_bool implicit_cwd = 0;
Radek Krejcid33273d2018-10-25 14:55:52 +02001889 char *wd, *wn = NULL;
1890 DIR *dir = NULL;
1891 struct dirent *file;
1892 char *match_name = NULL;
1893 LYS_INFORMAT format_aux, match_format = 0;
1894 struct ly_set *dirs;
1895 struct stat st;
1896
1897 LY_CHECK_ARG_RET(NULL, localfile, LY_EINVAL);
1898
1899 /* start to fill the dir fifo with the context's search path (if set)
1900 * and the current working directory */
Radek Krejciba03a5a2020-08-27 14:40:41 +02001901 LY_CHECK_RET(ly_set_new(&dirs));
Radek Krejcid33273d2018-10-25 14:55:52 +02001902
1903 len = strlen(name);
1904 if (cwd) {
1905 wd = get_current_dir_name();
1906 if (!wd) {
1907 LOGMEM(NULL);
1908 goto cleanup;
1909 } else {
1910 /* add implicit current working directory (./) to be searched,
1911 * this directory is not searched recursively */
Radek Krejciba03a5a2020-08-27 14:40:41 +02001912 ret = ly_set_add(dirs, wd, 0, NULL);
1913 LY_CHECK_GOTO(ret, cleanup);
Radek Krejcid33273d2018-10-25 14:55:52 +02001914 implicit_cwd = 1;
1915 }
1916 }
1917 if (searchpaths) {
Radek Krejci1deb5be2020-08-26 16:43:36 +02001918 for (uint64_t i = 0; searchpaths[i]; i++) {
Radek Krejcid33273d2018-10-25 14:55:52 +02001919 /* check for duplicities with the implicit current working directory */
1920 if (implicit_cwd && !strcmp(dirs->objs[0], searchpaths[i])) {
1921 implicit_cwd = 0;
1922 continue;
1923 }
1924 wd = strdup(searchpaths[i]);
1925 if (!wd) {
1926 LOGMEM(NULL);
1927 goto cleanup;
Radek Krejciba03a5a2020-08-27 14:40:41 +02001928 } else {
1929 ret = ly_set_add(dirs, wd, 0, NULL);
1930 LY_CHECK_GOTO(ret, cleanup);
Radek Krejcid33273d2018-10-25 14:55:52 +02001931 }
1932 }
1933 }
1934 wd = NULL;
1935
1936 /* start searching */
1937 while (dirs->count) {
1938 free(wd);
1939 free(wn); wn = NULL;
1940
1941 dirs->count--;
1942 wd = (char *)dirs->objs[dirs->count];
1943 dirs->objs[dirs->count] = NULL;
Radek Krejcieeee95c2021-01-19 10:57:22 +01001944 LOGVRB("Searching for \"%s\" in \"%s\".", name, wd);
Radek Krejcid33273d2018-10-25 14:55:52 +02001945
1946 if (dir) {
1947 closedir(dir);
1948 }
1949 dir = opendir(wd);
1950 dir_len = strlen(wd);
1951 if (!dir) {
1952 LOGWRN(NULL, "Unable to open directory \"%s\" for searching (sub)modules (%s).", wd, strerror(errno));
1953 } else {
1954 while ((file = readdir(dir))) {
1955 if (!strcmp(".", file->d_name) || !strcmp("..", file->d_name)) {
1956 /* skip . and .. */
1957 continue;
1958 }
1959 free(wn);
1960 if (asprintf(&wn, "%s/%s", wd, file->d_name) == -1) {
1961 LOGMEM(NULL);
1962 goto cleanup;
1963 }
1964 if (stat(wn, &st) == -1) {
1965 LOGWRN(NULL, "Unable to get information about \"%s\" file in \"%s\" when searching for (sub)modules (%s)",
Michal Vasko69730152020-10-09 16:30:07 +02001966 file->d_name, wd, strerror(errno));
Radek Krejcid33273d2018-10-25 14:55:52 +02001967 continue;
1968 }
1969 if (S_ISDIR(st.st_mode) && (dirs->count || !implicit_cwd)) {
1970 /* we have another subdirectory in searchpath to explore,
1971 * subdirectories are not taken into account in current working dir (dirs->set.g[0]) */
Radek Krejciba03a5a2020-08-27 14:40:41 +02001972 ret = ly_set_add(dirs, wn, 0, NULL);
1973 LY_CHECK_GOTO(ret, cleanup);
1974
Radek Krejcid33273d2018-10-25 14:55:52 +02001975 /* continue with the next item in current directory */
1976 wn = NULL;
1977 continue;
1978 } else if (!S_ISREG(st.st_mode)) {
1979 /* not a regular file (note that we see the target of symlinks instead of symlinks */
1980 continue;
1981 }
1982
1983 /* here we know that the item is a file which can contain a module */
1984 if (strncmp(name, file->d_name, len) ||
Michal Vasko69730152020-10-09 16:30:07 +02001985 ((file->d_name[len] != '.') && (file->d_name[len] != '@'))) {
Radek Krejcid33273d2018-10-25 14:55:52 +02001986 /* different filename than the module we search for */
1987 continue;
1988 }
1989
1990 /* get type according to filename suffix */
1991 flen = strlen(file->d_name);
Radek Krejcif13b87b2020-12-01 22:02:17 +01001992 if ((flen >= LY_YANG_SUFFIX_LEN + 1) &&
1993 !strcmp(&file->d_name[flen - LY_YANG_SUFFIX_LEN], LY_YANG_SUFFIX)) {
Radek Krejcid33273d2018-10-25 14:55:52 +02001994 format_aux = LYS_IN_YANG;
Radek Krejcif13b87b2020-12-01 22:02:17 +01001995 } else if ((flen >= LY_YIN_SUFFIX_LEN + 1) &&
1996 !strcmp(&file->d_name[flen - LY_YIN_SUFFIX_LEN], LY_YIN_SUFFIX)) {
Radek Krejci01a937f2020-11-15 10:14:12 +01001997 format_aux = LYS_IN_YIN;
Radek Krejcid33273d2018-10-25 14:55:52 +02001998 } else {
1999 /* not supportde suffix/file format */
2000 continue;
2001 }
2002
2003 if (revision) {
2004 /* we look for the specific revision, try to get it from the filename */
2005 if (file->d_name[len] == '@') {
2006 /* check revision from the filename */
2007 if (strncmp(revision, &file->d_name[len + 1], strlen(revision))) {
2008 /* another revision */
2009 continue;
2010 } else {
2011 /* exact revision */
2012 free(match_name);
2013 match_name = wn;
2014 wn = NULL;
2015 match_len = dir_len + 1 + len;
2016 match_format = format_aux;
2017 goto success;
2018 }
2019 } else {
2020 /* continue trying to find exact revision match, use this only if not found */
2021 free(match_name);
2022 match_name = wn;
2023 wn = NULL;
Michal Vasko44f3d2c2020-08-24 09:49:38 +02002024 match_len = dir_len + 1 + len;
Radek Krejcid33273d2018-10-25 14:55:52 +02002025 match_format = format_aux;
2026 continue;
2027 }
2028 } else {
2029 /* remember the revision and try to find the newest one */
2030 if (match_name) {
Michal Vasko69730152020-10-09 16:30:07 +02002031 if ((file->d_name[len] != '@') ||
Radek Krejcif13b87b2020-12-01 22:02:17 +01002032 lysp_check_date(NULL, &file->d_name[len + 1],
2033 flen - ((format_aux == LYS_IN_YANG) ? LY_YANG_SUFFIX_LEN : LY_YIN_SUFFIX_LEN) - len - 1, NULL)) {
Radek Krejcid33273d2018-10-25 14:55:52 +02002034 continue;
Michal Vasko69730152020-10-09 16:30:07 +02002035 } else if ((match_name[match_len] == '@') &&
Radek Krejcid33273d2018-10-25 14:55:52 +02002036 (strncmp(&match_name[match_len + 1], &file->d_name[len + 1], LY_REV_SIZE - 1) >= 0)) {
2037 continue;
2038 }
2039 free(match_name);
2040 }
2041
2042 match_name = wn;
2043 wn = NULL;
2044 match_len = dir_len + 1 + len;
2045 match_format = format_aux;
2046 continue;
2047 }
2048 }
2049 }
2050 }
2051
2052success:
2053 (*localfile) = match_name;
2054 match_name = NULL;
2055 if (format) {
2056 (*format) = match_format;
2057 }
Radek Krejci1deb5be2020-08-26 16:43:36 +02002058 ret = LY_SUCCESS;
Radek Krejcid33273d2018-10-25 14:55:52 +02002059
2060cleanup:
2061 free(wn);
2062 free(wd);
2063 if (dir) {
2064 closedir(dir);
2065 }
2066 free(match_name);
2067 ly_set_free(dirs, free);
2068
2069 return ret;
2070}