blob: 000c115d9dcc027410e1e41121e1df64ff0408df [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"
Michal Vaskoc636ea42022-09-16 10:20:31 +020046#include "tree_schema_free.h"
Radek Krejcica376bd2020-06-11 16:04:06 +020047#include "tree_schema_internal.h"
48#include "xpath.h"
Radek Krejci3f5e3db2018-10-11 15:57:47 +020049
Radek Krejcieccf6602021-02-05 19:42:54 +010050/**
51 * @brief information about YANG statements
52 */
53struct stmt_info_s stmt_attr_info[] = {
Radek Krejci6b88a462021-02-17 12:39:34 +010054 [LY_STMT_NONE] = {NULL, NULL, 0},
55 [LY_STMT_ACTION] = {"action", "name", STMT_FLAG_ID},
56 [LY_STMT_ANYDATA] = {"anydata", "name", STMT_FLAG_ID},
57 [LY_STMT_ANYXML] = {"anyxml", "name", STMT_FLAG_ID},
58 [LY_STMT_ARGUMENT] = {"argument", "name", STMT_FLAG_ID},
59 [LY_STMT_ARG_TEXT] = {"text", NULL, 0},
60 [LY_STMT_ARG_VALUE] = {"value", NULL, 0},
61 [LY_STMT_AUGMENT] = {"augment", "target-node", STMT_FLAG_ID},
62 [LY_STMT_BASE] = {"base", "name", STMT_FLAG_ID},
63 [LY_STMT_BELONGS_TO] = {"belongs-to", "module", STMT_FLAG_ID},
64 [LY_STMT_BIT] = {"bit", "name", STMT_FLAG_ID},
65 [LY_STMT_CASE] = {"case", "name", STMT_FLAG_ID},
66 [LY_STMT_CHOICE] = {"choice", "name", STMT_FLAG_ID},
67 [LY_STMT_CONFIG] = {"config", "value", STMT_FLAG_ID},
68 [LY_STMT_CONTACT] = {"contact", "text", STMT_FLAG_YIN},
69 [LY_STMT_CONTAINER] = {"container", "name", STMT_FLAG_ID},
70 [LY_STMT_DEFAULT] = {"default", "value", 0},
71 [LY_STMT_DESCRIPTION] = {"description", "text", STMT_FLAG_YIN},
72 [LY_STMT_DEVIATE] = {"deviate", "value", STMT_FLAG_ID},
73 [LY_STMT_DEVIATION] = {"deviation", "target-node", STMT_FLAG_ID},
74 [LY_STMT_ENUM] = {"enum", "name", STMT_FLAG_ID},
75 [LY_STMT_ERROR_APP_TAG] = {"error-app-tag", "value", 0},
76 [LY_STMT_ERROR_MESSAGE] = {"error-message", "value", STMT_FLAG_YIN},
77 [LY_STMT_EXTENSION] = {"extension", "name", STMT_FLAG_ID},
78 [LY_STMT_EXTENSION_INSTANCE] = {NULL, NULL, 0},
79 [LY_STMT_FEATURE] = {"feature", "name", STMT_FLAG_ID},
80 [LY_STMT_FRACTION_DIGITS] = {"fraction-digits", "value", STMT_FLAG_ID},
81 [LY_STMT_GROUPING] = {"grouping", "name", STMT_FLAG_ID},
82 [LY_STMT_IDENTITY] = {"identity", "name", STMT_FLAG_ID},
83 [LY_STMT_IF_FEATURE] = {"if-feature", "name", 0},
84 [LY_STMT_IMPORT] = {"import", "module", STMT_FLAG_ID},
85 [LY_STMT_INCLUDE] = {"include", "module", STMT_FLAG_ID},
86 [LY_STMT_INPUT] = {"input", NULL, 0},
87 [LY_STMT_KEY] = {"key", "value", 0},
88 [LY_STMT_LEAF] = {"leaf", "name", STMT_FLAG_ID},
89 [LY_STMT_LEAF_LIST] = {"leaf-list", "name", STMT_FLAG_ID},
90 [LY_STMT_LENGTH] = {"length", "value", 0},
91 [LY_STMT_LIST] = {"list", "name", STMT_FLAG_ID},
92 [LY_STMT_MANDATORY] = {"mandatory", "value", STMT_FLAG_ID},
93 [LY_STMT_MAX_ELEMENTS] = {"max-elements", "value", STMT_FLAG_ID},
94 [LY_STMT_MIN_ELEMENTS] = {"min-elements", "value", STMT_FLAG_ID},
95 [LY_STMT_MODIFIER] = {"modifier", "value", STMT_FLAG_ID},
96 [LY_STMT_MODULE] = {"module", "name", STMT_FLAG_ID},
97 [LY_STMT_MUST] = {"must", "condition", 0},
98 [LY_STMT_NAMESPACE] = {"namespace", "uri", 0},
99 [LY_STMT_NOTIFICATION] = {"notification", "name", STMT_FLAG_ID},
100 [LY_STMT_ORDERED_BY] = {"ordered-by", "value", STMT_FLAG_ID},
101 [LY_STMT_ORGANIZATION] = {"organization", "text", STMT_FLAG_YIN},
102 [LY_STMT_OUTPUT] = {"output", NULL, 0},
103 [LY_STMT_PATH] = {"path", "value", 0},
104 [LY_STMT_PATTERN] = {"pattern", "value", 0},
105 [LY_STMT_POSITION] = {"position", "value", STMT_FLAG_ID},
106 [LY_STMT_PREFIX] = {"prefix", "value", STMT_FLAG_ID},
107 [LY_STMT_PRESENCE] = {"presence", "value", 0},
108 [LY_STMT_RANGE] = {"range", "value", 0},
109 [LY_STMT_REFERENCE] = {"reference", "text", STMT_FLAG_YIN},
110 [LY_STMT_REFINE] = {"refine", "target-node", STMT_FLAG_ID},
111 [LY_STMT_REQUIRE_INSTANCE] = {"require-instance", "value", STMT_FLAG_ID},
112 [LY_STMT_REVISION] = {"revision", "date", STMT_FLAG_ID},
113 [LY_STMT_REVISION_DATE] = {"revision-date", "date", STMT_FLAG_ID},
114 [LY_STMT_RPC] = {"rpc", "name", STMT_FLAG_ID},
115 [LY_STMT_STATUS] = {"status", "value", STMT_FLAG_ID},
116 [LY_STMT_SUBMODULE] = {"submodule", "name", STMT_FLAG_ID},
117 [LY_STMT_SYNTAX_LEFT_BRACE] = {"{", NULL, 0},
118 [LY_STMT_SYNTAX_RIGHT_BRACE] = {"}", NULL, 0},
119 [LY_STMT_SYNTAX_SEMICOLON] = {";", NULL, 0},
120 [LY_STMT_TYPE] = {"type", "name", STMT_FLAG_ID},
121 [LY_STMT_TYPEDEF] = {"typedef", "name", STMT_FLAG_ID},
122 [LY_STMT_UNIQUE] = {"unique", "tag", 0},
123 [LY_STMT_UNITS] = {"units", "name", 0},
124 [LY_STMT_USES] = {"uses", "name", STMT_FLAG_ID},
125 [LY_STMT_VALUE] = {"value", "value", STMT_FLAG_ID},
126 [LY_STMT_WHEN] = {"when", "condition", 0},
127 [LY_STMT_YANG_VERSION] = {"yang-version", "value", STMT_FLAG_ID},
128 [LY_STMT_YIN_ELEMENT] = {"yin-element", "value", STMT_FLAG_ID},
Radek Krejcieccf6602021-02-05 19:42:54 +0100129};
130
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100131LIBYANG_API_DEF const char *
Radek Krejcif8ca8192021-03-02 16:50:06 +0100132ly_stmt2str(enum ly_stmt stmt)
133{
Michal Vaskocc64aec2021-05-18 17:33:11 +0200134 if (stmt == LY_STMT_EXTENSION_INSTANCE) {
135 return "extension instance";
136 } else {
137 return stmt_attr_info[stmt].name;
138 }
Radek Krejcif8ca8192021-03-02 16:50:06 +0100139}
140
Michal Vasko633ae8a2022-08-25 09:52:02 +0200141LIBYANG_API_DEF const char *
142ly_cardinality2str(enum ly_stmt_cardinality card)
143{
144 switch (card) {
145 case LY_STMT_CARD_OPT:
146 return "0..1";
147 case LY_STMT_CARD_MAND:
148 return "1";
149 case LY_STMT_CARD_SOME:
150 return "1..n";
151 case LY_STMT_CARD_ANY:
152 return "0..n";
153 }
154
155 return NULL;
156}
157
Radek Krejcieccf6602021-02-05 19:42:54 +0100158const char * const ly_devmod_list[] = {
159 [LYS_DEV_NOT_SUPPORTED] = "not-supported",
160 [LYS_DEV_ADD] = "add",
161 [LYS_DEV_DELETE] = "delete",
162 [LYS_DEV_REPLACE] = "replace",
163};
164
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100165LIBYANG_API_DEF LY_ERR
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200166lysc_tree_dfs_full(const struct lysc_node *root, lysc_dfs_clb dfs_clb, void *data)
167{
Michal Vasko1d972ca2020-11-03 17:16:56 +0100168 struct lysc_node *elem, *elem2;
Radek Krejci2a9fc652021-01-22 17:44:34 +0100169 const struct lysc_node_action *action;
170 const struct lysc_node_notif *notif;
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200171
172 LY_CHECK_ARG_RET(NULL, root, dfs_clb, LY_EINVAL);
173
174 LYSC_TREE_DFS_BEGIN(root, elem) {
175 /* schema node */
176 LY_CHECK_RET(dfs_clb(elem, data, &LYSC_TREE_DFS_continue));
177
Radek Krejci2a9fc652021-01-22 17:44:34 +0100178 LY_LIST_FOR(lysc_node_actions(elem), action) {
179 LYSC_TREE_DFS_BEGIN(action, elem2) {
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200180 /* action subtree */
181 LY_CHECK_RET(dfs_clb(elem2, data, &LYSC_TREE_DFS_continue));
182
Radek Krejci2a9fc652021-01-22 17:44:34 +0100183 LYSC_TREE_DFS_END(action, elem2);
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200184 }
185 }
186
Radek Krejci2a9fc652021-01-22 17:44:34 +0100187 LY_LIST_FOR(lysc_node_notifs(elem), notif) {
188 LYSC_TREE_DFS_BEGIN(notif, elem2) {
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200189 /* notification subtree */
190 LY_CHECK_RET(dfs_clb(elem2, data, &LYSC_TREE_DFS_continue));
191
Radek Krejci2a9fc652021-01-22 17:44:34 +0100192 LYSC_TREE_DFS_END(notif, elem2);
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200193 }
194 }
195
196 LYSC_TREE_DFS_END(root, elem);
197 }
198
199 return LY_SUCCESS;
200}
201
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100202LIBYANG_API_DEF LY_ERR
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200203lysc_module_dfs_full(const struct lys_module *mod, lysc_dfs_clb dfs_clb, void *data)
204{
Michal Vasko2336cf52020-11-03 17:18:15 +0100205 const struct lysc_node *root;
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200206
207 LY_CHECK_ARG_RET(NULL, mod, mod->compiled, dfs_clb, LY_EINVAL);
208
209 /* schema nodes */
Michal Vasko2336cf52020-11-03 17:18:15 +0100210 LY_LIST_FOR(mod->compiled->data, root) {
211 LY_CHECK_RET(lysc_tree_dfs_full(root, dfs_clb, data));
212 }
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200213
214 /* RPCs */
Radek Krejci2a9fc652021-01-22 17:44:34 +0100215 LY_LIST_FOR((const struct lysc_node *)mod->compiled->rpcs, root) {
216 LY_CHECK_RET(lysc_tree_dfs_full(root, dfs_clb, data));
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200217 }
218
219 /* notifications */
Radek Krejci2a9fc652021-01-22 17:44:34 +0100220 LY_LIST_FOR((const struct lysc_node *)mod->compiled->notifs, root) {
221 LY_CHECK_RET(lysc_tree_dfs_full(root, dfs_clb, data));
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200222 }
223
224 return LY_SUCCESS;
225}
226
Radek Krejcib93bd412020-11-02 13:23:11 +0100227static void
228lys_getnext_into_case(const struct lysc_node_case *first_case, const struct lysc_node **last, const struct lysc_node **next)
229{
Radek Krejcic5b54a02020-11-05 17:13:18 +0100230 for ( ; first_case; first_case = (const struct lysc_node_case *)first_case->next) {
Radek Krejcib93bd412020-11-02 13:23:11 +0100231 if (first_case->child) {
232 /* there is something to return */
233 (*next) = first_case->child;
234 return;
235 }
236 }
237
238 /* no children in choice's cases, so go to the choice's sibling instead of into it */
239 (*last) = (*next);
240 (*next) = (*next)->next;
241}
242
Radek Krejci035dacf2021-02-12 18:25:53 +0100243/**
244 * @brief Generic getnext function for ::lys_getnext() and ::lys_getnext_ext().
245 *
246 * Gets next schema tree (sibling) node element that can be instantiated in a data tree. Returned node can
247 * be from an augment. If the @p ext is provided, the function is locked inside the schema tree defined in the
248 * extension instance.
249 *
250 * ::lys_getnext_() is supposed to be called sequentially. In the first call, the \p last parameter is usually NULL
251 * and function starts returning i) the first \p parent's child or ii) the first top level element specified in the
252 * given extension (if provided) or iii) the first top level element of the \p module.
253 * Consequent calls suppose to provide the previously returned node as the \p last parameter and still the same
254 * \p parent and \p module parameters.
255 *
256 * Without options, the function is used to traverse only the schema nodes that can be paired with corresponding
257 * data nodes in a data tree. By setting some \p options the behavior can be modified to the extent that
258 * all the schema nodes are iteratively returned.
259 *
260 * @param[in] last Previously returned schema tree node, or NULL in case of the first call.
261 * @param[in] parent Parent of the subtree where the function starts processing.
262 * @param[in] module In case of iterating on top level elements, the \p parent is NULL and
263 * module must be specified.
264 * @param[in] ext The extension instance to provide a separate schema tree. To consider the top level elements in the tree,
265 * the \p parent must be NULL. Anyway, at least one of @p parent, @p module and @p ext parameters must be specified.
266 * @param[in] options [ORed options](@ref sgetnextflags).
267 * @return Next schema tree node that can be instantiated in a data tree, NULL in case there is no such element.
268 */
269static const struct lysc_node *
270lys_getnext_(const struct lysc_node *last, const struct lysc_node *parent, const struct lysc_module *module,
271 const struct lysc_ext_instance *ext, uint32_t options)
Radek Krejcia3045382018-11-22 14:30:31 +0100272{
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100273 const struct lysc_node *next = NULL;
Radek Krejci857189e2020-09-01 13:26:36 +0200274 ly_bool action_flag = 0, notif_flag = 0;
Radek Krejci035dacf2021-02-12 18:25:53 +0100275 struct lysc_node **data_p = NULL;
Radek Krejcia3045382018-11-22 14:30:31 +0100276
Radek Krejci035dacf2021-02-12 18:25:53 +0100277 LY_CHECK_ARG_RET(NULL, parent || module || ext, NULL);
Radek Krejcia3045382018-11-22 14:30:31 +0100278
Radek Krejcid5a2b9d2019-04-12 10:39:30 +0200279next:
Radek Krejcia3045382018-11-22 14:30:31 +0100280 if (!last) {
281 /* first call */
282
283 /* get know where to start */
284 if (parent) {
285 /* schema subtree */
Michal Vasko544e58a2021-01-28 14:33:41 +0100286 next = last = lysc_node_child(parent);
Radek Krejcia3045382018-11-22 14:30:31 +0100287 } else {
288 /* top level data */
Radek Krejci035dacf2021-02-12 18:25:53 +0100289 if (ext) {
290 lysc_ext_substmt(ext, LY_STMT_CONTAINER /* matches all nodes */, (void **)&data_p, NULL);
291 next = last = data_p ? *data_p : NULL;
292 } else {
293 next = last = module->data;
294 }
Radek Krejcia3045382018-11-22 14:30:31 +0100295 }
296 if (!next) {
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100297 /* try to get action or notification */
298 goto repeat;
Radek Krejcia3045382018-11-22 14:30:31 +0100299 }
Radek Krejci05b774b2019-02-25 13:26:18 +0100300 /* test if the next can be returned */
301 goto check;
302
Michal Vasko1bf09392020-03-27 12:38:10 +0100303 } else if (last->nodetype & (LYS_RPC | LYS_ACTION)) {
Radek Krejci05b774b2019-02-25 13:26:18 +0100304 action_flag = 1;
Radek Krejci2a9fc652021-01-22 17:44:34 +0100305 next = last->next;
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100306 } else if (last->nodetype == LYS_NOTIF) {
Radek Krejci05b774b2019-02-25 13:26:18 +0100307 action_flag = notif_flag = 1;
Radek Krejci2a9fc652021-01-22 17:44:34 +0100308 next = last->next;
Michal Vasko20424b42020-08-31 12:29:38 +0200309 } else {
310 next = last->next;
Radek Krejcia3045382018-11-22 14:30:31 +0100311 }
312
Radek Krejcia3045382018-11-22 14:30:31 +0100313repeat:
314 if (!next) {
Radek Krejcia9026eb2018-12-12 16:04:47 +0100315 /* possibly go back to parent */
Radek Krejci035dacf2021-02-12 18:25:53 +0100316 data_p = NULL;
Michal Vasko69730152020-10-09 16:30:07 +0200317 if (last && (last->parent != parent)) {
Radek Krejcia9026eb2018-12-12 16:04:47 +0100318 last = last->parent;
Radek Krejcid5a2b9d2019-04-12 10:39:30 +0200319 goto next;
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100320 } else if (!action_flag) {
321 action_flag = 1;
Radek Krejci035dacf2021-02-12 18:25:53 +0100322 if (ext) {
323 lysc_ext_substmt(ext, LY_STMT_RPC /* matches also actions */, (void **)&data_p, NULL);
324 next = data_p ? *data_p : NULL;
325 } else if (parent) {
326 next = (struct lysc_node *)lysc_node_actions(parent);
327 } else {
328 next = (struct lysc_node *)module->rpcs;
329 }
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100330 } else if (!notif_flag) {
331 notif_flag = 1;
Radek Krejci035dacf2021-02-12 18:25:53 +0100332 if (ext) {
333 lysc_ext_substmt(ext, LY_STMT_NOTIFICATION, (void **)&data_p, NULL);
334 next = data_p ? *data_p : NULL;
335 } else if (parent) {
336 next = (struct lysc_node *)lysc_node_notifs(parent);
337 } else {
338 next = (struct lysc_node *)module->notifs;
339 }
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100340 } else {
341 return NULL;
Radek Krejcia9026eb2018-12-12 16:04:47 +0100342 }
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100343 goto repeat;
Radek Krejcia3045382018-11-22 14:30:31 +0100344 }
Radek Krejci05b774b2019-02-25 13:26:18 +0100345check:
Radek Krejcia3045382018-11-22 14:30:31 +0100346 switch (next->nodetype) {
Michal Vasko1bf09392020-03-27 12:38:10 +0100347 case LYS_RPC:
Radek Krejcia3045382018-11-22 14:30:31 +0100348 case LYS_ACTION:
349 case LYS_NOTIF:
350 case LYS_LEAF:
351 case LYS_ANYXML:
352 case LYS_ANYDATA:
353 case LYS_LIST:
354 case LYS_LEAFLIST:
355 break;
Michal Vasko20424b42020-08-31 12:29:38 +0200356 case LYS_CASE:
357 if (options & LYS_GETNEXT_WITHCASE) {
358 break;
359 } else {
360 /* go into */
Radek Krejcib93bd412020-11-02 13:23:11 +0100361 lys_getnext_into_case((const struct lysc_node_case *)next, &last, &next);
Michal Vasko20424b42020-08-31 12:29:38 +0200362 }
363 goto repeat;
Radek Krejcia3045382018-11-22 14:30:31 +0100364 case LYS_CONTAINER:
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100365 if (!(next->flags & LYS_PRESENCE) && (options & LYS_GETNEXT_INTONPCONT)) {
Michal Vasko544e58a2021-01-28 14:33:41 +0100366 if (lysc_node_child(next)) {
Radek Krejcia3045382018-11-22 14:30:31 +0100367 /* go into */
Michal Vasko544e58a2021-01-28 14:33:41 +0100368 next = lysc_node_child(next);
Radek Krejcia3045382018-11-22 14:30:31 +0100369 } else {
Radek Krejcib93bd412020-11-02 13:23:11 +0100370 last = next;
Radek Krejcia3045382018-11-22 14:30:31 +0100371 next = next->next;
372 }
373 goto repeat;
374 }
375 break;
376 case LYS_CHOICE:
377 if (options & LYS_GETNEXT_WITHCHOICE) {
Michal Vasko20424b42020-08-31 12:29:38 +0200378 break;
Michal Vasko544e58a2021-01-28 14:33:41 +0100379 } else if ((options & LYS_GETNEXT_NOCHOICE) || !lysc_node_child(next)) {
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100380 next = next->next;
381 } else {
Radek Krejcia9026eb2018-12-12 16:04:47 +0100382 if (options & LYS_GETNEXT_WITHCASE) {
Michal Vasko544e58a2021-01-28 14:33:41 +0100383 next = lysc_node_child(next);
Radek Krejcia9026eb2018-12-12 16:04:47 +0100384 } else {
Radek Krejcib93bd412020-11-02 13:23:11 +0100385 /* go into */
386 lys_getnext_into_case(((struct lysc_node_choice *)next)->cases, &last, &next);
Radek Krejcia9026eb2018-12-12 16:04:47 +0100387 }
Radek Krejcia3045382018-11-22 14:30:31 +0100388 }
389 goto repeat;
Michal Vasko544e58a2021-01-28 14:33:41 +0100390 case LYS_INPUT:
391 if (options & LYS_GETNEXT_OUTPUT) {
392 /* skip */
393 next = next->next;
394 } else {
395 /* go into */
396 next = lysc_node_child(next);
397 }
398 goto repeat;
399 case LYS_OUTPUT:
400 if (!(options & LYS_GETNEXT_OUTPUT)) {
401 /* skip */
402 next = next->next;
403 } else {
404 /* go into */
405 next = lysc_node_child(next);
406 }
407 goto repeat;
Radek Krejcia3045382018-11-22 14:30:31 +0100408 default:
409 /* we should not be here */
Radek Krejci035dacf2021-02-12 18:25:53 +0100410 LOGINT(module ? module->mod->ctx : parent ? parent->module->ctx : ext->module->ctx);
Radek Krejcia3045382018-11-22 14:30:31 +0100411 return NULL;
412 }
413
Radek Krejcia3045382018-11-22 14:30:31 +0100414 return next;
415}
416
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100417LIBYANG_API_DEF const struct lysc_node *
Radek Krejci035dacf2021-02-12 18:25:53 +0100418lys_getnext(const struct lysc_node *last, const struct lysc_node *parent, const struct lysc_module *module, uint32_t options)
419{
420 return lys_getnext_(last, parent, module, NULL, options);
421}
422
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100423LIBYANG_API_DEF const struct lysc_node *
Radek Krejci035dacf2021-02-12 18:25:53 +0100424lys_getnext_ext(const struct lysc_node *last, const struct lysc_node *parent, const struct lysc_ext_instance *ext, uint32_t options)
425{
426 return lys_getnext_(last, parent, NULL, ext, options);
427}
428
Radek Krejcif16e2542021-02-17 15:39:23 +0100429const struct lysc_node *
Radek Krejciba05eab2021-03-10 13:19:29 +0100430lysc_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 +0100431 uint16_t nodetype, uint32_t options)
432{
433 const struct lysc_node *node = NULL;
434
435 LY_CHECK_ARG_RET(NULL, ext, name, NULL);
436 if (!nodetype) {
437 nodetype = LYS_NODETYPE_MASK;
438 }
439
440 if (module && (module != ext->module)) {
441 return NULL;
442 }
443
444 while ((node = lys_getnext_ext(node, NULL, ext, options))) {
445 if (!(node->nodetype & nodetype)) {
446 continue;
447 }
448
449 if (name_len) {
450 if (!ly_strncmp(node->name, name, name_len)) {
451 return node;
452 }
453 } else {
454 if (!strcmp(node->name, name)) {
455 return node;
456 }
457 }
458 }
459 return NULL;
460}
461
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100462LIBYANG_API_DEF const struct lysc_node *
Michal Vaskoe444f752020-02-10 12:20:06 +0100463lys_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 +0200464 uint16_t nodetype, uint32_t options)
Radek Krejcia3045382018-11-22 14:30:31 +0100465{
466 const struct lysc_node *node = NULL;
467
468 LY_CHECK_ARG_RET(NULL, module, name, NULL);
Michal Vasko892f5bf2021-11-24 10:41:05 +0100469 LY_CHECK_CTX_EQUAL_RET(parent ? parent->module->ctx : NULL, module->ctx, NULL);
Radek Krejcia3045382018-11-22 14:30:31 +0100470 if (!nodetype) {
Radek Krejcif13b87b2020-12-01 22:02:17 +0100471 nodetype = LYS_NODETYPE_MASK;
Radek Krejcia3045382018-11-22 14:30:31 +0100472 }
473
474 while ((node = lys_getnext(node, parent, module->compiled, options))) {
475 if (!(node->nodetype & nodetype)) {
476 continue;
477 }
478 if (node->module != module) {
479 continue;
480 }
481
482 if (name_len) {
Radek Krejci7f9b6512019-09-18 13:11:09 +0200483 if (!ly_strncmp(node->name, name, name_len)) {
Radek Krejcia3045382018-11-22 14:30:31 +0100484 return node;
485 }
486 } else {
487 if (!strcmp(node->name, name)) {
488 return node;
489 }
490 }
491 }
Michal Vaskoddd76592022-01-17 13:34:48 +0100492
Radek Krejcia3045382018-11-22 14:30:31 +0100493 return NULL;
494}
495
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100496LIBYANG_API_DEF LY_ERR
Michal Vasko26512682021-01-11 11:35:40 +0100497lys_find_xpath_atoms(const struct ly_ctx *ctx, const struct lysc_node *ctx_node, const char *xpath, uint32_t options,
498 struct ly_set **set)
Michal Vasko519fd602020-05-26 12:17:39 +0200499{
500 LY_ERR ret = LY_SUCCESS;
501 struct lyxp_set xp_set;
Radek Krejcif03a9e22020-09-18 20:09:31 +0200502 struct lyxp_expr *exp = NULL;
Michal Vasko519fd602020-05-26 12:17:39 +0200503 uint32_t i;
504
Michal Vasko26512682021-01-11 11:35:40 +0100505 LY_CHECK_ARG_RET(NULL, ctx || ctx_node, xpath, set, LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +0100506 LY_CHECK_CTX_EQUAL_RET(ctx, ctx_node ? ctx_node->module->ctx : NULL, LY_EINVAL);
Michal Vasko519fd602020-05-26 12:17:39 +0200507 if (!(options & LYXP_SCNODE_ALL)) {
Michal Vasko4ad69e72021-10-26 16:25:55 +0200508 options |= LYXP_SCNODE;
Michal Vasko519fd602020-05-26 12:17:39 +0200509 }
Michal Vasko26512682021-01-11 11:35:40 +0100510 if (!ctx) {
511 ctx = ctx_node->module->ctx;
512 }
Michal Vasko519fd602020-05-26 12:17:39 +0200513
514 memset(&xp_set, 0, sizeof xp_set);
515
516 /* compile expression */
Michal Vasko26512682021-01-11 11:35:40 +0100517 ret = lyxp_expr_parse(ctx, xpath, 0, 1, &exp);
Radek Krejcif03a9e22020-09-18 20:09:31 +0200518 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko519fd602020-05-26 12:17:39 +0200519
520 /* atomize expression */
Michal Vaskoa3e92bc2022-07-29 14:56:23 +0200521 ret = lyxp_atomize(ctx, exp, NULL, LY_VALUE_JSON, NULL, ctx_node, ctx_node, &xp_set, options);
Michal Vasko519fd602020-05-26 12:17:39 +0200522 LY_CHECK_GOTO(ret, cleanup);
523
524 /* allocate return set */
Radek Krejciba03a5a2020-08-27 14:40:41 +0200525 ret = ly_set_new(set);
526 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko519fd602020-05-26 12:17:39 +0200527
528 /* transform into ly_set */
529 (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs);
Michal Vasko26512682021-01-11 11:35:40 +0100530 LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko519fd602020-05-26 12:17:39 +0200531 (*set)->size = xp_set.used;
532
533 for (i = 0; i < xp_set.used; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +0200534 if (xp_set.val.scnodes[i].type == LYXP_NODE_ELEM) {
Radek Krejci3d92e442020-10-12 12:48:13 +0200535 ret = ly_set_add(*set, xp_set.val.scnodes[i].scnode, 1, NULL);
Radek Krejciba03a5a2020-08-27 14:40:41 +0200536 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko519fd602020-05-26 12:17:39 +0200537 }
538 }
539
540cleanup:
541 lyxp_set_free_content(&xp_set);
Michal Vasko26512682021-01-11 11:35:40 +0100542 lyxp_expr_free(ctx, exp);
Michal Vasko519fd602020-05-26 12:17:39 +0200543 return ret;
544}
545
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100546LIBYANG_API_DEF LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +0200547lys_find_expr_atoms(const struct lysc_node *ctx_node, const struct lys_module *cur_mod, const struct lyxp_expr *expr,
548 const struct lysc_prefix *prefixes, uint32_t options, struct ly_set **set)
549{
550 LY_ERR ret = LY_SUCCESS;
551 struct lyxp_set xp_set = {0};
552 uint32_t i;
553
554 LY_CHECK_ARG_RET(NULL, cur_mod, expr, prefixes, set, LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +0100555 LY_CHECK_CTX_EQUAL_RET(ctx_node ? ctx_node->module->ctx : NULL, cur_mod->ctx, LY_EINVAL);
Michal Vasko40308e72020-10-20 16:38:40 +0200556 if (!(options & LYXP_SCNODE_ALL)) {
557 options = LYXP_SCNODE;
558 }
559
560 /* atomize expression */
Michal Vaskoa3e92bc2022-07-29 14:56:23 +0200561 ret = lyxp_atomize(cur_mod->ctx, expr, cur_mod, LY_VALUE_SCHEMA_RESOLVED, (void *)prefixes, ctx_node, ctx_node,
562 &xp_set, options);
Michal Vasko40308e72020-10-20 16:38:40 +0200563 LY_CHECK_GOTO(ret, cleanup);
564
565 /* allocate return set */
566 ret = ly_set_new(set);
567 LY_CHECK_GOTO(ret, cleanup);
568
569 /* transform into ly_set */
570 (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs);
571 LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(cur_mod->ctx); ret = LY_EMEM, cleanup);
572 (*set)->size = xp_set.used;
573
574 for (i = 0; i < xp_set.used; ++i) {
Michal Vasko1a09b212021-05-06 13:00:10 +0200575 if ((xp_set.val.scnodes[i].type == LYXP_NODE_ELEM) && (xp_set.val.scnodes[i].in_ctx >= LYXP_SET_SCNODE_ATOM_NODE)) {
576 assert((xp_set.val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_NODE) ||
577 (xp_set.val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_VAL) ||
Michal Vaskod97959c2020-12-10 12:18:28 +0100578 (xp_set.val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX));
Michal Vasko40308e72020-10-20 16:38:40 +0200579 ret = ly_set_add(*set, xp_set.val.scnodes[i].scnode, 1, NULL);
580 LY_CHECK_GOTO(ret, cleanup);
581 }
582 }
583
584cleanup:
585 lyxp_set_free_content(&xp_set);
586 if (ret) {
587 ly_set_free(*set, NULL);
588 *set = NULL;
589 }
590 return ret;
591}
592
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100593LIBYANG_API_DEF LY_ERR
Michal Vasko26512682021-01-11 11:35:40 +0100594lys_find_xpath(const struct ly_ctx *ctx, const struct lysc_node *ctx_node, const char *xpath, uint32_t options,
595 struct ly_set **set)
Michal Vasko072de482020-08-05 13:27:21 +0200596{
597 LY_ERR ret = LY_SUCCESS;
Michal Vasko40308e72020-10-20 16:38:40 +0200598 struct lyxp_set xp_set = {0};
Radek Krejcif03a9e22020-09-18 20:09:31 +0200599 struct lyxp_expr *exp = NULL;
Michal Vasko072de482020-08-05 13:27:21 +0200600 uint32_t i;
601
Michal Vasko26512682021-01-11 11:35:40 +0100602 LY_CHECK_ARG_RET(NULL, ctx || ctx_node, xpath, set, LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +0100603 LY_CHECK_CTX_EQUAL_RET(ctx, ctx_node ? ctx_node->module->ctx : NULL, LY_EINVAL);
Michal Vasko072de482020-08-05 13:27:21 +0200604 if (!(options & LYXP_SCNODE_ALL)) {
605 options = LYXP_SCNODE;
606 }
Michal Vasko26512682021-01-11 11:35:40 +0100607 if (!ctx) {
608 ctx = ctx_node->module->ctx;
609 }
Michal Vasko072de482020-08-05 13:27:21 +0200610
Michal Vasko072de482020-08-05 13:27:21 +0200611 /* compile expression */
Michal Vasko26512682021-01-11 11:35:40 +0100612 ret = lyxp_expr_parse(ctx, xpath, 0, 1, &exp);
Radek Krejcif03a9e22020-09-18 20:09:31 +0200613 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko072de482020-08-05 13:27:21 +0200614
615 /* atomize expression */
Michal Vaskoa3e92bc2022-07-29 14:56:23 +0200616 ret = lyxp_atomize(ctx, exp, NULL, LY_VALUE_JSON, NULL, ctx_node, ctx_node, &xp_set, options);
Michal Vasko072de482020-08-05 13:27:21 +0200617 LY_CHECK_GOTO(ret, cleanup);
618
619 /* allocate return set */
Radek Krejciba03a5a2020-08-27 14:40:41 +0200620 ret = ly_set_new(set);
621 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko072de482020-08-05 13:27:21 +0200622
623 /* transform into ly_set */
624 (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs);
Michal Vasko26512682021-01-11 11:35:40 +0100625 LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko072de482020-08-05 13:27:21 +0200626 (*set)->size = xp_set.used;
627
628 for (i = 0; i < xp_set.used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +0100629 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 +0200630 ret = ly_set_add(*set, xp_set.val.scnodes[i].scnode, 1, NULL);
Radek Krejciba03a5a2020-08-27 14:40:41 +0200631 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko072de482020-08-05 13:27:21 +0200632 }
633 }
634
635cleanup:
636 lyxp_set_free_content(&xp_set);
Michal Vasko26512682021-01-11 11:35:40 +0100637 lyxp_expr_free(ctx, exp);
Michal Vaskoae159662020-10-21 11:57:24 +0200638 if (ret) {
Michal Vasko40308e72020-10-20 16:38:40 +0200639 ly_set_free(*set, NULL);
640 *set = NULL;
641 }
Michal Vasko072de482020-08-05 13:27:21 +0200642 return ret;
643}
644
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100645LIBYANG_API_DEF LY_ERR
Radek Krejcibc5644c2020-10-27 14:53:17 +0100646lys_find_lypath_atoms(const struct ly_path *path, struct ly_set **set)
647{
648 LY_ERR ret = LY_SUCCESS;
649 LY_ARRAY_COUNT_TYPE u, v;
650
651 LY_CHECK_ARG_RET(NULL, path, set, LY_EINVAL);
652
653 /* allocate return set */
654 LY_CHECK_RET(ly_set_new(set));
655
656 LY_ARRAY_FOR(path, u) {
657 /* add nodes from the path */
658 LY_CHECK_GOTO(ret = ly_set_add(*set, (void *)path[u].node, 0, NULL), cleanup);
659 if (path[u].pred_type == LY_PATH_PREDTYPE_LIST) {
660 LY_ARRAY_FOR(path[u].predicates, v) {
661 /* add all the keys in a predicate */
662 LY_CHECK_GOTO(ret = ly_set_add(*set, (void *)path[u].predicates[v].key, 0, NULL), cleanup);
663 }
664 }
665 }
666
667cleanup:
668 if (ret) {
669 ly_set_free(*set, NULL);
670 *set = NULL;
671 }
672 return ret;
673}
674
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100675LIBYANG_API_DEF LY_ERR
Radek Krejcibc5644c2020-10-27 14:53:17 +0100676lys_find_path_atoms(const struct ly_ctx *ctx, const struct lysc_node *ctx_node, const char *path, ly_bool output,
677 struct ly_set **set)
678{
679 LY_ERR ret = LY_SUCCESS;
680 uint8_t oper;
681 struct lyxp_expr *expr = NULL;
682 struct ly_path *p = NULL;
683
684 LY_CHECK_ARG_RET(ctx, ctx || ctx_node, path, set, LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +0100685 LY_CHECK_CTX_EQUAL_RET(ctx, ctx_node ? ctx_node->module->ctx : NULL, LY_EINVAL);
Radek Krejcibc5644c2020-10-27 14:53:17 +0100686
687 if (!ctx) {
688 ctx = ctx_node->module->ctx;
689 }
690
691 /* parse */
692 ret = lyxp_expr_parse(ctx, path, strlen(path), 0, &expr);
693 LY_CHECK_GOTO(ret, cleanup);
694
695 /* compile */
696 oper = output ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT;
Michal Vasko0884d212021-10-14 09:21:46 +0200697 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 +0100698 LY_CHECK_GOTO(ret, cleanup);
699
700 /* resolve */
701 ret = lys_find_lypath_atoms(p, set);
702
703cleanup:
704 ly_path_free(ctx, p);
705 lyxp_expr_free(ctx, expr);
706 return ret;
707}
708
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100709LIBYANG_API_DEF const struct lysc_node *
Radek Krejcibc5644c2020-10-27 14:53:17 +0100710lys_find_path(const struct ly_ctx *ctx, const struct lysc_node *ctx_node, const char *path, ly_bool output)
711{
712 const struct lysc_node *snode = NULL;
713 struct lyxp_expr *exp = NULL;
714 struct ly_path *p = NULL;
715 LY_ERR ret;
716 uint8_t oper;
717
718 LY_CHECK_ARG_RET(ctx, ctx || ctx_node, NULL);
Michal Vasko892f5bf2021-11-24 10:41:05 +0100719 LY_CHECK_CTX_EQUAL_RET(ctx, ctx_node ? ctx_node->module->ctx : NULL, NULL);
Radek Krejcibc5644c2020-10-27 14:53:17 +0100720
721 if (!ctx) {
722 ctx = ctx_node->module->ctx;
723 }
724
725 /* parse */
726 ret = lyxp_expr_parse(ctx, path, strlen(path), 0, &exp);
727 LY_CHECK_GOTO(ret, cleanup);
728
729 /* compile */
730 oper = output ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT;
Michal Vasko0884d212021-10-14 09:21:46 +0200731 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 +0100732 LY_CHECK_GOTO(ret, cleanup);
733
734 /* get last node */
735 snode = p[LY_ARRAY_COUNT(p) - 1].node;
736
737cleanup:
738 ly_path_free(ctx, p);
739 lyxp_expr_free(ctx, exp);
740 return snode;
741}
742
Michal Vasko14654712020-02-06 08:35:21 +0100743char *
744lysc_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 +0200745 size_t buflen)
Radek Krejci327de162019-06-14 12:52:07 +0200746{
Michal Vaskobde22b62022-03-22 15:32:56 +0100747 const struct lysc_node *iter, *par, *key;
Radek Krejci327de162019-06-14 12:52:07 +0200748 char *path = NULL;
749 int len = 0;
Michal Vaskobde22b62022-03-22 15:32:56 +0100750 ly_bool skip_schema;
Radek Krejci327de162019-06-14 12:52:07 +0200751
Radek Krejci3bbd93e2019-07-24 09:57:23 +0200752 if (buffer) {
753 LY_CHECK_ARG_RET(node->module->ctx, buflen > 1, NULL);
Michal Vasko770d3fc2021-01-26 09:14:35 +0100754 buffer[0] = '\0';
Radek Krejci3bbd93e2019-07-24 09:57:23 +0200755 }
756
Michal Vaskobde22b62022-03-22 15:32:56 +0100757 if ((pathtype == LYSC_PATH_DATA) || (pathtype == LYSC_PATH_DATA_PATTERN)) {
758 /* skip schema-only nodes */
759 skip_schema = 1;
760 } else {
761 skip_schema = 0;
762 }
Radek Krejci327de162019-06-14 12:52:07 +0200763
Michal Vaskobde22b62022-03-22 15:32:56 +0100764 for (iter = node; iter && (iter != parent) && (len >= 0); iter = iter->parent) {
765 char *s;
766 const char *slash;
Michal Vasko65de0402020-08-03 16:34:19 +0200767
Michal Vaskobde22b62022-03-22 15:32:56 +0100768 if (skip_schema && (iter->nodetype & (LYS_CHOICE | LYS_CASE | LYS_INPUT | LYS_OUTPUT))) {
769 /* schema-only node */
770 continue;
771 }
Michal Vasko87dd1342021-08-23 16:17:55 +0200772
Michal Vaskobde22b62022-03-22 15:32:56 +0100773 if ((pathtype == LYSC_PATH_DATA_PATTERN) && (iter->nodetype == LYS_LIST)) {
774 key = NULL;
775 while ((key = lys_getnext(key, iter, NULL, 0)) && lysc_is_key(key)) {
776 s = buffer ? strdup(buffer) : path;
Michal Vasko87dd1342021-08-23 16:17:55 +0200777
Michal Vaskobde22b62022-03-22 15:32:56 +0100778 /* print key predicate */
Radek Krejci1c0c3442019-07-23 16:08:47 +0200779 if (buffer) {
Michal Vaskobde22b62022-03-22 15:32:56 +0100780 len = snprintf(buffer, buflen, "[%s='%%s']%s", key->name, s ? s : "");
Radek Krejci1c0c3442019-07-23 16:08:47 +0200781 } else {
Michal Vaskobde22b62022-03-22 15:32:56 +0100782 len = asprintf(&path, "[%s='%%s']%s", key->name, s ? s : "");
Radek Krejci1c0c3442019-07-23 16:08:47 +0200783 }
Michal Vaskobde22b62022-03-22 15:32:56 +0100784 free(s);
Michal Vasko28d03812022-03-24 15:26:11 +0100785
786 if (buffer && (buflen <= (size_t)len)) {
787 /* not enough space in buffer */
788 break;
789 }
Radek Krejci1c0c3442019-07-23 16:08:47 +0200790 }
Radek Krejci327de162019-06-14 12:52:07 +0200791 }
792
Michal Vaskobde22b62022-03-22 15:32:56 +0100793 s = buffer ? strdup(buffer) : path;
794 if (parent && (iter->parent == parent)) {
795 slash = "";
796 } else {
797 slash = "/";
798 }
799
800 if (skip_schema) {
801 par = lysc_data_parent(iter);
802 } else {
803 par = iter->parent;
804 }
805
806 if (!par || (par->module != iter->module)) {
807 /* print prefix */
Radek Krejci3bbd93e2019-07-24 09:57:23 +0200808 if (buffer) {
Michal Vaskobde22b62022-03-22 15:32:56 +0100809 len = snprintf(buffer, buflen, "%s%s:%s%s", slash, iter->module->name, iter->name, s ? s : "");
Radek Krejci3bbd93e2019-07-24 09:57:23 +0200810 } else {
Michal Vaskobde22b62022-03-22 15:32:56 +0100811 len = asprintf(&path, "%s%s:%s%s", slash, iter->module->name, iter->name, s ? s : "");
812 }
813 } else {
814 /* prefix is the same as in parent */
815 if (buffer) {
816 len = snprintf(buffer, buflen, "%s%s%s", slash, iter->name, s ? s : "");
817 } else {
818 len = asprintf(&path, "%s%s%s", slash, iter->name, s ? s : "");
Radek Krejci3bbd93e2019-07-24 09:57:23 +0200819 }
Radek Krejci327de162019-06-14 12:52:07 +0200820 }
Michal Vaskobde22b62022-03-22 15:32:56 +0100821 free(s);
822
823 if (buffer && (buflen <= (size_t)len)) {
824 /* not enough space in buffer */
825 break;
826 }
827 }
828
829 if (len < 0) {
830 free(path);
831 path = NULL;
832 } else if (len == 0) {
833 if (buffer) {
834 strcpy(buffer, "/");
835 } else {
836 path = strdup("/");
837 }
Radek Krejci327de162019-06-14 12:52:07 +0200838 }
839
Radek Krejci1c0c3442019-07-23 16:08:47 +0200840 if (buffer) {
841 return buffer;
842 } else {
843 return path;
844 }
Radek Krejci327de162019-06-14 12:52:07 +0200845}
846
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100847LIBYANG_API_DEF char *
Michal Vasko14654712020-02-06 08:35:21 +0100848lysc_path(const struct lysc_node *node, LYSC_PATH_TYPE pathtype, char *buffer, size_t buflen)
849{
850 return lysc_path_until(node, NULL, pathtype, buffer, buflen);
851}
852
Michal Vasko405cc9e2020-12-01 12:01:27 +0100853LY_ERR
Michal Vasko65333882021-06-10 14:12:16 +0200854_lys_set_implemented(struct lys_module *mod, const char **features, struct lys_glob_unres *unres)
Michal Vasko405cc9e2020-12-01 12:01:27 +0100855{
856 LY_ERR ret = LY_SUCCESS, r;
aPiecek6b3d5422021-07-30 15:55:43 +0200857 struct lys_module *mod_iter;
Michal Vaskoc56d6372021-10-19 12:29:00 +0200858 const char **imp_f, *all_f[] = {"*", NULL};
Michal Vasko65333882021-06-10 14:12:16 +0200859 uint32_t i;
Michal Vasko916aefb2020-11-02 15:43:16 +0100860
Michal Vasko405cc9e2020-12-01 12:01:27 +0100861 if (mod->implemented) {
862 /* mod is already implemented, set the features */
863 r = lys_set_features(mod->parsed, features);
864 if (r == LY_EEXIST) {
865 /* no changes */
866 return LY_SUCCESS;
Michal Vasko7213ac52021-06-15 11:52:13 +0200867 } else if (!r) {
868 /* mark the module as changed */
Michal Vasko01db7de2021-04-16 12:23:30 +0200869 mod->to_compile = 1;
Michal Vasko01db7de2021-04-16 12:23:30 +0200870 }
Michal Vasko7213ac52021-06-15 11:52:13 +0200871
872 return r;
Michal Vasko89b5c072020-10-06 13:52:44 +0200873 }
Michal Vasko08c8b272020-11-24 18:11:30 +0100874
Michal Vasko7213ac52021-06-15 11:52:13 +0200875 /* implement, ignore recompilation because it must always take place later */
876 r = lys_implement(mod, features, unres);
877 LY_CHECK_ERR_GOTO(r && (r != LY_ERECOMPILE), ret = r, cleanup);
Michal Vasko65333882021-06-10 14:12:16 +0200878
879 if (mod->ctx->flags & LY_CTX_ALL_IMPLEMENTED) {
880 /* implement all the imports as well */
881 for (i = 0; i < unres->creating.count; ++i) {
882 mod = unres->creating.objs[i];
883 if (mod->implemented) {
884 continue;
885 }
886
Michal Vaskoc56d6372021-10-19 12:29:00 +0200887 imp_f = (mod->ctx->flags & LY_CTX_ENABLE_IMP_FEATURES) ? all_f : NULL;
888 r = lys_implement(mod, imp_f, unres);
Michal Vasko7213ac52021-06-15 11:52:13 +0200889 LY_CHECK_ERR_GOTO(r && (r != LY_ERECOMPILE), ret = r, cleanup);
Michal Vasko65333882021-06-10 14:12:16 +0200890 }
891 }
892
aPiecek6b3d5422021-07-30 15:55:43 +0200893 /* Try to find module with LYS_MOD_IMPORTED_REV flag. */
894 i = 0;
895 while ((mod_iter = ly_ctx_get_module_iter(mod->ctx, &i))) {
Michal Vaskoe8b085b2021-09-02 08:20:08 +0200896 if (!strcmp(mod_iter->name, mod->name) && (mod_iter != mod) && (mod_iter->latest_revision & LYS_MOD_IMPORTED_REV)) {
897 LOGVRB("Implemented module \"%s@%s\" was not and will not be imported if the revision-date is missing"
898 " in the import statement. Instead, the revision \"%s\" is imported.", mod->name, mod->revision,
899 mod_iter->revision);
aPiecek6b3d5422021-07-30 15:55:43 +0200900 break;
901 }
902 }
903
Michal Vasko65333882021-06-10 14:12:16 +0200904cleanup:
905 return ret;
906}
907
Michal Vaskof4258e12021-06-15 12:11:42 +0200908/**
Michal Vasko7ee5be22021-06-16 17:03:34 +0200909 * @brief Check whether it may be needed to (re)compile a module from a particular dependency set
910 * and if so, add it into its dep set.
911 *
912 * Dependency set includes all modules that need to be (re)compiled in case any of the module(s)
913 * in the dep set are (re)compiled.
914 *
915 * The reason for recompilation is possible disabled nodes and updating
916 * leafref targets to point to the newly compiled modules. Using the import relation, the
917 * dependency is reflexive because of possible foreign augments and deviations, which are compiled
918 * during the target module compilation.
919 *
920 * - every module must belong to exactly one dep set
921 * - implement flag must be ignored because it can be changed during dep set compilation
Michal Vaskof4258e12021-06-15 12:11:42 +0200922 *
923 * @param[in] mod Module to process.
924 * @param[in,out] ctx_set Set with all not-yet-processed modules.
925 * @param[in,out] dep_set Current dependency set to update.
Michal Vasko775fbd02021-07-28 08:25:29 +0200926 * @param[in] aux_set Set of traversed non-compiled modules, should be empty on first call.
Michal Vaskof4258e12021-06-15 12:11:42 +0200927 * @return LY_ERR value.
928 */
929static LY_ERR
Michal Vasko775fbd02021-07-28 08:25:29 +0200930lys_unres_dep_sets_create_mod_r(struct lys_module *mod, struct ly_set *ctx_set, struct ly_set *dep_set,
931 struct ly_set *aux_set)
Michal Vaskof4258e12021-06-15 12:11:42 +0200932{
933 struct lys_module *mod2;
934 struct lysp_import *imports;
935 uint32_t i;
936 LY_ARRAY_COUNT_TYPE u, v;
937 ly_bool found;
938
Michal Vasko0bccbf12021-11-22 09:59:57 +0100939 if (LYS_IS_SINGLE_DEP_SET(mod)) {
Michal Vasko709f9a52021-07-21 10:51:59 +0200940 /* is already in a separate dep set */
Michal Vasko87cfdba2022-02-22 14:13:45 +0100941 if (!lys_has_dep_mods(mod)) {
Michal Vasko709f9a52021-07-21 10:51:59 +0200942 /* break the dep set here, no modules depend on this one */
Michal Vasko7ee5be22021-06-16 17:03:34 +0200943 return LY_SUCCESS;
944 }
Michal Vasko775fbd02021-07-28 08:25:29 +0200945
946 if (ly_set_contains(aux_set, mod, NULL)) {
947 /* it was traversed */
948 return LY_SUCCESS;
949 }
950
951 /* add a new auxiliary module */
952 LY_CHECK_RET(ly_set_add(aux_set, mod, 1, NULL));
Michal Vasko7ee5be22021-06-16 17:03:34 +0200953 } else {
Michal Vasko709f9a52021-07-21 10:51:59 +0200954 if (!ly_set_contains(ctx_set, mod, &i)) {
955 /* it was already processed */
956 return LY_SUCCESS;
957 }
958
959 /* remove it from the set, we are processing it now */
960 ly_set_rm_index(ctx_set, i, NULL);
961
Michal Vasko7ee5be22021-06-16 17:03:34 +0200962 /* add a new dependent module into the dep set */
963 LY_CHECK_RET(ly_set_add(dep_set, mod, 1, NULL));
Michal Vaskof4258e12021-06-15 12:11:42 +0200964 }
965
966 /* process imports of the module and submodules */
967 imports = mod->parsed->imports;
968 LY_ARRAY_FOR(imports, u) {
Michal Vasko709f9a52021-07-21 10:51:59 +0200969 mod2 = imports[u].module;
Michal Vasko775fbd02021-07-28 08:25:29 +0200970 LY_CHECK_RET(lys_unres_dep_sets_create_mod_r(mod2, ctx_set, dep_set, aux_set));
Michal Vaskof4258e12021-06-15 12:11:42 +0200971 }
972 LY_ARRAY_FOR(mod->parsed->includes, v) {
973 imports = mod->parsed->includes[v].submodule->imports;
974 LY_ARRAY_FOR(imports, u) {
Michal Vasko709f9a52021-07-21 10:51:59 +0200975 mod2 = imports[u].module;
Michal Vasko87cfdba2022-02-22 14:13:45 +0100976 if (LYS_IS_SINGLE_DEP_SET(mod2) && !lys_has_dep_mods(mod2)) {
977 /* break the dep set here, no modules depend on this one */
978 continue;
Michal Vasko709f9a52021-07-21 10:51:59 +0200979 }
980
Michal Vasko775fbd02021-07-28 08:25:29 +0200981 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 +0200982 }
983 }
984
985 /* process modules and submodules importing this module */
Michal Vasko7ee5be22021-06-16 17:03:34 +0200986 for (i = 0; i < mod->ctx->list.count; ++i) {
987 mod2 = mod->ctx->list.objs[i];
Michal Vaskof4258e12021-06-15 12:11:42 +0200988 found = 0;
989
990 imports = mod2->parsed->imports;
991 LY_ARRAY_FOR(imports, u) {
992 if (imports[u].module == mod) {
993 found = 1;
994 break;
995 }
996 }
997
998 if (!found) {
999 LY_ARRAY_FOR(mod2->parsed->includes, v) {
1000 imports = mod2->parsed->includes[v].submodule->imports;
1001 LY_ARRAY_FOR(imports, u) {
1002 if (imports[u].module == mod) {
1003 found = 1;
1004 break;
1005 }
1006 }
1007
1008 if (found) {
1009 break;
1010 }
1011 }
1012 }
1013
1014 if (found) {
Michal Vasko775fbd02021-07-28 08:25:29 +02001015 LY_CHECK_RET(lys_unres_dep_sets_create_mod_r(mod2, ctx_set, dep_set, aux_set));
Michal Vaskof4258e12021-06-15 12:11:42 +02001016 }
1017 }
1018
1019 return LY_SUCCESS;
1020}
1021
Michal Vasko709f9a52021-07-21 10:51:59 +02001022/**
1023 * @brief Add all simple modules (that have nothing to (re)compile) into separate dep sets.
1024 *
1025 * @param[in,out] ctx_set Set with all not-yet-processed modules.
1026 * @param[in,out] main_set Set of dependency module sets.
1027 * @return LY_ERR value.
1028 */
1029static LY_ERR
1030lys_unres_dep_sets_create_single(struct ly_set *ctx_set, struct ly_set *main_set)
1031{
1032 LY_ERR ret = LY_SUCCESS;
1033 struct lys_module *m;
1034 uint32_t i = 0;
1035 struct ly_set *dep_set = NULL;
1036
1037 while (i < ctx_set->count) {
1038 m = ctx_set->objs[i];
Michal Vasko0bccbf12021-11-22 09:59:57 +01001039 if (LYS_IS_SINGLE_DEP_SET(m)) {
Michal Vasko709f9a52021-07-21 10:51:59 +02001040 /* remove it from the set, we are processing it now */
1041 ly_set_rm_index(ctx_set, i, NULL);
1042
1043 /* this module can be in a separate dep set (but there still may be modules importing this one
1044 * that depend on imports of this one in case it defines groupings) */
1045 LY_CHECK_GOTO(ret = ly_set_new(&dep_set), cleanup);
1046 LY_CHECK_GOTO(ret = ly_set_add(dep_set, m, 1, NULL), cleanup);
1047 LY_CHECK_GOTO(ret = ly_set_add(main_set, dep_set, 1, NULL), cleanup);
1048 dep_set = NULL;
1049 } else {
1050 ++i;
1051 }
1052 }
1053
1054cleanup:
1055 ly_set_free(dep_set, NULL);
1056 return ret;
1057}
1058
Michal Vaskof4258e12021-06-15 12:11:42 +02001059LY_ERR
Michal Vasko50bc09a2021-06-17 17:31:56 +02001060lys_unres_dep_sets_create(struct ly_ctx *ctx, struct ly_set *main_set, struct lys_module *mod)
Michal Vaskof4258e12021-06-15 12:11:42 +02001061{
1062 LY_ERR ret = LY_SUCCESS;
1063 struct lys_module *m;
Michal Vasko775fbd02021-07-28 08:25:29 +02001064 struct ly_set *dep_set = NULL, *ctx_set = NULL, aux_set = {0};
Michal Vaskof4258e12021-06-15 12:11:42 +02001065 uint32_t i;
Michal Vasko7ee5be22021-06-16 17:03:34 +02001066 ly_bool found;
Michal Vaskof4258e12021-06-15 12:11:42 +02001067
Michal Vasko22b26222021-07-30 11:16:47 +02001068 assert(!main_set->count);
1069
Michal Vaskof4258e12021-06-15 12:11:42 +02001070 /* start with a duplicate set of modules that we will remove from */
1071 LY_CHECK_GOTO(ret = ly_set_dup(&ctx->list, NULL, &ctx_set), cleanup);
1072
Michal Vasko709f9a52021-07-21 10:51:59 +02001073 /* first create all dep sets with single modules */
1074 LY_CHECK_GOTO(ret = lys_unres_dep_sets_create_single(ctx_set, main_set), cleanup);
1075
1076 if (mod && !ly_set_contains(ctx_set, mod, NULL)) {
1077 /* dep set for this module has already been created, nothing else to do */
1078 goto cleanup;
1079 }
1080
Michal Vaskof4258e12021-06-15 12:11:42 +02001081 while (ctx_set->count) {
1082 /* create new dep set */
1083 LY_CHECK_GOTO(ret = ly_set_new(&dep_set), cleanup);
1084
1085 if (mod) {
1086 /* use the module create a dep set with the rest of its dependent modules */
Michal Vasko775fbd02021-07-28 08:25:29 +02001087 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 +02001088 } else {
1089 /* use first ctx mod to create a dep set with the rest of its dependent modules */
Michal Vasko775fbd02021-07-28 08:25:29 +02001090 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 +02001091 }
Michal Vasko775fbd02021-07-28 08:25:29 +02001092 ly_set_erase(&aux_set, NULL);
Michal Vasko7ee5be22021-06-16 17:03:34 +02001093 assert(dep_set->count);
Michal Vaskof4258e12021-06-15 12:11:42 +02001094
1095 /* check whether there is any module that will be (re)compiled */
Michal Vasko7ee5be22021-06-16 17:03:34 +02001096 found = 0;
Michal Vaskof4258e12021-06-15 12:11:42 +02001097 for (i = 0; i < dep_set->count; ++i) {
1098 m = dep_set->objs[i];
1099 if (m->to_compile) {
Michal Vasko7ee5be22021-06-16 17:03:34 +02001100 found = 1;
Michal Vaskof4258e12021-06-15 12:11:42 +02001101 break;
1102 }
1103 }
1104
Michal Vasko7ee5be22021-06-16 17:03:34 +02001105 if (found) {
Michal Vaskof4258e12021-06-15 12:11:42 +02001106 /* if there is, all the implemented modules need to be recompiled */
1107 for (i = 0; i < dep_set->count; ++i) {
1108 m = dep_set->objs[i];
1109 if (m->implemented) {
1110 m->to_compile = 1;
1111 }
1112 }
1113 }
1114
Michal Vasko7ee5be22021-06-16 17:03:34 +02001115 /* add the dep set into main set */
1116 LY_CHECK_GOTO(ret = ly_set_add(main_set, dep_set, 1, NULL), cleanup);
Michal Vaskof4258e12021-06-15 12:11:42 +02001117 dep_set = NULL;
1118
1119 if (mod) {
1120 /* we need dep set only for this module */
1121 break;
1122 }
1123 }
1124
Michal Vaskoe558f792021-07-28 08:20:15 +02001125#ifndef NDEBUG
1126 LOGDBG(LY_LDGDEPSETS, "dep sets created (%" PRIu32 "):", main_set->count);
1127 for (i = 0; i < main_set->count; ++i) {
1128 struct ly_set *iter_set = main_set->objs[i];
1129
1130 LOGDBG(LY_LDGDEPSETS, "dep set #%" PRIu32 ":", i);
1131 for (uint32_t j = 0; j < iter_set->count; ++j) {
1132 m = iter_set->objs[j];
1133 LOGDBG(LY_LDGDEPSETS, "\t%s", m->name);
1134 }
1135 }
1136#endif
1137
Michal Vaskof4258e12021-06-15 12:11:42 +02001138cleanup:
Michal Vaskobd65c2e2021-06-16 11:49:45 +02001139 assert(ret || main_set->objs);
Michal Vasko775fbd02021-07-28 08:25:29 +02001140 ly_set_erase(&aux_set, NULL);
Michal Vaskof4258e12021-06-15 12:11:42 +02001141 ly_set_free(dep_set, NULL);
1142 ly_set_free(ctx_set, NULL);
1143 return ret;
1144}
1145
1146void
1147lys_unres_glob_revert(struct ly_ctx *ctx, struct lys_glob_unres *unres)
1148{
1149 uint32_t i, j, idx, prev_lo;
Michal Vaskoc636ea42022-09-16 10:20:31 +02001150 struct lysf_ctx fctx = {.ctx = ctx};
Michal Vaskof4258e12021-06-15 12:11:42 +02001151 struct ly_set *dep_set;
Michal Vaskof4258e12021-06-15 12:11:42 +02001152 LY_ERR ret;
1153
1154 for (i = 0; i < unres->implementing.count; ++i) {
Michal Vaskoc636ea42022-09-16 10:20:31 +02001155 fctx.mod = unres->implementing.objs[i];
1156 assert(fctx.mod->implemented);
Michal Vaskof4258e12021-06-15 12:11:42 +02001157
1158 /* make the module correctly non-implemented again */
Michal Vaskoc636ea42022-09-16 10:20:31 +02001159 fctx.mod->implemented = 0;
1160 lys_precompile_augments_deviations_revert(ctx, fctx.mod);
1161 lysc_module_free(&fctx, fctx.mod->compiled);
1162 fctx.mod->compiled = NULL;
Michal Vaskof4258e12021-06-15 12:11:42 +02001163
1164 /* should not be made implemented */
Michal Vaskoc636ea42022-09-16 10:20:31 +02001165 fctx.mod->to_compile = 0;
Michal Vaskof4258e12021-06-15 12:11:42 +02001166 }
1167
1168 for (i = 0; i < unres->creating.count; ++i) {
Michal Vaskoc636ea42022-09-16 10:20:31 +02001169 fctx.mod = unres->creating.objs[i];
Michal Vaskof4258e12021-06-15 12:11:42 +02001170
Michal Vaskod297f2a2021-06-16 11:51:28 +02001171 /* remove the module from the context */
Michal Vaskoc636ea42022-09-16 10:20:31 +02001172 ly_set_rm(&ctx->list, fctx.mod, NULL);
Michal Vaskof4258e12021-06-15 12:11:42 +02001173
Michal Vasko22b26222021-07-30 11:16:47 +02001174 /* remove it also from dep sets */
Michal Vasko7ee5be22021-06-16 17:03:34 +02001175 for (j = 0; j < unres->dep_sets.count; ++j) {
1176 dep_set = unres->dep_sets.objs[j];
Michal Vaskoc636ea42022-09-16 10:20:31 +02001177 if (ly_set_contains(dep_set, fctx.mod, &idx)) {
Michal Vasko7ee5be22021-06-16 17:03:34 +02001178 ly_set_rm_index(dep_set, idx, NULL);
1179 break;
Michal Vaskof4258e12021-06-15 12:11:42 +02001180 }
Michal Vaskof4258e12021-06-15 12:11:42 +02001181 }
Michal Vaskod297f2a2021-06-16 11:51:28 +02001182
1183 /* free the module */
Michal Vaskoc636ea42022-09-16 10:20:31 +02001184 lys_module_free(&fctx, fctx.mod, 1);
Michal Vaskof4258e12021-06-15 12:11:42 +02001185 }
1186
Michal Vaskoc636ea42022-09-16 10:20:31 +02001187 /* remove the extensions as well */
1188 lysf_ctx_erase(&fctx);
1189
Michal Vaskof4258e12021-06-15 12:11:42 +02001190 if (unres->implementing.count) {
1191 /* recompile previous context because some implemented modules are no longer implemented,
1192 * we can reuse the current to_compile flags */
1193 prev_lo = ly_log_options(0);
Michal Vasko22b26222021-07-30 11:16:47 +02001194 ret = lys_compile_depset_all(ctx, &ctx->unres);
Michal Vaskof4258e12021-06-15 12:11:42 +02001195 ly_log_options(prev_lo);
1196 if (ret) {
1197 LOGINT(ctx);
1198 }
1199 }
1200}
1201
1202void
1203lys_unres_glob_erase(struct lys_glob_unres *unres)
1204{
1205 uint32_t i;
1206
1207 for (i = 0; i < unres->dep_sets.count; ++i) {
1208 ly_set_free(unres->dep_sets.objs[i], NULL);
1209 }
1210 ly_set_erase(&unres->dep_sets, NULL);
1211 ly_set_erase(&unres->implementing, NULL);
1212 ly_set_erase(&unres->creating, NULL);
1213
Michal Vaskoc130e162021-10-19 11:30:00 +02001214 assert(!unres->ds_unres.whens.count);
1215 assert(!unres->ds_unres.musts.count);
Michal Vaskof4258e12021-06-15 12:11:42 +02001216 assert(!unres->ds_unres.leafrefs.count);
aPiecekc6526b42021-07-12 15:21:39 +02001217 assert(!unres->ds_unres.disabled_leafrefs.count);
Michal Vaskof4258e12021-06-15 12:11:42 +02001218 assert(!unres->ds_unres.dflts.count);
1219 assert(!unres->ds_unres.disabled.count);
1220}
1221
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001222LIBYANG_API_DEF LY_ERR
Michal Vasko65333882021-06-10 14:12:16 +02001223lys_set_implemented(struct lys_module *mod, const char **features)
1224{
1225 LY_ERR ret = LY_SUCCESS;
Michal Vasko22b26222021-07-30 11:16:47 +02001226 struct lys_glob_unres *unres = &mod->ctx->unres;
Michal Vasko65333882021-06-10 14:12:16 +02001227
1228 LY_CHECK_ARG_RET(NULL, mod, LY_EINVAL);
1229
1230 /* implement */
Michal Vasko22b26222021-07-30 11:16:47 +02001231 ret = _lys_set_implemented(mod, features, unres);
Michal Vasko65333882021-06-10 14:12:16 +02001232 LY_CHECK_GOTO(ret, cleanup);
1233
Michal Vaskof4258e12021-06-15 12:11:42 +02001234 if (!(mod->ctx->flags & LY_CTX_EXPLICIT_COMPILE)) {
1235 /* create dep set for the module and mark all the modules that will be (re)compiled */
Michal Vasko22b26222021-07-30 11:16:47 +02001236 LY_CHECK_GOTO(ret = lys_unres_dep_sets_create(mod->ctx, &unres->dep_sets, mod), cleanup);
Michal Vaskof4258e12021-06-15 12:11:42 +02001237
Michal Vasko709f9a52021-07-21 10:51:59 +02001238 /* (re)compile the whole dep set (other dep sets will have no modules marked for compilation) */
Michal Vasko22b26222021-07-30 11:16:47 +02001239 LY_CHECK_GOTO(ret = lys_compile_depset_all(mod->ctx, unres), cleanup);
1240
1241 /* unres resolved */
1242 lys_unres_glob_erase(unres);
Michal Vaskof4258e12021-06-15 12:11:42 +02001243 }
1244
Michal Vasko65333882021-06-10 14:12:16 +02001245cleanup:
Michal Vasko405cc9e2020-12-01 12:01:27 +01001246 if (ret) {
Michal Vasko22b26222021-07-30 11:16:47 +02001247 lys_unres_glob_revert(mod->ctx, unres);
1248 lys_unres_glob_erase(unres);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001249 }
Michal Vasko89b5c072020-10-06 13:52:44 +02001250 return ret;
Radek Krejci77a8bcd2019-09-11 11:20:02 +02001251}
1252
Michal Vasko7c8439f2020-08-05 13:25:19 +02001253static LY_ERR
aPiecekc3e26142021-06-22 14:25:49 +02001254lys_resolve_import_include(struct lys_parser_ctx *pctx, struct lysp_module *pmod, struct ly_set *new_mods)
Michal Vasko7c8439f2020-08-05 13:25:19 +02001255{
1256 struct lysp_import *imp;
Michal Vasko7c8439f2020-08-05 13:25:19 +02001257 LY_ARRAY_COUNT_TYPE u, v;
1258
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001259 pmod->parsing = 1;
1260 LY_ARRAY_FOR(pmod->imports, u) {
1261 imp = &pmod->imports[u];
Michal Vasko7c8439f2020-08-05 13:25:19 +02001262 if (!imp->module) {
aPiecekc3e26142021-06-22 14:25:49 +02001263 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 +02001264
1265 if (!imp->rev[0]) {
1266 /* This module must be selected for the next similar
1267 * import without revision-date to avoid incorrect
1268 * derived identities in the ::lys_module.identities.
1269 */
1270 imp->module->latest_revision |= LYS_MOD_IMPORTED_REV;
1271 }
Michal Vasko7c8439f2020-08-05 13:25:19 +02001272 }
1273 /* check for importing the same module twice */
1274 for (v = 0; v < u; ++v) {
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001275 if (imp->module == pmod->imports[v].module) {
Michal Vasko7c8439f2020-08-05 13:25:19 +02001276 LOGWRN(PARSER_CTX(pctx), "Single revision of the module \"%s\" imported twice.", imp->name);
1277 }
1278 }
1279 }
aPiecekc3e26142021-06-22 14:25:49 +02001280 LY_CHECK_RET(lysp_load_submodules(pctx, pmod, new_mods));
Radek Krejci771928a2021-01-19 13:42:36 +01001281
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001282 pmod->parsing = 0;
Michal Vasko7c8439f2020-08-05 13:25:19 +02001283
1284 return LY_SUCCESS;
1285}
1286
Michal Vasko3a41dff2020-07-15 14:30:28 +02001287LY_ERR
Michal Vasko7a0b0762020-09-02 16:37:01 +02001288lys_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 +02001289 LY_ERR (*custom_check)(const struct ly_ctx *, struct lysp_module *, struct lysp_submodule *, void *),
aPiecekc3e26142021-06-22 14:25:49 +02001290 void *check_data, struct ly_set *new_mods, struct lysp_submodule **submodule)
Radek Krejci9f5e6fb2018-10-25 09:26:12 +02001291{
Michal Vasko3a41dff2020-07-15 14:30:28 +02001292 LY_ERR ret;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001293 struct lysp_submodule *submod = NULL, *latest_sp;
Michal Vaskob36053d2020-03-26 15:49:30 +01001294 struct lys_yang_parser_ctx *yangctx = NULL;
1295 struct lys_yin_parser_ctx *yinctx = NULL;
1296 struct lys_parser_ctx *pctx;
Michal Vaskoc636ea42022-09-16 10:20:31 +02001297 struct lysf_ctx fctx = {.ctx = ctx};
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001298
Michal Vasko3a41dff2020-07-15 14:30:28 +02001299 LY_CHECK_ARG_RET(ctx, ctx, in, LY_EINVAL);
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001300
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001301 switch (format) {
1302 case LYS_IN_YIN:
Michal Vasko63f3d842020-07-08 10:10:14 +02001303 ret = yin_parse_submodule(&yinctx, ctx, main_ctx, in, &submod);
Michal Vaskob36053d2020-03-26 15:49:30 +01001304 pctx = (struct lys_parser_ctx *)yinctx;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001305 break;
1306 case LYS_IN_YANG:
Michal Vasko63f3d842020-07-08 10:10:14 +02001307 ret = yang_parse_submodule(&yangctx, ctx, main_ctx, in, &submod);
Michal Vaskob36053d2020-03-26 15:49:30 +01001308 pctx = (struct lys_parser_ctx *)yangctx;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001309 break;
1310 default:
David Sedlák4f2f5ba2019-08-15 13:18:48 +02001311 LOGERR(ctx, LY_EINVAL, "Invalid schema input format.");
Radek Krejci82fa8d42020-07-11 22:00:59 +02001312 ret = LY_EINVAL;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001313 break;
Radek Krejci9f5e6fb2018-10-25 09:26:12 +02001314 }
Radek Krejcif6923e82020-07-02 16:36:53 +02001315 LY_CHECK_GOTO(ret, error);
Radek Krejcif027df72020-09-15 13:00:28 +02001316 assert(submod);
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001317
1318 /* make sure that the newest revision is at position 0 */
1319 lysp_sort_revisions(submod->revs);
1320
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001321 /* decide the latest revision */
Michal Vasko8dc31992021-02-22 10:30:47 +01001322 latest_sp = (struct lysp_submodule *)ly_ctx_get_submodule2_latest(submod->mod, submod->name);
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001323 if (latest_sp) {
1324 if (submod->revs) {
1325 if (!latest_sp->revs) {
1326 /* latest has no revision, so mod is anyway newer */
1327 submod->latest_revision = latest_sp->latest_revision;
Radek Krejcib3289d62019-09-18 12:21:39 +02001328 /* the latest_sp is zeroed later when the new module is being inserted into the context */
1329 } else if (strcmp(submod->revs[0].date, latest_sp->revs[0].date) > 0) {
1330 submod->latest_revision = latest_sp->latest_revision;
1331 /* the latest_sp is zeroed later when the new module is being inserted into the context */
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001332 } else {
Radek Krejcib3289d62019-09-18 12:21:39 +02001333 latest_sp = NULL;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001334 }
Radek Krejcib3289d62019-09-18 12:21:39 +02001335 } else {
1336 latest_sp = NULL;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001337 }
1338 } else {
1339 submod->latest_revision = 1;
1340 }
1341
Radek Krejcib3289d62019-09-18 12:21:39 +02001342 if (custom_check) {
Michal Vasko7c8439f2020-08-05 13:25:19 +02001343 LY_CHECK_GOTO(ret = custom_check(ctx, NULL, submod, check_data), error);
Radek Krejcib3289d62019-09-18 12:21:39 +02001344 }
1345
1346 if (latest_sp) {
1347 latest_sp->latest_revision = 0;
1348 }
1349
Michal Vasko7a0b0762020-09-02 16:37:01 +02001350 lys_parser_fill_filepath(ctx, in, &submod->filepath);
1351
Michal Vasko7c8439f2020-08-05 13:25:19 +02001352 /* resolve imports and includes */
aPiecekc3e26142021-06-22 14:25:49 +02001353 LY_CHECK_GOTO(ret = lys_resolve_import_include(pctx, (struct lysp_module *)submod, new_mods), error);
Michal Vasko7c8439f2020-08-05 13:25:19 +02001354
David Sedlák1b623122019-08-05 15:27:49 +02001355 if (format == LYS_IN_YANG) {
Michal Vaskob36053d2020-03-26 15:49:30 +01001356 yang_parser_ctx_free(yangctx);
David Sedlák1b623122019-08-05 15:27:49 +02001357 } else {
Michal Vaskob36053d2020-03-26 15:49:30 +01001358 yin_parser_ctx_free(yinctx);
David Sedlák1b623122019-08-05 15:27:49 +02001359 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02001360 *submodule = submod;
1361 return LY_SUCCESS;
David Sedlák1b623122019-08-05 15:27:49 +02001362
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001363error:
Radek Krejcic64661b2020-08-15 15:42:26 +02001364 if (!submod || !submod->name) {
1365 LOGERR(ctx, ret, "Parsing submodule failed.");
1366 } else {
1367 LOGERR(ctx, ret, "Parsing submodule \"%s\" failed.", submod->name);
1368 }
Michal Vaskoc636ea42022-09-16 10:20:31 +02001369 lysp_module_free(&fctx, (struct lysp_module *)submod);
David Sedlák1b623122019-08-05 15:27:49 +02001370 if (format == LYS_IN_YANG) {
Michal Vaskob36053d2020-03-26 15:49:30 +01001371 yang_parser_ctx_free(yangctx);
David Sedlák1b623122019-08-05 15:27:49 +02001372 } else {
Michal Vaskob36053d2020-03-26 15:49:30 +01001373 yin_parser_ctx_free(yinctx);
David Sedlák1b623122019-08-05 15:27:49 +02001374 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02001375 return ret;
Radek Krejci9f5e6fb2018-10-25 09:26:12 +02001376}
1377
Michal Vasko45b521c2020-11-04 17:14:39 +01001378/**
1379 * @brief Add ietf-netconf metadata to the parsed module. Operation, filter, and select are added.
1380 *
1381 * @param[in] mod Parsed module to add to.
1382 * @return LY_SUCCESS on success.
1383 * @return LY_ERR on error.
1384 */
1385static LY_ERR
1386lys_parsed_add_internal_ietf_netconf(struct lysp_module *mod)
1387{
1388 struct lysp_ext_instance *ext_p;
1389 struct lysp_stmt *stmt;
1390 struct lysp_import *imp;
1391
1392 /*
1393 * 1) edit-config's operation
1394 */
1395 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->exts, ext_p, LY_EMEM);
1396 LY_CHECK_ERR_RET(!ext_p, LOGMEM(mod->mod->ctx), LY_EMEM);
1397 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_:annotation", 0, &ext_p->name));
1398 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "operation", 0, &ext_p->argument));
Radek Krejci8df109d2021-04-23 12:19:08 +02001399 ext_p->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001400 ext_p->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001401 ext_p->flags = LYS_INTERNAL;
Radek Krejciab430862021-03-02 20:13:40 +01001402 ext_p->parent_stmt = LY_STMT_MODULE;
1403 ext_p->parent_stmt_index = 0;
Michal Vasko45b521c2020-11-04 17:14:39 +01001404
1405 ext_p->child = stmt = calloc(1, sizeof *ext_p->child);
1406 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1407 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "type", 0, &stmt->stmt));
1408 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enumeration", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001409 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001410 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001411 stmt->kw = LY_STMT_TYPE;
1412
1413 stmt->child = calloc(1, sizeof *stmt->child);
1414 stmt = stmt->child;
1415 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1416 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
1417 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "merge", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001418 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001419 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001420 stmt->kw = LY_STMT_ENUM;
1421
1422 stmt->next = calloc(1, sizeof *stmt->child);
1423 stmt = stmt->next;
1424 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1425 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
1426 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "replace", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001427 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001428 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001429 stmt->kw = LY_STMT_ENUM;
1430
1431 stmt->next = calloc(1, sizeof *stmt->child);
1432 stmt = stmt->next;
1433 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1434 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
1435 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "create", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001436 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001437 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001438 stmt->kw = LY_STMT_ENUM;
1439
1440 stmt->next = calloc(1, sizeof *stmt->child);
1441 stmt = stmt->next;
1442 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1443 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
1444 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "delete", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001445 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001446 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001447 stmt->kw = LY_STMT_ENUM;
1448
1449 stmt->next = calloc(1, sizeof *stmt->child);
1450 stmt = stmt->next;
1451 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1452 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
1453 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "remove", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001454 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001455 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001456 stmt->kw = LY_STMT_ENUM;
1457
1458 /*
1459 * 2) filter's type
1460 */
1461 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->exts, ext_p, LY_EMEM);
1462 LY_CHECK_ERR_RET(!ext_p, LOGMEM(mod->mod->ctx), LY_EMEM);
1463 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_:annotation", 0, &ext_p->name));
1464 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "type", 0, &ext_p->argument));
Radek Krejci8df109d2021-04-23 12:19:08 +02001465 ext_p->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001466 ext_p->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001467 ext_p->flags = LYS_INTERNAL;
Radek Krejciab430862021-03-02 20:13:40 +01001468 ext_p->parent_stmt = LY_STMT_MODULE;
1469 ext_p->parent_stmt_index = 0;
Michal Vasko45b521c2020-11-04 17:14:39 +01001470
1471 ext_p->child = stmt = calloc(1, sizeof *ext_p->child);
1472 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1473 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "type", 0, &stmt->stmt));
1474 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enumeration", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001475 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001476 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001477 stmt->kw = LY_STMT_TYPE;
1478
1479 stmt->child = calloc(1, sizeof *stmt->child);
1480 stmt = stmt->child;
1481 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1482 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
1483 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "subtree", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001484 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001485 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001486 stmt->kw = LY_STMT_ENUM;
1487
1488 stmt->next = calloc(1, sizeof *stmt->child);
1489 stmt = stmt->next;
1490 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1491 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
1492 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "xpath", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001493 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001494 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001495 stmt->kw = LY_STMT_ENUM;
1496
1497 /* if-feature for enum allowed only for YANG 1.1 modules */
1498 if (mod->version >= LYS_VERSION_1_1) {
1499 stmt->child = calloc(1, sizeof *stmt->child);
1500 stmt = stmt->child;
1501 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1502 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "if-feature", 0, &stmt->stmt));
1503 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "xpath", 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_IF_FEATURE;
1507 }
1508
1509 /*
1510 * 3) filter's select
1511 */
1512 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->exts, ext_p, LY_EMEM);
1513 LY_CHECK_ERR_RET(!ext_p, LOGMEM(mod->mod->ctx), LY_EMEM);
1514 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_:annotation", 0, &ext_p->name));
1515 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "select", 0, &ext_p->argument));
Radek Krejci8df109d2021-04-23 12:19:08 +02001516 ext_p->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001517 ext_p->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001518 ext_p->flags = LYS_INTERNAL;
Radek Krejciab430862021-03-02 20:13:40 +01001519 ext_p->parent_stmt = LY_STMT_MODULE;
1520 ext_p->parent_stmt_index = 0;
Michal Vasko45b521c2020-11-04 17:14:39 +01001521
1522 ext_p->child = stmt = calloc(1, sizeof *ext_p->child);
1523 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1524 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "type", 0, &stmt->stmt));
1525 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "yang_:xpath1.0", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001526 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001527 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001528 stmt->kw = LY_STMT_TYPE;
1529
1530 /* create new imports for the used prefixes */
1531 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->imports, imp, LY_EMEM);
1532
1533 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "ietf-yang-metadata", 0, &imp->name));
1534 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_", 0, &imp->prefix));
1535 imp->flags = LYS_INTERNAL;
1536
1537 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->imports, imp, LY_EMEM);
1538
1539 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "ietf-yang-types", 0, &imp->name));
1540 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "yang_", 0, &imp->prefix));
1541 imp->flags = LYS_INTERNAL;
1542
1543 return LY_SUCCESS;
1544}
1545
1546/**
1547 * @brief Add ietf-netconf-with-defaults "default" metadata to the parsed module.
1548 *
1549 * @param[in] mod Parsed module to add to.
1550 * @return LY_SUCCESS on success.
1551 * @return LY_ERR on error.
1552 */
1553static LY_ERR
1554lys_parsed_add_internal_ietf_netconf_with_defaults(struct lysp_module *mod)
1555{
1556 struct lysp_ext_instance *ext_p;
1557 struct lysp_stmt *stmt;
1558 struct lysp_import *imp;
1559
1560 /* add new extension instance */
1561 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->exts, ext_p, LY_EMEM);
1562
1563 /* fill in the extension instance fields */
1564 LY_CHECK_ERR_RET(!ext_p, LOGMEM(mod->mod->ctx), LY_EMEM);
1565 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_:annotation", 0, &ext_p->name));
1566 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "default", 0, &ext_p->argument));
Radek Krejci8df109d2021-04-23 12:19:08 +02001567 ext_p->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001568 ext_p->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001569 ext_p->flags = LYS_INTERNAL;
Radek Krejciab430862021-03-02 20:13:40 +01001570 ext_p->parent_stmt = LY_STMT_MODULE;
1571 ext_p->parent_stmt_index = 0;
Michal Vasko45b521c2020-11-04 17:14:39 +01001572
1573 ext_p->child = stmt = calloc(1, sizeof *ext_p->child);
1574 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1575 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "type", 0, &stmt->stmt));
1576 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "boolean", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001577 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001578 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001579 stmt->kw = LY_STMT_TYPE;
1580
1581 /* create new import for the used prefix */
1582 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->imports, imp, LY_EMEM);
1583
1584 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "ietf-yang-metadata", 0, &imp->name));
1585 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_", 0, &imp->prefix));
1586 imp->flags = LYS_INTERNAL;
1587
1588 return LY_SUCCESS;
1589}
1590
Michal Vasko3a41dff2020-07-15 14:30:28 +02001591LY_ERR
Michal Vasko4e205e82021-06-08 14:01:47 +02001592lys_parse_in(struct ly_ctx *ctx, struct ly_in *in, LYS_INFORMAT format,
Radek Krejci1deb5be2020-08-26 16:43:36 +02001593 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 +02001594 void *check_data, struct ly_set *new_mods, struct lys_module **module)
Radek Krejci86d106e2018-10-18 09:53:19 +02001595{
Michal Vaskoa9309bb2021-07-09 09:31:55 +02001596 struct lys_module *mod = NULL, *latest, *mod_dup = NULL;
Michal Vasko3a41dff2020-07-15 14:30:28 +02001597 LY_ERR ret;
Michal Vaskob36053d2020-03-26 15:49:30 +01001598 struct lys_yang_parser_ctx *yangctx = NULL;
1599 struct lys_yin_parser_ctx *yinctx = NULL;
Radek Krejcif6923e82020-07-02 16:36:53 +02001600 struct lys_parser_ctx *pctx = NULL;
Michal Vaskoc636ea42022-09-16 10:20:31 +02001601 struct lysf_ctx fctx = {.ctx = ctx};
Michal Vasko7a0b0762020-09-02 16:37:01 +02001602 char *filename, *rev, *dot;
1603 size_t len;
Radek Krejcic64661b2020-08-15 15:42:26 +02001604 ly_bool module_created = 0;
Radek Krejci86d106e2018-10-18 09:53:19 +02001605
Michal Vaskodd992582021-06-10 14:34:57 +02001606 assert(ctx && in && new_mods);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001607
Michal Vasko7a0b0762020-09-02 16:37:01 +02001608 if (module) {
1609 *module = NULL;
1610 }
Radek Krejci86d106e2018-10-18 09:53:19 +02001611
1612 mod = calloc(1, sizeof *mod);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001613 LY_CHECK_ERR_RET(!mod, LOGMEM(ctx), LY_EMEM);
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001614 mod->ctx = ctx;
Radek Krejci86d106e2018-10-18 09:53:19 +02001615
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001616 /* parse */
Radek Krejci86d106e2018-10-18 09:53:19 +02001617 switch (format) {
1618 case LYS_IN_YIN:
aPiecekc3e26142021-06-22 14:25:49 +02001619 ret = yin_parse_module(&yinctx, in, mod);
Michal Vaskob36053d2020-03-26 15:49:30 +01001620 pctx = (struct lys_parser_ctx *)yinctx;
Radek Krejci86d106e2018-10-18 09:53:19 +02001621 break;
1622 case LYS_IN_YANG:
aPiecekc3e26142021-06-22 14:25:49 +02001623 ret = yang_parse_module(&yangctx, in, mod);
Michal Vaskob36053d2020-03-26 15:49:30 +01001624 pctx = (struct lys_parser_ctx *)yangctx;
Radek Krejci86d106e2018-10-18 09:53:19 +02001625 break;
1626 default:
1627 LOGERR(ctx, LY_EINVAL, "Invalid schema input format.");
Michal Vasko3a41dff2020-07-15 14:30:28 +02001628 ret = LY_EINVAL;
Radek Krejci86d106e2018-10-18 09:53:19 +02001629 break;
1630 }
Radek Krejcic64661b2020-08-15 15:42:26 +02001631 LY_CHECK_GOTO(ret, cleanup);
Radek Krejci9f5e6fb2018-10-25 09:26:12 +02001632
1633 /* make sure that the newest revision is at position 0 */
1634 lysp_sort_revisions(mod->parsed->revs);
Radek Krejci0af46292019-01-11 16:02:31 +01001635 if (mod->parsed->revs) {
Radek Krejcic64661b2020-08-15 15:42:26 +02001636 LY_CHECK_GOTO(ret = lydict_insert(ctx, mod->parsed->revs[0].date, 0, &mod->revision), cleanup);
Radek Krejci0af46292019-01-11 16:02:31 +01001637 }
Radek Krejci86d106e2018-10-18 09:53:19 +02001638
Radek Krejcib3289d62019-09-18 12:21:39 +02001639 /* decide the latest revision */
Michal Vaskoa51ef072021-07-02 10:40:30 +02001640 latest = ly_ctx_get_module_latest(ctx, mod->name);
Radek Krejcib3289d62019-09-18 12:21:39 +02001641 if (latest) {
1642 if (mod->revision) {
1643 if (!latest->revision) {
1644 /* latest has no revision, so mod is anyway newer */
aPiecek8ca21bd2021-07-26 14:31:01 +02001645 mod->latest_revision = latest->latest_revision & (LYS_MOD_LATEST_REV | LYS_MOD_LATEST_SEARCHDIRS);
Radek Krejcib3289d62019-09-18 12:21:39 +02001646 /* the latest is zeroed later when the new module is being inserted into the context */
1647 } else if (strcmp(mod->revision, latest->revision) > 0) {
aPiecek8ca21bd2021-07-26 14:31:01 +02001648 mod->latest_revision = latest->latest_revision & (LYS_MOD_LATEST_REV | LYS_MOD_LATEST_SEARCHDIRS);
Radek Krejcib3289d62019-09-18 12:21:39 +02001649 /* the latest is zeroed later when the new module is being inserted into the context */
1650 } else {
1651 latest = NULL;
1652 }
1653 } else {
1654 latest = NULL;
1655 }
1656 } else {
aPiecek8ca21bd2021-07-26 14:31:01 +02001657 mod->latest_revision = LYS_MOD_LATEST_REV;
Radek Krejcib3289d62019-09-18 12:21:39 +02001658 }
1659
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001660 if (custom_check) {
Radek Krejcic64661b2020-08-15 15:42:26 +02001661 LY_CHECK_GOTO(ret = custom_check(ctx, mod->parsed, NULL, check_data), cleanup);
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001662 }
1663
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001664 /* check whether it is not already in the context in the same revision */
Michal Vaskoa51ef072021-07-02 10:40:30 +02001665 mod_dup = ly_ctx_get_module(ctx, mod->name, mod->revision);
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001666 if (mod_dup) {
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001667 /* nothing to do */
1668 LOGVRB("Module \"%s@%s\" is already present in the context.", mod_dup->name,
1669 mod_dup->revision ? mod_dup->revision : "<none>");
Radek Krejcic64661b2020-08-15 15:42:26 +02001670 goto cleanup;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001671 }
Radek Krejci86d106e2018-10-18 09:53:19 +02001672
Michal Vaskob24145d2022-07-13 18:34:39 +02001673 /* check whether there is not a namespace collision */
1674 mod_dup = ly_ctx_get_module_latest_ns(ctx, mod->ns);
1675 if (mod_dup && (mod_dup->revision == mod->revision)) {
1676 LOGERR(ctx, LY_EINVAL, "Two different modules (\"%s\" and \"%s\") have the same namespace \"%s\".",
1677 mod_dup->name, mod->name, mod->ns);
1678 ret = LY_EINVAL;
1679 goto cleanup;
1680 }
1681
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001682 switch (in->type) {
1683 case LY_IN_FILEPATH:
1684 /* check that name and revision match filename */
1685 filename = strrchr(in->method.fpath.filepath, '/');
1686 if (!filename) {
1687 filename = in->method.fpath.filepath;
1688 } else {
1689 filename++;
1690 }
1691 rev = strchr(filename, '@');
1692 dot = strrchr(filename, '.');
1693
1694 /* name */
1695 len = strlen(mod->name);
1696 if (strncmp(filename, mod->name, len) ||
Michal Vasko69730152020-10-09 16:30:07 +02001697 ((rev && (rev != &filename[len])) || (!rev && (dot != &filename[len])))) {
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001698 LOGWRN(ctx, "File name \"%s\" does not match module name \"%s\".", filename, mod->name);
1699 }
1700 if (rev) {
1701 len = dot - ++rev;
Radek Krejcif13b87b2020-12-01 22:02:17 +01001702 if (!mod->parsed->revs || (len != LY_REV_SIZE - 1) || strncmp(mod->parsed->revs[0].date, rev, len)) {
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001703 LOGWRN(ctx, "File name \"%s\" does not match module revision \"%s\".", filename,
Michal Vasko69730152020-10-09 16:30:07 +02001704 mod->parsed->revs ? mod->parsed->revs[0].date : "none");
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001705 }
1706 }
1707
1708 break;
1709 case LY_IN_FD:
1710 case LY_IN_FILE:
1711 case LY_IN_MEMORY:
1712 /* nothing special to do */
1713 break;
Michal Vasko7a0b0762020-09-02 16:37:01 +02001714 case LY_IN_ERROR:
1715 LOGINT(ctx);
1716 ret = LY_EINT;
Radek Krejcic64661b2020-08-15 15:42:26 +02001717 goto cleanup;
Radek Krejci096235c2019-01-11 11:12:19 +01001718 }
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001719 lys_parser_fill_filepath(ctx, in, &mod->filepath);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001720
Michal Vasko7a0b0762020-09-02 16:37:01 +02001721 if (latest) {
aPiecek8ca21bd2021-07-26 14:31:01 +02001722 latest->latest_revision &= ~(LYS_MOD_LATEST_REV | LYS_MOD_LATEST_SEARCHDIRS);
Michal Vasko7a0b0762020-09-02 16:37:01 +02001723 }
1724
Michal Vasko45b521c2020-11-04 17:14:39 +01001725 /* add internal data in case specific modules were parsed */
1726 if (!strcmp(mod->name, "ietf-netconf")) {
Radek Krejcic64661b2020-08-15 15:42:26 +02001727 LY_CHECK_GOTO(ret = lys_parsed_add_internal_ietf_netconf(mod->parsed), cleanup);
Michal Vasko45b521c2020-11-04 17:14:39 +01001728 } else if (!strcmp(mod->name, "ietf-netconf-with-defaults")) {
Radek Krejcic64661b2020-08-15 15:42:26 +02001729 LY_CHECK_GOTO(ret = lys_parsed_add_internal_ietf_netconf_with_defaults(mod->parsed), cleanup);
Michal Vasko45b521c2020-11-04 17:14:39 +01001730 }
1731
Michal Vasko405cc9e2020-12-01 12:01:27 +01001732 /* add the module into newly created module set, will also be freed from there on any error */
Radek Krejcic64661b2020-08-15 15:42:26 +02001733 LY_CHECK_GOTO(ret = ly_set_add(new_mods, mod, 1, NULL), cleanup);
1734 module_created = 1;
Michal Vasko405cc9e2020-12-01 12:01:27 +01001735
Michal Vasko7a0b0762020-09-02 16:37:01 +02001736 /* add into context */
Radek Krejci3d92e442020-10-12 12:48:13 +02001737 ret = ly_set_add(&ctx->list, mod, 1, NULL);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001738 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko794ab4b2021-03-31 09:42:19 +02001739 ctx->change_count++;
Michal Vasko7a0b0762020-09-02 16:37:01 +02001740
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001741 /* resolve includes and all imports */
aPiecekc3e26142021-06-22 14:25:49 +02001742 LY_CHECK_GOTO(ret = lys_resolve_import_include(pctx, mod->parsed, new_mods), cleanup);
Michal Vasko7a0b0762020-09-02 16:37:01 +02001743
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001744 /* check name collisions */
Michal Vasko405cc9e2020-12-01 12:01:27 +01001745 LY_CHECK_GOTO(ret = lysp_check_dup_typedefs(pctx, mod->parsed), cleanup);
aPiecek63e080d2021-06-29 13:53:28 +02001746 LY_CHECK_GOTO(ret = lysp_check_dup_groupings(pctx, mod->parsed), cleanup);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001747 LY_CHECK_GOTO(ret = lysp_check_dup_features(pctx, mod->parsed), cleanup);
1748 LY_CHECK_GOTO(ret = lysp_check_dup_identities(pctx, mod->parsed), cleanup);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001749
1750 /* compile features */
Michal Vasko405cc9e2020-12-01 12:01:27 +01001751 LY_CHECK_GOTO(ret = lys_compile_feature_iffeatures(mod->parsed), cleanup);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001752
aPiecek6b3d5422021-07-30 15:55:43 +02001753 /* compile identities */
1754 LY_CHECK_GOTO(ret = lys_compile_identities(mod), cleanup);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001755
Michal Vasko405cc9e2020-12-01 12:01:27 +01001756 /* success */
Michal Vasko7a0b0762020-09-02 16:37:01 +02001757
Radek Krejcic64661b2020-08-15 15:42:26 +02001758cleanup:
Michal Vaskobe04af42021-07-16 10:48:43 +02001759 if (ret && (ret != LY_EEXIST)) {
Radek Krejcic64661b2020-08-15 15:42:26 +02001760 if (mod && mod->name) {
1761 /* there are cases when path is not available for parsing error, so this additional
1762 * message tries to add information about the module where the error occurred */
1763 struct ly_err_item *e = ly_err_last(ctx);
Michal Vasko26bbb272022-08-02 14:54:33 +02001764
Radek Krejcic64661b2020-08-15 15:42:26 +02001765 if (e && (!e->path || !strncmp(e->path, "Line ", ly_strlen_const("Line ")))) {
1766 LOGERR(ctx, ret, "Parsing module \"%s\" failed.", mod->name);
1767 }
1768 }
1769 }
1770 if (!module_created) {
Michal Vaskoc636ea42022-09-16 10:20:31 +02001771 fctx.mod = mod;
1772 lys_module_free(&fctx, mod, 0);
1773 lysf_ctx_erase(&fctx);
1774
Michal Vasko0e02e8e2021-02-26 15:01:55 +01001775 mod = mod_dup;
1776 }
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001777
Michal Vasko7a0b0762020-09-02 16:37:01 +02001778 if (format == LYS_IN_YANG) {
1779 yang_parser_ctx_free(yangctx);
1780 } else {
1781 yin_parser_ctx_free(yinctx);
1782 }
1783
Michal Vasko405cc9e2020-12-01 12:01:27 +01001784 if (!ret && module) {
1785 *module = mod;
1786 }
Michal Vasko7a0b0762020-09-02 16:37:01 +02001787 return ret;
1788}
1789
Radek Krejci545b4872020-11-15 10:15:12 +01001790static LYS_INFORMAT
1791lys_parse_get_format(const struct ly_in *in, LYS_INFORMAT format)
1792{
1793 if (!format && (in->type == LY_IN_FILEPATH)) {
1794 /* unknown format - try to detect it from filename's suffix */
1795 const char *path = in->method.fpath.filepath;
1796 size_t len = strlen(path);
1797
1798 /* ignore trailing whitespaces */
1799 for ( ; len > 0 && isspace(path[len - 1]); len--) {}
1800
Radek Krejcif13b87b2020-12-01 22:02:17 +01001801 if ((len >= LY_YANG_SUFFIX_LEN + 1) &&
1802 !strncmp(&path[len - LY_YANG_SUFFIX_LEN], LY_YANG_SUFFIX, LY_YANG_SUFFIX_LEN)) {
Radek Krejci545b4872020-11-15 10:15:12 +01001803 format = LYS_IN_YANG;
Radek Krejcif13b87b2020-12-01 22:02:17 +01001804 } else if ((len >= LY_YIN_SUFFIX_LEN + 1) &&
1805 !strncmp(&path[len - LY_YIN_SUFFIX_LEN], LY_YIN_SUFFIX, LY_YIN_SUFFIX_LEN)) {
Radek Krejci545b4872020-11-15 10:15:12 +01001806 format = LYS_IN_YIN;
1807 } /* else still unknown */
1808 }
1809
1810 return format;
1811}
1812
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001813LIBYANG_API_DEF LY_ERR
Michal Vasko4de7d072021-07-09 09:13:18 +02001814lys_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 +02001815{
Michal Vasko65333882021-06-10 14:12:16 +02001816 LY_ERR ret = LY_SUCCESS;
Michal Vasko4e205e82021-06-08 14:01:47 +02001817 struct lys_module *mod;
Michal Vasko405cc9e2020-12-01 12:01:27 +01001818
Michal Vasko7a0b0762020-09-02 16:37:01 +02001819 if (module) {
1820 *module = NULL;
1821 }
Radek Krejci545b4872020-11-15 10:15:12 +01001822 LY_CHECK_ARG_RET(NULL, ctx, in, LY_EINVAL);
1823
1824 format = lys_parse_get_format(in, format);
1825 LY_CHECK_ARG_RET(ctx, format, LY_EINVAL);
Michal Vasko7a0b0762020-09-02 16:37:01 +02001826
1827 /* remember input position */
1828 in->func_start = in->current;
1829
Michal Vasko4e205e82021-06-08 14:01:47 +02001830 /* parse */
Michal Vasko22b26222021-07-30 11:16:47 +02001831 ret = lys_parse_in(ctx, in, format, NULL, NULL, &ctx->unres.creating, &mod);
Michal Vasko4e205e82021-06-08 14:01:47 +02001832 LY_CHECK_GOTO(ret, cleanup);
1833
1834 /* implement */
Michal Vasko22b26222021-07-30 11:16:47 +02001835 ret = _lys_set_implemented(mod, features, &ctx->unres);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001836 LY_CHECK_GOTO(ret, cleanup);
1837
Michal Vaskof4258e12021-06-15 12:11:42 +02001838 if (!(ctx->flags & LY_CTX_EXPLICIT_COMPILE)) {
1839 /* create dep set for the module and mark all the modules that will be (re)compiled */
Michal Vasko22b26222021-07-30 11:16:47 +02001840 LY_CHECK_GOTO(ret = lys_unres_dep_sets_create(ctx, &ctx->unres.dep_sets, mod), cleanup);
Michal Vaskof4258e12021-06-15 12:11:42 +02001841
Michal Vasko709f9a52021-07-21 10:51:59 +02001842 /* (re)compile the whole dep set (other dep sets will have no modules marked for compilation) */
Michal Vasko22b26222021-07-30 11:16:47 +02001843 LY_CHECK_GOTO(ret = lys_compile_depset_all(ctx, &ctx->unres), cleanup);
1844
1845 /* unres resolved */
1846 lys_unres_glob_erase(&ctx->unres);
Michal Vaskof4258e12021-06-15 12:11:42 +02001847 }
1848
Michal Vasko405cc9e2020-12-01 12:01:27 +01001849cleanup:
1850 if (ret) {
Michal Vasko22b26222021-07-30 11:16:47 +02001851 lys_unres_glob_revert(ctx, &ctx->unres);
1852 lys_unres_glob_erase(&ctx->unres);
Michal Vasko87f1cf02021-06-08 14:02:47 +02001853 } else if (module) {
1854 *module = mod;
Michal Vasko405cc9e2020-12-01 12:01:27 +01001855 }
Michal Vasko405cc9e2020-12-01 12:01:27 +01001856 return ret;
Radek Krejci86d106e2018-10-18 09:53:19 +02001857}
1858
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001859LIBYANG_API_DEF LY_ERR
Michal Vasko4de7d072021-07-09 09:13:18 +02001860lys_parse_mem(struct ly_ctx *ctx, const char *data, LYS_INFORMAT format, struct lys_module **module)
Radek Krejci86d106e2018-10-18 09:53:19 +02001861{
Radek Krejci0f969882020-08-21 16:56:47 +02001862 LY_ERR ret;
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001863 struct ly_in *in = NULL;
Radek Krejci86d106e2018-10-18 09:53:19 +02001864
Michal Vasko3a41dff2020-07-15 14:30:28 +02001865 LY_CHECK_ARG_RET(ctx, data, format != LYS_IN_UNKNOWN, LY_EINVAL);
Radek Krejci65639b92018-11-27 10:51:37 +01001866
Michal Vasko3a41dff2020-07-15 14:30:28 +02001867 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 +02001868
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001869 ret = lys_parse(ctx, in, format, NULL, module);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001870 ly_in_free(in, 0);
Radek Krejci86d106e2018-10-18 09:53:19 +02001871
Michal Vasko3a41dff2020-07-15 14:30:28 +02001872 return ret;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001873}
1874
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001875LIBYANG_API_DEF LY_ERR
Michal Vasko4de7d072021-07-09 09:13:18 +02001876lys_parse_fd(struct ly_ctx *ctx, int fd, LYS_INFORMAT format, struct lys_module **module)
Radek Krejci86d106e2018-10-18 09:53:19 +02001877{
Radek Krejci0f969882020-08-21 16:56:47 +02001878 LY_ERR ret;
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001879 struct ly_in *in = NULL;
Radek Krejci86d106e2018-10-18 09:53:19 +02001880
Michal Vasko3a41dff2020-07-15 14:30:28 +02001881 LY_CHECK_ARG_RET(ctx, fd > -1, format != LYS_IN_UNKNOWN, LY_EINVAL);
Radek Krejci86d106e2018-10-18 09:53:19 +02001882
Michal Vasko3a41dff2020-07-15 14:30:28 +02001883 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 +02001884
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001885 ret = lys_parse(ctx, in, format, NULL, module);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001886 ly_in_free(in, 0);
Radek Krejci86d106e2018-10-18 09:53:19 +02001887
Michal Vasko3a41dff2020-07-15 14:30:28 +02001888 return ret;
Radek Krejci86d106e2018-10-18 09:53:19 +02001889}
1890
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001891LIBYANG_API_DEF LY_ERR
Michal Vasko4de7d072021-07-09 09:13:18 +02001892lys_parse_path(struct ly_ctx *ctx, const char *path, LYS_INFORMAT format, struct lys_module **module)
Radek Krejcid33273d2018-10-25 14:55:52 +02001893{
Radek Krejci0f969882020-08-21 16:56:47 +02001894 LY_ERR ret;
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001895 struct ly_in *in = NULL;
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001896
Michal Vasko3a41dff2020-07-15 14:30:28 +02001897 LY_CHECK_ARG_RET(ctx, path, format != LYS_IN_UNKNOWN, LY_EINVAL);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001898
Michal Vasko3a41dff2020-07-15 14:30:28 +02001899 LY_CHECK_ERR_RET(ret = ly_in_new_filepath(path, 0, &in),
Michal Vasko69730152020-10-09 16:30:07 +02001900 LOGERR(ctx, ret, "Unable to create input handler for filepath %s.", path), ret);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001901
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001902 ret = lys_parse(ctx, in, format, NULL, module);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001903 ly_in_free(in, 0);
1904
Michal Vasko3a41dff2020-07-15 14:30:28 +02001905 return ret;
Radek Krejcid33273d2018-10-25 14:55:52 +02001906}
1907
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001908LIBYANG_API_DEF LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02001909lys_search_localfile(const char * const *searchpaths, ly_bool cwd, const char *name, const char *revision,
Radek Krejci0f969882020-08-21 16:56:47 +02001910 char **localfile, LYS_INFORMAT *format)
Radek Krejcid33273d2018-10-25 14:55:52 +02001911{
Radek Krejci1deb5be2020-08-26 16:43:36 +02001912 LY_ERR ret = LY_EMEM;
Radek Krejcid33273d2018-10-25 14:55:52 +02001913 size_t len, flen, match_len = 0, dir_len;
Radek Krejci857189e2020-09-01 13:26:36 +02001914 ly_bool implicit_cwd = 0;
Radek Krejcid33273d2018-10-25 14:55:52 +02001915 char *wd, *wn = NULL;
1916 DIR *dir = NULL;
1917 struct dirent *file;
1918 char *match_name = NULL;
1919 LYS_INFORMAT format_aux, match_format = 0;
1920 struct ly_set *dirs;
1921 struct stat st;
1922
1923 LY_CHECK_ARG_RET(NULL, localfile, LY_EINVAL);
1924
1925 /* start to fill the dir fifo with the context's search path (if set)
1926 * and the current working directory */
Radek Krejciba03a5a2020-08-27 14:40:41 +02001927 LY_CHECK_RET(ly_set_new(&dirs));
Radek Krejcid33273d2018-10-25 14:55:52 +02001928
1929 len = strlen(name);
1930 if (cwd) {
1931 wd = get_current_dir_name();
1932 if (!wd) {
1933 LOGMEM(NULL);
1934 goto cleanup;
1935 } else {
1936 /* add implicit current working directory (./) to be searched,
1937 * this directory is not searched recursively */
Radek Krejciba03a5a2020-08-27 14:40:41 +02001938 ret = ly_set_add(dirs, wd, 0, NULL);
1939 LY_CHECK_GOTO(ret, cleanup);
Radek Krejcid33273d2018-10-25 14:55:52 +02001940 implicit_cwd = 1;
1941 }
1942 }
1943 if (searchpaths) {
Radek Krejci1deb5be2020-08-26 16:43:36 +02001944 for (uint64_t i = 0; searchpaths[i]; i++) {
Radek Krejcid33273d2018-10-25 14:55:52 +02001945 /* check for duplicities with the implicit current working directory */
1946 if (implicit_cwd && !strcmp(dirs->objs[0], searchpaths[i])) {
1947 implicit_cwd = 0;
1948 continue;
1949 }
1950 wd = strdup(searchpaths[i]);
1951 if (!wd) {
1952 LOGMEM(NULL);
1953 goto cleanup;
Radek Krejciba03a5a2020-08-27 14:40:41 +02001954 } else {
1955 ret = ly_set_add(dirs, wd, 0, NULL);
1956 LY_CHECK_GOTO(ret, cleanup);
Radek Krejcid33273d2018-10-25 14:55:52 +02001957 }
1958 }
1959 }
1960 wd = NULL;
1961
1962 /* start searching */
1963 while (dirs->count) {
1964 free(wd);
1965 free(wn); wn = NULL;
1966
1967 dirs->count--;
1968 wd = (char *)dirs->objs[dirs->count];
1969 dirs->objs[dirs->count] = NULL;
Radek Krejcieeee95c2021-01-19 10:57:22 +01001970 LOGVRB("Searching for \"%s\" in \"%s\".", name, wd);
Radek Krejcid33273d2018-10-25 14:55:52 +02001971
1972 if (dir) {
1973 closedir(dir);
1974 }
1975 dir = opendir(wd);
1976 dir_len = strlen(wd);
1977 if (!dir) {
1978 LOGWRN(NULL, "Unable to open directory \"%s\" for searching (sub)modules (%s).", wd, strerror(errno));
1979 } else {
1980 while ((file = readdir(dir))) {
1981 if (!strcmp(".", file->d_name) || !strcmp("..", file->d_name)) {
1982 /* skip . and .. */
1983 continue;
1984 }
1985 free(wn);
1986 if (asprintf(&wn, "%s/%s", wd, file->d_name) == -1) {
1987 LOGMEM(NULL);
1988 goto cleanup;
1989 }
1990 if (stat(wn, &st) == -1) {
1991 LOGWRN(NULL, "Unable to get information about \"%s\" file in \"%s\" when searching for (sub)modules (%s)",
Michal Vasko69730152020-10-09 16:30:07 +02001992 file->d_name, wd, strerror(errno));
Radek Krejcid33273d2018-10-25 14:55:52 +02001993 continue;
1994 }
1995 if (S_ISDIR(st.st_mode) && (dirs->count || !implicit_cwd)) {
1996 /* we have another subdirectory in searchpath to explore,
1997 * subdirectories are not taken into account in current working dir (dirs->set.g[0]) */
Radek Krejciba03a5a2020-08-27 14:40:41 +02001998 ret = ly_set_add(dirs, wn, 0, NULL);
1999 LY_CHECK_GOTO(ret, cleanup);
2000
Radek Krejcid33273d2018-10-25 14:55:52 +02002001 /* continue with the next item in current directory */
2002 wn = NULL;
2003 continue;
2004 } else if (!S_ISREG(st.st_mode)) {
2005 /* not a regular file (note that we see the target of symlinks instead of symlinks */
2006 continue;
2007 }
2008
2009 /* here we know that the item is a file which can contain a module */
2010 if (strncmp(name, file->d_name, len) ||
Michal Vasko69730152020-10-09 16:30:07 +02002011 ((file->d_name[len] != '.') && (file->d_name[len] != '@'))) {
Radek Krejcid33273d2018-10-25 14:55:52 +02002012 /* different filename than the module we search for */
2013 continue;
2014 }
2015
2016 /* get type according to filename suffix */
2017 flen = strlen(file->d_name);
Radek Krejcif13b87b2020-12-01 22:02:17 +01002018 if ((flen >= LY_YANG_SUFFIX_LEN + 1) &&
2019 !strcmp(&file->d_name[flen - LY_YANG_SUFFIX_LEN], LY_YANG_SUFFIX)) {
Radek Krejcid33273d2018-10-25 14:55:52 +02002020 format_aux = LYS_IN_YANG;
Radek Krejcif13b87b2020-12-01 22:02:17 +01002021 } else if ((flen >= LY_YIN_SUFFIX_LEN + 1) &&
2022 !strcmp(&file->d_name[flen - LY_YIN_SUFFIX_LEN], LY_YIN_SUFFIX)) {
Radek Krejci01a937f2020-11-15 10:14:12 +01002023 format_aux = LYS_IN_YIN;
Radek Krejcid33273d2018-10-25 14:55:52 +02002024 } else {
2025 /* not supportde suffix/file format */
2026 continue;
2027 }
2028
2029 if (revision) {
2030 /* we look for the specific revision, try to get it from the filename */
2031 if (file->d_name[len] == '@') {
2032 /* check revision from the filename */
2033 if (strncmp(revision, &file->d_name[len + 1], strlen(revision))) {
2034 /* another revision */
2035 continue;
2036 } else {
2037 /* exact revision */
2038 free(match_name);
2039 match_name = wn;
2040 wn = NULL;
2041 match_len = dir_len + 1 + len;
2042 match_format = format_aux;
2043 goto success;
2044 }
2045 } else {
2046 /* continue trying to find exact revision match, use this only if not found */
2047 free(match_name);
2048 match_name = wn;
2049 wn = NULL;
Michal Vasko44f3d2c2020-08-24 09:49:38 +02002050 match_len = dir_len + 1 + len;
Radek Krejcid33273d2018-10-25 14:55:52 +02002051 match_format = format_aux;
2052 continue;
2053 }
2054 } else {
2055 /* remember the revision and try to find the newest one */
2056 if (match_name) {
Michal Vasko69730152020-10-09 16:30:07 +02002057 if ((file->d_name[len] != '@') ||
Radek Krejcif13b87b2020-12-01 22:02:17 +01002058 lysp_check_date(NULL, &file->d_name[len + 1],
2059 flen - ((format_aux == LYS_IN_YANG) ? LY_YANG_SUFFIX_LEN : LY_YIN_SUFFIX_LEN) - len - 1, NULL)) {
Radek Krejcid33273d2018-10-25 14:55:52 +02002060 continue;
Michal Vasko69730152020-10-09 16:30:07 +02002061 } else if ((match_name[match_len] == '@') &&
Radek Krejcid33273d2018-10-25 14:55:52 +02002062 (strncmp(&match_name[match_len + 1], &file->d_name[len + 1], LY_REV_SIZE - 1) >= 0)) {
2063 continue;
2064 }
2065 free(match_name);
2066 }
2067
2068 match_name = wn;
2069 wn = NULL;
2070 match_len = dir_len + 1 + len;
2071 match_format = format_aux;
2072 continue;
2073 }
2074 }
2075 }
2076 }
2077
2078success:
2079 (*localfile) = match_name;
2080 match_name = NULL;
2081 if (format) {
2082 (*format) = match_format;
2083 }
Radek Krejci1deb5be2020-08-26 16:43:36 +02002084 ret = LY_SUCCESS;
Radek Krejcid33273d2018-10-25 14:55:52 +02002085
2086cleanup:
2087 free(wn);
2088 free(wd);
2089 if (dir) {
2090 closedir(dir);
2091 }
2092 free(match_name);
2093 ly_set_free(dirs, free);
2094
2095 return ret;
2096}