blob: 831a0551cca20544909d899be485d73b27e77aeb [file] [log] [blame]
Radek Krejci3f5e3db2018-10-11 15:57:47 +02001/**
2 * @file tree_schema.c
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief Schema tree implementation
5 *
6 * Copyright (c) 2015 - 2018 CESNET, z.s.p.o.
7 *
8 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
13 */
Radek Krejcib7db73a2018-10-24 14:18:40 +020014
Radek Krejci535ea9f2020-05-29 16:01:05 +020015#define _GNU_SOURCE
Radek Krejcif8dc59a2020-11-25 13:47:44 +010016#define _POSIX_C_SOURCE 200809L /* strdup */
Radek Krejci535ea9f2020-05-29 16:01:05 +020017
Radek Krejcica376bd2020-06-11 16:04:06 +020018#include "tree_schema.h"
Radek Krejci86d106e2018-10-18 09:53:19 +020019
Radek Krejcie7b95092019-05-15 11:03:07 +020020#include <assert.h>
Radek Krejci545b4872020-11-15 10:15:12 +010021#include <ctype.h>
Radek Krejcid33273d2018-10-25 14:55:52 +020022#include <dirent.h>
Radek Krejci86d106e2018-10-18 09:53:19 +020023#include <errno.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020024#include <stdint.h>
Radek Krejci86d106e2018-10-18 09:53:19 +020025#include <stdio.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020026#include <stdlib.h>
27#include <string.h>
Radek Krejci86d106e2018-10-18 09:53:19 +020028#include <sys/stat.h>
Radek Krejci86d106e2018-10-18 09:53:19 +020029#include <unistd.h>
Radek Krejci3f5e3db2018-10-11 15:57:47 +020030
Radek Krejcica376bd2020-06-11 16:04:06 +020031#include "common.h"
Michal Vasko5aa44c02020-06-29 11:47:02 +020032#include "compat.h"
Radek Krejci86d106e2018-10-18 09:53:19 +020033#include "context.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020034#include "dict.h"
Radek Krejci47fab892020-11-05 17:02:41 +010035#include "in.h"
Michal Vaskoafac7822020-10-20 14:22:26 +020036#include "in_internal.h"
Radek Krejci47fab892020-11-05 17:02:41 +010037#include "log.h"
Radek Krejcif0e1ba52020-05-22 15:14:35 +020038#include "parser_internal.h"
Radek Krejcica376bd2020-06-11 16:04:06 +020039#include "parser_schema.h"
Michal Vasko40308e72020-10-20 16:38:40 +020040#include "path.h"
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020041#include "schema_compile.h"
42#include "schema_compile_amend.h"
Michal Vasko7b1ad1a2020-11-02 15:41:27 +010043#include "schema_features.h"
Radek Krejcica376bd2020-06-11 16:04:06 +020044#include "set.h"
45#include "tree.h"
Radek Krejci47fab892020-11-05 17:02:41 +010046#include "tree_data.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[] = {
54 {NULL, NULL, 0}, /**< LY_STMT_NONE */
55 {"action", "name", STMT_FLAG_ID}, /**< LY_STMT_ACTION */
56 {"anydata", "name", STMT_FLAG_ID}, /**< LY_STMT_ANYDATA */
57 {"anyxml", "name", STMT_FLAG_ID}, /**< LY_STMT_ANYXML */
58 {"argument", "name", STMT_FLAG_ID}, /**< LY_STMT_ARGUMENT */
59 {"text", NULL, 0}, /**< LY_STMT_ARG_TEXT */
60 {"value", NULL, 0}, /**< LY_STMT_ARG_VALUE */
61 {"augment", "target-node", STMT_FLAG_ID}, /**< LY_STMT_AUGMENT */
62 {"base", "name", STMT_FLAG_ID}, /**< LY_STMT_BASE */
63 {"belongs-to", "module", STMT_FLAG_ID}, /**< LY_STMT_BELONGS_TO */
64 {"bit", "name", STMT_FLAG_ID}, /**< LY_STMT_BIT */
65 {"case", "name", STMT_FLAG_ID}, /**< LY_STMT_CASE */
66 {"choice", "name", STMT_FLAG_ID}, /**< LY_STMT_CHOICE */
67 {"config", "value", STMT_FLAG_ID}, /**< LY_STMT_CONFIG */
68 {"contact", "text", STMT_FLAG_YIN},/**< LY_STMT_CONTACT */
69 {"container", "name", STMT_FLAG_ID}, /**< LY_STMT_CONTAINER */
70 {"default", "value", 0}, /**< LY_STMT_DEFAULT */
71 {"description", "text", STMT_FLAG_YIN},/**< LY_STMT_DESCRIPTION */
72 {"deviate", "value", STMT_FLAG_ID}, /**< LY_STMT_DEVIATE */
73 {"deviation", "target-node", STMT_FLAG_ID}, /**< LY_STMT_DEVIATION */
74 {"enum", "name", STMT_FLAG_ID}, /**< LY_STMT_ENUM */
75 {"error-app-tag", "value", 0}, /**< LY_STMT_ERRTAG */
76 {"error-message", "value", STMT_FLAG_YIN},/**< LY_STMT_ERRMSG */
77 {"extension", "name", STMT_FLAG_ID}, /**< LY_STMT_EXTENSION */
78 {NULL, NULL, 0}, /**< LY_STMT_EXTENSION_INSTANCE */
79 {"feature", "name", STMT_FLAG_ID}, /**< LY_STMT_FEATURE */
80 {"fraction-digits", "value", STMT_FLAG_ID}, /**< LY_STMT_FRACTION_DIGITS */
81 {"grouping", "name", STMT_FLAG_ID}, /**< LY_STMT_GROUPING */
82 {"identity", "name", STMT_FLAG_ID}, /**< LY_STMT_IDENTITY */
83 {"if-feature", "name", 0}, /**< LY_STMT_IF_FEATURE */
84 {"import", "module", STMT_FLAG_ID}, /**< LY_STMT_IMPORT */
85 {"include", "module", STMT_FLAG_ID}, /**< LY_STMT_INCLUDE */
86 {"input", NULL, 0}, /**< LY_STMT_INPUT */
87 {"key", "value", 0}, /**< LY_STMT_KEY */
88 {"leaf", "name", STMT_FLAG_ID}, /**< LY_STMT_LEAF */
89 {"leaf-list", "name", STMT_FLAG_ID}, /**< LY_STMT_LEAF_LIST */
90 {"length", "value", 0}, /**< LY_STMT_LENGTH */
91 {"list", "name", STMT_FLAG_ID}, /**< LY_STMT_LIST */
92 {"mandatory", "value", STMT_FLAG_ID}, /**< LY_STMT_MANDATORY */
93 {"max-elements", "value", STMT_FLAG_ID}, /**< LY_STMT_MAX_ELEMENTS */
94 {"min-elements", "value", STMT_FLAG_ID}, /**< LY_STMT_MIN_ELEMENTS */
95 {"modifier", "value", STMT_FLAG_ID}, /**< LY_STMT_MODIFIER */
96 {"module", "name", STMT_FLAG_ID}, /**< LY_STMT_MODULE */
97 {"must", "condition", 0}, /**< LY_STMT_MUST */
98 {"namespace", "uri", 0}, /**< LY_STMT_NAMESPACE */
99 {"notification", "name", STMT_FLAG_ID}, /**< LY_STMT_NOTIFICATION */
100 {"ordered-by", "value", STMT_FLAG_ID}, /**< LY_STMT_ORDERED_BY */
101 {"organization", "text", STMT_FLAG_YIN},/**< LY_STMT_ORGANIZATION */
102 {"output", NULL, 0}, /**< LY_STMT_OUTPUT */
103 {"path", "value", 0}, /**< LY_STMT_PATH */
104 {"pattern", "value", 0}, /**< LY_STMT_PATTERN */
105 {"position", "value", STMT_FLAG_ID}, /**< LY_STMT_POSITION */
106 {"prefix", "value", STMT_FLAG_ID}, /**< LY_STMT_PREFIX */
107 {"presence", "value", 0}, /**< LY_STMT_PRESENCE */
108 {"range", "value", 0}, /**< LY_STMT_RANGE */
109 {"reference", "text", STMT_FLAG_YIN},/**< LY_STMT_REFERENCE */
110 {"refine", "target-node", STMT_FLAG_ID}, /**< LY_STMT_REFINE */
111 {"require-instance", "value", STMT_FLAG_ID}, /**< LY_STMT_REQUIRE_INSTANCE */
112 {"revision", "date", STMT_FLAG_ID}, /**< LY_STMT_REVISION */
113 {"revision-date", "date", STMT_FLAG_ID}, /**< LY_STMT_REVISION_DATE */
114 {"rpc", "name", STMT_FLAG_ID}, /**< LY_STMT_RPC */
115 {"status", "value", STMT_FLAG_ID}, /**< LY_STMT_STATUS */
116 {"submodule", "name", STMT_FLAG_ID}, /**< LY_STMT_SUBMODULE */
117 {"{", NULL, 0}, /**< LY_STMT_SYNTAX_LEFT_BRACE */
118 {"}", NULL, 0}, /**< LY_STMT_SYNTAX_RIGHT_BRACE */
119 {";", NULL, 0}, /**< LY_STMT_SYNTAX_SEMICOLON */
120 {"type", "name", STMT_FLAG_ID}, /**< LY_STMT_TYPE */
121 {"typedef", "name", STMT_FLAG_ID}, /**< LY_STMT_TYPEDEF */
122 {"unique", "tag", 0}, /**< LY_STMT_UNIQUE */
123 {"units", "name", 0}, /**< LY_STMT_UNITS */
124 {"uses", "name", STMT_FLAG_ID}, /**< LY_STMT_USES */
125 {"value", "value", STMT_FLAG_ID}, /**< LY_STMT_VALUE */
126 {"when", "condition", 0}, /**< LY_STMT_WHEN */
127 {"yang-version", "value", STMT_FLAG_ID}, /**< LY_STMT_YANG_VERSION */
128 {"yin-element", "value", STMT_FLAG_ID}, /**< LY_STMT_YIN_ELEMENT */
129};
130
131const char * const ly_devmod_list[] = {
132 [LYS_DEV_NOT_SUPPORTED] = "not-supported",
133 [LYS_DEV_ADD] = "add",
134 [LYS_DEV_DELETE] = "delete",
135 [LYS_DEV_REPLACE] = "replace",
136};
137
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200138API LY_ERR
139lysc_tree_dfs_full(const struct lysc_node *root, lysc_dfs_clb dfs_clb, void *data)
140{
Michal Vasko1d972ca2020-11-03 17:16:56 +0100141 struct lysc_node *elem, *elem2;
Radek Krejci2a9fc652021-01-22 17:44:34 +0100142 const struct lysc_node_action *action;
143 const struct lysc_node_notif *notif;
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200144
145 LY_CHECK_ARG_RET(NULL, root, dfs_clb, LY_EINVAL);
146
147 LYSC_TREE_DFS_BEGIN(root, elem) {
148 /* schema node */
149 LY_CHECK_RET(dfs_clb(elem, data, &LYSC_TREE_DFS_continue));
150
Radek Krejci2a9fc652021-01-22 17:44:34 +0100151 LY_LIST_FOR(lysc_node_actions(elem), action) {
152 LYSC_TREE_DFS_BEGIN(action, elem2) {
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200153 /* action subtree */
154 LY_CHECK_RET(dfs_clb(elem2, data, &LYSC_TREE_DFS_continue));
155
Radek Krejci2a9fc652021-01-22 17:44:34 +0100156 LYSC_TREE_DFS_END(action, elem2);
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200157 }
158 }
159
Radek Krejci2a9fc652021-01-22 17:44:34 +0100160 LY_LIST_FOR(lysc_node_notifs(elem), notif) {
161 LYSC_TREE_DFS_BEGIN(notif, elem2) {
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200162 /* notification subtree */
163 LY_CHECK_RET(dfs_clb(elem2, data, &LYSC_TREE_DFS_continue));
164
Radek Krejci2a9fc652021-01-22 17:44:34 +0100165 LYSC_TREE_DFS_END(notif, elem2);
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200166 }
167 }
168
169 LYSC_TREE_DFS_END(root, elem);
170 }
171
172 return LY_SUCCESS;
173}
174
175API LY_ERR
176lysc_module_dfs_full(const struct lys_module *mod, lysc_dfs_clb dfs_clb, void *data)
177{
Michal Vasko2336cf52020-11-03 17:18:15 +0100178 const struct lysc_node *root;
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200179
180 LY_CHECK_ARG_RET(NULL, mod, mod->compiled, dfs_clb, LY_EINVAL);
181
182 /* schema nodes */
Michal Vasko2336cf52020-11-03 17:18:15 +0100183 LY_LIST_FOR(mod->compiled->data, root) {
184 LY_CHECK_RET(lysc_tree_dfs_full(root, dfs_clb, data));
185 }
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200186
187 /* RPCs */
Radek Krejci2a9fc652021-01-22 17:44:34 +0100188 LY_LIST_FOR((const struct lysc_node *)mod->compiled->rpcs, root) {
189 LY_CHECK_RET(lysc_tree_dfs_full(root, dfs_clb, data));
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200190 }
191
192 /* notifications */
Radek Krejci2a9fc652021-01-22 17:44:34 +0100193 LY_LIST_FOR((const struct lysc_node *)mod->compiled->notifs, root) {
194 LY_CHECK_RET(lysc_tree_dfs_full(root, dfs_clb, data));
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200195 }
196
197 return LY_SUCCESS;
198}
199
Radek Krejcib93bd412020-11-02 13:23:11 +0100200static void
201lys_getnext_into_case(const struct lysc_node_case *first_case, const struct lysc_node **last, const struct lysc_node **next)
202{
Radek Krejcic5b54a02020-11-05 17:13:18 +0100203 for ( ; first_case; first_case = (const struct lysc_node_case *)first_case->next) {
Radek Krejcib93bd412020-11-02 13:23:11 +0100204 if (first_case->child) {
205 /* there is something to return */
206 (*next) = first_case->child;
207 return;
208 }
209 }
210
211 /* no children in choice's cases, so go to the choice's sibling instead of into it */
212 (*last) = (*next);
213 (*next) = (*next)->next;
214}
215
Radek Krejcia3045382018-11-22 14:30:31 +0100216API const struct lysc_node *
Radek Krejci1deb5be2020-08-26 16:43:36 +0200217lys_getnext(const struct lysc_node *last, const struct lysc_node *parent, const struct lysc_module *module, uint32_t options)
Radek Krejcia3045382018-11-22 14:30:31 +0100218{
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100219 const struct lysc_node *next = NULL;
Radek Krejci857189e2020-09-01 13:26:36 +0200220 ly_bool action_flag = 0, notif_flag = 0;
Radek Krejcia3045382018-11-22 14:30:31 +0100221
222 LY_CHECK_ARG_RET(NULL, parent || module, NULL);
223
Radek Krejcid5a2b9d2019-04-12 10:39:30 +0200224next:
Radek Krejcia3045382018-11-22 14:30:31 +0100225 if (!last) {
226 /* first call */
227
228 /* get know where to start */
229 if (parent) {
230 /* schema subtree */
Michal Vasko544e58a2021-01-28 14:33:41 +0100231 next = last = lysc_node_child(parent);
Radek Krejcia3045382018-11-22 14:30:31 +0100232 } else {
233 /* top level data */
234 next = last = module->data;
235 }
236 if (!next) {
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100237 /* try to get action or notification */
238 goto repeat;
Radek Krejcia3045382018-11-22 14:30:31 +0100239 }
Radek Krejci05b774b2019-02-25 13:26:18 +0100240 /* test if the next can be returned */
241 goto check;
242
Michal Vasko1bf09392020-03-27 12:38:10 +0100243 } else if (last->nodetype & (LYS_RPC | LYS_ACTION)) {
Radek Krejci05b774b2019-02-25 13:26:18 +0100244 action_flag = 1;
Radek Krejci2a9fc652021-01-22 17:44:34 +0100245 next = last->next;
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100246 } else if (last->nodetype == LYS_NOTIF) {
Radek Krejci05b774b2019-02-25 13:26:18 +0100247 action_flag = notif_flag = 1;
Radek Krejci2a9fc652021-01-22 17:44:34 +0100248 next = last->next;
Michal Vasko20424b42020-08-31 12:29:38 +0200249 } else {
250 next = last->next;
Radek Krejcia3045382018-11-22 14:30:31 +0100251 }
252
Radek Krejcia3045382018-11-22 14:30:31 +0100253repeat:
254 if (!next) {
Radek Krejcia9026eb2018-12-12 16:04:47 +0100255 /* possibly go back to parent */
Michal Vasko69730152020-10-09 16:30:07 +0200256 if (last && (last->parent != parent)) {
Radek Krejcia9026eb2018-12-12 16:04:47 +0100257 last = last->parent;
Radek Krejcid5a2b9d2019-04-12 10:39:30 +0200258 goto next;
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100259 } else if (!action_flag) {
260 action_flag = 1;
Michal Vasko22df3f02020-08-24 13:29:22 +0200261 next = parent ? (struct lysc_node *)lysc_node_actions(parent) : (struct lysc_node *)module->rpcs;
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100262 } else if (!notif_flag) {
263 notif_flag = 1;
Michal Vasko22df3f02020-08-24 13:29:22 +0200264 next = parent ? (struct lysc_node *)lysc_node_notifs(parent) : (struct lysc_node *)module->notifs;
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100265 } else {
266 return NULL;
Radek Krejcia9026eb2018-12-12 16:04:47 +0100267 }
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100268 goto repeat;
Radek Krejcia3045382018-11-22 14:30:31 +0100269 }
Radek Krejci05b774b2019-02-25 13:26:18 +0100270check:
Radek Krejcia3045382018-11-22 14:30:31 +0100271 switch (next->nodetype) {
Michal Vasko1bf09392020-03-27 12:38:10 +0100272 case LYS_RPC:
Radek Krejcia3045382018-11-22 14:30:31 +0100273 case LYS_ACTION:
274 case LYS_NOTIF:
275 case LYS_LEAF:
276 case LYS_ANYXML:
277 case LYS_ANYDATA:
278 case LYS_LIST:
279 case LYS_LEAFLIST:
280 break;
Michal Vasko20424b42020-08-31 12:29:38 +0200281 case LYS_CASE:
282 if (options & LYS_GETNEXT_WITHCASE) {
283 break;
284 } else {
285 /* go into */
Radek Krejcib93bd412020-11-02 13:23:11 +0100286 lys_getnext_into_case((const struct lysc_node_case *)next, &last, &next);
Michal Vasko20424b42020-08-31 12:29:38 +0200287 }
288 goto repeat;
Radek Krejcia3045382018-11-22 14:30:31 +0100289 case LYS_CONTAINER:
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100290 if (!(next->flags & LYS_PRESENCE) && (options & LYS_GETNEXT_INTONPCONT)) {
Michal Vasko544e58a2021-01-28 14:33:41 +0100291 if (lysc_node_child(next)) {
Radek Krejcia3045382018-11-22 14:30:31 +0100292 /* go into */
Michal Vasko544e58a2021-01-28 14:33:41 +0100293 next = lysc_node_child(next);
Radek Krejcia3045382018-11-22 14:30:31 +0100294 } else {
Radek Krejcib93bd412020-11-02 13:23:11 +0100295 last = next;
Radek Krejcia3045382018-11-22 14:30:31 +0100296 next = next->next;
297 }
298 goto repeat;
299 }
300 break;
301 case LYS_CHOICE:
302 if (options & LYS_GETNEXT_WITHCHOICE) {
Michal Vasko20424b42020-08-31 12:29:38 +0200303 break;
Michal Vasko544e58a2021-01-28 14:33:41 +0100304 } else if ((options & LYS_GETNEXT_NOCHOICE) || !lysc_node_child(next)) {
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100305 next = next->next;
306 } else {
Radek Krejcia9026eb2018-12-12 16:04:47 +0100307 if (options & LYS_GETNEXT_WITHCASE) {
Michal Vasko544e58a2021-01-28 14:33:41 +0100308 next = lysc_node_child(next);
Radek Krejcia9026eb2018-12-12 16:04:47 +0100309 } else {
Radek Krejcib93bd412020-11-02 13:23:11 +0100310 /* go into */
311 lys_getnext_into_case(((struct lysc_node_choice *)next)->cases, &last, &next);
Radek Krejcia9026eb2018-12-12 16:04:47 +0100312 }
Radek Krejcia3045382018-11-22 14:30:31 +0100313 }
314 goto repeat;
Michal Vasko544e58a2021-01-28 14:33:41 +0100315 case LYS_INPUT:
316 if (options & LYS_GETNEXT_OUTPUT) {
317 /* skip */
318 next = next->next;
319 } else {
320 /* go into */
321 next = lysc_node_child(next);
322 }
323 goto repeat;
324 case LYS_OUTPUT:
325 if (!(options & LYS_GETNEXT_OUTPUT)) {
326 /* skip */
327 next = next->next;
328 } else {
329 /* go into */
330 next = lysc_node_child(next);
331 }
332 goto repeat;
Radek Krejcia3045382018-11-22 14:30:31 +0100333 default:
334 /* we should not be here */
Radek Krejcib07b5c92019-04-08 10:56:37 +0200335 LOGINT(module ? module->mod->ctx : parent->module->ctx);
Radek Krejcia3045382018-11-22 14:30:31 +0100336 return NULL;
337 }
338
Radek Krejcia3045382018-11-22 14:30:31 +0100339 return next;
340}
341
342API const struct lysc_node *
Michal Vaskoe444f752020-02-10 12:20:06 +0100343lys_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 +0200344 uint16_t nodetype, uint32_t options)
Radek Krejcia3045382018-11-22 14:30:31 +0100345{
346 const struct lysc_node *node = NULL;
347
348 LY_CHECK_ARG_RET(NULL, module, name, NULL);
349 if (!nodetype) {
Radek Krejcif13b87b2020-12-01 22:02:17 +0100350 nodetype = LYS_NODETYPE_MASK;
Radek Krejcia3045382018-11-22 14:30:31 +0100351 }
352
353 while ((node = lys_getnext(node, parent, module->compiled, options))) {
354 if (!(node->nodetype & nodetype)) {
355 continue;
356 }
357 if (node->module != module) {
358 continue;
359 }
360
361 if (name_len) {
Radek Krejci7f9b6512019-09-18 13:11:09 +0200362 if (!ly_strncmp(node->name, name, name_len)) {
Radek Krejcia3045382018-11-22 14:30:31 +0100363 return node;
364 }
365 } else {
366 if (!strcmp(node->name, name)) {
367 return node;
368 }
369 }
370 }
371 return NULL;
372}
373
Michal Vasko519fd602020-05-26 12:17:39 +0200374API LY_ERR
Michal Vasko26512682021-01-11 11:35:40 +0100375lys_find_xpath_atoms(const struct ly_ctx *ctx, const struct lysc_node *ctx_node, const char *xpath, uint32_t options,
376 struct ly_set **set)
Michal Vasko519fd602020-05-26 12:17:39 +0200377{
378 LY_ERR ret = LY_SUCCESS;
379 struct lyxp_set xp_set;
Radek Krejcif03a9e22020-09-18 20:09:31 +0200380 struct lyxp_expr *exp = NULL;
Michal Vasko519fd602020-05-26 12:17:39 +0200381 uint32_t i;
382
Michal Vasko26512682021-01-11 11:35:40 +0100383 LY_CHECK_ARG_RET(NULL, ctx || ctx_node, xpath, set, LY_EINVAL);
Michal Vasko519fd602020-05-26 12:17:39 +0200384 if (!(options & LYXP_SCNODE_ALL)) {
385 options = LYXP_SCNODE;
386 }
Michal Vasko26512682021-01-11 11:35:40 +0100387 if (!ctx) {
388 ctx = ctx_node->module->ctx;
389 }
Michal Vasko519fd602020-05-26 12:17:39 +0200390
391 memset(&xp_set, 0, sizeof xp_set);
392
393 /* compile expression */
Michal Vasko26512682021-01-11 11:35:40 +0100394 ret = lyxp_expr_parse(ctx, xpath, 0, 1, &exp);
Radek Krejcif03a9e22020-09-18 20:09:31 +0200395 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko519fd602020-05-26 12:17:39 +0200396
397 /* atomize expression */
Michal Vasko400e9672021-01-11 13:39:17 +0100398 ret = lyxp_atomize(ctx, exp, NULL, LY_PREF_JSON, NULL, ctx_node, &xp_set, options);
Michal Vasko519fd602020-05-26 12:17:39 +0200399 LY_CHECK_GOTO(ret, cleanup);
400
401 /* allocate return set */
Radek Krejciba03a5a2020-08-27 14:40:41 +0200402 ret = ly_set_new(set);
403 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko519fd602020-05-26 12:17:39 +0200404
405 /* transform into ly_set */
406 (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs);
Michal Vasko26512682021-01-11 11:35:40 +0100407 LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko519fd602020-05-26 12:17:39 +0200408 (*set)->size = xp_set.used;
409
410 for (i = 0; i < xp_set.used; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +0200411 if (xp_set.val.scnodes[i].type == LYXP_NODE_ELEM) {
Radek Krejci3d92e442020-10-12 12:48:13 +0200412 ret = ly_set_add(*set, xp_set.val.scnodes[i].scnode, 1, NULL);
Radek Krejciba03a5a2020-08-27 14:40:41 +0200413 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko519fd602020-05-26 12:17:39 +0200414 }
415 }
416
417cleanup:
418 lyxp_set_free_content(&xp_set);
Michal Vasko26512682021-01-11 11:35:40 +0100419 lyxp_expr_free(ctx, exp);
Michal Vasko519fd602020-05-26 12:17:39 +0200420 return ret;
421}
422
Michal Vasko072de482020-08-05 13:27:21 +0200423API LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +0200424lys_find_expr_atoms(const struct lysc_node *ctx_node, const struct lys_module *cur_mod, const struct lyxp_expr *expr,
425 const struct lysc_prefix *prefixes, uint32_t options, struct ly_set **set)
426{
427 LY_ERR ret = LY_SUCCESS;
428 struct lyxp_set xp_set = {0};
429 uint32_t i;
430
431 LY_CHECK_ARG_RET(NULL, cur_mod, expr, prefixes, set, LY_EINVAL);
432 if (!(options & LYXP_SCNODE_ALL)) {
433 options = LYXP_SCNODE;
434 }
435
436 /* atomize expression */
Michal Vasko400e9672021-01-11 13:39:17 +0100437 ret = lyxp_atomize(cur_mod->ctx, expr, cur_mod, LY_PREF_SCHEMA_RESOLVED, (void *)prefixes, ctx_node, &xp_set, options);
Michal Vasko40308e72020-10-20 16:38:40 +0200438 LY_CHECK_GOTO(ret, cleanup);
439
440 /* allocate return set */
441 ret = ly_set_new(set);
442 LY_CHECK_GOTO(ret, cleanup);
443
444 /* transform into ly_set */
445 (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs);
446 LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(cur_mod->ctx); ret = LY_EMEM, cleanup);
447 (*set)->size = xp_set.used;
448
449 for (i = 0; i < xp_set.used; ++i) {
Michal Vaskod97959c2020-12-10 12:18:28 +0100450 if ((xp_set.val.scnodes[i].type == LYXP_NODE_ELEM) && (xp_set.val.scnodes[i].in_ctx >= LYXP_SET_SCNODE_ATOM)) {
451 assert((xp_set.val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM) ||
452 (xp_set.val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX));
Michal Vasko40308e72020-10-20 16:38:40 +0200453 ret = ly_set_add(*set, xp_set.val.scnodes[i].scnode, 1, NULL);
454 LY_CHECK_GOTO(ret, cleanup);
455 }
456 }
457
458cleanup:
459 lyxp_set_free_content(&xp_set);
460 if (ret) {
461 ly_set_free(*set, NULL);
462 *set = NULL;
463 }
464 return ret;
465}
466
467API LY_ERR
Michal Vasko26512682021-01-11 11:35:40 +0100468lys_find_xpath(const struct ly_ctx *ctx, const struct lysc_node *ctx_node, const char *xpath, uint32_t options,
469 struct ly_set **set)
Michal Vasko072de482020-08-05 13:27:21 +0200470{
471 LY_ERR ret = LY_SUCCESS;
Michal Vasko40308e72020-10-20 16:38:40 +0200472 struct lyxp_set xp_set = {0};
Radek Krejcif03a9e22020-09-18 20:09:31 +0200473 struct lyxp_expr *exp = NULL;
Michal Vasko072de482020-08-05 13:27:21 +0200474 uint32_t i;
475
Michal Vasko26512682021-01-11 11:35:40 +0100476 LY_CHECK_ARG_RET(NULL, ctx || ctx_node, xpath, set, LY_EINVAL);
Michal Vasko072de482020-08-05 13:27:21 +0200477 if (!(options & LYXP_SCNODE_ALL)) {
478 options = LYXP_SCNODE;
479 }
Michal Vasko26512682021-01-11 11:35:40 +0100480 if (!ctx) {
481 ctx = ctx_node->module->ctx;
482 }
Michal Vasko072de482020-08-05 13:27:21 +0200483
Michal Vasko072de482020-08-05 13:27:21 +0200484 /* compile expression */
Michal Vasko26512682021-01-11 11:35:40 +0100485 ret = lyxp_expr_parse(ctx, xpath, 0, 1, &exp);
Radek Krejcif03a9e22020-09-18 20:09:31 +0200486 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko072de482020-08-05 13:27:21 +0200487
488 /* atomize expression */
Michal Vasko400e9672021-01-11 13:39:17 +0100489 ret = lyxp_atomize(ctx, exp, NULL, LY_PREF_JSON, NULL, ctx_node, &xp_set, options);
Michal Vasko072de482020-08-05 13:27:21 +0200490 LY_CHECK_GOTO(ret, cleanup);
491
492 /* allocate return set */
Radek Krejciba03a5a2020-08-27 14:40:41 +0200493 ret = ly_set_new(set);
494 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko072de482020-08-05 13:27:21 +0200495
496 /* transform into ly_set */
497 (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs);
Michal Vasko26512682021-01-11 11:35:40 +0100498 LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko072de482020-08-05 13:27:21 +0200499 (*set)->size = xp_set.used;
500
501 for (i = 0; i < xp_set.used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +0100502 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 +0200503 ret = ly_set_add(*set, xp_set.val.scnodes[i].scnode, 1, NULL);
Radek Krejciba03a5a2020-08-27 14:40:41 +0200504 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko072de482020-08-05 13:27:21 +0200505 }
506 }
507
508cleanup:
509 lyxp_set_free_content(&xp_set);
Michal Vasko26512682021-01-11 11:35:40 +0100510 lyxp_expr_free(ctx, exp);
Michal Vaskoae159662020-10-21 11:57:24 +0200511 if (ret) {
Michal Vasko40308e72020-10-20 16:38:40 +0200512 ly_set_free(*set, NULL);
513 *set = NULL;
514 }
Michal Vasko072de482020-08-05 13:27:21 +0200515 return ret;
516}
517
Radek Krejcibc5644c2020-10-27 14:53:17 +0100518API LY_ERR
519lys_find_lypath_atoms(const struct ly_path *path, struct ly_set **set)
520{
521 LY_ERR ret = LY_SUCCESS;
522 LY_ARRAY_COUNT_TYPE u, v;
523
524 LY_CHECK_ARG_RET(NULL, path, set, LY_EINVAL);
525
526 /* allocate return set */
527 LY_CHECK_RET(ly_set_new(set));
528
529 LY_ARRAY_FOR(path, u) {
530 /* add nodes from the path */
531 LY_CHECK_GOTO(ret = ly_set_add(*set, (void *)path[u].node, 0, NULL), cleanup);
532 if (path[u].pred_type == LY_PATH_PREDTYPE_LIST) {
533 LY_ARRAY_FOR(path[u].predicates, v) {
534 /* add all the keys in a predicate */
535 LY_CHECK_GOTO(ret = ly_set_add(*set, (void *)path[u].predicates[v].key, 0, NULL), cleanup);
536 }
537 }
538 }
539
540cleanup:
541 if (ret) {
542 ly_set_free(*set, NULL);
543 *set = NULL;
544 }
545 return ret;
546}
547
548API LY_ERR
549lys_find_path_atoms(const struct ly_ctx *ctx, const struct lysc_node *ctx_node, const char *path, ly_bool output,
550 struct ly_set **set)
551{
552 LY_ERR ret = LY_SUCCESS;
553 uint8_t oper;
554 struct lyxp_expr *expr = NULL;
555 struct ly_path *p = NULL;
556
557 LY_CHECK_ARG_RET(ctx, ctx || ctx_node, path, set, LY_EINVAL);
558
559 if (!ctx) {
560 ctx = ctx_node->module->ctx;
561 }
562
563 /* parse */
564 ret = lyxp_expr_parse(ctx, path, strlen(path), 0, &expr);
565 LY_CHECK_GOTO(ret, cleanup);
566
567 /* compile */
568 oper = output ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT;
569 ret = ly_path_compile(ctx, NULL, ctx_node, expr, LY_PATH_LREF_FALSE, oper, LY_PATH_TARGET_MANY,
Michal Vasko405cc9e2020-12-01 12:01:27 +0100570 LY_PREF_JSON, NULL, NULL, &p);
Radek Krejcibc5644c2020-10-27 14:53:17 +0100571 LY_CHECK_GOTO(ret, cleanup);
572
573 /* resolve */
574 ret = lys_find_lypath_atoms(p, set);
575
576cleanup:
577 ly_path_free(ctx, p);
578 lyxp_expr_free(ctx, expr);
579 return ret;
580}
581
582API const struct lysc_node *
583lys_find_path(const struct ly_ctx *ctx, const struct lysc_node *ctx_node, const char *path, ly_bool output)
584{
585 const struct lysc_node *snode = NULL;
586 struct lyxp_expr *exp = NULL;
587 struct ly_path *p = NULL;
588 LY_ERR ret;
589 uint8_t oper;
590
591 LY_CHECK_ARG_RET(ctx, ctx || ctx_node, NULL);
592
593 if (!ctx) {
594 ctx = ctx_node->module->ctx;
595 }
596
597 /* parse */
598 ret = lyxp_expr_parse(ctx, path, strlen(path), 0, &exp);
599 LY_CHECK_GOTO(ret, cleanup);
600
601 /* compile */
602 oper = output ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT;
603 ret = ly_path_compile(ctx, NULL, ctx_node, exp, LY_PATH_LREF_FALSE, oper, LY_PATH_TARGET_MANY,
Michal Vasko405cc9e2020-12-01 12:01:27 +0100604 LY_PREF_JSON, NULL, NULL, &p);
Radek Krejcibc5644c2020-10-27 14:53:17 +0100605 LY_CHECK_GOTO(ret, cleanup);
606
607 /* get last node */
608 snode = p[LY_ARRAY_COUNT(p) - 1].node;
609
610cleanup:
611 ly_path_free(ctx, p);
612 lyxp_expr_free(ctx, exp);
613 return snode;
614}
615
Michal Vasko14654712020-02-06 08:35:21 +0100616char *
617lysc_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 +0200618 size_t buflen)
Radek Krejci327de162019-06-14 12:52:07 +0200619{
Michal Vasko03ff5a72019-09-11 13:49:33 +0200620 const struct lysc_node *iter;
Radek Krejci327de162019-06-14 12:52:07 +0200621 char *path = NULL;
622 int len = 0;
623
Radek Krejci3bbd93e2019-07-24 09:57:23 +0200624 if (buffer) {
625 LY_CHECK_ARG_RET(node->module->ctx, buflen > 1, NULL);
Michal Vasko770d3fc2021-01-26 09:14:35 +0100626 buffer[0] = '\0';
Radek Krejci3bbd93e2019-07-24 09:57:23 +0200627 }
628
Radek Krejci327de162019-06-14 12:52:07 +0200629 switch (pathtype) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200630 case LYSC_PATH_LOG:
Michal Vasko65de0402020-08-03 16:34:19 +0200631 case LYSC_PATH_DATA:
Michal Vasko90932a92020-02-12 14:33:03 +0100632 for (iter = node; iter && (iter != parent) && (len >= 0); iter = iter->parent) {
Michal Vasko11deea12020-08-05 13:54:50 +0200633 char *s, *id;
Michal Vasko14654712020-02-06 08:35:21 +0100634 const char *slash;
Radek Krejci327de162019-06-14 12:52:07 +0200635
Michal Vasko721b6f62021-02-08 08:52:53 +0100636 if ((pathtype == LYSC_PATH_DATA) && (iter->nodetype & (LYS_CHOICE | LYS_CASE | LYS_INPUT | LYS_OUTPUT))) {
Michal Vasko65de0402020-08-03 16:34:19 +0200637 /* schema-only node */
638 continue;
639 }
640
Michal Vasko11deea12020-08-05 13:54:50 +0200641 s = buffer ? strdup(buffer) : path;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200642 id = strdup(iter->name);
Michal Vasko14654712020-02-06 08:35:21 +0100643 if (parent && (iter->parent == parent)) {
644 slash = "";
645 } else {
646 slash = "/";
647 }
Michal Vasko69730152020-10-09 16:30:07 +0200648 if (!iter->parent || (iter->parent->module != iter->module)) {
Radek Krejci327de162019-06-14 12:52:07 +0200649 /* print prefix */
Radek Krejci1c0c3442019-07-23 16:08:47 +0200650 if (buffer) {
Michal Vasko14654712020-02-06 08:35:21 +0100651 len = snprintf(buffer, buflen, "%s%s:%s%s", slash, iter->module->name, id, s ? s : "");
Radek Krejci1c0c3442019-07-23 16:08:47 +0200652 } else {
Michal Vasko14654712020-02-06 08:35:21 +0100653 len = asprintf(&path, "%s%s:%s%s", slash, iter->module->name, id, s ? s : "");
Radek Krejci1c0c3442019-07-23 16:08:47 +0200654 }
Radek Krejci327de162019-06-14 12:52:07 +0200655 } else {
656 /* prefix is the same as in parent */
Radek Krejci1c0c3442019-07-23 16:08:47 +0200657 if (buffer) {
Michal Vasko14654712020-02-06 08:35:21 +0100658 len = snprintf(buffer, buflen, "%s%s%s", slash, id, s ? s : "");
Radek Krejci1c0c3442019-07-23 16:08:47 +0200659 } else {
Michal Vasko14654712020-02-06 08:35:21 +0100660 len = asprintf(&path, "%s%s%s", slash, id, s ? s : "");
Radek Krejci1c0c3442019-07-23 16:08:47 +0200661 }
Radek Krejci327de162019-06-14 12:52:07 +0200662 }
663 free(s);
664 free(id);
Radek Krejci1c0c3442019-07-23 16:08:47 +0200665
Michal Vasko69730152020-10-09 16:30:07 +0200666 if (buffer && (buflen <= (size_t)len)) {
Radek Krejci1c0c3442019-07-23 16:08:47 +0200667 /* not enough space in buffer */
668 break;
669 }
Radek Krejci327de162019-06-14 12:52:07 +0200670 }
671
672 if (len < 0) {
673 free(path);
674 path = NULL;
675 } else if (len == 0) {
Radek Krejci3bbd93e2019-07-24 09:57:23 +0200676 if (buffer) {
677 strcpy(buffer, "/");
678 } else {
679 path = strdup("/");
680 }
Radek Krejci327de162019-06-14 12:52:07 +0200681 }
682 break;
683 }
684
Radek Krejci1c0c3442019-07-23 16:08:47 +0200685 if (buffer) {
686 return buffer;
687 } else {
688 return path;
689 }
Radek Krejci327de162019-06-14 12:52:07 +0200690}
691
Michal Vasko14654712020-02-06 08:35:21 +0100692API char *
693lysc_path(const struct lysc_node *node, LYSC_PATH_TYPE pathtype, char *buffer, size_t buflen)
694{
695 return lysc_path_until(node, NULL, pathtype, buffer, buflen);
696}
697
Michal Vasko405cc9e2020-12-01 12:01:27 +0100698LY_ERR
699lys_set_implemented_r(struct lys_module *mod, const char **features, struct lys_glob_unres *unres)
Radek Krejci77a8bcd2019-09-11 11:20:02 +0200700{
701 struct lys_module *m;
702
Michal Vasko405cc9e2020-12-01 12:01:27 +0100703 assert(!mod->implemented);
Radek Krejci77a8bcd2019-09-11 11:20:02 +0200704
705 /* we have module from the current context */
706 m = ly_ctx_get_module_implemented(mod->ctx, mod->name);
707 if (m) {
Michal Vasko89b5c072020-10-06 13:52:44 +0200708 assert(m != mod);
709
710 /* check collision with other implemented revision */
711 LOGERR(mod->ctx, LY_EDENIED, "Module \"%s%s%s\" is present in the context in other implemented revision (%s).",
712 mod->name, mod->revision ? "@" : "", mod->revision ? mod->revision : "", m->revision ? m->revision : "none");
713 return LY_EDENIED;
Radek Krejci77a8bcd2019-09-11 11:20:02 +0200714 }
715
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100716 /* enable features */
717 LY_CHECK_RET(lys_enable_features(mod->parsed, features));
718
Michal Vasko89b5c072020-10-06 13:52:44 +0200719 /* add the module into newly implemented module set */
Michal Vasko405cc9e2020-12-01 12:01:27 +0100720 LY_CHECK_RET(ly_set_add(&unres->implementing, mod, 1, NULL));
Michal Vasko89b5c072020-10-06 13:52:44 +0200721
Radek Krejci77a8bcd2019-09-11 11:20:02 +0200722 /* mark the module implemented, check for collision was already done */
Michal Vasko89b5c072020-10-06 13:52:44 +0200723 mod->implemented = 1;
Radek Krejci77a8bcd2019-09-11 11:20:02 +0200724
725 /* compile the schema */
Michal Vasko405cc9e2020-12-01 12:01:27 +0100726 return lys_compile(mod, 0, unres);
727}
Radek Krejci77a8bcd2019-09-11 11:20:02 +0200728
Michal Vasko405cc9e2020-12-01 12:01:27 +0100729API LY_ERR
730lys_set_implemented(struct lys_module *mod, const char **features)
731{
732 LY_ERR ret = LY_SUCCESS, r;
733 struct lys_glob_unres unres = {0};
Radek Krejci77a8bcd2019-09-11 11:20:02 +0200734
Michal Vasko405cc9e2020-12-01 12:01:27 +0100735 LY_CHECK_ARG_RET(NULL, mod, LY_EINVAL);
Michal Vasko916aefb2020-11-02 15:43:16 +0100736
Michal Vasko405cc9e2020-12-01 12:01:27 +0100737 if (mod->implemented) {
738 /* mod is already implemented, set the features */
739 r = lys_set_features(mod->parsed, features);
740 if (r == LY_EEXIST) {
741 /* no changes */
742 return LY_SUCCESS;
743 } else if (r) {
744 /* error */
745 return r;
Michal Vasko89b5c072020-10-06 13:52:44 +0200746 }
747
Michal Vasko405cc9e2020-12-01 12:01:27 +0100748 /* full recompilation */
749 return lys_recompile(mod->ctx, 1);
Michal Vasko89b5c072020-10-06 13:52:44 +0200750 }
Michal Vasko08c8b272020-11-24 18:11:30 +0100751
Michal Vasko405cc9e2020-12-01 12:01:27 +0100752 /* implement this module and any other required modules, recursively */
753 ret = lys_set_implemented_r(mod, features, &unres);
Michal Vasko405cc9e2020-12-01 12:01:27 +0100754
755 /* the first module being implemented is finished, resolve global unres, consolidate the set */
756 if (!ret) {
757 ret = lys_compile_unres_glob(mod->ctx, &unres);
758 }
759 if (ret) {
760 /* failure, full compile revert */
761 lys_compile_unres_glob_revert(mod->ctx, &unres);
762 }
763
764 lys_compile_unres_glob_erase(mod->ctx, &unres);
Michal Vasko89b5c072020-10-06 13:52:44 +0200765 return ret;
Radek Krejci77a8bcd2019-09-11 11:20:02 +0200766}
767
Michal Vasko7c8439f2020-08-05 13:25:19 +0200768static LY_ERR
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100769lys_resolve_import_include(struct lys_parser_ctx *pctx, struct lysp_module *pmod)
Michal Vasko7c8439f2020-08-05 13:25:19 +0200770{
771 struct lysp_import *imp;
Michal Vasko7c8439f2020-08-05 13:25:19 +0200772 LY_ARRAY_COUNT_TYPE u, v;
773
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100774 pmod->parsing = 1;
775 LY_ARRAY_FOR(pmod->imports, u) {
776 imp = &pmod->imports[u];
Michal Vasko7c8439f2020-08-05 13:25:19 +0200777 if (!imp->module) {
Michal Vasko405cc9e2020-12-01 12:01:27 +0100778 LY_CHECK_RET(lysp_load_module(PARSER_CTX(pctx), imp->name, imp->rev[0] ? imp->rev : NULL, 0, NULL,
779 pctx->unres, &imp->module));
Michal Vasko7c8439f2020-08-05 13:25:19 +0200780 }
781 /* check for importing the same module twice */
782 for (v = 0; v < u; ++v) {
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100783 if (imp->module == pmod->imports[v].module) {
Michal Vasko7c8439f2020-08-05 13:25:19 +0200784 LOGWRN(PARSER_CTX(pctx), "Single revision of the module \"%s\" imported twice.", imp->name);
785 }
786 }
787 }
Radek Krejci771928a2021-01-19 13:42:36 +0100788 LY_CHECK_RET(lysp_load_submodules(pctx, pmod));
789
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100790 pmod->parsing = 0;
Michal Vasko7c8439f2020-08-05 13:25:19 +0200791
792 return LY_SUCCESS;
793}
794
Michal Vasko3a41dff2020-07-15 14:30:28 +0200795LY_ERR
Michal Vasko7a0b0762020-09-02 16:37:01 +0200796lys_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 +0200797 LY_ERR (*custom_check)(const struct ly_ctx *, struct lysp_module *, struct lysp_submodule *, void *),
Radek Krejci0f969882020-08-21 16:56:47 +0200798 void *check_data, struct lysp_submodule **submodule)
Radek Krejci9f5e6fb2018-10-25 09:26:12 +0200799{
Michal Vasko3a41dff2020-07-15 14:30:28 +0200800 LY_ERR ret;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100801 struct lysp_submodule *submod = NULL, *latest_sp;
Michal Vaskob36053d2020-03-26 15:49:30 +0100802 struct lys_yang_parser_ctx *yangctx = NULL;
803 struct lys_yin_parser_ctx *yinctx = NULL;
804 struct lys_parser_ctx *pctx;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100805
Michal Vasko3a41dff2020-07-15 14:30:28 +0200806 LY_CHECK_ARG_RET(ctx, ctx, in, LY_EINVAL);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100807
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100808 switch (format) {
809 case LYS_IN_YIN:
Michal Vasko63f3d842020-07-08 10:10:14 +0200810 ret = yin_parse_submodule(&yinctx, ctx, main_ctx, in, &submod);
Michal Vaskob36053d2020-03-26 15:49:30 +0100811 pctx = (struct lys_parser_ctx *)yinctx;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100812 break;
813 case LYS_IN_YANG:
Michal Vasko63f3d842020-07-08 10:10:14 +0200814 ret = yang_parse_submodule(&yangctx, ctx, main_ctx, in, &submod);
Michal Vaskob36053d2020-03-26 15:49:30 +0100815 pctx = (struct lys_parser_ctx *)yangctx;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100816 break;
817 default:
David Sedlák4f2f5ba2019-08-15 13:18:48 +0200818 LOGERR(ctx, LY_EINVAL, "Invalid schema input format.");
Radek Krejci82fa8d42020-07-11 22:00:59 +0200819 ret = LY_EINVAL;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100820 break;
Radek Krejci9f5e6fb2018-10-25 09:26:12 +0200821 }
Radek Krejcif6923e82020-07-02 16:36:53 +0200822 LY_CHECK_GOTO(ret, error);
Radek Krejcif027df72020-09-15 13:00:28 +0200823 assert(submod);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100824
825 /* make sure that the newest revision is at position 0 */
826 lysp_sort_revisions(submod->revs);
827
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100828 /* decide the latest revision */
Michal Vaskoc3781c32020-10-06 14:04:08 +0200829 latest_sp = ly_ctx_get_submodule(NULL, submod->mod, submod->name, NULL);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100830 if (latest_sp) {
831 if (submod->revs) {
832 if (!latest_sp->revs) {
833 /* latest has no revision, so mod is anyway newer */
834 submod->latest_revision = latest_sp->latest_revision;
Radek Krejcib3289d62019-09-18 12:21:39 +0200835 /* the latest_sp is zeroed later when the new module is being inserted into the context */
836 } else if (strcmp(submod->revs[0].date, latest_sp->revs[0].date) > 0) {
837 submod->latest_revision = latest_sp->latest_revision;
838 /* the latest_sp is zeroed later when the new module is being inserted into the context */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100839 } else {
Radek Krejcib3289d62019-09-18 12:21:39 +0200840 latest_sp = NULL;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100841 }
Radek Krejcib3289d62019-09-18 12:21:39 +0200842 } else {
843 latest_sp = NULL;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100844 }
845 } else {
846 submod->latest_revision = 1;
847 }
848
Radek Krejcib3289d62019-09-18 12:21:39 +0200849 if (custom_check) {
Michal Vasko7c8439f2020-08-05 13:25:19 +0200850 LY_CHECK_GOTO(ret = custom_check(ctx, NULL, submod, check_data), error);
Radek Krejcib3289d62019-09-18 12:21:39 +0200851 }
852
853 if (latest_sp) {
854 latest_sp->latest_revision = 0;
855 }
856
Michal Vasko7a0b0762020-09-02 16:37:01 +0200857 lys_parser_fill_filepath(ctx, in, &submod->filepath);
858
Michal Vasko7c8439f2020-08-05 13:25:19 +0200859 /* resolve imports and includes */
860 LY_CHECK_GOTO(ret = lys_resolve_import_include(pctx, (struct lysp_module *)submod), error);
861
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100862 /* remap possibly changed and reallocated typedefs and groupings list back to the main context */
Michal Vaskob36053d2020-03-26 15:49:30 +0100863 memcpy(&main_ctx->tpdfs_nodes, &pctx->tpdfs_nodes, sizeof main_ctx->tpdfs_nodes);
864 memcpy(&main_ctx->grps_nodes, &pctx->grps_nodes, sizeof main_ctx->grps_nodes);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100865
David Sedlák1b623122019-08-05 15:27:49 +0200866 if (format == LYS_IN_YANG) {
Michal Vaskob36053d2020-03-26 15:49:30 +0100867 yang_parser_ctx_free(yangctx);
David Sedlák1b623122019-08-05 15:27:49 +0200868 } else {
Michal Vaskob36053d2020-03-26 15:49:30 +0100869 yin_parser_ctx_free(yinctx);
David Sedlák1b623122019-08-05 15:27:49 +0200870 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200871 *submodule = submod;
872 return LY_SUCCESS;
David Sedlák1b623122019-08-05 15:27:49 +0200873
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100874error:
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200875 lysp_module_free((struct lysp_module *)submod);
David Sedlák1b623122019-08-05 15:27:49 +0200876 if (format == LYS_IN_YANG) {
Michal Vaskob36053d2020-03-26 15:49:30 +0100877 yang_parser_ctx_free(yangctx);
David Sedlák1b623122019-08-05 15:27:49 +0200878 } else {
Michal Vaskob36053d2020-03-26 15:49:30 +0100879 yin_parser_ctx_free(yinctx);
David Sedlák1b623122019-08-05 15:27:49 +0200880 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200881 return ret;
Radek Krejci9f5e6fb2018-10-25 09:26:12 +0200882}
883
Michal Vasko45b521c2020-11-04 17:14:39 +0100884/**
885 * @brief Add ietf-netconf metadata to the parsed module. Operation, filter, and select are added.
886 *
887 * @param[in] mod Parsed module to add to.
888 * @return LY_SUCCESS on success.
889 * @return LY_ERR on error.
890 */
891static LY_ERR
892lys_parsed_add_internal_ietf_netconf(struct lysp_module *mod)
893{
894 struct lysp_ext_instance *ext_p;
895 struct lysp_stmt *stmt;
896 struct lysp_import *imp;
897
898 /*
899 * 1) edit-config's operation
900 */
901 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->exts, ext_p, LY_EMEM);
902 LY_CHECK_ERR_RET(!ext_p, LOGMEM(mod->mod->ctx), LY_EMEM);
903 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_:annotation", 0, &ext_p->name));
904 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "operation", 0, &ext_p->argument));
905 ext_p->flags = LYS_INTERNAL;
906 ext_p->insubstmt = LYEXT_SUBSTMT_SELF;
907 ext_p->insubstmt_index = 0;
908
909 ext_p->child = stmt = calloc(1, sizeof *ext_p->child);
910 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
911 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "type", 0, &stmt->stmt));
912 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enumeration", 0, &stmt->arg));
913 stmt->kw = LY_STMT_TYPE;
914
915 stmt->child = calloc(1, sizeof *stmt->child);
916 stmt = stmt->child;
917 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
918 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
919 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "merge", 0, &stmt->arg));
920 stmt->kw = LY_STMT_ENUM;
921
922 stmt->next = calloc(1, sizeof *stmt->child);
923 stmt = stmt->next;
924 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
925 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
926 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "replace", 0, &stmt->arg));
927 stmt->kw = LY_STMT_ENUM;
928
929 stmt->next = calloc(1, sizeof *stmt->child);
930 stmt = stmt->next;
931 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
932 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
933 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "create", 0, &stmt->arg));
934 stmt->kw = LY_STMT_ENUM;
935
936 stmt->next = calloc(1, sizeof *stmt->child);
937 stmt = stmt->next;
938 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
939 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
940 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "delete", 0, &stmt->arg));
941 stmt->kw = LY_STMT_ENUM;
942
943 stmt->next = calloc(1, sizeof *stmt->child);
944 stmt = stmt->next;
945 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
946 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
947 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "remove", 0, &stmt->arg));
948 stmt->kw = LY_STMT_ENUM;
949
950 /*
951 * 2) filter's type
952 */
953 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->exts, ext_p, LY_EMEM);
954 LY_CHECK_ERR_RET(!ext_p, LOGMEM(mod->mod->ctx), LY_EMEM);
955 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_:annotation", 0, &ext_p->name));
956 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "type", 0, &ext_p->argument));
957 ext_p->flags = LYS_INTERNAL;
958 ext_p->insubstmt = LYEXT_SUBSTMT_SELF;
959 ext_p->insubstmt_index = 0;
960
961 ext_p->child = stmt = calloc(1, sizeof *ext_p->child);
962 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
963 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "type", 0, &stmt->stmt));
964 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enumeration", 0, &stmt->arg));
965 stmt->kw = LY_STMT_TYPE;
966
967 stmt->child = calloc(1, sizeof *stmt->child);
968 stmt = stmt->child;
969 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
970 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
971 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "subtree", 0, &stmt->arg));
972 stmt->kw = LY_STMT_ENUM;
973
974 stmt->next = calloc(1, sizeof *stmt->child);
975 stmt = stmt->next;
976 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
977 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
978 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "xpath", 0, &stmt->arg));
979 stmt->kw = LY_STMT_ENUM;
980
981 /* if-feature for enum allowed only for YANG 1.1 modules */
982 if (mod->version >= LYS_VERSION_1_1) {
983 stmt->child = calloc(1, sizeof *stmt->child);
984 stmt = stmt->child;
985 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
986 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "if-feature", 0, &stmt->stmt));
987 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "xpath", 0, &stmt->arg));
988 stmt->kw = LY_STMT_IF_FEATURE;
989 }
990
991 /*
992 * 3) filter's select
993 */
994 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->exts, ext_p, LY_EMEM);
995 LY_CHECK_ERR_RET(!ext_p, LOGMEM(mod->mod->ctx), LY_EMEM);
996 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_:annotation", 0, &ext_p->name));
997 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "select", 0, &ext_p->argument));
998 ext_p->flags = LYS_INTERNAL;
999 ext_p->insubstmt = LYEXT_SUBSTMT_SELF;
1000 ext_p->insubstmt_index = 0;
1001
1002 ext_p->child = stmt = calloc(1, sizeof *ext_p->child);
1003 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1004 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "type", 0, &stmt->stmt));
1005 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "yang_:xpath1.0", 0, &stmt->arg));
1006 stmt->kw = LY_STMT_TYPE;
1007
1008 /* create new imports for the used prefixes */
1009 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->imports, imp, LY_EMEM);
1010
1011 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "ietf-yang-metadata", 0, &imp->name));
1012 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_", 0, &imp->prefix));
1013 imp->flags = LYS_INTERNAL;
1014
1015 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->imports, imp, LY_EMEM);
1016
1017 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "ietf-yang-types", 0, &imp->name));
1018 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "yang_", 0, &imp->prefix));
1019 imp->flags = LYS_INTERNAL;
1020
1021 return LY_SUCCESS;
1022}
1023
1024/**
1025 * @brief Add ietf-netconf-with-defaults "default" metadata to the parsed module.
1026 *
1027 * @param[in] mod Parsed module to add to.
1028 * @return LY_SUCCESS on success.
1029 * @return LY_ERR on error.
1030 */
1031static LY_ERR
1032lys_parsed_add_internal_ietf_netconf_with_defaults(struct lysp_module *mod)
1033{
1034 struct lysp_ext_instance *ext_p;
1035 struct lysp_stmt *stmt;
1036 struct lysp_import *imp;
1037
1038 /* add new extension instance */
1039 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->exts, ext_p, LY_EMEM);
1040
1041 /* fill in the extension instance fields */
1042 LY_CHECK_ERR_RET(!ext_p, LOGMEM(mod->mod->ctx), LY_EMEM);
1043 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_:annotation", 0, &ext_p->name));
1044 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "default", 0, &ext_p->argument));
1045 ext_p->flags = LYS_INTERNAL;
1046 ext_p->insubstmt = LYEXT_SUBSTMT_SELF;
1047 ext_p->insubstmt_index = 0;
1048
1049 ext_p->child = stmt = calloc(1, sizeof *ext_p->child);
1050 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1051 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "type", 0, &stmt->stmt));
1052 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "boolean", 0, &stmt->arg));
1053 stmt->kw = LY_STMT_TYPE;
1054
1055 /* create new import for the used prefix */
1056 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->imports, imp, LY_EMEM);
1057
1058 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "ietf-yang-metadata", 0, &imp->name));
1059 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_", 0, &imp->prefix));
1060 imp->flags = LYS_INTERNAL;
1061
1062 return LY_SUCCESS;
1063}
1064
Michal Vasko3a41dff2020-07-15 14:30:28 +02001065LY_ERR
Michal Vasko34e334d2021-01-25 16:12:31 +01001066lys_create_module(struct ly_ctx *ctx, struct ly_in *in, LYS_INFORMAT format, ly_bool need_implemented,
Radek Krejci1deb5be2020-08-26 16:43:36 +02001067 LY_ERR (*custom_check)(const struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *data),
Michal Vasko405cc9e2020-12-01 12:01:27 +01001068 void *check_data, const char **features, struct lys_glob_unres *unres, struct lys_module **module)
Radek Krejci86d106e2018-10-18 09:53:19 +02001069{
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001070 struct lys_module *mod = NULL, *latest, *mod_dup, *mod_impl;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02001071 struct lysp_submodule *submod;
Michal Vasko3a41dff2020-07-15 14:30:28 +02001072 LY_ERR ret;
Michal Vasko7c8439f2020-08-05 13:25:19 +02001073 LY_ARRAY_COUNT_TYPE u;
Michal Vaskob36053d2020-03-26 15:49:30 +01001074 struct lys_yang_parser_ctx *yangctx = NULL;
1075 struct lys_yin_parser_ctx *yinctx = NULL;
Radek Krejcif6923e82020-07-02 16:36:53 +02001076 struct lys_parser_ctx *pctx = NULL;
Michal Vasko7a0b0762020-09-02 16:37:01 +02001077 char *filename, *rev, *dot;
1078 size_t len;
Michal Vasko34e334d2021-01-25 16:12:31 +01001079 ly_bool implement;
Radek Krejci86d106e2018-10-18 09:53:19 +02001080
Michal Vasko34e334d2021-01-25 16:12:31 +01001081 assert(ctx && in && (!features || need_implemented) && unres);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001082
Michal Vasko7a0b0762020-09-02 16:37:01 +02001083 if (module) {
1084 *module = NULL;
1085 }
Radek Krejci86d106e2018-10-18 09:53:19 +02001086
Michal Vasko34e334d2021-01-25 16:12:31 +01001087 if (ctx->flags & LY_CTX_ALL_IMPLEMENTED) {
1088 implement = 1;
1089 } else {
1090 implement = need_implemented;
Radek Krejci00a3e8a2021-01-27 08:24:49 +01001091 }
Michal Vasko34e334d2021-01-25 16:12:31 +01001092
Radek Krejci86d106e2018-10-18 09:53:19 +02001093 mod = calloc(1, sizeof *mod);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001094 LY_CHECK_ERR_RET(!mod, LOGMEM(ctx), LY_EMEM);
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001095 mod->ctx = ctx;
Radek Krejci86d106e2018-10-18 09:53:19 +02001096
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001097 /* parse */
Radek Krejci86d106e2018-10-18 09:53:19 +02001098 switch (format) {
1099 case LYS_IN_YIN:
Michal Vasko405cc9e2020-12-01 12:01:27 +01001100 ret = yin_parse_module(&yinctx, in, mod, unres);
Michal Vaskob36053d2020-03-26 15:49:30 +01001101 pctx = (struct lys_parser_ctx *)yinctx;
Radek Krejci86d106e2018-10-18 09:53:19 +02001102 break;
1103 case LYS_IN_YANG:
Michal Vasko405cc9e2020-12-01 12:01:27 +01001104 ret = yang_parse_module(&yangctx, in, mod, unres);
Michal Vaskob36053d2020-03-26 15:49:30 +01001105 pctx = (struct lys_parser_ctx *)yangctx;
Radek Krejci86d106e2018-10-18 09:53:19 +02001106 break;
1107 default:
1108 LOGERR(ctx, LY_EINVAL, "Invalid schema input format.");
Michal Vasko3a41dff2020-07-15 14:30:28 +02001109 ret = LY_EINVAL;
Radek Krejci86d106e2018-10-18 09:53:19 +02001110 break;
1111 }
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001112 LY_CHECK_GOTO(ret, free_mod_cleanup);
Radek Krejci9f5e6fb2018-10-25 09:26:12 +02001113
1114 /* make sure that the newest revision is at position 0 */
1115 lysp_sort_revisions(mod->parsed->revs);
Radek Krejci0af46292019-01-11 16:02:31 +01001116 if (mod->parsed->revs) {
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001117 LY_CHECK_GOTO(ret = lydict_insert(ctx, mod->parsed->revs[0].date, 0, &mod->revision), free_mod_cleanup);
Radek Krejci0af46292019-01-11 16:02:31 +01001118 }
Radek Krejci86d106e2018-10-18 09:53:19 +02001119
Radek Krejcib3289d62019-09-18 12:21:39 +02001120 /* decide the latest revision */
Michal Vasko22df3f02020-08-24 13:29:22 +02001121 latest = (struct lys_module *)ly_ctx_get_module_latest(ctx, mod->name);
Radek Krejcib3289d62019-09-18 12:21:39 +02001122 if (latest) {
1123 if (mod->revision) {
1124 if (!latest->revision) {
1125 /* latest has no revision, so mod is anyway newer */
1126 mod->latest_revision = latest->latest_revision;
1127 /* the latest is zeroed later when the new module is being inserted into the context */
1128 } else if (strcmp(mod->revision, latest->revision) > 0) {
1129 mod->latest_revision = latest->latest_revision;
1130 /* the latest is zeroed later when the new module is being inserted into the context */
1131 } else {
1132 latest = NULL;
1133 }
1134 } else {
1135 latest = NULL;
1136 }
1137 } else {
1138 mod->latest_revision = 1;
1139 }
1140
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001141 if (custom_check) {
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001142 LY_CHECK_GOTO(ret = custom_check(ctx, mod->parsed, NULL, check_data), free_mod_cleanup);
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001143 }
1144
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001145 /* check whether it is not already in the context in the same revision */
Michal Vasko22df3f02020-08-24 13:29:22 +02001146 mod_dup = (struct lys_module *)ly_ctx_get_module(ctx, mod->name, mod->revision);
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001147 if (implement) {
1148 mod_impl = ly_ctx_get_module_implemented(ctx, mod->name);
1149 if (mod_impl && (mod_impl != mod_dup)) {
1150 LOGERR(ctx, LY_EDENIED, "Module \"%s@%s\" is already implemented in the context.", mod_impl->name,
1151 mod_impl->revision ? mod_impl->revision : "<none>");
1152 ret = LY_EDENIED;
1153 goto free_mod_cleanup;
Radek Krejcid33273d2018-10-25 14:55:52 +02001154 }
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001155 }
1156 if (mod_dup) {
1157 if (implement) {
1158 if (!mod_dup->implemented) {
1159 /* just implement it */
1160 LY_CHECK_GOTO(ret = lys_set_implemented_r(mod_dup, features, unres), free_mod_cleanup);
1161 goto free_mod_cleanup;
1162 }
1163
1164 /* nothing to do */
1165 LOGVRB("Module \"%s@%s\" is already implemented in the context.", mod_dup->name,
1166 mod_dup->revision ? mod_dup->revision : "<none>");
1167 goto free_mod_cleanup;
1168 }
1169
1170 /* nothing to do */
1171 LOGVRB("Module \"%s@%s\" is already present in the context.", mod_dup->name,
1172 mod_dup->revision ? mod_dup->revision : "<none>");
1173 goto free_mod_cleanup;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001174 }
Radek Krejci86d106e2018-10-18 09:53:19 +02001175
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001176 switch (in->type) {
1177 case LY_IN_FILEPATH:
1178 /* check that name and revision match filename */
1179 filename = strrchr(in->method.fpath.filepath, '/');
1180 if (!filename) {
1181 filename = in->method.fpath.filepath;
1182 } else {
1183 filename++;
1184 }
1185 rev = strchr(filename, '@');
1186 dot = strrchr(filename, '.');
1187
1188 /* name */
1189 len = strlen(mod->name);
1190 if (strncmp(filename, mod->name, len) ||
Michal Vasko69730152020-10-09 16:30:07 +02001191 ((rev && (rev != &filename[len])) || (!rev && (dot != &filename[len])))) {
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001192 LOGWRN(ctx, "File name \"%s\" does not match module name \"%s\".", filename, mod->name);
1193 }
1194 if (rev) {
1195 len = dot - ++rev;
Radek Krejcif13b87b2020-12-01 22:02:17 +01001196 if (!mod->parsed->revs || (len != LY_REV_SIZE - 1) || strncmp(mod->parsed->revs[0].date, rev, len)) {
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001197 LOGWRN(ctx, "File name \"%s\" does not match module revision \"%s\".", filename,
Michal Vasko69730152020-10-09 16:30:07 +02001198 mod->parsed->revs ? mod->parsed->revs[0].date : "none");
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001199 }
1200 }
1201
1202 break;
1203 case LY_IN_FD:
1204 case LY_IN_FILE:
1205 case LY_IN_MEMORY:
1206 /* nothing special to do */
1207 break;
Michal Vasko7a0b0762020-09-02 16:37:01 +02001208 case LY_IN_ERROR:
1209 LOGINT(ctx);
1210 ret = LY_EINT;
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001211 goto free_mod_cleanup;
Radek Krejci096235c2019-01-11 11:12:19 +01001212 }
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001213 lys_parser_fill_filepath(ctx, in, &mod->filepath);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001214
Michal Vasko7a0b0762020-09-02 16:37:01 +02001215 if (latest) {
1216 latest->latest_revision = 0;
1217 }
1218
Michal Vasko45b521c2020-11-04 17:14:39 +01001219 /* add internal data in case specific modules were parsed */
1220 if (!strcmp(mod->name, "ietf-netconf")) {
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001221 LY_CHECK_GOTO(ret = lys_parsed_add_internal_ietf_netconf(mod->parsed), free_mod_cleanup);
Michal Vasko45b521c2020-11-04 17:14:39 +01001222 } else if (!strcmp(mod->name, "ietf-netconf-with-defaults")) {
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001223 LY_CHECK_GOTO(ret = lys_parsed_add_internal_ietf_netconf_with_defaults(mod->parsed), free_mod_cleanup);
Michal Vasko45b521c2020-11-04 17:14:39 +01001224 }
1225
Michal Vasko405cc9e2020-12-01 12:01:27 +01001226 /* add the module into newly created module set, will also be freed from there on any error */
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001227 LY_CHECK_GOTO(ret = ly_set_add(&unres->creating, mod, 1, NULL), free_mod_cleanup);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001228
Michal Vasko7a0b0762020-09-02 16:37:01 +02001229 /* add into context */
Radek Krejci3d92e442020-10-12 12:48:13 +02001230 ret = ly_set_add(&ctx->list, mod, 1, NULL);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001231 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko7a0b0762020-09-02 16:37:01 +02001232 ctx->module_set_id++;
1233
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001234 /* resolve includes and all imports */
Michal Vasko405cc9e2020-12-01 12:01:27 +01001235 LY_CHECK_GOTO(ret = lys_resolve_import_include(pctx, mod->parsed), cleanup);
Michal Vasko7a0b0762020-09-02 16:37:01 +02001236
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001237 /* check name collisions */
Michal Vasko405cc9e2020-12-01 12:01:27 +01001238 LY_CHECK_GOTO(ret = lysp_check_dup_typedefs(pctx, mod->parsed), cleanup);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001239 /* TODO groupings */
Michal Vasko405cc9e2020-12-01 12:01:27 +01001240 LY_CHECK_GOTO(ret = lysp_check_dup_features(pctx, mod->parsed), cleanup);
1241 LY_CHECK_GOTO(ret = lysp_check_dup_identities(pctx, mod->parsed), cleanup);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001242
1243 /* compile features */
Michal Vasko405cc9e2020-12-01 12:01:27 +01001244 LY_CHECK_GOTO(ret = lys_compile_feature_iffeatures(mod->parsed), cleanup);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001245
Michal Vasko89b5c072020-10-06 13:52:44 +02001246 if (!implement) {
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001247 /* pre-compile identities of the module */
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001248 LY_CHECK_GOTO(ret = lys_identity_precompile(NULL, ctx, mod->parsed, mod->parsed->identities, &mod->identities), cleanup);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001249
1250 /* pre-compile identities of any submodules */
Michal Vasko7a0b0762020-09-02 16:37:01 +02001251 LY_ARRAY_FOR(mod->parsed->includes, u) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02001252 submod = mod->parsed->includes[u].submodule;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02001253 ret = lys_identity_precompile(NULL, ctx, (struct lysp_module *)submod, submod->identities, &mod->identities);
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001254 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko7a0b0762020-09-02 16:37:01 +02001255 }
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001256 } else {
Michal Vasko89b5c072020-10-06 13:52:44 +02001257 /* implement (compile) */
Michal Vasko405cc9e2020-12-01 12:01:27 +01001258 LY_CHECK_GOTO(ret = lys_set_implemented_r(mod, features, unres), cleanup);
Michal Vasko7a0b0762020-09-02 16:37:01 +02001259 }
1260
Michal Vasko405cc9e2020-12-01 12:01:27 +01001261 /* success */
1262 goto cleanup;
Michal Vasko7a0b0762020-09-02 16:37:01 +02001263
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001264free_mod_cleanup:
Michal Vasko7a0b0762020-09-02 16:37:01 +02001265 lys_module_free(mod, NULL);
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001266 mod = NULL;
1267
Michal Vasko405cc9e2020-12-01 12:01:27 +01001268cleanup:
Michal Vasko7a0b0762020-09-02 16:37:01 +02001269 if (pctx) {
1270 ly_set_erase(&pctx->tpdfs_nodes, NULL);
1271 }
1272 if (format == LYS_IN_YANG) {
1273 yang_parser_ctx_free(yangctx);
1274 } else {
1275 yin_parser_ctx_free(yinctx);
1276 }
1277
Michal Vasko405cc9e2020-12-01 12:01:27 +01001278 if (!ret && module) {
1279 *module = mod;
1280 }
Michal Vasko7a0b0762020-09-02 16:37:01 +02001281 return ret;
1282}
1283
Radek Krejci545b4872020-11-15 10:15:12 +01001284static LYS_INFORMAT
1285lys_parse_get_format(const struct ly_in *in, LYS_INFORMAT format)
1286{
1287 if (!format && (in->type == LY_IN_FILEPATH)) {
1288 /* unknown format - try to detect it from filename's suffix */
1289 const char *path = in->method.fpath.filepath;
1290 size_t len = strlen(path);
1291
1292 /* ignore trailing whitespaces */
1293 for ( ; len > 0 && isspace(path[len - 1]); len--) {}
1294
Radek Krejcif13b87b2020-12-01 22:02:17 +01001295 if ((len >= LY_YANG_SUFFIX_LEN + 1) &&
1296 !strncmp(&path[len - LY_YANG_SUFFIX_LEN], LY_YANG_SUFFIX, LY_YANG_SUFFIX_LEN)) {
Radek Krejci545b4872020-11-15 10:15:12 +01001297 format = LYS_IN_YANG;
Radek Krejcif13b87b2020-12-01 22:02:17 +01001298 } else if ((len >= LY_YIN_SUFFIX_LEN + 1) &&
1299 !strncmp(&path[len - LY_YIN_SUFFIX_LEN], LY_YIN_SUFFIX, LY_YIN_SUFFIX_LEN)) {
Radek Krejci545b4872020-11-15 10:15:12 +01001300 format = LYS_IN_YIN;
1301 } /* else still unknown */
1302 }
1303
1304 return format;
1305}
1306
Michal Vasko7a0b0762020-09-02 16:37:01 +02001307API LY_ERR
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001308lys_parse(struct ly_ctx *ctx, struct ly_in *in, LYS_INFORMAT format, const char **features, const struct lys_module **module)
Michal Vasko7a0b0762020-09-02 16:37:01 +02001309{
Michal Vasko405cc9e2020-12-01 12:01:27 +01001310 LY_ERR ret;
1311 struct lys_glob_unres unres = {0};
1312
Michal Vasko7a0b0762020-09-02 16:37:01 +02001313 if (module) {
1314 *module = NULL;
1315 }
Radek Krejci545b4872020-11-15 10:15:12 +01001316 LY_CHECK_ARG_RET(NULL, ctx, in, LY_EINVAL);
1317
1318 format = lys_parse_get_format(in, format);
1319 LY_CHECK_ARG_RET(ctx, format, LY_EINVAL);
Michal Vasko7a0b0762020-09-02 16:37:01 +02001320
1321 /* remember input position */
1322 in->func_start = in->current;
1323
Michal Vasko405cc9e2020-12-01 12:01:27 +01001324 ret = lys_create_module(ctx, in, format, 1, NULL, NULL, features, &unres, (struct lys_module **)module);
1325 LY_CHECK_GOTO(ret, cleanup);
1326
1327 /* resolve global unres */
1328 ret = lys_compile_unres_glob(ctx, &unres);
1329 LY_CHECK_GOTO(ret, cleanup);
1330
1331cleanup:
1332 if (ret) {
1333 lys_compile_unres_glob_revert(ctx, &unres);
1334 }
1335 lys_compile_unres_glob_erase(ctx, &unres);
1336 if (ret && module) {
1337 *module = NULL;
1338 }
1339 return ret;
Radek Krejci86d106e2018-10-18 09:53:19 +02001340}
1341
Michal Vasko3a41dff2020-07-15 14:30:28 +02001342API LY_ERR
1343lys_parse_mem(struct ly_ctx *ctx, const char *data, LYS_INFORMAT format, const struct lys_module **module)
Radek Krejci86d106e2018-10-18 09:53:19 +02001344{
Radek Krejci0f969882020-08-21 16:56:47 +02001345 LY_ERR ret;
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001346 struct ly_in *in = NULL;
Radek Krejci86d106e2018-10-18 09:53:19 +02001347
Michal Vasko3a41dff2020-07-15 14:30:28 +02001348 LY_CHECK_ARG_RET(ctx, data, format != LYS_IN_UNKNOWN, LY_EINVAL);
Radek Krejci65639b92018-11-27 10:51:37 +01001349
Michal Vasko3a41dff2020-07-15 14:30:28 +02001350 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 +02001351
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001352 ret = lys_parse(ctx, in, format, NULL, module);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001353 ly_in_free(in, 0);
Radek Krejci86d106e2018-10-18 09:53:19 +02001354
Michal Vasko3a41dff2020-07-15 14:30:28 +02001355 return ret;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001356}
1357
Michal Vasko3a41dff2020-07-15 14:30:28 +02001358API LY_ERR
1359lys_parse_fd(struct ly_ctx *ctx, int fd, LYS_INFORMAT format, const struct lys_module **module)
Radek Krejci86d106e2018-10-18 09:53:19 +02001360{
Radek Krejci0f969882020-08-21 16:56:47 +02001361 LY_ERR ret;
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001362 struct ly_in *in = NULL;
Radek Krejci86d106e2018-10-18 09:53:19 +02001363
Michal Vasko3a41dff2020-07-15 14:30:28 +02001364 LY_CHECK_ARG_RET(ctx, fd > -1, format != LYS_IN_UNKNOWN, LY_EINVAL);
Radek Krejci86d106e2018-10-18 09:53:19 +02001365
Michal Vasko3a41dff2020-07-15 14:30:28 +02001366 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 +02001367
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001368 ret = lys_parse(ctx, in, format, NULL, module);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001369 ly_in_free(in, 0);
Radek Krejci86d106e2018-10-18 09:53:19 +02001370
Michal Vasko3a41dff2020-07-15 14:30:28 +02001371 return ret;
Radek Krejci86d106e2018-10-18 09:53:19 +02001372}
1373
Michal Vasko3a41dff2020-07-15 14:30:28 +02001374API LY_ERR
1375lys_parse_path(struct ly_ctx *ctx, const char *path, LYS_INFORMAT format, const struct lys_module **module)
Radek Krejcid33273d2018-10-25 14:55:52 +02001376{
Radek Krejci0f969882020-08-21 16:56:47 +02001377 LY_ERR ret;
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001378 struct ly_in *in = NULL;
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001379
Michal Vasko3a41dff2020-07-15 14:30:28 +02001380 LY_CHECK_ARG_RET(ctx, path, format != LYS_IN_UNKNOWN, LY_EINVAL);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001381
Michal Vasko3a41dff2020-07-15 14:30:28 +02001382 LY_CHECK_ERR_RET(ret = ly_in_new_filepath(path, 0, &in),
Michal Vasko69730152020-10-09 16:30:07 +02001383 LOGERR(ctx, ret, "Unable to create input handler for filepath %s.", path), ret);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001384
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001385 ret = lys_parse(ctx, in, format, NULL, module);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001386 ly_in_free(in, 0);
1387
Michal Vasko3a41dff2020-07-15 14:30:28 +02001388 return ret;
Radek Krejcid33273d2018-10-25 14:55:52 +02001389}
1390
1391API LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02001392lys_search_localfile(const char * const *searchpaths, ly_bool cwd, const char *name, const char *revision,
Radek Krejci0f969882020-08-21 16:56:47 +02001393 char **localfile, LYS_INFORMAT *format)
Radek Krejcid33273d2018-10-25 14:55:52 +02001394{
Radek Krejci1deb5be2020-08-26 16:43:36 +02001395 LY_ERR ret = LY_EMEM;
Radek Krejcid33273d2018-10-25 14:55:52 +02001396 size_t len, flen, match_len = 0, dir_len;
Radek Krejci857189e2020-09-01 13:26:36 +02001397 ly_bool implicit_cwd = 0;
Radek Krejcid33273d2018-10-25 14:55:52 +02001398 char *wd, *wn = NULL;
1399 DIR *dir = NULL;
1400 struct dirent *file;
1401 char *match_name = NULL;
1402 LYS_INFORMAT format_aux, match_format = 0;
1403 struct ly_set *dirs;
1404 struct stat st;
1405
1406 LY_CHECK_ARG_RET(NULL, localfile, LY_EINVAL);
1407
1408 /* start to fill the dir fifo with the context's search path (if set)
1409 * and the current working directory */
Radek Krejciba03a5a2020-08-27 14:40:41 +02001410 LY_CHECK_RET(ly_set_new(&dirs));
Radek Krejcid33273d2018-10-25 14:55:52 +02001411
1412 len = strlen(name);
1413 if (cwd) {
1414 wd = get_current_dir_name();
1415 if (!wd) {
1416 LOGMEM(NULL);
1417 goto cleanup;
1418 } else {
1419 /* add implicit current working directory (./) to be searched,
1420 * this directory is not searched recursively */
Radek Krejciba03a5a2020-08-27 14:40:41 +02001421 ret = ly_set_add(dirs, wd, 0, NULL);
1422 LY_CHECK_GOTO(ret, cleanup);
Radek Krejcid33273d2018-10-25 14:55:52 +02001423 implicit_cwd = 1;
1424 }
1425 }
1426 if (searchpaths) {
Radek Krejci1deb5be2020-08-26 16:43:36 +02001427 for (uint64_t i = 0; searchpaths[i]; i++) {
Radek Krejcid33273d2018-10-25 14:55:52 +02001428 /* check for duplicities with the implicit current working directory */
1429 if (implicit_cwd && !strcmp(dirs->objs[0], searchpaths[i])) {
1430 implicit_cwd = 0;
1431 continue;
1432 }
1433 wd = strdup(searchpaths[i]);
1434 if (!wd) {
1435 LOGMEM(NULL);
1436 goto cleanup;
Radek Krejciba03a5a2020-08-27 14:40:41 +02001437 } else {
1438 ret = ly_set_add(dirs, wd, 0, NULL);
1439 LY_CHECK_GOTO(ret, cleanup);
Radek Krejcid33273d2018-10-25 14:55:52 +02001440 }
1441 }
1442 }
1443 wd = NULL;
1444
1445 /* start searching */
1446 while (dirs->count) {
1447 free(wd);
1448 free(wn); wn = NULL;
1449
1450 dirs->count--;
1451 wd = (char *)dirs->objs[dirs->count];
1452 dirs->objs[dirs->count] = NULL;
Radek Krejcieeee95c2021-01-19 10:57:22 +01001453 LOGVRB("Searching for \"%s\" in \"%s\".", name, wd);
Radek Krejcid33273d2018-10-25 14:55:52 +02001454
1455 if (dir) {
1456 closedir(dir);
1457 }
1458 dir = opendir(wd);
1459 dir_len = strlen(wd);
1460 if (!dir) {
1461 LOGWRN(NULL, "Unable to open directory \"%s\" for searching (sub)modules (%s).", wd, strerror(errno));
1462 } else {
1463 while ((file = readdir(dir))) {
1464 if (!strcmp(".", file->d_name) || !strcmp("..", file->d_name)) {
1465 /* skip . and .. */
1466 continue;
1467 }
1468 free(wn);
1469 if (asprintf(&wn, "%s/%s", wd, file->d_name) == -1) {
1470 LOGMEM(NULL);
1471 goto cleanup;
1472 }
1473 if (stat(wn, &st) == -1) {
1474 LOGWRN(NULL, "Unable to get information about \"%s\" file in \"%s\" when searching for (sub)modules (%s)",
Michal Vasko69730152020-10-09 16:30:07 +02001475 file->d_name, wd, strerror(errno));
Radek Krejcid33273d2018-10-25 14:55:52 +02001476 continue;
1477 }
1478 if (S_ISDIR(st.st_mode) && (dirs->count || !implicit_cwd)) {
1479 /* we have another subdirectory in searchpath to explore,
1480 * subdirectories are not taken into account in current working dir (dirs->set.g[0]) */
Radek Krejciba03a5a2020-08-27 14:40:41 +02001481 ret = ly_set_add(dirs, wn, 0, NULL);
1482 LY_CHECK_GOTO(ret, cleanup);
1483
Radek Krejcid33273d2018-10-25 14:55:52 +02001484 /* continue with the next item in current directory */
1485 wn = NULL;
1486 continue;
1487 } else if (!S_ISREG(st.st_mode)) {
1488 /* not a regular file (note that we see the target of symlinks instead of symlinks */
1489 continue;
1490 }
1491
1492 /* here we know that the item is a file which can contain a module */
1493 if (strncmp(name, file->d_name, len) ||
Michal Vasko69730152020-10-09 16:30:07 +02001494 ((file->d_name[len] != '.') && (file->d_name[len] != '@'))) {
Radek Krejcid33273d2018-10-25 14:55:52 +02001495 /* different filename than the module we search for */
1496 continue;
1497 }
1498
1499 /* get type according to filename suffix */
1500 flen = strlen(file->d_name);
Radek Krejcif13b87b2020-12-01 22:02:17 +01001501 if ((flen >= LY_YANG_SUFFIX_LEN + 1) &&
1502 !strcmp(&file->d_name[flen - LY_YANG_SUFFIX_LEN], LY_YANG_SUFFIX)) {
Radek Krejcid33273d2018-10-25 14:55:52 +02001503 format_aux = LYS_IN_YANG;
Radek Krejcif13b87b2020-12-01 22:02:17 +01001504 } else if ((flen >= LY_YIN_SUFFIX_LEN + 1) &&
1505 !strcmp(&file->d_name[flen - LY_YIN_SUFFIX_LEN], LY_YIN_SUFFIX)) {
Radek Krejci01a937f2020-11-15 10:14:12 +01001506 format_aux = LYS_IN_YIN;
Radek Krejcid33273d2018-10-25 14:55:52 +02001507 } else {
1508 /* not supportde suffix/file format */
1509 continue;
1510 }
1511
1512 if (revision) {
1513 /* we look for the specific revision, try to get it from the filename */
1514 if (file->d_name[len] == '@') {
1515 /* check revision from the filename */
1516 if (strncmp(revision, &file->d_name[len + 1], strlen(revision))) {
1517 /* another revision */
1518 continue;
1519 } else {
1520 /* exact revision */
1521 free(match_name);
1522 match_name = wn;
1523 wn = NULL;
1524 match_len = dir_len + 1 + len;
1525 match_format = format_aux;
1526 goto success;
1527 }
1528 } else {
1529 /* continue trying to find exact revision match, use this only if not found */
1530 free(match_name);
1531 match_name = wn;
1532 wn = NULL;
Michal Vasko44f3d2c2020-08-24 09:49:38 +02001533 match_len = dir_len + 1 + len;
Radek Krejcid33273d2018-10-25 14:55:52 +02001534 match_format = format_aux;
1535 continue;
1536 }
1537 } else {
1538 /* remember the revision and try to find the newest one */
1539 if (match_name) {
Michal Vasko69730152020-10-09 16:30:07 +02001540 if ((file->d_name[len] != '@') ||
Radek Krejcif13b87b2020-12-01 22:02:17 +01001541 lysp_check_date(NULL, &file->d_name[len + 1],
1542 flen - ((format_aux == LYS_IN_YANG) ? LY_YANG_SUFFIX_LEN : LY_YIN_SUFFIX_LEN) - len - 1, NULL)) {
Radek Krejcid33273d2018-10-25 14:55:52 +02001543 continue;
Michal Vasko69730152020-10-09 16:30:07 +02001544 } else if ((match_name[match_len] == '@') &&
Radek Krejcid33273d2018-10-25 14:55:52 +02001545 (strncmp(&match_name[match_len + 1], &file->d_name[len + 1], LY_REV_SIZE - 1) >= 0)) {
1546 continue;
1547 }
1548 free(match_name);
1549 }
1550
1551 match_name = wn;
1552 wn = NULL;
1553 match_len = dir_len + 1 + len;
1554 match_format = format_aux;
1555 continue;
1556 }
1557 }
1558 }
1559 }
1560
1561success:
1562 (*localfile) = match_name;
1563 match_name = NULL;
1564 if (format) {
1565 (*format) = match_format;
1566 }
Radek Krejci1deb5be2020-08-26 16:43:36 +02001567 ret = LY_SUCCESS;
Radek Krejcid33273d2018-10-25 14:55:52 +02001568
1569cleanup:
1570 free(wn);
1571 free(wd);
1572 if (dir) {
1573 closedir(dir);
1574 }
1575 free(match_name);
1576 ly_set_free(dirs, free);
1577
1578 return ret;
1579}