blob: e30cc4c71210b3e82c7749039c0554d8fdf51817 [file] [log] [blame]
Radek Krejci3f5e3db2018-10-11 15:57:47 +02001/**
2 * @file tree_schema.c
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief Schema tree implementation
5 *
6 * Copyright (c) 2015 - 2018 CESNET, z.s.p.o.
7 *
8 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
13 */
Radek Krejcib7db73a2018-10-24 14:18:40 +020014
Christian Hopps32874e12021-05-01 09:43:54 -040015#define _GNU_SOURCE /* asprintf, strdup */
Radek Krejci535ea9f2020-05-29 16:01:05 +020016
Radek Krejcica376bd2020-06-11 16:04:06 +020017#include "tree_schema.h"
Radek Krejci86d106e2018-10-18 09:53:19 +020018
Radek Krejcie7b95092019-05-15 11:03:07 +020019#include <assert.h>
Radek Krejci545b4872020-11-15 10:15:12 +010020#include <ctype.h>
Radek Krejcid33273d2018-10-25 14:55:52 +020021#include <dirent.h>
Radek Krejci86d106e2018-10-18 09:53:19 +020022#include <errno.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020023#include <stdint.h>
Radek Krejci86d106e2018-10-18 09:53:19 +020024#include <stdio.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020025#include <stdlib.h>
26#include <string.h>
Radek Krejci86d106e2018-10-18 09:53:19 +020027#include <sys/stat.h>
Radek Krejci86d106e2018-10-18 09:53:19 +020028#include <unistd.h>
Radek Krejci3f5e3db2018-10-11 15:57:47 +020029
Radek Krejcica376bd2020-06-11 16:04:06 +020030#include "common.h"
Michal Vasko5aa44c02020-06-29 11:47:02 +020031#include "compat.h"
Radek Krejci86d106e2018-10-18 09:53:19 +020032#include "context.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020033#include "dict.h"
Radek Krejci47fab892020-11-05 17:02:41 +010034#include "in.h"
Michal Vaskoafac7822020-10-20 14:22:26 +020035#include "in_internal.h"
Radek Krejci47fab892020-11-05 17:02:41 +010036#include "log.h"
Radek Krejcif0e1ba52020-05-22 15:14:35 +020037#include "parser_internal.h"
Radek Krejcica376bd2020-06-11 16:04:06 +020038#include "parser_schema.h"
Michal Vasko40308e72020-10-20 16:38:40 +020039#include "path.h"
Michal Vaskoe482bb92023-02-01 11:41:41 +010040#include "plugins_exts.h"
Michal Vaskoc0c64ae2022-10-06 10:15:23 +020041#include "plugins_internal.h"
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020042#include "schema_compile.h"
Michal Vaskof4258e12021-06-15 12:11:42 +020043#include "schema_compile_amend.h"
Michal Vasko7b1ad1a2020-11-02 15:41:27 +010044#include "schema_features.h"
Radek Krejcica376bd2020-06-11 16:04:06 +020045#include "set.h"
46#include "tree.h"
Radek Krejci859a15a2021-03-05 20:56:59 +010047#include "tree_edit.h"
Michal Vaskoc636ea42022-09-16 10:20:31 +020048#include "tree_schema_free.h"
Radek Krejcica376bd2020-06-11 16:04:06 +020049#include "tree_schema_internal.h"
50#include "xpath.h"
Radek Krejci3f5e3db2018-10-11 15:57:47 +020051
Radek Krejcieccf6602021-02-05 19:42:54 +010052const char * const ly_devmod_list[] = {
53 [LYS_DEV_NOT_SUPPORTED] = "not-supported",
54 [LYS_DEV_ADD] = "add",
55 [LYS_DEV_DELETE] = "delete",
56 [LYS_DEV_REPLACE] = "replace",
57};
58
Jan Kundrátc53a7ec2021-12-09 16:01:19 +010059LIBYANG_API_DEF LY_ERR
Michal Vaskof1ab44f2020-10-22 08:58:32 +020060lysc_tree_dfs_full(const struct lysc_node *root, lysc_dfs_clb dfs_clb, void *data)
61{
Michal Vasko1d972ca2020-11-03 17:16:56 +010062 struct lysc_node *elem, *elem2;
Radek Krejci2a9fc652021-01-22 17:44:34 +010063 const struct lysc_node_action *action;
64 const struct lysc_node_notif *notif;
Michal Vaskof1ab44f2020-10-22 08:58:32 +020065
66 LY_CHECK_ARG_RET(NULL, root, dfs_clb, LY_EINVAL);
67
68 LYSC_TREE_DFS_BEGIN(root, elem) {
69 /* schema node */
70 LY_CHECK_RET(dfs_clb(elem, data, &LYSC_TREE_DFS_continue));
71
Radek Krejci2a9fc652021-01-22 17:44:34 +010072 LY_LIST_FOR(lysc_node_actions(elem), action) {
73 LYSC_TREE_DFS_BEGIN(action, elem2) {
Michal Vaskof1ab44f2020-10-22 08:58:32 +020074 /* action subtree */
75 LY_CHECK_RET(dfs_clb(elem2, data, &LYSC_TREE_DFS_continue));
76
Radek Krejci2a9fc652021-01-22 17:44:34 +010077 LYSC_TREE_DFS_END(action, elem2);
Michal Vaskof1ab44f2020-10-22 08:58:32 +020078 }
79 }
80
Radek Krejci2a9fc652021-01-22 17:44:34 +010081 LY_LIST_FOR(lysc_node_notifs(elem), notif) {
82 LYSC_TREE_DFS_BEGIN(notif, elem2) {
Michal Vaskof1ab44f2020-10-22 08:58:32 +020083 /* notification subtree */
84 LY_CHECK_RET(dfs_clb(elem2, data, &LYSC_TREE_DFS_continue));
85
Radek Krejci2a9fc652021-01-22 17:44:34 +010086 LYSC_TREE_DFS_END(notif, elem2);
Michal Vaskof1ab44f2020-10-22 08:58:32 +020087 }
88 }
89
90 LYSC_TREE_DFS_END(root, elem);
91 }
92
93 return LY_SUCCESS;
94}
95
Jan Kundrátc53a7ec2021-12-09 16:01:19 +010096LIBYANG_API_DEF LY_ERR
Michal Vaskof1ab44f2020-10-22 08:58:32 +020097lysc_module_dfs_full(const struct lys_module *mod, lysc_dfs_clb dfs_clb, void *data)
98{
Michal Vasko2336cf52020-11-03 17:18:15 +010099 const struct lysc_node *root;
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200100
101 LY_CHECK_ARG_RET(NULL, mod, mod->compiled, dfs_clb, LY_EINVAL);
102
103 /* schema nodes */
Michal Vasko2336cf52020-11-03 17:18:15 +0100104 LY_LIST_FOR(mod->compiled->data, root) {
105 LY_CHECK_RET(lysc_tree_dfs_full(root, dfs_clb, data));
106 }
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200107
108 /* RPCs */
Radek Krejci2a9fc652021-01-22 17:44:34 +0100109 LY_LIST_FOR((const struct lysc_node *)mod->compiled->rpcs, root) {
110 LY_CHECK_RET(lysc_tree_dfs_full(root, dfs_clb, data));
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200111 }
112
113 /* notifications */
Radek Krejci2a9fc652021-01-22 17:44:34 +0100114 LY_LIST_FOR((const struct lysc_node *)mod->compiled->notifs, root) {
115 LY_CHECK_RET(lysc_tree_dfs_full(root, dfs_clb, data));
Michal Vaskof1ab44f2020-10-22 08:58:32 +0200116 }
117
118 return LY_SUCCESS;
119}
120
Radek Krejcib93bd412020-11-02 13:23:11 +0100121static void
122lys_getnext_into_case(const struct lysc_node_case *first_case, const struct lysc_node **last, const struct lysc_node **next)
123{
Radek Krejcic5b54a02020-11-05 17:13:18 +0100124 for ( ; first_case; first_case = (const struct lysc_node_case *)first_case->next) {
Radek Krejcib93bd412020-11-02 13:23:11 +0100125 if (first_case->child) {
126 /* there is something to return */
127 (*next) = first_case->child;
128 return;
129 }
130 }
131
132 /* no children in choice's cases, so go to the choice's sibling instead of into it */
133 (*last) = (*next);
134 (*next) = (*next)->next;
135}
136
Radek Krejci035dacf2021-02-12 18:25:53 +0100137/**
138 * @brief Generic getnext function for ::lys_getnext() and ::lys_getnext_ext().
139 *
140 * Gets next schema tree (sibling) node element that can be instantiated in a data tree. Returned node can
141 * be from an augment. If the @p ext is provided, the function is locked inside the schema tree defined in the
142 * extension instance.
143 *
Michal Vasko193dacd2022-10-13 08:43:05 +0200144 * ::lys_getnext_() is supposed to be called sequentially. In the first call, the @p last parameter is usually NULL
145 * and function starts returning i) the first @p parent's child or ii) the first top level element specified in the
146 * given extension (if provided) or iii) the first top level element of the @p module.
147 * Consequent calls suppose to provide the previously returned node as the @p last parameter and still the same
148 * @p parent and @p module parameters.
Radek Krejci035dacf2021-02-12 18:25:53 +0100149 *
150 * Without options, the function is used to traverse only the schema nodes that can be paired with corresponding
Michal Vasko193dacd2022-10-13 08:43:05 +0200151 * data nodes in a data tree. By setting some @p options the behavior can be modified to the extent that
Radek Krejci035dacf2021-02-12 18:25:53 +0100152 * all the schema nodes are iteratively returned.
153 *
154 * @param[in] last Previously returned schema tree node, or NULL in case of the first call.
155 * @param[in] parent Parent of the subtree where the function starts processing.
Michal Vasko193dacd2022-10-13 08:43:05 +0200156 * @param[in] module In case of iterating on top level elements, the @p parent is NULL and
Radek Krejci035dacf2021-02-12 18:25:53 +0100157 * module must be specified.
158 * @param[in] ext The extension instance to provide a separate schema tree. To consider the top level elements in the tree,
Michal Vasko193dacd2022-10-13 08:43:05 +0200159 * the @p parent must be NULL. Anyway, at least one of @p parent, @p module and @p ext parameters must be specified.
Radek Krejci035dacf2021-02-12 18:25:53 +0100160 * @param[in] options [ORed options](@ref sgetnextflags).
161 * @return Next schema tree node that can be instantiated in a data tree, NULL in case there is no such element.
162 */
163static const struct lysc_node *
164lys_getnext_(const struct lysc_node *last, const struct lysc_node *parent, const struct lysc_module *module,
165 const struct lysc_ext_instance *ext, uint32_t options)
Radek Krejcia3045382018-11-22 14:30:31 +0100166{
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100167 const struct lysc_node *next = NULL;
Michal Vaskoe482bb92023-02-01 11:41:41 +0100168 ly_bool action_flag = 0, notif_flag = 0, sm_flag = options & LYS_GETNEXT_WITHSCHEMAMOUNT ? 0 : 1;
169 LY_ARRAY_COUNT_TYPE u;
170 struct ly_ctx *sm_ctx = NULL;
171 const struct lys_module *mod;
172 uint32_t idx;
Radek Krejcia3045382018-11-22 14:30:31 +0100173
Radek Krejci035dacf2021-02-12 18:25:53 +0100174 LY_CHECK_ARG_RET(NULL, parent || module || ext, NULL);
Radek Krejcia3045382018-11-22 14:30:31 +0100175
Radek Krejcid5a2b9d2019-04-12 10:39:30 +0200176next:
Radek Krejcia3045382018-11-22 14:30:31 +0100177 if (!last) {
178 /* first call */
179
Michal Vaskoe482bb92023-02-01 11:41:41 +0100180 /* learn where to start */
Radek Krejcia3045382018-11-22 14:30:31 +0100181 if (parent) {
182 /* schema subtree */
Michal Vasko544e58a2021-01-28 14:33:41 +0100183 next = last = lysc_node_child(parent);
Radek Krejcia3045382018-11-22 14:30:31 +0100184 } else {
185 /* top level data */
Radek Krejci035dacf2021-02-12 18:25:53 +0100186 if (ext) {
Michal Vaskofbd037c2022-11-08 10:34:20 +0100187 lyplg_ext_get_storage(ext, LY_STMT_DATA_NODE_MASK, sizeof last, (const void **)&last);
Michal Vasko193dacd2022-10-13 08:43:05 +0200188 next = last;
Radek Krejci035dacf2021-02-12 18:25:53 +0100189 } else {
190 next = last = module->data;
191 }
Radek Krejcia3045382018-11-22 14:30:31 +0100192 }
193 if (!next) {
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100194 /* try to get action or notification */
195 goto repeat;
Radek Krejcia3045382018-11-22 14:30:31 +0100196 }
Radek Krejci05b774b2019-02-25 13:26:18 +0100197 /* test if the next can be returned */
198 goto check;
199
Michal Vasko1bf09392020-03-27 12:38:10 +0100200 } else if (last->nodetype & (LYS_RPC | LYS_ACTION)) {
Radek Krejci05b774b2019-02-25 13:26:18 +0100201 action_flag = 1;
Radek Krejci2a9fc652021-01-22 17:44:34 +0100202 next = last->next;
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100203 } else if (last->nodetype == LYS_NOTIF) {
Radek Krejci05b774b2019-02-25 13:26:18 +0100204 action_flag = notif_flag = 1;
Radek Krejci2a9fc652021-01-22 17:44:34 +0100205 next = last->next;
Michal Vasko20424b42020-08-31 12:29:38 +0200206 } else {
207 next = last->next;
Radek Krejcia3045382018-11-22 14:30:31 +0100208 }
209
Radek Krejcia3045382018-11-22 14:30:31 +0100210repeat:
211 if (!next) {
Michal Vaskoe482bb92023-02-01 11:41:41 +0100212 if (last && !sm_flag && parent && (last->module->ctx != parent->module->ctx)) {
213 sm_flag = 1;
214
215 /* find the module of last */
216 sm_ctx = last->module->ctx;
217 idx = 0;
218 while ((mod = ly_ctx_get_module_iter(sm_ctx, &idx))) {
219 if (mod == last->module) {
220 break;
221 }
222 }
223 assert(mod);
224
225 /* get node from the next mounted module */
226 while (!next && (mod = ly_ctx_get_module_iter(sm_ctx, &idx))) {
227 if (!mod->implemented) {
228 continue;
229 }
230
231 next = lys_getnext(NULL, NULL, mod->compiled, options & ~LYS_GETNEXT_WITHSCHEMAMOUNT);
232 }
233 } else if (last && (last->parent != parent)) {
234 /* go back to parent */
Radek Krejcia9026eb2018-12-12 16:04:47 +0100235 last = last->parent;
Radek Krejcid5a2b9d2019-04-12 10:39:30 +0200236 goto next;
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100237 } else if (!action_flag) {
238 action_flag = 1;
Radek Krejci035dacf2021-02-12 18:25:53 +0100239 if (ext) {
Michal Vaskofbd037c2022-11-08 10:34:20 +0100240 lyplg_ext_get_storage(ext, LY_STMT_OP_MASK, sizeof next, (const void **)&next);
Radek Krejci035dacf2021-02-12 18:25:53 +0100241 } else if (parent) {
242 next = (struct lysc_node *)lysc_node_actions(parent);
243 } else {
244 next = (struct lysc_node *)module->rpcs;
245 }
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100246 } else if (!notif_flag) {
247 notif_flag = 1;
Radek Krejci035dacf2021-02-12 18:25:53 +0100248 if (ext) {
Michal Vaskofbd037c2022-11-08 10:34:20 +0100249 lyplg_ext_get_storage(ext, LY_STMT_NOTIFICATION, sizeof next, (const void **)&next);
Radek Krejci035dacf2021-02-12 18:25:53 +0100250 } else if (parent) {
251 next = (struct lysc_node *)lysc_node_notifs(parent);
252 } else {
253 next = (struct lysc_node *)module->notifs;
254 }
Michal Vaskoe482bb92023-02-01 11:41:41 +0100255 } else if (!sm_flag) {
256 sm_flag = 1;
257 if (parent) {
258 LY_ARRAY_FOR(parent->exts, u) {
259 if (!strcmp(parent->exts[u].def->name, "mount-point") &&
260 !strcmp(parent->exts[u].def->module->name, "ietf-yang-schema-mount")) {
261 lyplg_ext_schema_mount_create_context(&parent->exts[u], &sm_ctx);
262 if (sm_ctx) {
263 /* some usable context created */
264 break;
265 }
266 }
267 }
268 if (sm_ctx) {
269 /* get the first node from the first usable module */
270 idx = 0;
271 while (!next && (mod = ly_ctx_get_module_iter(sm_ctx, &idx))) {
272 if (!mod->implemented) {
273 continue;
274 }
275
276 next = lys_getnext(NULL, NULL, mod->compiled, options & ~LYS_GETNEXT_WITHSCHEMAMOUNT);
277 }
278 if (!next) {
279 /* no nodes found */
280 ly_ctx_destroy(sm_ctx);
281 }
282 }
283 }
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100284 } else {
285 return NULL;
Radek Krejcia9026eb2018-12-12 16:04:47 +0100286 }
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100287 goto repeat;
Radek Krejcia3045382018-11-22 14:30:31 +0100288 }
Radek Krejci05b774b2019-02-25 13:26:18 +0100289check:
Radek Krejcia3045382018-11-22 14:30:31 +0100290 switch (next->nodetype) {
Michal Vasko1bf09392020-03-27 12:38:10 +0100291 case LYS_RPC:
Radek Krejcia3045382018-11-22 14:30:31 +0100292 case LYS_ACTION:
293 case LYS_NOTIF:
294 case LYS_LEAF:
295 case LYS_ANYXML:
296 case LYS_ANYDATA:
297 case LYS_LIST:
298 case LYS_LEAFLIST:
299 break;
Michal Vasko20424b42020-08-31 12:29:38 +0200300 case LYS_CASE:
301 if (options & LYS_GETNEXT_WITHCASE) {
302 break;
303 } else {
304 /* go into */
Radek Krejcib93bd412020-11-02 13:23:11 +0100305 lys_getnext_into_case((const struct lysc_node_case *)next, &last, &next);
Michal Vasko20424b42020-08-31 12:29:38 +0200306 }
307 goto repeat;
Radek Krejcia3045382018-11-22 14:30:31 +0100308 case LYS_CONTAINER:
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100309 if (!(next->flags & LYS_PRESENCE) && (options & LYS_GETNEXT_INTONPCONT)) {
Michal Vasko544e58a2021-01-28 14:33:41 +0100310 if (lysc_node_child(next)) {
Radek Krejcia3045382018-11-22 14:30:31 +0100311 /* go into */
Michal Vasko544e58a2021-01-28 14:33:41 +0100312 next = lysc_node_child(next);
Radek Krejcia3045382018-11-22 14:30:31 +0100313 } else {
Radek Krejcib93bd412020-11-02 13:23:11 +0100314 last = next;
Radek Krejcia3045382018-11-22 14:30:31 +0100315 next = next->next;
316 }
317 goto repeat;
318 }
319 break;
320 case LYS_CHOICE:
321 if (options & LYS_GETNEXT_WITHCHOICE) {
Michal Vasko20424b42020-08-31 12:29:38 +0200322 break;
Michal Vasko544e58a2021-01-28 14:33:41 +0100323 } else if ((options & LYS_GETNEXT_NOCHOICE) || !lysc_node_child(next)) {
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100324 next = next->next;
325 } else {
Radek Krejcia9026eb2018-12-12 16:04:47 +0100326 if (options & LYS_GETNEXT_WITHCASE) {
Michal Vasko544e58a2021-01-28 14:33:41 +0100327 next = lysc_node_child(next);
Radek Krejcia9026eb2018-12-12 16:04:47 +0100328 } else {
Radek Krejcib93bd412020-11-02 13:23:11 +0100329 /* go into */
330 lys_getnext_into_case(((struct lysc_node_choice *)next)->cases, &last, &next);
Radek Krejcia9026eb2018-12-12 16:04:47 +0100331 }
Radek Krejcia3045382018-11-22 14:30:31 +0100332 }
333 goto repeat;
Michal Vasko544e58a2021-01-28 14:33:41 +0100334 case LYS_INPUT:
335 if (options & LYS_GETNEXT_OUTPUT) {
336 /* skip */
337 next = next->next;
338 } else {
339 /* go into */
340 next = lysc_node_child(next);
341 }
342 goto repeat;
343 case LYS_OUTPUT:
344 if (!(options & LYS_GETNEXT_OUTPUT)) {
345 /* skip */
346 next = next->next;
347 } else {
348 /* go into */
349 next = lysc_node_child(next);
350 }
351 goto repeat;
Radek Krejcia3045382018-11-22 14:30:31 +0100352 default:
353 /* we should not be here */
Radek Krejci035dacf2021-02-12 18:25:53 +0100354 LOGINT(module ? module->mod->ctx : parent ? parent->module->ctx : ext->module->ctx);
Radek Krejcia3045382018-11-22 14:30:31 +0100355 return NULL;
356 }
357
Radek Krejcia3045382018-11-22 14:30:31 +0100358 return next;
359}
360
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100361LIBYANG_API_DEF const struct lysc_node *
Radek Krejci035dacf2021-02-12 18:25:53 +0100362lys_getnext(const struct lysc_node *last, const struct lysc_node *parent, const struct lysc_module *module, uint32_t options)
363{
364 return lys_getnext_(last, parent, module, NULL, options);
365}
366
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100367LIBYANG_API_DEF const struct lysc_node *
Radek Krejci035dacf2021-02-12 18:25:53 +0100368lys_getnext_ext(const struct lysc_node *last, const struct lysc_node *parent, const struct lysc_ext_instance *ext, uint32_t options)
369{
370 return lys_getnext_(last, parent, NULL, ext, options);
371}
372
Radek Krejcif16e2542021-02-17 15:39:23 +0100373const struct lysc_node *
Radek Krejciba05eab2021-03-10 13:19:29 +0100374lysc_ext_find_node(const struct lysc_ext_instance *ext, const struct lys_module *module, const char *name, size_t name_len,
Radek Krejcif16e2542021-02-17 15:39:23 +0100375 uint16_t nodetype, uint32_t options)
376{
377 const struct lysc_node *node = NULL;
378
379 LY_CHECK_ARG_RET(NULL, ext, name, NULL);
380 if (!nodetype) {
381 nodetype = LYS_NODETYPE_MASK;
382 }
383
384 if (module && (module != ext->module)) {
385 return NULL;
386 }
387
388 while ((node = lys_getnext_ext(node, NULL, ext, options))) {
389 if (!(node->nodetype & nodetype)) {
390 continue;
391 }
392
393 if (name_len) {
394 if (!ly_strncmp(node->name, name, name_len)) {
395 return node;
396 }
397 } else {
398 if (!strcmp(node->name, name)) {
399 return node;
400 }
401 }
402 }
403 return NULL;
404}
405
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100406LIBYANG_API_DEF const struct lysc_node *
Michal Vaskoe444f752020-02-10 12:20:06 +0100407lys_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 +0200408 uint16_t nodetype, uint32_t options)
Radek Krejcia3045382018-11-22 14:30:31 +0100409{
410 const struct lysc_node *node = NULL;
411
412 LY_CHECK_ARG_RET(NULL, module, name, NULL);
Michal Vasko892f5bf2021-11-24 10:41:05 +0100413 LY_CHECK_CTX_EQUAL_RET(parent ? parent->module->ctx : NULL, module->ctx, NULL);
Radek Krejcia3045382018-11-22 14:30:31 +0100414 if (!nodetype) {
Radek Krejcif13b87b2020-12-01 22:02:17 +0100415 nodetype = LYS_NODETYPE_MASK;
Radek Krejcia3045382018-11-22 14:30:31 +0100416 }
417
418 while ((node = lys_getnext(node, parent, module->compiled, options))) {
419 if (!(node->nodetype & nodetype)) {
420 continue;
421 }
422 if (node->module != module) {
423 continue;
424 }
425
426 if (name_len) {
Radek Krejci7f9b6512019-09-18 13:11:09 +0200427 if (!ly_strncmp(node->name, name, name_len)) {
Radek Krejcia3045382018-11-22 14:30:31 +0100428 return node;
429 }
430 } else {
431 if (!strcmp(node->name, name)) {
432 return node;
433 }
434 }
435 }
Michal Vaskoddd76592022-01-17 13:34:48 +0100436
Radek Krejcia3045382018-11-22 14:30:31 +0100437 return NULL;
438}
439
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100440LIBYANG_API_DEF LY_ERR
Michal Vasko26512682021-01-11 11:35:40 +0100441lys_find_xpath_atoms(const struct ly_ctx *ctx, const struct lysc_node *ctx_node, const char *xpath, uint32_t options,
442 struct ly_set **set)
Michal Vasko519fd602020-05-26 12:17:39 +0200443{
444 LY_ERR ret = LY_SUCCESS;
445 struct lyxp_set xp_set;
Radek Krejcif03a9e22020-09-18 20:09:31 +0200446 struct lyxp_expr *exp = NULL;
Michal Vasko519fd602020-05-26 12:17:39 +0200447 uint32_t i;
448
Michal Vasko26512682021-01-11 11:35:40 +0100449 LY_CHECK_ARG_RET(NULL, ctx || ctx_node, xpath, set, LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +0100450 LY_CHECK_CTX_EQUAL_RET(ctx, ctx_node ? ctx_node->module->ctx : NULL, LY_EINVAL);
Michal Vasko519fd602020-05-26 12:17:39 +0200451 if (!(options & LYXP_SCNODE_ALL)) {
Michal Vasko4ad69e72021-10-26 16:25:55 +0200452 options |= LYXP_SCNODE;
Michal Vasko519fd602020-05-26 12:17:39 +0200453 }
Michal Vasko26512682021-01-11 11:35:40 +0100454 if (!ctx) {
455 ctx = ctx_node->module->ctx;
456 }
Michal Vasko519fd602020-05-26 12:17:39 +0200457
458 memset(&xp_set, 0, sizeof xp_set);
459
460 /* compile expression */
Michal Vasko26512682021-01-11 11:35:40 +0100461 ret = lyxp_expr_parse(ctx, xpath, 0, 1, &exp);
Radek Krejcif03a9e22020-09-18 20:09:31 +0200462 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko519fd602020-05-26 12:17:39 +0200463
464 /* atomize expression */
Michal Vaskoa3e92bc2022-07-29 14:56:23 +0200465 ret = lyxp_atomize(ctx, exp, NULL, LY_VALUE_JSON, NULL, ctx_node, ctx_node, &xp_set, options);
Michal Vasko519fd602020-05-26 12:17:39 +0200466 LY_CHECK_GOTO(ret, cleanup);
467
468 /* allocate return set */
Radek Krejciba03a5a2020-08-27 14:40:41 +0200469 ret = ly_set_new(set);
470 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko519fd602020-05-26 12:17:39 +0200471
472 /* transform into ly_set */
473 (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs);
Michal Vasko26512682021-01-11 11:35:40 +0100474 LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko519fd602020-05-26 12:17:39 +0200475 (*set)->size = xp_set.used;
476
477 for (i = 0; i < xp_set.used; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +0200478 if (xp_set.val.scnodes[i].type == LYXP_NODE_ELEM) {
Radek Krejci3d92e442020-10-12 12:48:13 +0200479 ret = ly_set_add(*set, xp_set.val.scnodes[i].scnode, 1, NULL);
Radek Krejciba03a5a2020-08-27 14:40:41 +0200480 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko519fd602020-05-26 12:17:39 +0200481 }
482 }
483
484cleanup:
485 lyxp_set_free_content(&xp_set);
Michal Vasko26512682021-01-11 11:35:40 +0100486 lyxp_expr_free(ctx, exp);
Michal Vasko519fd602020-05-26 12:17:39 +0200487 return ret;
488}
489
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100490LIBYANG_API_DEF LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +0200491lys_find_expr_atoms(const struct lysc_node *ctx_node, const struct lys_module *cur_mod, const struct lyxp_expr *expr,
492 const struct lysc_prefix *prefixes, uint32_t options, struct ly_set **set)
493{
494 LY_ERR ret = LY_SUCCESS;
495 struct lyxp_set xp_set = {0};
496 uint32_t i;
497
498 LY_CHECK_ARG_RET(NULL, cur_mod, expr, prefixes, set, LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +0100499 LY_CHECK_CTX_EQUAL_RET(ctx_node ? ctx_node->module->ctx : NULL, cur_mod->ctx, LY_EINVAL);
Michal Vasko40308e72020-10-20 16:38:40 +0200500 if (!(options & LYXP_SCNODE_ALL)) {
501 options = LYXP_SCNODE;
502 }
503
504 /* atomize expression */
Michal Vaskoa3e92bc2022-07-29 14:56:23 +0200505 ret = lyxp_atomize(cur_mod->ctx, expr, cur_mod, LY_VALUE_SCHEMA_RESOLVED, (void *)prefixes, ctx_node, ctx_node,
506 &xp_set, options);
Michal Vasko40308e72020-10-20 16:38:40 +0200507 LY_CHECK_GOTO(ret, cleanup);
508
509 /* allocate return set */
510 ret = ly_set_new(set);
511 LY_CHECK_GOTO(ret, cleanup);
512
513 /* transform into ly_set */
514 (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs);
515 LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(cur_mod->ctx); ret = LY_EMEM, cleanup);
516 (*set)->size = xp_set.used;
517
518 for (i = 0; i < xp_set.used; ++i) {
Michal Vasko1a09b212021-05-06 13:00:10 +0200519 if ((xp_set.val.scnodes[i].type == LYXP_NODE_ELEM) && (xp_set.val.scnodes[i].in_ctx >= LYXP_SET_SCNODE_ATOM_NODE)) {
520 assert((xp_set.val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_NODE) ||
521 (xp_set.val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_VAL) ||
Michal Vaskod97959c2020-12-10 12:18:28 +0100522 (xp_set.val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX));
Michal Vasko40308e72020-10-20 16:38:40 +0200523 ret = ly_set_add(*set, xp_set.val.scnodes[i].scnode, 1, NULL);
524 LY_CHECK_GOTO(ret, cleanup);
525 }
526 }
527
528cleanup:
529 lyxp_set_free_content(&xp_set);
530 if (ret) {
531 ly_set_free(*set, NULL);
532 *set = NULL;
533 }
534 return ret;
535}
536
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100537LIBYANG_API_DEF LY_ERR
Michal Vasko26512682021-01-11 11:35:40 +0100538lys_find_xpath(const struct ly_ctx *ctx, const struct lysc_node *ctx_node, const char *xpath, uint32_t options,
539 struct ly_set **set)
Michal Vasko072de482020-08-05 13:27:21 +0200540{
541 LY_ERR ret = LY_SUCCESS;
Michal Vasko40308e72020-10-20 16:38:40 +0200542 struct lyxp_set xp_set = {0};
Radek Krejcif03a9e22020-09-18 20:09:31 +0200543 struct lyxp_expr *exp = NULL;
Michal Vasko072de482020-08-05 13:27:21 +0200544 uint32_t i;
545
Michal Vasko26512682021-01-11 11:35:40 +0100546 LY_CHECK_ARG_RET(NULL, ctx || ctx_node, xpath, set, LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +0100547 LY_CHECK_CTX_EQUAL_RET(ctx, ctx_node ? ctx_node->module->ctx : NULL, LY_EINVAL);
Michal Vasko072de482020-08-05 13:27:21 +0200548 if (!(options & LYXP_SCNODE_ALL)) {
549 options = LYXP_SCNODE;
550 }
Michal Vasko26512682021-01-11 11:35:40 +0100551 if (!ctx) {
552 ctx = ctx_node->module->ctx;
553 }
Michal Vasko072de482020-08-05 13:27:21 +0200554
Michal Vasko072de482020-08-05 13:27:21 +0200555 /* compile expression */
Michal Vasko26512682021-01-11 11:35:40 +0100556 ret = lyxp_expr_parse(ctx, xpath, 0, 1, &exp);
Radek Krejcif03a9e22020-09-18 20:09:31 +0200557 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko072de482020-08-05 13:27:21 +0200558
559 /* atomize expression */
Michal Vaskoa3e92bc2022-07-29 14:56:23 +0200560 ret = lyxp_atomize(ctx, exp, NULL, LY_VALUE_JSON, NULL, ctx_node, ctx_node, &xp_set, options);
Michal Vasko072de482020-08-05 13:27:21 +0200561 LY_CHECK_GOTO(ret, cleanup);
562
563 /* allocate return set */
Radek Krejciba03a5a2020-08-27 14:40:41 +0200564 ret = ly_set_new(set);
565 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko072de482020-08-05 13:27:21 +0200566
567 /* transform into ly_set */
568 (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs);
Michal Vasko26512682021-01-11 11:35:40 +0100569 LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko072de482020-08-05 13:27:21 +0200570 (*set)->size = xp_set.used;
571
572 for (i = 0; i < xp_set.used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +0100573 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 +0200574 ret = ly_set_add(*set, xp_set.val.scnodes[i].scnode, 1, NULL);
Radek Krejciba03a5a2020-08-27 14:40:41 +0200575 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko072de482020-08-05 13:27:21 +0200576 }
577 }
578
579cleanup:
580 lyxp_set_free_content(&xp_set);
Michal Vasko26512682021-01-11 11:35:40 +0100581 lyxp_expr_free(ctx, exp);
Michal Vaskoae159662020-10-21 11:57:24 +0200582 if (ret) {
Michal Vasko40308e72020-10-20 16:38:40 +0200583 ly_set_free(*set, NULL);
584 *set = NULL;
585 }
Michal Vasko072de482020-08-05 13:27:21 +0200586 return ret;
587}
588
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100589LIBYANG_API_DEF LY_ERR
Radek Krejcibc5644c2020-10-27 14:53:17 +0100590lys_find_lypath_atoms(const struct ly_path *path, struct ly_set **set)
591{
592 LY_ERR ret = LY_SUCCESS;
593 LY_ARRAY_COUNT_TYPE u, v;
594
595 LY_CHECK_ARG_RET(NULL, path, set, LY_EINVAL);
596
597 /* allocate return set */
598 LY_CHECK_RET(ly_set_new(set));
599
600 LY_ARRAY_FOR(path, u) {
601 /* add nodes from the path */
602 LY_CHECK_GOTO(ret = ly_set_add(*set, (void *)path[u].node, 0, NULL), cleanup);
Michal Vasko90189962023-02-28 12:10:34 +0100603 LY_ARRAY_FOR(path[u].predicates, v) {
604 if ((path[u].predicates[v].type == LY_PATH_PREDTYPE_LIST) || (path[u].predicates[v].type == LY_PATH_PREDTYPE_LIST_VAR)) {
Radek Krejcibc5644c2020-10-27 14:53:17 +0100605 /* add all the keys in a predicate */
606 LY_CHECK_GOTO(ret = ly_set_add(*set, (void *)path[u].predicates[v].key, 0, NULL), cleanup);
607 }
608 }
609 }
610
611cleanup:
612 if (ret) {
613 ly_set_free(*set, NULL);
614 *set = NULL;
615 }
616 return ret;
617}
618
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100619LIBYANG_API_DEF LY_ERR
Radek Krejcibc5644c2020-10-27 14:53:17 +0100620lys_find_path_atoms(const struct ly_ctx *ctx, const struct lysc_node *ctx_node, const char *path, ly_bool output,
621 struct ly_set **set)
622{
623 LY_ERR ret = LY_SUCCESS;
624 uint8_t oper;
625 struct lyxp_expr *expr = NULL;
626 struct ly_path *p = NULL;
627
628 LY_CHECK_ARG_RET(ctx, ctx || ctx_node, path, set, LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +0100629 LY_CHECK_CTX_EQUAL_RET(ctx, ctx_node ? ctx_node->module->ctx : NULL, LY_EINVAL);
Radek Krejcibc5644c2020-10-27 14:53:17 +0100630
631 if (!ctx) {
632 ctx = ctx_node->module->ctx;
633 }
634
635 /* parse */
Michal Vasko4f7c53d2023-04-17 08:45:53 +0200636 ret = ly_path_parse(ctx, ctx_node, path, strlen(path), 0, LY_PATH_BEGIN_EITHER, LY_PATH_PREFIX_FIRST,
637 LY_PATH_PRED_SIMPLE, &expr);
Radek Krejcibc5644c2020-10-27 14:53:17 +0100638 LY_CHECK_GOTO(ret, cleanup);
639
640 /* compile */
641 oper = output ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT;
Michal Vasko0884d212021-10-14 09:21:46 +0200642 ret = ly_path_compile(ctx, NULL, ctx_node, NULL, expr, oper, LY_PATH_TARGET_MANY, 0, LY_VALUE_JSON, NULL, &p);
Radek Krejcibc5644c2020-10-27 14:53:17 +0100643 LY_CHECK_GOTO(ret, cleanup);
644
645 /* resolve */
646 ret = lys_find_lypath_atoms(p, set);
647
648cleanup:
649 ly_path_free(ctx, p);
650 lyxp_expr_free(ctx, expr);
651 return ret;
652}
653
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100654LIBYANG_API_DEF const struct lysc_node *
Radek Krejcibc5644c2020-10-27 14:53:17 +0100655lys_find_path(const struct ly_ctx *ctx, const struct lysc_node *ctx_node, const char *path, ly_bool output)
656{
657 const struct lysc_node *snode = NULL;
Michal Vasko4f7c53d2023-04-17 08:45:53 +0200658 struct lyxp_expr *expr = NULL;
Radek Krejcibc5644c2020-10-27 14:53:17 +0100659 struct ly_path *p = NULL;
660 LY_ERR ret;
661 uint8_t oper;
662
663 LY_CHECK_ARG_RET(ctx, ctx || ctx_node, NULL);
Michal Vasko892f5bf2021-11-24 10:41:05 +0100664 LY_CHECK_CTX_EQUAL_RET(ctx, ctx_node ? ctx_node->module->ctx : NULL, NULL);
Radek Krejcibc5644c2020-10-27 14:53:17 +0100665
666 if (!ctx) {
667 ctx = ctx_node->module->ctx;
668 }
669
670 /* parse */
Michal Vasko4f7c53d2023-04-17 08:45:53 +0200671 ret = ly_path_parse(ctx, ctx_node, path, strlen(path), 0, LY_PATH_BEGIN_EITHER, LY_PATH_PREFIX_FIRST,
672 LY_PATH_PRED_SIMPLE, &expr);
Radek Krejcibc5644c2020-10-27 14:53:17 +0100673 LY_CHECK_GOTO(ret, cleanup);
674
675 /* compile */
676 oper = output ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT;
Michal Vasko4f7c53d2023-04-17 08:45:53 +0200677 ret = ly_path_compile(ctx, NULL, ctx_node, NULL, expr, oper, LY_PATH_TARGET_MANY, 0, LY_VALUE_JSON, NULL, &p);
Radek Krejcibc5644c2020-10-27 14:53:17 +0100678 LY_CHECK_GOTO(ret, cleanup);
679
680 /* get last node */
681 snode = p[LY_ARRAY_COUNT(p) - 1].node;
682
683cleanup:
684 ly_path_free(ctx, p);
Michal Vasko4f7c53d2023-04-17 08:45:53 +0200685 lyxp_expr_free(ctx, expr);
Radek Krejcibc5644c2020-10-27 14:53:17 +0100686 return snode;
687}
688
Michal Vasko14654712020-02-06 08:35:21 +0100689char *
690lysc_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 +0200691 size_t buflen)
Radek Krejci327de162019-06-14 12:52:07 +0200692{
Michal Vaskobde22b62022-03-22 15:32:56 +0100693 const struct lysc_node *iter, *par, *key;
Radek Krejci327de162019-06-14 12:52:07 +0200694 char *path = NULL;
695 int len = 0;
Michal Vaskobde22b62022-03-22 15:32:56 +0100696 ly_bool skip_schema;
Radek Krejci327de162019-06-14 12:52:07 +0200697
Radek Krejci3bbd93e2019-07-24 09:57:23 +0200698 if (buffer) {
699 LY_CHECK_ARG_RET(node->module->ctx, buflen > 1, NULL);
Michal Vasko770d3fc2021-01-26 09:14:35 +0100700 buffer[0] = '\0';
Radek Krejci3bbd93e2019-07-24 09:57:23 +0200701 }
702
Michal Vaskobde22b62022-03-22 15:32:56 +0100703 if ((pathtype == LYSC_PATH_DATA) || (pathtype == LYSC_PATH_DATA_PATTERN)) {
704 /* skip schema-only nodes */
705 skip_schema = 1;
706 } else {
707 skip_schema = 0;
708 }
Radek Krejci327de162019-06-14 12:52:07 +0200709
Michal Vaskobde22b62022-03-22 15:32:56 +0100710 for (iter = node; iter && (iter != parent) && (len >= 0); iter = iter->parent) {
711 char *s;
712 const char *slash;
Michal Vasko65de0402020-08-03 16:34:19 +0200713
Michal Vaskobde22b62022-03-22 15:32:56 +0100714 if (skip_schema && (iter->nodetype & (LYS_CHOICE | LYS_CASE | LYS_INPUT | LYS_OUTPUT))) {
715 /* schema-only node */
716 continue;
717 }
Michal Vasko87dd1342021-08-23 16:17:55 +0200718
Michal Vaskobde22b62022-03-22 15:32:56 +0100719 if ((pathtype == LYSC_PATH_DATA_PATTERN) && (iter->nodetype == LYS_LIST)) {
720 key = NULL;
721 while ((key = lys_getnext(key, iter, NULL, 0)) && lysc_is_key(key)) {
722 s = buffer ? strdup(buffer) : path;
Michal Vasko87dd1342021-08-23 16:17:55 +0200723
Michal Vaskobde22b62022-03-22 15:32:56 +0100724 /* print key predicate */
Radek Krejci1c0c3442019-07-23 16:08:47 +0200725 if (buffer) {
Michal Vaskobde22b62022-03-22 15:32:56 +0100726 len = snprintf(buffer, buflen, "[%s='%%s']%s", key->name, s ? s : "");
Radek Krejci1c0c3442019-07-23 16:08:47 +0200727 } else {
Michal Vaskobde22b62022-03-22 15:32:56 +0100728 len = asprintf(&path, "[%s='%%s']%s", key->name, s ? s : "");
Radek Krejci1c0c3442019-07-23 16:08:47 +0200729 }
Michal Vaskobde22b62022-03-22 15:32:56 +0100730 free(s);
Michal Vasko28d03812022-03-24 15:26:11 +0100731
732 if (buffer && (buflen <= (size_t)len)) {
733 /* not enough space in buffer */
734 break;
735 }
Radek Krejci1c0c3442019-07-23 16:08:47 +0200736 }
Radek Krejci327de162019-06-14 12:52:07 +0200737 }
738
Michal Vaskobde22b62022-03-22 15:32:56 +0100739 s = buffer ? strdup(buffer) : path;
740 if (parent && (iter->parent == parent)) {
741 slash = "";
742 } else {
743 slash = "/";
744 }
745
746 if (skip_schema) {
747 par = lysc_data_parent(iter);
748 } else {
749 par = iter->parent;
750 }
751
752 if (!par || (par->module != iter->module)) {
753 /* print prefix */
Radek Krejci3bbd93e2019-07-24 09:57:23 +0200754 if (buffer) {
Michal Vaskobde22b62022-03-22 15:32:56 +0100755 len = snprintf(buffer, buflen, "%s%s:%s%s", slash, iter->module->name, iter->name, s ? s : "");
Radek Krejci3bbd93e2019-07-24 09:57:23 +0200756 } else {
Michal Vaskobde22b62022-03-22 15:32:56 +0100757 len = asprintf(&path, "%s%s:%s%s", slash, iter->module->name, iter->name, s ? s : "");
758 }
759 } else {
760 /* prefix is the same as in parent */
761 if (buffer) {
762 len = snprintf(buffer, buflen, "%s%s%s", slash, iter->name, s ? s : "");
763 } else {
764 len = asprintf(&path, "%s%s%s", slash, iter->name, s ? s : "");
Radek Krejci3bbd93e2019-07-24 09:57:23 +0200765 }
Radek Krejci327de162019-06-14 12:52:07 +0200766 }
Michal Vaskobde22b62022-03-22 15:32:56 +0100767 free(s);
768
769 if (buffer && (buflen <= (size_t)len)) {
770 /* not enough space in buffer */
771 break;
772 }
773 }
774
775 if (len < 0) {
776 free(path);
777 path = NULL;
778 } else if (len == 0) {
779 if (buffer) {
780 strcpy(buffer, "/");
781 } else {
782 path = strdup("/");
783 }
Radek Krejci327de162019-06-14 12:52:07 +0200784 }
785
Radek Krejci1c0c3442019-07-23 16:08:47 +0200786 if (buffer) {
787 return buffer;
788 } else {
789 return path;
790 }
Radek Krejci327de162019-06-14 12:52:07 +0200791}
792
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100793LIBYANG_API_DEF char *
Michal Vasko14654712020-02-06 08:35:21 +0100794lysc_path(const struct lysc_node *node, LYSC_PATH_TYPE pathtype, char *buffer, size_t buflen)
795{
796 return lysc_path_until(node, NULL, pathtype, buffer, buflen);
797}
798
Michal Vasko405cc9e2020-12-01 12:01:27 +0100799LY_ERR
Michal Vasko65333882021-06-10 14:12:16 +0200800_lys_set_implemented(struct lys_module *mod, const char **features, struct lys_glob_unres *unres)
Michal Vasko405cc9e2020-12-01 12:01:27 +0100801{
802 LY_ERR ret = LY_SUCCESS, r;
aPiecek6b3d5422021-07-30 15:55:43 +0200803 struct lys_module *mod_iter;
Michal Vaskoc56d6372021-10-19 12:29:00 +0200804 const char **imp_f, *all_f[] = {"*", NULL};
Michal Vasko65333882021-06-10 14:12:16 +0200805 uint32_t i;
Michal Vasko916aefb2020-11-02 15:43:16 +0100806
Michal Vasko405cc9e2020-12-01 12:01:27 +0100807 if (mod->implemented) {
808 /* mod is already implemented, set the features */
809 r = lys_set_features(mod->parsed, features);
810 if (r == LY_EEXIST) {
811 /* no changes */
812 return LY_SUCCESS;
Michal Vasko7213ac52021-06-15 11:52:13 +0200813 } else if (!r) {
814 /* mark the module as changed */
Michal Vasko01db7de2021-04-16 12:23:30 +0200815 mod->to_compile = 1;
Michal Vasko01db7de2021-04-16 12:23:30 +0200816 }
Michal Vasko7213ac52021-06-15 11:52:13 +0200817
818 return r;
Michal Vasko89b5c072020-10-06 13:52:44 +0200819 }
Michal Vasko08c8b272020-11-24 18:11:30 +0100820
Michal Vasko7213ac52021-06-15 11:52:13 +0200821 /* implement, ignore recompilation because it must always take place later */
822 r = lys_implement(mod, features, unres);
823 LY_CHECK_ERR_GOTO(r && (r != LY_ERECOMPILE), ret = r, cleanup);
Michal Vasko65333882021-06-10 14:12:16 +0200824
825 if (mod->ctx->flags & LY_CTX_ALL_IMPLEMENTED) {
826 /* implement all the imports as well */
827 for (i = 0; i < unres->creating.count; ++i) {
828 mod = unres->creating.objs[i];
829 if (mod->implemented) {
830 continue;
831 }
832
Michal Vaskoc56d6372021-10-19 12:29:00 +0200833 imp_f = (mod->ctx->flags & LY_CTX_ENABLE_IMP_FEATURES) ? all_f : NULL;
834 r = lys_implement(mod, imp_f, unres);
Michal Vasko7213ac52021-06-15 11:52:13 +0200835 LY_CHECK_ERR_GOTO(r && (r != LY_ERECOMPILE), ret = r, cleanup);
Michal Vasko65333882021-06-10 14:12:16 +0200836 }
837 }
838
aPiecek6b3d5422021-07-30 15:55:43 +0200839 /* Try to find module with LYS_MOD_IMPORTED_REV flag. */
840 i = 0;
841 while ((mod_iter = ly_ctx_get_module_iter(mod->ctx, &i))) {
Michal Vaskoe8b085b2021-09-02 08:20:08 +0200842 if (!strcmp(mod_iter->name, mod->name) && (mod_iter != mod) && (mod_iter->latest_revision & LYS_MOD_IMPORTED_REV)) {
843 LOGVRB("Implemented module \"%s@%s\" was not and will not be imported if the revision-date is missing"
844 " in the import statement. Instead, the revision \"%s\" is imported.", mod->name, mod->revision,
845 mod_iter->revision);
aPiecek6b3d5422021-07-30 15:55:43 +0200846 break;
847 }
848 }
849
Michal Vasko65333882021-06-10 14:12:16 +0200850cleanup:
851 return ret;
852}
853
Michal Vaskof4258e12021-06-15 12:11:42 +0200854/**
Michal Vasko7ee5be22021-06-16 17:03:34 +0200855 * @brief Check whether it may be needed to (re)compile a module from a particular dependency set
856 * and if so, add it into its dep set.
857 *
858 * Dependency set includes all modules that need to be (re)compiled in case any of the module(s)
859 * in the dep set are (re)compiled.
860 *
861 * The reason for recompilation is possible disabled nodes and updating
862 * leafref targets to point to the newly compiled modules. Using the import relation, the
863 * dependency is reflexive because of possible foreign augments and deviations, which are compiled
864 * during the target module compilation.
865 *
866 * - every module must belong to exactly one dep set
867 * - implement flag must be ignored because it can be changed during dep set compilation
Michal Vaskof4258e12021-06-15 12:11:42 +0200868 *
869 * @param[in] mod Module to process.
870 * @param[in,out] ctx_set Set with all not-yet-processed modules.
871 * @param[in,out] dep_set Current dependency set to update.
Michal Vasko775fbd02021-07-28 08:25:29 +0200872 * @param[in] aux_set Set of traversed non-compiled modules, should be empty on first call.
Michal Vaskof4258e12021-06-15 12:11:42 +0200873 * @return LY_ERR value.
874 */
875static LY_ERR
Michal Vasko775fbd02021-07-28 08:25:29 +0200876lys_unres_dep_sets_create_mod_r(struct lys_module *mod, struct ly_set *ctx_set, struct ly_set *dep_set,
877 struct ly_set *aux_set)
Michal Vaskof4258e12021-06-15 12:11:42 +0200878{
879 struct lys_module *mod2;
880 struct lysp_import *imports;
881 uint32_t i;
882 LY_ARRAY_COUNT_TYPE u, v;
883 ly_bool found;
884
Michal Vasko0bccbf12021-11-22 09:59:57 +0100885 if (LYS_IS_SINGLE_DEP_SET(mod)) {
Michal Vasko709f9a52021-07-21 10:51:59 +0200886 /* is already in a separate dep set */
Michal Vasko87cfdba2022-02-22 14:13:45 +0100887 if (!lys_has_dep_mods(mod)) {
Michal Vasko709f9a52021-07-21 10:51:59 +0200888 /* break the dep set here, no modules depend on this one */
Michal Vasko7ee5be22021-06-16 17:03:34 +0200889 return LY_SUCCESS;
890 }
Michal Vasko775fbd02021-07-28 08:25:29 +0200891
892 if (ly_set_contains(aux_set, mod, NULL)) {
893 /* it was traversed */
894 return LY_SUCCESS;
895 }
896
897 /* add a new auxiliary module */
898 LY_CHECK_RET(ly_set_add(aux_set, mod, 1, NULL));
Michal Vasko7ee5be22021-06-16 17:03:34 +0200899 } else {
Michal Vasko709f9a52021-07-21 10:51:59 +0200900 if (!ly_set_contains(ctx_set, mod, &i)) {
901 /* it was already processed */
902 return LY_SUCCESS;
903 }
904
905 /* remove it from the set, we are processing it now */
906 ly_set_rm_index(ctx_set, i, NULL);
907
Michal Vasko7ee5be22021-06-16 17:03:34 +0200908 /* add a new dependent module into the dep set */
909 LY_CHECK_RET(ly_set_add(dep_set, mod, 1, NULL));
Michal Vaskof4258e12021-06-15 12:11:42 +0200910 }
911
912 /* process imports of the module and submodules */
913 imports = mod->parsed->imports;
914 LY_ARRAY_FOR(imports, u) {
Michal Vasko709f9a52021-07-21 10:51:59 +0200915 mod2 = imports[u].module;
Michal Vasko775fbd02021-07-28 08:25:29 +0200916 LY_CHECK_RET(lys_unres_dep_sets_create_mod_r(mod2, ctx_set, dep_set, aux_set));
Michal Vaskof4258e12021-06-15 12:11:42 +0200917 }
918 LY_ARRAY_FOR(mod->parsed->includes, v) {
919 imports = mod->parsed->includes[v].submodule->imports;
920 LY_ARRAY_FOR(imports, u) {
Michal Vasko709f9a52021-07-21 10:51:59 +0200921 mod2 = imports[u].module;
Michal Vasko87cfdba2022-02-22 14:13:45 +0100922 if (LYS_IS_SINGLE_DEP_SET(mod2) && !lys_has_dep_mods(mod2)) {
923 /* break the dep set here, no modules depend on this one */
924 continue;
Michal Vasko709f9a52021-07-21 10:51:59 +0200925 }
926
Michal Vasko775fbd02021-07-28 08:25:29 +0200927 LY_CHECK_RET(lys_unres_dep_sets_create_mod_r(imports[u].module, ctx_set, dep_set, aux_set));
Michal Vaskof4258e12021-06-15 12:11:42 +0200928 }
929 }
930
931 /* process modules and submodules importing this module */
Michal Vasko7ee5be22021-06-16 17:03:34 +0200932 for (i = 0; i < mod->ctx->list.count; ++i) {
933 mod2 = mod->ctx->list.objs[i];
Michal Vaskof4258e12021-06-15 12:11:42 +0200934 found = 0;
935
936 imports = mod2->parsed->imports;
937 LY_ARRAY_FOR(imports, u) {
938 if (imports[u].module == mod) {
939 found = 1;
940 break;
941 }
942 }
943
944 if (!found) {
945 LY_ARRAY_FOR(mod2->parsed->includes, v) {
946 imports = mod2->parsed->includes[v].submodule->imports;
947 LY_ARRAY_FOR(imports, u) {
948 if (imports[u].module == mod) {
949 found = 1;
950 break;
951 }
952 }
953
954 if (found) {
955 break;
956 }
957 }
958 }
959
960 if (found) {
Michal Vasko775fbd02021-07-28 08:25:29 +0200961 LY_CHECK_RET(lys_unres_dep_sets_create_mod_r(mod2, ctx_set, dep_set, aux_set));
Michal Vaskof4258e12021-06-15 12:11:42 +0200962 }
963 }
964
965 return LY_SUCCESS;
966}
967
Michal Vasko709f9a52021-07-21 10:51:59 +0200968/**
969 * @brief Add all simple modules (that have nothing to (re)compile) into separate dep sets.
970 *
971 * @param[in,out] ctx_set Set with all not-yet-processed modules.
972 * @param[in,out] main_set Set of dependency module sets.
973 * @return LY_ERR value.
974 */
975static LY_ERR
976lys_unres_dep_sets_create_single(struct ly_set *ctx_set, struct ly_set *main_set)
977{
978 LY_ERR ret = LY_SUCCESS;
979 struct lys_module *m;
980 uint32_t i = 0;
981 struct ly_set *dep_set = NULL;
982
983 while (i < ctx_set->count) {
984 m = ctx_set->objs[i];
Michal Vasko0bccbf12021-11-22 09:59:57 +0100985 if (LYS_IS_SINGLE_DEP_SET(m)) {
Michal Vasko709f9a52021-07-21 10:51:59 +0200986 /* remove it from the set, we are processing it now */
987 ly_set_rm_index(ctx_set, i, NULL);
988
989 /* this module can be in a separate dep set (but there still may be modules importing this one
990 * that depend on imports of this one in case it defines groupings) */
991 LY_CHECK_GOTO(ret = ly_set_new(&dep_set), cleanup);
992 LY_CHECK_GOTO(ret = ly_set_add(dep_set, m, 1, NULL), cleanup);
993 LY_CHECK_GOTO(ret = ly_set_add(main_set, dep_set, 1, NULL), cleanup);
994 dep_set = NULL;
995 } else {
996 ++i;
997 }
998 }
999
1000cleanup:
1001 ly_set_free(dep_set, NULL);
1002 return ret;
1003}
1004
Michal Vaskof4258e12021-06-15 12:11:42 +02001005LY_ERR
Michal Vasko50bc09a2021-06-17 17:31:56 +02001006lys_unres_dep_sets_create(struct ly_ctx *ctx, struct ly_set *main_set, struct lys_module *mod)
Michal Vaskof4258e12021-06-15 12:11:42 +02001007{
1008 LY_ERR ret = LY_SUCCESS;
1009 struct lys_module *m;
Michal Vasko775fbd02021-07-28 08:25:29 +02001010 struct ly_set *dep_set = NULL, *ctx_set = NULL, aux_set = {0};
Michal Vaskof4258e12021-06-15 12:11:42 +02001011 uint32_t i;
Michal Vasko7ee5be22021-06-16 17:03:34 +02001012 ly_bool found;
Michal Vaskof4258e12021-06-15 12:11:42 +02001013
Michal Vasko22b26222021-07-30 11:16:47 +02001014 assert(!main_set->count);
1015
Michal Vaskof4258e12021-06-15 12:11:42 +02001016 /* start with a duplicate set of modules that we will remove from */
1017 LY_CHECK_GOTO(ret = ly_set_dup(&ctx->list, NULL, &ctx_set), cleanup);
1018
Michal Vasko709f9a52021-07-21 10:51:59 +02001019 /* first create all dep sets with single modules */
1020 LY_CHECK_GOTO(ret = lys_unres_dep_sets_create_single(ctx_set, main_set), cleanup);
1021
1022 if (mod && !ly_set_contains(ctx_set, mod, NULL)) {
1023 /* dep set for this module has already been created, nothing else to do */
1024 goto cleanup;
1025 }
1026
Michal Vaskof4258e12021-06-15 12:11:42 +02001027 while (ctx_set->count) {
1028 /* create new dep set */
1029 LY_CHECK_GOTO(ret = ly_set_new(&dep_set), cleanup);
1030
1031 if (mod) {
1032 /* use the module create a dep set with the rest of its dependent modules */
Michal Vasko775fbd02021-07-28 08:25:29 +02001033 LY_CHECK_GOTO(ret = lys_unres_dep_sets_create_mod_r(mod, ctx_set, dep_set, &aux_set), cleanup);
Michal Vaskof4258e12021-06-15 12:11:42 +02001034 } else {
1035 /* use first ctx mod to create a dep set with the rest of its dependent modules */
Michal Vasko775fbd02021-07-28 08:25:29 +02001036 LY_CHECK_GOTO(ret = lys_unres_dep_sets_create_mod_r(ctx_set->objs[0], ctx_set, dep_set, &aux_set), cleanup);
Michal Vaskof4258e12021-06-15 12:11:42 +02001037 }
Michal Vasko775fbd02021-07-28 08:25:29 +02001038 ly_set_erase(&aux_set, NULL);
Michal Vasko7ee5be22021-06-16 17:03:34 +02001039 assert(dep_set->count);
Michal Vaskof4258e12021-06-15 12:11:42 +02001040
1041 /* check whether there is any module that will be (re)compiled */
Michal Vasko7ee5be22021-06-16 17:03:34 +02001042 found = 0;
Michal Vaskof4258e12021-06-15 12:11:42 +02001043 for (i = 0; i < dep_set->count; ++i) {
1044 m = dep_set->objs[i];
1045 if (m->to_compile) {
Michal Vasko7ee5be22021-06-16 17:03:34 +02001046 found = 1;
Michal Vaskof4258e12021-06-15 12:11:42 +02001047 break;
1048 }
1049 }
1050
Michal Vasko7ee5be22021-06-16 17:03:34 +02001051 if (found) {
Michal Vaskof4258e12021-06-15 12:11:42 +02001052 /* if there is, all the implemented modules need to be recompiled */
1053 for (i = 0; i < dep_set->count; ++i) {
1054 m = dep_set->objs[i];
1055 if (m->implemented) {
1056 m->to_compile = 1;
1057 }
1058 }
1059 }
1060
Michal Vasko7ee5be22021-06-16 17:03:34 +02001061 /* add the dep set into main set */
1062 LY_CHECK_GOTO(ret = ly_set_add(main_set, dep_set, 1, NULL), cleanup);
Michal Vaskof4258e12021-06-15 12:11:42 +02001063 dep_set = NULL;
1064
1065 if (mod) {
1066 /* we need dep set only for this module */
1067 break;
1068 }
1069 }
1070
Michal Vaskoe558f792021-07-28 08:20:15 +02001071#ifndef NDEBUG
1072 LOGDBG(LY_LDGDEPSETS, "dep sets created (%" PRIu32 "):", main_set->count);
1073 for (i = 0; i < main_set->count; ++i) {
1074 struct ly_set *iter_set = main_set->objs[i];
1075
1076 LOGDBG(LY_LDGDEPSETS, "dep set #%" PRIu32 ":", i);
1077 for (uint32_t j = 0; j < iter_set->count; ++j) {
1078 m = iter_set->objs[j];
1079 LOGDBG(LY_LDGDEPSETS, "\t%s", m->name);
1080 }
1081 }
1082#endif
1083
Michal Vaskof4258e12021-06-15 12:11:42 +02001084cleanup:
Michal Vaskobd65c2e2021-06-16 11:49:45 +02001085 assert(ret || main_set->objs);
Michal Vasko775fbd02021-07-28 08:25:29 +02001086 ly_set_erase(&aux_set, NULL);
Michal Vaskof4258e12021-06-15 12:11:42 +02001087 ly_set_free(dep_set, NULL);
1088 ly_set_free(ctx_set, NULL);
1089 return ret;
1090}
1091
1092void
1093lys_unres_glob_revert(struct ly_ctx *ctx, struct lys_glob_unres *unres)
1094{
Michal Vaskod4a6d042022-12-08 08:34:29 +01001095 uint32_t i, j, idx, temp_lo = 0;
Michal Vaskoc636ea42022-09-16 10:20:31 +02001096 struct lysf_ctx fctx = {.ctx = ctx};
Michal Vaskof4258e12021-06-15 12:11:42 +02001097 struct ly_set *dep_set;
Michal Vaskof4258e12021-06-15 12:11:42 +02001098 LY_ERR ret;
1099
1100 for (i = 0; i < unres->implementing.count; ++i) {
Michal Vaskoc636ea42022-09-16 10:20:31 +02001101 fctx.mod = unres->implementing.objs[i];
1102 assert(fctx.mod->implemented);
Michal Vaskof4258e12021-06-15 12:11:42 +02001103
1104 /* make the module correctly non-implemented again */
Michal Vaskoc636ea42022-09-16 10:20:31 +02001105 fctx.mod->implemented = 0;
1106 lys_precompile_augments_deviations_revert(ctx, fctx.mod);
1107 lysc_module_free(&fctx, fctx.mod->compiled);
1108 fctx.mod->compiled = NULL;
Michal Vaskof4258e12021-06-15 12:11:42 +02001109
1110 /* should not be made implemented */
Michal Vaskoc636ea42022-09-16 10:20:31 +02001111 fctx.mod->to_compile = 0;
Michal Vaskof4258e12021-06-15 12:11:42 +02001112 }
1113
1114 for (i = 0; i < unres->creating.count; ++i) {
Michal Vaskoc636ea42022-09-16 10:20:31 +02001115 fctx.mod = unres->creating.objs[i];
Michal Vaskof4258e12021-06-15 12:11:42 +02001116
Michal Vaskod297f2a2021-06-16 11:51:28 +02001117 /* remove the module from the context */
Michal Vaskoc636ea42022-09-16 10:20:31 +02001118 ly_set_rm(&ctx->list, fctx.mod, NULL);
Michal Vaskof4258e12021-06-15 12:11:42 +02001119
Michal Vasko22b26222021-07-30 11:16:47 +02001120 /* remove it also from dep sets */
Michal Vasko7ee5be22021-06-16 17:03:34 +02001121 for (j = 0; j < unres->dep_sets.count; ++j) {
1122 dep_set = unres->dep_sets.objs[j];
Michal Vaskoc636ea42022-09-16 10:20:31 +02001123 if (ly_set_contains(dep_set, fctx.mod, &idx)) {
Michal Vasko7ee5be22021-06-16 17:03:34 +02001124 ly_set_rm_index(dep_set, idx, NULL);
1125 break;
Michal Vaskof4258e12021-06-15 12:11:42 +02001126 }
Michal Vaskof4258e12021-06-15 12:11:42 +02001127 }
Michal Vaskod297f2a2021-06-16 11:51:28 +02001128
1129 /* free the module */
Michal Vaskoc636ea42022-09-16 10:20:31 +02001130 lys_module_free(&fctx, fctx.mod, 1);
Michal Vaskof4258e12021-06-15 12:11:42 +02001131 }
1132
Michal Vaskoc636ea42022-09-16 10:20:31 +02001133 /* remove the extensions as well */
1134 lysf_ctx_erase(&fctx);
1135
Michal Vaskof4258e12021-06-15 12:11:42 +02001136 if (unres->implementing.count) {
1137 /* recompile previous context because some implemented modules are no longer implemented,
1138 * we can reuse the current to_compile flags */
Michal Vaskod4a6d042022-12-08 08:34:29 +01001139 ly_temp_log_options(&temp_lo);
Michal Vasko22b26222021-07-30 11:16:47 +02001140 ret = lys_compile_depset_all(ctx, &ctx->unres);
Michal Vaskod4a6d042022-12-08 08:34:29 +01001141 ly_temp_log_options(NULL);
Michal Vaskof4258e12021-06-15 12:11:42 +02001142 if (ret) {
1143 LOGINT(ctx);
1144 }
1145 }
1146}
1147
1148void
1149lys_unres_glob_erase(struct lys_glob_unres *unres)
1150{
1151 uint32_t i;
1152
1153 for (i = 0; i < unres->dep_sets.count; ++i) {
1154 ly_set_free(unres->dep_sets.objs[i], NULL);
1155 }
1156 ly_set_erase(&unres->dep_sets, NULL);
1157 ly_set_erase(&unres->implementing, NULL);
1158 ly_set_erase(&unres->creating, NULL);
1159
Michal Vaskoc130e162021-10-19 11:30:00 +02001160 assert(!unres->ds_unres.whens.count);
1161 assert(!unres->ds_unres.musts.count);
Michal Vaskof4258e12021-06-15 12:11:42 +02001162 assert(!unres->ds_unres.leafrefs.count);
aPiecekc6526b42021-07-12 15:21:39 +02001163 assert(!unres->ds_unres.disabled_leafrefs.count);
Michal Vaskof4258e12021-06-15 12:11:42 +02001164 assert(!unres->ds_unres.dflts.count);
1165 assert(!unres->ds_unres.disabled.count);
1166}
1167
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001168LIBYANG_API_DEF LY_ERR
Michal Vasko65333882021-06-10 14:12:16 +02001169lys_set_implemented(struct lys_module *mod, const char **features)
1170{
1171 LY_ERR ret = LY_SUCCESS;
Michal Vasko22b26222021-07-30 11:16:47 +02001172 struct lys_glob_unres *unres = &mod->ctx->unres;
Michal Vasko65333882021-06-10 14:12:16 +02001173
1174 LY_CHECK_ARG_RET(NULL, mod, LY_EINVAL);
1175
1176 /* implement */
Michal Vasko22b26222021-07-30 11:16:47 +02001177 ret = _lys_set_implemented(mod, features, unres);
Michal Vasko65333882021-06-10 14:12:16 +02001178 LY_CHECK_GOTO(ret, cleanup);
1179
Michal Vaskof4258e12021-06-15 12:11:42 +02001180 if (!(mod->ctx->flags & LY_CTX_EXPLICIT_COMPILE)) {
1181 /* create dep set for the module and mark all the modules that will be (re)compiled */
Michal Vasko22b26222021-07-30 11:16:47 +02001182 LY_CHECK_GOTO(ret = lys_unres_dep_sets_create(mod->ctx, &unres->dep_sets, mod), cleanup);
Michal Vaskof4258e12021-06-15 12:11:42 +02001183
Michal Vasko709f9a52021-07-21 10:51:59 +02001184 /* (re)compile the whole dep set (other dep sets will have no modules marked for compilation) */
Michal Vasko22b26222021-07-30 11:16:47 +02001185 LY_CHECK_GOTO(ret = lys_compile_depset_all(mod->ctx, unres), cleanup);
1186
1187 /* unres resolved */
1188 lys_unres_glob_erase(unres);
Michal Vaskof4258e12021-06-15 12:11:42 +02001189 }
1190
Michal Vasko65333882021-06-10 14:12:16 +02001191cleanup:
Michal Vasko405cc9e2020-12-01 12:01:27 +01001192 if (ret) {
Michal Vasko22b26222021-07-30 11:16:47 +02001193 lys_unres_glob_revert(mod->ctx, unres);
1194 lys_unres_glob_erase(unres);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001195 }
Michal Vasko89b5c072020-10-06 13:52:44 +02001196 return ret;
Radek Krejci77a8bcd2019-09-11 11:20:02 +02001197}
1198
Michal Vaskoc0c64ae2022-10-06 10:15:23 +02001199/**
1200 * @brief Resolve (find) all imported and included modules.
1201 *
1202 * @param[in] pctx Parser context.
1203 * @param[in] pmod Parsed module to resolve.
1204 * @param[out] new_mods Set with all the newly loaded modules.
1205 * @return LY_ERR value.
1206 */
Michal Vasko7c8439f2020-08-05 13:25:19 +02001207static LY_ERR
Michal Vaskod0625d72022-10-06 15:02:50 +02001208lysp_resolve_import_include(struct lysp_ctx *pctx, struct lysp_module *pmod, struct ly_set *new_mods)
Michal Vasko7c8439f2020-08-05 13:25:19 +02001209{
1210 struct lysp_import *imp;
Michal Vasko7c8439f2020-08-05 13:25:19 +02001211 LY_ARRAY_COUNT_TYPE u, v;
1212
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001213 pmod->parsing = 1;
1214 LY_ARRAY_FOR(pmod->imports, u) {
1215 imp = &pmod->imports[u];
Michal Vasko7c8439f2020-08-05 13:25:19 +02001216 if (!imp->module) {
aPiecekc3e26142021-06-22 14:25:49 +02001217 LY_CHECK_RET(lys_parse_load(PARSER_CTX(pctx), imp->name, imp->rev[0] ? imp->rev : NULL, new_mods, &imp->module));
aPiecekd4911ee2021-07-30 07:40:24 +02001218
1219 if (!imp->rev[0]) {
1220 /* This module must be selected for the next similar
1221 * import without revision-date to avoid incorrect
1222 * derived identities in the ::lys_module.identities.
1223 */
1224 imp->module->latest_revision |= LYS_MOD_IMPORTED_REV;
1225 }
Michal Vasko7c8439f2020-08-05 13:25:19 +02001226 }
1227 /* check for importing the same module twice */
1228 for (v = 0; v < u; ++v) {
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001229 if (imp->module == pmod->imports[v].module) {
Michal Vasko7c8439f2020-08-05 13:25:19 +02001230 LOGWRN(PARSER_CTX(pctx), "Single revision of the module \"%s\" imported twice.", imp->name);
1231 }
1232 }
1233 }
aPiecekc3e26142021-06-22 14:25:49 +02001234 LY_CHECK_RET(lysp_load_submodules(pctx, pmod, new_mods));
Radek Krejci771928a2021-01-19 13:42:36 +01001235
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001236 pmod->parsing = 0;
Michal Vasko7c8439f2020-08-05 13:25:19 +02001237
1238 return LY_SUCCESS;
1239}
1240
Michal Vaskoc0c64ae2022-10-06 10:15:23 +02001241/**
Michal Vasko193dacd2022-10-13 08:43:05 +02001242 * @brief Generate path of the given paresed node.
1243 *
1244 * @param[in] node Schema path of this node will be generated.
1245 * @param[in] parent Build relative path only until this parent is found. If NULL, the full absolute path is printed.
1246 * @return NULL in case of memory allocation error, path of the node otherwise.
1247 * In case the @p buffer is NULL, the returned string is dynamically allocated and caller is responsible to free it.
1248 */
1249static char *
1250lysp_path_until(const struct lysp_node *node, const struct lysp_node *parent, const struct lysp_module *pmod)
1251{
1252 const struct lysp_node *iter, *par;
1253 char *path = NULL, *s;
1254 const char *slash;
1255 int len = 0;
1256
1257 for (iter = node; iter && (iter != parent) && (len >= 0); iter = iter->parent) {
1258 if (parent && (iter->parent == parent)) {
1259 slash = "";
1260 } else {
1261 slash = "/";
1262 }
1263
1264 s = path;
1265 par = iter->parent;
1266 if (!par) {
1267 /* print prefix */
1268 len = asprintf(&path, "%s%s:%s%s", slash, pmod->mod->name, iter->name, s ? s : "");
1269 } else {
1270 /* prefix is the same as in parent */
1271 len = asprintf(&path, "%s%s%s", slash, iter->name, s ? s : "");
1272 }
1273 free(s);
1274 }
1275
1276 if (len < 0) {
1277 free(path);
1278 path = NULL;
1279 } else if (len == 0) {
1280 path = strdup("/");
1281 }
1282
1283 return path;
1284}
1285
1286/**
1287 * @brief Build log path for a parsed extension instance.
1288 *
1289 * @param[in] pcxt Parse context.
1290 * @param[in] ext Parsed extension instance.
1291 * @param[out] path Generated path.
1292 * @return LY_ERR value.
1293 */
1294static LY_ERR
1295lysp_resolve_ext_instance_log_path(const struct lysp_ctx *pctx, const struct lysp_ext_instance *ext, char **path)
1296{
1297 char *buf = NULL;
1298 uint32_t used = 0, size = 0;
1299
1300 if (ext->parent_stmt & LY_STMT_NODE_MASK) {
1301 /* parsed node path */
1302 buf = lysp_path_until(ext->parent, NULL, PARSER_CUR_PMOD(pctx));
1303 LY_CHECK_ERR_RET(!buf, LOGMEM(PARSER_CTX(pctx)), LY_EMEM);
1304 size = used = strlen(buf);
1305
1306 /* slash */
1307 size += 1;
1308 buf = realloc(buf, size + 1);
1309 LY_CHECK_ERR_RET(!buf, LOGMEM(PARSER_CTX(pctx)), LY_EMEM);
1310 used += sprintf(buf + used, "/");
1311 } else {
1312 /* module */
1313 size += 1 + strlen(PARSER_CUR_PMOD(pctx)->mod->name) + 1;
1314 buf = realloc(buf, size + 1);
1315 LY_CHECK_ERR_RET(!buf, LOGMEM(PARSER_CTX(pctx)), LY_EMEM);
1316 used += sprintf(buf + used, "/%s:", PARSER_CUR_PMOD(pctx)->mod->name);
1317 }
1318
1319 /* extension name */
1320 size += 12 + strlen(ext->name) + 2;
1321 buf = realloc(buf, size + 1);
1322 LY_CHECK_ERR_RET(!buf, LOGMEM(PARSER_CTX(pctx)), LY_EMEM);
1323 used += sprintf(buf + used, "{extension='%s'}", ext->name);
1324
1325 /* extension argument */
1326 if (ext->argument) {
1327 size += 1 + strlen(ext->argument);
1328 buf = realloc(buf, size + 1);
1329 LY_CHECK_ERR_RET(!buf, LOGMEM(PARSER_CTX(pctx)), LY_EMEM);
1330 used += sprintf(buf + used, "/%s", ext->argument);
1331 }
1332
1333 *path = buf;
1334 return LY_SUCCESS;
1335}
1336
1337/**
Michal Vaskoc0c64ae2022-10-06 10:15:23 +02001338 * @brief Resolve (find) all extension instance records and finish their parsing.
1339 *
1340 * @param[in] pctx Parse context with all the parsed extension instances.
1341 * @return LY_ERR value.
1342 */
1343static LY_ERR
Michal Vaskod0625d72022-10-06 15:02:50 +02001344lysp_resolve_ext_instance_records(struct lysp_ctx *pctx)
Michal Vaskoc0c64ae2022-10-06 10:15:23 +02001345{
Michal Vasko193dacd2022-10-13 08:43:05 +02001346 LY_ERR r;
1347 struct lysf_ctx fctx = {.ctx = PARSER_CTX(pctx)};
Michal Vaskoc0c64ae2022-10-06 10:15:23 +02001348 struct lysp_ext_instance *exts, *ext;
1349 const struct lys_module *mod;
Michal Vaskoc0c64ae2022-10-06 10:15:23 +02001350 uint32_t i;
1351 LY_ARRAY_COUNT_TYPE u;
Michal Vasko193dacd2022-10-13 08:43:05 +02001352 char *path = NULL;
Michal Vaskoc0c64ae2022-10-06 10:15:23 +02001353
Michal Vasko193dacd2022-10-13 08:43:05 +02001354 /* first finish parsing all extension instances ... */
Michal Vaskoc0c64ae2022-10-06 10:15:23 +02001355 for (i = 0; i < pctx->ext_inst.count; ++i) {
1356 exts = pctx->ext_inst.objs[i];
1357 LY_ARRAY_FOR(exts, u) {
1358 ext = &exts[u];
1359
Michal Vasko193dacd2022-10-13 08:43:05 +02001360 /* find the extension definition */
1361 LY_CHECK_RET(lysp_ext_find_definition(PARSER_CTX(pctx), ext, &mod, &ext->def));
1362
1363 /* resolve the argument, if needed */
1364 LY_CHECK_RET(lysp_ext_instance_resolve_argument(PARSER_CTX(pctx), ext));
Michal Vaskoc0c64ae2022-10-06 10:15:23 +02001365
1366 /* find the extension record, if any */
Michal Vasko193dacd2022-10-13 08:43:05 +02001367 ext->record = lyplg_ext_record_find(mod->name, mod->revision, ext->def->name);
1368 }
1369 }
1370
1371 /* ... then call the parse callback */
1372 for (i = 0; i < pctx->ext_inst.count; ++i) {
1373 exts = pctx->ext_inst.objs[i];
1374 u = 0;
1375 while (u < LY_ARRAY_COUNT(exts)) {
1376 ext = &exts[u];
1377 if (!ext->record || !ext->record->plugin.parse) {
1378 goto next_iter;
1379 }
1380
1381 /* set up log path */
1382 if ((r = lysp_resolve_ext_instance_log_path(pctx, ext, &path))) {
1383 return r;
1384 }
Michal Vaskof8ebf132022-11-21 14:06:48 +01001385 LOG_LOCSET(NULL, NULL, path, NULL);
Michal Vasko193dacd2022-10-13 08:43:05 +02001386
1387 /* parse */
1388 r = ext->record->plugin.parse(pctx, ext);
1389
1390 LOG_LOCBACK(0, 0, 1, 0);
1391 free(path);
1392
1393 if (r == LY_ENOT) {
1394 /* instance should be ignored, remove it */
1395 lysp_ext_instance_free(&fctx, ext);
1396 LY_ARRAY_DECREMENT(exts);
1397 if (u < LY_ARRAY_COUNT(exts)) {
1398 /* replace by the last item */
1399 *ext = exts[LY_ARRAY_COUNT(exts)];
1400 } /* else if there are no more items, leave the empty array, we are not able to free it */
1401 continue;
1402 } else if (r) {
1403 /* error */
1404 return r;
1405 }
1406
1407next_iter:
1408 ++u;
Michal Vaskoc0c64ae2022-10-06 10:15:23 +02001409 }
1410 }
1411
1412 return LY_SUCCESS;
1413}
1414
Michal Vasko3a41dff2020-07-15 14:30:28 +02001415LY_ERR
Michal Vaskod0625d72022-10-06 15:02:50 +02001416lys_parse_submodule(struct ly_ctx *ctx, struct ly_in *in, LYS_INFORMAT format, struct lysp_ctx *main_ctx,
Michal Vasko22df3f02020-08-24 13:29:22 +02001417 LY_ERR (*custom_check)(const struct ly_ctx *, struct lysp_module *, struct lysp_submodule *, void *),
aPiecekc3e26142021-06-22 14:25:49 +02001418 void *check_data, struct ly_set *new_mods, struct lysp_submodule **submodule)
Radek Krejci9f5e6fb2018-10-25 09:26:12 +02001419{
Michal Vasko3a41dff2020-07-15 14:30:28 +02001420 LY_ERR ret;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001421 struct lysp_submodule *submod = NULL, *latest_sp;
Michal Vaskod0625d72022-10-06 15:02:50 +02001422 struct lysp_yang_ctx *yangctx = NULL;
1423 struct lysp_yin_ctx *yinctx = NULL;
1424 struct lysp_ctx *pctx;
Michal Vaskoc636ea42022-09-16 10:20:31 +02001425 struct lysf_ctx fctx = {.ctx = ctx};
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001426
Michal Vasko3a41dff2020-07-15 14:30:28 +02001427 LY_CHECK_ARG_RET(ctx, ctx, in, LY_EINVAL);
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001428
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001429 switch (format) {
1430 case LYS_IN_YIN:
Michal Vasko63f3d842020-07-08 10:10:14 +02001431 ret = yin_parse_submodule(&yinctx, ctx, main_ctx, in, &submod);
Michal Vaskod0625d72022-10-06 15:02:50 +02001432 pctx = (struct lysp_ctx *)yinctx;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001433 break;
1434 case LYS_IN_YANG:
Michal Vasko63f3d842020-07-08 10:10:14 +02001435 ret = yang_parse_submodule(&yangctx, ctx, main_ctx, in, &submod);
Michal Vaskod0625d72022-10-06 15:02:50 +02001436 pctx = (struct lysp_ctx *)yangctx;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001437 break;
1438 default:
David Sedlák4f2f5ba2019-08-15 13:18:48 +02001439 LOGERR(ctx, LY_EINVAL, "Invalid schema input format.");
Radek Krejci82fa8d42020-07-11 22:00:59 +02001440 ret = LY_EINVAL;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001441 break;
Radek Krejci9f5e6fb2018-10-25 09:26:12 +02001442 }
Radek Krejcif6923e82020-07-02 16:36:53 +02001443 LY_CHECK_GOTO(ret, error);
Radek Krejcif027df72020-09-15 13:00:28 +02001444 assert(submod);
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001445
1446 /* make sure that the newest revision is at position 0 */
1447 lysp_sort_revisions(submod->revs);
1448
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001449 /* decide the latest revision */
Michal Vasko8dc31992021-02-22 10:30:47 +01001450 latest_sp = (struct lysp_submodule *)ly_ctx_get_submodule2_latest(submod->mod, submod->name);
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001451 if (latest_sp) {
1452 if (submod->revs) {
1453 if (!latest_sp->revs) {
1454 /* latest has no revision, so mod is anyway newer */
1455 submod->latest_revision = latest_sp->latest_revision;
Radek Krejcib3289d62019-09-18 12:21:39 +02001456 /* the latest_sp is zeroed later when the new module is being inserted into the context */
1457 } else if (strcmp(submod->revs[0].date, latest_sp->revs[0].date) > 0) {
1458 submod->latest_revision = latest_sp->latest_revision;
1459 /* the latest_sp is zeroed later when the new module is being inserted into the context */
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001460 } else {
Radek Krejcib3289d62019-09-18 12:21:39 +02001461 latest_sp = NULL;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001462 }
Radek Krejcib3289d62019-09-18 12:21:39 +02001463 } else {
1464 latest_sp = NULL;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001465 }
1466 } else {
1467 submod->latest_revision = 1;
1468 }
1469
Radek Krejcib3289d62019-09-18 12:21:39 +02001470 if (custom_check) {
Michal Vasko7c8439f2020-08-05 13:25:19 +02001471 LY_CHECK_GOTO(ret = custom_check(ctx, NULL, submod, check_data), error);
Radek Krejcib3289d62019-09-18 12:21:39 +02001472 }
1473
1474 if (latest_sp) {
1475 latest_sp->latest_revision = 0;
1476 }
1477
Michal Vasko7a0b0762020-09-02 16:37:01 +02001478 lys_parser_fill_filepath(ctx, in, &submod->filepath);
1479
Michal Vasko7c8439f2020-08-05 13:25:19 +02001480 /* resolve imports and includes */
Michal Vaskoc0c64ae2022-10-06 10:15:23 +02001481 LY_CHECK_GOTO(ret = lysp_resolve_import_include(pctx, (struct lysp_module *)submod, new_mods), error);
1482
David Sedlák1b623122019-08-05 15:27:49 +02001483 if (format == LYS_IN_YANG) {
Michal Vaskod0625d72022-10-06 15:02:50 +02001484 lysp_yang_ctx_free(yangctx);
David Sedlák1b623122019-08-05 15:27:49 +02001485 } else {
Michal Vaskod0625d72022-10-06 15:02:50 +02001486 lysp_yin_ctx_free(yinctx);
David Sedlák1b623122019-08-05 15:27:49 +02001487 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02001488 *submodule = submod;
1489 return LY_SUCCESS;
David Sedlák1b623122019-08-05 15:27:49 +02001490
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001491error:
Radek Krejcic64661b2020-08-15 15:42:26 +02001492 if (!submod || !submod->name) {
1493 LOGERR(ctx, ret, "Parsing submodule failed.");
1494 } else {
1495 LOGERR(ctx, ret, "Parsing submodule \"%s\" failed.", submod->name);
1496 }
Michal Vaskoc636ea42022-09-16 10:20:31 +02001497 lysp_module_free(&fctx, (struct lysp_module *)submod);
David Sedlák1b623122019-08-05 15:27:49 +02001498 if (format == LYS_IN_YANG) {
Michal Vaskod0625d72022-10-06 15:02:50 +02001499 lysp_yang_ctx_free(yangctx);
David Sedlák1b623122019-08-05 15:27:49 +02001500 } else {
Michal Vaskod0625d72022-10-06 15:02:50 +02001501 lysp_yin_ctx_free(yinctx);
David Sedlák1b623122019-08-05 15:27:49 +02001502 }
Michal Vasko3a41dff2020-07-15 14:30:28 +02001503 return ret;
Radek Krejci9f5e6fb2018-10-25 09:26:12 +02001504}
1505
Michal Vasko45b521c2020-11-04 17:14:39 +01001506/**
1507 * @brief Add ietf-netconf metadata to the parsed module. Operation, filter, and select are added.
1508 *
Michal Vasko193dacd2022-10-13 08:43:05 +02001509 * @param[in] pctx Parse context.
Michal Vasko45b521c2020-11-04 17:14:39 +01001510 * @param[in] mod Parsed module to add to.
1511 * @return LY_SUCCESS on success.
1512 * @return LY_ERR on error.
1513 */
1514static LY_ERR
Michal Vasko193dacd2022-10-13 08:43:05 +02001515lysp_add_internal_ietf_netconf(struct lysp_ctx *pctx, struct lysp_module *mod)
Michal Vasko45b521c2020-11-04 17:14:39 +01001516{
Michal Vasko193dacd2022-10-13 08:43:05 +02001517 struct lysp_ext_instance *extp;
Michal Vasko45b521c2020-11-04 17:14:39 +01001518 struct lysp_stmt *stmt;
1519 struct lysp_import *imp;
1520
1521 /*
1522 * 1) edit-config's operation
1523 */
Michal Vasko193dacd2022-10-13 08:43:05 +02001524 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->exts, extp, LY_EMEM);
1525 LY_CHECK_ERR_RET(!extp, LOGMEM(mod->mod->ctx), LY_EMEM);
1526 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_:annotation", 0, &extp->name));
1527 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "operation", 0, &extp->argument));
1528 extp->format = LY_VALUE_SCHEMA;
1529 extp->prefix_data = mod;
1530 extp->parent = mod;
1531 extp->parent_stmt = LY_STMT_MODULE;
1532 extp->flags = LYS_INTERNAL;
Michal Vasko45b521c2020-11-04 17:14:39 +01001533
Michal Vasko193dacd2022-10-13 08:43:05 +02001534 extp->child = stmt = calloc(1, sizeof *extp->child);
Michal Vasko45b521c2020-11-04 17:14:39 +01001535 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1536 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "type", 0, &stmt->stmt));
1537 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enumeration", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001538 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001539 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001540 stmt->kw = LY_STMT_TYPE;
1541
1542 stmt->child = calloc(1, sizeof *stmt->child);
1543 stmt = stmt->child;
1544 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1545 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
1546 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "merge", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001547 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001548 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001549 stmt->kw = LY_STMT_ENUM;
1550
1551 stmt->next = calloc(1, sizeof *stmt->child);
1552 stmt = stmt->next;
1553 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1554 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
1555 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "replace", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001556 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001557 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001558 stmt->kw = LY_STMT_ENUM;
1559
1560 stmt->next = calloc(1, sizeof *stmt->child);
1561 stmt = stmt->next;
1562 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1563 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
1564 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "create", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001565 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001566 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001567 stmt->kw = LY_STMT_ENUM;
1568
1569 stmt->next = calloc(1, sizeof *stmt->child);
1570 stmt = stmt->next;
1571 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1572 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
1573 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "delete", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001574 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001575 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001576 stmt->kw = LY_STMT_ENUM;
1577
1578 stmt->next = calloc(1, sizeof *stmt->child);
1579 stmt = stmt->next;
1580 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1581 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
1582 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "remove", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001583 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001584 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001585 stmt->kw = LY_STMT_ENUM;
1586
1587 /*
1588 * 2) filter's type
1589 */
Michal Vasko193dacd2022-10-13 08:43:05 +02001590 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->exts, extp, LY_EMEM);
1591 LY_CHECK_ERR_RET(!extp, LOGMEM(mod->mod->ctx), LY_EMEM);
1592 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_:annotation", 0, &extp->name));
1593 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "type", 0, &extp->argument));
1594 extp->format = LY_VALUE_SCHEMA;
1595 extp->prefix_data = mod;
1596 extp->parent = mod;
1597 extp->parent_stmt = LY_STMT_MODULE;
1598 extp->flags = LYS_INTERNAL;
Michal Vasko45b521c2020-11-04 17:14:39 +01001599
Michal Vasko193dacd2022-10-13 08:43:05 +02001600 extp->child = stmt = calloc(1, sizeof *extp->child);
Michal Vasko45b521c2020-11-04 17:14:39 +01001601 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1602 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "type", 0, &stmt->stmt));
1603 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enumeration", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001604 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001605 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001606 stmt->kw = LY_STMT_TYPE;
1607
1608 stmt->child = calloc(1, sizeof *stmt->child);
1609 stmt = stmt->child;
1610 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1611 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
1612 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "subtree", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001613 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001614 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001615 stmt->kw = LY_STMT_ENUM;
1616
1617 stmt->next = calloc(1, sizeof *stmt->child);
1618 stmt = stmt->next;
1619 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1620 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt));
1621 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "xpath", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001622 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001623 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001624 stmt->kw = LY_STMT_ENUM;
1625
1626 /* if-feature for enum allowed only for YANG 1.1 modules */
1627 if (mod->version >= LYS_VERSION_1_1) {
1628 stmt->child = calloc(1, sizeof *stmt->child);
1629 stmt = stmt->child;
1630 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1631 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "if-feature", 0, &stmt->stmt));
1632 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "xpath", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001633 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001634 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001635 stmt->kw = LY_STMT_IF_FEATURE;
1636 }
1637
1638 /*
1639 * 3) filter's select
1640 */
Michal Vasko193dacd2022-10-13 08:43:05 +02001641 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->exts, extp, LY_EMEM);
1642 LY_CHECK_ERR_RET(!extp, LOGMEM(mod->mod->ctx), LY_EMEM);
1643 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_:annotation", 0, &extp->name));
1644 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "select", 0, &extp->argument));
1645 extp->format = LY_VALUE_SCHEMA;
1646 extp->prefix_data = mod;
1647 extp->parent = mod;
1648 extp->parent_stmt = LY_STMT_MODULE;
1649 extp->flags = LYS_INTERNAL;
Michal Vasko45b521c2020-11-04 17:14:39 +01001650
Michal Vasko193dacd2022-10-13 08:43:05 +02001651 extp->child = stmt = calloc(1, sizeof *extp->child);
Michal Vasko45b521c2020-11-04 17:14:39 +01001652 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1653 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "type", 0, &stmt->stmt));
1654 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "yang_:xpath1.0", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001655 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001656 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001657 stmt->kw = LY_STMT_TYPE;
1658
Michal Vasko193dacd2022-10-13 08:43:05 +02001659 if (LY_ARRAY_COUNT(mod->exts) == 3) {
1660 /* first extension instances */
Michal Vaskoc8806c82022-12-06 10:31:24 +01001661 assert(pctx->main_ctx == pctx);
Michal Vasko193dacd2022-10-13 08:43:05 +02001662 LY_CHECK_RET(ly_set_add(&pctx->ext_inst, mod->exts, 1, NULL));
1663 }
1664
Michal Vasko45b521c2020-11-04 17:14:39 +01001665 /* create new imports for the used prefixes */
1666 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->imports, imp, LY_EMEM);
Michal Vasko45b521c2020-11-04 17:14:39 +01001667 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "ietf-yang-metadata", 0, &imp->name));
1668 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_", 0, &imp->prefix));
1669 imp->flags = LYS_INTERNAL;
1670
1671 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->imports, imp, LY_EMEM);
Michal Vasko45b521c2020-11-04 17:14:39 +01001672 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "ietf-yang-types", 0, &imp->name));
1673 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "yang_", 0, &imp->prefix));
1674 imp->flags = LYS_INTERNAL;
1675
1676 return LY_SUCCESS;
1677}
1678
1679/**
1680 * @brief Add ietf-netconf-with-defaults "default" metadata to the parsed module.
1681 *
Michal Vasko193dacd2022-10-13 08:43:05 +02001682 * @param[in] pctx Parse context.
Michal Vasko45b521c2020-11-04 17:14:39 +01001683 * @param[in] mod Parsed module to add to.
1684 * @return LY_SUCCESS on success.
1685 * @return LY_ERR on error.
1686 */
1687static LY_ERR
Michal Vasko193dacd2022-10-13 08:43:05 +02001688lysp_add_internal_ietf_netconf_with_defaults(struct lysp_ctx *pctx, struct lysp_module *mod)
Michal Vasko45b521c2020-11-04 17:14:39 +01001689{
Michal Vasko193dacd2022-10-13 08:43:05 +02001690 struct lysp_ext_instance *extp;
Michal Vasko45b521c2020-11-04 17:14:39 +01001691 struct lysp_stmt *stmt;
1692 struct lysp_import *imp;
1693
1694 /* add new extension instance */
Michal Vasko193dacd2022-10-13 08:43:05 +02001695 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->exts, extp, LY_EMEM);
Michal Vasko45b521c2020-11-04 17:14:39 +01001696
1697 /* fill in the extension instance fields */
Michal Vasko193dacd2022-10-13 08:43:05 +02001698 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_:annotation", 0, &extp->name));
1699 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "default", 0, &extp->argument));
1700 extp->format = LY_VALUE_SCHEMA;
1701 extp->prefix_data = mod;
1702 extp->parent = mod;
1703 extp->parent_stmt = LY_STMT_MODULE;
1704 extp->flags = LYS_INTERNAL;
Michal Vasko45b521c2020-11-04 17:14:39 +01001705
Michal Vasko193dacd2022-10-13 08:43:05 +02001706 extp->child = stmt = calloc(1, sizeof *extp->child);
Michal Vasko45b521c2020-11-04 17:14:39 +01001707 LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM);
1708 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "type", 0, &stmt->stmt));
1709 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "boolean", 0, &stmt->arg));
Radek Krejci8df109d2021-04-23 12:19:08 +02001710 stmt->format = LY_VALUE_SCHEMA;
Michal Vaskofc2cd072021-02-24 13:17:17 +01001711 stmt->prefix_data = mod;
Michal Vasko45b521c2020-11-04 17:14:39 +01001712 stmt->kw = LY_STMT_TYPE;
1713
Michal Vasko193dacd2022-10-13 08:43:05 +02001714 if (LY_ARRAY_COUNT(mod->exts) == 1) {
1715 /* first extension instance */
Michal Vaskoc8806c82022-12-06 10:31:24 +01001716 assert(pctx->main_ctx == pctx);
Michal Vasko193dacd2022-10-13 08:43:05 +02001717 LY_CHECK_RET(ly_set_add(&pctx->ext_inst, mod->exts, 1, NULL));
1718 }
1719
Michal Vasko45b521c2020-11-04 17:14:39 +01001720 /* create new import for the used prefix */
1721 LY_ARRAY_NEW_RET(mod->mod->ctx, mod->imports, imp, LY_EMEM);
Michal Vasko45b521c2020-11-04 17:14:39 +01001722 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "ietf-yang-metadata", 0, &imp->name));
1723 LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_", 0, &imp->prefix));
1724 imp->flags = LYS_INTERNAL;
1725
1726 return LY_SUCCESS;
1727}
1728
Michal Vasko3a41dff2020-07-15 14:30:28 +02001729LY_ERR
Michal Vasko4e205e82021-06-08 14:01:47 +02001730lys_parse_in(struct ly_ctx *ctx, struct ly_in *in, LYS_INFORMAT format,
Radek Krejci1deb5be2020-08-26 16:43:36 +02001731 LY_ERR (*custom_check)(const struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *data),
Michal Vaskodd992582021-06-10 14:34:57 +02001732 void *check_data, struct ly_set *new_mods, struct lys_module **module)
Radek Krejci86d106e2018-10-18 09:53:19 +02001733{
Michal Vaskoa9309bb2021-07-09 09:31:55 +02001734 struct lys_module *mod = NULL, *latest, *mod_dup = NULL;
Michal Vasko3a41dff2020-07-15 14:30:28 +02001735 LY_ERR ret;
Michal Vaskod0625d72022-10-06 15:02:50 +02001736 struct lysp_yang_ctx *yangctx = NULL;
1737 struct lysp_yin_ctx *yinctx = NULL;
1738 struct lysp_ctx *pctx = NULL;
Michal Vaskoc636ea42022-09-16 10:20:31 +02001739 struct lysf_ctx fctx = {.ctx = ctx};
Michal Vasko7a0b0762020-09-02 16:37:01 +02001740 char *filename, *rev, *dot;
1741 size_t len;
Radek Krejcic64661b2020-08-15 15:42:26 +02001742 ly_bool module_created = 0;
Radek Krejci86d106e2018-10-18 09:53:19 +02001743
Michal Vaskodd992582021-06-10 14:34:57 +02001744 assert(ctx && in && new_mods);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001745
Michal Vasko7a0b0762020-09-02 16:37:01 +02001746 if (module) {
1747 *module = NULL;
1748 }
Radek Krejci86d106e2018-10-18 09:53:19 +02001749
1750 mod = calloc(1, sizeof *mod);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001751 LY_CHECK_ERR_RET(!mod, LOGMEM(ctx), LY_EMEM);
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001752 mod->ctx = ctx;
Radek Krejci86d106e2018-10-18 09:53:19 +02001753
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001754 /* parse */
Radek Krejci86d106e2018-10-18 09:53:19 +02001755 switch (format) {
1756 case LYS_IN_YIN:
aPiecekc3e26142021-06-22 14:25:49 +02001757 ret = yin_parse_module(&yinctx, in, mod);
Michal Vaskod0625d72022-10-06 15:02:50 +02001758 pctx = (struct lysp_ctx *)yinctx;
Radek Krejci86d106e2018-10-18 09:53:19 +02001759 break;
1760 case LYS_IN_YANG:
aPiecekc3e26142021-06-22 14:25:49 +02001761 ret = yang_parse_module(&yangctx, in, mod);
Michal Vaskod0625d72022-10-06 15:02:50 +02001762 pctx = (struct lysp_ctx *)yangctx;
Radek Krejci86d106e2018-10-18 09:53:19 +02001763 break;
1764 default:
1765 LOGERR(ctx, LY_EINVAL, "Invalid schema input format.");
Michal Vasko3a41dff2020-07-15 14:30:28 +02001766 ret = LY_EINVAL;
Radek Krejci86d106e2018-10-18 09:53:19 +02001767 break;
1768 }
Radek Krejcic64661b2020-08-15 15:42:26 +02001769 LY_CHECK_GOTO(ret, cleanup);
Radek Krejci9f5e6fb2018-10-25 09:26:12 +02001770
1771 /* make sure that the newest revision is at position 0 */
1772 lysp_sort_revisions(mod->parsed->revs);
Radek Krejci0af46292019-01-11 16:02:31 +01001773 if (mod->parsed->revs) {
Radek Krejcic64661b2020-08-15 15:42:26 +02001774 LY_CHECK_GOTO(ret = lydict_insert(ctx, mod->parsed->revs[0].date, 0, &mod->revision), cleanup);
Radek Krejci0af46292019-01-11 16:02:31 +01001775 }
Radek Krejci86d106e2018-10-18 09:53:19 +02001776
Radek Krejcib3289d62019-09-18 12:21:39 +02001777 /* decide the latest revision */
Michal Vaskoa51ef072021-07-02 10:40:30 +02001778 latest = ly_ctx_get_module_latest(ctx, mod->name);
Radek Krejcib3289d62019-09-18 12:21:39 +02001779 if (latest) {
1780 if (mod->revision) {
1781 if (!latest->revision) {
1782 /* latest has no revision, so mod is anyway newer */
aPiecek8ca21bd2021-07-26 14:31:01 +02001783 mod->latest_revision = latest->latest_revision & (LYS_MOD_LATEST_REV | LYS_MOD_LATEST_SEARCHDIRS);
Radek Krejcib3289d62019-09-18 12:21:39 +02001784 /* the latest is zeroed later when the new module is being inserted into the context */
1785 } else if (strcmp(mod->revision, latest->revision) > 0) {
aPiecek8ca21bd2021-07-26 14:31:01 +02001786 mod->latest_revision = latest->latest_revision & (LYS_MOD_LATEST_REV | LYS_MOD_LATEST_SEARCHDIRS);
Radek Krejcib3289d62019-09-18 12:21:39 +02001787 /* the latest is zeroed later when the new module is being inserted into the context */
1788 } else {
1789 latest = NULL;
1790 }
1791 } else {
1792 latest = NULL;
1793 }
1794 } else {
aPiecek8ca21bd2021-07-26 14:31:01 +02001795 mod->latest_revision = LYS_MOD_LATEST_REV;
Radek Krejcib3289d62019-09-18 12:21:39 +02001796 }
1797
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001798 if (custom_check) {
Radek Krejcic64661b2020-08-15 15:42:26 +02001799 LY_CHECK_GOTO(ret = custom_check(ctx, mod->parsed, NULL, check_data), cleanup);
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001800 }
1801
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001802 /* check whether it is not already in the context in the same revision */
Michal Vaskoa51ef072021-07-02 10:40:30 +02001803 mod_dup = ly_ctx_get_module(ctx, mod->name, mod->revision);
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001804 if (mod_dup) {
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001805 /* nothing to do */
1806 LOGVRB("Module \"%s@%s\" is already present in the context.", mod_dup->name,
1807 mod_dup->revision ? mod_dup->revision : "<none>");
Radek Krejcic64661b2020-08-15 15:42:26 +02001808 goto cleanup;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001809 }
Radek Krejci86d106e2018-10-18 09:53:19 +02001810
Michal Vaskob24145d2022-07-13 18:34:39 +02001811 /* check whether there is not a namespace collision */
1812 mod_dup = ly_ctx_get_module_latest_ns(ctx, mod->ns);
1813 if (mod_dup && (mod_dup->revision == mod->revision)) {
1814 LOGERR(ctx, LY_EINVAL, "Two different modules (\"%s\" and \"%s\") have the same namespace \"%s\".",
1815 mod_dup->name, mod->name, mod->ns);
1816 ret = LY_EINVAL;
1817 goto cleanup;
1818 }
1819
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001820 switch (in->type) {
1821 case LY_IN_FILEPATH:
1822 /* check that name and revision match filename */
1823 filename = strrchr(in->method.fpath.filepath, '/');
1824 if (!filename) {
1825 filename = in->method.fpath.filepath;
1826 } else {
1827 filename++;
1828 }
1829 rev = strchr(filename, '@');
1830 dot = strrchr(filename, '.');
1831
1832 /* name */
1833 len = strlen(mod->name);
1834 if (strncmp(filename, mod->name, len) ||
Michal Vasko69730152020-10-09 16:30:07 +02001835 ((rev && (rev != &filename[len])) || (!rev && (dot != &filename[len])))) {
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001836 LOGWRN(ctx, "File name \"%s\" does not match module name \"%s\".", filename, mod->name);
1837 }
1838 if (rev) {
1839 len = dot - ++rev;
Radek Krejcif13b87b2020-12-01 22:02:17 +01001840 if (!mod->parsed->revs || (len != LY_REV_SIZE - 1) || strncmp(mod->parsed->revs[0].date, rev, len)) {
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001841 LOGWRN(ctx, "File name \"%s\" does not match module revision \"%s\".", filename,
Michal Vasko69730152020-10-09 16:30:07 +02001842 mod->parsed->revs ? mod->parsed->revs[0].date : "none");
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001843 }
1844 }
1845
1846 break;
1847 case LY_IN_FD:
1848 case LY_IN_FILE:
1849 case LY_IN_MEMORY:
1850 /* nothing special to do */
1851 break;
Michal Vasko7a0b0762020-09-02 16:37:01 +02001852 case LY_IN_ERROR:
1853 LOGINT(ctx);
1854 ret = LY_EINT;
Radek Krejcic64661b2020-08-15 15:42:26 +02001855 goto cleanup;
Radek Krejci096235c2019-01-11 11:12:19 +01001856 }
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001857 lys_parser_fill_filepath(ctx, in, &mod->filepath);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001858
Michal Vasko7a0b0762020-09-02 16:37:01 +02001859 if (latest) {
aPiecek8ca21bd2021-07-26 14:31:01 +02001860 latest->latest_revision &= ~(LYS_MOD_LATEST_REV | LYS_MOD_LATEST_SEARCHDIRS);
Michal Vasko7a0b0762020-09-02 16:37:01 +02001861 }
1862
Michal Vasko45b521c2020-11-04 17:14:39 +01001863 /* add internal data in case specific modules were parsed */
1864 if (!strcmp(mod->name, "ietf-netconf")) {
Michal Vasko193dacd2022-10-13 08:43:05 +02001865 LY_CHECK_GOTO(ret = lysp_add_internal_ietf_netconf(pctx, mod->parsed), cleanup);
Michal Vasko45b521c2020-11-04 17:14:39 +01001866 } else if (!strcmp(mod->name, "ietf-netconf-with-defaults")) {
Michal Vasko193dacd2022-10-13 08:43:05 +02001867 LY_CHECK_GOTO(ret = lysp_add_internal_ietf_netconf_with_defaults(pctx, mod->parsed), cleanup);
Michal Vasko45b521c2020-11-04 17:14:39 +01001868 }
1869
Michal Vasko405cc9e2020-12-01 12:01:27 +01001870 /* add the module into newly created module set, will also be freed from there on any error */
Radek Krejcic64661b2020-08-15 15:42:26 +02001871 LY_CHECK_GOTO(ret = ly_set_add(new_mods, mod, 1, NULL), cleanup);
1872 module_created = 1;
Michal Vasko405cc9e2020-12-01 12:01:27 +01001873
Michal Vasko7a0b0762020-09-02 16:37:01 +02001874 /* add into context */
Radek Krejci3d92e442020-10-12 12:48:13 +02001875 ret = ly_set_add(&ctx->list, mod, 1, NULL);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001876 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko794ab4b2021-03-31 09:42:19 +02001877 ctx->change_count++;
Michal Vasko7a0b0762020-09-02 16:37:01 +02001878
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001879 /* resolve includes and all imports */
Michal Vaskoc0c64ae2022-10-06 10:15:23 +02001880 LY_CHECK_GOTO(ret = lysp_resolve_import_include(pctx, mod->parsed, new_mods), cleanup);
1881
1882 /* resolve extension instance plugin records */
1883 LY_CHECK_GOTO(ret = lysp_resolve_ext_instance_records(pctx), cleanup);
Michal Vasko7a0b0762020-09-02 16:37:01 +02001884
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001885 /* check name collisions */
Michal Vasko405cc9e2020-12-01 12:01:27 +01001886 LY_CHECK_GOTO(ret = lysp_check_dup_typedefs(pctx, mod->parsed), cleanup);
aPiecek63e080d2021-06-29 13:53:28 +02001887 LY_CHECK_GOTO(ret = lysp_check_dup_groupings(pctx, mod->parsed), cleanup);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001888 LY_CHECK_GOTO(ret = lysp_check_dup_features(pctx, mod->parsed), cleanup);
1889 LY_CHECK_GOTO(ret = lysp_check_dup_identities(pctx, mod->parsed), cleanup);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001890
1891 /* compile features */
Michal Vasko405cc9e2020-12-01 12:01:27 +01001892 LY_CHECK_GOTO(ret = lys_compile_feature_iffeatures(mod->parsed), cleanup);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001893
aPiecek6b3d5422021-07-30 15:55:43 +02001894 /* compile identities */
1895 LY_CHECK_GOTO(ret = lys_compile_identities(mod), cleanup);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001896
Radek Krejcic64661b2020-08-15 15:42:26 +02001897cleanup:
Michal Vaskobe04af42021-07-16 10:48:43 +02001898 if (ret && (ret != LY_EEXIST)) {
Radek Krejcic64661b2020-08-15 15:42:26 +02001899 if (mod && mod->name) {
1900 /* there are cases when path is not available for parsing error, so this additional
1901 * message tries to add information about the module where the error occurred */
1902 struct ly_err_item *e = ly_err_last(ctx);
Michal Vasko26bbb272022-08-02 14:54:33 +02001903
Radek Krejcic64661b2020-08-15 15:42:26 +02001904 if (e && (!e->path || !strncmp(e->path, "Line ", ly_strlen_const("Line ")))) {
1905 LOGERR(ctx, ret, "Parsing module \"%s\" failed.", mod->name);
1906 }
1907 }
1908 }
1909 if (!module_created) {
Michal Vaskoc636ea42022-09-16 10:20:31 +02001910 fctx.mod = mod;
1911 lys_module_free(&fctx, mod, 0);
1912 lysf_ctx_erase(&fctx);
1913
Michal Vasko0e02e8e2021-02-26 15:01:55 +01001914 mod = mod_dup;
1915 }
Michal Vasko8a69a1b2020-12-03 14:19:02 +01001916
Michal Vasko7a0b0762020-09-02 16:37:01 +02001917 if (format == LYS_IN_YANG) {
Michal Vaskod0625d72022-10-06 15:02:50 +02001918 lysp_yang_ctx_free(yangctx);
Michal Vasko7a0b0762020-09-02 16:37:01 +02001919 } else {
Michal Vaskod0625d72022-10-06 15:02:50 +02001920 lysp_yin_ctx_free(yinctx);
Michal Vasko7a0b0762020-09-02 16:37:01 +02001921 }
1922
Michal Vasko405cc9e2020-12-01 12:01:27 +01001923 if (!ret && module) {
1924 *module = mod;
1925 }
Michal Vasko7a0b0762020-09-02 16:37:01 +02001926 return ret;
1927}
1928
Radek Krejci545b4872020-11-15 10:15:12 +01001929static LYS_INFORMAT
1930lys_parse_get_format(const struct ly_in *in, LYS_INFORMAT format)
1931{
1932 if (!format && (in->type == LY_IN_FILEPATH)) {
1933 /* unknown format - try to detect it from filename's suffix */
1934 const char *path = in->method.fpath.filepath;
1935 size_t len = strlen(path);
1936
1937 /* ignore trailing whitespaces */
1938 for ( ; len > 0 && isspace(path[len - 1]); len--) {}
1939
Radek Krejcif13b87b2020-12-01 22:02:17 +01001940 if ((len >= LY_YANG_SUFFIX_LEN + 1) &&
1941 !strncmp(&path[len - LY_YANG_SUFFIX_LEN], LY_YANG_SUFFIX, LY_YANG_SUFFIX_LEN)) {
Radek Krejci545b4872020-11-15 10:15:12 +01001942 format = LYS_IN_YANG;
Radek Krejcif13b87b2020-12-01 22:02:17 +01001943 } else if ((len >= LY_YIN_SUFFIX_LEN + 1) &&
1944 !strncmp(&path[len - LY_YIN_SUFFIX_LEN], LY_YIN_SUFFIX, LY_YIN_SUFFIX_LEN)) {
Radek Krejci545b4872020-11-15 10:15:12 +01001945 format = LYS_IN_YIN;
1946 } /* else still unknown */
1947 }
1948
1949 return format;
1950}
1951
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001952LIBYANG_API_DEF LY_ERR
Michal Vasko4de7d072021-07-09 09:13:18 +02001953lys_parse(struct ly_ctx *ctx, struct ly_in *in, LYS_INFORMAT format, const char **features, struct lys_module **module)
Michal Vasko7a0b0762020-09-02 16:37:01 +02001954{
Michal Vasko65333882021-06-10 14:12:16 +02001955 LY_ERR ret = LY_SUCCESS;
Michal Vasko4e205e82021-06-08 14:01:47 +02001956 struct lys_module *mod;
Michal Vasko405cc9e2020-12-01 12:01:27 +01001957
Michal Vasko7a0b0762020-09-02 16:37:01 +02001958 if (module) {
1959 *module = NULL;
1960 }
Radek Krejci545b4872020-11-15 10:15:12 +01001961 LY_CHECK_ARG_RET(NULL, ctx, in, LY_EINVAL);
1962
1963 format = lys_parse_get_format(in, format);
1964 LY_CHECK_ARG_RET(ctx, format, LY_EINVAL);
Michal Vasko7a0b0762020-09-02 16:37:01 +02001965
1966 /* remember input position */
1967 in->func_start = in->current;
1968
Michal Vasko4e205e82021-06-08 14:01:47 +02001969 /* parse */
Michal Vasko22b26222021-07-30 11:16:47 +02001970 ret = lys_parse_in(ctx, in, format, NULL, NULL, &ctx->unres.creating, &mod);
Michal Vasko4e205e82021-06-08 14:01:47 +02001971 LY_CHECK_GOTO(ret, cleanup);
1972
1973 /* implement */
Michal Vasko22b26222021-07-30 11:16:47 +02001974 ret = _lys_set_implemented(mod, features, &ctx->unres);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001975 LY_CHECK_GOTO(ret, cleanup);
1976
Michal Vaskof4258e12021-06-15 12:11:42 +02001977 if (!(ctx->flags & LY_CTX_EXPLICIT_COMPILE)) {
1978 /* create dep set for the module and mark all the modules that will be (re)compiled */
Michal Vasko22b26222021-07-30 11:16:47 +02001979 LY_CHECK_GOTO(ret = lys_unres_dep_sets_create(ctx, &ctx->unres.dep_sets, mod), cleanup);
Michal Vaskof4258e12021-06-15 12:11:42 +02001980
Michal Vasko709f9a52021-07-21 10:51:59 +02001981 /* (re)compile the whole dep set (other dep sets will have no modules marked for compilation) */
Michal Vasko22b26222021-07-30 11:16:47 +02001982 LY_CHECK_GOTO(ret = lys_compile_depset_all(ctx, &ctx->unres), cleanup);
1983
1984 /* unres resolved */
1985 lys_unres_glob_erase(&ctx->unres);
Michal Vaskof4258e12021-06-15 12:11:42 +02001986 }
1987
Michal Vasko405cc9e2020-12-01 12:01:27 +01001988cleanup:
1989 if (ret) {
Michal Vasko22b26222021-07-30 11:16:47 +02001990 lys_unres_glob_revert(ctx, &ctx->unres);
1991 lys_unres_glob_erase(&ctx->unres);
Michal Vasko87f1cf02021-06-08 14:02:47 +02001992 } else if (module) {
1993 *module = mod;
Michal Vasko405cc9e2020-12-01 12:01:27 +01001994 }
Michal Vasko405cc9e2020-12-01 12:01:27 +01001995 return ret;
Radek Krejci86d106e2018-10-18 09:53:19 +02001996}
1997
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001998LIBYANG_API_DEF LY_ERR
Michal Vasko4de7d072021-07-09 09:13:18 +02001999lys_parse_mem(struct ly_ctx *ctx, const char *data, LYS_INFORMAT format, struct lys_module **module)
Radek Krejci86d106e2018-10-18 09:53:19 +02002000{
Radek Krejci0f969882020-08-21 16:56:47 +02002001 LY_ERR ret;
Radek Krejcif0e1ba52020-05-22 15:14:35 +02002002 struct ly_in *in = NULL;
Radek Krejci86d106e2018-10-18 09:53:19 +02002003
Michal Vasko3a41dff2020-07-15 14:30:28 +02002004 LY_CHECK_ARG_RET(ctx, data, format != LYS_IN_UNKNOWN, LY_EINVAL);
Radek Krejci65639b92018-11-27 10:51:37 +01002005
Michal Vasko3a41dff2020-07-15 14:30:28 +02002006 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 +02002007
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01002008 ret = lys_parse(ctx, in, format, NULL, module);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02002009 ly_in_free(in, 0);
Radek Krejci86d106e2018-10-18 09:53:19 +02002010
Michal Vasko3a41dff2020-07-15 14:30:28 +02002011 return ret;
Radek Krejci0bcdaed2019-01-10 10:21:34 +01002012}
2013
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002014LIBYANG_API_DEF LY_ERR
Michal Vasko4de7d072021-07-09 09:13:18 +02002015lys_parse_fd(struct ly_ctx *ctx, int fd, LYS_INFORMAT format, struct lys_module **module)
Radek Krejci86d106e2018-10-18 09:53:19 +02002016{
Radek Krejci0f969882020-08-21 16:56:47 +02002017 LY_ERR ret;
Radek Krejcif0e1ba52020-05-22 15:14:35 +02002018 struct ly_in *in = NULL;
Radek Krejci86d106e2018-10-18 09:53:19 +02002019
Michal Vasko3a41dff2020-07-15 14:30:28 +02002020 LY_CHECK_ARG_RET(ctx, fd > -1, format != LYS_IN_UNKNOWN, LY_EINVAL);
Radek Krejci86d106e2018-10-18 09:53:19 +02002021
Michal Vasko3a41dff2020-07-15 14:30:28 +02002022 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 +02002023
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01002024 ret = lys_parse(ctx, in, format, NULL, module);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02002025 ly_in_free(in, 0);
Radek Krejci86d106e2018-10-18 09:53:19 +02002026
Michal Vasko3a41dff2020-07-15 14:30:28 +02002027 return ret;
Radek Krejci86d106e2018-10-18 09:53:19 +02002028}
2029
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002030LIBYANG_API_DEF LY_ERR
Michal Vasko4de7d072021-07-09 09:13:18 +02002031lys_parse_path(struct ly_ctx *ctx, const char *path, LYS_INFORMAT format, struct lys_module **module)
Radek Krejcid33273d2018-10-25 14:55:52 +02002032{
Radek Krejci0f969882020-08-21 16:56:47 +02002033 LY_ERR ret;
Radek Krejcif0e1ba52020-05-22 15:14:35 +02002034 struct ly_in *in = NULL;
Radek Krejcif0e1ba52020-05-22 15:14:35 +02002035
Michal Vasko3a41dff2020-07-15 14:30:28 +02002036 LY_CHECK_ARG_RET(ctx, path, format != LYS_IN_UNKNOWN, LY_EINVAL);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02002037
Michal Vasko3a41dff2020-07-15 14:30:28 +02002038 LY_CHECK_ERR_RET(ret = ly_in_new_filepath(path, 0, &in),
Michal Vasko69730152020-10-09 16:30:07 +02002039 LOGERR(ctx, ret, "Unable to create input handler for filepath %s.", path), ret);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02002040
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01002041 ret = lys_parse(ctx, in, format, NULL, module);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02002042 ly_in_free(in, 0);
2043
Michal Vasko3a41dff2020-07-15 14:30:28 +02002044 return ret;
Radek Krejcid33273d2018-10-25 14:55:52 +02002045}
2046
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002047LIBYANG_API_DEF LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02002048lys_search_localfile(const char * const *searchpaths, ly_bool cwd, const char *name, const char *revision,
Radek Krejci0f969882020-08-21 16:56:47 +02002049 char **localfile, LYS_INFORMAT *format)
Radek Krejcid33273d2018-10-25 14:55:52 +02002050{
Radek Krejci1deb5be2020-08-26 16:43:36 +02002051 LY_ERR ret = LY_EMEM;
Radek Krejcid33273d2018-10-25 14:55:52 +02002052 size_t len, flen, match_len = 0, dir_len;
Radek Krejci857189e2020-09-01 13:26:36 +02002053 ly_bool implicit_cwd = 0;
Radek Krejcid33273d2018-10-25 14:55:52 +02002054 char *wd, *wn = NULL;
2055 DIR *dir = NULL;
2056 struct dirent *file;
2057 char *match_name = NULL;
2058 LYS_INFORMAT format_aux, match_format = 0;
2059 struct ly_set *dirs;
2060 struct stat st;
2061
2062 LY_CHECK_ARG_RET(NULL, localfile, LY_EINVAL);
2063
2064 /* start to fill the dir fifo with the context's search path (if set)
2065 * and the current working directory */
Radek Krejciba03a5a2020-08-27 14:40:41 +02002066 LY_CHECK_RET(ly_set_new(&dirs));
Radek Krejcid33273d2018-10-25 14:55:52 +02002067
2068 len = strlen(name);
2069 if (cwd) {
2070 wd = get_current_dir_name();
2071 if (!wd) {
2072 LOGMEM(NULL);
2073 goto cleanup;
2074 } else {
2075 /* add implicit current working directory (./) to be searched,
2076 * this directory is not searched recursively */
Radek Krejciba03a5a2020-08-27 14:40:41 +02002077 ret = ly_set_add(dirs, wd, 0, NULL);
2078 LY_CHECK_GOTO(ret, cleanup);
Radek Krejcid33273d2018-10-25 14:55:52 +02002079 implicit_cwd = 1;
2080 }
2081 }
2082 if (searchpaths) {
Radek Krejci1deb5be2020-08-26 16:43:36 +02002083 for (uint64_t i = 0; searchpaths[i]; i++) {
Radek Krejcid33273d2018-10-25 14:55:52 +02002084 /* check for duplicities with the implicit current working directory */
2085 if (implicit_cwd && !strcmp(dirs->objs[0], searchpaths[i])) {
2086 implicit_cwd = 0;
2087 continue;
2088 }
2089 wd = strdup(searchpaths[i]);
2090 if (!wd) {
2091 LOGMEM(NULL);
2092 goto cleanup;
Radek Krejciba03a5a2020-08-27 14:40:41 +02002093 } else {
2094 ret = ly_set_add(dirs, wd, 0, NULL);
2095 LY_CHECK_GOTO(ret, cleanup);
Radek Krejcid33273d2018-10-25 14:55:52 +02002096 }
2097 }
2098 }
2099 wd = NULL;
2100
2101 /* start searching */
2102 while (dirs->count) {
2103 free(wd);
2104 free(wn); wn = NULL;
2105
2106 dirs->count--;
2107 wd = (char *)dirs->objs[dirs->count];
2108 dirs->objs[dirs->count] = NULL;
Radek Krejcieeee95c2021-01-19 10:57:22 +01002109 LOGVRB("Searching for \"%s\" in \"%s\".", name, wd);
Radek Krejcid33273d2018-10-25 14:55:52 +02002110
2111 if (dir) {
2112 closedir(dir);
2113 }
2114 dir = opendir(wd);
2115 dir_len = strlen(wd);
2116 if (!dir) {
2117 LOGWRN(NULL, "Unable to open directory \"%s\" for searching (sub)modules (%s).", wd, strerror(errno));
2118 } else {
2119 while ((file = readdir(dir))) {
2120 if (!strcmp(".", file->d_name) || !strcmp("..", file->d_name)) {
2121 /* skip . and .. */
2122 continue;
2123 }
2124 free(wn);
2125 if (asprintf(&wn, "%s/%s", wd, file->d_name) == -1) {
2126 LOGMEM(NULL);
2127 goto cleanup;
2128 }
2129 if (stat(wn, &st) == -1) {
2130 LOGWRN(NULL, "Unable to get information about \"%s\" file in \"%s\" when searching for (sub)modules (%s)",
Michal Vasko69730152020-10-09 16:30:07 +02002131 file->d_name, wd, strerror(errno));
Radek Krejcid33273d2018-10-25 14:55:52 +02002132 continue;
2133 }
2134 if (S_ISDIR(st.st_mode) && (dirs->count || !implicit_cwd)) {
2135 /* we have another subdirectory in searchpath to explore,
2136 * subdirectories are not taken into account in current working dir (dirs->set.g[0]) */
Radek Krejciba03a5a2020-08-27 14:40:41 +02002137 ret = ly_set_add(dirs, wn, 0, NULL);
2138 LY_CHECK_GOTO(ret, cleanup);
2139
Radek Krejcid33273d2018-10-25 14:55:52 +02002140 /* continue with the next item in current directory */
2141 wn = NULL;
2142 continue;
2143 } else if (!S_ISREG(st.st_mode)) {
2144 /* not a regular file (note that we see the target of symlinks instead of symlinks */
2145 continue;
2146 }
2147
2148 /* here we know that the item is a file which can contain a module */
2149 if (strncmp(name, file->d_name, len) ||
Michal Vasko69730152020-10-09 16:30:07 +02002150 ((file->d_name[len] != '.') && (file->d_name[len] != '@'))) {
Radek Krejcid33273d2018-10-25 14:55:52 +02002151 /* different filename than the module we search for */
2152 continue;
2153 }
2154
2155 /* get type according to filename suffix */
2156 flen = strlen(file->d_name);
Radek Krejcif13b87b2020-12-01 22:02:17 +01002157 if ((flen >= LY_YANG_SUFFIX_LEN + 1) &&
2158 !strcmp(&file->d_name[flen - LY_YANG_SUFFIX_LEN], LY_YANG_SUFFIX)) {
Radek Krejcid33273d2018-10-25 14:55:52 +02002159 format_aux = LYS_IN_YANG;
Radek Krejcif13b87b2020-12-01 22:02:17 +01002160 } else if ((flen >= LY_YIN_SUFFIX_LEN + 1) &&
2161 !strcmp(&file->d_name[flen - LY_YIN_SUFFIX_LEN], LY_YIN_SUFFIX)) {
Radek Krejci01a937f2020-11-15 10:14:12 +01002162 format_aux = LYS_IN_YIN;
Radek Krejcid33273d2018-10-25 14:55:52 +02002163 } else {
2164 /* not supportde suffix/file format */
2165 continue;
2166 }
2167
2168 if (revision) {
2169 /* we look for the specific revision, try to get it from the filename */
2170 if (file->d_name[len] == '@') {
2171 /* check revision from the filename */
2172 if (strncmp(revision, &file->d_name[len + 1], strlen(revision))) {
2173 /* another revision */
2174 continue;
2175 } else {
2176 /* exact revision */
2177 free(match_name);
2178 match_name = wn;
2179 wn = NULL;
2180 match_len = dir_len + 1 + len;
2181 match_format = format_aux;
2182 goto success;
2183 }
2184 } else {
2185 /* continue trying to find exact revision match, use this only if not found */
2186 free(match_name);
2187 match_name = wn;
2188 wn = NULL;
Michal Vasko44f3d2c2020-08-24 09:49:38 +02002189 match_len = dir_len + 1 + len;
Radek Krejcid33273d2018-10-25 14:55:52 +02002190 match_format = format_aux;
2191 continue;
2192 }
2193 } else {
2194 /* remember the revision and try to find the newest one */
2195 if (match_name) {
Michal Vasko69730152020-10-09 16:30:07 +02002196 if ((file->d_name[len] != '@') ||
Radek Krejcif13b87b2020-12-01 22:02:17 +01002197 lysp_check_date(NULL, &file->d_name[len + 1],
2198 flen - ((format_aux == LYS_IN_YANG) ? LY_YANG_SUFFIX_LEN : LY_YIN_SUFFIX_LEN) - len - 1, NULL)) {
Radek Krejcid33273d2018-10-25 14:55:52 +02002199 continue;
Michal Vasko69730152020-10-09 16:30:07 +02002200 } else if ((match_name[match_len] == '@') &&
Radek Krejcid33273d2018-10-25 14:55:52 +02002201 (strncmp(&match_name[match_len + 1], &file->d_name[len + 1], LY_REV_SIZE - 1) >= 0)) {
2202 continue;
2203 }
2204 free(match_name);
2205 }
2206
2207 match_name = wn;
2208 wn = NULL;
2209 match_len = dir_len + 1 + len;
2210 match_format = format_aux;
2211 continue;
2212 }
2213 }
2214 }
2215 }
2216
2217success:
2218 (*localfile) = match_name;
2219 match_name = NULL;
2220 if (format) {
2221 (*format) = match_format;
2222 }
Radek Krejci1deb5be2020-08-26 16:43:36 +02002223 ret = LY_SUCCESS;
Radek Krejcid33273d2018-10-25 14:55:52 +02002224
2225cleanup:
2226 free(wn);
2227 free(wd);
2228 if (dir) {
2229 closedir(dir);
2230 }
2231 free(match_name);
2232 ly_set_free(dirs, free);
2233
2234 return ret;
2235}