blob: 03ca6f8d8ac317cf8e408cc42eb52a0923018dac [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
16
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>
Michal Vasko7b1ad1a2020-11-02 15:41:27 +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"
34#include "log.h"
Michal Vaskoafac7822020-10-20 14:22:26 +020035#include "in_internal.h"
Radek Krejcif0e1ba52020-05-22 15:14:35 +020036#include "parser_internal.h"
Radek Krejcica376bd2020-06-11 16:04:06 +020037#include "parser_schema.h"
Michal Vasko40308e72020-10-20 16:38:40 +020038#include "path.h"
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020039#include "schema_compile.h"
40#include "schema_compile_amend.h"
Michal Vasko7b1ad1a2020-11-02 15:41:27 +010041#include "schema_features.h"
Radek Krejcica376bd2020-06-11 16:04:06 +020042#include "set.h"
43#include "tree.h"
44#include "tree_schema_internal.h"
45#include "xpath.h"
Radek Krejci3f5e3db2018-10-11 15:57:47 +020046
Michal Vaskof1ab44f2020-10-22 08:58:32 +020047API LY_ERR
48lysc_tree_dfs_full(const struct lysc_node *root, lysc_dfs_clb dfs_clb, void *data)
49{
50 struct lysc_node *elem, *ops, *elem2;
51 LY_ARRAY_COUNT_TYPE u;
52
53 LY_CHECK_ARG_RET(NULL, root, dfs_clb, LY_EINVAL);
54
55 LYSC_TREE_DFS_BEGIN(root, elem) {
56 /* schema node */
57 LY_CHECK_RET(dfs_clb(elem, data, &LYSC_TREE_DFS_continue));
58
59 ops = (struct lysc_node *)lysc_node_actions(elem);
60 LY_ARRAY_FOR(ops, u) {
61 LYSC_TREE_DFS_BEGIN(&ops[u], elem2) {
62 /* action subtree */
63 LY_CHECK_RET(dfs_clb(elem2, data, &LYSC_TREE_DFS_continue));
64
65 LYSC_TREE_DFS_END(&ops[u], elem2);
66 }
67 }
68
69 ops = (struct lysc_node *)lysc_node_notifs(elem);
70 LY_ARRAY_FOR(ops, u) {
71 LYSC_TREE_DFS_BEGIN(&ops[u], elem2) {
72 /* notification subtree */
73 LY_CHECK_RET(dfs_clb(elem2, data, &LYSC_TREE_DFS_continue));
74
75 LYSC_TREE_DFS_END(&ops[u], elem2);
76 }
77 }
78
79 LYSC_TREE_DFS_END(root, elem);
80 }
81
82 return LY_SUCCESS;
83}
84
85API LY_ERR
86lysc_module_dfs_full(const struct lys_module *mod, lysc_dfs_clb dfs_clb, void *data)
87{
88 LY_ARRAY_COUNT_TYPE u;
89
90 LY_CHECK_ARG_RET(NULL, mod, mod->compiled, dfs_clb, LY_EINVAL);
91
92 /* schema nodes */
93 LY_CHECK_RET(lysc_tree_dfs_full(mod->compiled->data, dfs_clb, data));
94
95 /* RPCs */
96 LY_ARRAY_FOR(mod->compiled->rpcs, u) {
97 LY_CHECK_RET(lysc_tree_dfs_full((struct lysc_node *)&mod->compiled->rpcs[u], dfs_clb, data));
98 }
99
100 /* notifications */
101 LY_ARRAY_FOR(mod->compiled->notifs, u) {
102 LY_CHECK_RET(lysc_tree_dfs_full((struct lysc_node *)&mod->compiled->notifs[u], dfs_clb, data));
103 }
104
105 return LY_SUCCESS;
106}
107
Radek Krejcib93bd412020-11-02 13:23:11 +0100108static void
109lys_getnext_into_case(const struct lysc_node_case *first_case, const struct lysc_node **last, const struct lysc_node **next)
110{
111 for (; first_case; first_case = (const struct lysc_node_case*)first_case->next) {
112 if (first_case->child) {
113 /* there is something to return */
114 (*next) = first_case->child;
115 return;
116 }
117 }
118
119 /* no children in choice's cases, so go to the choice's sibling instead of into it */
120 (*last) = (*next);
121 (*next) = (*next)->next;
122}
123
Radek Krejcia3045382018-11-22 14:30:31 +0100124API const struct lysc_node *
Radek Krejci1deb5be2020-08-26 16:43:36 +0200125lys_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 +0100126{
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100127 const struct lysc_node *next = NULL;
Radek Krejcia3045382018-11-22 14:30:31 +0100128 struct lysc_node **snode;
Radek Krejci857189e2020-09-01 13:26:36 +0200129 ly_bool action_flag = 0, notif_flag = 0;
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100130 const struct lysc_action *actions;
131 const struct lysc_notif *notifs;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200132 LY_ARRAY_COUNT_TYPE u;
Radek Krejcia3045382018-11-22 14:30:31 +0100133
134 LY_CHECK_ARG_RET(NULL, parent || module, NULL);
135
Radek Krejcid5a2b9d2019-04-12 10:39:30 +0200136next:
Radek Krejcia3045382018-11-22 14:30:31 +0100137 if (!last) {
138 /* first call */
139
140 /* get know where to start */
141 if (parent) {
142 /* schema subtree */
Michal Vasko69730152020-10-09 16:30:07 +0200143 if ((parent->nodetype == LYS_CHOICE) && (options & LYS_GETNEXT_WITHCASE)) {
Michal Vasko22df3f02020-08-24 13:29:22 +0200144 if (((struct lysc_node_choice *)parent)->cases) {
Radek Krejcib93bd412020-11-02 13:23:11 +0100145 next = last = (const struct lysc_node *)((struct lysc_node_choice *)parent)->cases;
Radek Krejci056d0a82018-12-06 16:57:25 +0100146 }
Radek Krejci056d0a82018-12-06 16:57:25 +0100147 } else {
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100148 snode = lysc_node_children_p(parent, (options & LYS_GETNEXT_OUTPUT) ? LYS_CONFIG_R : LYS_CONFIG_W);
Radek Krejci05b774b2019-02-25 13:26:18 +0100149 /* do not return anything if the node does not have any children */
Radek Krejcid5a2b9d2019-04-12 10:39:30 +0200150 if (snode && *snode) {
151 next = last = *snode;
Radek Krejci056d0a82018-12-06 16:57:25 +0100152 }
Radek Krejcia3045382018-11-22 14:30:31 +0100153 }
Radek Krejcia3045382018-11-22 14:30:31 +0100154 } else {
155 /* top level data */
156 next = last = module->data;
157 }
158 if (!next) {
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100159 /* try to get action or notification */
160 goto repeat;
Radek Krejcia3045382018-11-22 14:30:31 +0100161 }
Radek Krejci05b774b2019-02-25 13:26:18 +0100162 /* test if the next can be returned */
163 goto check;
164
Michal Vasko1bf09392020-03-27 12:38:10 +0100165 } else if (last->nodetype & (LYS_RPC | LYS_ACTION)) {
Radek Krejci05b774b2019-02-25 13:26:18 +0100166 action_flag = 1;
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100167 if (last->parent) {
168 actions = lysc_node_actions(last->parent);
169 } else {
170 actions = module->rpcs;
171 }
172 LY_ARRAY_FOR(actions, u) {
Michal Vasko22df3f02020-08-24 13:29:22 +0200173 if (&actions[u] == (struct lysc_action *)last) {
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100174 break;
175 }
176 }
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200177 if (u + 1 < LY_ARRAY_COUNT(actions)) {
Michal Vasko22df3f02020-08-24 13:29:22 +0200178 next = (struct lysc_node *)(&actions[u + 1]);
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100179 }
180 goto repeat;
181 } else if (last->nodetype == LYS_NOTIF) {
Radek Krejci05b774b2019-02-25 13:26:18 +0100182 action_flag = notif_flag = 1;
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100183 if (last->parent) {
184 notifs = lysc_node_notifs(last->parent);
185 } else {
186 notifs = module->notifs;
187 }
188 LY_ARRAY_FOR(notifs, u) {
Michal Vasko22df3f02020-08-24 13:29:22 +0200189 if (&notifs[u] == (struct lysc_notif *)last) {
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100190 break;
191 }
192 }
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200193 if (u + 1 < LY_ARRAY_COUNT(notifs)) {
Michal Vasko22df3f02020-08-24 13:29:22 +0200194 next = (struct lysc_node *)(&notifs[u + 1]);
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100195 }
196 goto repeat;
Michal Vasko20424b42020-08-31 12:29:38 +0200197 } else {
198 next = last->next;
Radek Krejcia3045382018-11-22 14:30:31 +0100199 }
200
Radek Krejcia3045382018-11-22 14:30:31 +0100201repeat:
202 if (!next) {
Radek Krejcia9026eb2018-12-12 16:04:47 +0100203 /* possibly go back to parent */
Michal Vasko69730152020-10-09 16:30:07 +0200204 if (last && (last->parent != parent)) {
Radek Krejcia9026eb2018-12-12 16:04:47 +0100205 last = last->parent;
Radek Krejcid5a2b9d2019-04-12 10:39:30 +0200206 goto next;
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100207 } else if (!action_flag) {
208 action_flag = 1;
Michal Vasko22df3f02020-08-24 13:29:22 +0200209 next = parent ? (struct lysc_node *)lysc_node_actions(parent) : (struct lysc_node *)module->rpcs;
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100210 } else if (!notif_flag) {
211 notif_flag = 1;
Michal Vasko22df3f02020-08-24 13:29:22 +0200212 next = parent ? (struct lysc_node *)lysc_node_notifs(parent) : (struct lysc_node *)module->notifs;
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100213 } else {
214 return NULL;
Radek Krejcia9026eb2018-12-12 16:04:47 +0100215 }
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100216 goto repeat;
Radek Krejcia3045382018-11-22 14:30:31 +0100217 }
Radek Krejci05b774b2019-02-25 13:26:18 +0100218check:
Radek Krejcia3045382018-11-22 14:30:31 +0100219 switch (next->nodetype) {
Michal Vasko1bf09392020-03-27 12:38:10 +0100220 case LYS_RPC:
Radek Krejcia3045382018-11-22 14:30:31 +0100221 case LYS_ACTION:
222 case LYS_NOTIF:
223 case LYS_LEAF:
224 case LYS_ANYXML:
225 case LYS_ANYDATA:
226 case LYS_LIST:
227 case LYS_LEAFLIST:
228 break;
Michal Vasko20424b42020-08-31 12:29:38 +0200229 case LYS_CASE:
230 if (options & LYS_GETNEXT_WITHCASE) {
231 break;
232 } else {
233 /* go into */
Radek Krejcib93bd412020-11-02 13:23:11 +0100234 lys_getnext_into_case((const struct lysc_node_case *)next, &last, &next);
Michal Vasko20424b42020-08-31 12:29:38 +0200235 }
236 goto repeat;
Radek Krejcia3045382018-11-22 14:30:31 +0100237 case LYS_CONTAINER:
238 if (!(((struct lysc_node_container *)next)->flags & LYS_PRESENCE) && (options & LYS_GETNEXT_INTONPCONT)) {
239 if (((struct lysc_node_container *)next)->child) {
240 /* go into */
241 next = ((struct lysc_node_container *)next)->child;
242 } else {
Radek Krejcib93bd412020-11-02 13:23:11 +0100243 last = next;
Radek Krejcia3045382018-11-22 14:30:31 +0100244 next = next->next;
245 }
246 goto repeat;
247 }
248 break;
249 case LYS_CHOICE:
250 if (options & LYS_GETNEXT_WITHCHOICE) {
Michal Vasko20424b42020-08-31 12:29:38 +0200251 break;
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100252 } else if ((options & LYS_GETNEXT_NOCHOICE) || !((struct lysc_node_choice *)next)->cases) {
253 next = next->next;
254 } else {
Radek Krejcia9026eb2018-12-12 16:04:47 +0100255 if (options & LYS_GETNEXT_WITHCASE) {
Michal Vasko22df3f02020-08-24 13:29:22 +0200256 next = (struct lysc_node *)((struct lysc_node_choice *)next)->cases;
Radek Krejcia9026eb2018-12-12 16:04:47 +0100257 } else {
Radek Krejcib93bd412020-11-02 13:23:11 +0100258 /* go into */
259 lys_getnext_into_case(((struct lysc_node_choice *)next)->cases, &last, &next);
Radek Krejcia9026eb2018-12-12 16:04:47 +0100260 }
Radek Krejcia3045382018-11-22 14:30:31 +0100261 }
262 goto repeat;
263 default:
264 /* we should not be here */
Radek Krejcib07b5c92019-04-08 10:56:37 +0200265 LOGINT(module ? module->mod->ctx : parent->module->ctx);
Radek Krejcia3045382018-11-22 14:30:31 +0100266 return NULL;
267 }
268
Radek Krejcia3045382018-11-22 14:30:31 +0100269 return next;
270}
271
272API const struct lysc_node *
Michal Vaskoe444f752020-02-10 12:20:06 +0100273lys_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 +0200274 uint16_t nodetype, uint32_t options)
Radek Krejcia3045382018-11-22 14:30:31 +0100275{
276 const struct lysc_node *node = NULL;
277
278 LY_CHECK_ARG_RET(NULL, module, name, NULL);
279 if (!nodetype) {
280 nodetype = 0xffff;
281 }
282
283 while ((node = lys_getnext(node, parent, module->compiled, options))) {
284 if (!(node->nodetype & nodetype)) {
285 continue;
286 }
287 if (node->module != module) {
288 continue;
289 }
290
291 if (name_len) {
Radek Krejci7f9b6512019-09-18 13:11:09 +0200292 if (!ly_strncmp(node->name, name, name_len)) {
Radek Krejcia3045382018-11-22 14:30:31 +0100293 return node;
294 }
295 } else {
296 if (!strcmp(node->name, name)) {
297 return node;
298 }
299 }
300 }
301 return NULL;
302}
303
Michal Vasko519fd602020-05-26 12:17:39 +0200304API LY_ERR
Radek Krejcibed13942020-10-19 16:06:28 +0200305lys_find_xpath_atoms(const struct lysc_node *ctx_node, const char *xpath, uint32_t options, struct ly_set **set)
Michal Vasko519fd602020-05-26 12:17:39 +0200306{
307 LY_ERR ret = LY_SUCCESS;
308 struct lyxp_set xp_set;
Radek Krejcif03a9e22020-09-18 20:09:31 +0200309 struct lyxp_expr *exp = NULL;
Michal Vasko519fd602020-05-26 12:17:39 +0200310 uint32_t i;
311
312 LY_CHECK_ARG_RET(NULL, ctx_node, xpath, set, LY_EINVAL);
313 if (!(options & LYXP_SCNODE_ALL)) {
314 options = LYXP_SCNODE;
315 }
316
317 memset(&xp_set, 0, sizeof xp_set);
318
319 /* compile expression */
Radek Krejcif03a9e22020-09-18 20:09:31 +0200320 ret = lyxp_expr_parse(ctx_node->module->ctx, xpath, 0, 1, &exp);
321 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko519fd602020-05-26 12:17:39 +0200322
323 /* atomize expression */
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200324 ret = lyxp_atomize(exp, NULL, LY_PREF_JSON, NULL, ctx_node, &xp_set, options);
Michal Vasko519fd602020-05-26 12:17:39 +0200325 LY_CHECK_GOTO(ret, cleanup);
326
327 /* allocate return set */
Radek Krejciba03a5a2020-08-27 14:40:41 +0200328 ret = ly_set_new(set);
329 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko519fd602020-05-26 12:17:39 +0200330
331 /* transform into ly_set */
332 (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs);
333 LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(ctx_node->module->ctx); ret = LY_EMEM, cleanup);
334 (*set)->size = xp_set.used;
335
336 for (i = 0; i < xp_set.used; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +0200337 if (xp_set.val.scnodes[i].type == LYXP_NODE_ELEM) {
Radek Krejci3d92e442020-10-12 12:48:13 +0200338 ret = ly_set_add(*set, xp_set.val.scnodes[i].scnode, 1, NULL);
Radek Krejciba03a5a2020-08-27 14:40:41 +0200339 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko519fd602020-05-26 12:17:39 +0200340 }
341 }
342
343cleanup:
344 lyxp_set_free_content(&xp_set);
345 lyxp_expr_free(ctx_node->module->ctx, exp);
346 return ret;
347}
348
Michal Vasko072de482020-08-05 13:27:21 +0200349API LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +0200350lys_find_path_atoms(const struct ly_path *path, struct ly_set **set)
351{
352 LY_ERR ret = LY_SUCCESS;
353 LY_ARRAY_COUNT_TYPE u, v;
354
355 LY_CHECK_ARG_RET(NULL, path, set, LY_EINVAL);
356
357 /* allocate return set */
358 LY_CHECK_RET(ly_set_new(set));
359
360 LY_ARRAY_FOR(path, u) {
361 /* add nodes from the path */
362 LY_CHECK_GOTO(ret = ly_set_add(*set, (void *)path[u].node, 0, NULL), cleanup);
363 if (path[u].pred_type == LY_PATH_PREDTYPE_LIST) {
364 LY_ARRAY_FOR(path[u].predicates, v) {
365 /* add all the keys in a predicate */
366 LY_CHECK_GOTO(ret = ly_set_add(*set, (void *)path[u].predicates[v].key, 0, NULL), cleanup);
367 }
368 }
369 }
370
371cleanup:
372 if (ret) {
373 ly_set_free(*set, NULL);
374 *set = NULL;
375 }
376 return ret;
377}
378
379API LY_ERR
380lys_find_expr_atoms(const struct lysc_node *ctx_node, const struct lys_module *cur_mod, const struct lyxp_expr *expr,
381 const struct lysc_prefix *prefixes, uint32_t options, struct ly_set **set)
382{
383 LY_ERR ret = LY_SUCCESS;
384 struct lyxp_set xp_set = {0};
385 uint32_t i;
386
387 LY_CHECK_ARG_RET(NULL, cur_mod, expr, prefixes, set, LY_EINVAL);
388 if (!(options & LYXP_SCNODE_ALL)) {
389 options = LYXP_SCNODE;
390 }
391
392 /* atomize expression */
393 ret = lyxp_atomize(expr, cur_mod, LY_PREF_SCHEMA_RESOLVED, (void *)prefixes, ctx_node, &xp_set, options);
394 LY_CHECK_GOTO(ret, cleanup);
395
396 /* allocate return set */
397 ret = ly_set_new(set);
398 LY_CHECK_GOTO(ret, cleanup);
399
400 /* transform into ly_set */
401 (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs);
402 LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(cur_mod->ctx); ret = LY_EMEM, cleanup);
403 (*set)->size = xp_set.used;
404
405 for (i = 0; i < xp_set.used; ++i) {
406 if ((xp_set.val.scnodes[i].type == LYXP_NODE_ELEM) && (xp_set.val.scnodes[i].in_ctx == 1)) {
407 ret = ly_set_add(*set, xp_set.val.scnodes[i].scnode, 1, NULL);
408 LY_CHECK_GOTO(ret, cleanup);
409 }
410 }
411
412cleanup:
413 lyxp_set_free_content(&xp_set);
414 if (ret) {
415 ly_set_free(*set, NULL);
416 *set = NULL;
417 }
418 return ret;
419}
420
421API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200422lys_find_xpath(const struct lysc_node *ctx_node, const char *xpath, uint32_t options, struct ly_set **set)
Michal Vasko072de482020-08-05 13:27:21 +0200423{
424 LY_ERR ret = LY_SUCCESS;
Michal Vasko40308e72020-10-20 16:38:40 +0200425 struct lyxp_set xp_set = {0};
Radek Krejcif03a9e22020-09-18 20:09:31 +0200426 struct lyxp_expr *exp = NULL;
Michal Vasko072de482020-08-05 13:27:21 +0200427 uint32_t i;
428
429 LY_CHECK_ARG_RET(NULL, ctx_node, xpath, set, LY_EINVAL);
430 if (!(options & LYXP_SCNODE_ALL)) {
431 options = LYXP_SCNODE;
432 }
433
Michal Vasko072de482020-08-05 13:27:21 +0200434 /* compile expression */
Radek Krejcif03a9e22020-09-18 20:09:31 +0200435 ret = lyxp_expr_parse(ctx_node->module->ctx, xpath, 0, 1, &exp);
436 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko072de482020-08-05 13:27:21 +0200437
438 /* atomize expression */
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200439 ret = lyxp_atomize(exp, NULL, LY_PREF_JSON, NULL, ctx_node, &xp_set, options);
Michal Vasko072de482020-08-05 13:27:21 +0200440 LY_CHECK_GOTO(ret, cleanup);
441
442 /* allocate return set */
Radek Krejciba03a5a2020-08-27 14:40:41 +0200443 ret = ly_set_new(set);
444 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko072de482020-08-05 13:27:21 +0200445
446 /* transform into ly_set */
447 (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs);
448 LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(ctx_node->module->ctx); ret = LY_EMEM, cleanup);
449 (*set)->size = xp_set.used;
450
451 for (i = 0; i < xp_set.used; ++i) {
452 if ((xp_set.val.scnodes[i].type == LYXP_NODE_ELEM) && (xp_set.val.scnodes[i].in_ctx == 1)) {
Radek Krejci3d92e442020-10-12 12:48:13 +0200453 ret = ly_set_add(*set, xp_set.val.scnodes[i].scnode, 1, NULL);
Radek Krejciba03a5a2020-08-27 14:40:41 +0200454 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko072de482020-08-05 13:27:21 +0200455 }
456 }
457
458cleanup:
459 lyxp_set_free_content(&xp_set);
460 lyxp_expr_free(ctx_node->module->ctx, exp);
Michal Vaskoae159662020-10-21 11:57:24 +0200461 if (ret) {
Michal Vasko40308e72020-10-20 16:38:40 +0200462 ly_set_free(*set, NULL);
463 *set = NULL;
464 }
Michal Vasko072de482020-08-05 13:27:21 +0200465 return ret;
466}
467
Michal Vasko14654712020-02-06 08:35:21 +0100468char *
469lysc_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 +0200470 size_t buflen)
Radek Krejci327de162019-06-14 12:52:07 +0200471{
Michal Vasko03ff5a72019-09-11 13:49:33 +0200472 const struct lysc_node *iter;
Radek Krejci327de162019-06-14 12:52:07 +0200473 char *path = NULL;
474 int len = 0;
475
Radek Krejci3bbd93e2019-07-24 09:57:23 +0200476 LY_CHECK_ARG_RET(NULL, node, NULL);
477 if (buffer) {
478 LY_CHECK_ARG_RET(node->module->ctx, buflen > 1, NULL);
479 }
480
Radek Krejci327de162019-06-14 12:52:07 +0200481 switch (pathtype) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200482 case LYSC_PATH_LOG:
Michal Vasko65de0402020-08-03 16:34:19 +0200483 case LYSC_PATH_DATA:
Michal Vasko90932a92020-02-12 14:33:03 +0100484 for (iter = node; iter && (iter != parent) && (len >= 0); iter = iter->parent) {
Michal Vasko11deea12020-08-05 13:54:50 +0200485 char *s, *id;
Michal Vasko14654712020-02-06 08:35:21 +0100486 const char *slash;
Radek Krejci327de162019-06-14 12:52:07 +0200487
Michal Vasko65de0402020-08-03 16:34:19 +0200488 if ((pathtype == LYSC_PATH_DATA) && (iter->nodetype & (LYS_CHOICE | LYS_CASE))) {
489 /* schema-only node */
490 continue;
491 }
492
Michal Vasko11deea12020-08-05 13:54:50 +0200493 s = buffer ? strdup(buffer) : path;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200494 id = strdup(iter->name);
Michal Vasko14654712020-02-06 08:35:21 +0100495 if (parent && (iter->parent == parent)) {
496 slash = "";
497 } else {
498 slash = "/";
499 }
Michal Vasko69730152020-10-09 16:30:07 +0200500 if (!iter->parent || (iter->parent->module != iter->module)) {
Radek Krejci327de162019-06-14 12:52:07 +0200501 /* print prefix */
Radek Krejci1c0c3442019-07-23 16:08:47 +0200502 if (buffer) {
Michal Vasko14654712020-02-06 08:35:21 +0100503 len = snprintf(buffer, buflen, "%s%s:%s%s", slash, iter->module->name, id, s ? s : "");
Radek Krejci1c0c3442019-07-23 16:08:47 +0200504 } else {
Michal Vasko14654712020-02-06 08:35:21 +0100505 len = asprintf(&path, "%s%s:%s%s", slash, iter->module->name, id, s ? s : "");
Radek Krejci1c0c3442019-07-23 16:08:47 +0200506 }
Radek Krejci327de162019-06-14 12:52:07 +0200507 } else {
508 /* prefix is the same as in parent */
Radek Krejci1c0c3442019-07-23 16:08:47 +0200509 if (buffer) {
Michal Vasko14654712020-02-06 08:35:21 +0100510 len = snprintf(buffer, buflen, "%s%s%s", slash, id, s ? s : "");
Radek Krejci1c0c3442019-07-23 16:08:47 +0200511 } else {
Michal Vasko14654712020-02-06 08:35:21 +0100512 len = asprintf(&path, "%s%s%s", slash, id, s ? s : "");
Radek Krejci1c0c3442019-07-23 16:08:47 +0200513 }
Radek Krejci327de162019-06-14 12:52:07 +0200514 }
515 free(s);
516 free(id);
Radek Krejci1c0c3442019-07-23 16:08:47 +0200517
Michal Vasko69730152020-10-09 16:30:07 +0200518 if (buffer && (buflen <= (size_t)len)) {
Radek Krejci1c0c3442019-07-23 16:08:47 +0200519 /* not enough space in buffer */
520 break;
521 }
Radek Krejci327de162019-06-14 12:52:07 +0200522 }
523
524 if (len < 0) {
525 free(path);
526 path = NULL;
527 } else if (len == 0) {
Radek Krejci3bbd93e2019-07-24 09:57:23 +0200528 if (buffer) {
529 strcpy(buffer, "/");
530 } else {
531 path = strdup("/");
532 }
Radek Krejci327de162019-06-14 12:52:07 +0200533 }
534 break;
535 }
536
Radek Krejci1c0c3442019-07-23 16:08:47 +0200537 if (buffer) {
538 return buffer;
539 } else {
540 return path;
541 }
Radek Krejci327de162019-06-14 12:52:07 +0200542}
543
Michal Vasko14654712020-02-06 08:35:21 +0100544API char *
545lysc_path(const struct lysc_node *node, LYSC_PATH_TYPE pathtype, char *buffer, size_t buflen)
546{
547 return lysc_path_until(node, NULL, pathtype, buffer, buflen);
548}
549
Michal Vasko28d78432020-05-26 13:10:53 +0200550API LY_ERR
Radek Krejciaf9cd802020-10-06 21:59:47 +0200551lysc_set_private(const struct lysc_node *node, void *priv, void **prev_priv_p)
Radek Krejci19cf8052020-08-18 15:02:38 +0200552{
Radek Krejciaf9cd802020-10-06 21:59:47 +0200553 struct lysc_action *act;
554 struct lysc_notif *notif;
555
Radek Krejci19cf8052020-08-18 15:02:38 +0200556 LY_CHECK_ARG_RET(NULL, node, LY_EINVAL);
557
Radek Krejciaf9cd802020-10-06 21:59:47 +0200558 switch (node->nodetype) {
559 case LYS_CONTAINER:
560 case LYS_CHOICE:
561 case LYS_CASE:
562 case LYS_LEAF:
563 case LYS_LEAFLIST:
564 case LYS_LIST:
565 case LYS_ANYXML:
566 case LYS_ANYDATA:
567 if (prev_priv_p) {
568 *prev_priv_p = node->priv;
569 }
570 ((struct lysc_node *)node)->priv = priv;
571 break;
572 case LYS_RPC:
573 case LYS_ACTION:
574 act = (struct lysc_action *)node;
575 if (prev_priv_p) {
576 *prev_priv_p = act->priv;
577 }
578 act->priv = priv;
579 break;
580 case LYS_NOTIF:
581 notif = (struct lysc_notif *)node;
582 if (prev_priv_p) {
583 *prev_priv_p = notif->priv;
584 }
585 notif->priv = priv;
586 break;
587 default:
588 return LY_EINVAL;
Radek Krejci19cf8052020-08-18 15:02:38 +0200589 }
Radek Krejci19cf8052020-08-18 15:02:38 +0200590
591 return LY_SUCCESS;
592}
593
Michal Vasko89b5c072020-10-06 13:52:44 +0200594API LY_ERR
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100595lys_set_implemented(struct lys_module *mod, const char **features)
Radek Krejci77a8bcd2019-09-11 11:20:02 +0200596{
Michal Vasko89b5c072020-10-06 13:52:44 +0200597 LY_ERR ret = LY_SUCCESS, r;
Radek Krejci77a8bcd2019-09-11 11:20:02 +0200598 struct lys_module *m;
Michal Vasko89b5c072020-10-06 13:52:44 +0200599 uint32_t i, idx;
Radek Krejci77a8bcd2019-09-11 11:20:02 +0200600
601 LY_CHECK_ARG_RET(NULL, mod, LY_EINVAL);
602
603 if (mod->implemented) {
Michal Vasko89b5c072020-10-06 13:52:44 +0200604 /* mod is already implemented */
Radek Krejci77a8bcd2019-09-11 11:20:02 +0200605 return LY_SUCCESS;
606 }
607
608 /* we have module from the current context */
609 m = ly_ctx_get_module_implemented(mod->ctx, mod->name);
610 if (m) {
Michal Vasko89b5c072020-10-06 13:52:44 +0200611 assert(m != mod);
612
613 /* check collision with other implemented revision */
614 LOGERR(mod->ctx, LY_EDENIED, "Module \"%s%s%s\" is present in the context in other implemented revision (%s).",
615 mod->name, mod->revision ? "@" : "", mod->revision ? mod->revision : "", m->revision ? m->revision : "none");
616 return LY_EDENIED;
Radek Krejci77a8bcd2019-09-11 11:20:02 +0200617 }
618
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100619 /* enable features */
620 LY_CHECK_RET(lys_enable_features(mod->parsed, features));
621
Michal Vasko89b5c072020-10-06 13:52:44 +0200622 /* add the module into newly implemented module set */
Radek Krejci3d92e442020-10-12 12:48:13 +0200623 LY_CHECK_RET(ly_set_add(&mod->ctx->implementing, mod, 1, NULL));
Michal Vasko89b5c072020-10-06 13:52:44 +0200624
Radek Krejci77a8bcd2019-09-11 11:20:02 +0200625 /* mark the module implemented, check for collision was already done */
Michal Vasko89b5c072020-10-06 13:52:44 +0200626 mod->implemented = 1;
Radek Krejci77a8bcd2019-09-11 11:20:02 +0200627
628 /* compile the schema */
Michal Vasko89b5c072020-10-06 13:52:44 +0200629 ret = lys_compile(mod, 0);
Radek Krejci77a8bcd2019-09-11 11:20:02 +0200630
Michal Vasko89b5c072020-10-06 13:52:44 +0200631 if (mod == mod->ctx->implementing.objs[0]) {
632 /* the first module being implemented, consolidate the set */
633 if (ret) {
634 /* failure, full compile revert */
635 for (i = 0; i < mod->ctx->list.count; ++i) {
636 m = mod->ctx->list.objs[i];
637 if (ly_set_contains(&mod->ctx->implementing, m, &idx)) {
638 assert(m->implemented);
Radek Krejci77a8bcd2019-09-11 11:20:02 +0200639
Michal Vasko89b5c072020-10-06 13:52:44 +0200640 /* make the module correctly non-implemented again */
641 m->implemented = 0;
642 ly_set_rm_index(&mod->ctx->implementing, idx, NULL);
643 lys_precompile_augments_deviations_revert(mod->ctx, m);
644 }
645
646 /* free the compiled version of the module, if any */
647 lysc_module_free(m->compiled, NULL);
648 m->compiled = NULL;
649
650 if (m->implemented) {
651 /* recompile, must succeed because it was already compiled; hide messages because any
652 * warnings were already printed, are not really relevant, and would hide the real error */
653 uint32_t prev_lo = ly_log_options(0);
654 r = lys_compile(m, 0);
655 ly_log_options(prev_lo);
656 if (r) {
657 LOGERR(mod->ctx, r, "Recompilation of module \"%s\" failed.", m->name);
658 }
659 }
660 }
661 }
662
663 ly_set_erase(&mod->ctx->implementing, NULL);
664 }
665 return ret;
Radek Krejci77a8bcd2019-09-11 11:20:02 +0200666}
667
Michal Vasko7c8439f2020-08-05 13:25:19 +0200668static LY_ERR
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100669lys_resolve_import_include(struct lys_parser_ctx *pctx, struct lysp_module *pmod)
Michal Vasko7c8439f2020-08-05 13:25:19 +0200670{
671 struct lysp_import *imp;
672 struct lysp_include *inc;
673 LY_ARRAY_COUNT_TYPE u, v;
674
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100675 pmod->parsing = 1;
676 LY_ARRAY_FOR(pmod->imports, u) {
677 imp = &pmod->imports[u];
Michal Vasko7c8439f2020-08-05 13:25:19 +0200678 if (!imp->module) {
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100679 LY_CHECK_RET(lysp_load_module(PARSER_CTX(pctx), imp->name, imp->rev[0] ? imp->rev : NULL, 0, 0, NULL, &imp->module));
Michal Vasko7c8439f2020-08-05 13:25:19 +0200680 }
681 /* check for importing the same module twice */
682 for (v = 0; v < u; ++v) {
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100683 if (imp->module == pmod->imports[v].module) {
Michal Vasko7c8439f2020-08-05 13:25:19 +0200684 LOGWRN(PARSER_CTX(pctx), "Single revision of the module \"%s\" imported twice.", imp->name);
685 }
686 }
687 }
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100688 LY_ARRAY_FOR(pmod->includes, u) {
689 inc = &pmod->includes[u];
Michal Vasko7c8439f2020-08-05 13:25:19 +0200690 if (!inc->submodule) {
691 LY_CHECK_RET(lysp_load_submodule(pctx, inc));
692 }
693 }
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100694 pmod->parsing = 0;
Michal Vasko7c8439f2020-08-05 13:25:19 +0200695
696 return LY_SUCCESS;
697}
698
Michal Vasko3a41dff2020-07-15 14:30:28 +0200699LY_ERR
Michal Vasko7a0b0762020-09-02 16:37:01 +0200700lys_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 +0200701 LY_ERR (*custom_check)(const struct ly_ctx *, struct lysp_module *, struct lysp_submodule *, void *),
Radek Krejci0f969882020-08-21 16:56:47 +0200702 void *check_data, struct lysp_submodule **submodule)
Radek Krejci9f5e6fb2018-10-25 09:26:12 +0200703{
Michal Vasko3a41dff2020-07-15 14:30:28 +0200704 LY_ERR ret;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100705 struct lysp_submodule *submod = NULL, *latest_sp;
Michal Vaskob36053d2020-03-26 15:49:30 +0100706 struct lys_yang_parser_ctx *yangctx = NULL;
707 struct lys_yin_parser_ctx *yinctx = NULL;
708 struct lys_parser_ctx *pctx;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100709
Michal Vasko3a41dff2020-07-15 14:30:28 +0200710 LY_CHECK_ARG_RET(ctx, ctx, in, LY_EINVAL);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100711
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100712 switch (format) {
713 case LYS_IN_YIN:
Michal Vasko63f3d842020-07-08 10:10:14 +0200714 ret = yin_parse_submodule(&yinctx, ctx, main_ctx, in, &submod);
Michal Vaskob36053d2020-03-26 15:49:30 +0100715 pctx = (struct lys_parser_ctx *)yinctx;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100716 break;
717 case LYS_IN_YANG:
Michal Vasko63f3d842020-07-08 10:10:14 +0200718 ret = yang_parse_submodule(&yangctx, ctx, main_ctx, in, &submod);
Michal Vaskob36053d2020-03-26 15:49:30 +0100719 pctx = (struct lys_parser_ctx *)yangctx;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100720 break;
721 default:
David Sedlák4f2f5ba2019-08-15 13:18:48 +0200722 LOGERR(ctx, LY_EINVAL, "Invalid schema input format.");
Radek Krejci82fa8d42020-07-11 22:00:59 +0200723 ret = LY_EINVAL;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100724 break;
Radek Krejci9f5e6fb2018-10-25 09:26:12 +0200725 }
Radek Krejcif6923e82020-07-02 16:36:53 +0200726 LY_CHECK_GOTO(ret, error);
Radek Krejcif027df72020-09-15 13:00:28 +0200727 assert(submod);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100728
729 /* make sure that the newest revision is at position 0 */
730 lysp_sort_revisions(submod->revs);
731
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100732 /* decide the latest revision */
Michal Vaskoc3781c32020-10-06 14:04:08 +0200733 latest_sp = ly_ctx_get_submodule(NULL, submod->mod, submod->name, NULL);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100734 if (latest_sp) {
735 if (submod->revs) {
736 if (!latest_sp->revs) {
737 /* latest has no revision, so mod is anyway newer */
738 submod->latest_revision = latest_sp->latest_revision;
Radek Krejcib3289d62019-09-18 12:21:39 +0200739 /* the latest_sp is zeroed later when the new module is being inserted into the context */
740 } else if (strcmp(submod->revs[0].date, latest_sp->revs[0].date) > 0) {
741 submod->latest_revision = latest_sp->latest_revision;
742 /* the latest_sp is zeroed later when the new module is being inserted into the context */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100743 } else {
Radek Krejcib3289d62019-09-18 12:21:39 +0200744 latest_sp = NULL;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100745 }
Radek Krejcib3289d62019-09-18 12:21:39 +0200746 } else {
747 latest_sp = NULL;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100748 }
749 } else {
750 submod->latest_revision = 1;
751 }
752
Radek Krejcib3289d62019-09-18 12:21:39 +0200753 if (custom_check) {
Michal Vasko7c8439f2020-08-05 13:25:19 +0200754 LY_CHECK_GOTO(ret = custom_check(ctx, NULL, submod, check_data), error);
Radek Krejcib3289d62019-09-18 12:21:39 +0200755 }
756
757 if (latest_sp) {
758 latest_sp->latest_revision = 0;
759 }
760
Michal Vasko7a0b0762020-09-02 16:37:01 +0200761 lys_parser_fill_filepath(ctx, in, &submod->filepath);
762
Michal Vasko7c8439f2020-08-05 13:25:19 +0200763 /* resolve imports and includes */
764 LY_CHECK_GOTO(ret = lys_resolve_import_include(pctx, (struct lysp_module *)submod), error);
765
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100766 /* remap possibly changed and reallocated typedefs and groupings list back to the main context */
Michal Vaskob36053d2020-03-26 15:49:30 +0100767 memcpy(&main_ctx->tpdfs_nodes, &pctx->tpdfs_nodes, sizeof main_ctx->tpdfs_nodes);
768 memcpy(&main_ctx->grps_nodes, &pctx->grps_nodes, sizeof main_ctx->grps_nodes);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100769
David Sedlák1b623122019-08-05 15:27:49 +0200770 if (format == LYS_IN_YANG) {
Michal Vaskob36053d2020-03-26 15:49:30 +0100771 yang_parser_ctx_free(yangctx);
David Sedlák1b623122019-08-05 15:27:49 +0200772 } else {
Michal Vaskob36053d2020-03-26 15:49:30 +0100773 yin_parser_ctx_free(yinctx);
David Sedlák1b623122019-08-05 15:27:49 +0200774 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200775 *submodule = submod;
776 return LY_SUCCESS;
David Sedlák1b623122019-08-05 15:27:49 +0200777
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100778error:
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200779 lysp_module_free((struct lysp_module *)submod);
David Sedlák1b623122019-08-05 15:27:49 +0200780 if (format == LYS_IN_YANG) {
Michal Vaskob36053d2020-03-26 15:49:30 +0100781 yang_parser_ctx_free(yangctx);
David Sedlák1b623122019-08-05 15:27:49 +0200782 } else {
Michal Vaskob36053d2020-03-26 15:49:30 +0100783 yin_parser_ctx_free(yinctx);
David Sedlák1b623122019-08-05 15:27:49 +0200784 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200785 return ret;
Radek Krejci9f5e6fb2018-10-25 09:26:12 +0200786}
787
Michal Vasko3a41dff2020-07-15 14:30:28 +0200788LY_ERR
Michal Vasko7a0b0762020-09-02 16:37:01 +0200789lys_create_module(struct ly_ctx *ctx, struct ly_in *in, LYS_INFORMAT format, ly_bool implement,
Radek Krejci1deb5be2020-08-26 16:43:36 +0200790 LY_ERR (*custom_check)(const struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *data),
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100791 void *check_data, const char **features, struct lys_module **module)
Radek Krejci86d106e2018-10-18 09:53:19 +0200792{
Radek Krejci6d6e4e42018-10-29 13:28:19 +0100793 struct lys_module *mod = NULL, *latest, *mod_dup;
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200794 struct lysp_submodule *submod;
Michal Vasko3a41dff2020-07-15 14:30:28 +0200795 LY_ERR ret;
Michal Vasko7c8439f2020-08-05 13:25:19 +0200796 LY_ARRAY_COUNT_TYPE u;
Michal Vaskob36053d2020-03-26 15:49:30 +0100797 struct lys_yang_parser_ctx *yangctx = NULL;
798 struct lys_yin_parser_ctx *yinctx = NULL;
Radek Krejcif6923e82020-07-02 16:36:53 +0200799 struct lys_parser_ctx *pctx = NULL;
Michal Vasko7a0b0762020-09-02 16:37:01 +0200800 char *filename, *rev, *dot;
801 size_t len;
Radek Krejci86d106e2018-10-18 09:53:19 +0200802
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100803 LY_CHECK_ARG_RET(ctx, ctx, in, !features || implement, LY_EINVAL);
Michal Vasko7a0b0762020-09-02 16:37:01 +0200804 if (module) {
805 *module = NULL;
806 }
Radek Krejci86d106e2018-10-18 09:53:19 +0200807
808 mod = calloc(1, sizeof *mod);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200809 LY_CHECK_ERR_RET(!mod, LOGMEM(ctx), LY_EMEM);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100810 mod->ctx = ctx;
Radek Krejci86d106e2018-10-18 09:53:19 +0200811
812 switch (format) {
813 case LYS_IN_YIN:
Michal Vasko63f3d842020-07-08 10:10:14 +0200814 ret = yin_parse_module(&yinctx, in, mod);
Michal Vaskob36053d2020-03-26 15:49:30 +0100815 pctx = (struct lys_parser_ctx *)yinctx;
Radek Krejci86d106e2018-10-18 09:53:19 +0200816 break;
817 case LYS_IN_YANG:
Michal Vasko63f3d842020-07-08 10:10:14 +0200818 ret = yang_parse_module(&yangctx, in, mod);
Michal Vaskob36053d2020-03-26 15:49:30 +0100819 pctx = (struct lys_parser_ctx *)yangctx;
Radek Krejci86d106e2018-10-18 09:53:19 +0200820 break;
821 default:
822 LOGERR(ctx, LY_EINVAL, "Invalid schema input format.");
Michal Vasko3a41dff2020-07-15 14:30:28 +0200823 ret = LY_EINVAL;
Radek Krejci86d106e2018-10-18 09:53:19 +0200824 break;
825 }
Radek Krejcif6923e82020-07-02 16:36:53 +0200826 LY_CHECK_GOTO(ret, error);
Radek Krejci9f5e6fb2018-10-25 09:26:12 +0200827
828 /* make sure that the newest revision is at position 0 */
829 lysp_sort_revisions(mod->parsed->revs);
Radek Krejci0af46292019-01-11 16:02:31 +0100830 if (mod->parsed->revs) {
Radek Krejci011e4aa2020-09-04 15:22:31 +0200831 LY_CHECK_GOTO(ret = lydict_insert(ctx, mod->parsed->revs[0].date, 0, &mod->revision), error);
Radek Krejci0af46292019-01-11 16:02:31 +0100832 }
Radek Krejci86d106e2018-10-18 09:53:19 +0200833
Radek Krejcib3289d62019-09-18 12:21:39 +0200834 /* decide the latest revision */
Michal Vasko22df3f02020-08-24 13:29:22 +0200835 latest = (struct lys_module *)ly_ctx_get_module_latest(ctx, mod->name);
Radek Krejcib3289d62019-09-18 12:21:39 +0200836 if (latest) {
837 if (mod->revision) {
838 if (!latest->revision) {
839 /* latest has no revision, so mod is anyway newer */
840 mod->latest_revision = latest->latest_revision;
841 /* the latest is zeroed later when the new module is being inserted into the context */
842 } else if (strcmp(mod->revision, latest->revision) > 0) {
843 mod->latest_revision = latest->latest_revision;
844 /* the latest is zeroed later when the new module is being inserted into the context */
845 } else {
846 latest = NULL;
847 }
848 } else {
849 latest = NULL;
850 }
851 } else {
852 mod->latest_revision = 1;
853 }
854
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100855 if (custom_check) {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200856 LY_CHECK_GOTO(ret = custom_check(ctx, mod->parsed, NULL, check_data), error);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100857 }
858
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100859 /* check for duplicity in the context */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100860 if (implement && ly_ctx_get_module_implemented(ctx, mod->name)) {
861 LOGERR(ctx, LY_EDENIED, "Module \"%s\" is already implemented in the context.", mod->name);
862 ret = LY_EDENIED;
863 goto error;
864 }
Michal Vasko22df3f02020-08-24 13:29:22 +0200865 mod_dup = (struct lys_module *)ly_ctx_get_module(ctx, mod->name, mod->revision);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100866 if (mod_dup) {
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100867 if (mod->parsed->revs) {
868 LOGERR(ctx, LY_EEXIST, "Module \"%s\" of revision \"%s\" is already present in the context.",
869 mod->name, mod->parsed->revs[0].date);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100870 } else {
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100871 LOGERR(ctx, LY_EEXIST, "Module \"%s\" with no revision is already present in the context.",
872 mod->name);
Radek Krejcid33273d2018-10-25 14:55:52 +0200873 }
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100874 ret = LY_EEXIST;
875 goto error;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100876 }
Radek Krejci86d106e2018-10-18 09:53:19 +0200877
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200878 switch (in->type) {
879 case LY_IN_FILEPATH:
880 /* check that name and revision match filename */
881 filename = strrchr(in->method.fpath.filepath, '/');
882 if (!filename) {
883 filename = in->method.fpath.filepath;
884 } else {
885 filename++;
886 }
887 rev = strchr(filename, '@');
888 dot = strrchr(filename, '.');
889
890 /* name */
891 len = strlen(mod->name);
892 if (strncmp(filename, mod->name, len) ||
Michal Vasko69730152020-10-09 16:30:07 +0200893 ((rev && (rev != &filename[len])) || (!rev && (dot != &filename[len])))) {
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200894 LOGWRN(ctx, "File name \"%s\" does not match module name \"%s\".", filename, mod->name);
895 }
896 if (rev) {
897 len = dot - ++rev;
Michal Vasko69730152020-10-09 16:30:07 +0200898 if (!mod->parsed->revs || (len != 10) || strncmp(mod->parsed->revs[0].date, rev, len)) {
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200899 LOGWRN(ctx, "File name \"%s\" does not match module revision \"%s\".", filename,
Michal Vasko69730152020-10-09 16:30:07 +0200900 mod->parsed->revs ? mod->parsed->revs[0].date : "none");
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200901 }
902 }
903
904 break;
905 case LY_IN_FD:
906 case LY_IN_FILE:
907 case LY_IN_MEMORY:
908 /* nothing special to do */
909 break;
Michal Vasko7a0b0762020-09-02 16:37:01 +0200910 case LY_IN_ERROR:
911 LOGINT(ctx);
912 ret = LY_EINT;
913 goto error;
Radek Krejci096235c2019-01-11 11:12:19 +0100914 }
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200915 lys_parser_fill_filepath(ctx, in, &mod->filepath);
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200916
Michal Vasko7a0b0762020-09-02 16:37:01 +0200917 if (latest) {
918 latest->latest_revision = 0;
919 }
920
921 /* add into context */
Radek Krejci3d92e442020-10-12 12:48:13 +0200922 ret = ly_set_add(&ctx->list, mod, 1, NULL);
Michal Vasko7a0b0762020-09-02 16:37:01 +0200923 LY_CHECK_GOTO(ret, error);
924 ctx->module_set_id++;
925
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100926 /* resolve includes and all imports */
Michal Vasko7a0b0762020-09-02 16:37:01 +0200927 LY_CHECK_GOTO(ret = lys_resolve_import_include(pctx, mod->parsed), error_ctx);
928
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100929 /* check name collisions */
930 LY_CHECK_GOTO(ret = lysp_check_dup_typedefs(pctx, mod->parsed), error_ctx);
931 /* TODO groupings */
932 LY_CHECK_GOTO(ret = lysp_check_dup_features(pctx, mod->parsed), error_ctx);
933 LY_CHECK_GOTO(ret = lysp_check_dup_identities(pctx, mod->parsed), error_ctx);
934
935 /* compile features */
936 LY_CHECK_GOTO(ret = lys_compile_feature_iffeatures(mod->parsed), error_ctx);
937
Michal Vasko89b5c072020-10-06 13:52:44 +0200938 if (!implement) {
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100939 /* pre-compile identities of the module */
940 LY_CHECK_GOTO(ret = lys_identity_precompile(NULL, ctx, mod->parsed, mod->parsed->identities, &mod->identities), error);
941
942 /* pre-compile identities of any submodules */
Michal Vasko7a0b0762020-09-02 16:37:01 +0200943 LY_ARRAY_FOR(mod->parsed->includes, u) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200944 submod = mod->parsed->includes[u].submodule;
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200945 ret = lys_identity_precompile(NULL, ctx, (struct lysp_module *)submod, submod->identities, &mod->identities);
946 LY_CHECK_GOTO(ret, error);
Michal Vasko7a0b0762020-09-02 16:37:01 +0200947 }
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100948 } else {
Michal Vasko89b5c072020-10-06 13:52:44 +0200949 /* implement (compile) */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100950 LY_CHECK_GOTO(ret = lys_set_implemented(mod, features), error_ctx);
Michal Vasko7a0b0762020-09-02 16:37:01 +0200951 }
952
953 if (format == LYS_IN_YANG) {
954 yang_parser_ctx_free(yangctx);
955 } else {
956 yin_parser_ctx_free(yinctx);
957 }
Michal Vasko3a41dff2020-07-15 14:30:28 +0200958 if (module) {
959 *module = mod;
960 }
961 return LY_SUCCESS;
Michal Vasko7a0b0762020-09-02 16:37:01 +0200962
963error_ctx:
964 ly_set_rm(&ctx->list, mod, NULL);
965error:
966 lys_module_free(mod, NULL);
967 if (pctx) {
968 ly_set_erase(&pctx->tpdfs_nodes, NULL);
969 }
970 if (format == LYS_IN_YANG) {
971 yang_parser_ctx_free(yangctx);
972 } else {
973 yin_parser_ctx_free(yinctx);
974 }
975
976 return ret;
977}
978
979API LY_ERR
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100980lys_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 +0200981{
982 if (module) {
983 *module = NULL;
984 }
985 LY_CHECK_ARG_RET(NULL, ctx, in, format > LYS_IN_UNKNOWN, LY_EINVAL);
986
987 /* remember input position */
988 in->func_start = in->current;
989
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100990 return lys_create_module(ctx, in, format, 1, NULL, NULL, features, (struct lys_module **)module);
Radek Krejci86d106e2018-10-18 09:53:19 +0200991}
992
Michal Vasko3a41dff2020-07-15 14:30:28 +0200993API LY_ERR
994lys_parse_mem(struct ly_ctx *ctx, const char *data, LYS_INFORMAT format, const struct lys_module **module)
Radek Krejci86d106e2018-10-18 09:53:19 +0200995{
Radek Krejci0f969882020-08-21 16:56:47 +0200996 LY_ERR ret;
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200997 struct ly_in *in = NULL;
Radek Krejci86d106e2018-10-18 09:53:19 +0200998
Michal Vasko3a41dff2020-07-15 14:30:28 +0200999 LY_CHECK_ARG_RET(ctx, data, format != LYS_IN_UNKNOWN, LY_EINVAL);
Radek Krejci65639b92018-11-27 10:51:37 +01001000
Michal Vasko3a41dff2020-07-15 14:30:28 +02001001 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 +02001002
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001003 ret = lys_parse(ctx, in, format, NULL, module);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001004 ly_in_free(in, 0);
Radek Krejci86d106e2018-10-18 09:53:19 +02001005
Michal Vasko3a41dff2020-07-15 14:30:28 +02001006 return ret;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001007}
1008
Michal Vasko3a41dff2020-07-15 14:30:28 +02001009API LY_ERR
1010lys_parse_fd(struct ly_ctx *ctx, int fd, LYS_INFORMAT format, const struct lys_module **module)
Radek Krejci86d106e2018-10-18 09:53:19 +02001011{
Radek Krejci0f969882020-08-21 16:56:47 +02001012 LY_ERR ret;
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001013 struct ly_in *in = NULL;
Radek Krejci86d106e2018-10-18 09:53:19 +02001014
Michal Vasko3a41dff2020-07-15 14:30:28 +02001015 LY_CHECK_ARG_RET(ctx, fd > -1, format != LYS_IN_UNKNOWN, LY_EINVAL);
Radek Krejci86d106e2018-10-18 09:53:19 +02001016
Michal Vasko3a41dff2020-07-15 14:30:28 +02001017 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 +02001018
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001019 ret = lys_parse(ctx, in, format, NULL, module);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001020 ly_in_free(in, 0);
Radek Krejci86d106e2018-10-18 09:53:19 +02001021
Michal Vasko3a41dff2020-07-15 14:30:28 +02001022 return ret;
Radek Krejci86d106e2018-10-18 09:53:19 +02001023}
1024
Michal Vasko3a41dff2020-07-15 14:30:28 +02001025API LY_ERR
1026lys_parse_path(struct ly_ctx *ctx, const char *path, LYS_INFORMAT format, const struct lys_module **module)
Radek Krejcid33273d2018-10-25 14:55:52 +02001027{
Radek Krejci0f969882020-08-21 16:56:47 +02001028 LY_ERR ret;
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001029 struct ly_in *in = NULL;
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001030
Michal Vasko3a41dff2020-07-15 14:30:28 +02001031 LY_CHECK_ARG_RET(ctx, path, format != LYS_IN_UNKNOWN, LY_EINVAL);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001032
Michal Vasko3a41dff2020-07-15 14:30:28 +02001033 LY_CHECK_ERR_RET(ret = ly_in_new_filepath(path, 0, &in),
Michal Vasko69730152020-10-09 16:30:07 +02001034 LOGERR(ctx, ret, "Unable to create input handler for filepath %s.", path), ret);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001035
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001036 ret = lys_parse(ctx, in, format, NULL, module);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001037 ly_in_free(in, 0);
1038
Michal Vasko3a41dff2020-07-15 14:30:28 +02001039 return ret;
Radek Krejcid33273d2018-10-25 14:55:52 +02001040}
1041
1042API LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02001043lys_search_localfile(const char * const *searchpaths, ly_bool cwd, const char *name, const char *revision,
Radek Krejci0f969882020-08-21 16:56:47 +02001044 char **localfile, LYS_INFORMAT *format)
Radek Krejcid33273d2018-10-25 14:55:52 +02001045{
Radek Krejci1deb5be2020-08-26 16:43:36 +02001046 LY_ERR ret = LY_EMEM;
Radek Krejcid33273d2018-10-25 14:55:52 +02001047 size_t len, flen, match_len = 0, dir_len;
Radek Krejci857189e2020-09-01 13:26:36 +02001048 ly_bool implicit_cwd = 0;
Radek Krejcid33273d2018-10-25 14:55:52 +02001049 char *wd, *wn = NULL;
1050 DIR *dir = NULL;
1051 struct dirent *file;
1052 char *match_name = NULL;
1053 LYS_INFORMAT format_aux, match_format = 0;
1054 struct ly_set *dirs;
1055 struct stat st;
1056
1057 LY_CHECK_ARG_RET(NULL, localfile, LY_EINVAL);
1058
1059 /* start to fill the dir fifo with the context's search path (if set)
1060 * and the current working directory */
Radek Krejciba03a5a2020-08-27 14:40:41 +02001061 LY_CHECK_RET(ly_set_new(&dirs));
Radek Krejcid33273d2018-10-25 14:55:52 +02001062
1063 len = strlen(name);
1064 if (cwd) {
1065 wd = get_current_dir_name();
1066 if (!wd) {
1067 LOGMEM(NULL);
1068 goto cleanup;
1069 } else {
1070 /* add implicit current working directory (./) to be searched,
1071 * this directory is not searched recursively */
Radek Krejciba03a5a2020-08-27 14:40:41 +02001072 ret = ly_set_add(dirs, wd, 0, NULL);
1073 LY_CHECK_GOTO(ret, cleanup);
Radek Krejcid33273d2018-10-25 14:55:52 +02001074 implicit_cwd = 1;
1075 }
1076 }
1077 if (searchpaths) {
Radek Krejci1deb5be2020-08-26 16:43:36 +02001078 for (uint64_t i = 0; searchpaths[i]; i++) {
Radek Krejcid33273d2018-10-25 14:55:52 +02001079 /* check for duplicities with the implicit current working directory */
1080 if (implicit_cwd && !strcmp(dirs->objs[0], searchpaths[i])) {
1081 implicit_cwd = 0;
1082 continue;
1083 }
1084 wd = strdup(searchpaths[i]);
1085 if (!wd) {
1086 LOGMEM(NULL);
1087 goto cleanup;
Radek Krejciba03a5a2020-08-27 14:40:41 +02001088 } else {
1089 ret = ly_set_add(dirs, wd, 0, NULL);
1090 LY_CHECK_GOTO(ret, cleanup);
Radek Krejcid33273d2018-10-25 14:55:52 +02001091 }
1092 }
1093 }
1094 wd = NULL;
1095
1096 /* start searching */
1097 while (dirs->count) {
1098 free(wd);
1099 free(wn); wn = NULL;
1100
1101 dirs->count--;
1102 wd = (char *)dirs->objs[dirs->count];
1103 dirs->objs[dirs->count] = NULL;
1104 LOGVRB("Searching for \"%s\" in %s.", name, wd);
1105
1106 if (dir) {
1107 closedir(dir);
1108 }
1109 dir = opendir(wd);
1110 dir_len = strlen(wd);
1111 if (!dir) {
1112 LOGWRN(NULL, "Unable to open directory \"%s\" for searching (sub)modules (%s).", wd, strerror(errno));
1113 } else {
1114 while ((file = readdir(dir))) {
1115 if (!strcmp(".", file->d_name) || !strcmp("..", file->d_name)) {
1116 /* skip . and .. */
1117 continue;
1118 }
1119 free(wn);
1120 if (asprintf(&wn, "%s/%s", wd, file->d_name) == -1) {
1121 LOGMEM(NULL);
1122 goto cleanup;
1123 }
1124 if (stat(wn, &st) == -1) {
1125 LOGWRN(NULL, "Unable to get information about \"%s\" file in \"%s\" when searching for (sub)modules (%s)",
Michal Vasko69730152020-10-09 16:30:07 +02001126 file->d_name, wd, strerror(errno));
Radek Krejcid33273d2018-10-25 14:55:52 +02001127 continue;
1128 }
1129 if (S_ISDIR(st.st_mode) && (dirs->count || !implicit_cwd)) {
1130 /* we have another subdirectory in searchpath to explore,
1131 * subdirectories are not taken into account in current working dir (dirs->set.g[0]) */
Radek Krejciba03a5a2020-08-27 14:40:41 +02001132 ret = ly_set_add(dirs, wn, 0, NULL);
1133 LY_CHECK_GOTO(ret, cleanup);
1134
Radek Krejcid33273d2018-10-25 14:55:52 +02001135 /* continue with the next item in current directory */
1136 wn = NULL;
1137 continue;
1138 } else if (!S_ISREG(st.st_mode)) {
1139 /* not a regular file (note that we see the target of symlinks instead of symlinks */
1140 continue;
1141 }
1142
1143 /* here we know that the item is a file which can contain a module */
1144 if (strncmp(name, file->d_name, len) ||
Michal Vasko69730152020-10-09 16:30:07 +02001145 ((file->d_name[len] != '.') && (file->d_name[len] != '@'))) {
Radek Krejcid33273d2018-10-25 14:55:52 +02001146 /* different filename than the module we search for */
1147 continue;
1148 }
1149
1150 /* get type according to filename suffix */
1151 flen = strlen(file->d_name);
Radek Krejcied5acc52019-04-25 15:57:04 +02001152 if (!strcmp(&file->d_name[flen - 5], ".yang")) {
Radek Krejcid33273d2018-10-25 14:55:52 +02001153 format_aux = LYS_IN_YANG;
Radek Krejci0f969882020-08-21 16:56:47 +02001154 /* TODO YIN parser
1155 } else if (!strcmp(&file->d_name[flen - 4], ".yin")) {
1156 format_aux = LYS_IN_YIN;
1157 */
Radek Krejcid33273d2018-10-25 14:55:52 +02001158 } else {
1159 /* not supportde suffix/file format */
1160 continue;
1161 }
1162
1163 if (revision) {
1164 /* we look for the specific revision, try to get it from the filename */
1165 if (file->d_name[len] == '@') {
1166 /* check revision from the filename */
1167 if (strncmp(revision, &file->d_name[len + 1], strlen(revision))) {
1168 /* another revision */
1169 continue;
1170 } else {
1171 /* exact revision */
1172 free(match_name);
1173 match_name = wn;
1174 wn = NULL;
1175 match_len = dir_len + 1 + len;
1176 match_format = format_aux;
1177 goto success;
1178 }
1179 } else {
1180 /* continue trying to find exact revision match, use this only if not found */
1181 free(match_name);
1182 match_name = wn;
1183 wn = NULL;
Michal Vasko44f3d2c2020-08-24 09:49:38 +02001184 match_len = dir_len + 1 + len;
Radek Krejcid33273d2018-10-25 14:55:52 +02001185 match_format = format_aux;
1186 continue;
1187 }
1188 } else {
1189 /* remember the revision and try to find the newest one */
1190 if (match_name) {
Michal Vasko69730152020-10-09 16:30:07 +02001191 if ((file->d_name[len] != '@') ||
1192 lysp_check_date(NULL, &file->d_name[len + 1], flen - ((format_aux == LYS_IN_YANG) ? 5 : 4) - len - 1, NULL)) {
Radek Krejcid33273d2018-10-25 14:55:52 +02001193 continue;
Michal Vasko69730152020-10-09 16:30:07 +02001194 } else if ((match_name[match_len] == '@') &&
Radek Krejcid33273d2018-10-25 14:55:52 +02001195 (strncmp(&match_name[match_len + 1], &file->d_name[len + 1], LY_REV_SIZE - 1) >= 0)) {
1196 continue;
1197 }
1198 free(match_name);
1199 }
1200
1201 match_name = wn;
1202 wn = NULL;
1203 match_len = dir_len + 1 + len;
1204 match_format = format_aux;
1205 continue;
1206 }
1207 }
1208 }
1209 }
1210
1211success:
1212 (*localfile) = match_name;
1213 match_name = NULL;
1214 if (format) {
1215 (*format) = match_format;
1216 }
Radek Krejci1deb5be2020-08-26 16:43:36 +02001217 ret = LY_SUCCESS;
Radek Krejcid33273d2018-10-25 14:55:52 +02001218
1219cleanup:
1220 free(wn);
1221 free(wd);
1222 if (dir) {
1223 closedir(dir);
1224 }
1225 free(match_name);
1226 ly_set_free(dirs, free);
1227
1228 return ret;
1229}